enwawa-ui 4.1.34 → 4.1.35

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
@@ -4234,6 +4234,10 @@ export interface TmMapPageProps<FormType = any> {
4234
4234
  * secondary button icon
4235
4235
  */
4236
4236
  secondaryButtonIcon?: React.ReactNode;
4237
+ /**
4238
+ * secondary button badge count
4239
+ */
4240
+ secondaryButtonBadgeCount?: number;
4237
4241
  /**
4238
4242
  * secondary button onClick event handler
4239
4243
  */
@@ -4242,6 +4246,9 @@ export interface TmMapPageProps<FormType = any> {
4242
4246
  * add button onClick event handler
4243
4247
  */
4244
4248
  addButtonOnClick?: () => void;
4249
+ /**
4250
+ * secondary button badge count
4251
+ */
4245
4252
  /**
4246
4253
  * search box value
4247
4254
  */
@@ -4332,6 +4339,10 @@ export interface TmMapPageProps<FormType = any> {
4332
4339
  */
4333
4340
  drawerWidth?: number;
4334
4341
  };
4342
+ /**
4343
+ * Optional table props from crud page props to render a table below the map
4344
+ */
4345
+ tableProps?: TmCrudPageProps;
4335
4346
  }
4336
4347
  export const TmMapPage: React.FC<TmMapPageProps>;
4337
4348
  export interface OrRentalLayoutProps {
@@ -5914,6 +5925,10 @@ export interface OrModuleTableHeaderProps {
5914
5925
  * Button onClick
5915
5926
  */
5916
5927
  secondaryButtonOnClick?: (React.MouseEventHandler<HTMLAnchorElement> & React.MouseEventHandler<HTMLButtonElement>) | undefined;
5928
+ /**
5929
+ * secondary button badge count
5930
+ */
5931
+ secondaryButtonBadgeCount?: number;
5917
5932
  /**
5918
5933
  * Icon for first button
5919
5934
  */
@@ -5925,11 +5940,7 @@ export interface OrModuleTableHeaderProps {
5925
5940
  /**
5926
5941
  * justify the contents of the main container
5927
5942
  */
5928
- mainContainerJustifyContent?: _CSSProperties1["justifyContent"];
5929
- /**
5930
- * secondary button badge count
5931
- */
5932
- secondaryButtonBadgeCount?: number;
5943
+ mainContainerJustifyContent?: _CSSProperties1['justifyContent'];
5933
5944
  }
5934
5945
  export const OrModuleTableHeader: React.FC<OrModuleTableHeaderProps>;
5935
5946
  export interface OrListSelectionProps {