enwawa-ui 3.3.3 → 3.3.4
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/lib/index.d.ts +9 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +779 -772
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +779 -772
- package/lib/index.js.map +1 -1
- package/lib/{wawa-isotype.da9ebd6e.svg → wawa-isotype.28dcf3ba.svg} +4 -4
- package/lib/{wawa-logo.bb8f5a4d.svg → wawa-logo.f82ab6f2.svg} +6 -6
- package/package.json +130 -131
- package/readme.md +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -4331,8 +4331,12 @@ export interface TmCustomTabsPageProps<FormType = any> {
|
|
|
4331
4331
|
* Tabs props
|
|
4332
4332
|
*/
|
|
4333
4333
|
tabsProps: OrTabsProps;
|
|
4334
|
+
/**
|
|
4335
|
+
* Breadcrumb items titles
|
|
4336
|
+
*/
|
|
4337
|
+
breadcrumbItems?: MlBreadcrumbProps['items'];
|
|
4334
4338
|
}
|
|
4335
|
-
export const TmCustomTabsPage: <FormType extends Store>({ avatar, username, phone, balanceLabel, balanceValue, infoIcon, infoLabel, infoValue, mainButtonLabel, mainButtonIcon, onClickLeftArrow, onClickMainAction, formSteps, handleCloseCallback, open, drawerTitle, drawerWidth, disabledButtons, currentFormStep, showFormStepper, onValuesChange, tabsProps, }: TmCustomTabsPageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
4339
|
+
export const TmCustomTabsPage: <FormType extends Store>({ avatar, username, phone, balanceLabel, balanceValue, infoIcon, infoLabel, infoValue, mainButtonLabel, mainButtonIcon, onClickLeftArrow, onClickMainAction, formSteps, handleCloseCallback, open, drawerTitle, drawerWidth, disabledButtons, currentFormStep, showFormStepper, onValuesChange, tabsProps, breadcrumbItems, }: TmCustomTabsPageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
4336
4340
|
interface IDashboardItems {
|
|
4337
4341
|
gutter: {
|
|
4338
4342
|
xs?: number;
|
|
@@ -5311,6 +5315,10 @@ export interface OrTabsModuleLayoutProps<FormType = any> {
|
|
|
5311
5315
|
* On change form content
|
|
5312
5316
|
*/
|
|
5313
5317
|
onValuesChange?: OrFormProps['onValuesChange'];
|
|
5318
|
+
/**
|
|
5319
|
+
* Breadcrumb items titles
|
|
5320
|
+
*/
|
|
5321
|
+
breadcrumbItems?: MlBreadcrumbProps['items'];
|
|
5314
5322
|
}
|
|
5315
5323
|
export const OrTabsModuleLayout: React.FC<OrTabsModuleLayoutProps>;
|
|
5316
5324
|
export interface AtCircularChartProps<T> {
|