enwawa-ui 4.1.33 → 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
  */
@@ -4288,9 +4295,13 @@ export interface TmMapPageProps<FormType = any> {
4288
4295
  */
4289
4296
  loading?: boolean;
4290
4297
  /**
4291
- * secondary button badge count
4298
+ * on click legend button event handler
4292
4299
  */
4293
- secondaryButtonBadgeCount?: number;
4300
+ onClickLegendButton?: () => void;
4301
+ /**
4302
+ * legend button label
4303
+ */
4304
+ legendButtonLabel?: string;
4294
4305
  /**
4295
4306
  * drawer config
4296
4307
  */
@@ -4329,7 +4340,7 @@ export interface TmMapPageProps<FormType = any> {
4329
4340
  drawerWidth?: number;
4330
4341
  };
4331
4342
  /**
4332
- * Optional table props from crud page props to render a table below them app
4343
+ * Optional table props from crud page props to render a table below the map
4333
4344
  */
4334
4345
  tableProps?: TmCrudPageProps;
4335
4346
  }
@@ -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 {