mediacube-ui-v2 0.0.1 → 0.0.3
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/dist/App.vue.d.ts +2 -0
- package/dist/McBottomLoader-DP6VeK0N.js +4 -0
- package/dist/McOverlay-BZft7En3.js +4 -0
- package/dist/assets/tokens/json/animations.json.d.ts +8 -0
- package/dist/assets/tokens/json/border-radius.json.d.ts +26 -0
- package/dist/assets/tokens/json/box-shadows.json.d.ts +26 -0
- package/dist/assets/tokens/json/colors.json.d.ts +73 -0
- package/dist/assets/tokens/json/durations.json.d.ts +12 -0
- package/dist/assets/tokens/json/easings.json.d.ts +5 -0
- package/dist/assets/tokens/json/font-families.json.d.ts +6 -0
- package/dist/assets/tokens/json/font-sizes.json.d.ts +20 -0
- package/dist/assets/tokens/json/font-weights.json.d.ts +14 -0
- package/dist/assets/tokens/json/gradients.json.d.ts +15 -0
- package/dist/assets/tokens/json/index.d.ts +18 -0
- package/dist/assets/tokens/json/letter-spacings.json.d.ts +6 -0
- package/dist/assets/tokens/json/line-heights.json.d.ts +20 -0
- package/dist/assets/tokens/json/media-queries.json.d.ts +28 -0
- package/dist/assets/tokens/json/opacities.json.d.ts +7 -0
- package/dist/assets/tokens/json/sizes.json.d.ts +44 -0
- package/dist/assets/tokens/json/spacings.json.d.ts +36 -0
- package/dist/assets/tokens/json/z-indexes.json.d.ts +14 -0
- package/dist/components/elements/McAvatar/McAvatar.vue.d.ts +156 -0
- package/dist/components/elements/McBadge/McBadge.vue.d.ts +53 -0
- package/dist/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +14 -0
- package/dist/components/elements/McButton/McButton.vue.d.ts +438 -0
- package/dist/components/elements/McChip/McChip.vue.d.ts +122 -0
- package/dist/components/elements/McCropper/McCropper.vue.d.ts +28 -0
- package/dist/components/elements/McDatepicker/McDatepicker.vue.d.ts +12 -0
- package/dist/components/elements/McDraggable/McDraggable.vue.d.ts +78 -0
- package/dist/components/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts +11 -0
- package/dist/components/elements/McFieldRadio/McFieldRadio.vue.d.ts +189 -0
- package/dist/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts +10 -0
- package/dist/components/elements/McFieldRange/McFieldRange.vue.d.ts +216 -0
- package/dist/components/elements/McFieldSelect/McFieldSelect.vue.d.ts +529 -0
- package/dist/components/elements/McFieldText/McFieldText.vue.d.ts +461 -0
- package/dist/components/elements/McFieldToggle/McFieldToggle.vue.d.ts +158 -0
- package/dist/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts +58 -0
- package/dist/components/elements/McNodata/McNoData.vue.d.ts +110 -0
- package/dist/components/elements/McNotification/McNotification.vue.d.ts +124 -0
- package/dist/components/elements/McProgress/McProgress.vue.d.ts +135 -0
- package/dist/components/elements/McSeparator/McSeparator.vue.d.ts +133 -0
- package/dist/components/elements/McSlideUpDown/McSlideUpDown.vue.d.ts +68 -0
- package/dist/components/elements/McStack/McStack.vue.d.ts +24 -0
- package/dist/components/elements/McSvgIcon/McSvgIcon.vue.d.ts +119 -0
- package/dist/components/elements/McTitle/McTitle.vue.d.ts +201 -0
- package/dist/components/elements/McTooltip/McTooltip.vue.d.ts +104 -0
- package/dist/components/index.d.ts +62 -0
- package/dist/components/patterns/McAccordion/McAccordion.vue.d.ts +28 -0
- package/dist/components/patterns/McCell/McCell.vue.d.ts +76 -0
- package/dist/components/patterns/McCollapse/McCollapse.vue.d.ts +67 -0
- package/dist/components/patterns/McDropdown/McDropdown.vue.d.ts +122 -0
- package/dist/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +22 -0
- package/dist/components/patterns/McFilter/McFilter.vue.d.ts +152 -0
- package/dist/components/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts +55 -0
- package/dist/components/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts +85 -0
- package/dist/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts +66 -0
- package/dist/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts +57 -0
- package/dist/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts +74 -0
- package/dist/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts +57 -0
- package/dist/components/patterns/McGridCol/McGridCol.vue.d.ts +107 -0
- package/dist/components/patterns/McGridRow/McGridRow.vue.d.ts +104 -0
- package/dist/components/patterns/McOverlay/McOverlay.vue.d.ts +24 -0
- package/dist/components/patterns/McPreview/McPreview.vue.d.ts +33 -0
- package/dist/components/patterns/McSideBar/McSideBar.vue.d.ts +292 -0
- package/dist/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts +67 -0
- package/dist/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts +203 -0
- package/dist/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts +94 -0
- package/dist/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts +123 -0
- package/dist/components/patterns/McTab/McTab.vue.d.ts +224 -0
- package/dist/components/patterns/McTabs/McTabs.vue.d.ts +148 -0
- package/dist/components/patterns/McWrapScroll/McWrapScroll.vue.d.ts +127 -0
- package/dist/components/templates/McDrawer/McDrawer.vue.d.ts +104 -0
- package/dist/components/templates/McDrawer/McDrawerContainer.vue.d.ts +31 -0
- package/dist/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts +39 -0
- package/dist/components/templates/McModal/McModal.vue.d.ts +232 -0
- package/dist/components/templates/McModal/McModalContainer.vue.d.ts +31 -0
- package/dist/components/templates/McTable/McTable/McTable.vue.d.ts +295 -0
- package/dist/components/templates/McTable/McTableCard/McTableCard.vue.d.ts +128 -0
- package/dist/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts +32 -0
- package/dist/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +18 -0
- package/dist/components/templates/McTable/McTableSort/McTableSort.vue.d.ts +29 -0
- package/dist/components/templates/McTopBar/McTopBar.vue.d.ts +85 -0
- package/dist/components/templates/McVirtualScroll/McVirtualScroll.vue.d.ts +79 -0
- package/dist/composables/index.d.ts +8 -0
- package/dist/composables/useDrawer.d.ts +6 -0
- package/dist/composables/useEncodeDecode.d.ts +5 -0
- package/dist/composables/useFieldErrors.d.ts +5 -0
- package/dist/composables/useHelper.d.ts +17 -0
- package/dist/composables/useModal.d.ts +5 -0
- package/dist/composables/useRandomNumber.d.ts +4 -0
- package/dist/composables/useTooltip.d.ts +8 -0
- package/dist/consts/table.d.ts +6 -0
- package/dist/enums/Cell.d.ts +5 -0
- package/dist/enums/Chip.d.ts +9 -0
- package/dist/enums/Datepicker.d.ts +37 -0
- package/dist/enums/Drawer.d.ts +4 -0
- package/dist/enums/Dropdown.d.ts +10 -0
- package/dist/enums/Filter.d.ts +12 -0
- package/dist/enums/Grid.d.ts +21 -0
- package/dist/enums/Input.d.ts +18 -0
- package/dist/enums/Modal.d.ts +4 -0
- package/dist/enums/Preview.d.ts +5 -0
- package/dist/enums/Radio.d.ts +4 -0
- package/dist/enums/RadioGroup.d.ts +4 -0
- package/dist/enums/Select.d.ts +9 -0
- package/dist/enums/Sidebar.d.ts +4 -0
- package/dist/enums/Tab.d.ts +5 -0
- package/dist/enums/Title.d.ts +19 -0
- package/dist/enums/Tooltip.d.ts +13 -0
- package/dist/enums/index.d.ts +21 -0
- package/dist/enums/ui/Alignment.d.ts +5 -0
- package/dist/enums/ui/Button.d.ts +21 -0
- package/dist/enums/ui/Directions.d.ts +4 -0
- package/dist/enums/ui/Weights.d.ts +6 -0
- package/dist/{es-ZT7NtsIJ.js → es-CKatgsl2.js} +1 -1
- package/dist/{index-BNI8_4VG.js → index-DUxSE0Pp.js} +11991 -9401
- package/dist/index.d.ts +9 -0
- package/dist/{mediacube-ui-v2.es.js → index.es.js} +1 -1
- package/dist/index.umd.js +38 -0
- package/dist/main.d.ts +0 -0
- package/dist/mocks/authUser.d.ts +132 -0
- package/dist/mocks/categories.d.ts +8 -0
- package/dist/mocks/filterMocks.d.ts +17 -0
- package/dist/mocks/icons.json.d.ts +3 -0
- package/dist/mocks/menuLangs.d.ts +5 -0
- package/dist/mocks/sidebar.d.ts +9 -0
- package/dist/mocks/tableData.d.ts +5 -0
- package/dist/no_table_data.png +0 -0
- package/dist/no_user.png +0 -0
- package/dist/{pt-DABURhaw.js → pt-CEavNnlV.js} +1 -1
- package/dist/{ru-DrTReLfa.js → ru-DX_6fNBy.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{th-CxdSf7Vb.js → th-DGTC0w1I.js} +1 -1
- package/dist/types/IButton.d.ts +40 -0
- package/dist/types/ICell.d.ts +4 -0
- package/dist/types/IChip.d.ts +8 -0
- package/dist/types/ICollapse.d.ts +14 -0
- package/dist/types/IDatepicker.d.ts +30 -0
- package/dist/types/IDirections.d.ts +4 -0
- package/dist/types/IDrawer.d.ts +25 -0
- package/dist/types/IDropdown.d.ts +5 -0
- package/dist/types/IFilter.d.ts +152 -0
- package/dist/types/IGrid.d.ts +4 -0
- package/dist/types/IInput.d.ts +5 -0
- package/dist/types/IModal.d.ts +27 -0
- package/dist/types/IPreview.d.ts +4 -0
- package/dist/types/IRadio.d.ts +4 -0
- package/dist/types/IRadioGroup.d.ts +9 -0
- package/dist/types/IRoute.d.ts +16 -0
- package/dist/types/ISelect.d.ts +15 -0
- package/dist/types/ISideBar.d.ts +73 -0
- package/dist/types/ITable.d.ts +69 -0
- package/dist/types/ITabs.d.ts +31 -0
- package/dist/types/ITitle.d.ts +5 -0
- package/dist/types/ITooltip.d.ts +26 -0
- package/dist/types/index.d.ts +36 -0
- package/dist/types/styles/Alignment.d.ts +2 -0
- package/dist/types/styles/AvatarSizes.d.ts +22 -0
- package/dist/types/styles/Colors.d.ts +73 -0
- package/dist/types/styles/Durations.d.ts +13 -0
- package/dist/types/styles/FontSizes.d.ts +20 -0
- package/dist/types/styles/FontWeights.d.ts +15 -0
- package/dist/types/styles/Grid.d.ts +4 -0
- package/dist/types/styles/Icons.d.ts +447 -0
- package/dist/types/styles/LineHeights.d.ts +20 -0
- package/dist/types/styles/MediaQueries.d.ts +26 -0
- package/dist/types/styles/Radiuses.d.ts +26 -0
- package/dist/types/styles/Sizes.d.ts +35 -0
- package/dist/types/styles/Spaces.d.ts +35 -0
- package/dist/types/styles/Weights.d.ts +2 -0
- package/dist/utils/dayjs.d.ts +175 -0
- package/dist/utils/mcGridColAdaptiveProps.d.ts +10 -0
- package/dist/utils/mcTitleAdaptiveProps.d.ts +10 -0
- package/dist/{vi-DiQKH9bm.js → vi-Pc8KAwzf.js} +1 -1
- package/package.json +5 -3
- package/dist/McBottomLoader-DXamMgue.js +0 -4
- package/dist/McOverlay-xiwfcXWp.js +0 -4
- package/dist/mediacube-ui-v2.umd.js +0 -38
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
export declare const Colors: {
|
|
2
|
+
purple: string;
|
|
3
|
+
"hover-purple": string;
|
|
4
|
+
"light-purple": string;
|
|
5
|
+
"bg-purple": string;
|
|
6
|
+
"lighter-purple": string;
|
|
7
|
+
black: string;
|
|
8
|
+
"outline-light": string;
|
|
9
|
+
"dark-gray": string;
|
|
10
|
+
gray: string;
|
|
11
|
+
"outline-gray": string;
|
|
12
|
+
"hover-gray": string;
|
|
13
|
+
"bg-gray": string;
|
|
14
|
+
white: string;
|
|
15
|
+
"hover-blue": string;
|
|
16
|
+
blue: string;
|
|
17
|
+
"light-blue": string;
|
|
18
|
+
"lighter-blue": string;
|
|
19
|
+
"dark-orange": string;
|
|
20
|
+
orange: string;
|
|
21
|
+
yellow: string;
|
|
22
|
+
"dark-red": string;
|
|
23
|
+
red: string;
|
|
24
|
+
"bright-pink": string;
|
|
25
|
+
"pale-pink": string;
|
|
26
|
+
"dark-green": string;
|
|
27
|
+
green: string;
|
|
28
|
+
toxic: string;
|
|
29
|
+
ultraviolet: string;
|
|
30
|
+
pinkish: string;
|
|
31
|
+
azure: string;
|
|
32
|
+
turquoise: string;
|
|
33
|
+
"darken-turquoise": string;
|
|
34
|
+
transparent: string;
|
|
35
|
+
};
|
|
36
|
+
declare const modes: {
|
|
37
|
+
readonly purple: string;
|
|
38
|
+
readonly "hover-purple": string;
|
|
39
|
+
readonly "light-purple": string;
|
|
40
|
+
readonly "bg-purple": string;
|
|
41
|
+
readonly "lighter-purple": string;
|
|
42
|
+
readonly black: string;
|
|
43
|
+
readonly "outline-light": string;
|
|
44
|
+
readonly "dark-gray": string;
|
|
45
|
+
readonly gray: string;
|
|
46
|
+
readonly "outline-gray": string;
|
|
47
|
+
readonly "hover-gray": string;
|
|
48
|
+
readonly "bg-gray": string;
|
|
49
|
+
readonly white: string;
|
|
50
|
+
readonly "hover-blue": string;
|
|
51
|
+
readonly blue: string;
|
|
52
|
+
readonly "light-blue": string;
|
|
53
|
+
readonly "lighter-blue": string;
|
|
54
|
+
readonly "dark-orange": string;
|
|
55
|
+
readonly orange: string;
|
|
56
|
+
readonly yellow: string;
|
|
57
|
+
readonly "dark-red": string;
|
|
58
|
+
readonly red: string;
|
|
59
|
+
readonly "bright-pink": string;
|
|
60
|
+
readonly "pale-pink": string;
|
|
61
|
+
readonly "dark-green": string;
|
|
62
|
+
readonly green: string;
|
|
63
|
+
readonly toxic: string;
|
|
64
|
+
readonly ultraviolet: string;
|
|
65
|
+
readonly pinkish: string;
|
|
66
|
+
readonly azure: string;
|
|
67
|
+
readonly turquoise: string;
|
|
68
|
+
readonly "darken-turquoise": string;
|
|
69
|
+
readonly transparent: string;
|
|
70
|
+
};
|
|
71
|
+
export type ColorTypes = keyof typeof modes;
|
|
72
|
+
export type ColorsUnion = (typeof Colors)[keyof typeof Colors];
|
|
73
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const Durations: {
|
|
2
|
+
s: string;
|
|
3
|
+
m: string;
|
|
4
|
+
l: string;
|
|
5
|
+
};
|
|
6
|
+
declare const DurationsObj: {
|
|
7
|
+
readonly s: string;
|
|
8
|
+
readonly m: string;
|
|
9
|
+
readonly l: string;
|
|
10
|
+
};
|
|
11
|
+
export type DurationsTypes = keyof typeof DurationsObj;
|
|
12
|
+
export type DurationsTypesUnion = (typeof DurationsObj)[keyof typeof Durations];
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const FontSizes: {
|
|
2
|
+
"100": string;
|
|
3
|
+
"200": string;
|
|
4
|
+
"300": string;
|
|
5
|
+
"400": string;
|
|
6
|
+
"500": string;
|
|
7
|
+
"600": string;
|
|
8
|
+
"700": string;
|
|
9
|
+
};
|
|
10
|
+
declare const modes: {
|
|
11
|
+
readonly "100": string;
|
|
12
|
+
readonly "200": string;
|
|
13
|
+
readonly "300": string;
|
|
14
|
+
readonly "400": string;
|
|
15
|
+
readonly "500": string;
|
|
16
|
+
readonly "600": string;
|
|
17
|
+
readonly "700": string;
|
|
18
|
+
};
|
|
19
|
+
export type FontSizeTypes = keyof typeof modes;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const FontWeights: {
|
|
2
|
+
normal: string;
|
|
3
|
+
medium: string;
|
|
4
|
+
"semi-bold": string;
|
|
5
|
+
bold: string;
|
|
6
|
+
};
|
|
7
|
+
declare const modes: {
|
|
8
|
+
readonly normal: string;
|
|
9
|
+
readonly medium: string;
|
|
10
|
+
readonly "semi-bold": string;
|
|
11
|
+
readonly bold: string;
|
|
12
|
+
};
|
|
13
|
+
export type FontWeightTypes = keyof typeof modes;
|
|
14
|
+
export type FontWeightsUnion = (typeof FontWeights)[keyof typeof FontWeights];
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ColumnAlignment, ColumnJustifyAlignment } from '../../enums/Grid';
|
|
2
|
+
export type ColumnSpanUnion = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12';
|
|
3
|
+
export type ColumnJustifyAlignmentUnion = (typeof ColumnJustifyAlignment)[keyof typeof ColumnJustifyAlignment];
|
|
4
|
+
export type ColumnAlignmentUnion = (typeof ColumnAlignment)[keyof typeof ColumnAlignment];
|
|
@@ -0,0 +1,447 @@
|
|
|
1
|
+
declare const icons: {
|
|
2
|
+
readonly a_circle: string;
|
|
3
|
+
readonly access_time: string;
|
|
4
|
+
readonly account_circle: string;
|
|
5
|
+
readonly account_edit: string;
|
|
6
|
+
readonly add: string;
|
|
7
|
+
readonly add_circle: string;
|
|
8
|
+
readonly address: string;
|
|
9
|
+
readonly ads_banner: string;
|
|
10
|
+
readonly album: string;
|
|
11
|
+
readonly alert_solid: string;
|
|
12
|
+
readonly alternate_email: string;
|
|
13
|
+
readonly amocrm: string;
|
|
14
|
+
readonly amper_music: string;
|
|
15
|
+
readonly analytics: string;
|
|
16
|
+
readonly animation_motion: string;
|
|
17
|
+
readonly api: string;
|
|
18
|
+
readonly apple_icon: string;
|
|
19
|
+
readonly applications: string;
|
|
20
|
+
readonly applications_new: string;
|
|
21
|
+
readonly apps: string;
|
|
22
|
+
readonly archive: string;
|
|
23
|
+
readonly archive_in: string;
|
|
24
|
+
readonly archive_out: string;
|
|
25
|
+
readonly "arrow-stats-down": string;
|
|
26
|
+
readonly "arrow-stats-up": string;
|
|
27
|
+
readonly arrow_backward: string;
|
|
28
|
+
readonly arrow_downward: string;
|
|
29
|
+
readonly arrow_drop_down: string;
|
|
30
|
+
readonly arrow_drop_up: string;
|
|
31
|
+
readonly arrow_forward: string;
|
|
32
|
+
readonly arrow_leftward: string;
|
|
33
|
+
readonly arrow_rightward: string;
|
|
34
|
+
readonly arrow_to_grow_circle: string;
|
|
35
|
+
readonly arrow_up_down: string;
|
|
36
|
+
readonly arrow_upward: string;
|
|
37
|
+
readonly arrows: string;
|
|
38
|
+
readonly artist: string;
|
|
39
|
+
readonly assessment: string;
|
|
40
|
+
readonly assets_unassigned: string;
|
|
41
|
+
readonly assignment: string;
|
|
42
|
+
readonly assignment_ind: string;
|
|
43
|
+
readonly assist_icon: string;
|
|
44
|
+
readonly attach_money: string;
|
|
45
|
+
readonly audiotrack: string;
|
|
46
|
+
readonly backspace: string;
|
|
47
|
+
readonly bank: string;
|
|
48
|
+
readonly bank_building: string;
|
|
49
|
+
readonly bank_building_blue: string;
|
|
50
|
+
readonly bank_card: string;
|
|
51
|
+
readonly bank_card_arrow: string;
|
|
52
|
+
readonly bank_card_clock: string;
|
|
53
|
+
readonly bank_card_double: string;
|
|
54
|
+
readonly bank_card_virtual_blue: string;
|
|
55
|
+
readonly bank_money_colored: string;
|
|
56
|
+
readonly bankwire: string;
|
|
57
|
+
readonly bell: string;
|
|
58
|
+
readonly binance_coin_colored: string;
|
|
59
|
+
readonly biometrics: string;
|
|
60
|
+
readonly bitcoin: string;
|
|
61
|
+
readonly bitcoin_cash_colored: string;
|
|
62
|
+
readonly bitcoin_colored: string;
|
|
63
|
+
readonly bloggerhood: string;
|
|
64
|
+
readonly board: string;
|
|
65
|
+
readonly book: string;
|
|
66
|
+
readonly broken_link: string;
|
|
67
|
+
readonly bug: string;
|
|
68
|
+
readonly bug_big: string;
|
|
69
|
+
readonly bug_report: string;
|
|
70
|
+
readonly building: string;
|
|
71
|
+
readonly building_colored: string;
|
|
72
|
+
readonly business_center: string;
|
|
73
|
+
readonly calendar: string;
|
|
74
|
+
readonly calendar_colored: string;
|
|
75
|
+
readonly calendar_load: string;
|
|
76
|
+
readonly calendar_sixteen: string;
|
|
77
|
+
readonly calendar_two_weeks: string;
|
|
78
|
+
readonly calendar_user: string;
|
|
79
|
+
readonly camera_alt: string;
|
|
80
|
+
readonly camera_plus: string;
|
|
81
|
+
readonly camera_video: string;
|
|
82
|
+
readonly cancel: string;
|
|
83
|
+
readonly cancel_alt: string;
|
|
84
|
+
readonly capitalist: string;
|
|
85
|
+
readonly capitalist_colored: string;
|
|
86
|
+
readonly card: string;
|
|
87
|
+
readonly card_off: string;
|
|
88
|
+
readonly card_off_circle: string;
|
|
89
|
+
readonly card_to_card_blue: string;
|
|
90
|
+
readonly card_to_card_colored: string;
|
|
91
|
+
readonly "cash-ad": string;
|
|
92
|
+
readonly cash: string;
|
|
93
|
+
readonly category: string;
|
|
94
|
+
readonly cellphone: string;
|
|
95
|
+
readonly change_sheet: string;
|
|
96
|
+
readonly channels_icon: string;
|
|
97
|
+
readonly chart_bar: string;
|
|
98
|
+
readonly chart_line: string;
|
|
99
|
+
readonly chat: string;
|
|
100
|
+
readonly chat_add: string;
|
|
101
|
+
readonly chat_forum: string;
|
|
102
|
+
readonly chat_messages: string;
|
|
103
|
+
readonly "check-rhombus": string;
|
|
104
|
+
readonly check: string;
|
|
105
|
+
readonly check_all: string;
|
|
106
|
+
readonly check_circle: string;
|
|
107
|
+
readonly check_circle_second: string;
|
|
108
|
+
readonly check_circle_solid: string;
|
|
109
|
+
readonly check_polygonal: string;
|
|
110
|
+
readonly "checkbox--checked": string;
|
|
111
|
+
readonly checkbox: string;
|
|
112
|
+
readonly checkboxes: string;
|
|
113
|
+
readonly circle: string;
|
|
114
|
+
readonly circle_arrows: string;
|
|
115
|
+
readonly click: string;
|
|
116
|
+
readonly clickup: string;
|
|
117
|
+
readonly clip: string;
|
|
118
|
+
readonly clock_check: string;
|
|
119
|
+
readonly clock_solid: string;
|
|
120
|
+
readonly close: string;
|
|
121
|
+
readonly close_circle_outline: string;
|
|
122
|
+
readonly close_circle_solid: string;
|
|
123
|
+
readonly cloud_upload: string;
|
|
124
|
+
readonly coin_speed: string;
|
|
125
|
+
readonly comment: string;
|
|
126
|
+
readonly company: string;
|
|
127
|
+
readonly confetti: string;
|
|
128
|
+
readonly connection: string;
|
|
129
|
+
readonly contacts: string;
|
|
130
|
+
readonly contracts: string;
|
|
131
|
+
readonly convert: string;
|
|
132
|
+
readonly copy: string;
|
|
133
|
+
readonly copyright: string;
|
|
134
|
+
readonly "credit-card": string;
|
|
135
|
+
readonly credit_card_blink: string;
|
|
136
|
+
readonly crypto: string;
|
|
137
|
+
readonly crypto_blue: string;
|
|
138
|
+
readonly crypto_colored: string;
|
|
139
|
+
readonly cryptowallet: string;
|
|
140
|
+
readonly cryptowallet_blue: string;
|
|
141
|
+
readonly cryptowallet_colored: string;
|
|
142
|
+
readonly cup: string;
|
|
143
|
+
readonly dashboard: string;
|
|
144
|
+
readonly date_range: string;
|
|
145
|
+
readonly deeplinks: string;
|
|
146
|
+
readonly "delete-account": string;
|
|
147
|
+
readonly delete: string;
|
|
148
|
+
readonly delete_alt: string;
|
|
149
|
+
readonly deprecated: string;
|
|
150
|
+
readonly desktop_device: string;
|
|
151
|
+
readonly dialog: string;
|
|
152
|
+
readonly discord: string;
|
|
153
|
+
readonly discord_colored: string;
|
|
154
|
+
readonly dislike: string;
|
|
155
|
+
readonly "doc-export": string;
|
|
156
|
+
readonly document: string;
|
|
157
|
+
readonly dollar: string;
|
|
158
|
+
readonly donate_blue: string;
|
|
159
|
+
readonly donate_colored: string;
|
|
160
|
+
readonly "dot-status": string;
|
|
161
|
+
readonly download: string;
|
|
162
|
+
readonly drag: string;
|
|
163
|
+
readonly eWallet: string;
|
|
164
|
+
readonly e_wallet_blue: string;
|
|
165
|
+
readonly e_wallet_colored: string;
|
|
166
|
+
readonly edit: string;
|
|
167
|
+
readonly edit_solid: string;
|
|
168
|
+
readonly email: string;
|
|
169
|
+
readonly email_circle: string;
|
|
170
|
+
readonly email_colored: string;
|
|
171
|
+
readonly enrollment: string;
|
|
172
|
+
readonly epayments_colored: string;
|
|
173
|
+
readonly "epidemic-sound": string;
|
|
174
|
+
readonly epidemic_sound_circle: string;
|
|
175
|
+
readonly error: string;
|
|
176
|
+
readonly ethereum_colored: string;
|
|
177
|
+
readonly event: string;
|
|
178
|
+
readonly event_alt: string;
|
|
179
|
+
readonly exit_to_app: string;
|
|
180
|
+
readonly explicit: string;
|
|
181
|
+
readonly export: string;
|
|
182
|
+
readonly export_all: string;
|
|
183
|
+
readonly express_payment: string;
|
|
184
|
+
readonly face: string;
|
|
185
|
+
readonly face_alt: string;
|
|
186
|
+
readonly facebook: string;
|
|
187
|
+
readonly facebook_colored: string;
|
|
188
|
+
readonly fast: string;
|
|
189
|
+
readonly favorite: string;
|
|
190
|
+
readonly file: string;
|
|
191
|
+
readonly file_add: string;
|
|
192
|
+
readonly file_copy: string;
|
|
193
|
+
readonly file_download: string;
|
|
194
|
+
readonly file_export: string;
|
|
195
|
+
readonly file_eye: string;
|
|
196
|
+
readonly file_import: string;
|
|
197
|
+
readonly file_new: string;
|
|
198
|
+
readonly filter_list: string;
|
|
199
|
+
readonly find_in_page: string;
|
|
200
|
+
readonly fire: string;
|
|
201
|
+
readonly fire_colored: string;
|
|
202
|
+
readonly fire_solid: string;
|
|
203
|
+
readonly flag_ar: string;
|
|
204
|
+
readonly flag_en: string;
|
|
205
|
+
readonly flag_es: string;
|
|
206
|
+
readonly flag_pt: string;
|
|
207
|
+
readonly flag_ru: string;
|
|
208
|
+
readonly flag_th: string;
|
|
209
|
+
readonly flag_vi: string;
|
|
210
|
+
readonly fly_dollar: string;
|
|
211
|
+
readonly fly_euro: string;
|
|
212
|
+
readonly freeze: string;
|
|
213
|
+
readonly fullscreen: string;
|
|
214
|
+
readonly get_app: string;
|
|
215
|
+
readonly gift_solid: string;
|
|
216
|
+
readonly glasses: string;
|
|
217
|
+
readonly google_colored: string;
|
|
218
|
+
readonly googleplus_colored: string;
|
|
219
|
+
readonly "graph-no-data": string;
|
|
220
|
+
readonly group: string;
|
|
221
|
+
readonly group_connection: string;
|
|
222
|
+
readonly growth_arrow_circle: string;
|
|
223
|
+
readonly hand_money: string;
|
|
224
|
+
readonly help: string;
|
|
225
|
+
readonly help_invert: string;
|
|
226
|
+
readonly help_solid: string;
|
|
227
|
+
readonly help_ukraine_colored: string;
|
|
228
|
+
readonly home: string;
|
|
229
|
+
readonly iban: string;
|
|
230
|
+
readonly iban_blue: string;
|
|
231
|
+
readonly id_square: string;
|
|
232
|
+
readonly id_thin: string;
|
|
233
|
+
readonly image: string;
|
|
234
|
+
readonly infinity: string;
|
|
235
|
+
readonly info: string;
|
|
236
|
+
readonly info_rounded_square: string;
|
|
237
|
+
readonly info_solid: string;
|
|
238
|
+
readonly instagram: string;
|
|
239
|
+
readonly instagram_colored: string;
|
|
240
|
+
readonly keyboard: string;
|
|
241
|
+
readonly keyboard_arrow_left: string;
|
|
242
|
+
readonly keyboard_arrow_right: string;
|
|
243
|
+
readonly keyboard_arrow_right_thin: string;
|
|
244
|
+
readonly kraken: string;
|
|
245
|
+
readonly language: string;
|
|
246
|
+
readonly layers: string;
|
|
247
|
+
readonly lightning: string;
|
|
248
|
+
readonly lightning_circle: string;
|
|
249
|
+
readonly lightning_circle_solid: string;
|
|
250
|
+
readonly lightning_outlined: string;
|
|
251
|
+
readonly like: string;
|
|
252
|
+
readonly link: string;
|
|
253
|
+
readonly link_broken: string;
|
|
254
|
+
readonly link_colored: string;
|
|
255
|
+
readonly link_external: string;
|
|
256
|
+
readonly link_external_new: string;
|
|
257
|
+
readonly linkedin: string;
|
|
258
|
+
readonly linkedin_colored: string;
|
|
259
|
+
readonly list: string;
|
|
260
|
+
readonly litecoin_colored: string;
|
|
261
|
+
readonly live_help: string;
|
|
262
|
+
readonly loader: string;
|
|
263
|
+
readonly location_city: string;
|
|
264
|
+
readonly location_on: string;
|
|
265
|
+
readonly lock: string;
|
|
266
|
+
readonly lock_old: string;
|
|
267
|
+
readonly logout: string;
|
|
268
|
+
readonly magic_blink: string;
|
|
269
|
+
readonly mail_outline: string;
|
|
270
|
+
readonly mc_assist: string;
|
|
271
|
+
readonly mc_dashboard: string;
|
|
272
|
+
readonly mc_id: string;
|
|
273
|
+
readonly mc_pay: string;
|
|
274
|
+
readonly mc_pay_app: string;
|
|
275
|
+
readonly mc_pay_compact: string;
|
|
276
|
+
readonly mc_pay_menu: string;
|
|
277
|
+
readonly mc_pay_menu_circle_colored: string;
|
|
278
|
+
readonly mc_pay_mobile_app: string;
|
|
279
|
+
readonly mc_studio: string;
|
|
280
|
+
readonly mc_vidwide: string;
|
|
281
|
+
readonly mcadslogo: string;
|
|
282
|
+
readonly mediacube: string;
|
|
283
|
+
readonly menu: string;
|
|
284
|
+
readonly menu_new: string;
|
|
285
|
+
readonly message: string;
|
|
286
|
+
readonly messenger: string;
|
|
287
|
+
readonly messenger_colored: string;
|
|
288
|
+
readonly minus: string;
|
|
289
|
+
readonly mobile_device: string;
|
|
290
|
+
readonly money_clock: string;
|
|
291
|
+
readonly money_input: string;
|
|
292
|
+
readonly more_horiz: string;
|
|
293
|
+
readonly music: string;
|
|
294
|
+
readonly music_icon: string;
|
|
295
|
+
readonly new: string;
|
|
296
|
+
readonly notes: string;
|
|
297
|
+
readonly objects: string;
|
|
298
|
+
readonly obs: string;
|
|
299
|
+
readonly okru: string;
|
|
300
|
+
readonly okru_colored: string;
|
|
301
|
+
readonly ondemand_video: string;
|
|
302
|
+
readonly partners: string;
|
|
303
|
+
readonly pause: string;
|
|
304
|
+
readonly payment: string;
|
|
305
|
+
readonly payoneer: string;
|
|
306
|
+
readonly payoneer_colored: string;
|
|
307
|
+
readonly payoneer_cy: string;
|
|
308
|
+
readonly paypal: string;
|
|
309
|
+
readonly paypal_colored: string;
|
|
310
|
+
readonly percent: string;
|
|
311
|
+
readonly personal_email_colored: string;
|
|
312
|
+
readonly phone_colored: string;
|
|
313
|
+
readonly photo_add: string;
|
|
314
|
+
readonly picture: string;
|
|
315
|
+
readonly picture_thin: string;
|
|
316
|
+
readonly plane: string;
|
|
317
|
+
readonly "play-videos": string;
|
|
318
|
+
readonly play: string;
|
|
319
|
+
readonly print: string;
|
|
320
|
+
readonly prototype: string;
|
|
321
|
+
readonly public: string;
|
|
322
|
+
readonly qiwi: string;
|
|
323
|
+
readonly qiwi_colored: string;
|
|
324
|
+
readonly "radio--checked": string;
|
|
325
|
+
readonly ready: string;
|
|
326
|
+
readonly receipt: string;
|
|
327
|
+
readonly receipt_thin: string;
|
|
328
|
+
readonly recording_circle: string;
|
|
329
|
+
readonly recruiters: string;
|
|
330
|
+
readonly redo: string;
|
|
331
|
+
readonly referral: string;
|
|
332
|
+
readonly referral_solid: string;
|
|
333
|
+
readonly reload: string;
|
|
334
|
+
readonly reload_right: string;
|
|
335
|
+
readonly remove_red_eye: string;
|
|
336
|
+
readonly repair: string;
|
|
337
|
+
readonly reply_arrow: string;
|
|
338
|
+
readonly requisites: string;
|
|
339
|
+
readonly reset: string;
|
|
340
|
+
readonly resize_video: string;
|
|
341
|
+
readonly revenue: string;
|
|
342
|
+
readonly review: string;
|
|
343
|
+
readonly ripple_colored: string;
|
|
344
|
+
readonly rocket: string;
|
|
345
|
+
readonly rocket_colored: string;
|
|
346
|
+
readonly rocket_small: string;
|
|
347
|
+
readonly role: string;
|
|
348
|
+
readonly safety: string;
|
|
349
|
+
readonly sand_clock: string;
|
|
350
|
+
readonly save: string;
|
|
351
|
+
readonly search: string;
|
|
352
|
+
readonly send: string;
|
|
353
|
+
readonly send_solid: string;
|
|
354
|
+
readonly settings: string;
|
|
355
|
+
readonly settings_solid: string;
|
|
356
|
+
readonly settings_tools: string;
|
|
357
|
+
readonly shield: string;
|
|
358
|
+
readonly shield_blue: string;
|
|
359
|
+
readonly shield_colored: string;
|
|
360
|
+
readonly shield_usd: string;
|
|
361
|
+
readonly shop: string;
|
|
362
|
+
readonly shopping_cart: string;
|
|
363
|
+
readonly shuffle: string;
|
|
364
|
+
readonly sign_out: string;
|
|
365
|
+
readonly skype: string;
|
|
366
|
+
readonly skype_colored: string;
|
|
367
|
+
readonly slack: string;
|
|
368
|
+
readonly smile_star_eye: string;
|
|
369
|
+
readonly sort_asc: string;
|
|
370
|
+
readonly sort_az: string;
|
|
371
|
+
readonly sort_desc: string;
|
|
372
|
+
readonly sort_directions: string;
|
|
373
|
+
readonly sort_list: string;
|
|
374
|
+
readonly sort_za: string;
|
|
375
|
+
readonly spy_colored: string;
|
|
376
|
+
readonly staff: string;
|
|
377
|
+
readonly star: string;
|
|
378
|
+
readonly star_round: string;
|
|
379
|
+
readonly star_round_solid: string;
|
|
380
|
+
readonly stars: string;
|
|
381
|
+
readonly stars_fill: string;
|
|
382
|
+
readonly stats_icon: string;
|
|
383
|
+
readonly steam: string;
|
|
384
|
+
readonly steam_colored: string;
|
|
385
|
+
readonly studio_icon: string;
|
|
386
|
+
readonly subscriptions: string;
|
|
387
|
+
readonly suitcase: string;
|
|
388
|
+
readonly supervised_user_circle: string;
|
|
389
|
+
readonly support: string;
|
|
390
|
+
readonly swap_cubes: string;
|
|
391
|
+
readonly swap_cubes_colored: string;
|
|
392
|
+
readonly swap_horizontal_circle: string;
|
|
393
|
+
readonly switches: string;
|
|
394
|
+
readonly table: string;
|
|
395
|
+
readonly telegram: string;
|
|
396
|
+
readonly telegram_colored: string;
|
|
397
|
+
readonly tether: string;
|
|
398
|
+
readonly tether_colored: string;
|
|
399
|
+
readonly three_dots: string;
|
|
400
|
+
readonly thumb_down: string;
|
|
401
|
+
readonly thumb_up: string;
|
|
402
|
+
readonly tiktok: string;
|
|
403
|
+
readonly time: string;
|
|
404
|
+
readonly time_thin: string;
|
|
405
|
+
readonly timelapse: string;
|
|
406
|
+
readonly timeline: string;
|
|
407
|
+
readonly tipalti: string;
|
|
408
|
+
readonly transaction: string;
|
|
409
|
+
readonly twitter_colored: string;
|
|
410
|
+
readonly unarchive: string;
|
|
411
|
+
readonly unfold_more: string;
|
|
412
|
+
readonly unlock: string;
|
|
413
|
+
readonly upload_img: string;
|
|
414
|
+
readonly usd_coin_colored: string;
|
|
415
|
+
readonly user: string;
|
|
416
|
+
readonly user_edit: string;
|
|
417
|
+
readonly user_kyc: string;
|
|
418
|
+
readonly viber: string;
|
|
419
|
+
readonly viber_colored: string;
|
|
420
|
+
readonly videoblocks: string;
|
|
421
|
+
readonly "vidiq-logo-mono": string;
|
|
422
|
+
readonly vidiq_circle: string;
|
|
423
|
+
readonly visibility: string;
|
|
424
|
+
readonly visibility_off: string;
|
|
425
|
+
readonly vkontakte: string;
|
|
426
|
+
readonly vkontakte_colored: string;
|
|
427
|
+
readonly wallet: string;
|
|
428
|
+
readonly warning: string;
|
|
429
|
+
readonly webmoney: string;
|
|
430
|
+
readonly webmoney_colored: string;
|
|
431
|
+
readonly website_colored: string;
|
|
432
|
+
readonly whatsapp: string;
|
|
433
|
+
readonly whatsapp_colored: string;
|
|
434
|
+
readonly wise_colored: string;
|
|
435
|
+
readonly worldfirst: string;
|
|
436
|
+
readonly x_network: string;
|
|
437
|
+
readonly yandexmoney: string;
|
|
438
|
+
readonly yoomoney_colored: string;
|
|
439
|
+
readonly youtube: string;
|
|
440
|
+
readonly youtube_circled: string;
|
|
441
|
+
readonly youtube_circled_second: string;
|
|
442
|
+
readonly youtube_colored: string;
|
|
443
|
+
readonly youtube_outlined: string;
|
|
444
|
+
readonly zcash_colored: string;
|
|
445
|
+
};
|
|
446
|
+
export type IconsListUnion = keyof typeof icons;
|
|
447
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const LineHeights: {
|
|
2
|
+
"150": string;
|
|
3
|
+
"200": string;
|
|
4
|
+
"250": string;
|
|
5
|
+
"300": string;
|
|
6
|
+
"400": string;
|
|
7
|
+
"500": string;
|
|
8
|
+
"600": string;
|
|
9
|
+
};
|
|
10
|
+
declare const modes: {
|
|
11
|
+
readonly "150": string;
|
|
12
|
+
readonly "200": string;
|
|
13
|
+
readonly "250": string;
|
|
14
|
+
readonly "300": string;
|
|
15
|
+
readonly "400": string;
|
|
16
|
+
readonly "500": string;
|
|
17
|
+
readonly "600": string;
|
|
18
|
+
};
|
|
19
|
+
export type LineHeightTypes = keyof typeof modes;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const MediaQueries: {
|
|
2
|
+
xs: string;
|
|
3
|
+
s: string;
|
|
4
|
+
m: string;
|
|
5
|
+
l: string;
|
|
6
|
+
xl: string;
|
|
7
|
+
"xs-down": string;
|
|
8
|
+
"s-down": string;
|
|
9
|
+
"m-down": string;
|
|
10
|
+
"l-down": string;
|
|
11
|
+
"xl-down": string;
|
|
12
|
+
};
|
|
13
|
+
declare const modes: {
|
|
14
|
+
readonly xs: string;
|
|
15
|
+
readonly s: string;
|
|
16
|
+
readonly m: string;
|
|
17
|
+
readonly l: string;
|
|
18
|
+
readonly xl: string;
|
|
19
|
+
readonly "xs-down": string;
|
|
20
|
+
readonly "s-down": string;
|
|
21
|
+
readonly "m-down": string;
|
|
22
|
+
readonly "l-down": string;
|
|
23
|
+
readonly "xl-down": string;
|
|
24
|
+
};
|
|
25
|
+
export type MediaQueryTypes = keyof typeof modes;
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const Radiuses: {
|
|
2
|
+
"50": string;
|
|
3
|
+
"100": string;
|
|
4
|
+
"150": string;
|
|
5
|
+
"200": string;
|
|
6
|
+
"300": string;
|
|
7
|
+
"400": string;
|
|
8
|
+
"1250": string;
|
|
9
|
+
square: string;
|
|
10
|
+
rounded: string;
|
|
11
|
+
circle: string;
|
|
12
|
+
};
|
|
13
|
+
declare const modes: {
|
|
14
|
+
readonly "50": string;
|
|
15
|
+
readonly "100": string;
|
|
16
|
+
readonly "150": string;
|
|
17
|
+
readonly "200": string;
|
|
18
|
+
readonly "300": string;
|
|
19
|
+
readonly "400": string;
|
|
20
|
+
readonly "1250": string;
|
|
21
|
+
readonly square: string;
|
|
22
|
+
readonly rounded: string;
|
|
23
|
+
readonly circle: string;
|
|
24
|
+
};
|
|
25
|
+
export type RadioTypes = keyof typeof modes;
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const Sizes: {
|
|
2
|
+
"50": string;
|
|
3
|
+
"100": string;
|
|
4
|
+
"150": string;
|
|
5
|
+
"200": string;
|
|
6
|
+
"250": string;
|
|
7
|
+
"300": string;
|
|
8
|
+
"400": string;
|
|
9
|
+
"500": string;
|
|
10
|
+
"550": string;
|
|
11
|
+
"600": string;
|
|
12
|
+
"700": string;
|
|
13
|
+
"800": string;
|
|
14
|
+
"900": string;
|
|
15
|
+
"1000": string;
|
|
16
|
+
};
|
|
17
|
+
declare const modes: {
|
|
18
|
+
readonly "50": string;
|
|
19
|
+
readonly "100": string;
|
|
20
|
+
readonly "150": string;
|
|
21
|
+
readonly "200": string;
|
|
22
|
+
readonly "250": string;
|
|
23
|
+
readonly "300": string;
|
|
24
|
+
readonly "400": string;
|
|
25
|
+
readonly "500": string;
|
|
26
|
+
readonly "550": string;
|
|
27
|
+
readonly "600": string;
|
|
28
|
+
readonly "700": string;
|
|
29
|
+
readonly "800": string;
|
|
30
|
+
readonly "900": string;
|
|
31
|
+
readonly "1000": string;
|
|
32
|
+
};
|
|
33
|
+
export type SizeTypes = keyof typeof modes;
|
|
34
|
+
export type SizesUnion = (typeof Sizes)[keyof typeof Sizes];
|
|
35
|
+
export {};
|