enwawa-ui 4.1.33 → 4.1.34
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 +6 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +170 -176
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +170 -176
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4288,9 +4288,13 @@ export interface TmMapPageProps<FormType = any> {
|
|
|
4288
4288
|
*/
|
|
4289
4289
|
loading?: boolean;
|
|
4290
4290
|
/**
|
|
4291
|
-
*
|
|
4291
|
+
* on click legend button event handler
|
|
4292
4292
|
*/
|
|
4293
|
-
|
|
4293
|
+
onClickLegendButton?: () => void;
|
|
4294
|
+
/**
|
|
4295
|
+
* legend button label
|
|
4296
|
+
*/
|
|
4297
|
+
legendButtonLabel?: string;
|
|
4294
4298
|
/**
|
|
4295
4299
|
* drawer config
|
|
4296
4300
|
*/
|
|
@@ -4328,10 +4332,6 @@ export interface TmMapPageProps<FormType = any> {
|
|
|
4328
4332
|
*/
|
|
4329
4333
|
drawerWidth?: number;
|
|
4330
4334
|
};
|
|
4331
|
-
/**
|
|
4332
|
-
* Optional table props from crud page props to render a table below them app
|
|
4333
|
-
*/
|
|
4334
|
-
tableProps?: TmCrudPageProps;
|
|
4335
4335
|
}
|
|
4336
4336
|
export const TmMapPage: React.FC<TmMapPageProps>;
|
|
4337
4337
|
export interface OrRentalLayoutProps {
|