@m4l/components 9.1.119 → 9.1.121
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/.storybook/decorators/WithAppearanceContext/index.d.ts +0 -0
- package/.storybook/utils/getStylesColorsByMode.d.ts +4 -4
- package/components/Chip/Chip.js +8 -5
- package/components/Chip/ChipStyles.js +21 -18
- package/components/Chip/slots/ChipSlots.d.ts +5 -5
- package/components/Chip/types.d.ts +14 -7
- package/components/DataGrid/contexts/DataGridContext/index.js +3 -5
- package/components/DataGrid/contexts/DataGridContext/types.d.ts +1 -3
- package/components/DataGrid/contexts/FilterContext/index.d.ts +1 -1
- package/components/DataGrid/dictionary.d.ts +18 -0
- package/components/DataGrid/dictionary.js +19 -1
- package/components/DataGrid/formatters/ColumnBooleanFormatter/index.d.ts +1 -1
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.js +1 -1
- package/components/DataGrid/formatters/ColumnDateFormatter/index.d.ts +1 -1
- package/components/DataGrid/formatters/ColumnIconFormatter/index.d.ts +1 -1
- package/components/DataGrid/formatters/ColumnIconFormatter/index.js +1 -2
- package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.js +1 -3
- package/components/DataGrid/formatters/ColumnSetCheckFormatter/index.d.ts +0 -3
- package/components/DataGrid/hooks/useDataGrid.d.ts +2 -1
- package/components/DataGrid/icons.d.ts +15 -0
- package/components/DataGrid/icons.js +18 -0
- package/components/DataGrid/index.d.ts +5 -1
- package/components/DataGrid/index.js +5 -10
- package/components/DataGrid/slots/DataGridEnum.d.ts +30 -0
- package/components/DataGrid/slots/DataGridEnum.js +44 -0
- package/components/DataGrid/slots/DataGridSlot.d.ts +48 -0
- package/components/DataGrid/slots/DataGridSlot.js +97 -0
- package/components/DataGrid/styles.d.ts +2 -1
- package/components/DataGrid/styles.js +479 -12
- package/components/DataGrid/subcomponents/Actions/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Actions/index.js +7 -7
- package/components/DataGrid/subcomponents/Actions/subcomponents/Density/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/Density/index.js +13 -12
- package/components/DataGrid/subcomponents/Actions/subcomponents/Filter/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/Filter/index.js +5 -6
- package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.js +14 -13
- package/components/DataGrid/subcomponents/Actions/subcomponents/RowsCount/index.js +7 -6
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.js +2 -4
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +28 -27
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts +1 -2
- package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.js +11 -11
- package/components/DataGrid/subcomponents/Actions/types.d.ts +1 -1
- package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +1 -1
- package/components/DataGrid/subcomponents/Table/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Table/index.js +5 -4
- package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +1 -2
- package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +12 -43
- package/components/DataGrid/subcomponents/Table/subcomponents/SelectColumn.js +2 -2
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.d.ts +1 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.js +2 -4
- package/components/DataGrid/subcomponents/editors/TextEditor/index.d.ts +0 -1
- package/components/DataGrid/subcomponents/editors/TextEditor/index.js +3 -28
- package/components/DataGrid/types.d.ts +6 -0
- package/components/Pager/subcomponents/CustomTablePagination/CustomTablePagination.js +10 -4
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.js +1 -1
- package/components/gclick/MyDevice/MyDevice.js +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +0 -1
- package/components/hook-form/RHFSelect/RHFSelect.d.ts +1 -1
- package/components/hook-form/RHFSelect/RHFSelect.js +21 -3
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
- package/components/hook-form/RHFSelect/types.d.ts +1 -1
- package/components/mui_extended/Select/Select.d.ts +1 -1
- package/components/mui_extended/Select/Select.js +195 -145
- package/components/mui_extended/Select/Select.styles.js +69 -81
- package/components/mui_extended/Select/constants.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectEnum.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectEnum.js +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +19 -11
- package/components/mui_extended/Select/slots/SelectSlots.js +7 -7
- package/components/mui_extended/Select/tests/Select.test.d.ts +1 -0
- package/components/mui_extended/Select/types.d.ts +26 -16
- package/mockServiceWorker.js +1 -1
- package/package.json +1 -1
- package/components/DataGrid/classes/constants.d.ts +0 -1
- package/components/DataGrid/classes/constants.js +0 -4
- package/components/DataGrid/classes/index.d.ts +0 -33
- package/components/DataGrid/classes/index.js +0 -71
- package/components/DataGrid/classes/types.d.ts +0 -30
- package/components/DataGrid/formatters/ColumnDateFormatter/styles.d.ts +0 -1
- package/components/DataGrid/subcomponents/Actions/styles.d.ts +0 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/Filter/types.d.ts +0 -2
- package/components/DataGrid/subcomponents/Actions/subcomponents/RowsCount/types.d.ts +0 -2
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/styles.d.ts +0 -7
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/styles.js +0 -50
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/styles.d.ts +0 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/styles.js +0 -10
- package/storybook/components/Label/Label.stories.d.ts +0 -16
- package/storybook/components/formatters/CourseFormatter/CourseFormatter.stories.d.ts +0 -25
- package/storybook/components/formatters/CourseFormatter/constants.d.ts +0 -3
- package/storybook/components/formatters/CourseFormatter/types.d.ts +0 -3
- /package/components/DataGrid/subcomponents/Actions/subcomponents/{Settings/types.d.ts → types.d.ts} +0 -0
- /package/components/{mui_extended/Select/test/Select.test.d.ts → DataGrid/tests/DataGrid.test.d.ts} +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
var DataGridSlots = /* @__PURE__ */ ((DataGridSlots2) => {
|
|
2
|
+
DataGridSlots2["datagridRoot"] = "datagridRoot";
|
|
3
|
+
return DataGridSlots2;
|
|
4
|
+
})(DataGridSlots || {});
|
|
5
|
+
var ActionsSlots = /* @__PURE__ */ ((ActionsSlots2) => {
|
|
6
|
+
ActionsSlots2["actionsRoot"] = "actionsRoot";
|
|
7
|
+
ActionsSlots2["actionsConfigContainer"] = "actionsConfigContainer";
|
|
8
|
+
return ActionsSlots2;
|
|
9
|
+
})(ActionsSlots || {});
|
|
10
|
+
var RowsCountSlots = /* @__PURE__ */ ((RowsCountSlots2) => {
|
|
11
|
+
RowsCountSlots2["rowsCountRoot"] = "rowsCountRoot";
|
|
12
|
+
RowsCountSlots2["rowsCountLabel"] = "rowsCountLabel";
|
|
13
|
+
RowsCountSlots2["rowsCountValue"] = "rowsCountValue";
|
|
14
|
+
return RowsCountSlots2;
|
|
15
|
+
})(RowsCountSlots || {});
|
|
16
|
+
var TableSlots = /* @__PURE__ */ ((TableSlots2) => {
|
|
17
|
+
TableSlots2["tableContaniner"] = "tableContaniner";
|
|
18
|
+
TableSlots2["tableWrapperDataGrid"] = "tableWrapperDataGrid";
|
|
19
|
+
TableSlots2["draggableHeaderRoot"] = "draggableHeaderRoot";
|
|
20
|
+
TableSlots2["draggableWrapperInputBase"] = "draggableWrapperInputBase";
|
|
21
|
+
TableSlots2["headerInputBase"] = "headerInputBase";
|
|
22
|
+
TableSlots2["wrapperSkeleton"] = "wrapperSkeleton";
|
|
23
|
+
TableSlots2["contentModalSetting"] = "contentModalSetting";
|
|
24
|
+
return TableSlots2;
|
|
25
|
+
})(TableSlots || {});
|
|
26
|
+
var TextEditorSlots = /* @__PURE__ */ ((TextEditorSlots2) => {
|
|
27
|
+
TextEditorSlots2["inputTexEditor"] = "inputTexEditor";
|
|
28
|
+
return TextEditorSlots2;
|
|
29
|
+
})(TextEditorSlots || {});
|
|
30
|
+
var ColumnsConfigSlots = /* @__PURE__ */ ((ColumnsConfigSlots2) => {
|
|
31
|
+
ColumnsConfigSlots2["columnsConfigWrapper"] = "columnsConfigWrapper";
|
|
32
|
+
ColumnsConfigSlots2["columnsConfigSelColumns"] = "columnsConfigSelColumns";
|
|
33
|
+
ColumnsConfigSlots2["columnsConfigDataGrid"] = "columnsConfigDataGrid";
|
|
34
|
+
ColumnsConfigSlots2["columnsConfigActios"] = "columnsConfigActios";
|
|
35
|
+
return ColumnsConfigSlots2;
|
|
36
|
+
})(ColumnsConfigSlots || {});
|
|
37
|
+
export {
|
|
38
|
+
ActionsSlots as A,
|
|
39
|
+
ColumnsConfigSlots as C,
|
|
40
|
+
DataGridSlots as D,
|
|
41
|
+
RowsCountSlots as R,
|
|
42
|
+
TableSlots as T,
|
|
43
|
+
TextEditorSlots as a
|
|
44
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ****************
|
|
3
|
+
* Slots DataGrid
|
|
4
|
+
* ****************
|
|
5
|
+
*/
|
|
6
|
+
export declare const DataGridRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
7
|
+
/**
|
|
8
|
+
* ****************
|
|
9
|
+
* Slots Actions
|
|
10
|
+
* ****************
|
|
11
|
+
*/
|
|
12
|
+
export declare const ActionsRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
13
|
+
export declare const ActionsConfigContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
14
|
+
/**
|
|
15
|
+
* ****************
|
|
16
|
+
* Slots RowsCount
|
|
17
|
+
* ****************
|
|
18
|
+
*/
|
|
19
|
+
export declare const RowsCountRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
20
|
+
export declare const RowsCountLabelStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
21
|
+
export declare const RowsCountValueStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
22
|
+
/**
|
|
23
|
+
* ****************
|
|
24
|
+
* Slots ColumnsConfig
|
|
25
|
+
* ****************
|
|
26
|
+
*/
|
|
27
|
+
export declare const ColumnsConfigWrapperStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
28
|
+
export declare const ColumnsConfigSelColumnsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
29
|
+
export declare const ColumnsConfigDataGridStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
30
|
+
export declare const ColumnsConfigActiosStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
31
|
+
/**
|
|
32
|
+
* ****************
|
|
33
|
+
* Slots Table
|
|
34
|
+
* ****************
|
|
35
|
+
*/
|
|
36
|
+
export declare const TableContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
37
|
+
export declare const TableWrapperDataGridStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
38
|
+
export declare const DraggableHeaderRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
39
|
+
export declare const DraggableWrapperInputBaseStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
40
|
+
export declare const HeaderInputBaseStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').InputBaseProps, keyof import('@mui/material').InputBaseProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
|
|
41
|
+
export declare const WrapperSkeletonStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
42
|
+
export declare const ContentModalSettingStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
|
|
43
|
+
/**
|
|
44
|
+
* ****************
|
|
45
|
+
* Slots TextEditor
|
|
46
|
+
* ****************
|
|
47
|
+
*/
|
|
48
|
+
export declare const InputTextEditorStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof import('react').ClassAttributes<HTMLInputElement> | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, {}>;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { styled } from "@mui/material/styles";
|
|
2
|
+
import { InputBase } from "@mui/material";
|
|
3
|
+
import { D as DATAGRID_PREFIX_NAME } from "../constants.js";
|
|
4
|
+
import { D as DataGridSlots, A as ActionsSlots, R as RowsCountSlots, C as ColumnsConfigSlots, T as TableSlots, a as TextEditorSlots } from "./DataGridEnum.js";
|
|
5
|
+
import { d as dataGridStyles } from "../styles.js";
|
|
6
|
+
const DataGridRootStyled = styled("div", {
|
|
7
|
+
name: DATAGRID_PREFIX_NAME,
|
|
8
|
+
slot: DataGridSlots.datagridRoot
|
|
9
|
+
})(dataGridStyles.datagridRoot);
|
|
10
|
+
const ActionsRootStyled = styled("div", {
|
|
11
|
+
name: DATAGRID_PREFIX_NAME,
|
|
12
|
+
slot: ActionsSlots.actionsRoot
|
|
13
|
+
})(dataGridStyles.actionsRoot);
|
|
14
|
+
const ActionsConfigContainerStyled = styled("div", {
|
|
15
|
+
name: DATAGRID_PREFIX_NAME,
|
|
16
|
+
slot: ActionsSlots.actionsConfigContainer
|
|
17
|
+
})(dataGridStyles.actionsConfigContainer);
|
|
18
|
+
const RowsCountRootStyled = styled("div", {
|
|
19
|
+
name: DATAGRID_PREFIX_NAME,
|
|
20
|
+
slot: RowsCountSlots.rowsCountRoot
|
|
21
|
+
})(dataGridStyles.rowsCountRoot);
|
|
22
|
+
const RowsCountLabelStyled = styled("div", {
|
|
23
|
+
name: DATAGRID_PREFIX_NAME,
|
|
24
|
+
slot: RowsCountSlots.rowsCountLabel
|
|
25
|
+
})(dataGridStyles.rowsCountLabel);
|
|
26
|
+
const RowsCountValueStyled = styled("div", {
|
|
27
|
+
name: DATAGRID_PREFIX_NAME,
|
|
28
|
+
slot: RowsCountSlots.rowsCountValue
|
|
29
|
+
})(dataGridStyles.rowsCountValue);
|
|
30
|
+
const ColumnsConfigWrapperStyled = styled("div", {
|
|
31
|
+
name: DATAGRID_PREFIX_NAME,
|
|
32
|
+
slot: ColumnsConfigSlots.columnsConfigWrapper
|
|
33
|
+
})(dataGridStyles.columnsConfigWrapper);
|
|
34
|
+
const ColumnsConfigSelColumnsStyled = styled("div", {
|
|
35
|
+
name: DATAGRID_PREFIX_NAME,
|
|
36
|
+
slot: ColumnsConfigSlots.columnsConfigSelColumns
|
|
37
|
+
})(dataGridStyles.columnsConfigSelColumns);
|
|
38
|
+
const ColumnsConfigDataGridStyled = styled("div", {
|
|
39
|
+
name: DATAGRID_PREFIX_NAME,
|
|
40
|
+
slot: ColumnsConfigSlots.columnsConfigDataGrid
|
|
41
|
+
})(dataGridStyles.columnsConfigDataGrid);
|
|
42
|
+
const ColumnsConfigActiosStyled = styled("div", {
|
|
43
|
+
name: DATAGRID_PREFIX_NAME,
|
|
44
|
+
slot: ColumnsConfigSlots.columnsConfigActios
|
|
45
|
+
})(dataGridStyles.columnsConfigActios);
|
|
46
|
+
const TableContainerStyled = styled("div", {
|
|
47
|
+
name: DATAGRID_PREFIX_NAME,
|
|
48
|
+
slot: TableSlots.tableContaniner
|
|
49
|
+
})(dataGridStyles.tableContaniner);
|
|
50
|
+
const TableWrapperDataGridStyled = styled("div", {
|
|
51
|
+
name: DATAGRID_PREFIX_NAME,
|
|
52
|
+
slot: TableSlots.tableWrapperDataGrid
|
|
53
|
+
})(dataGridStyles.tableWrapperDataGrid);
|
|
54
|
+
const DraggableHeaderRootStyled = styled("div", {
|
|
55
|
+
name: DATAGRID_PREFIX_NAME,
|
|
56
|
+
slot: TableSlots.draggableHeaderRoot
|
|
57
|
+
})(dataGridStyles.draggableHeaderRoot);
|
|
58
|
+
const DraggableWrapperInputBaseStyled = styled("div", {
|
|
59
|
+
name: DATAGRID_PREFIX_NAME,
|
|
60
|
+
slot: TableSlots.draggableWrapperInputBase
|
|
61
|
+
})(dataGridStyles.draggableWrapperInputBase);
|
|
62
|
+
const HeaderInputBaseStyled = styled(InputBase, {
|
|
63
|
+
name: DATAGRID_PREFIX_NAME,
|
|
64
|
+
slot: TableSlots.headerInputBase
|
|
65
|
+
})(dataGridStyles.headerInputBase);
|
|
66
|
+
const WrapperSkeletonStyled = styled("div", {
|
|
67
|
+
name: DATAGRID_PREFIX_NAME,
|
|
68
|
+
slot: TableSlots.wrapperSkeleton
|
|
69
|
+
})(dataGridStyles.wrapperSkeleton);
|
|
70
|
+
const ContentModalSettingStyled = styled("div", {
|
|
71
|
+
name: DATAGRID_PREFIX_NAME,
|
|
72
|
+
slot: TableSlots.contentModalSetting
|
|
73
|
+
})(dataGridStyles.contentModalSetting);
|
|
74
|
+
const InputTextEditorStyled = styled("input", {
|
|
75
|
+
name: DATAGRID_PREFIX_NAME,
|
|
76
|
+
slot: TextEditorSlots.inputTexEditor
|
|
77
|
+
})(dataGridStyles.inputTexEditor);
|
|
78
|
+
export {
|
|
79
|
+
ActionsRootStyled as A,
|
|
80
|
+
ColumnsConfigWrapperStyled as C,
|
|
81
|
+
DataGridRootStyled as D,
|
|
82
|
+
HeaderInputBaseStyled as H,
|
|
83
|
+
InputTextEditorStyled as I,
|
|
84
|
+
RowsCountRootStyled as R,
|
|
85
|
+
TableWrapperDataGridStyled as T,
|
|
86
|
+
WrapperSkeletonStyled as W,
|
|
87
|
+
ActionsConfigContainerStyled as a,
|
|
88
|
+
RowsCountLabelStyled as b,
|
|
89
|
+
RowsCountValueStyled as c,
|
|
90
|
+
ColumnsConfigSelColumnsStyled as d,
|
|
91
|
+
ColumnsConfigDataGridStyled as e,
|
|
92
|
+
ColumnsConfigActiosStyled as f,
|
|
93
|
+
ContentModalSettingStyled as g,
|
|
94
|
+
TableContainerStyled as h,
|
|
95
|
+
DraggableHeaderRootStyled as i,
|
|
96
|
+
DraggableWrapperInputBaseStyled as j
|
|
97
|
+
};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { DataGridStyles } from './types';
|
|
2
|
+
export declare const dataGridStyles: DataGridStyles;
|