@epam/uui 5.2.0-rc.3 → 5.3.0-rc.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/effects.scss +1 -1
- package/assets/styles/typography.scss +25 -29
- package/components/buttons/Button.d.ts +4 -3
- package/components/buttons/Button.d.ts.map +1 -1
- package/components/buttons/TabButton.d.ts +2 -1
- package/components/buttons/TabButton.d.ts.map +1 -1
- package/components/filters/FilterPickerBody.d.ts.map +1 -1
- package/components/inputs/Checkbox.d.ts +4 -4
- package/components/inputs/Checkbox.d.ts.map +1 -1
- package/components/inputs/Slider.d.ts +6 -0
- package/components/inputs/Slider.d.ts.map +1 -0
- package/components/inputs/Switch.d.ts +4 -3
- package/components/inputs/Switch.d.ts.map +1 -1
- package/components/inputs/TextInput.d.ts +3 -1
- package/components/inputs/TextInput.d.ts.map +1 -1
- package/components/inputs/index.d.ts +1 -0
- package/components/inputs/index.d.ts.map +1 -1
- package/components/layout/Accordion.d.ts +3 -2
- package/components/layout/Accordion.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexCell.d.ts +3 -1
- package/components/layout/FlexItems/FlexCell.d.ts.map +1 -1
- package/components/layout/FlexItems/Panel.d.ts +2 -0
- package/components/layout/FlexItems/Panel.d.ts.map +1 -1
- package/components/layout/LabeledInput.d.ts +3 -2
- package/components/layout/LabeledInput.d.ts.map +1 -1
- package/components/layout/VirtualList.d.ts +32 -2
- package/components/layout/VirtualList.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenu.d.ts +3 -2
- package/components/navigation/MainMenu/MainMenu.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuIcon.d.ts +1 -1
- package/components/navigation/MainMenu/MainMenuIcon.d.ts.map +1 -1
- package/components/overlays/DropdownContainer.d.ts +3 -3
- package/components/overlays/DropdownContainer.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts.map +1 -1
- package/components/pickers/DataPickerBody.d.ts +1 -2
- package/components/pickers/DataPickerBody.d.ts.map +1 -1
- package/components/pickers/PickerInput.d.ts +1 -2
- package/components/pickers/PickerInput.d.ts.map +1 -1
- package/components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts.map +1 -1
- package/components/tables/DataRowsContainer/DataRowsContainer.d.ts +1 -1
- package/components/tables/DataRowsContainer/DataRowsContainer.d.ts.map +1 -1
- package/components/tables/DataTable.d.ts.map +1 -1
- package/components/types.d.ts +8 -1
- package/components/types.d.ts.map +1 -1
- package/components/typography/RichTextView.d.ts +3 -2
- package/components/typography/RichTextView.d.ts.map +1 -1
- package/components/typography/Text.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +4 -2
- package/components/widgets/Badge.d.ts.map +1 -1
- package/components/widgets/CountIndicator.d.ts +8 -0
- package/components/widgets/CountIndicator.d.ts.map +1 -0
- package/components/widgets/StatusIndicator.d.ts +15 -0
- package/components/widgets/StatusIndicator.d.ts.map +1 -0
- package/components/widgets/Tag.d.ts +2 -1
- package/components/widgets/Tag.d.ts.map +1 -1
- package/components/widgets/index.d.ts +2 -1
- package/components/widgets/index.d.ts.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.esm.js +674 -590
- package/index.esm.js.map +1 -1
- package/index.js +676 -589
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/stats.html +1 -1
- package/styles.css +9243 -4149
- package/styles.css.map +1 -1
- package/components/widgets/Informer.d.ts +0 -8
- package/components/widgets/Informer.d.ts.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@mixin dnd-ghost-shadow() { box-shadow: 0 6px 18px 0 rgba(29, 30, 38, 0.05), 0 3px 12px 0 rgba(29, 30, 38, 0.05); }
|
|
2
2
|
|
|
3
3
|
@mixin focus-visible-effect($offset: 2px, $radius: 2px) {
|
|
4
|
-
outline: 2px solid var(--uui-
|
|
4
|
+
outline: 2px solid var(--uui-outline-focus);
|
|
5
5
|
outline-offset: $offset;
|
|
6
6
|
border-radius: $radius;
|
|
7
7
|
}
|
|
@@ -3,12 +3,15 @@
|
|
|
3
3
|
text-overflow: ellipsis;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
:
|
|
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 {
|
|
8
11
|
margin: 0;
|
|
9
12
|
}
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
.hero-header {
|
|
12
15
|
font-family: var(--font-promo);
|
|
13
16
|
font-weight: 500;
|
|
14
17
|
margin: 30px 0;
|
|
@@ -16,12 +19,7 @@
|
|
|
16
19
|
line-height: 72px;
|
|
17
20
|
}
|
|
18
21
|
|
|
19
|
-
|
|
20
|
-
color: var(--uui-text-brand);
|
|
21
|
-
text-align: center;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
:global(.promo-header), h1, h2, h3 {
|
|
22
|
+
.promo-header, h1, h2, h3 {
|
|
25
23
|
font-family: var(--font-primary);
|
|
26
24
|
font-weight: 700;
|
|
27
25
|
}
|
|
@@ -45,7 +43,7 @@
|
|
|
45
43
|
font-size: 30px;
|
|
46
44
|
letter-spacing: 0.1px;
|
|
47
45
|
|
|
48
|
-
|
|
46
|
+
.promo-header {
|
|
49
47
|
letter-spacing: 2px;
|
|
50
48
|
}
|
|
51
49
|
}
|
|
@@ -66,9 +64,7 @@
|
|
|
66
64
|
h6 {
|
|
67
65
|
font-size: 14px;
|
|
68
66
|
}
|
|
69
|
-
}
|
|
70
67
|
|
|
71
|
-
@mixin typography-inline() {
|
|
72
68
|
b, strong {
|
|
73
69
|
font-family: var(--uui-font);
|
|
74
70
|
font-weight: 600;
|
|
@@ -90,7 +86,7 @@
|
|
|
90
86
|
color: var(--uui-link-visited);
|
|
91
87
|
|
|
92
88
|
&:hover {
|
|
93
|
-
color:
|
|
89
|
+
color: var(--uui-link-visited-hover);
|
|
94
90
|
}
|
|
95
91
|
}
|
|
96
92
|
|
|
@@ -102,15 +98,13 @@
|
|
|
102
98
|
code {
|
|
103
99
|
padding: 0.125em 0.25em;
|
|
104
100
|
color: var(--uui-text-primary);
|
|
105
|
-
background-color: var(--uui-
|
|
101
|
+
background-color: var(--uui-neutral-30);
|
|
106
102
|
font-family: var(--font-mono);
|
|
107
103
|
font-weight: 400;
|
|
108
104
|
white-space: pre-wrap;
|
|
109
105
|
word-wrap: normal;
|
|
110
106
|
}
|
|
111
|
-
}
|
|
112
107
|
|
|
113
|
-
@mixin typography-block() {
|
|
114
108
|
ol, ul {
|
|
115
109
|
padding: 0;
|
|
116
110
|
}
|
|
@@ -122,8 +116,6 @@
|
|
|
122
116
|
|
|
123
117
|
pre {
|
|
124
118
|
padding: 1.25em;
|
|
125
|
-
color: var(--uui-text-contrast);
|
|
126
|
-
background-color: var(--uui-secondary-70);
|
|
127
119
|
font-family: monospace;
|
|
128
120
|
white-space: pre-wrap;
|
|
129
121
|
word-wrap: normal;
|
|
@@ -147,24 +139,28 @@
|
|
|
147
139
|
margin: 0.5em 0;
|
|
148
140
|
line-height: 1.5;
|
|
149
141
|
}
|
|
142
|
+
|
|
143
|
+
.uui-critical {
|
|
144
|
+
color: var(--uui-critical-70);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.uui-success {
|
|
148
|
+
color: var(--uui-success-70);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.uui-warning {
|
|
152
|
+
color: var(--uui-warning-70);
|
|
153
|
+
}
|
|
150
154
|
}
|
|
151
155
|
|
|
152
|
-
|
|
156
|
+
.uui-typography-size-12 {
|
|
153
157
|
font-size: 12px;
|
|
154
158
|
}
|
|
155
159
|
|
|
156
|
-
|
|
160
|
+
.uui-typography-size-14 {
|
|
157
161
|
font-size: 14px;
|
|
158
162
|
}
|
|
159
163
|
|
|
160
|
-
|
|
164
|
+
.uui-typography-size-16 {
|
|
161
165
|
font-size: 16px;
|
|
162
166
|
}
|
|
163
|
-
|
|
164
|
-
@mixin typography-uui() {
|
|
165
|
-
@include typography-header();
|
|
166
|
-
@include typography-block();
|
|
167
|
-
@include typography-inline();
|
|
168
|
-
font-family: var(--uui-font);
|
|
169
|
-
color: var(--uui-text-primary);
|
|
170
|
-
}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { ButtonProps as uuiButtonProps } from '@epam/uui-components';
|
|
2
3
|
import { ControlSize, ButtonFill } from '../types';
|
|
3
|
-
export type ButtonColor = 'accent' | 'primary' | 'secondary' | '
|
|
4
|
+
export type ButtonColor = 'accent' | 'primary' | 'critical' | 'secondary' | 'neutral';
|
|
4
5
|
export declare const allButtonColors: ButtonColor[];
|
|
5
6
|
export interface ButtonMods {
|
|
6
7
|
size?: ControlSize | '18';
|
|
7
8
|
fill?: ButtonFill;
|
|
8
9
|
color?: ButtonColor;
|
|
9
10
|
}
|
|
10
|
-
export type ButtonProps
|
|
11
|
+
export type ButtonProps = ButtonMods & Omit<uuiButtonProps, 'count' | 'indicator'>;
|
|
11
12
|
export declare function applyButtonMods(mods: ButtonProps): string[];
|
|
12
|
-
export declare const Button: (props: uuiButtonProps & ButtonMods &
|
|
13
|
+
export declare const Button: (props: Omit<uuiButtonProps, "count" | "indicator"> & ButtonMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
13
14
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../components/buttons/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,WAAW,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1F,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../components/buttons/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,WAAW,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1F,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAKnD,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AACtF,eAAO,MAAM,eAAe,EAAE,WAAW,EAExC,CAAC;AAIF,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,KAAK,CAAC,EAAE,WAAW,CAAC;CACvB;AAED,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,WAAW,CAAC,CAAC;AAEnF,wBAAgB,eAAe,CAAC,IAAI,EAAE,WAAW,YAQhD;AAED,eAAO,MAAM,MAAM,oKAQlB,CAAC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { ButtonProps } from '@epam/uui-components';
|
|
2
3
|
export interface TabButtonMods {
|
|
3
4
|
size?: '36' | '48' | '60';
|
|
4
5
|
withNotify?: boolean;
|
|
5
6
|
}
|
|
6
7
|
export type TabButtonProps = TabButtonMods & ButtonProps;
|
|
7
|
-
export declare const TabButton: (props: ButtonProps & TabButtonMods &
|
|
8
|
+
export declare const TabButton: (props: ButtonProps & TabButtonMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
8
9
|
//# sourceMappingURL=TabButton.d.ts.map
|
|
@@ -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;
|
|
1
|
+
{"version":3,"file":"TabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/TabButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAO3D,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,uIAYnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilterPickerBody.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterPickerBody.tsx"],"names":[],"mappings":";AACA,OAAO,EAAqC,iBAAiB,EAAY,MAAM,gBAAgB,CAAC;AAChG,OAAO,EAAuB,oBAAoB,EAAkB,MAAM,sBAAsB,CAAC;AAKjG,KAAK,qBAAqB,CAAC,KAAK,EAAE,GAAG,IAAI,iBAAiB,GAAG,oBAAoB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;AAE9F,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,qBAAqB,CAAC,KAAK,EAAE,GAAG,CAAC,
|
|
1
|
+
{"version":3,"file":"FilterPickerBody.d.ts","sourceRoot":"","sources":["../../../components/filters/FilterPickerBody.tsx"],"names":[],"mappings":";AACA,OAAO,EAAqC,iBAAiB,EAAY,MAAM,gBAAgB,CAAC;AAChG,OAAO,EAAuB,oBAAoB,EAAkB,MAAM,sBAAsB,CAAC;AAKjG,KAAK,qBAAqB,CAAC,KAAK,EAAE,GAAG,IAAI,iBAAiB,GAAG,oBAAoB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;AAE9F,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,qBAAqB,CAAC,KAAK,EAAE,GAAG,CAAC,eA+DpF"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface CheckboxMods {
|
|
3
3
|
size?: '12' | '18';
|
|
4
4
|
mode?: 'form' | 'cell';
|
|
5
5
|
}
|
|
6
|
-
export type CheckboxProps = CheckboxMods &
|
|
7
|
-
export declare function applyCheckboxMods(mods:
|
|
8
|
-
export declare const Checkbox: (props:
|
|
6
|
+
export type CheckboxProps = CheckboxMods & uuiComponents.CheckboxProps;
|
|
7
|
+
export declare function applyCheckboxMods(mods: CheckboxMods): string[];
|
|
8
|
+
export declare const Checkbox: (props: uuiComponents.CheckboxProps & CheckboxMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
9
9
|
//# sourceMappingURL=Checkbox.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../components/inputs/Checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../components/inputs/Checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAOtD,MAAM,WAAW,YAAY;IACzB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1B;AAED,MAAM,MAAM,aAAa,GAAG,YAAY,GAAG,aAAa,CAAC,aAAa,CAAC;AAEvE,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,YAAY,YAOnD;AAOD,eAAO,MAAM,QAAQ,oLAAwH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { SliderBaseProps } from '@epam/uui-components';
|
|
2
|
+
export interface SliderMods {
|
|
3
|
+
}
|
|
4
|
+
export declare function applySliderMods(): string[];
|
|
5
|
+
export declare const Slider: (props: SliderBaseProps<number> & SliderMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
|
+
//# sourceMappingURL=Slider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../../../components/inputs/Slider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAI5E,MAAM,WAAW,UAAU;CAAG;AAE9B,wBAAgB,eAAe,aAE9B;AAED,eAAO,MAAM,MAAM,8KAA4E,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface SwitchMods {
|
|
3
3
|
size?: '12' | '18' | '24';
|
|
4
4
|
}
|
|
5
|
-
export
|
|
6
|
-
export declare
|
|
5
|
+
export type SwitchProps = uuiComponents.SwitchProps & SwitchMods;
|
|
6
|
+
export declare function applySwitchMods(mods: SwitchProps): string[];
|
|
7
|
+
export declare const Switch: (props: uuiComponents.SwitchProps & SwitchMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
7
8
|
//# sourceMappingURL=Switch.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../components/inputs/Switch.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../components/inputs/Switch.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAGtD,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7B;AAED,MAAM,MAAM,WAAW,GAAG,aAAa,CAAC,WAAW,GAAG,UAAU,CAAC;AAEjE,wBAAgB,eAAe,CAAC,IAAI,EAAE,WAAW,YAIhD;AAED,eAAO,MAAM,MAAM,gLAAyF,CAAC"}
|
|
@@ -8,6 +8,8 @@ export interface TextInputMods extends IHasEditMode {
|
|
|
8
8
|
export declare function applyTextInputMods(mods: TextInputMods): string[];
|
|
9
9
|
export interface TextInputProps extends CoreTextInputProps, TextInputMods {
|
|
10
10
|
}
|
|
11
|
+
export interface SearchInputProps extends TextInputProps, IEditableDebouncerOptions {
|
|
12
|
+
}
|
|
11
13
|
export declare const TextInput: (props: CoreTextInputProps & TextInputMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
12
|
-
export declare const SearchInput: React.ForwardRefExoticComponent<Pick<
|
|
14
|
+
export declare const SearchInput: React.ForwardRefExoticComponent<Pick<SearchInputProps, "name" | "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "tabIndex" | "isRequired" | "onClick" | "id" | "placeholder" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "cx" | "icon" | "iconPosition" | "onIconClick" | "dropdownIcon" | "rawProps" | "onFocus" | "onBlur" | "getValueChangeAnalyticsEvent" | "onCancel" | "onAccept" | "onKeyDown" | "autoFocus" | "type" | "autoComplete" | "maxLength" | "inputMode" | "inputCx" | "mode" | "size" | "disableDebounce" | "debounceDelay" | "acceptIcon" | "cancelIcon" | "renderInput"> & React.RefAttributes<HTMLInputElement>>;
|
|
13
15
|
//# sourceMappingURL=TextInput.d.ts.map
|
|
@@ -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;
|
|
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;AAC5E,MAAM,WAAW,gBAAiB,SAAQ,cAAc,EAAE,yBAAyB;CAAG;AAEtF,eAAO,MAAM,SAAS,8IAInB,CAAC;AAEJ,eAAO,MAAM,WAAW,utBA2BtB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface AccordionMods {
|
|
3
3
|
mode?: 'block' | 'inline';
|
|
4
4
|
padding?: '0' | '6' | '12' | '18';
|
|
5
5
|
}
|
|
6
|
-
export
|
|
6
|
+
export type AccordionProps = AccordionMods & uuiComponents.AccordionProps;
|
|
7
|
+
export declare const Accordion: (props: (uuiComponents.AccordionProps & AccordionMods) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
7
8
|
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../components/layout/Accordion.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../components/layout/Accordion.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAItD,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,aAAa,CAAC,cAAc,CAAC;AAU1E,eAAO,MAAM,SAAS,wLAEnB,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import * as uuiCore from '@epam/uui-core';
|
|
1
2
|
export type FlexCellMods = {};
|
|
2
|
-
export
|
|
3
|
+
export type FlexCellProps = uuiCore.FlexCellProps & FlexCellMods;
|
|
4
|
+
export declare const FlexCell: (props: uuiCore.IHasCX & uuiCore.IClickable & uuiCore.IHasRawProps<import("react").HTMLAttributes<HTMLDivElement>> & import("react").Attributes & uuiCore.IHasChildren & {
|
|
3
5
|
width?: number | "auto" | "100%";
|
|
4
6
|
minWidth?: number;
|
|
5
7
|
grow?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlexCell.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexCell.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FlexCell.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexCell.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAI1C,MAAM,MAAM,YAAY,GAAG,EAAE,CAAC;AAC9B,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,aAAa,GAAG,YAAY,CAAC;AAEjE,eAAO,MAAM,QAAQ;;;;;;;;iIAAmF,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { VPanelProps } from '@epam/uui-core';
|
|
1
2
|
export interface PanelMods {
|
|
2
3
|
shadow?: boolean;
|
|
3
4
|
margin?: '24';
|
|
4
5
|
background?: 'surface';
|
|
5
6
|
}
|
|
7
|
+
export type PanelProps = VPanelProps & PanelMods;
|
|
6
8
|
export declare const Panel: (props: import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<import("react").HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & import("@epam/uui-core").IAnalyticableClick & {
|
|
7
9
|
style?: import("react").CSSProperties;
|
|
8
10
|
} & PanelMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Panel.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/Panel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Panel.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/Panel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAIvD,MAAM,WAAW,SAAS;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,UAAU,CAAC,EAAE,SAAS,CAAC;CAC1B;AAED,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AAEjD,eAAO,MAAM,KAAK;;6IAMhB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as types from '../types';
|
|
2
|
-
import
|
|
2
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
3
3
|
export interface LabeledInputMods extends types.SizeMod {
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export type LabeledInputProps = uuiComponents.LabeledInputProps & LabeledInputMods;
|
|
6
|
+
export declare const LabeledInput: (props: uuiComponents.LabeledInputProps & LabeledInputMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
7
|
//# sourceMappingURL=LabeledInput.d.ts.map
|
|
@@ -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,
|
|
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,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,OAAO;CAAG;AAE1D,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;AAMnF,eAAO,MAAM,YAAY,4LAGtB,CAAC"}
|
|
@@ -1,3 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { IHasCX, IEditable, VirtualListState, IHasRawProps } from '@epam/uui-core';
|
|
3
|
+
import { PositionValues, ScrollbarsApi } from '@epam/uui-components';
|
|
4
|
+
import { HTMLAttributes } from 'react';
|
|
5
|
+
export interface VirtualListRenderRowsParams<ListContainer extends HTMLElement = any> {
|
|
6
|
+
listContainerRef: React.MutableRefObject<ListContainer>;
|
|
7
|
+
estimatedHeight: number;
|
|
8
|
+
offsetY: number;
|
|
9
|
+
scrollShadows: {
|
|
10
|
+
verticalTop: boolean;
|
|
11
|
+
verticalBottom: boolean;
|
|
12
|
+
horizontalLeft: boolean;
|
|
13
|
+
horizontalRight: boolean;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
type VirtualListRenderRows<List extends HTMLElement = any> = {
|
|
17
|
+
rows?: React.ReactNode[];
|
|
18
|
+
renderRows: (config: VirtualListRenderRowsParams<List>) => React.ReactNode;
|
|
19
|
+
} | {
|
|
20
|
+
rows: React.ReactNode[];
|
|
21
|
+
renderRows?: (config: VirtualListRenderRowsParams<List>) => React.ReactNode;
|
|
22
|
+
};
|
|
23
|
+
interface BaseVirtualListProps extends IHasCX, IEditable<VirtualListState>, IHasRawProps<HTMLAttributes<HTMLDivElement>> {
|
|
24
|
+
rowsCount?: number;
|
|
25
|
+
role?: React.HTMLAttributes<HTMLDivElement>['role'];
|
|
26
|
+
onScroll?(value: PositionValues): void;
|
|
27
|
+
rowsSelector?: string;
|
|
28
|
+
isLoading?: boolean;
|
|
29
|
+
}
|
|
30
|
+
export type VirtualListProps<List extends HTMLElement = any> = BaseVirtualListProps & VirtualListRenderRows<List>;
|
|
31
|
+
export declare const VirtualList: React.ForwardRefExoticComponent<VirtualListProps<any> & React.RefAttributes<ScrollbarsApi>>;
|
|
32
|
+
export {};
|
|
3
33
|
//# sourceMappingURL=VirtualList.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VirtualList.d.ts","sourceRoot":"","sources":["../../../components/layout/VirtualList.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"VirtualList.d.ts","sourceRoot":"","sources":["../../../components/layout/VirtualList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EACH,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,YAAY,EACpD,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAIrE,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,2BAA2B,CAAC,aAAa,SAAS,WAAW,GAAG,GAAG;IAChF,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;IACxD,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE;QACX,WAAW,EAAE,OAAO,CAAC;QACrB,cAAc,EAAE,OAAO,CAAC;QACxB,cAAc,EAAE,OAAO,CAAC;QACxB,eAAe,EAAE,OAAO,CAAC;KAC5B,CAAC;CACL;AACD,KAAK,qBAAqB,CAAC,IAAI,SAAS,WAAW,GAAG,GAAG,IAAI;IACzD,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IACzB,UAAU,EAAE,CAAC,MAAM,EAAE,2BAA2B,CAAC,IAAI,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;CAC9E,GAAG;IACA,IAAI,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IACxB,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,2BAA2B,CAAC,IAAI,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;CAC/E,CAAC;AAEF,UAAU,oBACN,SAAQ,MAAM,EACd,SAAS,CAAC,gBAAgB,CAAC,EAC3B,YAAY,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC;IACpD,QAAQ,CAAC,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;IACvC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,MAAM,MAAM,gBAAgB,CAAC,IAAI,SAAS,WAAW,GAAG,GAAG,IAAI,oBAAoB,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAC;AAElH,eAAO,MAAM,WAAW,6FA6CtB,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface MainMenuMods {
|
|
3
3
|
}
|
|
4
|
-
export
|
|
4
|
+
export type MainMenuProps = uuiComponents.MainMenuProps & MainMenuMods;
|
|
5
|
+
export declare const MainMenu: (props: uuiComponents.MainMenuProps & MainMenuMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
5
6
|
//# sourceMappingURL=MainMenu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MainMenu.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenu.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"MainMenu.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenu.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAItD,MAAM,WAAW,YAAY;CAAG;AAEhC,MAAM,MAAM,aAAa,GAAG,aAAa,CAAC,aAAa,GAAG,YAAY,CAAC;AASvE,eAAO,MAAM,QAAQ,oLAGlB,CAAC"}
|
|
@@ -4,5 +4,5 @@ import { ButtonProps } from '@epam/uui-components';
|
|
|
4
4
|
export interface MainMenuIconProps extends ButtonProps, IAdaptiveItem {
|
|
5
5
|
icon: Icon;
|
|
6
6
|
}
|
|
7
|
-
export declare const MainMenuIcon: React.ForwardRefExoticComponent<Pick<MainMenuIconProps, "isDisabled" | "tabIndex" | "onClick" | "link" | "
|
|
7
|
+
export declare const MainMenuIcon: React.ForwardRefExoticComponent<Pick<MainMenuIconProps, "isDisabled" | "tabIndex" | "onClick" | "link" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "dropdownIcon" | "dropdownIconPosition" | "count" | "rawProps" | "forwardedRef" | "clearIcon" | "captionCX" | "countIndicator" | "estimatedWidth" | "priority" | "showInBurgerMenu" | "collapseToMore" | "collapsedContainer"> & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
8
8
|
//# sourceMappingURL=MainMenuIcon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MainMenuIcon.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenuIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,IAAI,EAAE,aAAa,EAAM,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAInD,MAAM,WAAW,iBAAkB,SAAQ,WAAW,EAAE,aAAa;IACjE,IAAI,EAAE,IAAI,CAAC;CACd;AAED,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"MainMenuIcon.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenuIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,IAAI,EAAE,aAAa,EAAM,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAInD,MAAM,WAAW,iBAAkB,SAAQ,WAAW,EAAE,aAAa;IACjE,IAAI,EAAE,IAAI,CAAC;CACd;AAED,eAAO,MAAM,YAAY,ylBAEvB,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface DropdownContainerMods {
|
|
3
3
|
vPadding?: '6' | '12' | '18' | '24' | '30' | '48';
|
|
4
4
|
padding?: '6' | '12' | '18' | '24' | '30';
|
|
5
5
|
}
|
|
6
|
-
export interface DropdownContainerProps extends
|
|
6
|
+
export interface DropdownContainerProps extends uuiComponents.DropdownContainerProps, DropdownContainerMods {
|
|
7
7
|
}
|
|
8
|
-
export declare const DropdownContainer: (props:
|
|
8
|
+
export declare const DropdownContainer: (props: uuiComponents.DropdownContainerProps & DropdownContainerMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
9
9
|
//# sourceMappingURL=DropdownContainer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownContainer.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownContainer.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"DropdownContainer.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownContainer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAGtD,MAAM,WAAW,qBAAqB;IAClC,QAAQ,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAClD,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7C;AAED,MAAM,WAAW,sBAAuB,SAAQ,aAAa,CAAC,sBAAsB,EAAE,qBAAqB;CAAG;AAU9G,eAAO,MAAM,iBAAiB,sMAAqI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAgC,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5E,OAAO,EACC,gBAAgB,EAAgC,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAChI,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,YAAY,EAAE,gBAAgB,EAC5F,MAAM,gBAAgB,CAAC;AASxB,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;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;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;AAsCD,UAAU,iBAAkB,SAAQ,iBAAiB,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC;IACvJ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;AAED,eAAO,MAAM,gBAAgB,6HAO5B,CAAC;AAEF,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAgC,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5E,OAAO,EACC,gBAAgB,EAAgC,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAChI,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,YAAY,EAAE,gBAAgB,EAC5F,MAAM,gBAAgB,CAAC;AASxB,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;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;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;AAsCD,UAAU,iBAAkB,SAAQ,iBAAiB,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,gBAAgB,CAAC,cAAc,CAAC;IACvJ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;AAED,eAAO,MAAM,gBAAgB,6HAO5B,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,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { DataSourceState } from '@epam/uui-core';
|
|
3
|
-
import { PickerBodyBase, PickerBodyBaseProps
|
|
3
|
+
import { PickerBodyBase, PickerBodyBaseProps } from '@epam/uui-components';
|
|
4
4
|
import { ControlSize } from '../types';
|
|
5
5
|
export interface DataPickerBodyProps extends PickerBodyBaseProps {
|
|
6
6
|
maxHeight?: number;
|
|
@@ -12,7 +12,6 @@ export declare class DataPickerBody extends PickerBodyBase<DataPickerBodyProps>
|
|
|
12
12
|
lens: import("@epam/uui-core").ILens<DataSourceState<Record<string, any>, any>>;
|
|
13
13
|
searchLens: import("@epam/uui-core").ILens<string>;
|
|
14
14
|
renderNotFound(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
15
|
-
renderRowsContainer: ({ listContainerRef, estimatedHeight, offsetY }: VirtualListRenderRowsParams) => JSX.Element;
|
|
16
15
|
render(): JSX.Element;
|
|
17
16
|
}
|
|
18
17
|
//# sourceMappingURL=DataPickerBody.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataPickerBody.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerBody.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACG,eAAe,EACxB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAY,cAAc,EAAE,mBAAmB,EAAE,
|
|
1
|
+
{"version":3,"file":"DataPickerBody.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerBody.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACG,eAAe,EACxB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAY,cAAc,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAKrF,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,MAAM,WAAW,mBAAoB,SAAQ,mBAAmB;IAC5D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC;IAChC,UAAU,CAAC,EAAE,WAAW,CAAC;IACzB,aAAa,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;CACtC;AAED,qBAAa,cAAe,SAAQ,cAAc,CAAC,mBAAmB,CAAC;IACnE,IAAI,4EAAmD;IACvD,UAAU,yCAA4B;IACtC,cAAc;IAYd,MAAM;CAiCT"}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { PickerInputBaseProps } from '@epam/uui-components';
|
|
3
3
|
import { IHasEditMode, SizeMod } from '../types';
|
|
4
4
|
export type PickerInputProps = SizeMod & IHasEditMode & {};
|
|
5
|
-
type CompletePickerInputProps<TItem, TId> = PickerInputProps & PickerInputBaseProps<TItem, TId>;
|
|
5
|
+
export type CompletePickerInputProps<TItem, TId> = PickerInputProps & PickerInputBaseProps<TItem, TId>;
|
|
6
6
|
export declare function PickerInput<TItem, TId>({ highlightSearchMatches, ...props }: CompletePickerInputProps<TItem, TId>): JSX.Element;
|
|
7
|
-
export {};
|
|
8
7
|
//# sourceMappingURL=PickerInput.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerInput.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerInput.tsx"],"names":[],"mappings":";AACA,OAAO,EAAuB,oBAAoB,EAAsC,MAAM,sBAAsB,CAAC;AAErH,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAe3D,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,YAAY,GAAG,EAAE,CAAC;AAC3D,
|
|
1
|
+
{"version":3,"file":"PickerInput.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerInput.tsx"],"names":[],"mappings":";AACA,OAAO,EAAuB,oBAAoB,EAAsC,MAAM,sBAAsB,CAAC;AAErH,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAe3D,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,YAAY,GAAG,EAAE,CAAC;AAC3D,MAAM,MAAM,wBAAwB,CAAC,KAAK,EAAE,GAAG,IAAI,gBAAgB,GAAG,oBAAoB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;AAEvG,wBAAgB,WAAW,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,sBAA6B,EAAE,GAAG,KAAK,EAAE,EAAE,wBAAwB,CAAC,KAAK,EAAE,GAAG,CAAC,eAgKxH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColumnHeaderDropdown.d.ts","sourceRoot":"","sources":["../../../../components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ColumnHeaderDropdown.d.ts","sourceRoot":"","sources":["../../../../components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAwB,MAAM,gBAAgB,CAAC;AAG3F,OAAO,EAAgB,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEjE,KAAK,yBAAyB,GAAG,iBAAiB,GAAG;IACjD,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,KAAK,CAAC,SAAS,CAAC;IAC3D,YAAY,CAAC,EAAE,CAAC,aAAa,EAAE,iBAAiB,KAAK,KAAK,CAAC,SAAS,CAAC;IACrE,YAAY,CAAC,EAAE,EAAE,OAAO,GAAG,IAAI,CAAC;IAChC,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AA+BF,eAAO,MAAM,oBAAoB,uDAAuC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { VirtualListRenderRowsParams } from '@epam/uui-components';
|
|
3
2
|
import { DataRowProps } from '@epam/uui-core';
|
|
3
|
+
import { VirtualListRenderRowsParams } from '../../layout';
|
|
4
4
|
export interface DataRowsContainerProps<TItem, TId, List extends HTMLDivElement = any> extends VirtualListRenderRowsParams<List> {
|
|
5
5
|
rows: DataRowProps<TItem, TId>[];
|
|
6
6
|
renderRow: (row: DataRowProps<TItem, TId>) => React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataRowsContainer.d.ts","sourceRoot":"","sources":["../../../../components/tables/DataRowsContainer/DataRowsContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"DataRowsContainer.d.ts","sourceRoot":"","sources":["../../../../components/tables/DataRowsContainer/DataRowsContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,2BAA2B,EAAE,MAAM,cAAc,CAAC;AAI3D,MAAM,WAAW,sBAAsB,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,SAAS,cAAc,GAAG,GAAG,CAAE,SAAQ,2BAA2B,CAAC,IAAI,CAAC;IAC5H,IAAI,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;IACjC,SAAS,EAAE,CAAC,GAAG,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IAC9D,SAAS,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACtD;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,SAAS,cAAc,GAAG,GAAG,EAAE,EAC7E,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,GACzE,EAAE,sBAAsB,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,CAAC,eAY1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,cAAc,EAA6C,MAAM,sBAAsB,CAAC;AAEjG,OAAO,EACY,YAAY,EAAqD,SAAS,EAAE,cAAc,EAAE,6BAA6B,EACxI,mBAAmB,EAAE,eAAe,EAAM,kBAAkB,EAAE,iBAAiB,EAAE,yBAAyB,EAC7G,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EAAE,aAAa,EAAoB,MAAM,SAAS,CAAC;AAC1D,OAAO,EAA6B,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAMxG,OAAO,kBAAkB,CAAC;AAG1B,MAAM,WAAW,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,GAAG,GAAG,CAAE,SAAQ,SAAS,CAAC,cAAc,CAAC,EAAE,mBAAmB,EAAE,6BAA6B;IAC5I,OAAO,IAAI,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;IACtC,OAAO,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;IACvC,SAAS,CAAC,CAAC,KAAK,EAAE,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC;IAClE,oBAAoB,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC;IACzC,QAAQ,CAAC,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;IACvC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,OAAO,CAAC,EAAE,kBAAkB,CAAC,GAAG,CAAC,EAAE,CAAC;IACpC,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,aAAa,EAAE,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,KAAK,IAAI,CAAC;IAC7I,+BAA+B,CAAC,EAAE,CAAC,KAAK,EAAE,8BAA8B,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;CACrH;AAED,wBAAgB,SAAS,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,iBAAiB,CAAC,cAAc,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,aAAa,CAAC,eAqH/G"}
|
package/components/types.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export type RowSize = null | '24' | '30' | '36' | '42' | '48';
|
|
|
8
8
|
export declare const allRowSizes: RowSize[];
|
|
9
9
|
export type SemanticColor = 'info' | 'success' | 'warning' | 'error';
|
|
10
10
|
export declare const allSemanticColors: SemanticColor[];
|
|
11
|
-
export type EpamBadgeSemanticColor = 'info' | 'success' | 'warning' | '
|
|
11
|
+
export type EpamBadgeSemanticColor = 'info' | 'success' | 'warning' | 'critical' | 'neutral';
|
|
12
12
|
export declare const allEpamBadgeSemanticColors: EpamBadgeSemanticColor[];
|
|
13
13
|
export type TextSize = 'none' | '18' | '24' | '30' | '36' | '48';
|
|
14
14
|
export declare const allTextSizes: TextSize[];
|
|
@@ -24,7 +24,14 @@ export interface RowSizeMod {
|
|
|
24
24
|
export interface SizeMod {
|
|
25
25
|
size?: ControlSize;
|
|
26
26
|
}
|
|
27
|
+
/** Component can adjust visuals for different contexts: forms, tables cells, on in WYSIWYG UX */
|
|
27
28
|
export interface IHasEditMode {
|
|
29
|
+
/**
|
|
30
|
+
* Visual mode for component:
|
|
31
|
+
* - form: default visuals, to use in forms.
|
|
32
|
+
* - cell: adjust to embed as table cell editor: no borders, no focus (it is applied by DataCell)
|
|
33
|
+
* - inline: adjust for WYSIWYG UX. Backgrounds removed. Borders appear only on hover.
|
|
34
|
+
*/
|
|
28
35
|
mode?: 'form' | 'cell' | 'inline';
|
|
29
36
|
}
|
|
30
37
|
export declare enum EditMode {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../components/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAChE,eAAO,MAAM,cAAc,EAAE,UAAU,EAEtC,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC;AACnC,eAAO,MAAM,aAAa,EAAE,SAAS,EAAmB,CAAC;AAEzD,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACpE,eAAO,MAAM,QAAQ,EAAE,WAAW,EAEjC,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,eAAO,MAAM,WAAW,EAAE,OAAO,EAEhC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AACrE,eAAO,MAAM,iBAAiB,EAAE,aAAa,EAE5C,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../components/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAChE,eAAO,MAAM,cAAc,EAAE,UAAU,EAEtC,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC;AACnC,eAAO,MAAM,aAAa,EAAE,SAAS,EAAmB,CAAC;AAEzD,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACpE,eAAO,MAAM,QAAQ,EAAE,WAAW,EAEjC,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,eAAO,MAAM,WAAW,EAAE,OAAO,EAEhC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AACrE,eAAO,MAAM,iBAAiB,EAAE,aAAa,EAE5C,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;AAC7F,eAAO,MAAM,0BAA0B,EAAE,sBAAsB,EAE9D,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjE,eAAO,MAAM,YAAY,EAAE,QAAQ,EAElC,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAC;AAChF,eAAO,MAAM,aAAa,EAAE,SAAS,EAEpC,CAAC;AAEF,MAAM,WAAW,QAAQ;IAErB,sBAAsB;IACtB,KAAK,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,OAAO;IACpB,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,iGAAiG;AACjG,MAAM,WAAW,YAAY;IACzB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;CACrC;AAED,oBAAY,QAAQ;IAChB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,MAAM,WAAW;CACpB"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
2
2
|
export interface RichTextViewMods {
|
|
3
3
|
size?: '12' | '14' | '16';
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export type RichTextViewProps = uuiComponents.RichTextViewProps & RichTextViewMods;
|
|
6
|
+
export declare const RichTextView: (props: uuiComponents.RichTextViewProps & RichTextViewMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
7
|
//# sourceMappingURL=RichTextView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RichTextView.d.ts","sourceRoot":"","sources":["../../../components/typography/RichTextView.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RichTextView.d.ts","sourceRoot":"","sources":["../../../components/typography/RichTextView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAGtD,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7B;AAED,MAAM,MAAM,iBAAiB,GAAG,aAAa,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;AAEnF,eAAO,MAAM,YAAY,4LAGxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,EAAkB,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGlF,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,CAAC;AACzI,eAAO,MAAM,aAAa,EAAE,SAAS,EAA8G,CAAC;AAEpJ,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,SAAS,CAAC;CACrB;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,EAAkB,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGlF,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,CAAC;AACzI,eAAO,MAAM,aAAa,EAAE,SAAS,EAA8G,CAAC;AAEpJ,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,SAAS,CAAC;CACrB;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,QAAQ,CAAC;AAqBhD,eAAO,MAAM,IAAI,ocAA2D,CAAC"}
|