@epam/uui 5.4.0 → 5.4.1
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/typography.scss +1 -1
- package/components/buttons/Button.d.ts +6 -3
- package/components/buttons/Button.d.ts.map +1 -1
- package/components/buttons/IconButton.d.ts +6 -3
- package/components/buttons/IconButton.d.ts.map +1 -1
- package/components/buttons/LinkButton.d.ts +11 -2
- package/components/buttons/LinkButton.d.ts.map +1 -1
- package/components/buttons/TabButton.d.ts +4 -1
- package/components/buttons/TabButton.d.ts.map +1 -1
- package/components/buttons/VerticalTabButton.d.ts +1 -1
- package/components/buttons/VerticalTabButton.d.ts.map +1 -1
- package/components/datePickers/DatePicker.d.ts +3 -9
- package/components/datePickers/DatePicker.d.ts.map +1 -1
- package/components/datePickers/DatePickerHeader.d.ts +4 -0
- package/components/datePickers/DatePickerHeader.d.ts.map +1 -1
- package/components/datePickers/RangeDatePicker.d.ts +3 -7
- package/components/datePickers/RangeDatePicker.d.ts.map +1 -1
- package/components/inputs/MultiSwitch.d.ts +5 -2
- package/components/inputs/MultiSwitch.d.ts.map +1 -1
- package/components/inputs/RadioInput.d.ts +3 -0
- package/components/inputs/RadioInput.d.ts.map +1 -1
- package/components/inputs/Slider.d.ts +2 -0
- package/components/inputs/Slider.d.ts.map +1 -1
- package/components/inputs/Switch.d.ts +3 -0
- package/components/inputs/Switch.d.ts.map +1 -1
- package/components/inputs/TextArea.d.ts +1 -0
- package/components/inputs/TextArea.d.ts.map +1 -1
- package/components/inputs/TextInput.d.ts +4 -1
- package/components/inputs/TextInput.d.ts.map +1 -1
- package/components/inputs/TimePicker.d.ts +9 -6
- package/components/inputs/TimePicker.d.ts.map +1 -1
- package/components/layout/Accordion.d.ts +1 -0
- package/components/layout/Accordion.d.ts.map +1 -1
- package/components/layout/Blocker.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexRow.d.ts +4 -4
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/layout/FlexItems/Panel.d.ts +1 -1
- package/components/layout/FlexItems/Panel.d.ts.map +1 -1
- package/components/navigation/Anchor.d.ts +1 -1
- package/components/navigation/Anchor.d.ts.map +1 -1
- package/components/navigation/MainMenu/Burger/BurgerButton.d.ts +1 -1
- package/components/navigation/MainMenu/Burger/BurgerButton.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuButton.d.ts +1 -1
- package/components/navigation/MainMenu/MainMenuButton.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuIcon.d.ts +43 -3
- package/components/navigation/MainMenu/MainMenuIcon.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuSearch.d.ts +1 -1
- package/components/overlays/Alert.d.ts +5 -3
- package/components/overlays/Alert.d.ts.map +1 -1
- package/components/overlays/Dropdown.d.ts +1 -2
- package/components/overlays/Dropdown.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts +1 -1
- package/components/overlays/NotificationCard.d.ts +1 -2
- package/components/overlays/NotificationCard.d.ts.map +1 -1
- package/components/overlays/Tooltip.d.ts +4 -1
- package/components/overlays/Tooltip.d.ts.map +1 -1
- package/components/pickers/PickerInput.d.ts +2 -2
- package/components/pickers/PickerInput.d.ts.map +1 -1
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/types.d.ts +0 -24
- package/components/types.d.ts.map +1 -1
- package/components/typography/RichTextView.d.ts +3 -0
- package/components/typography/RichTextView.d.ts.map +1 -1
- package/components/typography/Text.d.ts +6 -5
- package/components/typography/Text.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +9 -5
- package/components/widgets/Badge.d.ts.map +1 -1
- package/components/widgets/CountIndicator.d.ts +3 -0
- package/components/widgets/CountIndicator.d.ts.map +1 -1
- package/components/widgets/StatusIndicator.d.ts +12 -3
- package/components/widgets/StatusIndicator.d.ts.map +1 -1
- package/components/widgets/Tag.d.ts +14 -5
- package/components/widgets/Tag.d.ts.map +1 -1
- package/index.esm.js +582 -644
- package/index.esm.js.map +1 -1
- package/index.js +581 -654
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/stats.html +1 -1
- package/styles.css +2584 -2547
- package/styles.css.map +1 -1
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
padding: 0.125em 0.25em;
|
|
100
100
|
color: var(--uui-text-primary);
|
|
101
101
|
background-color: var(--uui-neutral-30);
|
|
102
|
-
font-family: var(--uui-font-mono,
|
|
102
|
+
font-family: var(--uui-font-mono, monospace);
|
|
103
103
|
font-weight: 400;
|
|
104
104
|
white-space: pre-wrap;
|
|
105
105
|
word-wrap: normal;
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ButtonProps as uuiButtonProps } from '@epam/uui-components';
|
|
3
|
-
import { ControlSize
|
|
3
|
+
import { ControlSize } from '../types';
|
|
4
4
|
export type ButtonColor = 'accent' | 'primary' | 'critical' | 'secondary' | 'neutral';
|
|
5
|
-
export
|
|
5
|
+
export type ButtonFill = 'solid' | 'outline' | 'ghost' | 'none';
|
|
6
6
|
export interface ButtonMods {
|
|
7
7
|
size?: ControlSize | '18';
|
|
8
8
|
fill?: ButtonFill;
|
|
9
9
|
color?: ButtonColor;
|
|
10
10
|
}
|
|
11
|
+
export type ButtonCoreProps = uuiButtonProps & {
|
|
12
|
+
size?: ControlSize | '18';
|
|
13
|
+
};
|
|
11
14
|
export type ButtonProps = ButtonMods & Omit<uuiButtonProps, 'count' | 'indicator'>;
|
|
12
15
|
export declare function applyButtonMods(mods: ButtonProps): string[];
|
|
13
|
-
export declare const Button: (props:
|
|
16
|
+
export declare const Button: (props: (uuiButtonProps & ButtonMods) & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
14
17
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
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,
|
|
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,MAAM,UAAU,CAAC;AAMvC,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AACtF,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAEhE,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,eAAe,GAAG,cAAc,GAAG;IAC3C,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF,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,yIAQlB,CAAC"}
|
|
@@ -2,9 +2,12 @@ import { IconButtonBaseProps } from '@epam/uui-components';
|
|
|
2
2
|
export type IconColor = 'info' | 'success' | 'warning' | 'error' | 'secondary' | 'neutral';
|
|
3
3
|
export declare const allIconColors: IconColor[];
|
|
4
4
|
export interface IconButtonMods {
|
|
5
|
+
/**
|
|
6
|
+
* @default 'default'
|
|
7
|
+
*/
|
|
5
8
|
color?: IconColor;
|
|
6
9
|
}
|
|
7
|
-
export
|
|
8
|
-
}
|
|
9
|
-
export declare const IconButton: (props: IconButtonProps & IconButtonMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
10
|
+
export type IconButtonProps = IconButtonBaseProps & IconButtonMods;
|
|
11
|
+
export type IconButtonCoreProps = IconButtonBaseProps & {};
|
|
12
|
+
export declare const IconButton: (props: (IconButtonProps & IconButtonMods) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
10
13
|
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAA+B,MAAM,sBAAsB,CAAC;AAIxF,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;AAC3F,eAAO,MAAM,aAAa,EAAE,SAAS,EAEpC,CAAC;AAEF,MAAM,WAAW,cAAc;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAA+B,MAAM,sBAAsB,CAAC;AAIxF,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;AAC3F,eAAO,MAAM,aAAa,EAAE,SAAS,EAEpC,CAAC;AAEF,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,MAAM,MAAM,eAAe,GAAG,mBAAmB,GAAG,cAAc,CAAC;AAEnE,MAAM,MAAM,mBAAmB,GAAE,mBAAmB,GAAG,EAAE,CAAC;AAM1D,eAAO,MAAM,UAAU,4KAAgF,CAAC"}
|
|
@@ -3,9 +3,18 @@ import { ButtonProps } from '@epam/uui-components';
|
|
|
3
3
|
export type LinkButtonColorType = 'primary' | 'secondary' | 'contrast';
|
|
4
4
|
export declare const allLinkButtonColors: LinkButtonColorType[];
|
|
5
5
|
export interface LinkButtonMods {
|
|
6
|
+
/**
|
|
7
|
+
* @default '36'
|
|
8
|
+
*/
|
|
6
9
|
size?: types.ControlSize | '42';
|
|
10
|
+
/**
|
|
11
|
+
* @default 'primary'
|
|
12
|
+
*/
|
|
7
13
|
color?: LinkButtonColorType;
|
|
8
14
|
}
|
|
9
|
-
export type
|
|
10
|
-
|
|
15
|
+
export type LinkButtonCoreProps = ButtonProps & {
|
|
16
|
+
size?: types.ControlSize | '42';
|
|
17
|
+
};
|
|
18
|
+
export type LinkButtonProps = LinkButtonCoreProps & LinkButtonMods;
|
|
19
|
+
export declare const LinkButton: (props: (LinkButtonCoreProps & LinkButtonMods) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
11
20
|
//# sourceMappingURL=LinkButton.d.ts.map
|
|
@@ -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;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,
|
|
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;;OAEG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;IAChC;;OAEG;IACH,KAAK,CAAC,EAAE,mBAAmB,CAAC;CAC/B;AAED,MAAM,MAAM,mBAAmB,GAAG,WAAW,GAAG;IAC5C,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,MAAM,eAAe,GAAG,mBAAmB,GAAG,cAAc,CAAC;AAYnE,eAAO,MAAM,UAAU,gLAGpB,CAAC"}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ButtonProps } from '@epam/uui-components';
|
|
3
3
|
export interface TabButtonMods {
|
|
4
|
+
/**
|
|
5
|
+
* @default '48'
|
|
6
|
+
*/
|
|
4
7
|
size?: '36' | '48' | '60';
|
|
5
8
|
withNotify?: boolean;
|
|
6
9
|
}
|
|
7
10
|
export type TabButtonProps = TabButtonMods & ButtonProps;
|
|
8
|
-
export declare const TabButton: (props: ButtonProps & TabButtonMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
11
|
+
export declare const TabButton: (props: (ButtonProps & TabButtonMods) & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
9
12
|
//# sourceMappingURL=TabButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
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,
|
|
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;;OAEG;IACH,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,yIAYnB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonProps } from '@epam/uui-components';
|
|
2
2
|
import { TabButtonMods } from './TabButton';
|
|
3
3
|
export type VerticalTabButtonProps = ButtonProps & TabButtonMods;
|
|
4
|
-
export declare const VerticalTabButton: (props:
|
|
4
|
+
export declare const VerticalTabButton: (props: (VerticalTabButtonProps & {}) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
5
5
|
//# sourceMappingURL=VerticalTabButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerticalTabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/VerticalTabButton.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAa,aAAa,EAAE,MAAM,aAAa,CAAC;AAMvD,MAAM,MAAM,sBAAsB,GAAG,WAAW,GAAG,aAAa,CAAC;AAEjE,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"VerticalTabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/VerticalTabButton.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAa,aAAa,EAAE,MAAM,aAAa,CAAC;AAMvD,MAAM,MAAM,sBAAsB,GAAG,WAAW,GAAG,aAAa,CAAC;AAEjE,eAAO,MAAM,iBAAiB,uKAA0E,CAAC"}
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import { BaseDatePicker } from '@epam/uui-components';
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DatePickerCoreProps } from '@epam/uui-core';
|
|
4
3
|
import { SizeMod, IHasEditMode } from '../types';
|
|
5
4
|
export interface DatePickerProps extends DatePickerCoreProps, SizeMod, IHasEditMode {
|
|
6
5
|
}
|
|
7
|
-
export declare
|
|
8
|
-
renderInput: (props: IDropdownToggler & {
|
|
9
|
-
cx: any;
|
|
10
|
-
}) => JSX.Element;
|
|
11
|
-
renderBody(props: DropdownBodyProps): JSX.Element;
|
|
12
|
-
}
|
|
6
|
+
export declare const DatePicker: (props: DatePickerProps & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
13
7
|
//# sourceMappingURL=DatePicker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../components/datePickers/DatePicker.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../components/datePickers/DatePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAM,mBAAmB,EAAoE,MAAM,gBAAgB,CAAC;AAE3H,OAAO,EAAY,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAQ3D,MAAM,WAAW,eAAgB,SAAQ,mBAAmB,EAAE,OAAO,EAAE,YAAY;CAAG;AA4DtF,eAAO,MAAM,UAAU,2HAAgC,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Icon, IEditable, IHasCX } from '@epam/uui-core';
|
|
3
|
+
import dayjs, { Dayjs } from 'dayjs';
|
|
3
4
|
import { PickerBodyValue } from '@epam/uui-components';
|
|
4
5
|
export declare const uuiHeader: {
|
|
5
6
|
container: string;
|
|
@@ -12,5 +13,8 @@ export interface DatePickerHeaderProps extends IEditable<PickerBodyValue<string>
|
|
|
12
13
|
navIconLeft?: Icon;
|
|
13
14
|
navIconRight?: Icon;
|
|
14
15
|
}
|
|
16
|
+
export declare const getNextMonthFromCurrent: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
17
|
+
export declare const getNextYearFromCurrent: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
18
|
+
export declare const getNextListYearFromCurrent: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
15
19
|
export declare function DatePickerHeader(props: DatePickerHeaderProps): JSX.Element;
|
|
16
20
|
//# sourceMappingURL=DatePickerHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePickerHeader.d.ts","sourceRoot":"","sources":["../../../components/datePickers/DatePickerHeader.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"DatePickerHeader.d.ts","sourceRoot":"","sources":["../../../components/datePickers/DatePickerHeader.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAGzD,OAAO,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,EAAE,eAAe,EAAY,MAAM,sBAAsB,CAAC;AAQjE,eAAO,MAAM,SAAS;;;;;;CAMrB,CAAC;AAEF,MAAM,WAAW,qBAAsB,SAAQ,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM;IACrF,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,YAAY,CAAC,EAAE,IAAI,CAAC;CACvB;AAMD,eAAO,MAAM,uBAAuB,gBAAiB,KAAK,gBAEzD,CAAC;AAMF,eAAO,MAAM,sBAAsB,gBAAiB,KAAK,gBAExD,CAAC;AAMF,eAAO,MAAM,0BAA0B,gBAAiB,KAAK,gBAE5D,CAAC;AAEF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,eA8D5D"}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import { BaseRangeDatePicker } from '@epam/uui-components';
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BaseRangeDatePickerProps } from '@epam/uui-core';
|
|
4
3
|
import { SizeMod } from '../types';
|
|
5
4
|
export interface RangeDatePickerProps extends BaseRangeDatePickerProps, SizeMod {
|
|
6
5
|
getPlaceholder?(type: InputType): string;
|
|
7
6
|
}
|
|
8
7
|
export type InputType = 'from' | 'to';
|
|
9
|
-
export declare
|
|
10
|
-
renderBody(props: DropdownBodyProps): JSX.Element;
|
|
11
|
-
renderInput: (props: IDropdownToggler) => JSX.Element;
|
|
12
|
-
}
|
|
8
|
+
export declare const RangeDatePicker: (props: RangeDatePickerProps & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
13
9
|
//# sourceMappingURL=RangeDatePicker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RangeDatePicker.d.ts","sourceRoot":"","sources":["../../../components/datePickers/RangeDatePicker.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RangeDatePicker.d.ts","sourceRoot":"","sources":["../../../components/datePickers/RangeDatePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EACuB,wBAAwB,EACrD,MAAM,gBAAgB,CAAC;AAKxB,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAOnC,MAAM,WAAW,oBAAqB,SAAQ,wBAAwB,EAAE,OAAO;IAC3E,cAAc,CAAC,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAAC;CAC5C;AAED,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,IAAI,CAAC;AAwFtC,eAAO,MAAM,eAAe,gIAAqC,CAAC"}
|
|
@@ -3,12 +3,15 @@ import { IEditable, IHasRawProps } from '@epam/uui-core';
|
|
|
3
3
|
import { ButtonProps } from '@epam/uui-components';
|
|
4
4
|
import { ButtonMods } from '../buttons';
|
|
5
5
|
import { SizeMod } from '../types';
|
|
6
|
-
|
|
6
|
+
type MultiSwitchItem<TValue> = ButtonProps & ButtonMods & {
|
|
7
7
|
id: TValue;
|
|
8
|
-
}
|
|
8
|
+
};
|
|
9
9
|
export type UuiMultiSwitchColor = 'primary' | 'secondary';
|
|
10
10
|
export interface MultiSwitchProps<TValue> extends IEditable<TValue>, SizeMod, IHasRawProps<React.HTMLAttributes<HTMLDivElement>> {
|
|
11
11
|
items: MultiSwitchItem<TValue>[];
|
|
12
|
+
/**
|
|
13
|
+
* @default 'primary'
|
|
14
|
+
*/
|
|
12
15
|
color?: UuiMultiSwitchColor;
|
|
13
16
|
}
|
|
14
17
|
export declare const MultiSwitch: React.ForwardRefExoticComponent<MultiSwitchProps<unknown> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultiSwitch.d.ts","sourceRoot":"","sources":["../../../components/inputs/MultiSwitch.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAU,UAAU,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAEnC,
|
|
1
|
+
{"version":3,"file":"MultiSwitch.d.ts","sourceRoot":"","sources":["../../../components/inputs/MultiSwitch.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAU,UAAU,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAEnC,KAAK,eAAe,CAAC,MAAM,IAAI,WAAW,GAAG,UAAU,GAAG;IACtD,EAAE,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,WAAW,CAAC;AAE1D,MAAM,WAAW,gBAAgB,CAAC,MAAM,CAAE,SAAQ,SAAS,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IAC5H,KAAK,EAAE,eAAe,CAAC,MAAM,CAAC,EAAE,CAAC;IACjC;;OAEG;IACH,KAAK,CAAC,EAAE,mBAAmB,CAAC;CAC/B;AAsBD,eAAO,MAAM,WAAW,kGAAyC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/RadioInput.tsx"],"names":[],"mappings":"AACA,OAAO,EAA+B,eAAe,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAI1G,MAAM,WAAW,cAAc;IAC3B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACtB;AAED,MAAM,MAAM,eAAe,GAAG,cAAc,GAAG,kBAAkB,CAAC;AAMlE,eAAO,MAAM,UAAU,6KAAiH,CAAC"}
|
|
1
|
+
{"version":3,"file":"RadioInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/RadioInput.tsx"],"names":[],"mappings":"AACA,OAAO,EAA+B,eAAe,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAI1G,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACtB;AAED,MAAM,MAAM,eAAe,GAAG,cAAc,GAAG,kBAAkB,CAAC;AAMlE,eAAO,MAAM,UAAU,6KAAiH,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { SliderBaseProps } from '@epam/uui-components';
|
|
2
2
|
export interface SliderMods {
|
|
3
3
|
}
|
|
4
|
+
export interface SliderProps extends SliderBaseProps<number>, SliderMods {
|
|
5
|
+
}
|
|
4
6
|
export declare function applySliderMods(): string[];
|
|
5
7
|
export declare const Slider: (props: SliderBaseProps<number> & SliderMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
8
|
//# sourceMappingURL=Slider.d.ts.map
|
|
@@ -1 +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;
|
|
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;AAC9B,MAAM,WAAW,WAAY,SAAQ,eAAe,CAAC,MAAM,CAAC,EAAE,UAAU;CAAG;AAE3E,wBAAgB,eAAe,aAE9B;AAED,eAAO,MAAM,MAAM,8KAA4E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
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"}
|
|
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;;OAEG;IACH,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"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TextAreaProps as UuiTextAreaProps } from '@epam/uui-components';
|
|
2
2
|
import * as types from '../types';
|
|
3
3
|
export interface TextAreaMods extends types.IHasEditMode {
|
|
4
|
+
/** @default '36' */
|
|
4
5
|
size?: types.ControlSize;
|
|
5
6
|
}
|
|
6
7
|
export declare function applyTextAreaMods(mods: TextAreaMods): string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextArea.d.ts","sourceRoot":"","sources":["../../../components/inputs/TextArea.tsx"],"names":[],"mappings":"AACA,OAAO,EAA2B,aAAa,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAClG,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAMlC,MAAM,WAAW,YAAa,SAAQ,KAAK,CAAC,YAAY;IACpD,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CAC5B;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,YAAY,YAInD;AAED,MAAM,MAAM,aAAa,GAAG,gBAAgB,GAAG,YAAY,CAAC;AAE5D,eAAO,MAAM,QAAQ,yKAGlB,CAAC"}
|
|
1
|
+
{"version":3,"file":"TextArea.d.ts","sourceRoot":"","sources":["../../../components/inputs/TextArea.tsx"],"names":[],"mappings":"AACA,OAAO,EAA2B,aAAa,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAClG,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAMlC,MAAM,WAAW,YAAa,SAAQ,KAAK,CAAC,YAAY;IACpD,oBAAoB;IACpB,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CAC5B;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,YAAY,YAInD;AAED,MAAM,MAAM,aAAa,GAAG,gBAAgB,GAAG,YAAY,CAAC;AAE5D,eAAO,MAAM,QAAQ,yKAGlB,CAAC"}
|
|
@@ -3,6 +3,9 @@ import { IEditableDebouncerOptions } from '@epam/uui-core';
|
|
|
3
3
|
import { TextInputProps as CoreTextInputProps } from '@epam/uui-components';
|
|
4
4
|
import { IHasEditMode, ControlSize } from '../types';
|
|
5
5
|
export interface TextInputMods extends IHasEditMode {
|
|
6
|
+
/**
|
|
7
|
+
* @default '36'
|
|
8
|
+
*/
|
|
6
9
|
size?: ControlSize;
|
|
7
10
|
}
|
|
8
11
|
export declare function applyTextInputMods(mods: TextInputMods): string[];
|
|
@@ -11,5 +14,5 @@ export interface TextInputProps extends CoreTextInputProps, TextInputMods {
|
|
|
11
14
|
export interface SearchInputProps extends TextInputProps, IEditableDebouncerOptions {
|
|
12
15
|
}
|
|
13
16
|
export declare const TextInput: (props: CoreTextInputProps & TextInputMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
14
|
-
export declare const SearchInput: React.ForwardRefExoticComponent<Pick<SearchInputProps, "name" | "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "isRequired" | "onClick" | "id" | "placeholder" | "cx" | "icon" | "iconPosition" | "onIconClick" | "dropdownIcon" | "
|
|
17
|
+
export declare const SearchInput: React.ForwardRefExoticComponent<Pick<SearchInputProps, "name" | "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "isRequired" | "onClick" | "id" | "placeholder" | "cx" | "icon" | "iconPosition" | "onIconClick" | "dropdownIcon" | "onFocus" | "onBlur" | "getValueChangeAnalyticsEvent" | "rawProps" | "onCancel" | "onAccept" | "onKeyDown" | "autoFocus" | "type" | "autoComplete" | "maxLength" | "inputMode" | "inputCx" | "mode" | "size" | "disableDebounce" | "debounceDelay" | "acceptIcon" | "cancelIcon" | "renderInput"> & React.RefAttributes<HTMLInputElement>>;
|
|
15
18
|
//# 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;AAC5E,MAAM,WAAW,gBAAiB,SAAQ,cAAc,EAAE,yBAAyB;CAAG;AAEtF,eAAO,MAAM,SAAS,8IAInB,CAAC;AAEJ,eAAO,MAAM,WAAW,utBA2BtB,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;;OAEG;IACH,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,12 +1,15 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { BaseTimePickerProps
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseTimePickerProps } from '@epam/uui-components';
|
|
3
3
|
import { IHasEditMode, SizeMod } from '../types';
|
|
4
4
|
export interface TimePickerProps extends BaseTimePickerProps, SizeMod, IHasEditMode {
|
|
5
|
+
/**
|
|
6
|
+
* @default 5
|
|
7
|
+
*/
|
|
5
8
|
minutesStep?: number;
|
|
9
|
+
/**
|
|
10
|
+
* @default 12
|
|
11
|
+
*/
|
|
6
12
|
format?: 12 | 24;
|
|
7
13
|
}
|
|
8
|
-
export declare
|
|
9
|
-
renderInput: (props: IDropdownToggler) => JSX.Element;
|
|
10
|
-
renderBody: (props: DropdownBodyProps) => JSX.Element;
|
|
11
|
-
}
|
|
14
|
+
export declare const TimePicker: (props: TimePickerProps & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
12
15
|
//# sourceMappingURL=TimePicker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../components/inputs/TimePicker.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../components/inputs/TimePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,mBAAmB,EAAkB,MAAM,sBAAsB,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;AAU3D,MAAM,WAAW,eAAgB,SAAQ,mBAAmB,EAAE,OAAO,EAAE,YAAY;IAC/E;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC;CACpB;AAsDD,eAAO,MAAM,UAAU,2HAAgC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
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;
|
|
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,uBAAuB;IACvB,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;AAc1E,eAAO,MAAM,SAAS,wLAEnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Blocker.d.ts","sourceRoot":"","sources":["../../../components/layout/Blocker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Blocker.d.ts","sourceRoot":"","sources":["../../../components/layout/Blocker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAyB,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAI3E,eAAO,MAAM,OAAO,wHAInB,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FlexRowProps as uuiFlexRowProps } from '@epam/uui-core';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
export type RowMods = {
|
|
3
|
+
size?: null | '24' | '30' | '36' | '42' | '48';
|
|
4
4
|
borderBottom?: boolean;
|
|
5
5
|
columnGap?: number | '6' | '12' | '18' | '24' | '36';
|
|
6
6
|
margin?: '12' | '24';
|
|
@@ -9,8 +9,8 @@ export interface RowMods extends RowSizeMod {
|
|
|
9
9
|
spacing?: '6' | '12' | '18';
|
|
10
10
|
topShadow?: boolean;
|
|
11
11
|
vPadding?: '12' | '18' | '24' | '36' | '48';
|
|
12
|
-
background?: 'surface';
|
|
13
|
-
}
|
|
12
|
+
background?: 'surface-main';
|
|
13
|
+
};
|
|
14
14
|
export interface FlexRowProps extends Omit<uuiFlexRowProps, 'columnGap' | 'rowGap'> {
|
|
15
15
|
}
|
|
16
16
|
export declare const FlexRow: (props: FlexRowProps & RowMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
@@ -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;
|
|
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,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC/C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACrD,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAClD,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,UAAU,CAAC,EAAE,cAAc,CAAC;CAC/B,CAAC;AAEF,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,GAAG,QAAQ,CAAC;CAAG;AAEtF,eAAO,MAAM,OAAO,gKAYlB,CAAC"}
|
|
@@ -2,7 +2,7 @@ import { VPanelProps } from '@epam/uui-core';
|
|
|
2
2
|
export interface PanelMods {
|
|
3
3
|
shadow?: boolean;
|
|
4
4
|
margin?: '24';
|
|
5
|
-
background?: 'surface';
|
|
5
|
+
background?: 'surface-main';
|
|
6
6
|
}
|
|
7
7
|
export type PanelProps = VPanelProps & PanelMods;
|
|
8
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 & {
|
|
@@ -1 +1 @@
|
|
|
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,
|
|
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,cAAc,CAAC;CAC/B;AAED,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC;AAEjD,eAAO,MAAM,KAAK;;6IAMhB,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { AnchorProps } from '@epam/uui-components';
|
|
2
|
-
export declare const Anchor: (props: AnchorProps & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
2
|
+
export declare const Anchor: (props: (AnchorProps & {}) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
3
3
|
//# sourceMappingURL=Anchor.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Anchor.d.ts","sourceRoot":"","sources":["../../../components/navigation/Anchor.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAIxE,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"Anchor.d.ts","sourceRoot":"","sources":["../../../components/navigation/Anchor.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAIxE,eAAO,MAAM,MAAM,4JAAqD,CAAC"}
|
|
@@ -4,5 +4,5 @@ export interface BurgerButtonMods extends IHasIcon, IDropdownToggler {
|
|
|
4
4
|
type?: 'primary' | 'secondary';
|
|
5
5
|
indentLevel?: number;
|
|
6
6
|
}
|
|
7
|
-
export declare const BurgerButton: (props: ButtonProps & BurgerButtonMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
7
|
+
export declare const BurgerButton: (props: (ButtonProps & BurgerButtonMods) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
8
8
|
//# sourceMappingURL=BurgerButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BurgerButton.d.ts","sourceRoot":"","sources":["../../../../../components/navigation/MainMenu/Burger/BurgerButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,QAAQ,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,WAAW,gBAAiB,SAAQ,QAAQ,EAAE,gBAAgB;IAChE,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"BurgerButton.d.ts","sourceRoot":"","sources":["../../../../../components/navigation/MainMenu/Burger/BurgerButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,QAAQ,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAI3D,MAAM,WAAW,gBAAiB,SAAQ,QAAQ,EAAE,gBAAgB;IAChE,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,0KAWxB,CAAC"}
|
|
@@ -3,5 +3,5 @@ import { IAdaptiveItem } from '@epam/uui-core';
|
|
|
3
3
|
export interface MainMenuButtonMods {
|
|
4
4
|
type?: 'primary' | 'secondary';
|
|
5
5
|
}
|
|
6
|
-
export declare const MainMenuButton: (props: ButtonProps & MainMenuButtonMods & IAdaptiveItem & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
|
+
export declare const MainMenuButton: (props: (ButtonProps & MainMenuButtonMods & IAdaptiveItem) & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
7
7
|
//# sourceMappingURL=MainMenuButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MainMenuButton.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenuButton.tsx"],"names":[],"mappings":"AACA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAY,MAAM,gBAAgB,CAAC;AAGzD,MAAM,WAAW,kBAAkB;IAC/B,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;CAClC;AAED,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"MainMenuButton.d.ts","sourceRoot":"","sources":["../../../../components/navigation/MainMenu/MainMenuButton.tsx"],"names":[],"mappings":"AACA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAY,MAAM,gBAAgB,CAAC;AAGzD,MAAM,WAAW,kBAAkB;IAC/B,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;CAClC;AAED,eAAO,MAAM,cAAc,4LAI1B,CAAC"}
|
|
@@ -1,8 +1,48 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Icon, IAdaptiveItem } from '@epam/uui-core';
|
|
3
3
|
import { ButtonProps } from '@epam/uui-components';
|
|
4
|
-
export
|
|
4
|
+
export type MainMenuIconProps = ButtonProps & IAdaptiveItem & {
|
|
5
5
|
icon: Icon;
|
|
6
|
-
}
|
|
7
|
-
export declare const MainMenuIcon: React.ForwardRefExoticComponent<Pick<
|
|
6
|
+
};
|
|
7
|
+
export declare const MainMenuIcon: React.ForwardRefExoticComponent<(Pick<import("@epam/uui-core").ICanRedirect & import("@epam/uui-core").ButtonCoreProps & {
|
|
8
|
+
rawProps?: React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
9
|
+
href: string;
|
|
10
|
+
link?: never;
|
|
11
|
+
} & import("@epam/uui-core").IHasForwardedRef<HTMLAnchorElement | HTMLButtonElement> & {
|
|
12
|
+
clearIcon?: Icon;
|
|
13
|
+
captionCX?: import("@epam/uui-core").ClassValue;
|
|
14
|
+
countIndicator?: React.ComponentType<import("@epam/uui-core").IHasCaption>;
|
|
15
|
+
} & IAdaptiveItem & {
|
|
16
|
+
icon: Icon;
|
|
17
|
+
}, "isDisabled" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "onClick" | "onClear" | "cx" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "dropdownIcon" | "dropdownIconPosition" | "count" | "rawProps" | "forwardedRef" | keyof import("@epam/uui-core").ICanRedirect | "clearIcon" | "captionCX" | "countIndicator" | keyof IAdaptiveItem> | Pick<import("@epam/uui-core").ICanRedirect & import("@epam/uui-core").ButtonCoreProps & {
|
|
18
|
+
rawProps?: React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
19
|
+
link: import("@epam/uui-core").Link;
|
|
20
|
+
href?: never;
|
|
21
|
+
} & import("@epam/uui-core").IHasForwardedRef<HTMLAnchorElement | HTMLButtonElement> & {
|
|
22
|
+
clearIcon?: Icon;
|
|
23
|
+
captionCX?: import("@epam/uui-core").ClassValue;
|
|
24
|
+
countIndicator?: React.ComponentType<import("@epam/uui-core").IHasCaption>;
|
|
25
|
+
} & IAdaptiveItem & {
|
|
26
|
+
icon: Icon;
|
|
27
|
+
}, "isDisabled" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "onClick" | "onClear" | "cx" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "dropdownIcon" | "dropdownIconPosition" | "count" | "rawProps" | "forwardedRef" | keyof import("@epam/uui-core").ICanRedirect | "clearIcon" | "captionCX" | "countIndicator" | keyof IAdaptiveItem> | Pick<import("@epam/uui-core").ICanRedirect & import("@epam/uui-core").ButtonCoreProps & {
|
|
28
|
+
rawProps?: React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
29
|
+
href?: never;
|
|
30
|
+
link?: never;
|
|
31
|
+
} & import("@epam/uui-core").IHasForwardedRef<HTMLAnchorElement | HTMLButtonElement> & {
|
|
32
|
+
clearIcon?: Icon;
|
|
33
|
+
captionCX?: import("@epam/uui-core").ClassValue;
|
|
34
|
+
countIndicator?: React.ComponentType<import("@epam/uui-core").IHasCaption>;
|
|
35
|
+
} & IAdaptiveItem & {
|
|
36
|
+
icon: Icon;
|
|
37
|
+
}, "isDisabled" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "onClick" | "onClear" | "cx" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "dropdownIcon" | "dropdownIconPosition" | "count" | "rawProps" | "forwardedRef" | keyof import("@epam/uui-core").ICanRedirect | "clearIcon" | "captionCX" | "countIndicator" | keyof IAdaptiveItem> | Pick<import("@epam/uui-core").ICanRedirect & import("@epam/uui-core").ButtonCoreProps & {
|
|
38
|
+
rawProps?: React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
39
|
+
href: string;
|
|
40
|
+
link: import("@epam/uui-core").Link;
|
|
41
|
+
} & import("@epam/uui-core").IHasForwardedRef<HTMLAnchorElement | HTMLButtonElement> & {
|
|
42
|
+
clearIcon?: Icon;
|
|
43
|
+
captionCX?: import("@epam/uui-core").ClassValue;
|
|
44
|
+
countIndicator?: React.ComponentType<import("@epam/uui-core").IHasCaption>;
|
|
45
|
+
} & IAdaptiveItem & {
|
|
46
|
+
icon: Icon;
|
|
47
|
+
}, "isDisabled" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "onClick" | "onClear" | "cx" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "dropdownIcon" | "dropdownIconPosition" | "count" | "rawProps" | "forwardedRef" | keyof import("@epam/uui-core").ICanRedirect | "clearIcon" | "captionCX" | "countIndicator" | keyof IAdaptiveItem>) & React.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
8
48
|
//# 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,
|
|
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,MAAM,iBAAiB,GAAG,WAAW,GAAG,aAAa,GAAG;IAC1D,IAAI,EAAE,IAAI,CAAC;CACd,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;UAFf,IAAI;;;;;;;;;;UAAJ,IAAI;;;;;;;;;;UAAJ,IAAI;;;;;;;;;;UAAJ,IAAI;0dAIZ,CAAC"}
|
|
@@ -3,5 +3,5 @@ import { TextInputProps } from '@epam/uui-components';
|
|
|
3
3
|
import { IAdaptiveItem } from '@epam/uui-core';
|
|
4
4
|
export interface MainMenuSearchProps extends TextInputProps, IAdaptiveItem {
|
|
5
5
|
}
|
|
6
|
-
export declare const MainMenuSearch: React.ForwardRefExoticComponent<Pick<MainMenuSearchProps, "name" | "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "isRequired" | "onClick" | "id" | "placeholder" | "cx" | "icon" | "iconPosition" | "onIconClick" | "dropdownIcon" | "
|
|
6
|
+
export declare const MainMenuSearch: React.ForwardRefExoticComponent<Pick<MainMenuSearchProps, "name" | "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "tabIndex" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "caption" | "isRequired" | "onClick" | "id" | "placeholder" | "cx" | "icon" | "iconPosition" | "onIconClick" | "dropdownIcon" | "onFocus" | "onBlur" | "getValueChangeAnalyticsEvent" | "rawProps" | "onCancel" | "onAccept" | "onKeyDown" | "autoFocus" | "type" | "autoComplete" | "maxLength" | "inputMode" | "inputCx" | "acceptIcon" | "cancelIcon" | "renderInput" | "estimatedWidth" | "priority" | "showInBurgerMenu" | "collapseToMore" | "collapsedContainer"> & React.RefAttributes<HTMLInputElement>>;
|
|
7
7
|
//# sourceMappingURL=MainMenuSearch.d.ts.map
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { IHasChildren, IHasCX, Icon, IHasRawProps } from '@epam/uui-core';
|
|
3
|
-
import { SemanticColor } from '../types';
|
|
4
3
|
type notificationAction = {
|
|
5
4
|
name: string;
|
|
6
5
|
action: () => void;
|
|
@@ -9,12 +8,15 @@ export interface AlertProps extends IHasChildren, IHasCX, IHasRawProps<React.HTM
|
|
|
9
8
|
/** List of actions to display in the alert. Each action has name and 'action' callback */
|
|
10
9
|
actions?: notificationAction[];
|
|
11
10
|
/** Alert color */
|
|
12
|
-
color:
|
|
11
|
+
color: 'info' | 'success' | 'warning' | 'error';
|
|
13
12
|
/** When specified, a close icon is rendered. onClose callback will be called on clicking the close icon */
|
|
14
13
|
onClose?(): void;
|
|
15
14
|
/** An optional icon to show on the left of the alert */
|
|
16
15
|
icon?: Icon;
|
|
17
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* Component size. If omitted, 48 size will be used.
|
|
18
|
+
* @default '48'
|
|
19
|
+
*/
|
|
18
20
|
size?: '36' | '48';
|
|
19
21
|
}
|
|
20
22
|
export declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../components/overlays/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../components/overlays/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAU1E,KAAK,kBAAkB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,UAAW,SAAQ,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACxG,0FAA0F;IAC1F,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC/B,kBAAkB;IAClB,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;IAChD,2GAA2G;IAC3G,OAAO,CAAC,IAAI,IAAI,CAAC;IACjB,wDAAwD;IACxD,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,KAAK,mFAmChB,CAAC;AAEH,eAAO,MAAM,YAAY,kGAAuJ,CAAC;AAEjL,eAAO,MAAM,YAAY,kGAAuJ,CAAC;AAEjL,eAAO,MAAM,SAAS,kGAAiJ,CAAC;AAExK,eAAO,MAAM,UAAU,kGAAmJ,CAAC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { DropdownProps } from '@epam/uui-core';
|
|
3
|
-
export declare
|
|
2
|
+
export declare const Dropdown: (props: DropdownProps & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
4
3
|
//# sourceMappingURL=Dropdown.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../components/overlays/Dropdown.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../components/overlays/Dropdown.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAY,MAAM,gBAAgB,CAAC;AAEzD,eAAO,MAAM,QAAQ,uJAAuC,CAAC"}
|