Skip to content

Commit

Permalink
feat: implementando evento de refresh token na aplicação
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Melo committed Jul 11, 2024
1 parent acd34c1 commit fd8d104
Show file tree
Hide file tree
Showing 5 changed files with 246 additions and 263 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ module.exports = {
"@angular/common": { requiredVersion: "auto" },
"@angular/router": { requiredVersion: "auto" },
"rxjs": { requiredVersion: "auto" },
"@wizco/wizpro-tools": { requiredVersion: "auto" },
...sharedMappings.getDescriptors()
})
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"elementName": "wc-<%= name %>-module",
"type": "web-components",
"exposedModule": "./web-components",
"breadcrumb": "<%= name %>",
"digitalProduct": "<%= produtoDigital %>",
"layout": "dashboard",
"title": "add um título no arquivo config.json",
"description": "add um descrição no arquivo config.json",
"icon": "hourglass_top",
"urlRepository": "add url do repositório no config.json",
"hasWidget": true,
"active": true,
"isPrivate": true
"breadcrumb": "<%= name %>",
"icon": "hourglass_top",
"urlRepository": "add url do repositório no config.json",
"title": "add um título no arquivo config.json",
"description": "add um descrição no arquivo config.json",
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Round|Material+Icons+Outlined" rel="stylesheet" defer/>
<link href="https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,900&display=swap" rel="stylesheet" defer/>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@wizco/fenixds-core@latest/styles/core.min.css">
</head>
<body>
<main id="area-faker-wizco">
Expand All @@ -20,5 +20,6 @@
</main>
</body>

<style>#area-faker-wizco { width: 100vw; height: 100vh; display: grid; grid-template-columns: 96px 1fr; grid-template-rows: 84px 1fr; grid-template-areas: 'aside header' 'aside content'; #header-faker { grid-area: header; height: 84px; background-color: var(--wco-color-neutral-50); } #aside-faker { grid-area: aside; width: 96px; height: 100%; background-color: var(--wco-color-primary-50); } #content-faker { grid-area: content; padding: var(--wco-spacing-xs); } } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; }</style>
<style>
#area-faker-wizco { width: 100vw; height: 100vh; display: grid; grid-template-columns: 96px 1fr; grid-template-rows: 84px 1fr; grid-template-areas: 'aside header' 'aside content'; #header-faker { grid-area: header; height: 84px; background-color: var(--wco-color-neutral-50); } #aside-faker { grid-area: aside; width: 96px; height: 100%; background-color: var(--wco-color-primary-50); } #content-faker { grid-area: content; padding: var(--wco-spacing-xs); } } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; }</style>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* CSS global */
/* Confira nosso design system https://fenix.wizsolucoes.com.br */

/* CSS global */

/* Confira nosso design system https://fenix.wizsolucoes.com.br */
@import 'node_modules/@wizco/fenixds-core/styles/core';
Loading

0 comments on commit fd8d104

Please sign in to comment.