@kubex/zinc 1.0.12 → 1.0.13
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/custom-elements.json +2493 -2156
- package/dist/vscode.html-custom-data.json +185 -155
- package/dist/web-types.json +420 -334
- package/dist/zn.d.ts +125 -15
- package/dist/zn.min.css +1 -1
- package/dist/zn.min.js +541 -518
- package/docs/pages/components/data-select.md +1 -1
- package/docs/pages/components/filter-container.md +72 -0
- package/docs/pages/components/filter-wrapper.md +2 -2
- package/docs/pages/components/hover-container.md +20 -0
- package/docs/pages/components/reveal.md +24 -0
- package/docs/pages/components/select.md +39 -1
- package/docs/pages/components/toggle.md +6 -3
- package/package.json +1 -1
- package/scss/_root.scss +4 -4
- package/src/components/button/button.component.ts +11 -5
- package/src/components/data-select/data-select.component.ts +5 -2
- package/src/components/dropdown/dropdown.component.ts +3 -0
- package/src/components/filter-container/filter-container.component.ts +112 -0
- package/src/components/filter-container/filter-container.scss +5 -0
- package/src/components/filter-container/filter-container.test.ts +10 -0
- package/src/components/filter-container/index.ts +12 -0
- package/src/components/form-group/form-group.component.ts +26 -25
- package/src/components/form-group/form-group.scss +1 -0
- package/src/components/header/header.scss +7 -0
- package/src/components/navbar/navbar.scss +4 -0
- package/src/components/note/note.component.ts +1 -0
- package/src/components/option/option.component.ts +3 -3
- package/src/components/option/option.scss +5 -9
- package/src/components/progress-bar/progress-bar.component.ts +1 -1
- package/src/components/progress-tile/progress-tile.component.ts +2 -2
- package/src/components/reveal/index.ts +12 -0
- package/src/components/reveal/reveal.component.ts +92 -0
- package/src/components/reveal/reveal.scss +18 -0
- package/src/components/reveal/reveal.test.ts +10 -0
- package/src/components/select/select.component.ts +63 -7
- package/src/components/sp/sp.component.ts +2 -0
- package/src/components/split-pane/split-pane.component.ts +2 -1
- package/src/components/toggle/toggle.component.ts +33 -23
- package/src/components/tooltip/tooltip.component.ts +10 -5
- package/src/internal/form.ts +5 -0
- package/src/utilities/top-layer-manager.ts +32 -0
- package/src/wc.scss +9 -5
- package/src/zinc.ts +2 -0
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@kubex/zinc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.13",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -901,6 +901,63 @@
|
|
|
901
901
|
]
|
|
902
902
|
}
|
|
903
903
|
},
|
|
904
|
+
{
|
|
905
|
+
"name": "zn-chip",
|
|
906
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
907
|
+
"doc-url": "",
|
|
908
|
+
"attributes": [
|
|
909
|
+
{ "name": "icon", "value": { "type": "string", "default": "''" } },
|
|
910
|
+
{
|
|
911
|
+
"name": "type",
|
|
912
|
+
"value": {
|
|
913
|
+
"type": "'info' | 'success' | 'warning' | 'error' | 'primary' |\n 'transparent' | 'custom' | 'neutral'",
|
|
914
|
+
"default": "'neutral'"
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"name": "size",
|
|
919
|
+
"value": { "type": "'small' | 'medium' | 'large'" }
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"name": "flush",
|
|
923
|
+
"value": { "type": "boolean", "default": "false" }
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "flush-x",
|
|
927
|
+
"value": { "type": "boolean", "default": "false" }
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"name": "flush-y",
|
|
931
|
+
"value": { "type": "boolean", "default": "false" }
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"slots": [
|
|
935
|
+
{ "name": "", "description": "The default slot." },
|
|
936
|
+
{ "name": "example", "description": "An example slot." }
|
|
937
|
+
],
|
|
938
|
+
"events": [
|
|
939
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
940
|
+
],
|
|
941
|
+
"js": {
|
|
942
|
+
"properties": [
|
|
943
|
+
{ "name": "icon", "type": "string" },
|
|
944
|
+
{
|
|
945
|
+
"name": "type",
|
|
946
|
+
"type": "'info' | 'success' | 'warning' | 'error' | 'primary' |\n 'transparent' | 'custom' | 'neutral'"
|
|
947
|
+
},
|
|
948
|
+
{ "name": "size", "type": "'small' | 'medium' | 'large'" },
|
|
949
|
+
{ "name": "flush", "type": "boolean" },
|
|
950
|
+
{ "name": "flushX", "type": "boolean" },
|
|
951
|
+
{ "name": "flushY", "type": "boolean" }
|
|
952
|
+
],
|
|
953
|
+
"events": [
|
|
954
|
+
{
|
|
955
|
+
"name": "zn-event-name",
|
|
956
|
+
"description": "Emitted as an example."
|
|
957
|
+
}
|
|
958
|
+
]
|
|
959
|
+
}
|
|
960
|
+
},
|
|
904
961
|
{
|
|
905
962
|
"name": "zn-collapsible",
|
|
906
963
|
"description": "Toggles between showing and hiding content when clicked\n---\n\n\n### **Slots:**\n - **header** - Clicking will toggle the show state of the data",
|
|
@@ -969,63 +1026,6 @@
|
|
|
969
1026
|
"events": []
|
|
970
1027
|
}
|
|
971
1028
|
},
|
|
972
|
-
{
|
|
973
|
-
"name": "zn-chip",
|
|
974
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
975
|
-
"doc-url": "",
|
|
976
|
-
"attributes": [
|
|
977
|
-
{ "name": "icon", "value": { "type": "string", "default": "''" } },
|
|
978
|
-
{
|
|
979
|
-
"name": "type",
|
|
980
|
-
"value": {
|
|
981
|
-
"type": "'info' | 'success' | 'warning' | 'error' | 'primary' |\n 'transparent' | 'custom' | 'neutral'",
|
|
982
|
-
"default": "'neutral'"
|
|
983
|
-
}
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
"name": "size",
|
|
987
|
-
"value": { "type": "'small' | 'medium' | 'large'" }
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
"name": "flush",
|
|
991
|
-
"value": { "type": "boolean", "default": "false" }
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
"name": "flush-x",
|
|
995
|
-
"value": { "type": "boolean", "default": "false" }
|
|
996
|
-
},
|
|
997
|
-
{
|
|
998
|
-
"name": "flush-y",
|
|
999
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1000
|
-
}
|
|
1001
|
-
],
|
|
1002
|
-
"slots": [
|
|
1003
|
-
{ "name": "", "description": "The default slot." },
|
|
1004
|
-
{ "name": "example", "description": "An example slot." }
|
|
1005
|
-
],
|
|
1006
|
-
"events": [
|
|
1007
|
-
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
1008
|
-
],
|
|
1009
|
-
"js": {
|
|
1010
|
-
"properties": [
|
|
1011
|
-
{ "name": "icon", "type": "string" },
|
|
1012
|
-
{
|
|
1013
|
-
"name": "type",
|
|
1014
|
-
"type": "'info' | 'success' | 'warning' | 'error' | 'primary' |\n 'transparent' | 'custom' | 'neutral'"
|
|
1015
|
-
},
|
|
1016
|
-
{ "name": "size", "type": "'small' | 'medium' | 'large'" },
|
|
1017
|
-
{ "name": "flush", "type": "boolean" },
|
|
1018
|
-
{ "name": "flushX", "type": "boolean" },
|
|
1019
|
-
{ "name": "flushY", "type": "boolean" }
|
|
1020
|
-
],
|
|
1021
|
-
"events": [
|
|
1022
|
-
{
|
|
1023
|
-
"name": "zn-event-name",
|
|
1024
|
-
"description": "Emitted as an example."
|
|
1025
|
-
}
|
|
1026
|
-
]
|
|
1027
|
-
}
|
|
1028
|
-
},
|
|
1029
1029
|
{
|
|
1030
1030
|
"name": "zn-cols",
|
|
1031
1031
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -1393,6 +1393,10 @@
|
|
|
1393
1393
|
{
|
|
1394
1394
|
"name": "icon-only",
|
|
1395
1395
|
"value": { "type": "boolean", "default": "false" }
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"name": "multiple",
|
|
1399
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1396
1400
|
}
|
|
1397
1401
|
],
|
|
1398
1402
|
"slots": [
|
|
@@ -1477,6 +1481,7 @@
|
|
|
1477
1481
|
"type": "boolean"
|
|
1478
1482
|
},
|
|
1479
1483
|
{ "name": "iconOnly", "type": "boolean" },
|
|
1484
|
+
{ "name": "multiple", "type": "boolean" },
|
|
1480
1485
|
{ "name": "validationMessage" },
|
|
1481
1486
|
{ "name": "validity", "type": "ValidityState" },
|
|
1482
1487
|
{ "name": "closeOnTab" },
|
|
@@ -2042,100 +2047,6 @@
|
|
|
2042
2047
|
]
|
|
2043
2048
|
}
|
|
2044
2049
|
},
|
|
2045
|
-
{
|
|
2046
|
-
"name": "zn-editor",
|
|
2047
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2048
|
-
"doc-url": "",
|
|
2049
|
-
"attributes": [
|
|
2050
|
-
{ "name": "id", "value": { "type": "string" } },
|
|
2051
|
-
{ "name": "name", "value": { "type": "string" } },
|
|
2052
|
-
{ "name": "value", "value": { "type": "string" } },
|
|
2053
|
-
{
|
|
2054
|
-
"name": "interaction-type",
|
|
2055
|
-
"value": { "type": "'ticket' | 'chat'", "default": "'chat'" }
|
|
2056
|
-
},
|
|
2057
|
-
{ "name": "attachment-url", "value": { "type": "string" } },
|
|
2058
|
-
{
|
|
2059
|
-
"name": "code-blocks",
|
|
2060
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
"name": "dividers",
|
|
2064
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2065
|
-
},
|
|
2066
|
-
{
|
|
2067
|
-
"name": "links",
|
|
2068
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2069
|
-
},
|
|
2070
|
-
{
|
|
2071
|
-
"name": "attachments",
|
|
2072
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
"name": "images",
|
|
2076
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2077
|
-
},
|
|
2078
|
-
{
|
|
2079
|
-
"name": "videos",
|
|
2080
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
"name": "dates",
|
|
2084
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2085
|
-
},
|
|
2086
|
-
{
|
|
2087
|
-
"name": "emojis",
|
|
2088
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
"name": "code",
|
|
2092
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2093
|
-
},
|
|
2094
|
-
{
|
|
2095
|
-
"name": "ai",
|
|
2096
|
-
"value": { "type": "boolean", "default": "false" }
|
|
2097
|
-
},
|
|
2098
|
-
{
|
|
2099
|
-
"name": "ai-path",
|
|
2100
|
-
"value": { "type": "string", "default": "''" }
|
|
2101
|
-
}
|
|
2102
|
-
],
|
|
2103
|
-
"slots": [
|
|
2104
|
-
{ "name": "", "description": "The default slot." },
|
|
2105
|
-
{ "name": "example", "description": "An example slot." }
|
|
2106
|
-
],
|
|
2107
|
-
"events": [
|
|
2108
|
-
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
2109
|
-
],
|
|
2110
|
-
"js": {
|
|
2111
|
-
"properties": [
|
|
2112
|
-
{ "name": "id", "type": "string" },
|
|
2113
|
-
{ "name": "name", "type": "string" },
|
|
2114
|
-
{ "name": "value", "type": "string" },
|
|
2115
|
-
{ "name": "interactionType", "type": "'ticket' | 'chat'" },
|
|
2116
|
-
{ "name": "uploadAttachmentUrl", "type": "string" },
|
|
2117
|
-
{ "name": "codeBlocksEnabled", "type": "boolean" },
|
|
2118
|
-
{ "name": "dividersEnabled", "type": "boolean" },
|
|
2119
|
-
{ "name": "linksEnabled", "type": "boolean" },
|
|
2120
|
-
{ "name": "attachmentsEnabled", "type": "boolean" },
|
|
2121
|
-
{ "name": "imagesEnabled", "type": "boolean" },
|
|
2122
|
-
{ "name": "videosEnabled", "type": "boolean" },
|
|
2123
|
-
{ "name": "datesEnabled", "type": "boolean" },
|
|
2124
|
-
{ "name": "emojisEnabled", "type": "boolean" },
|
|
2125
|
-
{ "name": "codeEnabled", "type": "boolean" },
|
|
2126
|
-
{ "name": "aiEnabled", "type": "boolean" },
|
|
2127
|
-
{ "name": "aiPath", "type": "string" },
|
|
2128
|
-
{ "name": "validity", "type": "ValidityState" },
|
|
2129
|
-
{ "name": "validationMessage", "type": "string" }
|
|
2130
|
-
],
|
|
2131
|
-
"events": [
|
|
2132
|
-
{
|
|
2133
|
-
"name": "zn-event-name",
|
|
2134
|
-
"description": "Emitted as an example."
|
|
2135
|
-
}
|
|
2136
|
-
]
|
|
2137
|
-
}
|
|
2138
|
-
},
|
|
2139
2050
|
{
|
|
2140
2051
|
"name": "zn-dropdown",
|
|
2141
2052
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Methods:**\n - **show()** - Opens the dropdown\n- **hide()** - Closes the dropdown\n- **reposition()** - Instructs the dropdown to reposition itself\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -2262,6 +2173,100 @@
|
|
|
2262
2173
|
]
|
|
2263
2174
|
}
|
|
2264
2175
|
},
|
|
2176
|
+
{
|
|
2177
|
+
"name": "zn-editor",
|
|
2178
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2179
|
+
"doc-url": "",
|
|
2180
|
+
"attributes": [
|
|
2181
|
+
{ "name": "id", "value": { "type": "string" } },
|
|
2182
|
+
{ "name": "name", "value": { "type": "string" } },
|
|
2183
|
+
{ "name": "value", "value": { "type": "string" } },
|
|
2184
|
+
{
|
|
2185
|
+
"name": "interaction-type",
|
|
2186
|
+
"value": { "type": "'ticket' | 'chat'", "default": "'chat'" }
|
|
2187
|
+
},
|
|
2188
|
+
{ "name": "attachment-url", "value": { "type": "string" } },
|
|
2189
|
+
{
|
|
2190
|
+
"name": "code-blocks",
|
|
2191
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"name": "dividers",
|
|
2195
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"name": "links",
|
|
2199
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"name": "attachments",
|
|
2203
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"name": "images",
|
|
2207
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"name": "videos",
|
|
2211
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"name": "dates",
|
|
2215
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"name": "emojis",
|
|
2219
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"name": "code",
|
|
2223
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"name": "ai",
|
|
2227
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"name": "ai-path",
|
|
2231
|
+
"value": { "type": "string", "default": "''" }
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
2234
|
+
"slots": [
|
|
2235
|
+
{ "name": "", "description": "The default slot." },
|
|
2236
|
+
{ "name": "example", "description": "An example slot." }
|
|
2237
|
+
],
|
|
2238
|
+
"events": [
|
|
2239
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
2240
|
+
],
|
|
2241
|
+
"js": {
|
|
2242
|
+
"properties": [
|
|
2243
|
+
{ "name": "id", "type": "string" },
|
|
2244
|
+
{ "name": "name", "type": "string" },
|
|
2245
|
+
{ "name": "value", "type": "string" },
|
|
2246
|
+
{ "name": "interactionType", "type": "'ticket' | 'chat'" },
|
|
2247
|
+
{ "name": "uploadAttachmentUrl", "type": "string" },
|
|
2248
|
+
{ "name": "codeBlocksEnabled", "type": "boolean" },
|
|
2249
|
+
{ "name": "dividersEnabled", "type": "boolean" },
|
|
2250
|
+
{ "name": "linksEnabled", "type": "boolean" },
|
|
2251
|
+
{ "name": "attachmentsEnabled", "type": "boolean" },
|
|
2252
|
+
{ "name": "imagesEnabled", "type": "boolean" },
|
|
2253
|
+
{ "name": "videosEnabled", "type": "boolean" },
|
|
2254
|
+
{ "name": "datesEnabled", "type": "boolean" },
|
|
2255
|
+
{ "name": "emojisEnabled", "type": "boolean" },
|
|
2256
|
+
{ "name": "codeEnabled", "type": "boolean" },
|
|
2257
|
+
{ "name": "aiEnabled", "type": "boolean" },
|
|
2258
|
+
{ "name": "aiPath", "type": "string" },
|
|
2259
|
+
{ "name": "validity", "type": "ValidityState" },
|
|
2260
|
+
{ "name": "validationMessage", "type": "string" }
|
|
2261
|
+
],
|
|
2262
|
+
"events": [
|
|
2263
|
+
{
|
|
2264
|
+
"name": "zn-event-name",
|
|
2265
|
+
"description": "Emitted as an example."
|
|
2266
|
+
}
|
|
2267
|
+
]
|
|
2268
|
+
}
|
|
2269
|
+
},
|
|
2265
2270
|
{
|
|
2266
2271
|
"name": "zn-empty-state",
|
|
2267
2272
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -2632,13 +2637,13 @@
|
|
|
2632
2637
|
}
|
|
2633
2638
|
},
|
|
2634
2639
|
{
|
|
2635
|
-
"name": "zn-filter-
|
|
2640
|
+
"name": "zn-filter-container",
|
|
2636
2641
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2637
2642
|
"doc-url": "",
|
|
2638
2643
|
"attributes": [
|
|
2639
2644
|
{
|
|
2640
|
-
"name": "
|
|
2641
|
-
"value": { "type": "string", "default": "'
|
|
2645
|
+
"name": "attr",
|
|
2646
|
+
"value": { "type": "string", "default": "'filter'" }
|
|
2642
2647
|
}
|
|
2643
2648
|
],
|
|
2644
2649
|
"slots": [
|
|
@@ -2649,10 +2654,7 @@
|
|
|
2649
2654
|
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
2650
2655
|
],
|
|
2651
2656
|
"js": {
|
|
2652
|
-
"properties": [
|
|
2653
|
-
{ "name": "button", "type": "string" },
|
|
2654
|
-
{ "name": "handleSubmit" }
|
|
2655
|
-
],
|
|
2657
|
+
"properties": [{ "name": "attr", "type": "string" }],
|
|
2656
2658
|
"events": [
|
|
2657
2659
|
{
|
|
2658
2660
|
"name": "zn-event-name",
|
|
@@ -2662,27 +2664,14 @@
|
|
|
2662
2664
|
}
|
|
2663
2665
|
},
|
|
2664
2666
|
{
|
|
2665
|
-
"name": "zn-
|
|
2667
|
+
"name": "zn-filter-wrapper",
|
|
2666
2668
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2667
2669
|
"doc-url": "",
|
|
2668
2670
|
"attributes": [
|
|
2669
|
-
{ "name": "full-location", "value": { "type": "string" } },
|
|
2670
|
-
{ "name": "entity-id", "value": { "type": "string" } },
|
|
2671
|
-
{ "name": "entity-id-show", "value": { "type": "boolean" } },
|
|
2672
2671
|
{
|
|
2673
|
-
"name": "
|
|
2674
|
-
"value": { "type": "
|
|
2675
|
-
}
|
|
2676
|
-
{ "name": "caption", "value": { "type": "string" } },
|
|
2677
|
-
{ "name": "icon", "value": { "type": "string" } },
|
|
2678
|
-
{ "name": "description", "value": { "type": "string" } },
|
|
2679
|
-
{
|
|
2680
|
-
"name": "navigation",
|
|
2681
|
-
"value": { "type": "array", "default": "[]" }
|
|
2682
|
-
},
|
|
2683
|
-
{ "name": "full-width", "value": { "type": "boolean" } },
|
|
2684
|
-
{ "name": "previous-path", "value": { "type": "string" } },
|
|
2685
|
-
{ "name": "previous-target", "value": { "type": "string" } }
|
|
2672
|
+
"name": "button",
|
|
2673
|
+
"value": { "type": "string", "default": "'Filter'" }
|
|
2674
|
+
}
|
|
2686
2675
|
],
|
|
2687
2676
|
"slots": [
|
|
2688
2677
|
{ "name": "", "description": "The default slot." },
|
|
@@ -2693,19 +2682,8 @@
|
|
|
2693
2682
|
],
|
|
2694
2683
|
"js": {
|
|
2695
2684
|
"properties": [
|
|
2696
|
-
{ "name": "
|
|
2697
|
-
{ "name": "
|
|
2698
|
-
{ "name": "entityIdShow", "type": "boolean" },
|
|
2699
|
-
{ "name": "transparent", "type": "boolean" },
|
|
2700
|
-
{ "name": "caption", "type": "string" },
|
|
2701
|
-
{ "name": "icon", "type": "string" },
|
|
2702
|
-
{ "name": "description", "type": "string" },
|
|
2703
|
-
{ "name": "navigation", "type": "array" },
|
|
2704
|
-
{ "name": "fullWidth", "type": "boolean" },
|
|
2705
|
-
{ "name": "previousPath", "type": "string" },
|
|
2706
|
-
{ "name": "previousTarget", "type": "string" },
|
|
2707
|
-
{ "name": "handleAltPress" },
|
|
2708
|
-
{ "name": "handleAltUp" }
|
|
2685
|
+
{ "name": "button", "type": "string" },
|
|
2686
|
+
{ "name": "handleSubmit" }
|
|
2709
2687
|
],
|
|
2710
2688
|
"events": [
|
|
2711
2689
|
{
|
|
@@ -2759,6 +2737,60 @@
|
|
|
2759
2737
|
"events": []
|
|
2760
2738
|
}
|
|
2761
2739
|
},
|
|
2740
|
+
{
|
|
2741
|
+
"name": "zn-header",
|
|
2742
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2743
|
+
"doc-url": "",
|
|
2744
|
+
"attributes": [
|
|
2745
|
+
{ "name": "full-location", "value": { "type": "string" } },
|
|
2746
|
+
{ "name": "entity-id", "value": { "type": "string" } },
|
|
2747
|
+
{ "name": "entity-id-show", "value": { "type": "boolean" } },
|
|
2748
|
+
{
|
|
2749
|
+
"name": "transparent",
|
|
2750
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2751
|
+
},
|
|
2752
|
+
{ "name": "caption", "value": { "type": "string" } },
|
|
2753
|
+
{ "name": "icon", "value": { "type": "string" } },
|
|
2754
|
+
{ "name": "description", "value": { "type": "string" } },
|
|
2755
|
+
{
|
|
2756
|
+
"name": "navigation",
|
|
2757
|
+
"value": { "type": "array", "default": "[]" }
|
|
2758
|
+
},
|
|
2759
|
+
{ "name": "full-width", "value": { "type": "boolean" } },
|
|
2760
|
+
{ "name": "previous-path", "value": { "type": "string" } },
|
|
2761
|
+
{ "name": "previous-target", "value": { "type": "string" } }
|
|
2762
|
+
],
|
|
2763
|
+
"slots": [
|
|
2764
|
+
{ "name": "", "description": "The default slot." },
|
|
2765
|
+
{ "name": "example", "description": "An example slot." }
|
|
2766
|
+
],
|
|
2767
|
+
"events": [
|
|
2768
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
2769
|
+
],
|
|
2770
|
+
"js": {
|
|
2771
|
+
"properties": [
|
|
2772
|
+
{ "name": "fullLocation", "type": "string" },
|
|
2773
|
+
{ "name": "entityId", "type": "string" },
|
|
2774
|
+
{ "name": "entityIdShow", "type": "boolean" },
|
|
2775
|
+
{ "name": "transparent", "type": "boolean" },
|
|
2776
|
+
{ "name": "caption", "type": "string" },
|
|
2777
|
+
{ "name": "icon", "type": "string" },
|
|
2778
|
+
{ "name": "description", "type": "string" },
|
|
2779
|
+
{ "name": "navigation", "type": "array" },
|
|
2780
|
+
{ "name": "fullWidth", "type": "boolean" },
|
|
2781
|
+
{ "name": "previousPath", "type": "string" },
|
|
2782
|
+
{ "name": "previousTarget", "type": "string" },
|
|
2783
|
+
{ "name": "handleAltPress" },
|
|
2784
|
+
{ "name": "handleAltUp" }
|
|
2785
|
+
],
|
|
2786
|
+
"events": [
|
|
2787
|
+
{
|
|
2788
|
+
"name": "zn-event-name",
|
|
2789
|
+
"description": "Emitted as an example."
|
|
2790
|
+
}
|
|
2791
|
+
]
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2762
2794
|
{
|
|
2763
2795
|
"name": "zn-hover-container",
|
|
2764
2796
|
"description": "The HoverContainer component is used to display additional information when a user hovers over or clicks\non an element.\n---\n\n\n### **Events:**\n - **zn-show** - Emitted when the hover-container is shown.\n- **zn-after-show** - Emitted after the hover-container is shown.\n- **zn-hide** - Emitted when the hover-container is hidden.\n- **zn-after-hide** - Emitted after the hover-container is hidden.\n\n### **Slots:**\n - _default_ - The content of the hover-container\n- **anchor** - The anchor the hover-container is attached to.",
|
|
@@ -2918,6 +2950,106 @@
|
|
|
2918
2950
|
]
|
|
2919
2951
|
}
|
|
2920
2952
|
},
|
|
2953
|
+
{
|
|
2954
|
+
"name": "zn-inline-edit",
|
|
2955
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
2956
|
+
"doc-url": "",
|
|
2957
|
+
"attributes": [
|
|
2958
|
+
{ "name": "value", "value": { "type": "string" } },
|
|
2959
|
+
{ "name": "name", "value": { "type": "string" } },
|
|
2960
|
+
{ "name": "placeholder", "value": { "type": "string" } },
|
|
2961
|
+
{ "name": "edit-text", "value": { "type": "string" } },
|
|
2962
|
+
{ "name": "disabled", "value": { "type": "boolean" } },
|
|
2963
|
+
{ "name": "inline", "value": { "type": "boolean" } },
|
|
2964
|
+
{ "name": "padded", "value": { "type": "boolean" } },
|
|
2965
|
+
{
|
|
2966
|
+
"name": "size",
|
|
2967
|
+
"value": {
|
|
2968
|
+
"type": "'small' | 'medium' | 'large'",
|
|
2969
|
+
"default": "'medium'"
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2972
|
+
{ "name": "required", "value": { "type": "boolean" } },
|
|
2973
|
+
{ "name": "pattern", "value": { "type": "string" } },
|
|
2974
|
+
{
|
|
2975
|
+
"name": "input-type",
|
|
2976
|
+
"value": {
|
|
2977
|
+
"type": "'select' | 'text' | 'data-select' | 'number'",
|
|
2978
|
+
"default": "'text'"
|
|
2979
|
+
}
|
|
2980
|
+
},
|
|
2981
|
+
{
|
|
2982
|
+
"name": "options",
|
|
2983
|
+
"value": { "type": "{ [key: string]: string }", "default": "{}" }
|
|
2984
|
+
},
|
|
2985
|
+
{ "name": "provider", "value": { "type": "string" } },
|
|
2986
|
+
{
|
|
2987
|
+
"name": "icon-position",
|
|
2988
|
+
"value": {
|
|
2989
|
+
"type": "'start' | 'end' | 'none'",
|
|
2990
|
+
"default": "'none'"
|
|
2991
|
+
}
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
"name": "help-text",
|
|
2995
|
+
"description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
|
|
2996
|
+
"value": { "type": "string", "default": "''" }
|
|
2997
|
+
}
|
|
2998
|
+
],
|
|
2999
|
+
"slots": [
|
|
3000
|
+
{ "name": "", "description": "The default slot." },
|
|
3001
|
+
{ "name": "example", "description": "An example slot." }
|
|
3002
|
+
],
|
|
3003
|
+
"events": [
|
|
3004
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
3005
|
+
],
|
|
3006
|
+
"js": {
|
|
3007
|
+
"properties": [
|
|
3008
|
+
{ "name": "value", "type": "string" },
|
|
3009
|
+
{ "name": "name", "type": "string" },
|
|
3010
|
+
{ "name": "placeholder", "type": "string" },
|
|
3011
|
+
{ "name": "editText", "type": "string" },
|
|
3012
|
+
{ "name": "disabled", "type": "boolean" },
|
|
3013
|
+
{ "name": "inline", "type": "boolean" },
|
|
3014
|
+
{ "name": "padded", "type": "boolean" },
|
|
3015
|
+
{ "name": "size", "type": "'small' | 'medium' | 'large'" },
|
|
3016
|
+
{ "name": "required", "type": "boolean" },
|
|
3017
|
+
{ "name": "pattern", "type": "string" },
|
|
3018
|
+
{
|
|
3019
|
+
"name": "inputType",
|
|
3020
|
+
"type": "'select' | 'text' | 'data-select' | 'number'"
|
|
3021
|
+
},
|
|
3022
|
+
{ "name": "options", "type": "{ [key: string]: string }" },
|
|
3023
|
+
{ "name": "selectProvider", "type": "string" },
|
|
3024
|
+
{ "name": "iconPosition", "type": "'start' | 'end' | 'none'" },
|
|
3025
|
+
{
|
|
3026
|
+
"name": "helpText",
|
|
3027
|
+
"description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
|
|
3028
|
+
"type": "string"
|
|
3029
|
+
},
|
|
3030
|
+
{ "name": "input", "type": "ZnInput | ZnSelect" },
|
|
3031
|
+
{ "name": "defaultValue", "type": "string" },
|
|
3032
|
+
{ "name": "validity", "type": "ValidityState" },
|
|
3033
|
+
{ "name": "validationMessage", "type": "string" },
|
|
3034
|
+
{ "name": "mouseEventHandler" },
|
|
3035
|
+
{ "name": "escKeyHandler" },
|
|
3036
|
+
{ "name": "submitKeyHandler" },
|
|
3037
|
+
{ "name": "captureMouseDown" },
|
|
3038
|
+
{ "name": "captureKeyDown" },
|
|
3039
|
+
{ "name": "handleEditClick" },
|
|
3040
|
+
{ "name": "handleSubmitClick" },
|
|
3041
|
+
{ "name": "handleCancelClick" },
|
|
3042
|
+
{ "name": "handleBlur" },
|
|
3043
|
+
{ "name": "handleInput" }
|
|
3044
|
+
],
|
|
3045
|
+
"events": [
|
|
3046
|
+
{
|
|
3047
|
+
"name": "zn-event-name",
|
|
3048
|
+
"description": "Emitted as an example."
|
|
3049
|
+
}
|
|
3050
|
+
]
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
2921
3053
|
{
|
|
2922
3054
|
"name": "zn-input",
|
|
2923
3055
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-blur** - Emitted when the control loses focus.\n- **zn-change** - Emitted when an alteration to the control's value is committed by the user.\n- **zn-clear** - Emitted when the clear button is activated.\n- **zn-focus** - Emitted when the control gains focus.\n- **zn-input** - Emitted when the control receives input.\n- **zn-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the input.\n- **blur()** - Removes focus from the input.\n- **select()** - Selects all the text in the input.\n- **setSelectionRange(selectionStart: _number_, selectionEnd: _number_, selectionDirection: _'forward' | 'backward' | 'none'_)** - Sets the start and end positions of the text selection (0-based).\n- **setRangeText(replacement: _string_, start: _number_, end: _number_, selectMode: _'select' | 'start' | 'end' | 'preserve'_)** - Replaces a range of text with a new string.\n- **showPicker()** - Displays the browser picker for an input element (only works if the browser supports it for the input type).\n- **stepUp()** - Increments the value of a numeric input type by the value of the step attribute.\n- **stepDown()** - Decrements the value of a numeric input type by the value of the step attribute.\n- **checkValidity(): _boolean_** - Checks the validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **label-tooltip** - Used to add text that is displayed in a tooltip next to the label. Alternatively, you can use the `label-tooltip` attribute.\n- **context-note** - Used to add contextual text that is displayed above the input, on the right. Alternatively, you can use the `context-note` attribute.\n- **prefix** - Used to prepend a presentational icon or similar element to the input.\n- **suffix** - Used to append a presentational icon or similar element to the input.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **show-password-icon** - An icon to use in lieu of the default show password icon.\n- **hide-password-icon** - An icon to use in lieu of the default hide password icon.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **base** - The component's base wrapper.\n- **input** - The internal `<input>` control.\n- **prefix** - The container that wraps the prefix.\n- **clear-button** - The clear button.\n- **password-toggle-button** - The password toggle button.\n- **suffix** - The container that wraps the suffix.",
|
|
@@ -3388,106 +3520,6 @@
|
|
|
3388
3520
|
]
|
|
3389
3521
|
}
|
|
3390
3522
|
},
|
|
3391
|
-
{
|
|
3392
|
-
"name": "zn-inline-edit",
|
|
3393
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
3394
|
-
"doc-url": "",
|
|
3395
|
-
"attributes": [
|
|
3396
|
-
{ "name": "value", "value": { "type": "string" } },
|
|
3397
|
-
{ "name": "name", "value": { "type": "string" } },
|
|
3398
|
-
{ "name": "placeholder", "value": { "type": "string" } },
|
|
3399
|
-
{ "name": "edit-text", "value": { "type": "string" } },
|
|
3400
|
-
{ "name": "disabled", "value": { "type": "boolean" } },
|
|
3401
|
-
{ "name": "inline", "value": { "type": "boolean" } },
|
|
3402
|
-
{ "name": "padded", "value": { "type": "boolean" } },
|
|
3403
|
-
{
|
|
3404
|
-
"name": "size",
|
|
3405
|
-
"value": {
|
|
3406
|
-
"type": "'small' | 'medium' | 'large'",
|
|
3407
|
-
"default": "'medium'"
|
|
3408
|
-
}
|
|
3409
|
-
},
|
|
3410
|
-
{ "name": "required", "value": { "type": "boolean" } },
|
|
3411
|
-
{ "name": "pattern", "value": { "type": "string" } },
|
|
3412
|
-
{
|
|
3413
|
-
"name": "input-type",
|
|
3414
|
-
"value": {
|
|
3415
|
-
"type": "'select' | 'text' | 'data-select' | 'number'",
|
|
3416
|
-
"default": "'text'"
|
|
3417
|
-
}
|
|
3418
|
-
},
|
|
3419
|
-
{
|
|
3420
|
-
"name": "options",
|
|
3421
|
-
"value": { "type": "{ [key: string]: string }", "default": "{}" }
|
|
3422
|
-
},
|
|
3423
|
-
{ "name": "provider", "value": { "type": "string" } },
|
|
3424
|
-
{
|
|
3425
|
-
"name": "icon-position",
|
|
3426
|
-
"value": {
|
|
3427
|
-
"type": "'start' | 'end' | 'none'",
|
|
3428
|
-
"default": "'none'"
|
|
3429
|
-
}
|
|
3430
|
-
},
|
|
3431
|
-
{
|
|
3432
|
-
"name": "help-text",
|
|
3433
|
-
"description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
|
|
3434
|
-
"value": { "type": "string", "default": "''" }
|
|
3435
|
-
}
|
|
3436
|
-
],
|
|
3437
|
-
"slots": [
|
|
3438
|
-
{ "name": "", "description": "The default slot." },
|
|
3439
|
-
{ "name": "example", "description": "An example slot." }
|
|
3440
|
-
],
|
|
3441
|
-
"events": [
|
|
3442
|
-
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
3443
|
-
],
|
|
3444
|
-
"js": {
|
|
3445
|
-
"properties": [
|
|
3446
|
-
{ "name": "value", "type": "string" },
|
|
3447
|
-
{ "name": "name", "type": "string" },
|
|
3448
|
-
{ "name": "placeholder", "type": "string" },
|
|
3449
|
-
{ "name": "editText", "type": "string" },
|
|
3450
|
-
{ "name": "disabled", "type": "boolean" },
|
|
3451
|
-
{ "name": "inline", "type": "boolean" },
|
|
3452
|
-
{ "name": "padded", "type": "boolean" },
|
|
3453
|
-
{ "name": "size", "type": "'small' | 'medium' | 'large'" },
|
|
3454
|
-
{ "name": "required", "type": "boolean" },
|
|
3455
|
-
{ "name": "pattern", "type": "string" },
|
|
3456
|
-
{
|
|
3457
|
-
"name": "inputType",
|
|
3458
|
-
"type": "'select' | 'text' | 'data-select' | 'number'"
|
|
3459
|
-
},
|
|
3460
|
-
{ "name": "options", "type": "{ [key: string]: string }" },
|
|
3461
|
-
{ "name": "selectProvider", "type": "string" },
|
|
3462
|
-
{ "name": "iconPosition", "type": "'start' | 'end' | 'none'" },
|
|
3463
|
-
{
|
|
3464
|
-
"name": "helpText",
|
|
3465
|
-
"description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
|
|
3466
|
-
"type": "string"
|
|
3467
|
-
},
|
|
3468
|
-
{ "name": "input", "type": "ZnInput | ZnSelect" },
|
|
3469
|
-
{ "name": "defaultValue", "type": "string" },
|
|
3470
|
-
{ "name": "validity", "type": "ValidityState" },
|
|
3471
|
-
{ "name": "validationMessage", "type": "string" },
|
|
3472
|
-
{ "name": "mouseEventHandler" },
|
|
3473
|
-
{ "name": "escKeyHandler" },
|
|
3474
|
-
{ "name": "submitKeyHandler" },
|
|
3475
|
-
{ "name": "captureMouseDown" },
|
|
3476
|
-
{ "name": "captureKeyDown" },
|
|
3477
|
-
{ "name": "handleEditClick" },
|
|
3478
|
-
{ "name": "handleSubmitClick" },
|
|
3479
|
-
{ "name": "handleCancelClick" },
|
|
3480
|
-
{ "name": "handleBlur" },
|
|
3481
|
-
{ "name": "handleInput" }
|
|
3482
|
-
],
|
|
3483
|
-
"events": [
|
|
3484
|
-
{
|
|
3485
|
-
"name": "zn-event-name",
|
|
3486
|
-
"description": "Emitted as an example."
|
|
3487
|
-
}
|
|
3488
|
-
]
|
|
3489
|
-
}
|
|
3490
|
-
},
|
|
3491
3523
|
{
|
|
3492
3524
|
"name": "zn-item",
|
|
3493
3525
|
"description": "Used for listing items in a description list. Caption on the right, content on the left.\n---\n\n\n### **Slots:**\n - _default_ - The default slot. Can either be slotted or use the value attribute\n- **actions** - Used for adding actions to a zn-item.\n\n### **CSS Parts:**\n - **base** - The items base wrapper\n- **caption** - The items caption\n- **icon** - The items icon",
|
|
@@ -4057,6 +4089,50 @@
|
|
|
4057
4089
|
]
|
|
4058
4090
|
}
|
|
4059
4091
|
},
|
|
4092
|
+
{
|
|
4093
|
+
"name": "zn-panel",
|
|
4094
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **actions** - The actions slot.\n- **footer** - The footer slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
4095
|
+
"doc-url": "",
|
|
4096
|
+
"attributes": [
|
|
4097
|
+
{ "name": "basis-px", "value": { "type": "number" } },
|
|
4098
|
+
{ "name": "caption", "value": { "type": "string" } },
|
|
4099
|
+
{ "name": "icon", "value": { "type": "string" } },
|
|
4100
|
+
{ "name": "description", "value": { "type": "string" } },
|
|
4101
|
+
{ "name": "tabbed", "value": { "type": "boolean" } },
|
|
4102
|
+
{ "name": "header-underline", "value": { "type": "boolean" } },
|
|
4103
|
+
{ "name": "cosmic", "value": { "type": "boolean" } },
|
|
4104
|
+
{ "name": "flush", "value": { "type": "boolean" } },
|
|
4105
|
+
{ "name": "flush-x", "value": { "type": "boolean" } },
|
|
4106
|
+
{ "name": "flush-y", "value": { "type": "boolean" } },
|
|
4107
|
+
{ "name": "flush-footer", "value": { "type": "boolean" } },
|
|
4108
|
+
{ "name": "transparent", "value": { "type": "boolean" } },
|
|
4109
|
+
{ "name": "shadow", "value": { "type": "boolean" } }
|
|
4110
|
+
],
|
|
4111
|
+
"slots": [
|
|
4112
|
+
{ "name": "", "description": "The default slot." },
|
|
4113
|
+
{ "name": "actions", "description": "The actions slot." },
|
|
4114
|
+
{ "name": "footer", "description": "The footer slot." }
|
|
4115
|
+
],
|
|
4116
|
+
"events": [],
|
|
4117
|
+
"js": {
|
|
4118
|
+
"properties": [
|
|
4119
|
+
{ "name": "basis", "type": "number" },
|
|
4120
|
+
{ "name": "caption", "type": "string" },
|
|
4121
|
+
{ "name": "icon", "type": "string" },
|
|
4122
|
+
{ "name": "description", "type": "string" },
|
|
4123
|
+
{ "name": "tabbed", "type": "boolean" },
|
|
4124
|
+
{ "name": "underlineHeader", "type": "boolean" },
|
|
4125
|
+
{ "name": "cosmic", "type": "boolean" },
|
|
4126
|
+
{ "name": "flush", "type": "boolean" },
|
|
4127
|
+
{ "name": "flushX", "type": "boolean" },
|
|
4128
|
+
{ "name": "flushY", "type": "boolean" },
|
|
4129
|
+
{ "name": "flushFooter", "type": "boolean" },
|
|
4130
|
+
{ "name": "transparent", "type": "boolean" },
|
|
4131
|
+
{ "name": "shadow", "type": "boolean" }
|
|
4132
|
+
],
|
|
4133
|
+
"events": []
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
4060
4136
|
{
|
|
4061
4137
|
"name": "zn-popup",
|
|
4062
4138
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Methods:**\n - **reposition()** - Forces the popup to recalculate and reposition itself.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -4316,50 +4392,6 @@
|
|
|
4316
4392
|
]
|
|
4317
4393
|
}
|
|
4318
4394
|
},
|
|
4319
|
-
{
|
|
4320
|
-
"name": "zn-panel",
|
|
4321
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **actions** - The actions slot.\n- **footer** - The footer slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
4322
|
-
"doc-url": "",
|
|
4323
|
-
"attributes": [
|
|
4324
|
-
{ "name": "basis-px", "value": { "type": "number" } },
|
|
4325
|
-
{ "name": "caption", "value": { "type": "string" } },
|
|
4326
|
-
{ "name": "icon", "value": { "type": "string" } },
|
|
4327
|
-
{ "name": "description", "value": { "type": "string" } },
|
|
4328
|
-
{ "name": "tabbed", "value": { "type": "boolean" } },
|
|
4329
|
-
{ "name": "header-underline", "value": { "type": "boolean" } },
|
|
4330
|
-
{ "name": "cosmic", "value": { "type": "boolean" } },
|
|
4331
|
-
{ "name": "flush", "value": { "type": "boolean" } },
|
|
4332
|
-
{ "name": "flush-x", "value": { "type": "boolean" } },
|
|
4333
|
-
{ "name": "flush-y", "value": { "type": "boolean" } },
|
|
4334
|
-
{ "name": "flush-footer", "value": { "type": "boolean" } },
|
|
4335
|
-
{ "name": "transparent", "value": { "type": "boolean" } },
|
|
4336
|
-
{ "name": "shadow", "value": { "type": "boolean" } }
|
|
4337
|
-
],
|
|
4338
|
-
"slots": [
|
|
4339
|
-
{ "name": "", "description": "The default slot." },
|
|
4340
|
-
{ "name": "actions", "description": "The actions slot." },
|
|
4341
|
-
{ "name": "footer", "description": "The footer slot." }
|
|
4342
|
-
],
|
|
4343
|
-
"events": [],
|
|
4344
|
-
"js": {
|
|
4345
|
-
"properties": [
|
|
4346
|
-
{ "name": "basis", "type": "number" },
|
|
4347
|
-
{ "name": "caption", "type": "string" },
|
|
4348
|
-
{ "name": "icon", "type": "string" },
|
|
4349
|
-
{ "name": "description", "type": "string" },
|
|
4350
|
-
{ "name": "tabbed", "type": "boolean" },
|
|
4351
|
-
{ "name": "underlineHeader", "type": "boolean" },
|
|
4352
|
-
{ "name": "cosmic", "type": "boolean" },
|
|
4353
|
-
{ "name": "flush", "type": "boolean" },
|
|
4354
|
-
{ "name": "flushX", "type": "boolean" },
|
|
4355
|
-
{ "name": "flushY", "type": "boolean" },
|
|
4356
|
-
{ "name": "flushFooter", "type": "boolean" },
|
|
4357
|
-
{ "name": "transparent", "type": "boolean" },
|
|
4358
|
-
{ "name": "shadow", "type": "boolean" }
|
|
4359
|
-
],
|
|
4360
|
-
"events": []
|
|
4361
|
-
}
|
|
4362
|
-
},
|
|
4363
4395
|
{
|
|
4364
4396
|
"name": "zn-progress-bar",
|
|
4365
4397
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -4877,6 +4909,45 @@
|
|
|
4877
4909
|
]
|
|
4878
4910
|
}
|
|
4879
4911
|
},
|
|
4912
|
+
{
|
|
4913
|
+
"name": "zn-reveal",
|
|
4914
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
4915
|
+
"doc-url": "",
|
|
4916
|
+
"attributes": [
|
|
4917
|
+
{
|
|
4918
|
+
"name": "duration",
|
|
4919
|
+
"value": { "type": "number", "default": "2000" }
|
|
4920
|
+
},
|
|
4921
|
+
{
|
|
4922
|
+
"name": "initial",
|
|
4923
|
+
"value": { "type": "string", "default": "''" }
|
|
4924
|
+
},
|
|
4925
|
+
{
|
|
4926
|
+
"name": "revealed",
|
|
4927
|
+
"value": { "type": "string", "default": "''" }
|
|
4928
|
+
}
|
|
4929
|
+
],
|
|
4930
|
+
"slots": [
|
|
4931
|
+
{ "name": "", "description": "The default slot." },
|
|
4932
|
+
{ "name": "example", "description": "An example slot." }
|
|
4933
|
+
],
|
|
4934
|
+
"events": [
|
|
4935
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
4936
|
+
],
|
|
4937
|
+
"js": {
|
|
4938
|
+
"properties": [
|
|
4939
|
+
{ "name": "duration", "type": "number" },
|
|
4940
|
+
{ "name": "initial", "type": "string" },
|
|
4941
|
+
{ "name": "revealed", "type": "string" }
|
|
4942
|
+
],
|
|
4943
|
+
"events": [
|
|
4944
|
+
{
|
|
4945
|
+
"name": "zn-event-name",
|
|
4946
|
+
"description": "Emitted as an example."
|
|
4947
|
+
}
|
|
4948
|
+
]
|
|
4949
|
+
}
|
|
4950
|
+
},
|
|
4880
4951
|
{
|
|
4881
4952
|
"name": "zn-scroll-container",
|
|
4882
4953
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -5017,6 +5088,14 @@
|
|
|
5017
5088
|
"value": {
|
|
5018
5089
|
"type": "(option: ZnOption, index: number) => TemplateResult | string | HTMLElement"
|
|
5019
5090
|
}
|
|
5091
|
+
},
|
|
5092
|
+
{
|
|
5093
|
+
"name": "distinct",
|
|
5094
|
+
"value": { "type": "string", "default": "\"\"" }
|
|
5095
|
+
},
|
|
5096
|
+
{
|
|
5097
|
+
"name": "conditional",
|
|
5098
|
+
"value": { "type": "string", "default": "\"\"" }
|
|
5020
5099
|
}
|
|
5021
5100
|
],
|
|
5022
5101
|
"slots": [
|
|
@@ -5210,6 +5289,8 @@
|
|
|
5210
5289
|
"description": "A function that customizes the tags to be rendered when multiple=true. The first argument is the option, the second\nis the current tag's index. The function should return either a Lit TemplateResult or a string containing trusted HTML of the symbol to render at\nthe specified value.",
|
|
5211
5290
|
"type": "(option: ZnOption, index: number) => TemplateResult | string | HTMLElement"
|
|
5212
5291
|
},
|
|
5292
|
+
{ "name": "distinct", "type": "string" },
|
|
5293
|
+
{ "name": "conditional", "type": "string" },
|
|
5213
5294
|
{
|
|
5214
5295
|
"name": "validity",
|
|
5215
5296
|
"description": "Gets the validity state object"
|
|
@@ -5552,6 +5633,10 @@
|
|
|
5552
5633
|
{
|
|
5553
5634
|
"name": "form-container",
|
|
5554
5635
|
"value": { "type": "boolean", "default": "false" }
|
|
5636
|
+
},
|
|
5637
|
+
{
|
|
5638
|
+
"name": "wide-form-container",
|
|
5639
|
+
"value": { "type": "boolean", "default": "false" }
|
|
5555
5640
|
}
|
|
5556
5641
|
],
|
|
5557
5642
|
"slots": [
|
|
@@ -5578,7 +5663,8 @@
|
|
|
5578
5663
|
{ "name": "flushL", "type": "boolean" },
|
|
5579
5664
|
{ "name": "flushR", "type": "boolean" },
|
|
5580
5665
|
{ "name": "widthContainer", "type": "boolean" },
|
|
5581
|
-
{ "name": "formContainer", "type": "boolean" }
|
|
5666
|
+
{ "name": "formContainer", "type": "boolean" },
|
|
5667
|
+
{ "name": "wideFormContainer", "type": "boolean" }
|
|
5582
5668
|
],
|
|
5583
5669
|
"events": [
|
|
5584
5670
|
{
|