ies2-aulapp-ui-kit 0.1.13 → 0.1.14
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/components/sections/BadgesPanel.d.ts +9 -1
- package/dist/components/sections/CallToActionPanel.d.ts +9 -1
- package/dist/components/sections/ComponentsPanel.d.ts +9 -1
- package/dist/components/sections/HeroBanner.d.ts +9 -1
- package/dist/index.cjs.js +24 -24
- package/dist/index.d.ts +6 -0
- package/dist/index.es.js +5867 -3732
- package/dist/lib/i18n/components/I18nProvider.d.ts +38 -0
- package/dist/lib/i18n/components/LanguageSwitcher.d.ts +6 -0
- package/dist/lib/i18n/config.d.ts +2 -0
- package/dist/lib/i18n/hooks/useI18n.d.ts +32 -0
- package/dist/lib/i18n/index.d.ts +5 -0
- package/dist/lib/i18n/locales/en-US/badges-panel.json.d.ts +13 -0
- package/dist/lib/i18n/locales/en-US/call-to-action-panel.json.d.ts +12 -0
- package/dist/lib/i18n/locales/en-US/common.json.d.ts +7 -0
- package/dist/lib/i18n/locales/en-US/components-panel.json.d.ts +19 -0
- package/dist/lib/i18n/locales/en-US/hero-banner.json.d.ts +7 -0
- package/dist/lib/i18n/locales/es/badges-panel.json.d.ts +13 -0
- package/dist/lib/i18n/locales/es/call-to-action-panel.json.d.ts +12 -0
- package/dist/lib/i18n/locales/es/common.json.d.ts +7 -0
- package/dist/lib/i18n/locales/es/components-panel.json.d.ts +19 -0
- package/dist/lib/i18n/locales/es/hero-banner.json.d.ts +7 -0
- package/dist/lib/i18n/locales/pt-BR/badges-panel.json.d.ts +13 -0
- package/dist/lib/i18n/locales/pt-BR/call-to-action-panel.json.d.ts +12 -0
- package/dist/lib/i18n/locales/pt-BR/common.json.d.ts +7 -0
- package/dist/lib/i18n/locales/pt-BR/components-panel.json.d.ts +19 -0
- package/dist/lib/i18n/locales/pt-BR/hero-banner.json.d.ts +7 -0
- package/dist/lib/i18n/types.d.ts +4 -0
- package/dist/stories/i18n.stories.d.ts +14 -0
- package/package.json +3 -1
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import { SupportedLocale } from '../../lib/i18n';
|
|
2
|
+
export interface BadgesPanelProps {
|
|
3
|
+
/**
|
|
4
|
+
* Locale opcional para controlar o idioma do componente.
|
|
5
|
+
* Se não fornecido, usa o idioma global do i18n.
|
|
6
|
+
*/
|
|
7
|
+
locale?: SupportedLocale;
|
|
8
|
+
}
|
|
9
|
+
export declare function BadgesPanel({ locale }?: BadgesPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import { SupportedLocale } from '../../lib/i18n';
|
|
2
|
+
export interface CallToActionPanelProps {
|
|
3
|
+
/**
|
|
4
|
+
* Locale opcional para controlar o idioma do componente.
|
|
5
|
+
* Se não fornecido, usa o idioma global do i18n.
|
|
6
|
+
*/
|
|
7
|
+
locale?: SupportedLocale;
|
|
8
|
+
}
|
|
9
|
+
export declare function CallToActionPanel({ locale }?: CallToActionPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import { SupportedLocale } from '../../lib/i18n';
|
|
2
|
+
export interface ComponentsPanelProps {
|
|
3
|
+
/**
|
|
4
|
+
* Locale opcional para controlar o idioma do componente.
|
|
5
|
+
* Se não fornecido, usa o idioma global do i18n.
|
|
6
|
+
*/
|
|
7
|
+
locale?: SupportedLocale;
|
|
8
|
+
}
|
|
9
|
+
export declare function ComponentsPanel({ locale }?: ComponentsPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import { SupportedLocale } from '../../lib/i18n';
|
|
2
|
+
export interface HeroBannerProps {
|
|
3
|
+
/**
|
|
4
|
+
* Locale opcional para controlar o idioma do componente.
|
|
5
|
+
* Se não fornecido, usa o idioma global do i18n.
|
|
6
|
+
*/
|
|
7
|
+
locale?: SupportedLocale;
|
|
8
|
+
}
|
|
9
|
+
export declare function HeroBanner({ locale }?: HeroBannerProps): import("react/jsx-runtime").JSX.Element;
|