@mailstep/design-system 0.6.91-beta.0.0 → 0.6.91-beta.jja.0
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/package.json +1 -2
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +11 -11
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +1 -2
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +1 -5
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +6 -19
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +1 -1
- package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/HeadCell.js +4 -6
- package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/HeadRow.js +4 -4
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +2 -2
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +4 -4
- package/ui/Blocks/CommonGrid/store/index.d.ts +1 -3
- package/ui/Blocks/CommonGrid/store/index.js +89 -89
- package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +1 -1
- package/ui/Blocks/CommonGrid/types.d.ts +0 -3
- package/ui/Elements/Tag/palletes.js +0 -3
- package/ui/Elements/Text/types.d.ts +0 -1
- package/ui/index.es.js +16183 -16526
- package/ui/index.umd.js +622 -621
- package/ui/utils/translations.js +1 -1
- package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +0 -22
- package/ui/Blocks/CommonGrid/components/GridModals/index.js +0 -27
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +0 -16
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +0 -31
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +0 -19
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +0 -52
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +0 -17
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +0 -45
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +0 -13
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +0 -68
- package/ui/Blocks/CommonGrid/hooks/usePresetsState.d.ts +0 -9
- package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +0 -13
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +0 -15
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +0 -47
- package/ui/Blocks/CommonGrid/utils/constants.d.ts +0 -1
- package/ui/Blocks/CommonGrid/utils/constants.js +0 -1
- package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +0 -8
- package/ui/Elements/BarChartSymbol/BarChartSymbol.js +0 -7
- package/ui/Elements/BarChartSymbol/index.d.ts +0 -1
- package/ui/Elements/BarChartSymbol/index.js +0 -1
- package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +0 -13
- package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +0 -26
- package/ui/Elements/BarChartSymbol/styles.d.ts +0 -7
- package/ui/Elements/BarChartSymbol/styles.js +0 -14
|
@@ -229,7 +229,6 @@ export type GridActionsType = {
|
|
|
229
229
|
setPage?: (number: number) => void;
|
|
230
230
|
setRowsPerPage?: (number: number) => RowsPerPageType | null;
|
|
231
231
|
addFilter?: (column: string, value: any, filterProps: FilterProps) => void;
|
|
232
|
-
setFilters?: (filters: Filtering) => void;
|
|
233
232
|
resetFilters?: () => void;
|
|
234
233
|
addSorting?: (column: string, direction: SortingValueType) => void;
|
|
235
234
|
openConfigForm?: () => void;
|
|
@@ -313,8 +312,6 @@ export type GridProps = CommonGridProps & {
|
|
|
313
312
|
hideControlButtons?: boolean;
|
|
314
313
|
queryRowsParam?: number | string;
|
|
315
314
|
customPaginationHandler?: (page: number, rows: number) => void;
|
|
316
|
-
gridName?: string;
|
|
317
|
-
withPresets?: boolean;
|
|
318
315
|
};
|
|
319
316
|
export type Item = {
|
|
320
317
|
title: string | JSX.Element;
|
|
@@ -8,7 +8,4 @@ export var palletes = {
|
|
|
8
8
|
magentaMagenta: { color: 'magenta20', textColor: 'magenta80' },
|
|
9
9
|
tealTeal: { color: 'teal20', textColor: 'teal90' },
|
|
10
10
|
orangeOrange: { color: 'orange20', textColor: 'orange80' },
|
|
11
|
-
grayGray: { color: 'neutral20', textColor: 'typoPrimary' },
|
|
12
|
-
redWhite: { color: 'red1', textColor: 'white' },
|
|
13
|
-
redRed: { color: 'red30', textColor: 'red1' }
|
|
14
11
|
};
|