@epam/uui 5.6.1 → 5.7.0-alpha.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 (68) hide show
  1. package/assets/styles/buttonLayout.scss +70 -67
  2. package/assets/styles/clickable.scss +26 -26
  3. package/assets/styles/controlLayout.scss +28 -28
  4. package/assets/styles/dnd.scss +9 -9
  5. package/assets/styles/effects.scss +7 -7
  6. package/assets/styles/icons.scss +55 -19
  7. package/assets/styles/index.scss +9 -9
  8. package/assets/styles/inputs.scss +74 -74
  9. package/assets/styles/text-size.scss +42 -42
  10. package/assets/styles/typography.scss +174 -174
  11. package/components/buttons/IconButton.d.ts +6 -5
  12. package/components/buttons/IconButton.d.ts.map +1 -1
  13. package/components/errors/ErrorHandler.d.ts +14 -0
  14. package/components/errors/ErrorHandler.d.ts.map +1 -0
  15. package/components/errors/ErrorPage.d.ts +7 -0
  16. package/components/errors/ErrorPage.d.ts.map +1 -0
  17. package/components/errors/config.d.ts +38 -0
  18. package/components/errors/config.d.ts.map +1 -0
  19. package/components/errors/index.d.ts +4 -0
  20. package/components/errors/index.d.ts.map +1 -0
  21. package/components/filters/FilterPanelItemToggler.d.ts +1 -2
  22. package/components/filters/FilterPanelItemToggler.d.ts.map +1 -1
  23. package/components/filters/PresetPanel/PresetActionsDropdown.d.ts.map +1 -1
  24. package/components/index.d.ts +1 -0
  25. package/components/index.d.ts.map +1 -1
  26. package/components/inputs/Checkbox.d.ts.map +1 -1
  27. package/components/inputs/timePicker/TimePicker.d.ts +4 -0
  28. package/components/inputs/timePicker/TimePicker.d.ts.map +1 -1
  29. package/components/inputs/timePicker/TimePickerBody.d.ts +1 -1
  30. package/components/inputs/timePicker/TimePickerBody.d.ts.map +1 -1
  31. package/components/layout/FlexItems/FlexRow.d.ts +9 -6
  32. package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
  33. package/components/layout/LabeledInput.d.ts.map +1 -1
  34. package/components/overlays/DropdownMenu.d.ts.map +1 -1
  35. package/components/overlays/Modals.d.ts +4 -4
  36. package/components/overlays/Modals.d.ts.map +1 -1
  37. package/components/pickers/DataPickerCell.d.ts.map +1 -1
  38. package/components/pickers/PickerList.d.ts.map +1 -1
  39. package/components/pickers/PickerToggler.d.ts.map +1 -1
  40. package/components/tables/DataTable.d.ts +4 -0
  41. package/components/tables/DataTable.d.ts.map +1 -1
  42. package/components/tables/DataTableCell.d.ts.map +1 -1
  43. package/components/tables/DataTableHeaderCell.d.ts +1 -0
  44. package/components/tables/DataTableHeaderCell.d.ts.map +1 -1
  45. package/components/tables/DataTableHeaderRow.d.ts.map +1 -1
  46. package/components/tables/columnsConfigurationModal/ColumnRow.d.ts.map +1 -1
  47. package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +1 -1
  48. package/components/tables/columnsConfigurationModal/PinIconButton.d.ts +3 -3
  49. package/components/tables/columnsConfigurationModal/PinIconButton.d.ts.map +1 -1
  50. package/components/typography/Text.d.ts +1 -1
  51. package/components/typography/Text.d.ts.map +1 -1
  52. package/components/widgets/Badge.d.ts.map +1 -1
  53. package/components/widgets/DataRowAddons.d.ts.map +1 -1
  54. package/components/widgets/Paginator.d.ts.map +1 -1
  55. package/components/widgets/Tag.d.ts.map +1 -1
  56. package/i18n.d.ts +51 -1
  57. package/i18n.d.ts.map +1 -1
  58. package/icons/icons.d.ts +6 -1
  59. package/icons/icons.d.ts.map +1 -1
  60. package/index.esm.js +1403 -1723
  61. package/index.esm.js.map +1 -1
  62. package/index.js +1404 -1720
  63. package/index.js.map +1 -1
  64. package/package.json +5 -5
  65. package/readme.md +4 -4
  66. package/stats.html +1 -1
  67. package/styles.css +4043 -2806
  68. package/styles.css.map +1 -1
@@ -1,174 +1,174 @@
1
- @mixin overflow-ellipsis() {
2
- overflow: hidden;
3
- text-overflow: ellipsis;
4
- }
5
-
6
- .uui-typography {
7
- font-family: var(--uui-font);
8
- color: var(--uui-text-primary);
9
-
10
- .hero-header, h1, h2, h3, h4, h5, h6 {
11
- margin: 0;
12
- }
13
-
14
- .hero-header {
15
- font-family: var(--uui-font);
16
- font-weight: 500;
17
- margin: 30px 0;
18
- font-size: 66px;
19
- line-height: 72px;
20
- }
21
-
22
- .promo-header, h1, h2, h3 {
23
- font-family: var(--uui-font);
24
- font-weight: 700;
25
- }
26
-
27
- h4, h5, h6 {
28
- font-family: var(--uui-font);
29
- font-weight: 600;
30
- }
31
-
32
- h1, h2, h3, h4, h5, h6 {
33
- margin-bottom: 0.5em;
34
- margin-top: 1.2em;
35
- line-height: 1.35em;
36
- }
37
-
38
- h1 {
39
- font-size: 42px;
40
- }
41
-
42
- h2 {
43
- font-size: 30px;
44
- letter-spacing: 0.1px;
45
-
46
- .promo-header {
47
- letter-spacing: 2px;
48
- }
49
- }
50
-
51
- h3 {
52
- font-size: 24px;
53
- }
54
-
55
- h4 {
56
- font-size: 18px;
57
- letter-spacing: 0.1px;
58
- }
59
-
60
- h5 {
61
- font-size: 16px;
62
- }
63
-
64
- h6 {
65
- font-size: 14px;
66
- }
67
-
68
- b, strong {
69
- font-family: var(--uui-font);
70
- font-weight: 600;
71
- }
72
-
73
- i, em {
74
- font-family: var(--uui-font);
75
- font-weight: 400;
76
- font-style: italic;
77
- }
78
-
79
- a {
80
- display: inline-flex;
81
- align-items: center;
82
- color: var(--uui-link);
83
- text-decoration: underline;
84
-
85
- &:visited {
86
- color: var(--uui-link-visited);
87
-
88
- &:hover {
89
- color: var(--uui-link-visited-hover);
90
- }
91
- }
92
-
93
- &:hover {
94
- color: var(--uui-link-hover);
95
- }
96
- }
97
-
98
- code {
99
- padding: 0.125em 0.25em;
100
- color: var(--uui-text-primary);
101
- background-color: var(--uui-neutral-30);
102
- font-family: var(--uui-font-mono, monospace);
103
- font-weight: 400;
104
- white-space: pre-wrap;
105
- word-wrap: normal;
106
- }
107
-
108
- ol, ul {
109
- padding: 0;
110
- }
111
-
112
- li {
113
- margin-left: 1.25em;
114
- line-height: 1.5;
115
- }
116
-
117
- pre {
118
- padding: 1.25em;
119
- font-family: monospace;
120
- white-space: pre-wrap;
121
- word-wrap: normal;
122
- }
123
-
124
- img {
125
- max-width: 100%;
126
- }
127
-
128
- figure {
129
- margin: 0;
130
-
131
- figcaption {
132
- font-size: 0.9em;
133
- opacity: 0.9;
134
- text-align: center;
135
- }
136
- }
137
-
138
- p {
139
- margin: 0.5em 0;
140
- line-height: 1.5;
141
- }
142
-
143
- .uui-critical {
144
- color: var(--uui-text-critical);
145
- }
146
-
147
- .uui-info {
148
- color: var(--uui-text-info);
149
- }
150
-
151
- .uui-success {
152
- color: var(--uui-text-success);
153
- }
154
-
155
- .uui-warning {
156
- color: var(--uui-text-warning);
157
- }
158
-
159
- .uui-highlight {
160
- background-color: var(--uui-warning-10);
161
- }
162
- }
163
-
164
- .uui-typography-size-12 {
165
- font-size: 12px;
166
- }
167
-
168
- .uui-typography-size-14 {
169
- font-size: 14px;
170
- }
171
-
172
- .uui-typography-size-16 {
173
- font-size: 16px;
174
- }
1
+ @mixin overflow-ellipsis() {
2
+ overflow: hidden;
3
+ text-overflow: ellipsis;
4
+ }
5
+
6
+ .uui-typography {
7
+ font-family: var(--uui-font);
8
+ color: var(--uui-text-primary);
9
+
10
+ .hero-header, h1, h2, h3, h4, h5, h6 {
11
+ margin: 0;
12
+ }
13
+
14
+ .hero-header {
15
+ font-family: var(--uui-font);
16
+ font-weight: 500;
17
+ margin: 30px 0;
18
+ font-size: 66px;
19
+ line-height: 72px;
20
+ }
21
+
22
+ .promo-header, h1, h2, h3 {
23
+ font-family: var(--uui-font);
24
+ font-weight: 700;
25
+ }
26
+
27
+ h4, h5, h6 {
28
+ font-family: var(--uui-font);
29
+ font-weight: 600;
30
+ }
31
+
32
+ h1, h2, h3, h4, h5, h6 {
33
+ margin-bottom: 0.5em;
34
+ margin-top: 1.2em;
35
+ line-height: 1.35em;
36
+ }
37
+
38
+ h1 {
39
+ font-size: 42px;
40
+ }
41
+
42
+ h2 {
43
+ font-size: 30px;
44
+ letter-spacing: 0.1px;
45
+
46
+ .promo-header {
47
+ letter-spacing: 2px;
48
+ }
49
+ }
50
+
51
+ h3 {
52
+ font-size: 24px;
53
+ }
54
+
55
+ h4 {
56
+ font-size: 18px;
57
+ letter-spacing: 0.1px;
58
+ }
59
+
60
+ h5 {
61
+ font-size: 16px;
62
+ }
63
+
64
+ h6 {
65
+ font-size: 14px;
66
+ }
67
+
68
+ b, strong {
69
+ font-family: var(--uui-font);
70
+ font-weight: 600;
71
+ }
72
+
73
+ i, em {
74
+ font-family: var(--uui-font);
75
+ font-weight: 400;
76
+ font-style: italic;
77
+ }
78
+
79
+ a {
80
+ display: inline-flex;
81
+ align-items: center;
82
+ color: var(--uui-link);
83
+ text-decoration: underline;
84
+
85
+ &:visited {
86
+ color: var(--uui-link-visited);
87
+
88
+ &:hover {
89
+ color: var(--uui-link-visited-hover);
90
+ }
91
+ }
92
+
93
+ &:hover {
94
+ color: var(--uui-link-hover);
95
+ }
96
+ }
97
+
98
+ code {
99
+ padding: 0.125em 0.25em;
100
+ color: var(--uui-text-primary);
101
+ background-color: var(--uui-neutral-30);
102
+ font-family: var(--uui-font-mono, monospace);
103
+ font-weight: 400;
104
+ white-space: pre-wrap;
105
+ word-wrap: normal;
106
+ }
107
+
108
+ ol, ul {
109
+ padding: 0;
110
+ }
111
+
112
+ li {
113
+ margin-left: 1.25em;
114
+ line-height: 1.5;
115
+ }
116
+
117
+ pre {
118
+ padding: 1.25em;
119
+ font-family: monospace;
120
+ white-space: pre-wrap;
121
+ word-wrap: normal;
122
+ }
123
+
124
+ img {
125
+ max-width: 100%;
126
+ }
127
+
128
+ figure {
129
+ margin: 0;
130
+
131
+ figcaption {
132
+ font-size: 0.9em;
133
+ opacity: 0.9;
134
+ text-align: center;
135
+ }
136
+ }
137
+
138
+ p {
139
+ margin: 0.5em 0;
140
+ line-height: 1.5;
141
+ }
142
+
143
+ .uui-critical {
144
+ color: var(--uui-text-critical);
145
+ }
146
+
147
+ .uui-info {
148
+ color: var(--uui-text-info);
149
+ }
150
+
151
+ .uui-success {
152
+ color: var(--uui-text-success);
153
+ }
154
+
155
+ .uui-warning {
156
+ color: var(--uui-text-warning);
157
+ }
158
+
159
+ .uui-highlight {
160
+ background-color: var(--uui-warning-10);
161
+ }
162
+ }
163
+
164
+ .uui-typography-size-12 {
165
+ font-size: 12px;
166
+ }
167
+
168
+ .uui-typography-size-14 {
169
+ font-size: 14px;
170
+ }
171
+
172
+ .uui-typography-size-16 {
173
+ font-size: 16px;
174
+ }
@@ -5,14 +5,15 @@ interface IconButtonMods {
5
5
  * @default 'neutral'
6
6
  */
7
7
  color?: 'info' | 'success' | 'warning' | 'error' | 'secondary' | 'neutral';
8
+ /**
9
+ * Defines component size.
10
+ */
11
+ size?: '18' | '24' | '30' | '36';
8
12
  }
9
13
  /** Represents the Core properties of the IconButton component. */
10
14
  export type IconButtonCoreProps = uuiComponents.IconButtonProps;
11
15
  /** Represents the properties of the IconButton component. */
12
- export type IconButtonProps = IconButtonCoreProps & IconButtonMods;
13
- export declare const IconButton: (props: import("@epam/uui-core").IClickable & import("@epam/uui-core").IAnalyticableClick & import("@epam/uui-core").IHasTabIndex & import("@epam/uui-core").IDisableable & import("@epam/uui-core").IHasCX & import("@epam/uui-core").ICanRedirect & import("@epam/uui-core").IHasRawProps<uuiComponents.ClickableRawProps> & import("@epam/uui-core").IDropdownToggler & {
14
- icon?: import("@epam/uui-core").Icon;
15
- dropdownIcon?: import("@epam/uui-core").Icon;
16
- } & IconButtonMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
16
+ export type IconButtonProps = Omit<IconButtonCoreProps, 'size'> & IconButtonMods;
17
+ export declare const IconButton: (props: Omit<uuiComponents.IconButtonProps, "size"> & IconButtonMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
17
18
  export {};
18
19
  //# sourceMappingURL=IconButton.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAItD,UAAU,cAAc;IACpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;CAC9E;AAED,kEAAkE;AAClE,MAAM,MAAM,mBAAmB,GAAG,aAAa,CAAC,eAAe,CAAC;AAEhE,6DAA6D;AAC7D,MAAM,MAAM,eAAe,GAAG,mBAAmB,GAAG,cAAc,CAAC;AAMnE,eAAO,MAAM,UAAU;;;kJAA2F,CAAC"}
1
+ {"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAKtD,UAAU,cAAc;IACpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;IAC3E;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CACpC;AAED,kEAAkE;AAClE,MAAM,MAAM,mBAAmB,GAAG,aAAa,CAAC,eAAe,CAAC;AAEhE,6DAA6D;AAC7D,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC,GAAG,cAAc,CAAC;AAMjF,eAAO,MAAM,UAAU,sMAStB,CAAC"}
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ import { ApiCallInfo, IHasCX, IHasChildren, ErrorPageInfo, UuiError } from '@epam/uui-core';
3
+ export interface ErrorHandlerProps extends IHasCX, IHasChildren {
4
+ /** Pure function to get error info for display based on error.
5
+ * If omitted, error info from default config will be used.
6
+ */
7
+ getErrorInfo?: (uuiError: UuiError | Error | ApiCallInfo, defaultErrorInfo: ErrorPageInfo) => ErrorPageInfo;
8
+ /** Callback to handle notification error.
9
+ * If omitted, default implementation with ErrorNotification will be used.
10
+ * */
11
+ onNotificationError?: (errors: ApiCallInfo) => void;
12
+ }
13
+ export declare function ErrorHandler(props: ErrorHandlerProps): JSX.Element;
14
+ //# sourceMappingURL=ErrorHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorHandler.d.ts","sourceRoot":"","sources":["../../../components/errors/ErrorHandler.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,WAAW,EAAE,MAAM,EAAmE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAW7J,MAAM,WAAW,iBAAkB,SAAQ,MAAM,EAAE,YAAY;IAC3D;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,GAAG,KAAK,GAAG,WAAW,EAAE,gBAAgB,EAAE,aAAa,KAAK,aAAa,CAAC;IAC5G;;SAEK;IACL,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,WAAW,KAAK,IAAI,CAAC;CACvD;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,eAwEpD"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { IHasCX, ErrorPageInfo } from '@epam/uui-core';
3
+ interface ErrorPageProps extends ErrorPageInfo, IHasCX {
4
+ }
5
+ export declare const ErrorPage: React.FC<ErrorPageProps>;
6
+ export {};
7
+ //# sourceMappingURL=ErrorPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorPage.d.ts","sourceRoot":"","sources":["../../../components/errors/ErrorPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAgB,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGrE,UAAU,cAAe,SAAQ,aAAa,EAAE,MAAM;CAAG;AAEzD,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAY9C,CAAC"}
@@ -0,0 +1,38 @@
1
+ import { ApiRecoveryReason } from '@epam/uui-core';
2
+ export declare const getRecoveryMessageConfig: () => Record<ApiRecoveryReason, {
3
+ title: string;
4
+ subtitle: string;
5
+ }>;
6
+ export declare const getErrorPageConfig: () => {
7
+ notFound: {
8
+ imageUrl: string;
9
+ mobileImageUrl: string;
10
+ title: string;
11
+ subtitle: string;
12
+ };
13
+ permissionDenied: {
14
+ imageUrl: string;
15
+ mobileImageUrl: string;
16
+ title: string;
17
+ subtitle: string;
18
+ };
19
+ serverError: {
20
+ imageUrl: string;
21
+ mobileImageUrl: string;
22
+ title: string;
23
+ subtitle: string;
24
+ };
25
+ serviceUnavailable: {
26
+ imageUrl: string;
27
+ mobileImageUrl: string;
28
+ title: string;
29
+ subtitle: string;
30
+ };
31
+ default: {
32
+ imageUrl: string;
33
+ mobileImageUrl: string;
34
+ title: string;
35
+ subtitle: string;
36
+ };
37
+ };
38
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../components/errors/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAGnD,eAAO,MAAM,wBAAwB,EAAE,MAAM,MAAM,CAAC,iBAAiB,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAKxG,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+B7B,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './config';
2
+ export * from './ErrorHandler';
3
+ export * from './ErrorPage';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/errors/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC"}
@@ -1,12 +1,11 @@
1
1
  import * as React from 'react';
2
2
  import { IDisableable, IDropdownTogglerProps, IHasCX } from '@epam/uui-core';
3
- export interface FilterToolbarItemTogglerProps extends IDropdownTogglerProps, IDisableable {
3
+ export interface FilterToolbarItemTogglerProps extends IDropdownTogglerProps, IDisableable, IHasCX {
4
4
  selection?: React.ReactNode[];
5
5
  postfix?: string | null | JSX.Element;
6
6
  title?: string;
7
7
  maxWidth?: number;
8
8
  size?: '24' | '30' | '36' | '42' | '48';
9
- cx?: IHasCX;
10
9
  predicateName: string | null;
11
10
  }
12
11
  export declare const FilterPanelItemToggler: React.ForwardRefExoticComponent<Pick<FilterToolbarItemTogglerProps, "isDisabled" | "toggleDropdownOpening" | "isInteractedOutside" | "isOpen" | "isDropdown" | "onClick" | "selection" | "cx" | "title" | "maxWidth" | "size" | "postfix" | "predicateName"> & React.RefAttributes<HTMLDivElement>>;
@@ -1 +1 @@
1
- {"version":3,"file":"FilterPanelItemToggler.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterPanelItemToggler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,MAAM,EAAkC,MAAM,gBAAgB,CAAC;AAS7G,MAAM,WAAW,6BAA8B,SAAQ,qBAAqB,EAAE,YAAY;IACtF,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,GAAG,CAAC,OAAO,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACxC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,eAAO,MAAM,sBAAsB,qSAqEjC,CAAC"}
1
+ {"version":3,"file":"FilterPanelItemToggler.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterPanelItemToggler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,MAAM,EAAkC,MAAM,gBAAgB,CAAC;AAS7G,MAAM,WAAW,6BAA8B,SAAQ,qBAAqB,EAAE,YAAY,EAAE,MAAM;IAC9F,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,GAAG,CAAC,OAAO,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACxC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,eAAO,MAAM,sBAAsB,qSAqEjC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"PresetActionsDropdown.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetActionsDropdown.tsx"],"names":[],"mappings":";AAEA,OAAO,EACH,WAAW,EAAoB,YAAY,EAAiB,cAAc,EAC7E,MAAM,gBAAgB,CAAC;AAcxB,UAAU,uBAAwB,SAAQ,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC;IAClE,MAAM,EAAE,YAAY,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,cAAc,CAAC;IAC3B,YAAY,EAAE,MAAM,IAAI,CAAC;CAC5B;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,uBAAuB,eAgHnE"}
1
+ {"version":3,"file":"PresetActionsDropdown.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetActionsDropdown.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,WAAW,EAAoB,YAAY,EAAiB,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAe5G,UAAU,uBAAwB,SAAQ,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC;IAClE,MAAM,EAAE,YAAY,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,cAAc,CAAC;IAC3B,YAAY,EAAE,MAAM,IAAI,CAAC;CAC5B;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,uBAAuB,eAkHnE"}
@@ -12,4 +12,5 @@ export * from './filters';
12
12
  export * from './navigation';
13
13
  export * from './forms';
14
14
  export * from './fileUpload';
15
+ export * from './errors';
15
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../components/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../components/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../components/inputs/Checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAOtD,UAAU,YAAY;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1B;AAED,2DAA2D;AAC3D,MAAM,MAAM,aAAa,GAAG,YAAY,GAAG,aAAa,CAAC,aAAa,CAAC;AAoBvE,eAAO,MAAM,QAAQ,oLAAwH,CAAC"}
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../components/inputs/Checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAKtD,UAAU,YAAY;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1B;AAED,2DAA2D;AAC3D,MAAM,MAAM,aAAa,GAAG,YAAY,GAAG,aAAa,CAAC,aAAa,CAAC;AAoBvE,eAAO,MAAM,QAAQ,oLAAwH,CAAC"}
@@ -30,6 +30,10 @@ export interface TimePickerProps extends SizeMod, IHasEditMode, IEditable<TimePi
30
30
  inputCx?: CX;
31
31
  /** CSS class(es) to put on body-part component. See https://github.com/JedWatson/classnames#usage for details */
32
32
  bodyCx?: CX;
33
+ /**
34
+ * Indicates that inputs' clear cross is hidden
35
+ */
36
+ disableClear?: boolean;
33
37
  }
34
38
  export interface TimePickerValue {
35
39
  /** Selected hours value */
@@ -1 +1 @@
1
- {"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../../components/inputs/timePicker/TimePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAGnD,OAAO,EACH,EAAE,EAAgC,cAAc,EAAE,SAAS,EAAE,YAAY,EAAE,gBAAgB,EAAE,SAAS,EACtG,gBAAgB,EAAE,eAAe,EAAE,YAAY,EAClD,MAAM,gBAAgB,CAAC;AAIxB,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAQ9D,MAAM,WAAW,eAAgB,SAAQ,OAAO,EAAE,YAAY,EAAE,SAAS,CAAC,eAAe,GAAG,IAAI,CAAC,EAC7F,YAAY,EACZ,cAAc,EACd,eAAe,EACf,SAAS,CAAC,WAAW,CAAC,EACtB,gBAAgB,CAAC,WAAW,CAAC;IAC7B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC;IACjB,oDAAoD;IACpD,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,YAAY,CAAC,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,CAAC,SAAS,CAAC;IAExD,0DAA0D;IAC1D,QAAQ,CAAC,EAAE;QACP,2DAA2D;QAC3D,KAAK,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;QACvE,+DAA+D;QAC/D,IAAI,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;KACzE,CAAC;IACF,kHAAkH;IAClH,OAAO,CAAC,EAAE,EAAE,CAAC;IACb,iHAAiH;IACjH,MAAM,CAAC,EAAE,EAAE,CAAC;CACf;AAED,MAAM,WAAW,eAAe;IAC5B,2BAA2B;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC;CACnB;AASD,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,eAqJhD"}
1
+ {"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../../components/inputs/timePicker/TimePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAGnD,OAAO,EACH,EAAE,EAAgC,cAAc,EAAE,SAAS,EAAE,YAAY,EAAE,gBAAgB,EAAE,SAAS,EACtG,gBAAgB,EAAE,eAAe,EAAE,YAAY,EAClD,MAAM,gBAAgB,CAAC;AAIxB,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAQ9D,MAAM,WAAW,eAAgB,SAAQ,OAAO,EAAE,YAAY,EAAE,SAAS,CAAC,eAAe,GAAG,IAAI,CAAC,EAC7F,YAAY,EACZ,cAAc,EACd,eAAe,EACf,SAAS,CAAC,WAAW,CAAC,EACtB,gBAAgB,CAAC,WAAW,CAAC;IAC7B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC;IACjB,oDAAoD;IACpD,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,YAAY,CAAC,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,CAAC,SAAS,CAAC;IAExD,0DAA0D;IAC1D,QAAQ,CAAC,EAAE;QACP,2DAA2D;QAC3D,KAAK,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;QACvE,+DAA+D;QAC/D,IAAI,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;KACzE,CAAC;IACF,kHAAkH;IAClH,OAAO,CAAC,EAAE,EAAE,CAAC;IACb,iHAAiH;IACjH,MAAM,CAAC,EAAE,EAAE,CAAC;IACZ;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,eAAe;IAC5B,2BAA2B;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC;CACnB;AASD,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,eAqJhD"}
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { Icon, IEditable, IHasCX, IHasForwardedRef, IHasRawProps } from '@epam/uui-core';
3
- import { TimePickerProps, TimePickerValue } from '../timePicker';
3
+ import { TimePickerProps, TimePickerValue } from './TimePicker';
4
4
  export declare const uuiTimePicker: {
5
5
  readonly container: "uui-timepicker-container";
6
6
  readonly iconUp: "uui-timepicker-icon-up";
@@ -1 +1 @@
1
- {"version":3,"file":"TimePickerBody.d.ts","sourceRoot":"","sources":["../../../../components/inputs/timePicker/TimePickerBody.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAM,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE7F,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAMjE,eAAO,MAAM,aAAa;;;;;;CAMhB,CAAC;AAMX,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,eAAe,EAAE,aAAa,GAAG,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,eAAe,CAAC,EAC5H,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC;IACpF;;OAEG;IACH,OAAO,CAAC,EAAE,IAAI,CAAC;IACf;;OAEG;IACH,YAAY,CAAC,EAAE,IAAI,CAAC;CACvB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,eAiGxD"}
1
+ {"version":3,"file":"TimePickerBody.d.ts","sourceRoot":"","sources":["../../../../components/inputs/timePicker/TimePickerBody.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAM,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE7F,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAMhE,eAAO,MAAM,aAAa;;;;;;CAMhB,CAAC;AAMX,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,eAAe,EAAE,aAAa,GAAG,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,eAAe,CAAC,EAC5H,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC;IACpF;;OAEG;IACH,OAAO,CAAC,EAAE,IAAI,CAAC;IACf;;OAEG;IACH,YAAY,CAAC,EAAE,IAAI,CAAC;CACvB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,eAqGxD"}
@@ -2,16 +2,14 @@ import { FlexRowProps as uuiFlexRowProps } from '@epam/uui-core';
2
2
  export type RowMods = {
3
3
  /** Defines row size */
4
4
  size?: null | '24' | '30' | '36' | '42' | '48';
5
+ /** Pass true, to enable row top border */
6
+ borderTop?: boolean;
5
7
  /** Pass true, to enable row bottom border */
6
8
  borderBottom?: boolean;
7
- /** Defines row column gap */
8
- columnGap?: number | '6' | '12' | '18' | '24' | '36';
9
9
  /** Defines row margin */
10
10
  margin?: '12' | '24';
11
11
  /** Defines horizontal row padding */
12
12
  padding?: '6' | '12' | '18' | '24';
13
- /** Defines row gap */
14
- rowGap?: number | '6' | '12' | '18' | '24' | '36';
15
13
  /** Defines row spacing */
16
14
  spacing?: '6' | '12' | '18';
17
15
  /** Pass true, to show a top shadow */
@@ -22,7 +20,12 @@ export type RowMods = {
22
20
  background?: 'surface-main';
23
21
  };
24
22
  /** Represents the properties of the FlexRow component. */
25
- export interface FlexRowProps extends Omit<uuiFlexRowProps, 'columnGap' | 'rowGap'>, RowMods {
23
+ export interface FlexRowProps extends uuiFlexRowProps, RowMods {
26
24
  }
27
- export declare const FlexRow: (props: Omit<uuiFlexRowProps, "columnGap" | "rowGap"> & RowMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
25
+ export declare const FlexRow: (props: import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("react").Attributes & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IHasRawProps<import("react").HTMLAttributes<HTMLDivElement>> & {
26
+ alignItems?: "top" | "center" | "bottom" | "stretch";
27
+ justifyContent?: "center" | "space-between" | "space-around" | "space-evenly" | "start" | "end";
28
+ columnGap?: number | "6" | "12" | "18" | "24" | "36";
29
+ rowGap?: number | "6" | "12" | "18" | "24" | "36";
30
+ } & RowMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
28
31
  //# sourceMappingURL=FlexRow.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,IAAI,eAAe,EAAY,MAAM,gBAAgB,CAAC;AAI3E,MAAM,MAAM,OAAO,GAAG;IAClB,uBAAuB;IACvB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC/C,6CAA6C;IAC7C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACrD,yBAAyB;IACzB,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACrB,qCAAqC;IACrC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAClD,0BAA0B;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,sCAAsC;IACtC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,mCAAmC;IACnC,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,6BAA6B;IAC7B,UAAU,CAAC,EAAE,cAAc,CAAC;CAC/B,CAAC;AAEF,0DAA0D;AAC1D,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,GAAG,QAAQ,CAAC,EAAE,OAAO;CAAG;AAE/F,eAAO,MAAM,OAAO,iMAYlB,CAAC"}
1
+ {"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,IAAI,eAAe,EAAY,MAAM,gBAAgB,CAAC;AAItF,MAAM,MAAM,OAAO,GAAG;IAClB,uBAAuB;IACvB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC/C,0CAA0C;IAC1C,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6CAA6C;IAC7C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,yBAAyB;IACzB,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACrB,qCAAqC;IACrC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,0BAA0B;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,sCAAsC;IACtC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,mCAAmC;IACnC,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,6BAA6B;IAC7B,UAAU,CAAC,EAAE,cAAc,CAAC;CAC/B,CAAC;AAEF,0DAA0D;AAC1D,MAAM,WAAW,YAAa,SAAQ,eAAe,EAAE,OAAO;CAAG;AAEjE,eAAO,MAAM,OAAO;;;;;2IAmBlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../components/layout/LabeledInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAOtD,UAAU,gBAAiB,SAAQ,KAAK,CAAC,OAAO;CAAG;AAEnD,+DAA+D;AAC/D,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;AAMnF,eAAO,MAAM,YAAY,4LAGtB,CAAC"}
1
+ {"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../components/layout/LabeledInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAQtD,UAAU,gBAAiB,SAAQ,KAAK,CAAC,OAAO;CAAG;AAEnD,+DAA+D;AAC/D,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;AAMnF,eAAO,MAAM,YAAY,4LAGtB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAC5D,OAAO,EAC+B,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAC9G,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,qBAAqB,EACnF,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAA8D,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAS1H,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB;IAChJ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,0BAA2B,SAAQ,WAAW,EAAE,YAAY,EAAE,iBAAiB,EAAE,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC;IACvI,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;IACrD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,oBAAY,oBAAoB;IAC5B,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,UAAU,cAAc;IACxB,WAAW,eAAe;IAC1B,QAAQ,YAAY;IACpB,UAAU,cAAc;CAC3B;AAuCD,eAAO,MAAM,gBAAgB,sIAM5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,0WAgF7B,CAAC;AAIH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,eAMjD;AAED,UAAU,mBAAoB,SAAQ,MAAM,EAAE,WAAW;CAAG;AAE5D,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,mBAAmB,eAM5D;AAED,UAAU,gBAAiB,SAAQ,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,sBAAsB;IAC1F,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,gBAAgB,eAsCtD;AAED,UAAU,yBAA0B,SAAQ,MAAM,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,kBAAkB,EAAE,UAAU;IACnH,aAAa,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,OAAO,CAAC;CACvB;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,yBAAyB,eA+BxE"}
1
+ {"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAC5D,OAAO,EAC+B,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAC9G,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,qBAAqB,EACnF,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAA8D,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAO1H,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB;IAChJ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,0BAA2B,SAAQ,WAAW,EAAE,YAAY,EAAE,iBAAiB,EAAE,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC;IACvI,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;IACrD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,oBAAY,oBAAoB;IAC5B,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,UAAU,cAAc;IACxB,WAAW,eAAe;IAC1B,QAAQ,YAAY;IACpB,UAAU,cAAc;CAC3B;AAuCD,eAAO,MAAM,gBAAgB,sIAM5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,0WAgF7B,CAAC;AAIH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,eAMjD;AAED,UAAU,mBAAoB,SAAQ,MAAM,EAAE,WAAW;CAAG;AAE5D,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,mBAAmB,eAM5D;AAED,UAAU,gBAAiB,SAAQ,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,sBAAsB;IAC1F,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,gBAAgB,eAsCtD;AAED,UAAU,yBAA0B,SAAQ,MAAM,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,kBAAkB,EAAE,UAAU;IACnH,aAAa,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,OAAO,CAAC;CACvB;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,yBAAyB,eA+BxE"}
@@ -1,18 +1,18 @@
1
1
  import * as React from 'react';
2
2
  import { ModalFooterCoreProps, ModalWindowProps as uuiModalWindowProps, ModalBlockerProps, ModalHeaderCoreProps } from '@epam/uui-core';
3
- import { RowMods } from '../layout/FlexItems';
3
+ import { RowMods, FlexRowProps } from '../layout';
4
4
  export declare const ModalBlocker: (props: ModalBlockerProps & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
5
5
  interface ModalWindowMods {
6
6
  /**
7
7
  * Defines component width.
8
8
  * @default '420px'
9
9
  */
10
- width?: number;
10
+ width?: number | string;
11
11
  /**
12
12
  * Defines component height.
13
13
  * @default 'auto'
14
14
  */
15
- height?: number;
15
+ height?: number | string;
16
16
  }
17
17
  export interface ModalWindowCoreProps extends uuiModalWindowProps {
18
18
  }
@@ -24,7 +24,7 @@ export interface ModalHeaderProps extends RowMods, ModalHeaderCoreProps {
24
24
  export declare class ModalHeader extends React.Component<ModalHeaderProps> {
25
25
  render(): JSX.Element;
26
26
  }
27
- export interface ModalFooterProps extends RowMods, ModalFooterCoreProps {
27
+ export interface ModalFooterProps extends FlexRowProps, ModalFooterCoreProps {
28
28
  }
29
29
  export declare class ModalFooter extends React.Component<ModalFooterProps> {
30
30
  render(): JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../components/overlays/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,oBAAoB,EAAE,gBAAgB,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAElJ,OAAO,EAAuB,OAAO,EAAY,MAAM,qBAAqB,CAAC;AAM7E,eAAO,MAAM,YAAY,6HAAyE,CAAC;AAEnG,UAAU,eAAe;IACrB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;CAAG;AAEpE,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB,EAAE,eAAe;CAAG;AAElF,eAAO,MAAM,WAAW,iJAUvB,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAyBT;AAED,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAkBT"}
1
+ {"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../components/overlays/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,oBAAoB,EAAE,gBAAgB,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAElJ,OAAO,EAAuB,OAAO,EAAY,YAAY,EAAE,MAAM,WAAW,CAAC;AAMjF,eAAO,MAAM,YAAY,6HAAyE,CAAC;AAEnG,UAAU,eAAe;IACrB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;CAAG;AAEpE,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB,EAAE,eAAe;CAAG;AAElF,eAAO,MAAM,WAAW,iJAoBvB,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAyBT;AAED,MAAM,WAAW,gBAAiB,SAAQ,YAAY,EAAE,oBAAoB;CAAG;AAE/E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAkBT"}