comand-component-library 3.2.9 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.css +1 -1
- package/dist/comand-component-library.umd.min.js +1 -1
- package/package.json +2 -2
- package/src/App.vue +40 -16
- package/src/assets/data/icon.json +17 -0
- package/src/assets/data/tabs.json +3 -1
- package/src/components/CmdAddressData.vue +2 -2
- package/src/components/CmdBox.vue +1 -1
- package/src/components/CmdFakeSelect.vue +13 -4
- package/src/components/CmdFancyBox.vue +6 -2
- package/src/components/CmdFormFilters.vue +2 -2
- package/src/components/CmdIcon.vue +47 -10
- package/src/components/CmdListOfRequirements.vue +0 -5
- package/src/components/CmdLoginForm.vue +9 -10
- package/src/components/CmdMainNavigation.vue +1 -1
- package/src/components/CmdMultistepFormProgressBar.vue +2 -2
- package/src/components/CmdPager.vue +1 -1
- package/src/components/CmdSiteSearch.vue +1 -1
- package/src/components/CmdTable.vue +2 -2
- package/src/components/CmdTabs.vue +10 -6
- package/src/components/CmdTooltip.vue +1 -1
- package/src/components/CmdUploadForm.vue +2 -3
- package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +5 -0
- package/src/documentation/generated/CmdIconPropertyDescriptions.json +32 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"type": {
|
3
|
+
"comments": [
|
4
|
+
"type that defines where the icon is loaded from",
|
5
|
+
"'auto' is for letting the component check (by classname) if the icon should be loaded from the local iconfont (class=\"icon-'iconname'\")",
|
6
|
+
" or if the icon should be loaded form iconify-api (class='fontprefix':'iconname') (https://iconify.design/)",
|
7
|
+
"'iconify' forces the component to load an iconfify icon (without api) from a local source (which must be defined)"
|
8
|
+
],
|
9
|
+
"annotations": {
|
10
|
+
"allowedValues": [
|
11
|
+
"'auto', 'iconify'"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"iconClass": {
|
16
|
+
"comments": [
|
17
|
+
"icon-class for icon from local iconfont",
|
18
|
+
"",
|
19
|
+
"type-property must be set to auto and classname must include icon-'iconname'"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"tooltip": {
|
23
|
+
"comments": [
|
24
|
+
"tooltip text for icon"
|
25
|
+
],
|
26
|
+
"annotations": {
|
27
|
+
"requiredForAccessibility": [
|
28
|
+
"true"
|
29
|
+
]
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|