@epam/uui 4.9.1 → 4.10.0-rc.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/components/buttons/Button.d.ts +2 -2
- package/components/buttons/Button.d.ts.map +1 -1
- package/components/buttons/IconButton.d.ts +1 -1
- package/components/buttons/IconButton.d.ts.map +1 -1
- package/components/buttons/LinkButton.d.ts +1 -1
- package/components/buttons/TabButton.d.ts +1 -1
- package/components/buttons/VerticalTabButton.d.ts +1 -1
- package/components/inputs/TextInput.d.ts +1 -1
- package/components/layout/Accordion.d.ts +1 -1
- package/components/layout/Accordion.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexCell.d.ts +1 -1
- package/components/layout/FlexItems/FlexCell.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexRow.d.ts +10 -6
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts.map +1 -1
- package/components/overlays/NotificationCard.d.ts +1 -1
- package/components/overlays/NotificationCard.d.ts.map +1 -1
- package/components/pickers/DataPickerBody.d.ts +1 -1
- package/components/pickers/DataPickerFooter.d.ts +1 -1
- package/components/pickers/DataPickerFooter.d.ts.map +1 -1
- package/components/pickers/PickerInput.d.ts +3 -3
- package/components/pickers/PickerInput.d.ts.map +1 -1
- package/components/pickers/PickerList.d.ts +1 -1
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/pickers/PickerModal.d.ts +1 -1
- package/components/types.d.ts +6 -6
- package/components/types.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +4 -4
- package/components/widgets/Badge.d.ts.map +1 -1
- package/components/widgets/Tag.d.ts +1 -1
- package/index.js +1453 -5063
- package/index.js.map +1 -1
- package/package.json +9 -11
- package/stats.html +4044 -0
- package/styles.css +615 -616
- package/styles.css.map +1 -1
- package/bundle-stats.json +0 -1
- package/components/buttons/docs/button.doc.d.ts +0 -6
- package/components/buttons/docs/button.doc.d.ts.map +0 -1
- package/components/buttons/docs/linkButton.doc.d.ts +0 -6
- package/components/buttons/docs/linkButton.doc.d.ts.map +0 -1
- package/components/inputs/docs/checkbox.doc.d.ts +0 -6
- package/components/inputs/docs/checkbox.doc.d.ts.map +0 -1
- package/components/inputs/docs/radioInput.doc.d.ts +0 -6
- package/components/inputs/docs/radioInput.doc.d.ts.map +0 -1
- package/components/inputs/docs/switch.doc.d.ts +0 -6
- package/components/inputs/docs/switch.doc.d.ts.map +0 -1
- package/components/inputs/docs/textInput.doc.d.ts +0 -6
- package/components/inputs/docs/textInput.doc.d.ts.map +0 -1
- package/components/pickers/docs/common.d.ts +0 -28
- package/components/pickers/docs/common.d.ts.map +0 -1
- package/components/pickers/docs/pickerInput.doc.d.ts +0 -5
- package/components/pickers/docs/pickerInput.doc.d.ts.map +0 -1
- package/components/pickers/docs/pickerToggler.doc.d.ts +0 -6
- package/components/pickers/docs/pickerToggler.doc.d.ts.map +0 -1
- package/components/typography/docs/textPlaceholder.doc.d.ts +0 -5
- package/components/typography/docs/textPlaceholder.doc.d.ts.map +0 -1
- package/docs/common.d.ts +0 -11
- package/docs/common.d.ts.map +0 -1
- package/docs/contexts/DefaultContext.d.ts +0 -7
- package/docs/contexts/DefaultContext.d.ts.map +0 -1
- package/docs/contexts/index.d.ts +0 -2
- package/docs/contexts/index.d.ts.map +0 -1
- package/docs/index.d.ts +0 -3
- package/docs/index.d.ts.map +0 -1
- package/index.docs.d.ts +0 -6
- package/index.docs.d.ts.map +0 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { ButtonProps } from '@epam/uui-components';
|
|
3
3
|
import { ControlSize, ButtonMode } from '../types';
|
|
4
4
|
import '../../assets/styles/variables/buttons/button.scss';
|
|
5
|
-
export
|
|
5
|
+
export type ButtonColor = 'accent' | 'primary' | 'secondary' | 'negative';
|
|
6
6
|
export declare const allButtonColors: ButtonColor[];
|
|
7
7
|
export interface ButtonMods {
|
|
8
8
|
size?: ControlSize | '18';
|
|
@@ -10,5 +10,5 @@ export interface ButtonMods {
|
|
|
10
10
|
color?: ButtonColor;
|
|
11
11
|
}
|
|
12
12
|
export declare function applyButtonMods(mods: ButtonMods & ButtonProps): string[];
|
|
13
|
-
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps & ButtonMods, "
|
|
13
|
+
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps & ButtonMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof ButtonMods> & import("react").RefAttributes<any>>;
|
|
14
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,EAAE,MAAM,sBAAsB,CAAC;AAExE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGnD,OAAO,mDAAmD,CAAC;AAE3D,
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../components/buttons/Button.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAuB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAExE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGnD,OAAO,mDAAmD,CAAC;AAE3D,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AAC1E,eAAO,MAAM,eAAe,EAAE,WAAW,EAAmD,CAAC;AAI7F,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,wBAAgB,eAAe,CAAC,IAAI,EAAE,UAAU,GAAG,WAAW,YAQ7D;AAED,eAAO,MAAM,MAAM,qhBAOlB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IconButtonBaseProps } from '@epam/uui-components';
|
|
3
3
|
import '../../assets/styles/variables/buttons/iconButton.scss';
|
|
4
|
-
export
|
|
4
|
+
export type IconColor = 'info' | 'success' | 'warning' | 'error' | 'secondary' | 'default';
|
|
5
5
|
export declare const allIconColors: IconColor[];
|
|
6
6
|
export interface IconButtonMods {
|
|
7
7
|
color?: IconColor;
|
|
@@ -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;AAExF,OAAO,uDAAuD,CAAC;AAG/D,
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,mBAAmB,EAA+B,MAAM,sBAAsB,CAAC;AAExF,OAAO,uDAAuD,CAAC;AAG/D,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;AAC3F,eAAO,MAAM,aAAa,EAAE,SAAS,EAAoE,CAAC;AAE1G,MAAM,WAAW,cAAc;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,MAAM,WAAW,eAAgB,SAAQ,mBAAmB,EAAE,cAAc;CAAI;AAShF,eAAO,MAAM,UAAU,kHAAgF,CAAC"}
|
|
@@ -5,5 +5,5 @@ import '../../assets/styles/variables/buttons/linkButton.scss';
|
|
|
5
5
|
export interface LinkButtonMods {
|
|
6
6
|
size?: types.ControlSize | '42';
|
|
7
7
|
}
|
|
8
|
-
export declare const LinkButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & LinkButtonMods, "
|
|
8
|
+
export declare const LinkButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & LinkButtonMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "size" | "forwardedRef" | "clearIcon" | "captionCX"> & import("react").RefAttributes<any>>;
|
|
9
9
|
//# sourceMappingURL=LinkButton.d.ts.map
|
|
@@ -5,5 +5,5 @@ export interface TabButtonMods {
|
|
|
5
5
|
size?: '36' | '48' | '60';
|
|
6
6
|
withNotify?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const TabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "
|
|
8
|
+
export declare const TabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof TabButtonMods> & import("react").RefAttributes<any>>;
|
|
9
9
|
//# sourceMappingURL=TabButton.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ButtonProps } from '@epam/uui-components';
|
|
3
3
|
import { TabButtonMods } from './TabButton';
|
|
4
|
-
export declare const VerticalTabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "
|
|
4
|
+
export declare const VerticalTabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof TabButtonMods> & import("react").RefAttributes<any>>;
|
|
5
5
|
//# sourceMappingURL=VerticalTabButton.d.ts.map
|
|
@@ -7,7 +7,7 @@ export interface TextInputMods extends IHasEditMode {
|
|
|
7
7
|
size?: ControlSize;
|
|
8
8
|
}
|
|
9
9
|
export declare function applyTextInputMods(mods: TextInputMods): string[];
|
|
10
|
-
export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps & TextInputMods, "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "isRequired" | "onClick" | "caption" | "dropdownIcon" | "cx" | "icon" | "iconPosition" | "onIconClick" | "tabIndex" | "rawProps" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "type" | "
|
|
10
|
+
export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps & TextInputMods, "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "isRequired" | "onClick" | "caption" | "dropdownIcon" | "cx" | "icon" | "iconPosition" | "onIconClick" | "tabIndex" | "rawProps" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "type" | "inputMode" | "id" | "prefix" | "name" | "onFocus" | "onBlur" | "getValueChangeAnalyticsEvent" | "onCancel" | "onAccept" | "onKeyDown" | "autoFocus" | "autoComplete" | "maxLength" | "suffix" | "acceptIcon" | "cancelIcon" | "inputCx" | "renderInput" | keyof TextInputMods> & React.RefAttributes<any>>;
|
|
11
11
|
export declare class SearchInput extends React.Component<TextInputProps & TextInputMods & IEditableDebouncerOptions, {}> {
|
|
12
12
|
render(): JSX.Element;
|
|
13
13
|
}
|
|
@@ -5,5 +5,5 @@ export interface AccordionMods {
|
|
|
5
5
|
mode?: 'block' | 'inline';
|
|
6
6
|
padding?: '0' | '6' | '12' | '18';
|
|
7
7
|
}
|
|
8
|
-
export declare const Accordion: import("react").ForwardRefExoticComponent<AccordionProps & AccordionMods & import("react").RefAttributes<any>>;
|
|
8
|
+
export declare const Accordion: import("react").ForwardRefExoticComponent<(AccordionProps & AccordionMods) & import("react").RefAttributes<any>>;
|
|
9
9
|
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../components/layout/Accordion.tsx"],"names":[],"mappings":";AACA,OAAO,EAA6B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEjF,OAAO,qDAAqD,CAAC;AAG7D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;CACrC;AAWD,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../components/layout/Accordion.tsx"],"names":[],"mappings":";AACA,OAAO,EAA6B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEjF,OAAO,qDAAqD,CAAC;AAG7D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;CACrC;AAWD,eAAO,MAAM,SAAS,kHAEnB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export
|
|
2
|
+
export type FlexCellMods = {};
|
|
3
3
|
export declare const FlexCell: React.ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<React.HTMLAttributes<HTMLDivElement>> & React.Attributes & import("@epam/uui-core").IHasChildren & {
|
|
4
4
|
width?: number | "auto" | "100%";
|
|
5
5
|
minWidth?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlexCell.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,
|
|
1
|
+
{"version":3,"file":"FlexCell.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,MAAM,MAAM,YAAY,GAAG,EAAE,CAAC;AAE9B,eAAO,MAAM,QAAQ;;;;;;;;6BAEnB,CAAC"}
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { FlexRowProps as uuiFlexRowProps } from '@epam/uui-core';
|
|
2
3
|
import { RowSizeMod } from '../../types';
|
|
3
4
|
export interface RowMods extends RowSizeMod {
|
|
4
|
-
topShadow?: boolean;
|
|
5
5
|
borderBottom?: boolean;
|
|
6
|
+
columnGap?: number | '6' | '12' | '18' | '24' | '36';
|
|
7
|
+
margin?: '12' | '24';
|
|
6
8
|
padding?: '6' | '12' | '18' | '24';
|
|
7
|
-
|
|
9
|
+
rowGap?: number | '6' | '12' | '18' | '24' | '36';
|
|
8
10
|
spacing?: '6' | '12' | '18';
|
|
9
|
-
|
|
11
|
+
topShadow?: boolean;
|
|
12
|
+
vPadding?: '12' | '18' | '24' | '36' | '48';
|
|
13
|
+
}
|
|
14
|
+
interface FlexRowProps extends Omit<uuiFlexRowProps, 'columnGap' | 'rowGap'> {
|
|
10
15
|
}
|
|
11
|
-
export declare const FlexRow: import("react").ForwardRefExoticComponent<
|
|
12
|
-
|
|
13
|
-
} & RowMods & import("react").RefAttributes<any>>;
|
|
16
|
+
export declare const FlexRow: import("react").ForwardRefExoticComponent<FlexRowProps & RowMods & import("react").RefAttributes<any>>;
|
|
17
|
+
export {};
|
|
14
18
|
//# sourceMappingURL=FlexRow.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":";
|
|
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;AAE3E,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,MAAM,WAAW,OAAQ,SAAQ,UAAU;IACvC,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;CAC/C;AAED,UAAU,YAAa,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,GAAG,QAAQ,CAAC;CAAG;AAE/E,eAAO,MAAM,OAAO,wGAWlB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAEvE,OAAO,
|
|
1
|
+
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAEvE,OAAO,EACC,gBAAgB,EAAgC,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAClH,YAAY,EAAE,kBAAkB,EAAE,MAAM,EAAE,UAAU,EACvD,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAiF,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAMxI,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB,EAAE,gBAAgB;IAC9H,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAuB,SAAQ,WAAW,EAAE,iBAAiB;IAC1E,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;AAED,eAAO,MAAM,mBAAmB;;;;;;;CAO/B,CAAC;AA6CF,eAAO,MAAM,gBAAgB,oFAI5B,CAAC;AAEF,eAAO,MAAM,kBAAkB;YAAW,sBAAsB;;CAgF/D,CAAC;AAIF,eAAO,MAAM,oBAAoB,UAAW,MAAM,gBAIjD,CAAC;AAEF,UAAU,mBAAoB,SAAQ,MAAM,EAAE,WAAW;CAAI;AAE7D,eAAO,MAAM,kBAAkB,UAAW,mBAAmB,gBAI5D,CAAC;AAEF,UAAU,gBAAiB,SAAQ,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,sBAAsB;IAC1F,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,eAAO,MAAM,eAAe,UAAW,gBAAgB,gBAwBtD,CAAC;AAEF,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,eAAO,MAAM,wBAAwB,UAAW,yBAAyB,gBAmCxE,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { INotification, Icon, IHasChildren, IHasCX, UuiContexts } from '@epam/uui-core';
|
|
3
3
|
import '../../assets/styles/variables/overlays/notificationCard.scss';
|
|
4
|
-
|
|
4
|
+
type notificationAction = {
|
|
5
5
|
name: string;
|
|
6
6
|
action: () => void;
|
|
7
7
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationCard.d.ts","sourceRoot":"","sources":["../../../components/overlays/NotificationCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,aAAa,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAQpG,OAAO,8DAA8D,CAAC;AAGtE,
|
|
1
|
+
{"version":3,"file":"NotificationCard.d.ts","sourceRoot":"","sources":["../../../components/overlays/NotificationCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,aAAa,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAQpG,OAAO,8DAA8D,CAAC;AAGtE,KAAK,kBAAkB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,wBAAyB,SAAQ,aAAa,EAAE,YAAY,EAAE,MAAM;IACjF,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB;IACnE,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CACnD;AAED,qBAAa,gBAAiB,SAAQ,KAAK,CAAC,SAAS,CAAC,qBAAqB,CAAC;IACxE,oBAAoB,EAAE,WAAW,GAAG,IAAI,CAAQ;IAEhD,iBAAiB;IAKjB,oBAAoB;IAKpB,MAAM;CA4BT;AAED,eAAO,MAAM,mBAAmB,UAAW,wBAAwB,gBAC2B,CAAC;AAC/F,eAAO,MAAM,mBAAmB,UAAW,wBAAwB,gBAC2B,CAAC;AAC/F,eAAO,MAAM,gBAAgB,UAAW,wBAAwB,gBACwB,CAAC;AACzF,eAAO,MAAM,iBAAiB,UAAW,wBAAwB,gBACyB,CAAC;AAE3F,qBAAa,iBAAkB,SAAQ,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;IACtD,OAAc,WAAW,mEAAc;IAChC,OAAO,EAAE,WAAW,CAAC;IAE5B,MAAM;CAMT"}
|
|
@@ -10,7 +10,7 @@ export interface DataPickerBodyProps extends PickerBodyBaseProps {
|
|
|
10
10
|
export declare class DataPickerBody extends PickerBodyBase<DataPickerBodyProps> {
|
|
11
11
|
lens: import("@epam/uui-core").ILens<DataSourceState<Record<string, any>, any>>;
|
|
12
12
|
searchLens: import("@epam/uui-core").ILens<string>;
|
|
13
|
-
renderNoFound(): React.
|
|
13
|
+
renderNoFound(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
14
14
|
render(): JSX.Element;
|
|
15
15
|
}
|
|
16
16
|
//# sourceMappingURL=DataPickerBody.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { PropsWithChildren } from 'react';
|
|
2
2
|
import { PickerFooterProps } from "@epam/uui-core";
|
|
3
3
|
import { SizeMod } from '../types';
|
|
4
|
-
|
|
4
|
+
type DataPickerFooterProps<TItem, TId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
5
5
|
hideShowOnlySelected?: boolean;
|
|
6
6
|
};
|
|
7
7
|
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId>(props: React.PropsWithChildren<DataPickerFooterProps<TItem, TId>>) => JSX.Element)>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataPickerFooter.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EAAY,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAK7D,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGnC,
|
|
1
|
+
{"version":3,"file":"DataPickerFooter.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EAAY,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAK7D,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGnC,KAAK,qBAAqB,CAAC,KAAK,EAAE,GAAG,IAAI,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,OAAO,GAAG;IAC/E,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC,CAAC;AAqDF,eAAO,MAAM,gBAAgB,6HAAmC,CAAC"}
|
|
@@ -3,14 +3,14 @@ import { DataRowProps, DataSourceListProps, IDropdownToggler } from '@epam/uui-c
|
|
|
3
3
|
import { DropdownBodyProps, PickerBodyBaseProps, PickerInputBase, PickerTogglerProps } from '@epam/uui-components';
|
|
4
4
|
import { PickerTogglerMods } from './PickerToggler';
|
|
5
5
|
import { IHasEditMode, SizeMod } from '../types';
|
|
6
|
-
export
|
|
6
|
+
export type PickerInputProps = SizeMod & IHasEditMode & {};
|
|
7
7
|
export declare class PickerInput<TItem, TId> extends PickerInputBase<TItem, TId, PickerInputProps> {
|
|
8
8
|
toggleModalOpening(opened: boolean): void;
|
|
9
9
|
getRowSize(): import("../types").ControlSize;
|
|
10
10
|
renderItem: (item: TItem, rowProps: DataRowProps<TItem, TId>) => JSX.Element;
|
|
11
|
-
renderRow: (rowProps: DataRowProps<TItem, TId>) => React.
|
|
11
|
+
renderRow: (rowProps: DataRowProps<TItem, TId>) => string | number | boolean | React.ReactFragment | JSX.Element;
|
|
12
12
|
getTogglerMods(): PickerTogglerMods;
|
|
13
|
-
renderFooter(): React.
|
|
13
|
+
renderFooter(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
14
14
|
renderTarget(targetProps: IDropdownToggler & PickerTogglerProps<TItem, TId>): React.ReactNode;
|
|
15
15
|
renderBody(props: DropdownBodyProps & DataSourceListProps & Omit<PickerBodyBaseProps, 'rows'>, rows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
16
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerInput.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,mBAAmB,EAAE,gBAAgB,EAA4C,MAAM,gBAAgB,CAAC;AAC/H,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAGnH,OAAO,EAAiB,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAMnE,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAG3D,
|
|
1
|
+
{"version":3,"file":"PickerInput.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,mBAAmB,EAAE,gBAAgB,EAA4C,MAAM,gBAAgB,CAAC;AAC/H,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAGnH,OAAO,EAAiB,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAMnE,OAAO,EAAY,YAAY,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAG3D,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,YAAY,GAAG,EAAE,CAAC;AAK3D,qBAAa,WAAW,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,eAAe,CAAC,KAAK,EAAE,GAAG,EAAE,gBAAgB,CAAC;IACtF,kBAAkB,CAAC,MAAM,EAAE,OAAO;IAelC,UAAU;IAQV,UAAU,SAAU,KAAK,YAAY,aAAa,KAAK,EAAE,GAAG,CAAC,iBAE5D;IAED,SAAS,aAAc,aAAa,KAAK,EAAE,GAAG,CAAC,mEAY9C;IAED,cAAc,IAAI,iBAAiB;IAOnC,YAAY;IAQZ,YAAY,CAAC,WAAW,EAAE,gBAAgB,GAAG,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,SAAS;IAY7F,UAAU,CAAC,KAAK,EAAE,iBAAiB,GAAG,mBAAmB,GAAG,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC,EAAE,IAAI,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE;CA6BlI"}
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { PickerListBase, PickerModalOptions } from '@epam/uui-components';
|
|
3
3
|
import { DataRowProps, IClickable, IHasCaption, IHasPlaceholder, UuiContexts } from '@epam/uui-core';
|
|
4
4
|
import { SizeMod } from '../types';
|
|
5
|
-
export
|
|
5
|
+
export type PickerListProps<TItem, TId> = SizeMod & IHasPlaceholder & PickerModalOptions<TItem, TId> & {
|
|
6
6
|
renderModalToggler?(props: IClickable & IHasCaption, selection: DataRowProps<TItem, TId>[]): React.ReactNode;
|
|
7
7
|
noOptionsMessage?: React.ReactNode;
|
|
8
8
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerList.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,eAAe,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAEjH,OAAO,EAAY,OAAO,EAAE,MAAM,UAAU,CAAC;AAK7C,
|
|
1
|
+
{"version":3,"file":"PickerList.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,eAAe,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAEjH,OAAO,EAAY,OAAO,EAAE,MAAM,UAAU,CAAC;AAK7C,MAAM,MAAM,eAAe,CAAC,KAAK,EAAE,GAAG,IAAI,OAAO,GAAG,eAAe,GAAG,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG;IACnG,kBAAkB,CAAC,CAAC,KAAK,EAAE,UAAU,GAAG,WAAW,EAAE,SAAS,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,GAAG,KAAK,CAAC,SAAS,CAAC;IAC7G,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACtC,CAAC;AAEF,qBAAa,UAAU,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC/F,MAAM,CAAC,WAAW,mEAAc;IAChC,gBAAgB,SAA0B;IAC1C,OAAO,EAAE,WAAW,CAAC;IAErB,SAAS,QAAS,aAAa,KAAK,EAAE,GAAG,CAAC,iBAEzC;IAED,gBAAgB,aAgBf;IAED,oBAAoB,UAAW,UAAU,iBAKxC;IAED,MAAM;CAuBT"}
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { DataRowProps } from '@epam/uui-core';
|
|
3
3
|
import { PickerModalBase, PickerModalProps } from '@epam/uui-components';
|
|
4
4
|
export declare class PickerModalImpl<TItem, TId> extends PickerModalBase<TItem, TId> {
|
|
5
|
-
renderRow(rowProps: DataRowProps<TItem, TId>): React.
|
|
5
|
+
renderRow(rowProps: DataRowProps<TItem, TId>): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
6
6
|
renderFooter(selectedDataRows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
7
7
|
render(): React.ReactNode;
|
|
8
8
|
}
|
package/components/types.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type ButtonMode = 'solid' | 'outline' | 'ghost' | 'none';
|
|
2
2
|
export declare const allButtonModes: ButtonMode[];
|
|
3
|
-
export
|
|
3
|
+
export type ControlSize = 'none' | '24' | '30' | '36' | '42' | '48';
|
|
4
4
|
export declare const allSizes: ControlSize[];
|
|
5
|
-
export
|
|
5
|
+
export type RowSize = null | '24' | '30' | '36' | '42' | '48';
|
|
6
6
|
export declare const allRowSizes: RowSize[];
|
|
7
|
-
export
|
|
7
|
+
export type EpamSemanticColor = 'accent' | 'primary' | 'secondary' | 'negative';
|
|
8
8
|
export declare const allEpamSemanticColors: EpamSemanticColor[];
|
|
9
|
-
export
|
|
9
|
+
export type TextSize = 'none' | '18' | '24' | '30' | '36' | '48';
|
|
10
10
|
export declare const allTextSizes: TextSize[];
|
|
11
|
-
export
|
|
11
|
+
export type FontStyle = 'regular' | 'semibold' | 'italic' | 'primary' | 'promo';
|
|
12
12
|
export declare const allFontStyles: FontStyle[];
|
|
13
13
|
export interface ColorMod {
|
|
14
14
|
/** Component color */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../components/types.ts"],"names":[],"mappings":"AAAA,
|
|
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,EAA0C,CAAC;AAElF,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACpE,eAAO,MAAM,QAAQ,EAAE,WAAW,EAAmC,CAAC;AAEtE,MAAM,MAAM,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,eAAO,MAAM,WAAW,EAAE,OAAO,EAAyC,CAAC;AAE3E,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AAChF,eAAO,MAAM,qBAAqB,EAAE,iBAAiB,EAAmD,CAAC;AAEzG,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjE,eAAO,MAAM,YAAY,EAAE,QAAQ,EAAmC,CAAC;AAEvE,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAC;AAChF,eAAO,MAAM,aAAa,EAAE,SAAS,EAA0D,CAAC;AAEhG,MAAM,WAAW,QAAQ;IACrB,sBAAsB;IACtB,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC7B;AAED,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,OAAO;IACpB,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,WAAW,YAAY;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1B;AAED,oBAAY,QAAQ;IAChB,IAAI,SAAS;IACb,IAAI,SAAS;CAChB"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ButtonProps } from '@epam/uui-components';
|
|
3
3
|
import '../../assets/styles/variables/widgets/badge.scss';
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
4
|
+
export type BadgeColor = 'info' | 'success' | 'warning' | 'error';
|
|
5
|
+
export type BadgeFill = 'solid';
|
|
6
|
+
export type BadgeSize = '18' | '24' | '30' | '36' | '42' | '48';
|
|
7
7
|
export interface BadgeMods {
|
|
8
8
|
fill?: BadgeFill;
|
|
9
9
|
size?: BadgeSize;
|
|
@@ -12,5 +12,5 @@ export interface BadgeMods {
|
|
|
12
12
|
export interface BadgeProps extends ButtonProps, BadgeMods {
|
|
13
13
|
}
|
|
14
14
|
export declare function applyBadgeMods(mods: BadgeMods): string[];
|
|
15
|
-
export declare const Badge: React.ForwardRefExoticComponent<Pick<ButtonProps & BadgeMods, "
|
|
15
|
+
export declare const Badge: React.ForwardRefExoticComponent<Pick<ButtonProps & BadgeMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof BadgeMods> & React.RefAttributes<any>>;
|
|
16
16
|
//# sourceMappingURL=Badge.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../components/widgets/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAI3D,OAAO,kDAAkD,CAAC;AAa1D,
|
|
1
|
+
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../components/widgets/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAI3D,OAAO,kDAAkD,CAAC;AAa1D,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAClE,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC;AAChC,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAEhE,MAAM,WAAW,SAAS;IACtB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,KAAK,CAAC,EAAE,UAAU,CAAC;CACtB;AAED,MAAM,WAAW,UAAW,SAAQ,WAAW,EAAE,SAAS;CAAG;AAE7D,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,YAS7C;AAED,eAAO,MAAM,KAAK,+fAQjB,CAAC"}
|
|
@@ -5,5 +5,5 @@ export interface TagMods {
|
|
|
5
5
|
size?: '18' | '24' | '30' | '36' | '42' | '48';
|
|
6
6
|
}
|
|
7
7
|
export declare function applyTagMods(mods: TagMods): string[];
|
|
8
|
-
export declare const Tag: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TagMods, "
|
|
8
|
+
export declare const Tag: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TagMods, "isDisabled" | "onClick" | "link" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "size" | "forwardedRef" | "clearIcon" | "captionCX"> & import("react").RefAttributes<any>>;
|
|
9
9
|
//# sourceMappingURL=Tag.d.ts.map
|