@seedgrid/fe-components 2026.8.6 → 2026.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/seedgrid-components.manifest.json +330 -148
- package/dist/commons/SgSkeleton.meta.js +3 -3
- package/dist/commons/SgToastHost.meta.js +1 -1
- package/dist/commons/SgToaster.meta.js +1 -1
- package/dist/commons/SgWhistleHost.meta.d.ts.map +1 -1
- package/dist/commons/SgWhistleHost.meta.js +1 -0
- package/dist/commons/SgWhistler.d.ts +10 -0
- package/dist/commons/SgWhistler.d.ts.map +1 -1
- package/dist/commons/SgWhistler.js +8 -4
- package/dist/commons/SgWhistler.meta.d.ts.map +1 -1
- package/dist/commons/SgWhistler.meta.js +1 -0
- package/dist/commons/dismissSgToast.meta.js +3 -3
- package/dist/commons/dismissSgWhistle.meta.js +3 -3
- package/dist/commons/subscribeSgToasts.meta.js +3 -3
- package/dist/commons/subscribeSgWhistles.meta.js +3 -3
- package/dist/commons/toast.meta.d.ts.map +1 -1
- package/dist/commons/toast.meta.js +32 -11
- package/dist/commons/whistle.meta.d.ts.map +1 -1
- package/dist/commons/whistle.meta.js +27 -9
- package/dist/digits/fade-digit/SgFadeDigit.meta.js +1 -1
- package/dist/digits/matrix-digit/SgMatrixDigit.meta.js +1 -1
- package/dist/digits/roller3d-digit/SgRoller3DDigit.meta.js +1 -1
- package/dist/digits/segment-digit/SgSegmentDigit.meta.js +1 -1
- package/dist/digits/seven-segment-digit/SgSevenSegmentDigit.meta.js +1 -1
- package/dist/environment/useSgEnvironment.meta.js +6 -6
- package/dist/environment/useSgNamespaceProvider.meta.js +2 -2
- package/dist/environment/useSgPersistence.meta.js +6 -6
- package/dist/environment/useSgPersistentState.meta.d.ts.map +1 -1
- package/dist/environment/useSgPersistentState.meta.js +15 -9
- package/dist/gadgets/calendar/SgCalendar.meta.js +1 -1
- package/dist/gadgets/clock/themes/useSgClockThemeResolver.meta.d.ts.map +1 -1
- package/dist/gadgets/clock/themes/useSgClockThemeResolver.meta.js +24 -17
- package/dist/gadgets/clock/useSgTime.meta.js +3 -3
- package/dist/gadgets/qr-code/SgQRCode.meta.js +1 -1
- package/dist/gadgets/string-animator/SgStringAnimator.meta.js +1 -1
- package/dist/i18n/en-US.d.ts.map +1 -1
- package/dist/i18n/en-US.js +1 -0
- package/dist/i18n/es.d.ts.map +1 -1
- package/dist/i18n/es.js +1 -0
- package/dist/i18n/fr.d.ts.map +1 -1
- package/dist/i18n/fr.js +1 -0
- package/dist/i18n/pt-BR.d.ts.map +1 -1
- package/dist/i18n/pt-BR.js +1 -0
- package/dist/i18n/pt-PT.d.ts.map +1 -1
- package/dist/i18n/pt-PT.js +1 -0
- package/dist/i18n/useComponentsI18n.meta.js +6 -6
- package/dist/layout/SgCarousel.meta.js +1 -1
- package/dist/layout/SgExpandablePanel.meta.d.ts.map +1 -1
- package/dist/layout/SgExpandablePanel.meta.js +5 -1
- package/dist/layout/SgGrid.meta.js +3 -3
- package/dist/layout/SgMenu.meta.d.ts.map +1 -1
- package/dist/layout/SgMenu.meta.js +39 -3
- package/dist/layout/SgStack.meta.js +3 -3
- package/dist/sandbox.cjs +34 -34
- package/dist/wizard/SgWizard.d.ts +12 -0
- package/dist/wizard/SgWizard.d.ts.map +1 -1
- package/dist/wizard/SgWizard.js +11 -2
- package/dist/wizard/SgWizard.meta.d.ts.map +1 -1
- package/dist/wizard/SgWizard.meta.js +11 -1
- package/dist/wizard/SgWizardPage.meta.js +1 -1
- package/package.json +3 -3
|
@@ -44,9 +44,9 @@ export const sgMeta = {
|
|
|
44
44
|
states: ["hydrated", "synced", "ticking"],
|
|
45
45
|
examples: [
|
|
46
46
|
{
|
|
47
|
-
id: "
|
|
48
|
-
title: "
|
|
49
|
-
file: "apps/showcase/src/app/components/hooks/use-sg-time/samples/
|
|
47
|
+
id: "uso-basico",
|
|
48
|
+
title: "Uso basico",
|
|
49
|
+
file: "apps/showcase/src/app/components/hooks/use-sg-time/samples/uso-basico.tsx.sample",
|
|
50
50
|
kind: "sample"
|
|
51
51
|
}
|
|
52
52
|
],
|
|
@@ -20,7 +20,7 @@ export const sgMeta = {
|
|
|
20
20
|
],
|
|
21
21
|
states: ["idle", "empty", "rendered"],
|
|
22
22
|
examples: [
|
|
23
|
-
{ id: "interactive", title: "
|
|
23
|
+
{ id: "interactive-example", title: "Exemplo interativo", file: "apps/showcase/src/app/components/gadgets/sg-qr-code/samples/interactive-example.tsx.sample", kind: "sample" },
|
|
24
24
|
{ id: "playground", title: "Playground", file: "apps/showcase/src/app/components/gadgets/sg-qr-code/sg-qr-code.tsx.playground", kind: "playground" }
|
|
25
25
|
],
|
|
26
26
|
showcase: { route: "/components/gadgets/sg-qr-code", hasPlayground: true, hasPropsTable: true },
|
|
@@ -20,7 +20,7 @@ export const sgMeta = {
|
|
|
20
20
|
],
|
|
21
21
|
states: ["idle", "animating", "completed"],
|
|
22
22
|
examples: [
|
|
23
|
-
{ id: "
|
|
23
|
+
{ id: "roller-3d", title: "Roller 3D (numeros)", file: "apps/showcase/src/app/components/gadgets/sg-string-animator/samples/roller-3d-numeros-right-aligned.tsx.sample", kind: "sample" },
|
|
24
24
|
{ id: "playground", title: "Playground", file: "apps/showcase/src/app/components/gadgets/sg-string-animator/sg-string-animator.tsx.playground", kind: "playground" }
|
|
25
25
|
],
|
|
26
26
|
showcase: { route: "/components/gadgets/sg-string-animator", hasPlayground: true, hasPropsTable: true },
|
package/dist/i18n/en-US.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-US.d.ts","sourceRoot":"","sources":["../../src/i18n/en-US.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"en-US.d.ts","sourceRoot":"","sources":["../../src/i18n/en-US.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuNhC,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -148,6 +148,7 @@ const enUS = {
|
|
|
148
148
|
"components.badge.remove": "Remove badge",
|
|
149
149
|
"components.toast.loading": "Loading...",
|
|
150
150
|
"components.toaster.close": "Close toast",
|
|
151
|
+
"components.whistler.close": "Close alert",
|
|
151
152
|
"components.dialog.ariaLabel": "Dialog",
|
|
152
153
|
"components.dialog.close": "Close",
|
|
153
154
|
"components.popup.ariaLabel": "Popup",
|
package/dist/i18n/es.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../src/i18n/es.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../src/i18n/es.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuN9B,CAAC;AAEF,eAAe,EAAE,CAAC"}
|
package/dist/i18n/es.js
CHANGED
|
@@ -148,6 +148,7 @@ const es = {
|
|
|
148
148
|
"components.badge.remove": "Quitar insignia",
|
|
149
149
|
"components.toast.loading": "Cargando...",
|
|
150
150
|
"components.toaster.close": "Cerrar notificacion",
|
|
151
|
+
"components.whistler.close": "Cerrar aviso",
|
|
151
152
|
"components.dialog.ariaLabel": "Dialogo",
|
|
152
153
|
"components.dialog.close": "Cerrar",
|
|
153
154
|
"components.popup.ariaLabel": "Popup",
|
package/dist/i18n/fr.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuN9B,CAAC;AAEF,eAAe,EAAE,CAAC"}
|
package/dist/i18n/fr.js
CHANGED
|
@@ -148,6 +148,7 @@ const fr = {
|
|
|
148
148
|
"components.badge.remove": "Retirer badge",
|
|
149
149
|
"components.toast.loading": "Chargement...",
|
|
150
150
|
"components.toaster.close": "Fermer la notification",
|
|
151
|
+
"components.whistler.close": "Fermer l'alerte",
|
|
151
152
|
"components.dialog.ariaLabel": "Dialogue",
|
|
152
153
|
"components.dialog.close": "Fermer",
|
|
153
154
|
"components.popup.ariaLabel": "Fenetre",
|
package/dist/i18n/pt-BR.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pt-BR.d.ts","sourceRoot":"","sources":["../../src/i18n/pt-BR.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"pt-BR.d.ts","sourceRoot":"","sources":["../../src/i18n/pt-BR.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuNhC,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
package/dist/i18n/pt-BR.js
CHANGED
|
@@ -148,6 +148,7 @@ const ptBR = {
|
|
|
148
148
|
"components.badge.remove": "Remover badge",
|
|
149
149
|
"components.toast.loading": "Carregando...",
|
|
150
150
|
"components.toaster.close": "Fechar notificacao",
|
|
151
|
+
"components.whistler.close": "Fechar aviso",
|
|
151
152
|
"components.dialog.ariaLabel": "Dialogo",
|
|
152
153
|
"components.dialog.close": "Fechar",
|
|
153
154
|
"components.popup.ariaLabel": "Popup",
|
package/dist/i18n/pt-PT.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pt-PT.d.ts","sourceRoot":"","sources":["../../src/i18n/pt-PT.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"pt-PT.d.ts","sourceRoot":"","sources":["../../src/i18n/pt-PT.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuNhC,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
package/dist/i18n/pt-PT.js
CHANGED
|
@@ -148,6 +148,7 @@ const ptPT = {
|
|
|
148
148
|
"components.badge.remove": "Remover badge",
|
|
149
149
|
"components.toast.loading": "A carregar...",
|
|
150
150
|
"components.toaster.close": "Fechar notificacao",
|
|
151
|
+
"components.whistler.close": "Fechar aviso",
|
|
151
152
|
"components.dialog.ariaLabel": "Dialogo",
|
|
152
153
|
"components.dialog.close": "Fechar",
|
|
153
154
|
"components.popup.ariaLabel": "Popup",
|
|
@@ -30,15 +30,15 @@ export const sgMeta = {
|
|
|
30
30
|
states: ["pt-BR", "pt-PT", "en-US", "en", "es", "fr"],
|
|
31
31
|
examples: [
|
|
32
32
|
{
|
|
33
|
-
id: "
|
|
34
|
-
title: "
|
|
35
|
-
file: "apps/showcase/src/app/components/hooks/use-components-i18n/samples/
|
|
33
|
+
id: "uso-basico",
|
|
34
|
+
title: "Uso basico",
|
|
35
|
+
file: "apps/showcase/src/app/components/hooks/use-components-i18n/samples/uso-basico.tsx.sample",
|
|
36
36
|
kind: "sample"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
id: "
|
|
40
|
-
title: "
|
|
41
|
-
file: "apps/showcase/src/app/components/hooks/use-components-i18n/samples/
|
|
39
|
+
id: "locale-aware",
|
|
40
|
+
title: "Componentes conscientes do locale",
|
|
41
|
+
file: "apps/showcase/src/app/components/hooks/use-components-i18n/samples/componentes-conscientes-do-locale.tsx.sample",
|
|
42
42
|
kind: "sample"
|
|
43
43
|
}
|
|
44
44
|
],
|
|
@@ -22,7 +22,7 @@ export const sgMeta = {
|
|
|
22
22
|
],
|
|
23
23
|
states: ["idle", "sliding", "autoplay"],
|
|
24
24
|
examples: [
|
|
25
|
-
{ id: "
|
|
25
|
+
{ id: "basico-horizontal", title: "Basico horizontal", file: "apps/showcase/src/app/components/sg-carousel/samples/basico-horizontal.tsx.sample", kind: "sample" },
|
|
26
26
|
{ id: "playground", title: "Playground", file: "apps/showcase/src/app/components/sg-carousel/sg-carousel.tsx.playground", kind: "playground" }
|
|
27
27
|
],
|
|
28
28
|
showcase: { route: "/components/sg-carousel", hasPlayground: true, hasPropsTable: true },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SgExpandablePanel.meta.d.ts","sourceRoot":"","sources":["../../src/layout/SgExpandablePanel.meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE9D,eAAO,MAAM,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"SgExpandablePanel.meta.d.ts","sourceRoot":"","sources":["../../src/layout/SgExpandablePanel.meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE9D,eAAO,MAAM,MAAM,EAAE,QAkCpB,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,WAmBrB,CAAC"}
|
|
@@ -22,7 +22,11 @@ export const sgMeta = {
|
|
|
22
22
|
],
|
|
23
23
|
states: ["closed", "open", "overlay", "inline", "resizing"],
|
|
24
24
|
examples: [
|
|
25
|
-
{ id: "
|
|
25
|
+
{ id: "inline-controlado-resize", title: "Inline controlado com resize", file: "apps/showcase/src/app/components/sg-expandable-panel/samples/inline-controlado-resize.tsx.sample", kind: "sample" },
|
|
26
|
+
{ id: "overlay-comportamento", title: "Comportamento em overlay", file: "apps/showcase/src/app/components/sg-expandable-panel/samples/overlay-comportamento.tsx.sample", kind: "sample" },
|
|
27
|
+
{ id: "default-open-estilizacao", title: "Aberto por padrao e estilizacao", file: "apps/showcase/src/app/components/sg-expandable-panel/samples/default-open-estilizacao.tsx.sample", kind: "sample" },
|
|
28
|
+
{ id: "acessibilidade-fade", title: "Acessibilidade e fade", file: "apps/showcase/src/app/components/sg-expandable-panel/samples/acessibilidade-fade.tsx.sample", kind: "sample" },
|
|
29
|
+
{ id: "sem-backdrop-animation-none", title: "Sem backdrop e sem animacao", file: "apps/showcase/src/app/components/sg-expandable-panel/samples/sem-backdrop-animation-none.tsx.sample", kind: "sample" },
|
|
26
30
|
{ id: "playground", title: "Playground", file: "apps/showcase/src/app/components/sg-expandable-panel/sg-expandable-panel.tsx.playground", kind: "playground" }
|
|
27
31
|
],
|
|
28
32
|
showcase: { route: "/components/sg-expandable-panel", hasPlayground: true, hasPropsTable: true },
|
|
@@ -67,9 +67,9 @@ export const sgMeta = {
|
|
|
67
67
|
states: ["default", "dense", "responsive"],
|
|
68
68
|
examples: [
|
|
69
69
|
{
|
|
70
|
-
id: "
|
|
71
|
-
title: "
|
|
72
|
-
file: "apps/showcase/src/app/components/sg-grid/samples/
|
|
70
|
+
id: "columns-responsivo",
|
|
71
|
+
title: "Columns responsivo",
|
|
72
|
+
file: "apps/showcase/src/app/components/sg-grid/samples/columns-responsivo.tsx.sample",
|
|
73
73
|
kind: "sample"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SgMenu.meta.d.ts","sourceRoot":"","sources":["../../src/layout/SgMenu.meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE9D,eAAO,MAAM,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"SgMenu.meta.d.ts","sourceRoot":"","sources":["../../src/layout/SgMenu.meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE9D,eAAO,MAAM,MAAM,EAAE,QAmJpB,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,WAyBrB,CAAC"}
|
|
@@ -82,9 +82,45 @@ export const sgMeta = {
|
|
|
82
82
|
states: ["default", "collapsed", "expanded", "pinned", "searching", "docked"],
|
|
83
83
|
examples: [
|
|
84
84
|
{
|
|
85
|
-
id: "
|
|
86
|
-
title: "
|
|
87
|
-
file: "apps/showcase/src/app/components/sg-menu/samples/
|
|
85
|
+
id: "sidebar-fixa",
|
|
86
|
+
title: "Sidebar fixa",
|
|
87
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/sidebar-fixa.tsx.sample",
|
|
88
|
+
kind: "sample"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
id: "drawer-mobile",
|
|
92
|
+
title: "Drawer mobile",
|
|
93
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/drawer-mobile.tsx.sample",
|
|
94
|
+
kind: "sample"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
id: "panel-menu",
|
|
98
|
+
title: "Panel menu",
|
|
99
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/panel-menu.tsx.sample",
|
|
100
|
+
kind: "sample"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
id: "tiered",
|
|
104
|
+
title: "Menu em niveis",
|
|
105
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/tiered.tsx.sample",
|
|
106
|
+
kind: "sample"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
id: "mega-menu-horizontal",
|
|
110
|
+
title: "Mega menu horizontal",
|
|
111
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/mega-menu-horizontal.tsx.sample",
|
|
112
|
+
kind: "sample"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
id: "mega-menu-vertical",
|
|
116
|
+
title: "Mega menu vertical",
|
|
117
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/mega-menu-vertical.tsx.sample",
|
|
118
|
+
kind: "sample"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
id: "sidebar-dockable",
|
|
122
|
+
title: "Sidebar dockable",
|
|
123
|
+
file: "apps/showcase/src/app/components/sg-menu/samples/sidebar-dockable.tsx.sample",
|
|
88
124
|
kind: "sample"
|
|
89
125
|
},
|
|
90
126
|
{
|
|
@@ -71,9 +71,9 @@ export const sgMeta = {
|
|
|
71
71
|
states: ["default", "row", "column", "wrapped", "growing"],
|
|
72
72
|
examples: [
|
|
73
73
|
{
|
|
74
|
-
id: "
|
|
75
|
-
title: "
|
|
76
|
-
file: "apps/showcase/src/app/components/sg-stack/samples/
|
|
74
|
+
id: "column-row",
|
|
75
|
+
title: "Column e row",
|
|
76
|
+
file: "apps/showcase/src/app/components/sg-stack/samples/column-row.tsx.sample",
|
|
77
77
|
kind: "sample"
|
|
78
78
|
},
|
|
79
79
|
{
|