comand-component-library 3.2.9 → 3.3.1
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/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/assets/styles/global-styles.scss +0 -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
|
@@ -1046,10 +1046,9 @@ export default {
|
|
|
1046
1046
|
left: 50%;
|
|
1047
1047
|
transform: translateX(-50%);
|
|
1048
1048
|
z-index: 1;
|
|
1049
|
-
font-size: 1.2rem;
|
|
1050
1049
|
display: table;
|
|
1051
|
-
top:
|
|
1052
|
-
padding:
|
|
1050
|
+
top: .2rem;
|
|
1051
|
+
padding: .1rem .2rem;
|
|
1053
1052
|
line-height: 100%;
|
|
1054
1053
|
background: var(--color-scheme-background-color);
|
|
1055
1054
|
}
|
|
@@ -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
|
+
}
|