@scmlatam/web-ui 0.1.59 → 0.1.64
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/dist/{get-context-Bk0EXEHm.js → get-context-C6WltEXJ.js} +1 -1
- package/dist/{main-DUR3pDCH.js → main-CyJrbfru.js} +11525 -11043
- package/dist/web-ui.d.ts +9 -0
- package/dist/web-ui.js +1 -1
- package/dist/web-ui.umd.cjs +155 -155
- package/package.json +1 -1
package/dist/web-ui.d.ts
CHANGED
|
@@ -23,10 +23,13 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
23
23
|
import { Language } from './core/types/types';
|
|
24
24
|
import { ListFieldForm } from './form/types/types';
|
|
25
25
|
import { Option as Option_2 } from './table/types/types';
|
|
26
|
+
import { OptionGroup } from '../components/table/types/types';
|
|
26
27
|
import { PageProps } from './core/types/types';
|
|
27
28
|
import { PaginationModel } from './table/types/types';
|
|
28
29
|
import { PickersShortcutsItem } from '@mui/x-date-pickers';
|
|
29
30
|
import { PickerValidValue } from '@mui/x-date-pickers/internals';
|
|
31
|
+
import { RadioFieldForm } from './form/types/types';
|
|
32
|
+
import { RadioGroupForm } from './form/types/types';
|
|
30
33
|
import { RefObject } from 'react';
|
|
31
34
|
import { RouteItem } from './core/types/types';
|
|
32
35
|
import { Row } from './table/types/types';
|
|
@@ -116,6 +119,10 @@ export { PageProps }
|
|
|
116
119
|
|
|
117
120
|
export { PaginationModel }
|
|
118
121
|
|
|
122
|
+
export { RadioFieldForm }
|
|
123
|
+
|
|
124
|
+
export { RadioGroupForm }
|
|
125
|
+
|
|
119
126
|
export { RouteItem }
|
|
120
127
|
|
|
121
128
|
export { Row }
|
|
@@ -153,6 +160,8 @@ export declare const useTable: () => {
|
|
|
153
160
|
setRowSelectionModel: Dispatch<SetStateAction<GridRowSelectionModel>>;
|
|
154
161
|
contextMenu: ContextMenu | null;
|
|
155
162
|
setContextMenu: Dispatch<SetStateAction<ContextMenu | null>>;
|
|
163
|
+
optionGroup: OptionGroup;
|
|
164
|
+
setOptionGroup: Dispatch<SetStateAction<OptionGroup>>;
|
|
156
165
|
};
|
|
157
166
|
|
|
158
167
|
export { ValueItem }
|
package/dist/web-ui.js
CHANGED