enwawa-ui 3.3.2 → 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 CHANGED
@@ -3693,6 +3693,10 @@ export interface OrFormInLineItem {
3693
3693
  * Props for the draggable table
3694
3694
  */
3695
3695
  draggableTableProps?: OrDraggableTableProps;
3696
+ /**
3697
+ * Id for the qr code element
3698
+ */
3699
+ qrCodeId?: string;
3696
3700
  }
3697
3701
  export interface OrFormItemsInlineProps {
3698
3702
  inputs?: Array<OrFormInLineItem | Array<OrFormInLineItem | OrFormInLineItem[]>>;
@@ -4327,8 +4331,12 @@ export interface TmCustomTabsPageProps<FormType = any> {
4327
4331
  * Tabs props
4328
4332
  */
4329
4333
  tabsProps: OrTabsProps;
4334
+ /**
4335
+ * Breadcrumb items titles
4336
+ */
4337
+ breadcrumbItems?: MlBreadcrumbProps['items'];
4330
4338
  }
4331
- 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;
4332
4340
  interface IDashboardItems {
4333
4341
  gutter: {
4334
4342
  xs?: number;
@@ -5307,6 +5315,10 @@ export interface OrTabsModuleLayoutProps<FormType = any> {
5307
5315
  * On change form content
5308
5316
  */
5309
5317
  onValuesChange?: OrFormProps['onValuesChange'];
5318
+ /**
5319
+ * Breadcrumb items titles
5320
+ */
5321
+ breadcrumbItems?: MlBreadcrumbProps['items'];
5310
5322
  }
5311
5323
  export const OrTabsModuleLayout: React.FC<OrTabsModuleLayoutProps>;
5312
5324
  export interface AtCircularChartProps<T> {
@@ -5636,6 +5648,10 @@ export interface AtQrCodeProps {
5636
5648
  * The text to encode
5637
5649
  */
5638
5650
  text: string;
5651
+ /**
5652
+ * The id of the qr code
5653
+ */
5654
+ id?: string;
5639
5655
  /**
5640
5656
  * The size of the QR code
5641
5657
  */