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.
@@ -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: 0.2rem;
1052
- padding: 0.1rem 0.2rem;
1050
+ top: .2rem;
1051
+ padding: .1rem .2rem;
1053
1052
  line-height: 100%;
1054
1053
  background: var(--color-scheme-background-color);
1055
1054
  }
@@ -80,5 +80,10 @@
80
80
  "comments": [
81
81
  "path to flag-files (will be combined with flag isoCode to load svg)"
82
82
  ]
83
+ },
84
+ "textPleaseSelect": {
85
+ "comments": [
86
+ "default text if no option is selected (and first option is not used)"
87
+ ]
83
88
  }
84
89
  }
@@ -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
+ }