ies2-aulapp-ui-kit 0.1.13 → 0.2.0

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.
Files changed (31) hide show
  1. package/dist/App.d.ts +5 -0
  2. package/dist/components/sections/BadgesPanel.d.ts +9 -1
  3. package/dist/components/sections/CallToActionPanel.d.ts +9 -1
  4. package/dist/components/sections/ComponentsPanel.d.ts +9 -1
  5. package/dist/components/sections/HeroBanner.d.ts +9 -1
  6. package/dist/index.cjs.js +24 -24
  7. package/dist/index.d.ts +6 -0
  8. package/dist/index.es.js +5867 -3732
  9. package/dist/lib/i18n/components/I18nProvider.d.ts +38 -0
  10. package/dist/lib/i18n/components/LanguageSwitcher.d.ts +6 -0
  11. package/dist/lib/i18n/config.d.ts +2 -0
  12. package/dist/lib/i18n/hooks/useI18n.d.ts +32 -0
  13. package/dist/lib/i18n/index.d.ts +5 -0
  14. package/dist/lib/i18n/locales/en-US/badges-panel.json.d.ts +13 -0
  15. package/dist/lib/i18n/locales/en-US/call-to-action-panel.json.d.ts +12 -0
  16. package/dist/lib/i18n/locales/en-US/common.json.d.ts +7 -0
  17. package/dist/lib/i18n/locales/en-US/components-panel.json.d.ts +19 -0
  18. package/dist/lib/i18n/locales/en-US/hero-banner.json.d.ts +7 -0
  19. package/dist/lib/i18n/locales/es/badges-panel.json.d.ts +13 -0
  20. package/dist/lib/i18n/locales/es/call-to-action-panel.json.d.ts +12 -0
  21. package/dist/lib/i18n/locales/es/common.json.d.ts +7 -0
  22. package/dist/lib/i18n/locales/es/components-panel.json.d.ts +19 -0
  23. package/dist/lib/i18n/locales/es/hero-banner.json.d.ts +7 -0
  24. package/dist/lib/i18n/locales/pt-BR/badges-panel.json.d.ts +13 -0
  25. package/dist/lib/i18n/locales/pt-BR/call-to-action-panel.json.d.ts +12 -0
  26. package/dist/lib/i18n/locales/pt-BR/common.json.d.ts +7 -0
  27. package/dist/lib/i18n/locales/pt-BR/components-panel.json.d.ts +19 -0
  28. package/dist/lib/i18n/locales/pt-BR/hero-banner.json.d.ts +7 -0
  29. package/dist/lib/i18n/types.d.ts +4 -0
  30. package/dist/stories/i18n.stories.d.ts +14 -0
  31. package/package.json +3 -1
package/dist/App.d.ts CHANGED
@@ -1,2 +1,7 @@
1
+ /**
2
+ * Exemplo de uso: Sistema simples de controle de idioma
3
+ * Demonstra como é fácil integrar o i18n do UI Kit com qualquer
4
+ * sistema de gerenciamento de idioma do projeto consumidor.
5
+ */
1
6
  declare function App(): import("react/jsx-runtime").JSX.Element;
2
7
  export default App;
@@ -1 +1,9 @@
1
- export declare function BadgesPanel(): import("react/jsx-runtime").JSX.Element;
1
+ export interface BadgesPanelProps {
2
+ /**
3
+ * Locale opcional para controlar o idioma do componente.
4
+ * Aceita: 'pt-BR', 'en-US', 'es' ou qualquer outro locale.
5
+ * Se não fornecido, usa o idioma padrão (pt-BR).
6
+ */
7
+ locale?: string;
8
+ }
9
+ export declare function BadgesPanel({ locale }?: BadgesPanelProps): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,9 @@
1
- export declare function CallToActionPanel(): import("react/jsx-runtime").JSX.Element;
1
+ export interface CallToActionPanelProps {
2
+ /**
3
+ * Locale opcional para controlar o idioma do componente.
4
+ * Aceita: 'pt-BR', 'en-US', 'es' ou qualquer outro locale.
5
+ * Se não fornecido, usa o idioma padrão (pt-BR).
6
+ */
7
+ locale?: string;
8
+ }
9
+ export declare function CallToActionPanel({ locale }?: CallToActionPanelProps): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,9 @@
1
- export declare function ComponentsPanel(): import("react/jsx-runtime").JSX.Element;
1
+ export interface ComponentsPanelProps {
2
+ /**
3
+ * Locale opcional para controlar o idioma do componente.
4
+ * Aceita: 'pt-BR', 'en-US', 'es' ou qualquer outro locale.
5
+ * Se não fornecido, usa o idioma padrão (pt-BR).
6
+ */
7
+ locale?: string;
8
+ }
9
+ export declare function ComponentsPanel({ locale }?: ComponentsPanelProps): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,9 @@
1
- export declare function HeroBanner(): import("react/jsx-runtime").JSX.Element;
1
+ export interface HeroBannerProps {
2
+ /**
3
+ * Locale opcional para controlar o idioma do componente.
4
+ * Aceita: 'pt-BR', 'en-US', 'es' ou qualquer outro locale.
5
+ * Se não fornecido, usa o idioma padrão (pt-BR).
6
+ */
7
+ locale?: string;
8
+ }
9
+ export declare function HeroBanner({ locale }?: HeroBannerProps): import("react/jsx-runtime").JSX.Element;