@epam/uui 4.11.0-alpha.0 → 4.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/buttonLayout.scss +66 -66
- package/assets/styles/controlLayout.scss +27 -27
- package/assets/styles/effects.scss +9 -9
- package/assets/styles/font-faces.scss +51 -51
- package/assets/styles/icons.scss +18 -18
- package/assets/styles/index.scss +7 -7
- package/assets/styles/inputs.scss +69 -69
- package/assets/styles/layout-mixins.scss +8 -8
- package/assets/styles/prettifyScrollBar.scss +52 -52
- package/assets/styles/text-layout.scss +80 -80
- package/assets/styles/text-size.scss +37 -37
- package/assets/styles/typography-mixins.scss +159 -0
- package/assets/styles/typography.scss +38 -3
- package/assets/styles/variables/widgets/badge.scss +50 -50
- package/components/buttons/Button/Button.d.ts +12 -12
- package/components/buttons/Button/Button.test.d.ts +1 -1
- package/components/buttons/Button/index.d.ts +1 -1
- package/components/buttons/IconButton.d.ts +9 -9
- package/components/buttons/LinkButton.d.ts +7 -7
- package/components/buttons/TabButton.d.ts +7 -7
- package/components/buttons/VerticalTabButton.d.ts +4 -4
- package/components/buttons/helper.d.ts +2 -2
- package/components/buttons/index.d.ts +5 -5
- package/components/datePickers/Calendar.d.ts +4 -4
- package/components/datePickers/CalendarPresets.d.ts +3 -3
- package/components/datePickers/DatePicker.d.ts +12 -12
- package/components/datePickers/DatePickerBody.d.ts +3 -3
- package/components/datePickers/RangeDatePicker.d.ts +12 -12
- package/components/datePickers/RangeDatePickerBody.d.ts +3 -3
- package/components/datePickers/index.d.ts +5 -5
- package/components/dnd/DropMarker.d.ts +8 -8
- package/components/dnd/index.d.ts +1 -1
- package/components/filters/FilterDataPickerBody.d.ts +14 -0
- package/components/filters/FilterDataPickerBody.d.ts.map +1 -0
- package/components/filters/FilterItemBody.d.ts +3 -0
- package/components/filters/FilterItemBody.d.ts.map +1 -0
- package/components/filters/FilterNumericBody.d.ts +13 -0
- package/components/filters/FilterNumericBody.d.ts.map +1 -0
- package/components/filters/FilterPanelItemToggler.d.ts +13 -0
- package/components/filters/FilterPanelItemToggler.d.ts.map +1 -0
- package/components/filters/FilterPickerBody.d.ts +20 -0
- package/components/filters/FilterPickerBody.d.ts.map +1 -0
- package/components/filters/FilterRangeDatePickerBody.d.ts +19 -0
- package/components/filters/FilterRangeDatePickerBody.d.ts.map +1 -0
- package/components/filters/FiltersPanel.d.ts +9 -0
- package/components/filters/FiltersPanel.d.ts.map +1 -0
- package/components/filters/FiltersPanelItem.d.ts +8 -0
- package/components/filters/FiltersPanelItem.d.ts.map +1 -0
- package/components/filters/PresetPanel/Preset.d.ts +9 -0
- package/components/filters/PresetPanel/Preset.d.ts.map +1 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.d.ts +10 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.d.ts.map +1 -0
- package/components/filters/PresetPanel/PresetInput.d.ts +9 -0
- package/components/filters/PresetPanel/PresetInput.d.ts.map +1 -0
- package/components/filters/PresetPanel/PresetsPanel.d.ts +7 -0
- package/components/filters/PresetPanel/PresetsPanel.d.ts.map +1 -0
- package/components/filters/PresetPanel/index.d.ts +2 -0
- package/components/filters/PresetPanel/index.d.ts.map +1 -0
- package/components/filters/defaultPredicates.d.ts +5 -0
- package/components/filters/defaultPredicates.d.ts.map +1 -0
- package/components/filters/index.d.ts +5 -0
- package/components/filters/index.d.ts.map +1 -0
- package/components/forms/Form.d.ts +4 -0
- package/components/forms/Form.d.ts.map +1 -0
- package/components/forms/index.d.ts +3 -0
- package/components/forms/index.d.ts.map +1 -0
- package/components/forms/useForm.d.ts +3 -0
- package/components/forms/useForm.d.ts.map +1 -0
- package/components/index.d.ts +14 -11
- package/components/index.d.ts.map +1 -1
- package/components/inputs/Checkbox.d.ts +8 -8
- package/components/inputs/MultiSwitch.d.ts +15 -15
- package/components/inputs/NumericInput.d.ts +8 -8
- package/components/inputs/RadioInput.d.ts +6 -6
- package/components/inputs/Switch.d.ts +6 -6
- package/components/inputs/TextArea.d.ts +9 -9
- package/components/inputs/TextInput.d.ts +12 -12
- package/components/inputs/index.d.ts +7 -7
- package/components/layout/Accordion.d.ts +6 -7
- package/components/layout/Accordion.d.ts.map +1 -1
- package/components/layout/Blocker.d.ts +4 -0
- package/components/layout/Blocker.d.ts.map +1 -0
- package/components/layout/CheckboxGroup.d.ts +3 -0
- package/components/layout/CheckboxGroup.d.ts.map +1 -0
- package/components/layout/ControlGroup.d.ts +2 -2
- package/components/layout/FlexItems/FlexCell.d.ts +11 -11
- package/components/layout/FlexItems/FlexRow.d.ts +16 -16
- package/components/layout/FlexItems/FlexSpacer.d.ts +4 -4
- package/components/layout/FlexItems/Panel.d.ts +7 -7
- package/components/layout/FlexItems/index.d.ts +4 -4
- package/components/layout/LabeledInput.d.ts +5 -5
- package/components/layout/RadioGroup.d.ts +2 -2
- package/components/layout/ScrollBars.d.ts +3 -3
- package/components/layout/VirtualList.d.ts +2 -2
- package/components/layout/index.d.ts +10 -8
- package/components/layout/index.d.ts.map +1 -1
- package/components/navigation/MainMenu/Burger/Burger.d.ts +6 -0
- package/components/navigation/MainMenu/Burger/Burger.d.ts.map +1 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.d.ts +8 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.d.ts.map +1 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts +5 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts.map +1 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.d.ts +5 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.d.ts.map +1 -0
- package/components/navigation/MainMenu/Burger/index.d.ts +5 -0
- package/components/navigation/MainMenu/Burger/index.d.ts.map +1 -0
- package/components/navigation/MainMenu/GlobalMenu.d.ts +6 -0
- package/components/navigation/MainMenu/GlobalMenu.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenu.d.ts +5 -0
- package/components/navigation/MainMenu/MainMenu.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenuAvatar.d.ts +8 -0
- package/components/navigation/MainMenu/MainMenuAvatar.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenuButton.d.ts +7 -0
- package/components/navigation/MainMenu/MainMenuButton.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenuDropdown.d.ts +6 -0
- package/components/navigation/MainMenu/MainMenuDropdown.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenuIcon.d.ts +8 -0
- package/components/navigation/MainMenu/MainMenuIcon.d.ts.map +1 -0
- package/components/navigation/MainMenu/MainMenuSearch.d.ts +7 -0
- package/components/navigation/MainMenu/MainMenuSearch.d.ts.map +1 -0
- package/components/navigation/MainMenu/index.d.ts +9 -0
- package/components/navigation/MainMenu/index.d.ts.map +1 -0
- package/components/navigation/index.d.ts +2 -0
- package/components/navigation/index.d.ts.map +1 -0
- package/components/overlays/Alert.d.ts +24 -0
- package/components/overlays/Alert.d.ts.map +1 -0
- package/components/overlays/ConfirmationModal.d.ts +11 -0
- package/components/overlays/ConfirmationModal.d.ts.map +1 -0
- package/components/overlays/Dropdown.d.ts +5 -5
- package/components/overlays/DropdownContainer.d.ts +8 -5
- package/components/overlays/DropdownContainer.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts +33 -33
- package/components/overlays/Modals.d.ts +19 -22
- package/components/overlays/Modals.d.ts.map +1 -1
- package/components/overlays/NotificationCard.d.ts +25 -30
- package/components/overlays/NotificationCard.d.ts.map +1 -1
- package/components/overlays/Tooltip.d.ts +5 -5
- package/components/overlays/index.d.ts +7 -6
- package/components/overlays/index.d.ts.map +1 -1
- package/components/pickers/DataPickerBody.d.ts +16 -16
- package/components/pickers/DataPickerFooter.d.ts +8 -8
- package/components/pickers/DataPickerHeader.d.ts +7 -7
- package/components/pickers/DataPickerRow.d.ts +15 -15
- package/components/pickers/MobileDropdownWrapper.d.ts +10 -10
- package/components/pickers/PickerInput.d.ts +16 -16
- package/components/pickers/PickerItem.d.ts +13 -13
- package/components/pickers/PickerList.d.ts +17 -17
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/pickers/PickerListItem.d.ts +8 -8
- package/components/pickers/PickerModal.d.ts +16 -16
- package/components/pickers/PickerToggler.d.ts +7 -7
- package/components/pickers/index.d.ts +11 -11
- package/components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts +13 -13
- package/components/tables/ColumnHeaderDropdown/SortingPanel.d.ts +7 -7
- package/components/tables/ColumnHeaderDropdown/index.d.ts +1 -1
- package/components/tables/DataTable.d.ts +15 -15
- package/components/tables/DataTable.d.ts.map +1 -1
- package/components/tables/DataTableCell.d.ts +4 -4
- package/components/tables/DataTableCell.d.ts.map +1 -1
- package/components/tables/DataTableHeaderCell.d.ts +18 -18
- package/components/tables/DataTableHeaderRow.d.ts +4 -4
- package/components/tables/DataTableRow.d.ts +10 -10
- package/components/tables/columnsConfigurationModal/ColumnRow.d.ts +6 -6
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts +9 -9
- package/components/tables/columnsConfigurationModal/PinIconButton.d.ts +9 -9
- package/components/tables/columnsConfigurationModal/index.d.ts +1 -1
- package/components/tables/index.d.ts +8 -8
- package/components/tables/types.d.ts +31 -31
- package/components/types.d.ts +34 -32
- package/components/types.d.ts.map +1 -1
- package/components/typography/RichTextView.d.ts +7 -0
- package/components/typography/RichTextView.d.ts.map +1 -0
- package/components/typography/Text.d.ts +11 -11
- package/components/typography/Text.d.ts.map +1 -1
- package/components/typography/TextPlaceholder.d.ts +9 -7
- package/components/typography/TextPlaceholder.d.ts.map +1 -1
- package/components/typography/index.d.ts +3 -2
- package/components/typography/index.d.ts.map +1 -1
- package/components/widgets/Avatar.d.ts +2 -2
- package/components/widgets/Badge.d.ts +14 -14
- package/components/widgets/Spinner.d.ts +6 -0
- package/components/widgets/Spinner.d.ts.map +1 -0
- package/components/widgets/Tag.d.ts +8 -8
- package/components/widgets/index.d.ts +4 -3
- package/components/widgets/index.d.ts.map +1 -1
- package/helpers/index.d.ts +3 -0
- package/helpers/index.d.ts.map +1 -0
- package/helpers/textLayout.d.ts +8 -8
- package/helpers/useColumnsWithFilters.d.ts +3 -0
- package/helpers/useColumnsWithFilters.d.ts.map +1 -0
- package/i18n.d.ts +103 -90
- package/i18n.d.ts.map +1 -1
- package/icons/icons.d.ts +3 -3
- package/index.d.ts +4 -3
- package/index.d.ts.map +1 -1
- package/index.js +2771 -1684
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/readme.md +4 -4
- package/stats.html +1 -1
- package/styles.css +8578 -2507
- package/styles.css.map +1 -1
- package/assets/styles/fonts-variables.scss +0 -24
- package/assets/styles/variables/layout/accordion.scss +0 -10
- package/assets/styles/variables/overlays/dropdownContainer.scss +0 -5
- package/assets/styles/variables/overlays/notificationCard.scss +0 -28
- package/assets/styles/variables/typography/text.scss +0 -19
- package/assets/styles/variables/typography/textPlaceholder.scss +0 -4
- package/components/layout/IconContainer.d.ts +0 -8
- package/components/layout/IconContainer.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../components/overlays/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,oBAAoB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE3H,OAAO,EAAuB,OAAO,EAAY,MAAM,WAAW,CAAC;AAMnE,
|
|
1
|
+
{"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../components/overlays/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,oBAAoB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE3H,OAAO,EAAuB,OAAO,EAAY,MAAM,WAAW,CAAC;AAMnE,eAAO,MAAM,YAAY,6HAGnB,CAAC;AAEP,MAAM,WAAW,eAAe;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B;AAED,eAAO,MAAM,WAAW,8IAWvB,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAiBT;AAED,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAaT"}
|
|
@@ -1,31 +1,26 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { INotification, Icon, IHasChildren, IHasCX, UuiContexts } from '@epam/uui-core';
|
|
3
|
-
import '
|
|
4
|
-
|
|
5
|
-
name: string;
|
|
6
|
-
action: () => void;
|
|
7
|
-
}
|
|
8
|
-
export interface DefaultNotificationProps extends INotification, IHasChildren, IHasCX {
|
|
9
|
-
actions?:
|
|
10
|
-
}
|
|
11
|
-
export interface NotificationCardProps extends DefaultNotificationProps {
|
|
12
|
-
icon?: Icon;
|
|
13
|
-
color
|
|
14
|
-
}
|
|
15
|
-
export declare
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export
|
|
26
|
-
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
27
|
-
context: UuiContexts;
|
|
28
|
-
render(): JSX.Element;
|
|
29
|
-
}
|
|
30
|
-
export {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { INotification, Icon, IHasChildren, IHasCX, UuiContexts, IHasRawProps } from '@epam/uui-core';
|
|
3
|
+
import { SemanticColor } from '../types';
|
|
4
|
+
interface NotificationAction extends IHasRawProps<React.ButtonHTMLAttributes<HTMLButtonElement>> {
|
|
5
|
+
name: string;
|
|
6
|
+
action: () => void;
|
|
7
|
+
}
|
|
8
|
+
export interface DefaultNotificationProps extends INotification, IHasChildren, IHasCX, IHasRawProps<React.HTMLAttributes<HTMLDivElement>> {
|
|
9
|
+
actions?: NotificationAction[];
|
|
10
|
+
}
|
|
11
|
+
export interface NotificationCardProps extends DefaultNotificationProps {
|
|
12
|
+
icon?: Icon;
|
|
13
|
+
color?: SemanticColor;
|
|
14
|
+
}
|
|
15
|
+
export declare const NotificationCard: React.ForwardRefExoticComponent<NotificationCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export declare const WarningNotification: React.ForwardRefExoticComponent<DefaultNotificationProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
export declare const SuccessNotification: React.ForwardRefExoticComponent<DefaultNotificationProps & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
export declare const HintNotification: React.ForwardRefExoticComponent<DefaultNotificationProps & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export declare const ErrorNotification: React.ForwardRefExoticComponent<DefaultNotificationProps & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
export declare class ClearNotification extends React.Component<{}> {
|
|
21
|
+
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
22
|
+
context: UuiContexts;
|
|
23
|
+
render(): JSX.Element;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
31
26
|
//# sourceMappingURL=NotificationCard.d.ts.map
|
|
@@ -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;
|
|
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,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAElH,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AASzC,UAAU,kBAAmB,SAAQ,YAAY,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;IAC5F,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,MAAM,WAAW,wBAAyB,SAAQ,aAAa,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IACrI,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB;IACnE,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,KAAK,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,eAAO,MAAM,gBAAgB,8FAuD3B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,mBAAmB,iGAE9B,CAAC;AAEH,eAAO,MAAM,gBAAgB,iGAE3B,CAAC;AAEH,eAAO,MAAM,iBAAiB,iGAE5B,CAAC;AAEH,qBAAa,iBAAkB,SAAQ,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;IACtD,OAAc,WAAW,mEAAc;IAChC,OAAO,EAAE,WAAW,CAAC;IAE5B,MAAM;CAMT"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TooltipProps } from '@epam/uui-components';
|
|
2
|
-
export interface TooltipMods {
|
|
3
|
-
color?: 'default' | 'contrast' | 'critical';
|
|
4
|
-
}
|
|
5
|
-
export declare const Tooltip: (props: TooltipProps & TooltipMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
1
|
+
import { TooltipProps } from '@epam/uui-components';
|
|
2
|
+
export interface TooltipMods {
|
|
3
|
+
color?: 'default' | 'contrast' | 'critical';
|
|
4
|
+
}
|
|
5
|
+
export declare const Tooltip: (props: TooltipProps & TooltipMods & import("react").RefAttributes<any>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
6
6
|
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './
|
|
1
|
+
export * from './Alert';
|
|
2
|
+
export * from './Dropdown';
|
|
3
|
+
export * from './DropdownContainer';
|
|
4
|
+
export * from './DropdownMenu';
|
|
5
|
+
export * from './Modals';
|
|
6
|
+
export * from './NotificationCard';
|
|
7
|
+
export * from './Tooltip';
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/overlays/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/overlays/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { DataSourceState } from '@epam/uui-core';
|
|
3
|
-
import { PickerBodyBase, PickerBodyBaseProps } from '@epam/uui-components';
|
|
4
|
-
import { ControlSize } from '../types';
|
|
5
|
-
export interface DataPickerBodyProps extends PickerBodyBaseProps {
|
|
6
|
-
maxHeight?: number;
|
|
7
|
-
editMode?: 'dropdown' | 'modal';
|
|
8
|
-
searchSize?: ControlSize;
|
|
9
|
-
selectionMode?: 'single' | 'multi';
|
|
10
|
-
}
|
|
11
|
-
export declare class DataPickerBody extends PickerBodyBase<DataPickerBodyProps> {
|
|
12
|
-
lens: import("@epam/uui-core").ILens<DataSourceState<Record<string, any>, any>>;
|
|
13
|
-
searchLens: import("@epam/uui-core").ILens<string>;
|
|
14
|
-
renderNotFound(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
15
|
-
render(): JSX.Element;
|
|
16
|
-
}
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DataSourceState } from '@epam/uui-core';
|
|
3
|
+
import { PickerBodyBase, PickerBodyBaseProps } from '@epam/uui-components';
|
|
4
|
+
import { ControlSize } from '../types';
|
|
5
|
+
export interface DataPickerBodyProps extends PickerBodyBaseProps {
|
|
6
|
+
maxHeight?: number;
|
|
7
|
+
editMode?: 'dropdown' | 'modal';
|
|
8
|
+
searchSize?: ControlSize;
|
|
9
|
+
selectionMode?: 'single' | 'multi';
|
|
10
|
+
}
|
|
11
|
+
export declare class DataPickerBody extends PickerBodyBase<DataPickerBodyProps> {
|
|
12
|
+
lens: import("@epam/uui-core").ILens<DataSourceState<Record<string, any>, any>>;
|
|
13
|
+
searchLens: import("@epam/uui-core").ILens<string>;
|
|
14
|
+
renderNotFound(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
15
|
+
render(): JSX.Element;
|
|
16
|
+
}
|
|
17
17
|
//# sourceMappingURL=DataPickerBody.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React, { PropsWithChildren } from 'react';
|
|
2
|
-
import { PickerFooterProps } from "@epam/uui-core";
|
|
3
|
-
import { SizeMod } from '../types';
|
|
4
|
-
type DataPickerFooterProps<TItem, TId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
5
|
-
hideShowOnlySelected?: boolean;
|
|
6
|
-
};
|
|
7
|
-
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId>(props: React.PropsWithChildren<DataPickerFooterProps<TItem, TId>>) => JSX.Element)>;
|
|
8
|
-
export {};
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
|
+
import { PickerFooterProps } from "@epam/uui-core";
|
|
3
|
+
import { SizeMod } from '../types';
|
|
4
|
+
type DataPickerFooterProps<TItem, TId> = PickerFooterProps<TItem, TId> & SizeMod & {
|
|
5
|
+
hideShowOnlySelected?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export declare const DataPickerFooter: React.MemoExoticComponent<(<TItem, TId>(props: React.PropsWithChildren<DataPickerFooterProps<TItem, TId>>) => JSX.Element)>;
|
|
8
|
+
export {};
|
|
9
9
|
//# sourceMappingURL=DataPickerFooter.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
interface DataPickerHeaderProps {
|
|
3
|
-
title?: string;
|
|
4
|
-
close?: () => void;
|
|
5
|
-
}
|
|
6
|
-
export declare const DataPickerHeader: React.NamedExoticComponent<DataPickerHeaderProps>;
|
|
7
|
-
export {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface DataPickerHeaderProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
close?: () => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const DataPickerHeader: React.NamedExoticComponent<DataPickerHeaderProps>;
|
|
7
|
+
export {};
|
|
8
8
|
//# sourceMappingURL=DataPickerHeader.d.ts.map
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataRowProps, DataColumnProps } from '@epam/uui-core';
|
|
3
|
-
export interface DataPickerRowProps<TItem, TId> extends DataRowProps<TItem, TId> {
|
|
4
|
-
renderItem(item: TItem, rowProps: DataRowProps<TItem, TId>): React.ReactNode;
|
|
5
|
-
padding?: '12' | '24';
|
|
6
|
-
size?: 'none' | '24' | '30' | '36' | '42' | '48' | '60';
|
|
7
|
-
borderBottom?: 'none' | 'gray20';
|
|
8
|
-
alignActions?: 'top' | 'center';
|
|
9
|
-
}
|
|
10
|
-
export declare class DataPickerRow<TItem, TId> extends React.Component<DataPickerRowProps<TItem, TId>> {
|
|
11
|
-
private getIcon;
|
|
12
|
-
column: DataColumnProps<TItem>;
|
|
13
|
-
renderContent: () => JSX.Element;
|
|
14
|
-
render(): JSX.Element;
|
|
15
|
-
}
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { DataRowProps, DataColumnProps } from '@epam/uui-core';
|
|
3
|
+
export interface DataPickerRowProps<TItem, TId> extends DataRowProps<TItem, TId> {
|
|
4
|
+
renderItem(item: TItem, rowProps: DataRowProps<TItem, TId>): React.ReactNode;
|
|
5
|
+
padding?: '12' | '24';
|
|
6
|
+
size?: 'none' | '24' | '30' | '36' | '42' | '48' | '60';
|
|
7
|
+
borderBottom?: 'none' | 'gray20';
|
|
8
|
+
alignActions?: 'top' | 'center';
|
|
9
|
+
}
|
|
10
|
+
export declare class DataPickerRow<TItem, TId> extends React.Component<DataPickerRowProps<TItem, TId>> {
|
|
11
|
+
private getIcon;
|
|
12
|
+
column: DataColumnProps<TItem>;
|
|
13
|
+
renderContent: () => JSX.Element;
|
|
14
|
+
render(): JSX.Element;
|
|
15
|
+
}
|
|
16
16
|
//# sourceMappingURL=DataPickerRow.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import React, { ReactNode } from 'react';
|
|
2
|
-
import { ControlSize } from '../types';
|
|
3
|
-
interface IMobileDropdownWrapperProps {
|
|
4
|
-
children: ReactNode;
|
|
5
|
-
size?: ControlSize;
|
|
6
|
-
close?: () => void;
|
|
7
|
-
title?: string;
|
|
8
|
-
}
|
|
9
|
-
export declare const MobileDropdownWrapper: React.FC<IMobileDropdownWrapperProps>;
|
|
10
|
-
export {};
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
import { ControlSize } from '../types';
|
|
3
|
+
interface IMobileDropdownWrapperProps {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
size?: ControlSize;
|
|
6
|
+
close?: () => void;
|
|
7
|
+
title?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const MobileDropdownWrapper: React.FC<IMobileDropdownWrapperProps>;
|
|
10
|
+
export {};
|
|
11
11
|
//# sourceMappingURL=MobileDropdownWrapper.d.ts.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { DataRowProps, DataSourceListProps, DropdownBodyProps, IDropdownToggler } from '@epam/uui-core';
|
|
3
|
-
import { PickerBodyBaseProps, PickerInputBase, PickerTogglerProps } from '@epam/uui-components';
|
|
4
|
-
import { PickerTogglerMods } from './PickerToggler';
|
|
5
|
-
import { IHasEditMode, SizeMod } from '../types';
|
|
6
|
-
export type PickerInputProps = SizeMod & IHasEditMode & {};
|
|
7
|
-
export declare class PickerInput<TItem, TId> extends PickerInputBase<TItem, TId, PickerInputProps> {
|
|
8
|
-
toggleModalOpening(opened: boolean): void;
|
|
9
|
-
getRowSize(): import("../types").ControlSize;
|
|
10
|
-
renderItem: (item: TItem, rowProps: DataRowProps<TItem, TId>) => JSX.Element;
|
|
11
|
-
renderRow: (rowProps: DataRowProps<TItem, TId>) => string | number | boolean | React.ReactFragment | JSX.Element;
|
|
12
|
-
getTogglerMods(): PickerTogglerMods;
|
|
13
|
-
renderFooter(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
14
|
-
renderTarget(targetProps: IDropdownToggler & PickerTogglerProps<TItem, TId>): JSX.Element;
|
|
15
|
-
renderBody(props: DropdownBodyProps & DataSourceListProps & Omit<PickerBodyBaseProps, 'rows'>, rows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
16
|
-
}
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DataRowProps, DataSourceListProps, DropdownBodyProps, IDropdownToggler } from '@epam/uui-core';
|
|
3
|
+
import { PickerBodyBaseProps, PickerInputBase, PickerTogglerProps } from '@epam/uui-components';
|
|
4
|
+
import { PickerTogglerMods } from './PickerToggler';
|
|
5
|
+
import { IHasEditMode, SizeMod } from '../types';
|
|
6
|
+
export type PickerInputProps = SizeMod & IHasEditMode & {};
|
|
7
|
+
export declare class PickerInput<TItem, TId> extends PickerInputBase<TItem, TId, PickerInputProps> {
|
|
8
|
+
toggleModalOpening(opened: boolean): void;
|
|
9
|
+
getRowSize(): import("../types").ControlSize;
|
|
10
|
+
renderItem: (item: TItem, rowProps: DataRowProps<TItem, TId>) => JSX.Element;
|
|
11
|
+
renderRow: (rowProps: DataRowProps<TItem, TId>) => string | number | boolean | React.ReactFragment | JSX.Element;
|
|
12
|
+
getTogglerMods(): PickerTogglerMods;
|
|
13
|
+
renderFooter(): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
14
|
+
renderTarget(targetProps: IDropdownToggler & PickerTogglerProps<TItem, TId>): JSX.Element;
|
|
15
|
+
renderBody(props: DropdownBodyProps & DataSourceListProps & Omit<PickerBodyBaseProps, 'rows'>, rows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
16
|
+
}
|
|
17
17
|
//# sourceMappingURL=PickerInput.d.ts.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataRowProps, Icon } from '@epam/uui-core';
|
|
3
|
-
import { SizeMod } from '../types';
|
|
4
|
-
export interface PickerItemProps<TItem, TId> extends DataRowProps<TItem, TId>, SizeMod {
|
|
5
|
-
avatarUrl?: string;
|
|
6
|
-
icon?: Icon;
|
|
7
|
-
title?: string;
|
|
8
|
-
subtitle?: string;
|
|
9
|
-
}
|
|
10
|
-
export declare class PickerItem<TItem, TId> extends React.Component<PickerItemProps<TItem, TId>> {
|
|
11
|
-
getAvatarSize: (size: string, isMultiline: boolean) => string | number;
|
|
12
|
-
render(): JSX.Element;
|
|
13
|
-
}
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { DataRowProps, Icon } from '@epam/uui-core';
|
|
3
|
+
import { SizeMod } from '../types';
|
|
4
|
+
export interface PickerItemProps<TItem, TId> extends DataRowProps<TItem, TId>, SizeMod {
|
|
5
|
+
avatarUrl?: string;
|
|
6
|
+
icon?: Icon;
|
|
7
|
+
title?: string;
|
|
8
|
+
subtitle?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class PickerItem<TItem, TId> extends React.Component<PickerItemProps<TItem, TId>> {
|
|
11
|
+
getAvatarSize: (size: string, isMultiline: boolean) => string | number;
|
|
12
|
+
render(): JSX.Element;
|
|
13
|
+
}
|
|
14
14
|
//# sourceMappingURL=PickerItem.d.ts.map
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PickerListBase, PickerModalOptions } from '@epam/uui-components';
|
|
3
|
-
import { DataRowProps, IClickable, IHasCaption, IHasPlaceholder, UuiContexts } from '@epam/uui-core';
|
|
4
|
-
import { SizeMod } from '../types';
|
|
5
|
-
export type PickerListProps<TItem, TId> = SizeMod & IHasPlaceholder & PickerModalOptions<TItem, TId> & {
|
|
6
|
-
renderModalToggler?(props: IClickable & IHasCaption, selection: DataRowProps<TItem, TId>[]): React.ReactNode;
|
|
7
|
-
noOptionsMessage?: React.ReactNode;
|
|
8
|
-
};
|
|
9
|
-
export declare class PickerList<TItem, TId> extends PickerListBase<TItem, TId, PickerListProps<TItem, TId>> {
|
|
10
|
-
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
11
|
-
sessionStartTime: number;
|
|
12
|
-
context: UuiContexts;
|
|
13
|
-
renderRow: (row: DataRowProps<TItem, TId>) => JSX.Element;
|
|
14
|
-
handleShowPicker: () => void;
|
|
15
|
-
defaultRenderToggler: (props: IClickable) => JSX.Element;
|
|
16
|
-
render(): JSX.Element;
|
|
17
|
-
}
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PickerListBase, PickerModalOptions } from '@epam/uui-components';
|
|
3
|
+
import { DataRowProps, IClickable, IHasCaption, IHasPlaceholder, UuiContexts } from '@epam/uui-core';
|
|
4
|
+
import { SizeMod } from '../types';
|
|
5
|
+
export type PickerListProps<TItem, TId> = SizeMod & IHasPlaceholder & PickerModalOptions<TItem, TId> & {
|
|
6
|
+
renderModalToggler?(props: IClickable & IHasCaption, selection: DataRowProps<TItem, TId>[]): React.ReactNode;
|
|
7
|
+
noOptionsMessage?: React.ReactNode;
|
|
8
|
+
};
|
|
9
|
+
export declare class PickerList<TItem, TId> extends PickerListBase<TItem, TId, PickerListProps<TItem, TId>> {
|
|
10
|
+
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
11
|
+
sessionStartTime: number;
|
|
12
|
+
context: UuiContexts;
|
|
13
|
+
renderRow: (row: DataRowProps<TItem, TId>) => JSX.Element;
|
|
14
|
+
handleShowPicker: () => void;
|
|
15
|
+
defaultRenderToggler: (props: IClickable) => JSX.Element;
|
|
16
|
+
render(): JSX.Element;
|
|
17
|
+
}
|
|
18
18
|
//# sourceMappingURL=PickerList.d.ts.map
|
|
@@ -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,
|
|
1
|
+
{"version":3,"file":"PickerList.d.ts","sourceRoot":"","sources":["../../../components/pickers/PickerList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA0B,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAClG,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"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { DataRowProps } from '@epam/uui-core';
|
|
3
|
-
export interface PickerListItemProps<TItem, TId> extends DataRowProps<TItem, TId> {
|
|
4
|
-
getName(item: TItem): string;
|
|
5
|
-
}
|
|
6
|
-
export declare class PickerListItem<TItem, TId> extends React.Component<PickerListItemProps<TItem, TId>> {
|
|
7
|
-
render(): JSX.Element;
|
|
8
|
-
}
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DataRowProps } from '@epam/uui-core';
|
|
3
|
+
export interface PickerListItemProps<TItem, TId> extends DataRowProps<TItem, TId> {
|
|
4
|
+
getName(item: TItem): string;
|
|
5
|
+
}
|
|
6
|
+
export declare class PickerListItem<TItem, TId> extends React.Component<PickerListItemProps<TItem, TId>> {
|
|
7
|
+
render(): JSX.Element;
|
|
8
|
+
}
|
|
9
9
|
//# sourceMappingURL=PickerListItem.d.ts.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataRowProps } from '@epam/uui-core';
|
|
3
|
-
import { PickerModalBase, PickerModalProps } from '@epam/uui-components';
|
|
4
|
-
export declare class PickerModalImpl<TItem, TId> extends PickerModalBase<TItem, TId> {
|
|
5
|
-
renderRow(rowProps: DataRowProps<TItem, TId>): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
6
|
-
renderFooter(selectedDataRows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
7
|
-
renderNotFound: () => string | number | boolean | React.ReactFragment | JSX.Element;
|
|
8
|
-
render(): JSX.Element;
|
|
9
|
-
}
|
|
10
|
-
export declare class PickerModal<TItem, TId> extends React.Component<PickerModalProps<TItem, TId>> {
|
|
11
|
-
state: {
|
|
12
|
-
selection: TItem | TId | TId[] | TItem[];
|
|
13
|
-
};
|
|
14
|
-
lens: import("@epam/uui-core").ILens<any>;
|
|
15
|
-
render(): JSX.Element;
|
|
16
|
-
}
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { DataRowProps } from '@epam/uui-core';
|
|
3
|
+
import { PickerModalBase, PickerModalProps } from '@epam/uui-components';
|
|
4
|
+
export declare class PickerModalImpl<TItem, TId> extends PickerModalBase<TItem, TId> {
|
|
5
|
+
renderRow(rowProps: DataRowProps<TItem, TId>): string | number | boolean | React.ReactFragment | JSX.Element;
|
|
6
|
+
renderFooter(selectedDataRows: DataRowProps<TItem, TId>[]): JSX.Element;
|
|
7
|
+
renderNotFound: () => string | number | boolean | React.ReactFragment | JSX.Element;
|
|
8
|
+
render(): JSX.Element;
|
|
9
|
+
}
|
|
10
|
+
export declare class PickerModal<TItem, TId> extends React.Component<PickerModalProps<TItem, TId>> {
|
|
11
|
+
state: {
|
|
12
|
+
selection: TItem | TId | TId[] | TItem[];
|
|
13
|
+
};
|
|
14
|
+
lens: import("@epam/uui-core").ILens<any>;
|
|
15
|
+
render(): JSX.Element;
|
|
16
|
+
}
|
|
17
17
|
//# sourceMappingURL=PickerModal.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { PickerTogglerProps } from '@epam/uui-components';
|
|
3
|
-
import * as types from '../types';
|
|
4
|
-
export interface PickerTogglerMods extends types.IHasEditMode {
|
|
5
|
-
size?: '24' | '30' | '36' | '42' | '48';
|
|
6
|
-
}
|
|
7
|
-
export declare const PickerToggler: <TItem, TId>(props: PickerTogglerProps<TItem, TId> & PickerTogglerMods, ref: React.ForwardedRef<HTMLElement>) => JSX.Element;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { PickerTogglerProps } from '@epam/uui-components';
|
|
3
|
+
import * as types from '../types';
|
|
4
|
+
export interface PickerTogglerMods extends types.IHasEditMode {
|
|
5
|
+
size?: '24' | '30' | '36' | '42' | '48';
|
|
6
|
+
}
|
|
7
|
+
export declare const PickerToggler: <TItem, TId>(props: PickerTogglerProps<TItem, TId> & PickerTogglerMods, ref: React.ForwardedRef<HTMLElement>) => JSX.Element;
|
|
8
8
|
//# sourceMappingURL=PickerToggler.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * from './DataPickerBody';
|
|
2
|
-
export * from './DataPickerFooter';
|
|
3
|
-
export * from './DataPickerHeader';
|
|
4
|
-
export * from './DataPickerRow';
|
|
5
|
-
export * from './MobileDropdownWrapper';
|
|
6
|
-
export * from './PickerInput';
|
|
7
|
-
export * from './PickerItem';
|
|
8
|
-
export * from './PickerList';
|
|
9
|
-
export * from './PickerListItem';
|
|
10
|
-
export * from './PickerModal';
|
|
11
|
-
export * from './PickerToggler';
|
|
1
|
+
export * from './DataPickerBody';
|
|
2
|
+
export * from './DataPickerFooter';
|
|
3
|
+
export * from './DataPickerHeader';
|
|
4
|
+
export * from './DataPickerRow';
|
|
5
|
+
export * from './MobileDropdownWrapper';
|
|
6
|
+
export * from './PickerInput';
|
|
7
|
+
export * from './PickerItem';
|
|
8
|
+
export * from './PickerList';
|
|
9
|
+
export * from './PickerListItem';
|
|
10
|
+
export * from './PickerModal';
|
|
11
|
+
export * from './PickerToggler';
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { IDropdownToggler, DropdownBodyProps } from '@epam/uui-core';
|
|
3
|
-
import { SortingPanelProps } from "./SortingPanel";
|
|
4
|
-
type ColumnHeaderDropdownProps = SortingPanelProps & {
|
|
5
|
-
isOpen: boolean;
|
|
6
|
-
isSortable: boolean;
|
|
7
|
-
renderTarget: (props: IDropdownToggler) => React.ReactNode;
|
|
8
|
-
renderFilter?: (dropdownProps: DropdownBodyProps) => React.ReactNode;
|
|
9
|
-
onOpenChange(nV: boolean): void;
|
|
10
|
-
title: string;
|
|
11
|
-
};
|
|
12
|
-
export declare const ColumnHeaderDropdown: React.NamedExoticComponent<ColumnHeaderDropdownProps>;
|
|
13
|
-
export {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IDropdownToggler, DropdownBodyProps } from '@epam/uui-core';
|
|
3
|
+
import { SortingPanelProps } from "./SortingPanel";
|
|
4
|
+
type ColumnHeaderDropdownProps = SortingPanelProps & {
|
|
5
|
+
isOpen: boolean;
|
|
6
|
+
isSortable: boolean;
|
|
7
|
+
renderTarget: (props: IDropdownToggler) => React.ReactNode;
|
|
8
|
+
renderFilter?: (dropdownProps: DropdownBodyProps) => React.ReactNode;
|
|
9
|
+
onOpenChange(nV: boolean): void;
|
|
10
|
+
title: string;
|
|
11
|
+
};
|
|
12
|
+
export declare const ColumnHeaderDropdown: React.NamedExoticComponent<ColumnHeaderDropdownProps>;
|
|
13
|
+
export {};
|
|
14
14
|
//# sourceMappingURL=ColumnHeaderDropdown.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { SortDirection } from "@epam/uui-core";
|
|
3
|
-
export interface SortingPanelProps {
|
|
4
|
-
sortDirection: SortDirection;
|
|
5
|
-
onSort(dir: SortDirection): void;
|
|
6
|
-
}
|
|
7
|
-
export declare const SortingPanel: React.NamedExoticComponent<SortingPanelProps>;
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SortDirection } from "@epam/uui-core";
|
|
3
|
+
export interface SortingPanelProps {
|
|
4
|
+
sortDirection: SortDirection;
|
|
5
|
+
onSort(dir: SortDirection): void;
|
|
6
|
+
}
|
|
7
|
+
export declare const SortingPanel: React.NamedExoticComponent<SortingPanelProps>;
|
|
8
8
|
//# sourceMappingURL=SortingPanel.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./ColumnHeaderDropdown";
|
|
1
|
+
export * from "./ColumnHeaderDropdown";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { PositionValues } from '@epam/uui-components';
|
|
3
|
-
import { DataRowProps, IEditable, DataTableState, DataTableColumnsConfigOptions, DataSourceListProps, DataColumnProps, TableFiltersConfig, DataTableRowProps, DataTableSelectedCellData } from '@epam/uui-core';
|
|
4
|
-
import { DataTableMods } from './';
|
|
5
|
-
export interface DataTableProps<TItem, TId, TFilter = any> extends IEditable<DataTableState>, DataSourceListProps, DataTableColumnsConfigOptions {
|
|
6
|
-
getRows(): DataRowProps<TItem, TId>[];
|
|
7
|
-
columns: DataColumnProps<TItem, TId>[];
|
|
8
|
-
renderRow?(props: DataTableRowProps<TItem, TId>): React.ReactNode;
|
|
9
|
-
renderNoResultsBlock?(): React.ReactNode;
|
|
10
|
-
onScroll?(value: PositionValues): void;
|
|
11
|
-
showColumnsConfig?: boolean;
|
|
12
|
-
filters?: TableFiltersConfig<any>[];
|
|
13
|
-
onCopy?: (copyFrom: DataTableSelectedCellData<TItem, TId, TFilter>, selectedCells: DataTableSelectedCellData<TItem, TId, TFilter>[]) => void;
|
|
14
|
-
}
|
|
15
|
-
export declare function DataTable<TItem, TId>(props: React.PropsWithChildren<DataTableProps<TItem, TId> & DataTableMods>): JSX.Element;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { PositionValues } from '@epam/uui-components';
|
|
3
|
+
import { DataRowProps, IEditable, DataTableState, DataTableColumnsConfigOptions, DataSourceListProps, DataColumnProps, TableFiltersConfig, DataTableRowProps, DataTableSelectedCellData } from '@epam/uui-core';
|
|
4
|
+
import { DataTableMods } from './';
|
|
5
|
+
export interface DataTableProps<TItem, TId, TFilter = any> extends IEditable<DataTableState>, DataSourceListProps, DataTableColumnsConfigOptions {
|
|
6
|
+
getRows(): DataRowProps<TItem, TId>[];
|
|
7
|
+
columns: DataColumnProps<TItem, TId>[];
|
|
8
|
+
renderRow?(props: DataTableRowProps<TItem, TId>): React.ReactNode;
|
|
9
|
+
renderNoResultsBlock?(): React.ReactNode;
|
|
10
|
+
onScroll?(value: PositionValues): void;
|
|
11
|
+
showColumnsConfig?: boolean;
|
|
12
|
+
filters?: TableFiltersConfig<any>[];
|
|
13
|
+
onCopy?: (copyFrom: DataTableSelectedCellData<TItem, TId, TFilter>, selectedCells: DataTableSelectedCellData<TItem, TId, TFilter>[]) => void;
|
|
14
|
+
}
|
|
15
|
+
export declare function DataTable<TItem, TId>(props: React.PropsWithChildren<DataTableProps<TItem, TId> & DataTableMods>): JSX.Element;
|
|
16
16
|
//# sourceMappingURL=DataTable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,
|
|
1
|
+
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,cAAc,EAA0E,MAAM,sBAAsB,CAAC;AAE9H,OAAO,EACY,YAAY,EAAqD,SAAS,EACzF,cAAc,EAAE,6BAA6B,EAAE,mBAAmB,EAAE,eAAe,EAC/E,kBAAkB,EAAE,iBAAiB,EAAE,yBAAyB,EACvE,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAoC,aAAa,EAA+C,MAAM,IAAI,CAAC;AAOlH,MAAM,WAAW,cAAc,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,GAAG,GAAG,CAAE,SAAQ,SAAS,CAAC,cAAc,CAAC,EAAE,mBAAmB,EAAE,6BAA6B;IAC5I,OAAO,IAAI,YAAY,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;IACtC,OAAO,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;IACvC,SAAS,CAAC,CAAC,KAAK,EAAE,iBAAiB,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC;IAClE,oBAAoB,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC;IACzC,QAAQ,CAAC,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;IACvC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,OAAO,CAAC,EAAE,kBAAkB,CAAC,GAAG,CAAC,EAAE,CAAC;IACpC,MAAM,CAAC,EAAE,CACL,QAAQ,EAAE,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EACxD,aAAa,EAAE,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,KAC9D,IAAI,CAAC;CACb;AAED,wBAAgB,SAAS,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,iBAAiB,CAAC,cAAc,CAAC,KAAK,EAAE,GAAG,CAAC,GAAG,aAAa,CAAC,eA6F/G"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { DataTableCellProps } from '@epam/uui-core';
|
|
3
|
-
import { DataTableCellMods } from './types';
|
|
4
|
-
export declare function DataTableCell<TItem, TId, TCellValue>(props: DataTableCellProps<TItem, TId, TCellValue> & DataTableCellMods): JSX.Element;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DataTableCellProps } from '@epam/uui-core';
|
|
3
|
+
import { DataTableCellMods } from './types';
|
|
4
|
+
export declare function DataTableCell<TItem, TId, TCellValue>(props: DataTableCellProps<TItem, TId, TCellValue> & DataTableCellMods): JSX.Element;
|
|
5
5
|
//# sourceMappingURL=DataTableCell.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":";AACA,OAAO,EAAc,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"DataTableCell.d.ts","sourceRoot":"","sources":["../../../components/tables/DataTableCell.tsx"],"names":[],"mappings":";AACA,OAAO,EAAc,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AA0C5C,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,KAAK,EAAE,kBAAkB,CAAC,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAG,iBAAiB,eAiC1H"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataTableHeaderCellProps, IDropdownToggler } from '@epam/uui-core';
|
|
3
|
-
import { HeaderCellContentProps } from '@epam/uui-components';
|
|
4
|
-
import { DataTableHeaderCellMods } from './';
|
|
5
|
-
interface DataTableHeaderCellState {
|
|
6
|
-
isDropdownOpen: boolean;
|
|
7
|
-
}
|
|
8
|
-
export declare class DataTableHeaderCell<TItem, TId> extends React.Component<DataTableHeaderCellProps<TItem, TId> & DataTableHeaderCellMods, DataTableHeaderCellState> {
|
|
9
|
-
state: DataTableHeaderCellState;
|
|
10
|
-
getTextStyle: () => string;
|
|
11
|
-
getColumnCaption: () => JSX.Element;
|
|
12
|
-
renderHeaderCheckbox: () => JSX.Element;
|
|
13
|
-
renderResizeMark: (props: HeaderCellContentProps) => JSX.Element;
|
|
14
|
-
renderCellContent: (props: HeaderCellContentProps, dropdownProps?: IDropdownToggler) => JSX.Element;
|
|
15
|
-
renderCellWithFilter: (props: HeaderCellContentProps) => JSX.Element;
|
|
16
|
-
render(): JSX.Element;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { DataTableHeaderCellProps, IDropdownToggler } from '@epam/uui-core';
|
|
3
|
+
import { HeaderCellContentProps } from '@epam/uui-components';
|
|
4
|
+
import { DataTableHeaderCellMods } from './';
|
|
5
|
+
interface DataTableHeaderCellState {
|
|
6
|
+
isDropdownOpen: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class DataTableHeaderCell<TItem, TId> extends React.Component<DataTableHeaderCellProps<TItem, TId> & DataTableHeaderCellMods, DataTableHeaderCellState> {
|
|
9
|
+
state: DataTableHeaderCellState;
|
|
10
|
+
getTextStyle: () => string;
|
|
11
|
+
getColumnCaption: () => JSX.Element;
|
|
12
|
+
renderHeaderCheckbox: () => JSX.Element;
|
|
13
|
+
renderResizeMark: (props: HeaderCellContentProps) => JSX.Element;
|
|
14
|
+
renderCellContent: (props: HeaderCellContentProps, dropdownProps?: IDropdownToggler) => JSX.Element;
|
|
15
|
+
renderCellWithFilter: (props: HeaderCellContentProps) => JSX.Element;
|
|
16
|
+
render(): JSX.Element;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
19
19
|
//# sourceMappingURL=DataTableHeaderCell.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataTableHeaderRowProps } from '@epam/uui-core';
|
|
3
|
-
import { DataTableHeaderRowMods } from '../';
|
|
4
|
-
export declare const DataTableHeaderRow: (props: DataTableHeaderRowProps<any, any> & DataTableHeaderRowMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { DataTableHeaderRowProps } from '@epam/uui-core';
|
|
3
|
+
import { DataTableHeaderRowMods } from '../';
|
|
4
|
+
export declare const DataTableHeaderRow: (props: DataTableHeaderRowProps<any, any> & DataTableHeaderRowMods & React.RefAttributes<any>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
5
5
|
//# sourceMappingURL=DataTableHeaderRow.d.ts.map
|