@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.
Files changed (45) hide show
  1. package/package.json +1 -2
  2. package/ui/Blocks/CommonGrid/CommonGridContainer.js +11 -11
  3. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +1 -2
  4. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +1 -5
  5. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +6 -19
  6. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +1 -1
  7. package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +1 -1
  8. package/ui/Blocks/CommonGrid/components/HeadCell.js +4 -6
  9. package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +1 -1
  10. package/ui/Blocks/CommonGrid/components/HeadRow.js +4 -4
  11. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +2 -2
  12. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +4 -4
  13. package/ui/Blocks/CommonGrid/store/index.d.ts +1 -3
  14. package/ui/Blocks/CommonGrid/store/index.js +89 -89
  15. package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +1 -1
  16. package/ui/Blocks/CommonGrid/types.d.ts +0 -3
  17. package/ui/Elements/Tag/palletes.js +0 -3
  18. package/ui/Elements/Text/types.d.ts +0 -1
  19. package/ui/index.es.js +16183 -16526
  20. package/ui/index.umd.js +622 -621
  21. package/ui/utils/translations.js +1 -1
  22. package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +0 -22
  23. package/ui/Blocks/CommonGrid/components/GridModals/index.js +0 -27
  24. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +0 -16
  25. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +0 -31
  26. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +0 -19
  27. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +0 -52
  28. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +0 -17
  29. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +0 -45
  30. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +0 -13
  31. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +0 -68
  32. package/ui/Blocks/CommonGrid/hooks/usePresetsState.d.ts +0 -9
  33. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +0 -13
  34. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +0 -15
  35. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +0 -47
  36. package/ui/Blocks/CommonGrid/utils/constants.d.ts +0 -1
  37. package/ui/Blocks/CommonGrid/utils/constants.js +0 -1
  38. package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +0 -8
  39. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +0 -7
  40. package/ui/Elements/BarChartSymbol/index.d.ts +0 -1
  41. package/ui/Elements/BarChartSymbol/index.js +0 -1
  42. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +0 -13
  43. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +0 -26
  44. package/ui/Elements/BarChartSymbol/styles.d.ts +0 -7
  45. 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
  };
@@ -12,6 +12,5 @@ export type TextProps = {
12
12
  mb?: string | number;
13
13
  ml?: string | number;
14
14
  color?: string;
15
- textDecoration?: string;
16
15
  as?: string | ComponentType<any>;
17
16
  };