@central-design-system/icons 3.0.0-beta.4 → 3.0.0-beta.40
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/cds-icons.d.ts +19 -5
- package/dist/cds-icons.es.js +1023 -801
- package/dist/cds-icons.umd.js +1 -1
- package/dist/icons/IconAdministrator.vue.d.ts +2 -0
- package/dist/icons/IconBold.vue.d.ts +2 -0
- package/dist/icons/IconBookmark.vue.d.ts +2 -0
- package/dist/icons/IconBookmarkFill.vue.d.ts +2 -0
- package/dist/icons/IconDirectoryOpen.vue.d.ts +2 -0
- package/dist/icons/IconFill.vue.d.ts +2 -0
- package/dist/icons/IconFormat.vue.d.ts +2 -0
- package/dist/icons/IconFormula.vue.d.ts +2 -0
- package/dist/icons/IconHighlight.vue.d.ts +2 -0
- package/dist/icons/IconItalic.vue.d.ts +2 -0
- package/dist/icons/IconTabBackward.vue.d.ts +2 -0
- package/dist/icons/IconTabForward.vue.d.ts +2 -0
- package/dist/icons/IconUnderline.vue.d.ts +2 -0
- package/dist/icons/IconWhatsapp.vue.d.ts +2 -0
- package/dist/icons/index.d.ts +15 -1
- package/package.json +5 -1
- package/src/svg/administrator.svg +5 -0
- package/src/svg/bold.svg +3 -0
- package/src/svg/bookmark-fill.svg +3 -0
- package/src/svg/bookmark.svg +3 -0
- package/src/svg/directory-open.svg +10 -0
- package/src/svg/fill.svg +3 -0
- package/src/svg/format.svg +3 -0
- package/src/svg/formula.svg +4 -0
- package/src/svg/highlight.svg +3 -0
- package/src/svg/italic.svg +3 -0
- package/src/svg/settings.svg +4 -9
- package/src/svg/tab-backward.svg +3 -0
- package/src/svg/tab-forward.svg +3 -0
- package/src/svg/underline.svg +3 -0
- package/src/svg/upload.svg +4 -6
- package/src/svg/whatsapp.svg +4 -0
package/dist/cds-icons.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Automatically generated by CDS CLI
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on 9/24/2024, 11:03:58 AM
|
|
4
4
|
**/
|
|
5
|
-
import type { Plugin } from 'vue';
|
|
6
5
|
import * as icons from './icons';
|
|
7
|
-
import { IconAdd, IconAlertFill, IconAlert, IconAnalog, IconArrowDown, IconArrowLeftBottom, IconArrowLeftTop, IconArrowLeft, IconArrowRightBottom, IconArrowRightTop, IconArrowRight, IconArrowUp, IconArrowsVertical, IconCalendar, IconCardBank, IconCategory, IconCheckFill, IconCheck, IconCheckboxFill, IconCheckbox, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconChocholateMenu, IconChocolateMenu, IconClock, IconCollapse, IconComment, IconCompany, IconCompare, IconCopy, IconDataCards, IconDelete, IconDirectory, IconDocDownload, IconDoc, IconDownload, IconDraggable, IconEdit, IconEnter, IconErrorFill, IconError, IconExpand, IconExternal, IconFacebookFill, IconFacebook, IconFilters, IconFlag, IconFunnel, IconGlobe, IconInfinity, IconInfoFill, IconInfo, IconInsert, IconLink, IconListSearch, IconList, IconLoader, IconLocation, IconLocked, IconLogin, IconLogout, IconMenu, IconMinus, IconNotification, IconOverflowMenuHorizontal, IconOverflowMenuVertical, IconPassword, IconPin, IconPlus, IconPrinter, IconQuestionFill, IconQuestion, IconRefresh, IconRemove, IconSandglass, IconSave, IconSearch, IconSettings, IconShoppingCart, IconSortDate, IconSource, IconStarFill, IconStar, IconTelegram, IconTimer, IconTool, IconTruck, IconUnlocked, IconUpload, IconUserAvatar, IconUserGroup, IconVisibilityOff, IconVisibilityOn, IconVk, IconWinner, IconWorkspace, IconYoutube } from './icons';
|
|
6
|
+
import { IconAdd, IconAdministrator, IconAlertFill, IconAlert, IconAnalog, IconArrowDown, IconArrowLeftBottom, IconArrowLeftTop, IconArrowLeft, IconArrowRightBottom, IconArrowRightTop, IconArrowRight, IconArrowUp, IconArrowsVertical, IconBold, IconBookmarkFill, IconBookmark, IconCalendar, IconCardBank, IconCategory, IconCheckFill, IconCheck, IconCheckboxFill, IconCheckbox, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconChocholateMenu, IconChocolateMenu, IconClock, IconCollapse, IconComment, IconCompany, IconCompare, IconCopy, IconDataCards, IconDelete, IconDirectoryOpen, IconDirectory, IconDocDownload, IconDoc, IconDownload, IconDraggable, IconEdit, IconEnter, IconErrorFill, IconError, IconExpand, IconExternal, IconFacebookFill, IconFacebook, IconFill, IconFilters, IconFlag, IconFormat, IconFormula, IconFunnel, IconGlobe, IconHighlight, IconInfinity, IconInfoFill, IconInfo, IconInsert, IconItalic, IconLink, IconListSearch, IconList, IconLoader, IconLocation, IconLocked, IconLogin, IconLogout, IconMenu, IconMinus, IconNotification, IconOverflowMenuHorizontal, IconOverflowMenuVertical, IconPassword, IconPin, IconPlus, IconPrinter, IconQuestionFill, IconQuestion, IconRefresh, IconRemove, IconSandglass, IconSave, IconSearch, IconSettings, IconShoppingCart, IconSortDate, IconSource, IconStarFill, IconStar, IconTabBackward, IconTabForward, IconTelegram, IconTimer, IconTool, IconTruck, IconUnderline, IconUnlocked, IconUpload, IconUserAvatar, IconUserGroup, IconVisibilityOff, IconVisibilityOn, IconVk, IconWhatsapp, IconWinner, IconWorkspace, IconYoutube } from './icons';
|
|
7
|
+
import type { Plugin } from 'vue';
|
|
8
8
|
declare module '@vue/runtime-core' {
|
|
9
9
|
interface GlobalComponents {
|
|
10
10
|
IconAdd: typeof IconAdd;
|
|
11
|
+
IconAdministrator: typeof IconAdministrator;
|
|
11
12
|
IconAlertFill: typeof IconAlertFill;
|
|
12
13
|
IconAlert: typeof IconAlert;
|
|
13
14
|
IconAnalog: typeof IconAnalog;
|
|
@@ -20,6 +21,9 @@ declare module '@vue/runtime-core' {
|
|
|
20
21
|
IconArrowRight: typeof IconArrowRight;
|
|
21
22
|
IconArrowUp: typeof IconArrowUp;
|
|
22
23
|
IconArrowsVertical: typeof IconArrowsVertical;
|
|
24
|
+
IconBold: typeof IconBold;
|
|
25
|
+
IconBookmarkFill: typeof IconBookmarkFill;
|
|
26
|
+
IconBookmark: typeof IconBookmark;
|
|
23
27
|
IconCalendar: typeof IconCalendar;
|
|
24
28
|
IconCardBank: typeof IconCardBank;
|
|
25
29
|
IconCategory: typeof IconCategory;
|
|
@@ -41,6 +45,7 @@ declare module '@vue/runtime-core' {
|
|
|
41
45
|
IconCopy: typeof IconCopy;
|
|
42
46
|
IconDataCards: typeof IconDataCards;
|
|
43
47
|
IconDelete: typeof IconDelete;
|
|
48
|
+
IconDirectoryOpen: typeof IconDirectoryOpen;
|
|
44
49
|
IconDirectory: typeof IconDirectory;
|
|
45
50
|
IconDocDownload: typeof IconDocDownload;
|
|
46
51
|
IconDoc: typeof IconDoc;
|
|
@@ -54,14 +59,19 @@ declare module '@vue/runtime-core' {
|
|
|
54
59
|
IconExternal: typeof IconExternal;
|
|
55
60
|
IconFacebookFill: typeof IconFacebookFill;
|
|
56
61
|
IconFacebook: typeof IconFacebook;
|
|
62
|
+
IconFill: typeof IconFill;
|
|
57
63
|
IconFilters: typeof IconFilters;
|
|
58
64
|
IconFlag: typeof IconFlag;
|
|
65
|
+
IconFormat: typeof IconFormat;
|
|
66
|
+
IconFormula: typeof IconFormula;
|
|
59
67
|
IconFunnel: typeof IconFunnel;
|
|
60
68
|
IconGlobe: typeof IconGlobe;
|
|
69
|
+
IconHighlight: typeof IconHighlight;
|
|
61
70
|
IconInfinity: typeof IconInfinity;
|
|
62
71
|
IconInfoFill: typeof IconInfoFill;
|
|
63
72
|
IconInfo: typeof IconInfo;
|
|
64
73
|
IconInsert: typeof IconInsert;
|
|
74
|
+
IconItalic: typeof IconItalic;
|
|
65
75
|
IconLink: typeof IconLink;
|
|
66
76
|
IconListSearch: typeof IconListSearch;
|
|
67
77
|
IconList: typeof IconList;
|
|
@@ -92,10 +102,13 @@ declare module '@vue/runtime-core' {
|
|
|
92
102
|
IconSource: typeof IconSource;
|
|
93
103
|
IconStarFill: typeof IconStarFill;
|
|
94
104
|
IconStar: typeof IconStar;
|
|
105
|
+
IconTabBackward: typeof IconTabBackward;
|
|
106
|
+
IconTabForward: typeof IconTabForward;
|
|
95
107
|
IconTelegram: typeof IconTelegram;
|
|
96
108
|
IconTimer: typeof IconTimer;
|
|
97
109
|
IconTool: typeof IconTool;
|
|
98
110
|
IconTruck: typeof IconTruck;
|
|
111
|
+
IconUnderline: typeof IconUnderline;
|
|
99
112
|
IconUnlocked: typeof IconUnlocked;
|
|
100
113
|
IconUpload: typeof IconUpload;
|
|
101
114
|
IconUserAvatar: typeof IconUserAvatar;
|
|
@@ -103,14 +116,15 @@ declare module '@vue/runtime-core' {
|
|
|
103
116
|
IconVisibilityOff: typeof IconVisibilityOff;
|
|
104
117
|
IconVisibilityOn: typeof IconVisibilityOn;
|
|
105
118
|
IconVk: typeof IconVk;
|
|
119
|
+
IconWhatsapp: typeof IconWhatsapp;
|
|
106
120
|
IconWinner: typeof IconWinner;
|
|
107
121
|
IconWorkspace: typeof IconWorkspace;
|
|
108
122
|
IconYoutube: typeof IconYoutube;
|
|
109
123
|
}
|
|
110
124
|
}
|
|
111
|
-
export { IconAdd, IconAlertFill, IconAlert, IconAnalog, IconArrowDown, IconArrowLeftBottom, IconArrowLeftTop, IconArrowLeft, IconArrowRightBottom, IconArrowRightTop, IconArrowRight, IconArrowUp, IconArrowsVertical, IconCalendar, IconCardBank, IconCategory, IconCheckFill, IconCheck, IconCheckboxFill, IconCheckbox, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconChocholateMenu, IconChocolateMenu, IconClock, IconCollapse, IconComment, IconCompany, IconCompare, IconCopy, IconDataCards, IconDelete, IconDirectory, IconDocDownload, IconDoc, IconDownload, IconDraggable, IconEdit, IconEnter, IconErrorFill, IconError, IconExpand, IconExternal, IconFacebookFill, IconFacebook, IconFilters, IconFlag, IconFunnel, IconGlobe, IconInfinity, IconInfoFill, IconInfo, IconInsert, IconLink, IconListSearch, IconList, IconLoader, IconLocation, IconLocked, IconLogin, IconLogout, IconMenu, IconMinus, IconNotification, IconOverflowMenuHorizontal, IconOverflowMenuVertical, IconPassword, IconPin, IconPlus, IconPrinter, IconQuestionFill, IconQuestion, IconRefresh, IconRemove, IconSandglass, IconSave, IconSearch, IconSettings, IconShoppingCart, IconSortDate, IconSource, IconStarFill, IconStar, IconTelegram, IconTimer, IconTool, IconTruck, IconUnlocked, IconUpload, IconUserAvatar, IconUserGroup, IconVisibilityOff, IconVisibilityOn, IconVk, IconWinner, IconWorkspace, IconYoutube };
|
|
125
|
+
export { IconAdd, IconAdministrator, IconAlertFill, IconAlert, IconAnalog, IconArrowDown, IconArrowLeftBottom, IconArrowLeftTop, IconArrowLeft, IconArrowRightBottom, IconArrowRightTop, IconArrowRight, IconArrowUp, IconArrowsVertical, IconBold, IconBookmarkFill, IconBookmark, IconCalendar, IconCardBank, IconCategory, IconCheckFill, IconCheck, IconCheckboxFill, IconCheckbox, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconChocholateMenu, IconChocolateMenu, IconClock, IconCollapse, IconComment, IconCompany, IconCompare, IconCopy, IconDataCards, IconDelete, IconDirectoryOpen, IconDirectory, IconDocDownload, IconDoc, IconDownload, IconDraggable, IconEdit, IconEnter, IconErrorFill, IconError, IconExpand, IconExternal, IconFacebookFill, IconFacebook, IconFill, IconFilters, IconFlag, IconFormat, IconFormula, IconFunnel, IconGlobe, IconHighlight, IconInfinity, IconInfoFill, IconInfo, IconInsert, IconItalic, IconLink, IconListSearch, IconList, IconLoader, IconLocation, IconLocked, IconLogin, IconLogout, IconMenu, IconMinus, IconNotification, IconOverflowMenuHorizontal, IconOverflowMenuVertical, IconPassword, IconPin, IconPlus, IconPrinter, IconQuestionFill, IconQuestion, IconRefresh, IconRemove, IconSandglass, IconSave, IconSearch, IconSettings, IconShoppingCart, IconSortDate, IconSource, IconStarFill, IconStar, IconTabBackward, IconTabForward, IconTelegram, IconTimer, IconTool, IconTruck, IconUnderline, IconUnlocked, IconUpload, IconUserAvatar, IconUserGroup, IconVisibilityOff, IconVisibilityOn, IconVk, IconWhatsapp, IconWinner, IconWorkspace, IconYoutube };
|
|
112
126
|
declare const plugin: Plugin;
|
|
113
127
|
export { plugin as CdsIcons, icons };
|
|
114
128
|
export default plugin;
|
|
115
|
-
export declare const allowedIcons: readonly ["add", "alert-fill", "alert", "analog", "arrow-down", "arrow-left-bottom", "arrow-left-top", "arrow-left", "arrow-right-bottom", "arrow-right-top", "arrow-right", "arrow-up", "arrows-vertical", "calendar", "card-bank", "category", "check-fill", "check", "checkbox-fill", "checkbox", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chocholate-menu", "chocolate-menu", "clock", "collapse", "comment", "company", "compare", "copy", "data-cards", "delete", "directory", "doc-download", "doc", "download", "draggable", "edit", "enter", "error-fill", "error", "expand", "external", "facebook-fill", "facebook", "filters", "flag", "funnel", "globe", "infinity", "info-fill", "info", "insert", "link", "list-search", "list", "loader", "location", "locked", "login", "logout", "menu", "minus", "notification", "overflow-menu-horizontal", "overflow-menu-vertical", "password", "pin", "plus", "printer", "question-fill", "question", "refresh", "remove", "sandglass", "save", "search", "settings", "shopping-cart", "sort-date", "source", "star-fill", "star", "telegram", "timer", "tool", "truck", "unlocked", "upload", "user-avatar", "user-group", "visibility-off", "visibility-on", "vk", "winner", "workspace", "youtube"];
|
|
129
|
+
export declare const allowedIcons: readonly ["add", "administrator", "alert-fill", "alert", "analog", "arrow-down", "arrow-left-bottom", "arrow-left-top", "arrow-left", "arrow-right-bottom", "arrow-right-top", "arrow-right", "arrow-up", "arrows-vertical", "bold", "bookmark-fill", "bookmark", "calendar", "card-bank", "category", "check-fill", "check", "checkbox-fill", "checkbox", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chocholate-menu", "chocolate-menu", "clock", "collapse", "comment", "company", "compare", "copy", "data-cards", "delete", "directory-open", "directory", "doc-download", "doc", "download", "draggable", "edit", "enter", "error-fill", "error", "expand", "external", "facebook-fill", "facebook", "fill", "filters", "flag", "format", "formula", "funnel", "globe", "highlight", "infinity", "info-fill", "info", "insert", "italic", "link", "list-search", "list", "loader", "location", "locked", "login", "logout", "menu", "minus", "notification", "overflow-menu-horizontal", "overflow-menu-vertical", "password", "pin", "plus", "printer", "question-fill", "question", "refresh", "remove", "sandglass", "save", "search", "settings", "shopping-cart", "sort-date", "source", "star-fill", "star", "tab-backward", "tab-forward", "telegram", "timer", "tool", "truck", "underline", "unlocked", "upload", "user-avatar", "user-group", "visibility-off", "visibility-on", "vk", "whatsapp", "winner", "workspace", "youtube"];
|
|
116
130
|
export declare type TCdsIconsName = typeof allowedIcons[number];
|