enwawa-ui 4.1.34 → 4.1.36
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 +24 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +212 -179
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +212 -179
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
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 {
|
|
@@ -4812,6 +4823,14 @@ export interface TmRequestsPageProps<_RecordType = AnyObject, FormType = any> {
|
|
|
4812
4823
|
* Show drawer content
|
|
4813
4824
|
*/
|
|
4814
4825
|
showDrawerContent?: boolean;
|
|
4826
|
+
/**
|
|
4827
|
+
* Expand left column to full width, collapsing the right column
|
|
4828
|
+
*/
|
|
4829
|
+
expandLeftSide?: boolean;
|
|
4830
|
+
/**
|
|
4831
|
+
* Expand right column to full width, collapsing the left column
|
|
4832
|
+
*/
|
|
4833
|
+
expandRightSide?: boolean;
|
|
4815
4834
|
}
|
|
4816
4835
|
export const TmRequestsPage: React.FC<TmRequestsPageProps>;
|
|
4817
4836
|
export const TmRequestsForm: React.FC<TmRequestsPageProps>;
|
|
@@ -5914,6 +5933,10 @@ export interface OrModuleTableHeaderProps {
|
|
|
5914
5933
|
* Button onClick
|
|
5915
5934
|
*/
|
|
5916
5935
|
secondaryButtonOnClick?: (React.MouseEventHandler<HTMLAnchorElement> & React.MouseEventHandler<HTMLButtonElement>) | undefined;
|
|
5936
|
+
/**
|
|
5937
|
+
* secondary button badge count
|
|
5938
|
+
*/
|
|
5939
|
+
secondaryButtonBadgeCount?: number;
|
|
5917
5940
|
/**
|
|
5918
5941
|
* Icon for first button
|
|
5919
5942
|
*/
|
|
@@ -5925,11 +5948,7 @@ export interface OrModuleTableHeaderProps {
|
|
|
5925
5948
|
/**
|
|
5926
5949
|
* justify the contents of the main container
|
|
5927
5950
|
*/
|
|
5928
|
-
mainContainerJustifyContent?: _CSSProperties1[
|
|
5929
|
-
/**
|
|
5930
|
-
* secondary button badge count
|
|
5931
|
-
*/
|
|
5932
|
-
secondaryButtonBadgeCount?: number;
|
|
5951
|
+
mainContainerJustifyContent?: _CSSProperties1['justifyContent'];
|
|
5933
5952
|
}
|
|
5934
5953
|
export const OrModuleTableHeader: React.FC<OrModuleTableHeaderProps>;
|
|
5935
5954
|
export interface OrListSelectionProps {
|