@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.
- package/assets/styles/buttonLayout.scss +3 -0
- package/assets/styles/icons.scss +38 -2
- package/components/buttons/IconButton.d.ts +11 -4
- package/components/buttons/IconButton.d.ts.map +1 -1
- package/components/errors/ErrorHandler.d.ts +14 -0
- package/components/errors/ErrorHandler.d.ts.map +1 -0
- package/components/errors/ErrorPage.d.ts +7 -0
- package/components/errors/ErrorPage.d.ts.map +1 -0
- package/components/errors/config.d.ts +38 -0
- package/components/errors/config.d.ts.map +1 -0
- package/components/errors/index.d.ts +4 -0
- package/components/errors/index.d.ts.map +1 -0
- package/components/filters/FilterPanelItemToggler.d.ts +1 -2
- package/components/filters/FilterPanelItemToggler.d.ts.map +1 -1
- package/components/filters/PresetPanel/PresetActionsDropdown.d.ts.map +1 -1
- package/components/index.d.ts +1 -0
- package/components/index.d.ts.map +1 -1
- package/components/inputs/Checkbox.d.ts.map +1 -1
- package/components/inputs/timePicker/TimePicker.d.ts +4 -0
- package/components/inputs/timePicker/TimePicker.d.ts.map +1 -1
- package/components/inputs/timePicker/TimePickerBody.d.ts +1 -1
- package/components/inputs/timePicker/TimePickerBody.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexRow.d.ts +9 -6
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/layout/LabeledInput.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts.map +1 -1
- package/components/overlays/Modals.d.ts +9 -4
- package/components/overlays/Modals.d.ts.map +1 -1
- package/components/pickers/DataPickerCell.d.ts.map +1 -1
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/pickers/PickerToggler.d.ts.map +1 -1
- package/components/tables/DataTable.d.ts +4 -0
- package/components/tables/DataTable.d.ts.map +1 -1
- package/components/tables/DataTableCell.d.ts.map +1 -1
- package/components/tables/DataTableHeaderCell.d.ts +1 -0
- package/components/tables/DataTableHeaderCell.d.ts.map +1 -1
- package/components/tables/DataTableHeaderRow.d.ts.map +1 -1
- package/components/tables/columnsConfigurationModal/ColumnRow.d.ts.map +1 -1
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +1 -1
- package/components/tables/columnsConfigurationModal/PinIconButton.d.ts +3 -3
- package/components/tables/columnsConfigurationModal/PinIconButton.d.ts.map +1 -1
- package/components/typography/Text.d.ts +1 -1
- package/components/typography/Text.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts.map +1 -1
- package/components/widgets/DataRowAddons.d.ts.map +1 -1
- package/components/widgets/Paginator.d.ts.map +1 -1
- package/components/widgets/Tag.d.ts.map +1 -1
- package/i18n.d.ts +52 -1
- package/i18n.d.ts.map +1 -1
- package/icons/icons.d.ts +6 -1
- package/icons/icons.d.ts.map +1 -1
- package/index.esm.js +1416 -1731
- package/index.esm.js.map +1 -1
- package/index.js +1417 -1728
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/stats.html +1 -1
- package/styles.css +4037 -2811
- 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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
package/icons/icons.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../icons/icons.tsx"],"names":[],"mappings":"
|
|
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"}
|