@fattureincloud/fic-design-system 0.4.30 → 0.4.31
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/dist/components/dropdown/index.d.ts +2 -2
- package/dist/components/icon/index.d.ts +2 -2
- package/dist/components/tag/index.d.ts +2 -2
- package/dist/index.d.ts +15 -13
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,24 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v0.4.31 - 11/10/2022
|
4
|
+
|
5
|
+
### 🚀 Added
|
6
|
+
|
7
|
+
- exports:
|
8
|
+
• ButtonPalette,
|
9
|
+
• DropdownItemType,
|
10
|
+
• iconColors,
|
11
|
+
• tagTypes,
|
12
|
+
• BadgePalette,
|
13
|
+
• BannerPalette,
|
14
|
+
• ChipPalette,
|
15
|
+
• FloatingBadgePalette,
|
16
|
+
• LabelPalette,
|
17
|
+
• PaginationPalette,
|
18
|
+
• ProgressBarPalette,
|
19
|
+
• bwColor,
|
20
|
+
• IconButtonPalette
|
21
|
+
|
3
22
|
## v0.4.30 - 29/09/2022
|
4
23
|
|
5
24
|
### 🚀 Added
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import Dropdown from './dropdown';
|
2
2
|
import dropdownPalette, { DropdownPalette } from './dropdownPalette';
|
3
|
-
import { closeDropdownType, DropdownItemProps, renderContentType } from './types';
|
4
|
-
export { Dropdown, closeDropdownType, renderContentType, dropdownPalette, DropdownPalette, DropdownItemProps };
|
3
|
+
import { closeDropdownType, DropdownItemProps, DropdownItemType, renderContentType } from './types';
|
4
|
+
export { Dropdown, closeDropdownType, renderContentType, dropdownPalette, DropdownPalette, DropdownItemProps, DropdownItemType, };
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { IconBackground, IconBackgroundPalette, iconBackgroundPalette } from './components/iconBackground';
|
2
2
|
import Icon, { IconProps } from './Icon';
|
3
|
-
import iconPalette, { IconPalette } from './iconPalette';
|
4
|
-
export { Icon, IconProps, IconPalette, iconPalette, IconBackground, iconBackgroundPalette, IconBackgroundPalette };
|
3
|
+
import iconPalette, { iconColors, IconPalette } from './iconPalette';
|
4
|
+
export { Icon, IconProps, IconPalette, iconPalette, IconBackground, iconBackgroundPalette, IconBackgroundPalette, iconColors, };
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { Tag } from './Tag';
|
2
|
-
import tagPalette, { TagPalette } from './tagPalette';
|
2
|
+
import tagPalette, { TagPalette, tagTypes } from './tagPalette';
|
3
3
|
import { TagProps } from './types';
|
4
|
-
export { Tag, TagProps, tagPalette, TagPalette };
|
4
|
+
export { Tag, TagProps, tagPalette, TagPalette, tagTypes };
|
package/dist/index.d.ts
CHANGED
@@ -1,13 +1,9 @@
|
|
1
1
|
import Spinner from './common/components/Spinner';
|
2
2
|
import { Accordion } from './components/accordions';
|
3
3
|
import { Avatar } from './components/avatar';
|
4
|
-
|
5
|
-
export { Badge, BadgeProps, BadgeType } from './components/badge';
|
6
|
-
import { Button, ButtonProps, IconButton, IconButtonProps } from './components/buttons';
|
7
|
-
export { Chip, ChipType } from './components/chip';
|
4
|
+
import { Button, ButtonPalette, ButtonProps, IconButton, IconButtonPalette, IconButtonProps } from './components/buttons';
|
8
5
|
import { Drawer } from './components/drawer';
|
9
|
-
import { closeDropdownType, Dropdown, DropdownItemProps, DropdownPalette, renderContentType } from './components/dropdown';
|
10
|
-
export { NotificationBadge, WithBadge, FloatingBadgeType } from './components/floatingBadge';
|
6
|
+
import { closeDropdownType, Dropdown, DropdownItemProps, DropdownItemType, DropdownPalette, renderContentType } from './components/dropdown';
|
11
7
|
import { Checkbox, CheckboxPalette, CheckboxProps, CheckboxStatus, useCheckboxValue } from './components/form/checkbox';
|
12
8
|
import { DatePicker, DatePickerPalette, DatePickerProps, timeConversionOptions, useFormattedDate } from './components/form/datepicker';
|
13
9
|
import { FileRejection, FileUploader, fileUploaderOnDrop, FileUploaderPalette, FileUploaderProps } from './components/form/fileUploader';
|
@@ -18,26 +14,32 @@ import { RadioGroup, RadioGroupOptions, RadioGroupProps } from './components/for
|
|
18
14
|
import { AsyncCreatableSelect, AsyncCreatableSelectProps, AsyncSelect, AsyncSelectProps, CreatableSelect, CreatableSelectProps, isSimpleValue, OptionType, Select, SelectComponentsType, SelectPalette, SelectProps, simpleValue, useSelectMultiValues, useSelectSimpleValue, useSelectValue } from './components/form/select';
|
19
15
|
import { TextArea, TextAreaPalette, TextAreaProps } from './components/form/textArea';
|
20
16
|
import { GroupedList, GroupType, ItemType } from './components/groupedList';
|
21
|
-
import { Icon, IconPalette, IconProps } from './components/icon';
|
17
|
+
import { Icon, iconColors, IconPalette, IconProps } from './components/icon';
|
22
18
|
import { IconBackground, IconBackgroundPalette } from './components/icon/components/iconBackground';
|
23
19
|
import { InlineMessage, InlineMessagePalette, InlineMessageProps, InlineMessageType } from './components/inlineMessage';
|
24
|
-
export { CustomSidebarItemProps, SidebarItem, sidebarItemHeight, SidebarItemPalette, SidebarItemProps, SidebarBadgeConfigType, SidebarBadgeConfigProps, } from './components/layout';
|
25
20
|
import { MicroTag, MicroTagPalette, MicroTagProps } from './components/microTag';
|
26
21
|
import { Modal, ModalSearchable } from './components/modals';
|
27
22
|
import { ConfirmationModal } from './components/modals/confirmationModal';
|
28
23
|
import { ModalBody } from './components/modals/modalStyled';
|
29
24
|
import { PageEmptySet } from './components/pageEmptySet';
|
30
|
-
export { Pagination, PaginationType } from './components/pagination';
|
31
|
-
export { ProgressBar, ProgressBarType } from './components/progressbar';
|
32
25
|
import { Stepper, StepperPalette, StepperProps } from './components/stepper';
|
33
26
|
import { Column, ManualPagination, OnSelectionChange, OnSort, Row, RowActions, Table, TableData, TablePalette, TableProps, useTableValues } from './components/table';
|
34
27
|
import { DropdownTabs, ScrollableTabs, TabsItem } from './components/tabs';
|
35
|
-
import { Tag, TagPalette, TagProps } from './components/tag';
|
28
|
+
import { Tag, TagPalette, TagProps, tagTypes } from './components/tag';
|
36
29
|
import { ThemeProvider } from './components/themeProvider';
|
37
|
-
export { ShortcutTip, ShortcutTipProps, Tip, TipPalette, TipProps, TipType } from './components/tip';
|
38
30
|
import { Toast, ToastPalette, toastPalette, ToastProps, ToastType } from './components/toast';
|
39
31
|
import { Tooltip, TooltipPalette, TooltipProps } from './components/tooltip';
|
40
32
|
import { autocompleteYellow } from './styles/defaultPalette/colors/others';
|
41
33
|
import { Theme } from './styles/theme';
|
42
34
|
import { Palette, paletteColor } from './styles/types';
|
43
|
-
export {
|
35
|
+
export { Badge, BadgeProps, BadgeType, BadgePalette } from './components/badge';
|
36
|
+
export { Banner, BannerProps, BannerType, BannerPalette } from './components/banner';
|
37
|
+
export { Chip, ChipType, ChipPalette, ChipProps } from './components/chip';
|
38
|
+
export { FloatingBadgePalette, FloatingBadgeType, NotificationBadge, WithBadge } from './components/floatingBadge';
|
39
|
+
export { LabelPalette } from './components/form/label';
|
40
|
+
export { CustomSidebarItemProps, SidebarBadgeConfigProps, SidebarBadgeConfigType, SidebarItem, sidebarItemHeight, SidebarItemPalette, SidebarItemProps, } from './components/layout';
|
41
|
+
export { Pagination, PaginationPalette, PaginationType } from './components/pagination';
|
42
|
+
export { ProgressBar, ProgressBarPalette, ProgressBarProps, ProgressBarType } from './components/progressbar';
|
43
|
+
export { ShortcutTip, ShortcutTipProps, Tip, TipPalette, TipProps, TipType } from './components/tip';
|
44
|
+
export { bwColor } from './styles/types';
|
45
|
+
export { autocompleteYellow, paletteColor, Avatar, Button, ButtonProps, ButtonPalette, IconButton, IconButtonProps, IconButtonPalette, Icon, IconProps, IconPalette, iconColors, IconBackground, IconBackgroundPalette, Table, TableProps, TableData, useTableValues, Row, Column, TablePalette, RowActions, ManualPagination, OnSelectionChange, OnSort, Checkbox, useCheckboxValue, CheckboxProps, CheckboxPalette, CheckboxStatus, Select, CreatableSelect, AsyncSelect, AsyncCreatableSelect, SelectProps, AsyncSelectProps, AsyncCreatableSelectProps, useSelectSimpleValue, isSimpleValue, simpleValue, CreatableSelectProps, useSelectValue, useSelectMultiValues, SelectPalette, SelectComponentsType, OptionType, PageEmptySet, Modal, ModalBody, ModalSearchable, Tooltip, TooltipProps, TooltipPalette, Accordion, Drawer, Radio, useRadioValue, RadioProps, RadioPalette, RadioStatus, RadioGroup, RadioGroupProps, RadioGroupOptions, InlineMessage, InlineMessageProps, InlineMessagePalette, InlineMessageType, Dropdown, DropdownItemProps, DropdownPalette, DropdownItemType, closeDropdownType, renderContentType, DropdownTabs, ScrollableTabs, TabsItem, Stepper, StepperProps, StepperPalette, ThemeProvider, Theme, Palette, GroupedList, ItemType, GroupType, Toast, ToastProps, toastPalette, ToastPalette, ToastType, ConfirmationModal, MicroTag, MicroTagProps, MicroTagPalette, Tag, TagProps, TagPalette, tagTypes, InputText, InputTextProps, InputTextPalette, UnitDropdownProps, DatePickerProps, DatePickerPalette, DatePicker, useFormattedDate, timeConversionOptions, InputHelper, InputHelperProps, InputHelperPalette, TextArea, TextAreaProps, TextAreaPalette, FileUploader, FileUploaderProps, FileUploaderPalette, FileRejection, fileUploaderOnDrop, Spinner, };
|