rez-table-listing-mui 1.0.49 → 1.2.1
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/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/App.tsx +80 -35
- package/src/assets/svg.tsx +5 -5
- package/src/components/filter/components/attributes-filter.tsx +78 -52
- package/src/components/filter/components/forms/components/Date.tsx +175 -66
- package/src/components/filter/components/forms/components/Dropdown.tsx +36 -3
- package/src/components/filter/components/forms/components/Filter-criteria.tsx +1 -1
- package/src/components/filter/components/forms/components/Multi-Select.tsx +62 -34
- package/src/components/filter/components/forms/index.tsx +20 -2
- package/src/components/filter/components/saved-filter.tsx +63 -9
- package/src/components/filter/index.tsx +3 -3
- package/src/components/filter/style.ts +1 -1
- package/src/components/index-table.tsx +42 -40
- package/src/components/index.scss +1 -1
- package/src/components/login/index.tsx +1 -1
- package/src/components/table-settings/common/info-alert.tsx +37 -0
- package/src/components/table-settings/common/listing-values.tsx +63 -48
- package/src/components/table-settings/components/column.tsx +210 -170
- package/src/components/table-settings/components/quick-tab.tsx +277 -153
- package/src/components/table-settings/components/sorting.tsx +135 -109
- package/src/components/table-settings/components/toggle-button-switch.tsx +2 -2
- package/src/components/table-settings/index.tsx +3 -5
- package/src/components/table-settings/style.ts +1 -0
- package/src/components/topbar/index.tsx +3 -1
- package/src/libs/hooks/useEntityTableAPI.tsx +1 -16
- package/src/libs/utils/apiColumn.ts +1 -11
- package/src/libs/utils/common.ts +4 -3
- package/src/types/filter-settings.ts +11 -0
- package/src/types/filter.ts +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ interface FilterStateProps {
|
|
|
80
80
|
interface FilterMasterStateProps {
|
|
81
81
|
attributes: {
|
|
82
82
|
selected: string;
|
|
83
|
-
radio: string;
|
|
83
|
+
radio: string[];
|
|
84
84
|
};
|
|
85
85
|
saved_filters: {
|
|
86
86
|
selectedId: string;
|
|
@@ -139,6 +139,10 @@ interface ColumnTabConfigProps {
|
|
|
139
139
|
tabs?: ColumnTab[];
|
|
140
140
|
}
|
|
141
141
|
interface SettingsDataProps {
|
|
142
|
+
isDefault?: boolean;
|
|
143
|
+
show_list?: ColumnItem[];
|
|
144
|
+
hide_list?: ColumnItem[];
|
|
145
|
+
tabs?: ColumnTab[];
|
|
142
146
|
quick_tab?: QuickTabConfigProps;
|
|
143
147
|
column?: ColumnTabConfigProps;
|
|
144
148
|
sorting?: SortingConfigProps;
|