@epam/uui 4.8.0 → 4.9.0-alpha.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/FlexRow.d.ts +1 -1
- package/components/pickers/DataPickerFooter.d.ts +3 -3
- package/components/pickers/DataPickerFooter.d.ts.map +1 -1
- package/components/pickers/DataPickerRow.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/tables/DataTableCell.d.ts +1 -1
- package/components/tables/DataTableCell.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +1 -1
- package/components/widgets/Tag.d.ts +1 -1
- package/index.js +48 -49
- package/index.js.map +1 -1
- package/package.json +6 -6
- package/styles.css +613 -613
- 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, "
|
|
13
|
+
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps & ButtonMods, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "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, "
|
|
8
|
+
export declare const LinkButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & LinkButtonMods, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "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, "
|
|
10
|
+
export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps & TextInputMods, "value" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isDisabled" | "isReadonly" | "isRequired" | "onClick" | "caption" | "dropdownIcon" | "tabIndex" | "cx" | "icon" | "iconPosition" | "onIconClick" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "type" | "rawProps" | "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
|
}
|
|
@@ -9,7 +9,7 @@ export interface RowMods extends RowSizeMod {
|
|
|
9
9
|
margin?: '12' | '24';
|
|
10
10
|
}
|
|
11
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> & {
|
|
12
|
-
alignItems?: "top" | "
|
|
12
|
+
alignItems?: "top" | "bottom" | "center" | "stretch";
|
|
13
13
|
children?: any;
|
|
14
14
|
} & RowMods & import("react").RefAttributes<any>>;
|
|
15
15
|
//# sourceMappingURL=FlexRow.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React, { PropsWithChildren } from 'react';
|
|
2
|
-
import { PickerFooterProps } from "@epam/uui-core";
|
|
2
|
+
import { PickerFooterProps, DataSourceItemId } from "@epam/uui-core";
|
|
3
3
|
import { SizeMod } from '../types';
|
|
4
|
-
declare type DataPickerFooterProps<TItem, TId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
4
|
+
declare type DataPickerFooterProps<TItem, TId extends DataSourceItemId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
5
5
|
hideShowOnlySelected?: boolean;
|
|
6
6
|
};
|
|
7
|
-
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId>(props: React.PropsWithChildren<DataPickerFooterProps<TItem, TId>>) => JSX.Element)>;
|
|
7
|
+
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId extends DataSourceItemId>(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,MAAM,gBAAgB,CAAC;
|
|
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,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAK/E,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGnC,aAAK,qBAAqB,CAAC,KAAK,EAAE,GAAG,SAAS,gBAAgB,IAAI,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,OAAO,GAAG;IACxG,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC,CAAC;AAqDF,eAAO,MAAM,gBAAgB,sJAAmC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataPickerRow.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAS/D,MAAM,WAAW,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC;IAC5E,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC;IAC7E,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IACjC,YAAY,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;CACnC;AAED,qBAAa,aAAa,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC1F,OAAO,CAAC,OAAO,CAQd;IAED,MAAM,EAAE,eAAe,CAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"DataPickerRow.d.ts","sourceRoot":"","sources":["../../../components/pickers/DataPickerRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAS/D,MAAM,WAAW,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC;IAC5E,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC;IAC7E,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IACjC,YAAY,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;CACnC;AAED,qBAAa,aAAa,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC1F,OAAO,CAAC,OAAO,CAQd;IAED,MAAM,EAAE,eAAe,CAAC,KAAK,CAAC,CAYxB;IAEN,aAAa,oBAYZ;IAED,MAAM;CAOT"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { DataRowProps, DataSourceListProps, IDropdownToggler } from '@epam/uui-core';
|
|
2
|
+
import { DataRowProps, DataSourceItemId, 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> extends PickerInputBase<TItem, TId, PickerInputProps> {
|
|
7
|
+
export declare class PickerInput<TItem, TId extends DataSourceItemId> 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,mBAAmB,EAAE,gBAAgB,EAA4C,MAAM,gBAAgB,CAAC;
|
|
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,gBAAgB,EAAE,mBAAmB,EAAE,gBAAgB,EAA4C,MAAM,gBAAgB,CAAC;AACjJ,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,SAAS,gBAAgB,CAAE,SAAQ,eAAe,CAAC,KAAK,EAAE,GAAG,EAAE,gBAAgB,CAAC;IAC/G,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,qBAgB9C;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 { DataRowProps, IClickable, IHasCaption, IHasPlaceholder,
|
|
3
|
+
import { UuiContexts, DataRowProps, IClickable, IHasCaption, IHasPlaceholder, DataSourceItemId } from '@epam/uui-core';
|
|
4
4
|
import { SizeMod } from '../types';
|
|
5
|
-
export declare type PickerListProps<TItem, TId> = SizeMod & IHasPlaceholder & PickerModalOptions<TItem, TId> & {
|
|
5
|
+
export declare type PickerListProps<TItem, TId extends DataSourceItemId> = 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> extends PickerListBase<TItem, TId, PickerListProps<TItem, TId>> {
|
|
9
|
+
export declare class PickerList<TItem, TId extends DataSourceItemId> 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,EACH,WAAW,EACX,YAAY,EACZ,UAAU,EACV,WAAW,EACX,eAAe,EAEf,gBAAgB,EACnB,MAAM,gBAAgB,CAAC;AAIxB,OAAO,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;AAG7C,oBAAY,eAAe,CAAC,KAAK,EAAE,GAAG,SAAS,gBAAgB,IAAI,OAAO,GAAG,eAAe,GAAG,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG;IAC5H,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,SAAS,gBAAgB,CAAE,SAAQ,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IACxH,MAAM,CAAC,WAAW,mEAAc;IAChC,gBAAgB,SAA0B;IAC1C,OAAO,EAAE,WAAW,CAAC;IAErB,SAAS,QAAS,aAAa,KAAK,EAAE,GAAG,CAAC,iBAEzC;IAED,gBAAgB,aAcf;IAED,oBAAoB,UAAW,UAAU,iBAGvC;IAEF,MAAM;CAoBT"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { DataRowProps } from '@epam/uui-core';
|
|
2
|
+
import { DataRowProps, DataSourceItemId } from '@epam/uui-core';
|
|
3
3
|
import { PickerModalBase, PickerModalProps } from '@epam/uui-components';
|
|
4
|
-
export declare class PickerModalImpl<TItem, TId> extends PickerModalBase<TItem, TId> {
|
|
4
|
+
export declare class PickerModalImpl<TItem, TId extends DataSourceItemId> 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> extends React.Component<PickerModalProps<TItem, TId>> {
|
|
9
|
+
export declare class PickerModal<TItem, TId extends DataSourceItemId> 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,EAAQ,MAAM,gBAAgB,CAAC;
|
|
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,EAAE,gBAAgB,EAAQ,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAA4B,MAAM,sBAAsB,CAAC;AAUnG,qBAAa,eAAe,CAAC,KAAK,EAAE,GAAG,SAAS,gBAAgB,CAAE,SAAQ,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC;IACjG,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,SAAS,gBAAgB,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC/G,KAAK;;MAA0C;IAC/C,IAAI,sCAA2B;IAE/B,MAAM;CAOT"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { DataTableCellProps } from '@epam/uui-core';
|
|
3
3
|
import { DataTableCellMods } from './types';
|
|
4
|
-
export declare class DataTableCell<TItem, TId> extends React.Component<DataTableCellProps<TItem, TId> & DataTableCellMods> {
|
|
4
|
+
export declare class DataTableCell<TItem, TId, TCellValue> extends React.Component<DataTableCellProps<TItem, TId, TCellValue> & DataTableCellMods> {
|
|
5
5
|
hasDepsWidgets: boolean;
|
|
6
6
|
isDraggable: () => boolean;
|
|
7
7
|
getContent: () => JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAkB,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEpE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAO5C,qBAAa,aAAa,CAAC,KAAK,EAAE,GAAG,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAkB,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEpE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAO5C,qBAAa,aAAa,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,CAAE,SAAQ,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAG,iBAAiB,CAAC;IACtI,cAAc,UAA+E;IAE7F,WAAW,gBAA6C;IAExD,UAAU,oBAsCT;IAED,MAAM;CAmBT"}
|
|
@@ -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, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "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, "
|
|
8
|
+
export declare const Tag: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TagMods, "link" | "isDisabled" | "onClick" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "count" | "isLinkActive" | "tabIndex" | "cx" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "rawProps" | "size" | "forwardedRef" | "clearIcon" | "captionCX"> & import("react").RefAttributes<any>>;
|
|
9
9
|
//# sourceMappingURL=Tag.d.ts.map
|