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.
@@ -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
+ }