@epam/uui 5.0.0-alpha.3 → 5.0.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 (46) hide show
  1. package/assets/styles/dnd.scss +9 -0
  2. package/assets/styles/index.scss +1 -1
  3. package/assets/styles/typography.scss +143 -19
  4. package/components/buttons/LinkButton.d.ts +3 -0
  5. package/components/buttons/LinkButton.d.ts.map +1 -1
  6. package/components/buttons/TabButton.d.ts.map +1 -1
  7. package/components/filters/FilterRangeDatePickerBody.d.ts.map +1 -1
  8. package/components/filters/FiltersPanelItem.d.ts.map +1 -1
  9. package/components/filters/PresetPanel/PresetInput.d.ts.map +1 -1
  10. package/components/filters/PresetPanel/PresetsPanel.d.ts.map +1 -1
  11. package/components/forms/Form.d.ts.map +1 -1
  12. package/components/inputs/TextInput.d.ts.map +1 -1
  13. package/components/layout/ScrollBars.d.ts +1 -1
  14. package/components/layout/ScrollBars.d.ts.map +1 -1
  15. package/components/overlays/DropdownMenu.d.ts.map +1 -1
  16. package/components/overlays/Modals.d.ts +4 -3
  17. package/components/overlays/Modals.d.ts.map +1 -1
  18. package/components/overlays/NotificationCard.d.ts.map +1 -1
  19. package/components/pickers/MobileDropdownWrapper.d.ts.map +1 -1
  20. package/components/pickers/PickerList.d.ts.map +1 -1
  21. package/components/tables/DataTableCell.d.ts.map +1 -1
  22. package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +1 -1
  23. package/components/typography/RichTextView.d.ts +1 -2
  24. package/components/typography/RichTextView.d.ts.map +1 -1
  25. package/components/typography/Text.d.ts +2 -3
  26. package/components/typography/Text.d.ts.map +1 -1
  27. package/components/widgets/Badge.d.ts +1 -2
  28. package/components/widgets/Badge.d.ts.map +1 -1
  29. package/i18n.d.ts +1 -0
  30. package/i18n.d.ts.map +1 -1
  31. package/index.d.ts +0 -1
  32. package/index.d.ts.map +1 -1
  33. package/index.esm.js +164 -129
  34. package/index.esm.js.map +1 -1
  35. package/index.js +164 -128
  36. package/index.js.map +1 -1
  37. package/package.json +6 -8
  38. package/stats.html +1 -1
  39. package/styles.css +2684 -7591
  40. package/styles.css.map +1 -1
  41. package/assets/styles/font-faces.scss +0 -52
  42. package/assets/styles/layout-mixins.scss +0 -9
  43. package/assets/styles/prettifyScrollBar.scss +0 -53
  44. package/assets/styles/text-layout.scss +0 -81
  45. package/assets/styles/typography-mixins.scss +0 -159
  46. package/assets/styles/variables/widgets/badge.scss +0 -51
@@ -0,0 +1,9 @@
1
+ @mixin dnd-cursor-style {
2
+ &:hover {
3
+ cursor: grab;
4
+ }
5
+
6
+ &:active {
7
+ cursor: grabbing;
8
+ }
9
+ }
@@ -3,6 +3,6 @@
3
3
  @forward 'effects';
4
4
  @forward 'icons';
5
5
  @forward 'inputs';
6
- @forward 'layout-mixins';
7
6
  @forward 'text-size';
8
7
  @forward 'typography';
8
+ @forward 'dnd';
@@ -1,39 +1,163 @@
1
- @forward 'typography-mixins';
2
- @use 'typography-mixins' as *;
3
-
4
1
  @mixin overflow-ellipsis() {
5
2
  overflow: hidden;
6
3
  text-overflow: ellipsis;
7
4
  }
8
5
 
9
- :local(.typography-header) {
10
- @include typography-header();
6
+ @mixin typography-header() {
7
+ :global(.hero-header), h1, h2, h3, h4, h5, h6 {
8
+ margin: 0;
9
+ }
10
+
11
+ :global(.hero-header) {
12
+ font-family: var(--font-promo);
13
+ margin: 30px 0;
14
+ font-size: 66px;
15
+ line-height: 72px;
16
+ }
17
+
18
+ :global(.hero-header), :global(.promo-header) {
19
+ color: var(--uui-text-brand);
20
+ text-align: center;
21
+ }
22
+
23
+ :global(.promo-header), h1, h2, h3 {
24
+ font-family: var(--font-primary);
25
+ }
26
+
27
+ h4, h5, h6 {
28
+ font-family: var(--font-semibold);
29
+ }
30
+
31
+ h1, h2, h3, h4, h5, h6 {
32
+ margin-bottom: 0.5em;
33
+ margin-top: 1.2em;
34
+ line-height: 1.35em;
35
+ }
36
+
37
+ h1 {
38
+ font-size: 42px;
39
+ }
40
+
41
+ h2 {
42
+ font-size: 30px;
43
+ letter-spacing: 0.1px;
44
+
45
+ &:global(.promo-header) {
46
+ letter-spacing: 2px;
47
+ }
48
+ }
49
+
50
+ h3 {
51
+ font-size: 24px;
52
+ }
53
+
54
+ h4 {
55
+ font-size: 18px;
56
+ letter-spacing: 0.1px;
57
+ }
58
+
59
+ h5 {
60
+ font-size: 16px;
61
+ }
62
+
63
+ h6 {
64
+ font-size: 14px;
65
+ }
11
66
  }
12
67
 
13
- :local(.typography-block) {
14
- @include typography-block();
68
+ @mixin typography-inline() {
69
+ b, strong {
70
+ font-family: var(--font-semibold);
71
+ }
72
+
73
+ i, em {
74
+ font-family: var(--font-italic);
75
+ }
76
+
77
+ a {
78
+ display: inline-flex;
79
+ align-items: center;
80
+ color: var(--uui-primary);
81
+ text-decoration: underline;
82
+
83
+ &:visited {
84
+ color: #5214CC;
85
+
86
+ &:hover {
87
+ color: #3F0F9E;
88
+ }
89
+ }
90
+
91
+ &:hover {
92
+ color: var(--uui-primary-dark);
93
+ }
94
+ }
95
+
96
+ code {
97
+ padding: 0.125em 0.25em;
98
+ color: var(--uui-text-primary);
99
+ background-color: var(--uui-secondary-light);
100
+ font-family: var(--font-mono);
101
+ white-space: pre-wrap;
102
+ word-wrap: normal;
103
+ }
15
104
  }
16
105
 
17
- :local(.typography-inline) {
18
- @include typography-inline();
106
+ @mixin typography-block() {
107
+ ol, ul {
108
+ padding: 0;
109
+ }
110
+
111
+ li {
112
+ margin-left: 1.25em;
113
+ line-height: 1.5;
114
+ }
115
+
116
+ pre {
117
+ padding: 1.25em;
118
+ color: var(--uui-text-contrast);
119
+ background-color: var(--uui-secondary-darkest);
120
+ font-family: monospace;
121
+ white-space: pre-wrap;
122
+ word-wrap: normal;
123
+ }
124
+
125
+ img {
126
+ max-width: 100%;
127
+ }
128
+
129
+ figure {
130
+ margin: 0;
131
+
132
+ figcaption {
133
+ font-size: 0.9em;
134
+ opacity: 0.9;
135
+ text-align: center;
136
+ }
137
+ }
138
+
139
+ p {
140
+ margin: 0.5em 0;
141
+ line-height: 1.5;
142
+ }
19
143
  }
20
144
 
21
- :local(.typography-16) {
22
- @include typography-16();
145
+ @mixin typography-12() {
146
+ font-size: 12px;
23
147
  }
24
148
 
25
- :local(.typography-14) {
26
- @include typography-14();
149
+ @mixin typography-14() {
150
+ font-size: 14px;
27
151
  }
28
152
 
29
- :local(.typography-12) {
30
- @include typography-12();
153
+ @mixin typography-16() {
154
+ font-size: 16px;
31
155
  }
32
156
 
33
- :local(.typography-promo) {
157
+ @mixin typography-uui() {
158
+ @include typography-header();
159
+ @include typography-block();
160
+ @include typography-inline();
34
161
  font-family: var(--font-regular);
35
162
  color: var(--uui-text-primary);
36
- composes: typography-header;
37
- composes: typography-block;
38
- composes: typography-inline;
39
163
  }
@@ -1,7 +1,10 @@
1
1
  import * as types from '../types';
2
2
  import { ButtonProps } from '@epam/uui-components';
3
+ export type LinkButtonColorType = 'primary' | 'secondary' | 'contrast';
4
+ export declare const allLinkButtonColors: LinkButtonColorType[];
3
5
  export interface LinkButtonMods {
4
6
  size?: types.ControlSize | '42';
7
+ color?: LinkButtonColorType;
5
8
  }
6
9
  export type LinkButtonProps = LinkButtonMods & ButtonProps;
7
10
  export declare const LinkButton: (props: ButtonProps & LinkButtonMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
@@ -1 +1 @@
1
- {"version":3,"file":"LinkButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/LinkButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAO3D,MAAM,WAAW,cAAc;IAC3B,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;CACnC;AAED,MAAM,MAAM,eAAe,GAAG,cAAc,GAAG,WAAW,CAAC;AAQ3D,eAAO,MAAM,UAAU,sKAGpB,CAAC"}
1
+ {"version":3,"file":"LinkButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/LinkButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAM3D,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AACvE,eAAO,MAAM,mBAAmB,EAAE,mBAAmB,EAAyC,CAAC;AAE/F,MAAM,WAAW,cAAc;IAC3B,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;IAChC,KAAK,CAAC,EAAE,mBAAmB,CAAC;CAC/B;AAED,MAAM,MAAM,eAAe,GAAG,cAAc,GAAG,WAAW,CAAC;AAW3D,eAAO,MAAM,UAAU,sKAGpB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"TabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/TabButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAM3D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,WAAW,CAAC;AAQzD,eAAO,MAAM,SAAS,qKAMnB,CAAC"}
1
+ {"version":3,"file":"TabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/TabButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAM3D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,WAAW,CAAC;AAYzD,eAAO,MAAM,SAAS,qKAMnB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"FilterRangeDatePickerBody.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterRangeDatePickerBody.tsx"],"names":[],"mappings":";AACA,OAAO,EACH,wBAAwB,EAAE,kBAAkB,EAAE,wBAAwB,EACzE,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAU3D,MAAM,WAAW,oBAAqB,SAAQ,wBAAwB,EAAE,kBAAkB;CAAG;AAE7F,qBAAa,yBAA0B,SAAQ,mBAAmB,CAAC,oBAAoB,CAAC;IACpF,KAAK;;;;;;;MAGH;IAEF,UAAU;IAiDV,WAAW,QAAO,GAAG,CAEnB;IAEF,MAAM;CAGT"}
1
+ {"version":3,"file":"FilterRangeDatePickerBody.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterRangeDatePickerBody.tsx"],"names":[],"mappings":";AACA,OAAO,EACH,wBAAwB,EAAE,kBAAkB,EAAE,wBAAwB,EACzE,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAU3D,MAAM,WAAW,oBAAqB,SAAQ,wBAAwB,EAAE,kBAAkB;CAAG;AAE7F,qBAAa,yBAA0B,SAAQ,mBAAmB,CAAC,oBAAoB,CAAC;IACpF,KAAK;;;;;;;MAGH;IAEF,UAAU;IAkDV,WAAW,QAAO,GAAG,CAEnB;IAEF,MAAM;CAGT"}
@@ -1 +1 @@
1
- {"version":3,"file":"FiltersPanelItem.d.ts","sourceRoot":"","sources":["../../../components/filters/FiltersPanelItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAEN,MAAM,OAAO,CAAC;AAGf,OAAO,EAEH,kBAAkB,EAElB,SAAS,EAMZ,MAAM,gBAAgB,CAAC;AAexB,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,CAAC,GAAG,CAAC,GAC7D,SAAS,CAAC,GAAG,CAAC,GAAG;IACb,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;CACvC,CAAC;AAEF,iBAAS,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,eAyM7D;AAED,eAAO,MAAM,gBAAgB,0DAAqC,CAAC"}
1
+ {"version":3,"file":"FiltersPanelItem.d.ts","sourceRoot":"","sources":["../../../components/filters/FiltersPanelItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAEN,MAAM,OAAO,CAAC;AAGf,OAAO,EAEH,kBAAkB,EAElB,SAAS,EAQZ,MAAM,gBAAgB,CAAC;AAexB,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,CAAC,GAAG,CAAC,GAC7D,SAAS,CAAC,GAAG,CAAC,GAAG;IACb,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;CACvC,CAAC;AAEF,iBAAS,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,eAuN7D;AAED,eAAO,MAAM,gBAAgB,0DAAqC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"PresetInput.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetInput.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,UAAU,iBAAiB;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IAC3C,MAAM,CAAC,EAAE,YAAY,CAAC;CACzB;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,eAmCnD"}
1
+ {"version":3,"file":"PresetInput.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetInput.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,UAAU,iBAAiB;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IAC3C,MAAM,CAAC,EAAE,YAAY,CAAC;CACzB;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,eAoCnD"}
@@ -1 +1 @@
1
- {"version":3,"file":"PresetsPanel.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAGrD,OAAO,EACH,cAAc,EAAE,YAAY,EAAE,WAAW,EAC5C,MAAM,gBAAgB,CAAC;AAWxB,MAAM,WAAW,iBAAkB,SAAQ,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACtG,UAAU,EAAE,cAAc,CAAC;CAC9B;AAID,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,eAuFpD"}
1
+ {"version":3,"file":"PresetsPanel.d.ts","sourceRoot":"","sources":["../../../../components/filters/PresetPanel/PresetsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAGrD,OAAO,EACH,cAAc,EAAE,YAAY,EAAE,WAAW,EAC5C,MAAM,gBAAgB,CAAC;AAWxB,MAAM,WAAW,iBAAkB,SAAQ,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACtG,UAAU,EAAE,cAAc,CAAC;CAC9B;AAID,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,eAwFpD"}
@@ -1 +1 @@
1
- {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../components/forms/Form.tsx"],"names":[],"mappings":";AACA,OAAO,EACc,SAAS,EAC7B,MAAM,gBAAgB,CAAC;AAKxB,wBAAgB,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,eA+B1C"}
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../components/forms/Form.tsx"],"names":[],"mappings":";AACA,OAAO,EACc,SAAS,EAC7B,MAAM,gBAAgB,CAAC;AAKxB,wBAAgB,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,eA8B1C"}
@@ -1 +1 @@
1
- {"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAgC,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AACzF,OAAO,EAA6B,cAAc,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACvG,OAAO,EAAE,YAAY,EAAY,WAAW,EAAE,MAAM,UAAU,CAAC;AAO/D,MAAM,WAAW,aAAc,SAAQ,YAAY;IAC/C,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,aAAa,YAMrD;AAED,MAAM,WAAW,cAAe,SAAQ,kBAAkB,EAAE,aAAa;CAAG;AAE5E,eAAO,MAAM,SAAS,8IAInB,CAAC;AAEJ,eAAO,MAAM,WAAW,iwBAqBtB,CAAC"}
1
+ {"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAgC,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AACzF,OAAO,EAA6B,cAAc,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACvG,OAAO,EAAE,YAAY,EAAY,WAAW,EAAE,MAAM,UAAU,CAAC;AAO/D,MAAM,WAAW,aAAc,SAAQ,YAAY;IAC/C,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,aAAa,YAMrD;AAED,MAAM,WAAW,cAAe,SAAQ,kBAAkB,EAAE,aAAa;CAAG;AAE5E,eAAO,MAAM,SAAS,8IAInB,CAAC;AAEJ,eAAO,MAAM,WAAW,iwBA2BtB,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import { ScrollbarProps } from '@epam/uui-components';
2
- import './ScrollBars.scss';
2
+ import './ScrollBars.module.scss';
3
3
  export declare const ScrollBars: (props: ScrollbarProps & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
4
4
  //# sourceMappingURL=ScrollBars.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ScrollBars.d.ts","sourceRoot":"","sources":["../../../components/layout/ScrollBars.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA+B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEnF,OAAO,mBAAmB,CAAC;AAQ3B,eAAO,MAAM,UAAU,wJAA+D,CAAC"}
1
+ {"version":3,"file":"ScrollBars.d.ts","sourceRoot":"","sources":["../../../components/layout/ScrollBars.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA+B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEnF,OAAO,0BAA0B,CAAC;AAQlC,eAAO,MAAM,UAAU,wJAA+D,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAEN,MAAM,OAAO,CAAC;AAEf,OAAO,EAEH,gBAAgB,EAIhB,YAAY,EACZ,WAAW,EACX,QAAQ,EACR,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,kBAAkB,EAClB,MAAM,EACN,UAAU,EACV,iBAAiB,EACpB,MAAM,gBAAgB,CAAC;AAUxB,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB,EAAE,gBAAgB;IAC9H,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,sBAAuB,SAAQ,WAAW,EAAE,iBAAiB;IAC1E,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;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,kIAI5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,+VA+E7B,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,eAsBtD;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,KAAkD,MAAM,OAAO,CAAC;AAEvE,OAAO,EAAM,gBAAgB,EAAgC,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EACrI,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAQtF,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB,EAAE,gBAAgB;IAC9H,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,sBAAuB,SAAQ,WAAW,EAAE,iBAAiB;IAC1E,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;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,kIAI5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,+VA+E7B,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,eAsBtD;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,12 +1,13 @@
1
1
  import * as React from 'react';
2
- import { ModalFooterCoreProps, ModalWindowProps, ModalBlockerProps, ModalHeaderCoreProps } from '@epam/uui-core';
2
+ import { ModalFooterCoreProps, ModalWindowProps as UuiModalWindowProps, ModalBlockerProps, ModalHeaderCoreProps } from '@epam/uui-core';
3
3
  import { RowMods } from '../layout';
4
4
  export declare const ModalBlocker: (props: ModalBlockerProps & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
5
5
  export interface ModalWindowMods {
6
6
  width?: number;
7
- height?: number | 'auto';
7
+ height?: number;
8
8
  }
9
- export declare const ModalWindow: (props: ModalWindowProps & ModalWindowMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
9
+ export type ModalWindowProps = UuiModalWindowProps & ModalWindowMods;
10
+ export declare const ModalWindow: (props: UuiModalWindowProps & ModalWindowMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
10
11
  export interface ModalHeaderProps extends RowMods, ModalHeaderCoreProps {
11
12
  }
12
13
  export declare class ModalHeader extends React.Component<ModalHeaderProps> {
@@ -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,EACO,oBAAoB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,oBAAoB,EAC5F,MAAM,gBAAgB,CAAC;AAExB,OAAO,EACkB,OAAO,EAC/B,MAAM,WAAW,CAAC;AAMnB,eAAO,MAAM,YAAY,6HAAyE,CAAC;AAEnG,MAAM,WAAW,eAAe;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B;AAED,eAAO,MAAM,WAAW,8IAWvB,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;CAeT"}
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,WAAW,CAAC;AAMnE,eAAO,MAAM,YAAY,6HAAyE,CAAC;AAEnG,MAAM,WAAW,eAAe;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,gBAAgB,GAAG,mBAAmB,GAAG,eAAe,CAAC;AAErE,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;CAeT"}
@@ -1 +1 @@
1
- {"version":3,"file":"NotificationCard.d.ts","sourceRoot":"","sources":["../../../components/overlays/NotificationCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EACH,aAAa,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAc,WAAW,EAAE,YAAY,EACnF,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AASzC,UAAU,kBAAmB,SAAQ,YAAY,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;IAC5F,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,MAAM,WAAW,wBAAyB,SAAQ,aAAa,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACrI,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB;IACnE,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,KAAK,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,eAAO,MAAM,gBAAgB,8FAwC3B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,gBAAgB,iGAE3B,CAAC;AAEH,eAAO,MAAM,iBAAiB,iGAE5B,CAAC;AAEH,qBAAa,iBAAkB,SAAQ,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;IACtD,OAAc,WAAW,mEAAc;IAChC,OAAO,EAAE,WAAW,CAAC;IAC5B,MAAM;CAOT"}
1
+ {"version":3,"file":"NotificationCard.d.ts","sourceRoot":"","sources":["../../../components/overlays/NotificationCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,aAAa,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAc,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAElH,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AASzC,UAAU,kBAAmB,SAAQ,YAAY,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;IAC5F,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,MAAM,WAAW,wBAAyB,SAAQ,aAAa,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACrI,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB;IACnE,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,KAAK,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,eAAO,MAAM,gBAAgB,8FAwC3B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,gBAAgB,iGAE3B,CAAC;AAEH,eAAO,MAAM,iBAAiB,iGAE5B,CAAC;AAEH,qBAAa,iBAAkB,SAAQ,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;IACtD,OAAc,WAAW,mEAAc;IAChC,OAAO,EAAE,WAAW,CAAC;IAC5B,MAAM;CAOT"}
@@ -1 +1 @@
1
- {"version":3,"file":"MobileDropdownWrapper.d.ts","sourceRoot":"","sources":["../../../components/pickers/MobileDropdownWrapper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIzC,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,UAAU,2BAA2B;IACjC,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAcvE,CAAC"}
1
+ {"version":3,"file":"MobileDropdownWrapper.d.ts","sourceRoot":"","sources":["../../../components/pickers/MobileDropdownWrapper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIzC,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAIvC,UAAU,2BAA2B;IACjC,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAcvE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"PickerList.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EACH,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,eAAe,EAAc,WAAW,EAChG,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;AAK7C,MAAM,MAAM,eAAe,CAAC,KAAK,EAAE,GAAG,IAAI,OAAO,GACjD,eAAe,GACf,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG;IAC7B,kBAAkB,CAAC,CAAC,KAAK,EAAE,UAAU,GAAG,WAAW,GAAG,YAAY,EAAE,SAAS,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,GAAG,KAAK,CAAC,SAAS,CAAC;IAC5H,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACtC,CAAC;AAEF,qBAAa,UAAU,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC/F,MAAM,CAAC,WAAW,mEAAc;IAChC,gBAAgB,SAAwB;IACxC,OAAO,EAAE,WAAW,CAAC;IACrB,SAAS,QAAS,aAAa,KAAK,EAAE,GAAG,CAAC,iBAExC;IAEF,gBAAgB,aAgBd;IAEF,oBAAoB,UAAW,UAAU,iBAAoD;IAC7F,MAAM;CA8BT"}
1
+ {"version":3,"file":"PickerList.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,eAAe,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE/H,OAAO,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;AAK7C,MAAM,MAAM,eAAe,CAAC,KAAK,EAAE,GAAG,IAAI,OAAO,GACjD,eAAe,GACf,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG;IAC7B,kBAAkB,CAAC,CAAC,KAAK,EAAE,UAAU,GAAG,WAAW,GAAG,YAAY,EAAE,SAAS,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,GAAG,KAAK,CAAC,SAAS,CAAC;IAC5H,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACtC,CAAC;AAEF,qBAAa,UAAU,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC/F,MAAM,CAAC,WAAW,mEAAc;IAChC,gBAAgB,SAAwB;IACxC,OAAO,EAAE,WAAW,CAAC;IACrB,SAAS,QAAS,aAAa,KAAK,EAAE,GAAG,CAAC,iBAExC;IAEF,gBAAgB,aAgBd;IAEF,oBAAoB,UAAW,UAAU,iBAAoD;IAC7F,MAAM;CA8BT"}
@@ -1 +1 @@
1
- {"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":";AACA,OAAO,EAAc,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AA+C5C,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,KAAK,EAAE,kBAAkB,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAG,iBAAiB,eAuB1H"}
1
+ {"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":";AACA,OAAO,EAAc,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AA+C5C,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,KAAK,EAAE,kBAAkB,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAG,iBAAiB,eAsC1H"}
@@ -1 +1 @@
1
- {"version":3,"file":"ColumnsConfigurationModal.d.ts","sourceRoot":"","sources":["../../../../components/tables/columnsConfigurationModal/ColumnsConfigurationModal.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AA4BxE,UAAU,8BAA8B,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAE,SAAQ,MAAM,CAAC,aAAa,CAAC;IACvF,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,CAAC;CACnD;AAWD,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,8BAA8B,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,eAmHxH"}
1
+ {"version":3,"file":"ColumnsConfigurationModal.d.ts","sourceRoot":"","sources":["../../../../components/tables/columnsConfigurationModal/ColumnsConfigurationModal.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AA0BxE,UAAU,8BAA8B,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAE,SAAQ,MAAM,CAAC,aAAa,CAAC;IACvF,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,CAAC;CACnD;AAWD,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,8BAA8B,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,eAqHxH"}
@@ -1,7 +1,6 @@
1
- import * as React from 'react';
2
1
  import { RichTextViewProps } from '@epam/uui-components';
3
2
  export interface RichTextViewMods {
4
3
  size?: '12' | '14' | '16';
5
4
  }
6
- export declare const RichTextView: (props: RichTextViewProps & RichTextViewMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
5
+ export declare const RichTextView: (props: RichTextViewProps & RichTextViewMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
7
6
  //# sourceMappingURL=RichTextView.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"RichTextView.d.ts","sourceRoot":"","sources":["../../../components/typography/RichTextView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAmC,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAG1F,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7B;AAED,eAAO,MAAM,YAAY,gJAAkK,CAAC"}
1
+ {"version":3,"file":"RichTextView.d.ts","sourceRoot":"","sources":["../../../components/typography/RichTextView.tsx"],"names":[],"mappings":"AACA,OAAO,EAAmC,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAG1F,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7B;AAED,eAAO,MAAM,YAAY,8KAAgK,CAAC"}
@@ -1,12 +1,11 @@
1
- import * as React from 'react';
2
1
  import * as types from '../types';
3
2
  import { TextProps as UuiTextProps } from '@epam/uui-components';
4
3
  import { TextSettings } from '../../helpers/textLayout';
5
4
  export interface TextMods extends TextSettings {
6
5
  size?: types.TextSize | '42';
7
6
  font?: types.FontStyle;
8
- color?: 'brand' | 'primary' | 'secondary' | 'disabled' | 'contrast';
7
+ color?: 'info' | 'warning' | 'error' | 'success' | 'brand' | 'primary' | 'secondary' | 'disabled' | 'contrast' | 'white';
9
8
  }
10
9
  export type TextProps = UuiTextProps & TextMods;
11
- export declare const Text: (props: import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IAnalyticableClick & import("@epam/uui-core").IHasRawProps<React.HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & TextMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
10
+ export declare const Text: (props: import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IAnalyticableClick & import("@epam/uui-core").IHasRawProps<import("react").HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & TextMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
12
11
  //# sourceMappingURL=Text.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAClC,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAElF,OAAO,EAAkB,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExE,MAAM,WAAW,QAAS,SAAQ,YAAY;IAC1C,IAAI,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,CAAC;CACvE;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,QAAQ,CAAC;AAiBhD,eAAO,MAAM,IAAI,4ZAA2D,CAAC"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAClC,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAElF,OAAO,EAAkB,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExE,MAAM,WAAW,QAAS,SAAQ,YAAY;IAC1C,IAAI,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,CAAC;CAC5H;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,QAAQ,CAAC;AAmBhD,eAAO,MAAM,IAAI,ocAA2D,CAAC"}
@@ -1,4 +1,3 @@
1
- import * as React from 'react';
2
1
  import { EpamBadgeSemanticColor } from '../types';
3
2
  import { ButtonProps } from '@epam/uui-components';
4
3
  export type BadgeColor = EpamBadgeSemanticColor;
@@ -11,5 +10,5 @@ export interface BadgeMods {
11
10
  }
12
11
  export type BadgeProps = ButtonProps & BadgeMods;
13
12
  export declare function applyBadgeMods(mods: BadgeMods): string[];
14
- export declare const Badge: (props: ButtonProps & BadgeMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
13
+ export declare const Badge: (props: ButtonProps & BadgeMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
15
14
  //# sourceMappingURL=Badge.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../components/widgets/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAElD,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAe3D,MAAM,MAAM,UAAU,GAAG,sBAAsB,CAAC;AAChD,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,iBAAiB,GAAG,aAAa,CAAC;AACpE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAEhE,MAAM,WAAW,SAAS;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AAEjD,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,YAI7C;AAED,eAAO,MAAM,KAAK,mIAIf,CAAC"}
1
+ {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../components/widgets/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAElD,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAe3D,MAAM,MAAM,UAAU,GAAG,sBAAsB,CAAC;AAChD,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,iBAAiB,GAAG,aAAa,CAAC;AACpE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAEhE,MAAM,WAAW,SAAS;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AAEjD,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,YAI7C;AAED,eAAO,MAAM,KAAK,iKAIf,CAAC"}
package/i18n.d.ts CHANGED
@@ -17,6 +17,7 @@ export declare const i18n: {
17
17
  clearSelectionButton: string;
18
18
  clearSelectionButtonSingle: string;
19
19
  selectAllButton: string;
20
+ doneButton: string;
20
21
  };
21
22
  notificationCard: {
22
23
  closeAllNotificationsButton: string;
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8FhB,CAAC"}
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../i18n.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FhB,CAAC"}
package/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import './assets/styles/font-faces.scss';
2
1
  export * from './components';
3
2
  export * from './i18n';
4
3
  export * from './helpers';
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.tsx"],"names":[],"mappings":"AAAA,OAAO,iCAAiC,CAAC;AAEzC,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.tsx"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC"}