enwawa-ui 4.1.28 → 4.1.30
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 +13 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +210 -148
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +210 -148
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2816,6 +2816,7 @@ export interface OrModuleCalendarHeaderProps {
|
|
|
2816
2816
|
value?: AtSelectProps['value'];
|
|
2817
2817
|
options: AtSelectProps['options'];
|
|
2818
2818
|
onChange: AtSelectProps['onChange'];
|
|
2819
|
+
mode?: AtSelectProps['mode'];
|
|
2819
2820
|
}[];
|
|
2820
2821
|
/**
|
|
2821
2822
|
* Columns for buttons filters.
|
|
@@ -4270,6 +4271,10 @@ export interface TmMapPageProps<FormType = any> {
|
|
|
4270
4271
|
* * loading state
|
|
4271
4272
|
*/
|
|
4272
4273
|
loading?: boolean;
|
|
4274
|
+
/**
|
|
4275
|
+
* secondary button badge count
|
|
4276
|
+
*/
|
|
4277
|
+
secondaryButtonBadgeCount?: number;
|
|
4273
4278
|
/**
|
|
4274
4279
|
* drawer config
|
|
4275
4280
|
*/
|
|
@@ -4307,6 +4312,10 @@ export interface TmMapPageProps<FormType = any> {
|
|
|
4307
4312
|
*/
|
|
4308
4313
|
drawerWidth?: number;
|
|
4309
4314
|
};
|
|
4315
|
+
/**
|
|
4316
|
+
* Optional table props from crud page props to render a table below them app
|
|
4317
|
+
*/
|
|
4318
|
+
tableProps?: TmCrudPageProps;
|
|
4310
4319
|
}
|
|
4311
4320
|
export const TmMapPage: React.FC<TmMapPageProps>;
|
|
4312
4321
|
export interface OrRentalLayoutProps {
|
|
@@ -5880,6 +5889,10 @@ export interface OrModuleTableHeaderProps {
|
|
|
5880
5889
|
* justify the contents of the main container
|
|
5881
5890
|
*/
|
|
5882
5891
|
mainContainerJustifyContent?: _CSSProperties1["justifyContent"];
|
|
5892
|
+
/**
|
|
5893
|
+
* secondary button badge count
|
|
5894
|
+
*/
|
|
5895
|
+
secondaryButtonBadgeCount?: number;
|
|
5883
5896
|
}
|
|
5884
5897
|
export const OrModuleTableHeader: React.FC<OrModuleTableHeaderProps>;
|
|
5885
5898
|
export interface OrListSelectionProps {
|