@epam/uui 4.9.0 → 4.9.2

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.
Files changed (120) hide show
  1. package/assets/styles/buttonLayout.scss +66 -66
  2. package/assets/styles/controlLayout.scss +11 -11
  3. package/assets/styles/effects.scss +8 -8
  4. package/assets/styles/font-faces.scss +51 -51
  5. package/assets/styles/fonts-variables.scss +24 -24
  6. package/assets/styles/icons.scss +18 -18
  7. package/assets/styles/index.scss +7 -7
  8. package/assets/styles/inputs.scss +69 -69
  9. package/assets/styles/layout-mixins.scss +8 -8
  10. package/assets/styles/prettifyScrollBar.scss +44 -44
  11. package/assets/styles/text-layout.scss +80 -80
  12. package/assets/styles/text-size.scss +37 -37
  13. package/assets/styles/typography.scss +3 -3
  14. package/assets/styles/variables/buttons/button.scss +70 -70
  15. package/assets/styles/variables/buttons/iconButton.scss +41 -41
  16. package/assets/styles/variables/buttons/linkButton.scss +6 -6
  17. package/assets/styles/variables/buttons/tabButton.scss +8 -8
  18. package/assets/styles/variables/inputs/checkbox.scss +18 -18
  19. package/assets/styles/variables/inputs/radioInput.scss +14 -14
  20. package/assets/styles/variables/inputs/switch.scss +24 -24
  21. package/assets/styles/variables/inputs/textInput.scss +21 -21
  22. package/assets/styles/variables/layout/accordion.scss +10 -10
  23. package/assets/styles/variables/layout/iconContainer.scss +22 -22
  24. package/assets/styles/variables/layout/labeledInput.scss +8 -8
  25. package/assets/styles/variables/layout/panel.scss +5 -5
  26. package/assets/styles/variables/layout/scrollBars.scss +3 -3
  27. package/assets/styles/variables/overlays/dropdownContainer.scss +4 -4
  28. package/assets/styles/variables/overlays/modals.scss +5 -5
  29. package/assets/styles/variables/overlays/notificationCard.scss +27 -27
  30. package/assets/styles/variables/overlays/tooltip.scss +8 -8
  31. package/assets/styles/variables/pickers/pickerToggler.scss +15 -15
  32. package/assets/styles/variables/typography/text.scss +19 -19
  33. package/assets/styles/variables/typography/textPlaceholder.scss +4 -4
  34. package/assets/styles/variables/widgets/badge.scss +50 -50
  35. package/assets/styles/variables/widgets/tag.scss +9 -9
  36. package/bundle-stats.json +1 -1
  37. package/components/buttons/Button.d.ts +13 -13
  38. package/components/buttons/IconButton.d.ts +11 -11
  39. package/components/buttons/LinkButton.d.ts +8 -8
  40. package/components/buttons/TabButton.d.ts +8 -8
  41. package/components/buttons/VerticalTabButton.d.ts +4 -4
  42. package/components/buttons/docs/button.doc.d.ts +5 -5
  43. package/components/buttons/docs/linkButton.doc.d.ts +5 -5
  44. package/components/buttons/helper.d.ts +2 -2
  45. package/components/buttons/index.d.ts +5 -5
  46. package/components/index.d.ts +9 -9
  47. package/components/inputs/Checkbox.d.ts +9 -9
  48. package/components/inputs/RadioInput.d.ts +7 -7
  49. package/components/inputs/Switch.d.ts +8 -8
  50. package/components/inputs/TextInput.d.ts +13 -13
  51. package/components/inputs/docs/checkbox.doc.d.ts +5 -5
  52. package/components/inputs/docs/radioInput.doc.d.ts +5 -5
  53. package/components/inputs/docs/switch.doc.d.ts +5 -5
  54. package/components/inputs/docs/textInput.doc.d.ts +5 -5
  55. package/components/inputs/index.d.ts +4 -4
  56. package/components/layout/Accordion.d.ts +8 -8
  57. package/components/layout/ControlGroup.d.ts +3 -3
  58. package/components/layout/FlexItems/FlexCell.d.ts +11 -11
  59. package/components/layout/FlexItems/FlexRow.d.ts +13 -13
  60. package/components/layout/FlexItems/FlexSpacer.d.ts +4 -4
  61. package/components/layout/FlexItems/Panel.d.ts +10 -10
  62. package/components/layout/FlexItems/index.d.ts +4 -4
  63. package/components/layout/IconContainer.d.ts +9 -9
  64. package/components/layout/LabeledInput.d.ts +7 -7
  65. package/components/layout/RadioGroup.d.ts +3 -3
  66. package/components/layout/ScrollBars.d.ts +5 -5
  67. package/components/layout/VirtualList.d.ts +7 -7
  68. package/components/layout/index.d.ts +8 -8
  69. package/components/overlays/Dropdown.d.ts +5 -5
  70. package/components/overlays/DropdownContainer.d.ts +6 -6
  71. package/components/overlays/DropdownMenu.d.ts +36 -36
  72. package/components/overlays/Modals.d.ts +23 -23
  73. package/components/overlays/NotificationCard.d.ts +30 -30
  74. package/components/overlays/Tooltip.d.ts +6 -6
  75. package/components/overlays/index.d.ts +6 -6
  76. package/components/pickers/DataPickerBody.d.ts +15 -15
  77. package/components/pickers/DataPickerFooter.d.ts +8 -8
  78. package/components/pickers/DataPickerHeader.d.ts +7 -7
  79. package/components/pickers/DataPickerRow.d.ts +15 -15
  80. package/components/pickers/MobileDropdownWrapper.d.ts +10 -10
  81. package/components/pickers/PickerInput.d.ts +16 -16
  82. package/components/pickers/PickerItem.d.ts +12 -12
  83. package/components/pickers/PickerList.d.ts +17 -17
  84. package/components/pickers/PickerListItem.d.ts +8 -8
  85. package/components/pickers/PickerModal.d.ts +15 -15
  86. package/components/pickers/PickerToggler.d.ts +8 -8
  87. package/components/pickers/docs/common.d.ts +27 -27
  88. package/components/pickers/docs/pickerInput.doc.d.ts +4 -4
  89. package/components/pickers/docs/pickerToggler.doc.d.ts +5 -5
  90. package/components/pickers/index.d.ts +11 -11
  91. package/components/tables/DataTableCell.d.ts +9 -9
  92. package/components/tables/Presets/Preset.d.ts +13 -13
  93. package/components/tables/Presets/Presets.d.ts +8 -8
  94. package/components/tables/Presets/index.d.ts +2 -2
  95. package/components/tables/index.d.ts +3 -3
  96. package/components/tables/types.d.ts +8 -8
  97. package/components/types.d.ts +29 -29
  98. package/components/typography/Text.d.ts +11 -11
  99. package/components/typography/TextPlaceholder.d.ts +7 -7
  100. package/components/typography/docs/textPlaceholder.doc.d.ts +4 -4
  101. package/components/typography/index.d.ts +2 -2
  102. package/components/widgets/Avatar.d.ts +3 -3
  103. package/components/widgets/Badge.d.ts +15 -15
  104. package/components/widgets/Tag.d.ts +8 -8
  105. package/components/widgets/index.d.ts +3 -3
  106. package/docs/common.d.ts +10 -10
  107. package/docs/contexts/DefaultContext.d.ts +6 -6
  108. package/docs/contexts/index.d.ts +1 -1
  109. package/docs/index.d.ts +2 -2
  110. package/helpers/textLayout.d.ts +8 -8
  111. package/i18n.d.ts +50 -50
  112. package/icons/icons.d.ts +3 -3
  113. package/index.d.ts +3 -3
  114. package/index.docs.d.ts +5 -5
  115. package/index.js +1679 -1679
  116. package/index.js.map +1 -1
  117. package/package.json +6 -6
  118. package/readme.md +4 -4
  119. package/styles.css +615 -615
  120. package/styles.css.map +1 -1
@@ -1,10 +1,10 @@
1
- import * as React from 'react';
2
- import { DataTableCellProps } from '@epam/uui-core';
3
- import { DataTableCellMods } from './types';
4
- export declare class DataTableCell<TItem, TId, TCellValue> extends React.Component<DataTableCellProps<TItem, TId, TCellValue> & DataTableCellMods> {
5
- hasDepsWidgets: boolean;
6
- isDraggable: () => boolean;
7
- getContent: () => JSX.Element;
8
- render(): JSX.Element;
9
- }
1
+ import * as React from 'react';
2
+ import { DataTableCellProps } from '@epam/uui-core';
3
+ import { DataTableCellMods } from './types';
4
+ export declare class DataTableCell<TItem, TId, TCellValue> extends React.Component<DataTableCellProps<TItem, TId, TCellValue> & DataTableCellMods> {
5
+ hasDepsWidgets: boolean;
6
+ isDraggable: () => boolean;
7
+ getContent: () => JSX.Element;
8
+ render(): JSX.Element;
9
+ }
10
10
  //# sourceMappingURL=DataTableCell.d.ts.map
@@ -1,14 +1,14 @@
1
- import React from 'react';
2
- import { ITablePreset } from "@epam/uui-core";
3
- interface IPresetProps {
4
- preset: ITablePreset;
5
- isActive: boolean;
6
- hasChanged: boolean;
7
- choosePreset: (preset: ITablePreset) => void;
8
- duplicatePreset: (preset: ITablePreset) => void;
9
- deletePreset: (preset: ITablePreset) => void;
10
- updatePreset: (preset: ITablePreset) => void;
11
- }
12
- export declare const Preset: React.FC<IPresetProps>;
13
- export {};
1
+ import React from 'react';
2
+ import { ITablePreset } from "@epam/uui-core";
3
+ interface IPresetProps {
4
+ preset: ITablePreset;
5
+ isActive: boolean;
6
+ hasChanged: boolean;
7
+ choosePreset: (preset: ITablePreset) => void;
8
+ duplicatePreset: (preset: ITablePreset) => void;
9
+ deletePreset: (preset: ITablePreset) => void;
10
+ updatePreset: (preset: ITablePreset) => void;
11
+ }
12
+ export declare const Preset: React.FC<IPresetProps>;
13
+ export {};
14
14
  //# sourceMappingURL=Preset.d.ts.map
@@ -1,9 +1,9 @@
1
- import React from 'react';
2
- import { DataTableState, IPresetsApi, ITablePreset } from "@epam/uui-core";
3
- interface IPresetsProps extends IPresetsApi {
4
- presets: ITablePreset[];
5
- tableState: DataTableState;
6
- }
7
- export declare const Presets: React.NamedExoticComponent<IPresetsProps>;
8
- export {};
1
+ import React from 'react';
2
+ import { DataTableState, IPresetsApi, ITablePreset } from "@epam/uui-core";
3
+ interface IPresetsProps extends IPresetsApi {
4
+ presets: ITablePreset[];
5
+ tableState: DataTableState;
6
+ }
7
+ export declare const Presets: React.NamedExoticComponent<IPresetsProps>;
8
+ export {};
9
9
  //# sourceMappingURL=Presets.d.ts.map
@@ -1,3 +1,3 @@
1
- export * from './Presets';
2
- export * from './Preset';
1
+ export * from './Presets';
2
+ export * from './Preset';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- export * from './DataTableCell';
2
- export * from './Presets';
3
- export * from './types';
1
+ export * from './DataTableCell';
2
+ export * from './Presets';
3
+ export * from './types';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,9 +1,9 @@
1
- import { ControlSize } from '..';
2
- export interface DataTableCellMods {
3
- size?: ControlSize | '60';
4
- padding?: '0' | '12' | '24';
5
- isFirstColumn?: boolean;
6
- isLastColumn?: boolean;
7
- alignActions?: 'top' | 'center';
8
- }
1
+ import { ControlSize } from '..';
2
+ export interface DataTableCellMods {
3
+ size?: ControlSize | '60';
4
+ padding?: '0' | '12' | '24';
5
+ isFirstColumn?: boolean;
6
+ isLastColumn?: boolean;
7
+ alignActions?: 'top' | 'center';
8
+ }
9
9
  //# sourceMappingURL=types.d.ts.map
@@ -1,30 +1,30 @@
1
- export declare type ButtonMode = 'solid' | 'outline' | 'ghost' | 'none';
2
- export declare const allButtonModes: ButtonMode[];
3
- export declare type ControlSize = 'none' | '24' | '30' | '36' | '42' | '48';
4
- export declare const allSizes: ControlSize[];
5
- export declare type RowSize = null | '24' | '30' | '36' | '42' | '48';
6
- export declare const allRowSizes: RowSize[];
7
- export declare type EpamSemanticColor = 'accent' | 'primary' | 'secondary' | 'negative';
8
- export declare const allEpamSemanticColors: EpamSemanticColor[];
9
- export declare type TextSize = 'none' | '18' | '24' | '30' | '36' | '48';
10
- export declare const allTextSizes: TextSize[];
11
- export declare type FontStyle = 'regular' | 'semibold' | 'italic' | 'primary' | 'promo';
12
- export declare const allFontStyles: FontStyle[];
13
- export interface ColorMod {
14
- /** Component color */
15
- color?: EpamSemanticColor;
16
- }
17
- export interface RowSizeMod {
18
- size?: RowSize;
19
- }
20
- export interface SizeMod {
21
- size?: ControlSize;
22
- }
23
- export interface IHasEditMode {
24
- mode?: 'form' | 'cell';
25
- }
26
- export declare enum EditMode {
27
- FORM = "form",
28
- CELL = "cell"
29
- }
1
+ export declare type ButtonMode = 'solid' | 'outline' | 'ghost' | 'none';
2
+ export declare const allButtonModes: ButtonMode[];
3
+ export declare type ControlSize = 'none' | '24' | '30' | '36' | '42' | '48';
4
+ export declare const allSizes: ControlSize[];
5
+ export declare type RowSize = null | '24' | '30' | '36' | '42' | '48';
6
+ export declare const allRowSizes: RowSize[];
7
+ export declare type EpamSemanticColor = 'accent' | 'primary' | 'secondary' | 'negative';
8
+ export declare const allEpamSemanticColors: EpamSemanticColor[];
9
+ export declare type TextSize = 'none' | '18' | '24' | '30' | '36' | '48';
10
+ export declare const allTextSizes: TextSize[];
11
+ export declare type FontStyle = 'regular' | 'semibold' | 'italic' | 'primary' | 'promo';
12
+ export declare const allFontStyles: FontStyle[];
13
+ export interface ColorMod {
14
+ /** Component color */
15
+ color?: EpamSemanticColor;
16
+ }
17
+ export interface RowSizeMod {
18
+ size?: RowSize;
19
+ }
20
+ export interface SizeMod {
21
+ size?: ControlSize;
22
+ }
23
+ export interface IHasEditMode {
24
+ mode?: 'form' | 'cell';
25
+ }
26
+ export declare enum EditMode {
27
+ FORM = "form",
28
+ CELL = "cell"
29
+ }
30
30
  //# sourceMappingURL=types.d.ts.map
@@ -1,12 +1,12 @@
1
- import * as React from 'react';
2
- import * as types from '../types';
3
- import { TextSettings } from '../../helpers/textLayout';
4
- import '../../assets/styles/variables/typography/text.scss';
5
- import '../../assets/styles/fonts-variables.scss';
6
- export interface TextMods extends TextSettings {
7
- size?: types.TextSize | '42';
8
- font?: types.FontStyle;
9
- color?: 'brand' | 'primary' | 'secondary' | 'disabled' | 'contrast';
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<React.HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & TextMods & React.RefAttributes<any>>;
1
+ import * as React from 'react';
2
+ import * as types from '../types';
3
+ import { TextSettings } from '../../helpers/textLayout';
4
+ import '../../assets/styles/variables/typography/text.scss';
5
+ import '../../assets/styles/fonts-variables.scss';
6
+ export interface TextMods extends TextSettings {
7
+ size?: types.TextSize | '42';
8
+ font?: types.FontStyle;
9
+ color?: 'brand' | 'primary' | 'secondary' | 'disabled' | 'contrast';
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<React.HTMLAttributes<HTMLDivElement>> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & TextMods & React.RefAttributes<any>>;
12
12
  //# sourceMappingURL=Text.d.ts.map
@@ -1,8 +1,8 @@
1
- import * as React from 'react';
2
- import '../../assets/styles/variables/typography/textPlaceholder.scss';
3
- export interface TextPlaceholderProps {
4
- wordsCount?: number;
5
- isNotAnimated?: boolean;
6
- }
7
- export declare const TextPlaceholder: React.FunctionComponent<TextPlaceholderProps>;
1
+ import * as React from 'react';
2
+ import '../../assets/styles/variables/typography/textPlaceholder.scss';
3
+ export interface TextPlaceholderProps {
4
+ wordsCount?: number;
5
+ isNotAnimated?: boolean;
6
+ }
7
+ export declare const TextPlaceholder: React.FunctionComponent<TextPlaceholderProps>;
8
8
  //# sourceMappingURL=TextPlaceholder.d.ts.map
@@ -1,5 +1,5 @@
1
- import { DocBuilder } from '@epam/uui-docs';
2
- import { TextPlaceholderProps } from '../TextPlaceholder';
3
- declare const textPlaceholderDoc: DocBuilder<TextPlaceholderProps>;
4
- export = textPlaceholderDoc;
1
+ import { DocBuilder } from '@epam/uui-docs';
2
+ import { TextPlaceholderProps } from '../TextPlaceholder';
3
+ declare const textPlaceholderDoc: DocBuilder<TextPlaceholderProps>;
4
+ export = textPlaceholderDoc;
5
5
  //# sourceMappingURL=textPlaceholder.doc.d.ts.map
@@ -1,3 +1,3 @@
1
- export * from './Text';
2
- export * from './TextPlaceholder';
1
+ export * from './Text';
2
+ export * from './TextPlaceholder';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
2
- import { AvatarProps } from '@epam/uui-components';
3
- export declare const Avatar: import("react").ForwardRefExoticComponent<AvatarProps & import("react").RefAttributes<any>>;
1
+ /// <reference types="react" />
2
+ import { AvatarProps } from '@epam/uui-components';
3
+ export declare const Avatar: import("react").ForwardRefExoticComponent<AvatarProps & import("react").RefAttributes<any>>;
4
4
  //# sourceMappingURL=Avatar.d.ts.map
@@ -1,16 +1,16 @@
1
- import * as React from 'react';
2
- import { ButtonProps } from '@epam/uui-components';
3
- import '../../assets/styles/variables/widgets/badge.scss';
4
- export declare type BadgeColor = 'info' | 'success' | 'warning' | 'error';
5
- export declare type BadgeFill = 'solid';
6
- export declare type BadgeSize = '18' | '24' | '30' | '36' | '42' | '48';
7
- export interface BadgeMods {
8
- fill?: BadgeFill;
9
- size?: BadgeSize;
10
- color?: BadgeColor;
11
- }
12
- export interface BadgeProps extends ButtonProps, BadgeMods {
13
- }
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" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof BadgeMods> & React.RefAttributes<any>>;
1
+ import * as React from 'react';
2
+ import { ButtonProps } from '@epam/uui-components';
3
+ import '../../assets/styles/variables/widgets/badge.scss';
4
+ export declare type BadgeColor = 'info' | 'success' | 'warning' | 'error';
5
+ export declare type BadgeFill = 'solid';
6
+ export declare type BadgeSize = '18' | '24' | '30' | '36' | '42' | '48';
7
+ export interface BadgeMods {
8
+ fill?: BadgeFill;
9
+ size?: BadgeSize;
10
+ color?: BadgeColor;
11
+ }
12
+ export interface BadgeProps extends ButtonProps, BadgeMods {
13
+ }
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" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof BadgeMods> & React.RefAttributes<any>>;
16
16
  //# sourceMappingURL=Badge.d.ts.map
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
2
- import { ButtonProps } from '@epam/uui-components';
3
- import '../../assets/styles/variables/widgets/tag.scss';
4
- export interface TagMods {
5
- size?: '18' | '24' | '30' | '36' | '42' | '48';
6
- }
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" | "cx" | "href" | "isLinkActive" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "tabIndex" | "rawProps" | "onClear" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "isInteractedOutside" | "placeholder" | "size" | "forwardedRef" | "clearIcon" | "captionCX"> & import("react").RefAttributes<any>>;
1
+ /// <reference types="react" />
2
+ import { ButtonProps } from '@epam/uui-components';
3
+ import '../../assets/styles/variables/widgets/tag.scss';
4
+ export interface TagMods {
5
+ size?: '18' | '24' | '30' | '36' | '42' | '48';
6
+ }
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" | "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
@@ -1,4 +1,4 @@
1
- export * from './Avatar';
2
- export * from './Badge';
3
- export * from './Tag';
1
+ export * from './Avatar';
2
+ export * from './Badge';
3
+ export * from './Tag';
4
4
  //# sourceMappingURL=index.d.ts.map
package/docs/common.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- import { IHasIcon } from '@epam/uui-core';
2
- import { DocBuilder } from '@epam/uui-docs';
3
- import { IHasEditMode, SizeMod, ColorMod } from '../components';
4
- import { TextSettings } from "../helpers/textLayout";
5
- export declare const sizeDoc: DocBuilder<SizeMod>;
6
- export declare const textSettingsDoc: DocBuilder<TextSettings>;
7
- export declare const colorDoc: DocBuilder<ColorMod>;
8
- export declare const iconOptionsDoc: DocBuilder<IHasIcon>;
9
- export declare const IHasEditModeDoc: DocBuilder<IHasEditMode>;
10
- export * from '@epam/uui-docs';
1
+ import { IHasIcon } from '@epam/uui-core';
2
+ import { DocBuilder } from '@epam/uui-docs';
3
+ import { IHasEditMode, SizeMod, ColorMod } from '../components';
4
+ import { TextSettings } from "../helpers/textLayout";
5
+ export declare const sizeDoc: DocBuilder<SizeMod>;
6
+ export declare const textSettingsDoc: DocBuilder<TextSettings>;
7
+ export declare const colorDoc: DocBuilder<ColorMod>;
8
+ export declare const iconOptionsDoc: DocBuilder<IHasIcon>;
9
+ export declare const IHasEditModeDoc: DocBuilder<IHasEditMode>;
10
+ export * from '@epam/uui-docs';
11
11
  //# sourceMappingURL=common.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as React from 'react';
2
- import { DemoComponentProps } from '@epam/uui-docs';
3
- export declare class DefaultContext extends React.Component<DemoComponentProps, any> {
4
- static displayName: string;
5
- render(): JSX.Element;
6
- }
1
+ import * as React from 'react';
2
+ import { DemoComponentProps } from '@epam/uui-docs';
3
+ export declare class DefaultContext extends React.Component<DemoComponentProps, any> {
4
+ static displayName: string;
5
+ render(): JSX.Element;
6
+ }
7
7
  //# sourceMappingURL=DefaultContext.d.ts.map
@@ -1,2 +1,2 @@
1
- export * from './DefaultContext';
1
+ export * from './DefaultContext';
2
2
  //# sourceMappingURL=index.d.ts.map
package/docs/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from './common';
2
- export * from './contexts';
1
+ export * from './common';
2
+ export * from './contexts';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,9 +1,9 @@
1
- import { ControlSize } from '../components';
2
- export interface TextSettings {
3
- lineHeight?: '12' | '18' | '24' | '30';
4
- fontSize?: '10' | '12' | '14' | '16' | '18' | '24';
5
- }
6
- export declare function getTextClasses(props: TextSettings & {
7
- size: '18' | ControlSize | '60';
8
- }, border: boolean): string[];
1
+ import { ControlSize } from '../components';
2
+ export interface TextSettings {
3
+ lineHeight?: '12' | '18' | '24' | '30';
4
+ fontSize?: '10' | '12' | '14' | '16' | '18' | '24';
5
+ }
6
+ export declare function getTextClasses(props: TextSettings & {
7
+ size: '18' | ControlSize | '60';
8
+ }, border: boolean): string[];
9
9
  //# sourceMappingURL=textLayout.d.ts.map
package/i18n.d.ts CHANGED
@@ -1,51 +1,51 @@
1
- export declare const i18n: {
2
- dataPickerBody: {
3
- searchPlaceholder: string;
4
- noRecordsMessage: string;
5
- };
6
- pickerModal: {
7
- headerTitle: string;
8
- searchPlaceholder: string;
9
- cancelButton: string;
10
- selectButton: string;
11
- clearAllButton: string;
12
- selectAllButton: string;
13
- };
14
- pickerInput: {
15
- showOnlySelectedLabel: string;
16
- clearSelectionButton: string;
17
- selectAllButton: string;
18
- };
19
- notificationCard: {
20
- closeAllNotificationsButton: string;
21
- };
22
- form: {
23
- notifications: {
24
- actionButtonCaption: string;
25
- unsavedChangesMessage: string;
26
- };
27
- modals: {
28
- beforeLeaveMessage: string;
29
- discardButton: string;
30
- saveButton: string;
31
- };
32
- };
33
- rangeDatePicker: {
34
- pickerPlaceholderFrom: string;
35
- pickerPlaceholderTo: string;
36
- };
37
- tables: {
38
- columnsConfigurationModal: {
39
- applyButton: string;
40
- checkAllButton: string;
41
- uncheckAllButton: string;
42
- configureColumnsTitle: string;
43
- resetToDefaultButton: string;
44
- };
45
- };
46
- pickerFilterHeader: {
47
- sortAscending: string;
48
- sortDescending: string;
49
- };
50
- };
1
+ export declare const i18n: {
2
+ dataPickerBody: {
3
+ searchPlaceholder: string;
4
+ noRecordsMessage: string;
5
+ };
6
+ pickerModal: {
7
+ headerTitle: string;
8
+ searchPlaceholder: string;
9
+ cancelButton: string;
10
+ selectButton: string;
11
+ clearAllButton: string;
12
+ selectAllButton: string;
13
+ };
14
+ pickerInput: {
15
+ showOnlySelectedLabel: string;
16
+ clearSelectionButton: string;
17
+ selectAllButton: string;
18
+ };
19
+ notificationCard: {
20
+ closeAllNotificationsButton: string;
21
+ };
22
+ form: {
23
+ notifications: {
24
+ actionButtonCaption: string;
25
+ unsavedChangesMessage: string;
26
+ };
27
+ modals: {
28
+ beforeLeaveMessage: string;
29
+ discardButton: string;
30
+ saveButton: string;
31
+ };
32
+ };
33
+ rangeDatePicker: {
34
+ pickerPlaceholderFrom: string;
35
+ pickerPlaceholderTo: string;
36
+ };
37
+ tables: {
38
+ columnsConfigurationModal: {
39
+ applyButton: string;
40
+ checkAllButton: string;
41
+ uncheckAllButton: string;
42
+ configureColumnsTitle: string;
43
+ resetToDefaultButton: string;
44
+ };
45
+ };
46
+ pickerFilterHeader: {
47
+ sortAscending: string;
48
+ sortDescending: string;
49
+ };
50
+ };
51
51
  //# sourceMappingURL=i18n.d.ts.map
package/icons/icons.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const systemIcons: {
2
- [key: string]: any;
3
- };
1
+ export declare const systemIcons: {
2
+ [key: string]: any;
3
+ };
4
4
  //# sourceMappingURL=icons.d.ts.map
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import './assets/styles/font-faces.scss';
2
- export * from './components';
3
- export * from '@epam/uui-core';
1
+ import './assets/styles/font-faces.scss';
2
+ export * from './components';
3
+ export * from '@epam/uui-core';
4
4
  //# sourceMappingURL=index.d.ts.map
package/index.docs.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { DocBuilder } from '@epam/uui-docs';
2
- export declare const docs: {
3
- doc: DocBuilder<any>;
4
- category: string;
5
- }[];
1
+ import { DocBuilder } from '@epam/uui-docs';
2
+ export declare const docs: {
3
+ doc: DocBuilder<any>;
4
+ category: string;
5
+ }[];
6
6
  //# sourceMappingURL=index.docs.d.ts.map