@epam/uui 4.9.0-alpha.0 → 4.9.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/bundle-stats.json +1 -1
- package/components/buttons/Button.d.ts +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/FlexItems/FlexCell.d.ts +2 -2
- package/components/layout/FlexItems/FlexRow.d.ts +1 -2
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/layout/FlexItems/Panel.d.ts +1 -1
- package/components/pickers/DataPickerFooter.d.ts +3 -3
- package/components/pickers/DataPickerFooter.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 +3 -3
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/pickers/PickerModal.d.ts +3 -3
- package/components/pickers/PickerModal.d.ts.map +1 -1
- package/components/pickers/PickerToggler.d.ts.map +1 -1
- package/components/tables/Presets/Preset.d.ts +0 -1
- package/components/tables/Presets/Preset.d.ts.map +1 -1
- package/components/tables/Presets/Presets.d.ts.map +1 -1
- package/components/types.d.ts +1 -0
- package/components/types.d.ts.map +1 -1
- package/components/typography/Text.d.ts +1 -1
- package/components/typography/Text.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +1 -1
- package/components/widgets/Tag.d.ts +1 -1
- package/index.js +727 -811
- package/index.js.map +1 -1
- package/package.json +6 -6
- package/styles.css +620 -617
- package/styles.css.map +1 -1
|
@@ -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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
13
|
+
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps & ButtonMods, "link" | "isDisabled" | "onClick" | "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
|
|
@@ -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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
8
|
+
export declare const LinkButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & LinkButtonMods, "link" | "isDisabled" | "onClick" | "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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
8
|
+
export declare const TabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "link" | "isDisabled" | "onClick" | "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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
4
|
+
export declare const VerticalTabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "link" | "isDisabled" | "onClick" | "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" | "
|
|
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" | "id" | "prefix" | "inputMode" | "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
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export declare type FlexCellMods = {};
|
|
3
|
-
export declare const FlexCell: React.ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<HTMLDivElement
|
|
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;
|
|
6
6
|
grow?: number;
|
|
7
7
|
shrink?: number;
|
|
8
8
|
textAlign?: "left" | "right" | "center";
|
|
9
9
|
alignSelf?: string;
|
|
10
|
-
|
|
10
|
+
style?: React.CSSProperties;
|
|
11
11
|
} & React.RefAttributes<any>>;
|
|
12
12
|
//# sourceMappingURL=FlexCell.d.ts.map
|
|
@@ -8,8 +8,7 @@ export interface RowMods extends RowSizeMod {
|
|
|
8
8
|
spacing?: '6' | '12' | '18';
|
|
9
9
|
margin?: '12' | '24';
|
|
10
10
|
}
|
|
11
|
-
export declare const FlexRow: import("react").ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("react").Attributes & import("@epam/uui-core").IHasRawProps<HTMLDivElement
|
|
11
|
+
export declare const FlexRow: import("react").ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("react").Attributes & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IHasRawProps<import("react").HTMLAttributes<HTMLDivElement>> & {
|
|
12
12
|
alignItems?: "top" | "bottom" | "center" | "stretch";
|
|
13
|
-
children?: any;
|
|
14
13
|
} & RowMods & import("react").RefAttributes<any>>;
|
|
15
14
|
//# sourceMappingURL=FlexRow.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,MAAM,WAAW,OAAQ,SAAQ,UAAU;IACvC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,MAAM,WAAW,OAAQ,SAAQ,UAAU;IACvC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,OAAO;;iDAWlB,CAAC"}
|
|
@@ -5,7 +5,7 @@ export interface PanelMods {
|
|
|
5
5
|
margin?: '24';
|
|
6
6
|
background?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const Panel: import("react").ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<HTMLDivElement
|
|
8
|
+
export declare const Panel: import("react").ForwardRefExoticComponent<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 & {
|
|
9
9
|
style?: import("react").CSSProperties;
|
|
10
10
|
} & PanelMods & import("react").RefAttributes<any>>;
|
|
11
11
|
//# sourceMappingURL=Panel.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React, { PropsWithChildren } from 'react';
|
|
2
|
-
import { PickerFooterProps
|
|
2
|
+
import { PickerFooterProps } from "@epam/uui-core";
|
|
3
3
|
import { SizeMod } from '../types';
|
|
4
|
-
declare type DataPickerFooterProps<TItem, TId
|
|
4
|
+
declare type DataPickerFooterProps<TItem, TId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
5
5
|
hideShowOnlySelected?: boolean;
|
|
6
6
|
};
|
|
7
|
-
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId
|
|
7
|
+
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId>(props: React.PropsWithChildren<DataPickerFooterProps<TItem, TId>>) => JSX.Element)>;
|
|
8
8
|
export {};
|
|
9
9
|
//# sourceMappingURL=DataPickerFooter.d.ts.map
|
|
@@ -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,
|
|
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,aAAK,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"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { DataRowProps,
|
|
2
|
+
import { DataRowProps, DataSourceListProps, IDropdownToggler } from '@epam/uui-core';
|
|
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
6
|
export declare type PickerInputProps = SizeMod & IHasEditMode & {};
|
|
7
|
-
export declare class PickerInput<TItem, TId
|
|
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;
|
|
@@ -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,
|
|
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,oBAAY,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,qBAY9C;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"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { PickerListBase, PickerModalOptions } from '@epam/uui-components';
|
|
3
|
-
import {
|
|
3
|
+
import { DataRowProps, IClickable, IHasCaption, IHasPlaceholder, UuiContexts } from '@epam/uui-core';
|
|
4
4
|
import { SizeMod } from '../types';
|
|
5
|
-
export declare type PickerListProps<TItem, TId
|
|
5
|
+
export declare 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
|
};
|
|
9
|
-
export declare class PickerList<TItem, TId
|
|
9
|
+
export declare class PickerList<TItem, TId> extends PickerListBase<TItem, TId, PickerListProps<TItem, TId>> {
|
|
10
10
|
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
11
11
|
sessionStartTime: number;
|
|
12
12
|
context: UuiContexts;
|
|
@@ -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,
|
|
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,oBAAY,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"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { DataRowProps
|
|
2
|
+
import { DataRowProps } from '@epam/uui-core';
|
|
3
3
|
import { PickerModalBase, PickerModalProps } from '@epam/uui-components';
|
|
4
|
-
export declare class PickerModalImpl<TItem, TId
|
|
4
|
+
export declare class PickerModalImpl<TItem, TId> extends PickerModalBase<TItem, TId> {
|
|
5
5
|
renderRow(rowProps: DataRowProps<TItem, TId>): React.ReactNode;
|
|
6
6
|
renderFooter(selectedDataRows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
7
7
|
render(): React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
export declare class PickerModal<TItem, TId
|
|
9
|
+
export declare class PickerModal<TItem, TId> extends React.Component<PickerModalProps<TItem, TId>> {
|
|
10
10
|
state: {
|
|
11
11
|
selection: TItem | TId | TId[] | TItem[];
|
|
12
12
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerModal.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"PickerModal.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAQ,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAA4B,MAAM,sBAAsB,CAAC;AAUnG,qBAAa,eAAe,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC;IACxE,SAAS,CAAC,QAAQ,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC;IAa5C,YAAY,CAAC,gBAAgB,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE;IAiBzD,MAAM,IAAI,KAAK,CAAC,SAAS;CA8D5B;AAED,qBAAa,WAAW,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IACtF,KAAK;;MAA0C;IAC/C,IAAI,sCAA2B;IAE/B,MAAM;CAOT"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerToggler.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerToggler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAqC,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAI7F,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAClC,OAAO,0DAA0D,CAAC;AAMlE,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,YAAY;IACzD,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3C;
|
|
1
|
+
{"version":3,"file":"PickerToggler.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerToggler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAqC,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAI7F,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAClC,OAAO,0DAA0D,CAAC;AAMlE,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,YAAY;IACzD,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3C;AAkED,eAAO,MAAM,aAAa,+EAA4H,MAAM,YAAY,CAAC,WAAW,CAAC,KAAK,WAAW,CAAC"}
|
|
@@ -8,7 +8,6 @@ interface IPresetProps {
|
|
|
8
8
|
duplicatePreset: (preset: ITablePreset) => void;
|
|
9
9
|
deletePreset: (preset: ITablePreset) => void;
|
|
10
10
|
updatePreset: (preset: ITablePreset) => void;
|
|
11
|
-
resetToDefault: () => void;
|
|
12
11
|
}
|
|
13
12
|
export declare const Preset: React.FC<IPresetProps>;
|
|
14
13
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Preset.d.ts","sourceRoot":"","sources":["../../../../components/tables/Presets/Preset.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AACrD,OAAO,EAAoB,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAMhE,UAAU,YAAY;IAClB,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAC7C,eAAe,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAChD,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAC7C,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"Preset.d.ts","sourceRoot":"","sources":["../../../../components/tables/Presets/Preset.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AACrD,OAAO,EAAoB,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAMhE,UAAU,YAAY;IAClB,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAC7C,eAAe,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAChD,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;IAC7C,YAAY,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;CAChD;AAED,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CA+GzC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Presets.d.ts","sourceRoot":"","sources":["../../../../components/tables/Presets/Presets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAM3E,UAAU,aAAc,SAAQ,WAAW;IACvC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,UAAU,EAAE,cAAc,CAAC;CAC9B;
|
|
1
|
+
{"version":3,"file":"Presets.d.ts","sourceRoot":"","sources":["../../../../components/tables/Presets/Presets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAM3E,UAAU,aAAc,SAAQ,WAAW;IACvC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,UAAU,EAAE,cAAc,CAAC;CAC9B;AA0CD,eAAO,MAAM,OAAO,2CAA0B,CAAC"}
|
package/components/types.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare const allTextSizes: TextSize[];
|
|
|
11
11
|
export declare type FontStyle = 'regular' | 'semibold' | 'italic' | 'primary' | 'promo';
|
|
12
12
|
export declare const allFontStyles: FontStyle[];
|
|
13
13
|
export interface ColorMod {
|
|
14
|
+
/** Component color */
|
|
14
15
|
color?: EpamSemanticColor;
|
|
15
16
|
}
|
|
16
17
|
export interface RowSizeMod {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../components/types.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAChE,eAAO,MAAM,cAAc,EAAE,UAAU,EAA0C,CAAC;AAElF,oBAAY,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACpE,eAAO,MAAM,QAAQ,EAAE,WAAW,EAAmC,CAAC;AAEtE,oBAAY,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,eAAO,MAAM,WAAW,EAAE,OAAO,EAAyC,CAAC;AAE3E,oBAAY,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AAChF,eAAO,MAAM,qBAAqB,EAAE,iBAAiB,EAAmD,CAAC;AAEzG,oBAAY,QAAQ,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjE,eAAO,MAAM,YAAY,EAAE,QAAQ,EAAmC,CAAC;AAEvE,oBAAY,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,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
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../components/types.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAChE,eAAO,MAAM,cAAc,EAAE,UAAU,EAA0C,CAAC;AAElF,oBAAY,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACpE,eAAO,MAAM,QAAQ,EAAE,WAAW,EAAmC,CAAC;AAEtE,oBAAY,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,eAAO,MAAM,WAAW,EAAE,OAAO,EAAyC,CAAC;AAE3E,oBAAY,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AAChF,eAAO,MAAM,qBAAqB,EAAE,iBAAiB,EAAmD,CAAC;AAEzG,oBAAY,QAAQ,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjE,eAAO,MAAM,YAAY,EAAE,QAAQ,EAAmC,CAAC;AAEvE,oBAAY,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"}
|
|
@@ -8,5 +8,5 @@ export interface TextMods extends TextSettings {
|
|
|
8
8
|
font?: types.FontStyle;
|
|
9
9
|
color?: 'brand' | 'primary' | 'secondary' | 'disabled' | 'contrast';
|
|
10
10
|
}
|
|
11
|
-
export declare const Text: React.ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IAnalyticableClick & import("@epam/uui-core").IHasRawProps<HTMLDivElement
|
|
11
|
+
export declare const Text: React.ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IAnalyticableClick & import("@epam/uui-core").IHasRawProps<React.HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & TextMods & React.RefAttributes<any>>;
|
|
12
12
|
//# sourceMappingURL=Text.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAkB,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,oDAAoD,CAAC;AAC5D,OAAO,0CAA0C,CAAC;AAElD,MAAM,WAAW,QAAS,SAAQ,YAAY;IAC1C,IAAI,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,CAAC;CACvE;AAgBD,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAkB,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,oDAAoD,CAAC;AAC5D,OAAO,0CAA0C,CAAC;AAElD,MAAM,WAAW,QAAS,SAAQ,YAAY;IAC1C,IAAI,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,CAAC;CACvE;AAgBD,eAAO,MAAM,IAAI,8WAAwD,CAAC"}
|
|
@@ -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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
15
|
+
export declare const Badge: React.ForwardRefExoticComponent<Pick<ButtonProps & BadgeMods, "link" | "isDisabled" | "onClick" | "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
|
|
@@ -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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "
|
|
8
|
+
export declare const Tag: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TagMods, "link" | "isDisabled" | "onClick" | "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
|