@epam/uui 5.6.2 → 5.7.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 (59) hide show
  1. package/assets/styles/buttonLayout.scss +3 -0
  2. package/assets/styles/icons.scss +38 -2
  3. package/components/buttons/IconButton.d.ts +11 -4
  4. package/components/buttons/IconButton.d.ts.map +1 -1
  5. package/components/errors/ErrorHandler.d.ts +14 -0
  6. package/components/errors/ErrorHandler.d.ts.map +1 -0
  7. package/components/errors/ErrorPage.d.ts +7 -0
  8. package/components/errors/ErrorPage.d.ts.map +1 -0
  9. package/components/errors/config.d.ts +38 -0
  10. package/components/errors/config.d.ts.map +1 -0
  11. package/components/errors/index.d.ts +4 -0
  12. package/components/errors/index.d.ts.map +1 -0
  13. package/components/filters/FilterPanelItemToggler.d.ts +1 -2
  14. package/components/filters/FilterPanelItemToggler.d.ts.map +1 -1
  15. package/components/filters/PresetPanel/PresetActionsDropdown.d.ts.map +1 -1
  16. package/components/index.d.ts +1 -0
  17. package/components/index.d.ts.map +1 -1
  18. package/components/inputs/Checkbox.d.ts.map +1 -1
  19. package/components/inputs/timePicker/TimePicker.d.ts +4 -0
  20. package/components/inputs/timePicker/TimePicker.d.ts.map +1 -1
  21. package/components/inputs/timePicker/TimePickerBody.d.ts +1 -1
  22. package/components/inputs/timePicker/TimePickerBody.d.ts.map +1 -1
  23. package/components/layout/FlexItems/FlexRow.d.ts +9 -6
  24. package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
  25. package/components/layout/LabeledInput.d.ts.map +1 -1
  26. package/components/overlays/DropdownMenu.d.ts.map +1 -1
  27. package/components/overlays/Modals.d.ts +9 -4
  28. package/components/overlays/Modals.d.ts.map +1 -1
  29. package/components/pickers/DataPickerCell.d.ts.map +1 -1
  30. package/components/pickers/PickerList.d.ts.map +1 -1
  31. package/components/pickers/PickerToggler.d.ts.map +1 -1
  32. package/components/tables/DataTable.d.ts +4 -0
  33. package/components/tables/DataTable.d.ts.map +1 -1
  34. package/components/tables/DataTableCell.d.ts.map +1 -1
  35. package/components/tables/DataTableHeaderCell.d.ts +1 -0
  36. package/components/tables/DataTableHeaderCell.d.ts.map +1 -1
  37. package/components/tables/DataTableHeaderRow.d.ts.map +1 -1
  38. package/components/tables/columnsConfigurationModal/ColumnRow.d.ts.map +1 -1
  39. package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +1 -1
  40. package/components/tables/columnsConfigurationModal/PinIconButton.d.ts +3 -3
  41. package/components/tables/columnsConfigurationModal/PinIconButton.d.ts.map +1 -1
  42. package/components/typography/Text.d.ts +1 -1
  43. package/components/typography/Text.d.ts.map +1 -1
  44. package/components/widgets/Badge.d.ts.map +1 -1
  45. package/components/widgets/DataRowAddons.d.ts.map +1 -1
  46. package/components/widgets/Paginator.d.ts.map +1 -1
  47. package/components/widgets/Tag.d.ts.map +1 -1
  48. package/i18n.d.ts +52 -1
  49. package/i18n.d.ts.map +1 -1
  50. package/icons/icons.d.ts +6 -1
  51. package/icons/icons.d.ts.map +1 -1
  52. package/index.esm.js +1416 -1731
  53. package/index.esm.js.map +1 -1
  54. package/index.js +1417 -1728
  55. package/index.js.map +1 -1
  56. package/package.json +5 -5
  57. package/stats.html +1 -1
  58. package/styles.css +4037 -2811
  59. package/styles.css.map +1 -1
package/i18n.d.ts CHANGED
@@ -50,6 +50,9 @@ export declare const i18n: {
50
50
  checkAllButton: string;
51
51
  uncheckAllButton: string;
52
52
  configureColumnsTitle: string;
53
+ pinnedToTheLeftSubgroupTitle: string;
54
+ pinnedToTheRightSubgroupTitle: string;
55
+ notPinnedSubgroupTitle: string;
53
56
  resetToDefaultButton: string;
54
57
  displayedSectionTitle: string;
55
58
  hiddenSectionTitle: string;
@@ -59,10 +62,15 @@ export declare const i18n: {
59
62
  subText: string;
60
63
  };
61
64
  enableAtLeastOneColumnMessage: string;
62
- pinColumnButton: string;
65
+ pinColumnToTheLeftButton: string;
66
+ pinColumnToTheRightButton: string;
63
67
  unPinColumnButton: string;
64
68
  lockedColumnPinButton: string;
65
69
  };
70
+ columnHeader: {
71
+ collapseAllTooltip: string;
72
+ expandAllTooltip: string;
73
+ };
66
74
  };
67
75
  pickerFilterHeader: {
68
76
  sortAscending: string;
@@ -98,6 +106,49 @@ export declare const i18n: {
98
106
  };
99
107
  fileCard: {
100
108
  fileSizeProgress: string;
109
+ failedUploadErrorMessage: string;
110
+ };
111
+ errorHandler: {
112
+ errorPageConfig: {
113
+ notFound: {
114
+ title: string;
115
+ subtitle: string;
116
+ };
117
+ permissionDenied: {
118
+ title: string;
119
+ subtitle: string;
120
+ };
121
+ serverError: {
122
+ title: string;
123
+ subtitle: string;
124
+ };
125
+ serviceUnavailable: {
126
+ title: string;
127
+ subtitle: string;
128
+ };
129
+ default: {
130
+ title: string;
131
+ subtitle: string;
132
+ };
133
+ };
134
+ recoveryMessageConfig: {
135
+ 'auth-lost': {
136
+ title: string;
137
+ subtitle: string;
138
+ };
139
+ 'connection-lost': {
140
+ title: string;
141
+ subtitle: string;
142
+ };
143
+ maintenance: {
144
+ title: string;
145
+ subtitle: string;
146
+ };
147
+ 'server-overload': {
148
+ title: string;
149
+ subtitle: string;
150
+ };
151
+ };
101
152
  };
102
153
  lenses: {
103
154
  validation: {
package/i18n.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../i18n.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsGhB,CAAC"}
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../i18n.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyJhB,CAAC"}
package/icons/icons.d.ts CHANGED
@@ -10,6 +10,11 @@ export declare const fileIcons: {
10
10
  fileIcon: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
11
11
  };
12
12
  export declare const systemIcons: {
13
- [key: string]: any;
13
+ readonly clear: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
14
+ readonly foldingArrow: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
15
+ readonly accept: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
16
+ readonly search: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
17
+ readonly calendar: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
18
+ readonly info: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
14
19
  };
15
20
  //# sourceMappingURL=icons.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../icons/icons.tsx"],"names":[],"mappings":"AA8BA,eAAO,MAAM,SAAS;;;;;;;;;;CAUrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAyE7C,CAAC"}
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../icons/icons.tsx"],"names":[],"mappings":"AAgBA,eAAO,MAAM,SAAS;;;;;;;;;;CAUrB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC"}