enwawa-ui 4.1.22 → 4.1.23
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 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +33 -16
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +33 -16
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2984,6 +2984,10 @@ export interface TmCrudPageProps<RecordType = AnyObject, FormType = any> {
|
|
|
2984
2984
|
* current step
|
|
2985
2985
|
*/
|
|
2986
2986
|
currentFormStep?: number;
|
|
2987
|
+
/**
|
|
2988
|
+
* Search table elements
|
|
2989
|
+
*/
|
|
2990
|
+
searchBoxValue?: OrModuleTableHeaderProps['searchBoxValue'];
|
|
2987
2991
|
/**
|
|
2988
2992
|
* Search table elements
|
|
2989
2993
|
*/
|
|
@@ -3079,7 +3083,7 @@ export interface TmCrudPageProps<RecordType = AnyObject, FormType = any> {
|
|
|
3079
3083
|
breadcrumbItems?: MlBreadcrumbProps['items'];
|
|
3080
3084
|
padding?: string;
|
|
3081
3085
|
}
|
|
3082
|
-
export const TmCrudPage: <RecordType extends AnyObject, FormType extends Store>({ columns, data, loadingTable, formSteps, onValuesChange, onCloseLeftDrawer, leftDrawerContent, openLeftDrawer, subtitle, subContent, open, pageSize, currentPage, currentFormStep, titleLeftDrawer, leftDrawerWidth, drawerContent, showDrawerContent, showSearchBox, drawerTitle, drawerWidth, firstButtonText, secondButtonText, onClickFirstButton, onClickSecondButton, $margin, title, tableTitle, buttonAddText, addButtonOnClick, onChangePagination, onChangeTable, total, showTotal, disabledButtons, searchBoxOnSearch, searchBoxPlaceholder, tableHeaderCustomLeftElements, pagination, handleCloseCallback, tableTitleLevel, secondaryButtonText, secondaryOnClick, showFormStepper, onBack, padding, expandable, breadcrumbItems, }: TmCrudPageProps<RecordType, FormType>) => JSX.Element;
|
|
3086
|
+
export const TmCrudPage: <RecordType extends AnyObject, FormType extends Store>({ columns, data, loadingTable, formSteps, onValuesChange, onCloseLeftDrawer, leftDrawerContent, openLeftDrawer, subtitle, subContent, open, pageSize, currentPage, currentFormStep, titleLeftDrawer, leftDrawerWidth, drawerContent, showDrawerContent, showSearchBox, drawerTitle, drawerWidth, firstButtonText, secondButtonText, onClickFirstButton, onClickSecondButton, $margin, title, tableTitle, buttonAddText, addButtonOnClick, onChangePagination, onChangeTable, total, showTotal, disabledButtons, searchBoxOnSearch, searchBoxValue, searchBoxPlaceholder, tableHeaderCustomLeftElements, pagination, handleCloseCallback, tableTitleLevel, secondaryButtonText, secondaryOnClick, showFormStepper, onBack, padding, expandable, breadcrumbItems, }: TmCrudPageProps<RecordType, FormType>) => JSX.Element;
|
|
3083
3087
|
/**
|
|
3084
3088
|
* Properties for the OrEventContentDuty component.
|
|
3085
3089
|
*/
|
|
@@ -4159,7 +4163,7 @@ export interface MarkersArray {
|
|
|
4159
4163
|
}
|
|
4160
4164
|
export interface TmMapPageProps {
|
|
4161
4165
|
rightDrawer?: OrDrawerProps;
|
|
4162
|
-
|
|
4166
|
+
topLeftSelects: AtSelectProps[];
|
|
4163
4167
|
topLeftButton?: AtButtonProps;
|
|
4164
4168
|
map: GoogleMapProps & {
|
|
4165
4169
|
GOOGLE_MAPS_API_KEY: string;
|