@kubex/zinc 1.1.140 → 1.1.142
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 +337 -80
- package/dist/vscode.html-custom-data.json +44 -14
- package/dist/web-types.json +101 -28
- package/dist/zn.d.ts +560 -527
- package/dist/zn.min.js +1091 -1063
- package/package.json +1 -1
- package/src/components/form-group/form-group.scss +11 -1
- package/src/components/form-group/form-group.test.ts +16 -0
- package/src/components/linked-select/linked-select.component.ts +37 -5
- package/src/components/linked-select/linked-select.test.ts +95 -9
- package/src/components/opt-group/opt-group.component.ts +19 -0
- package/src/components/opt-group/opt-group.scss +1 -1
- package/src/components/page-builder/page-builder.component.ts +56 -2
- package/src/components/page-builder/page-builder.scss +41 -0
- package/src/components/page-builder/page-builder.test.ts +210 -0
- package/src/components/remarkd-editor/remarkd-editor.component.ts +2 -0
- package/src/components/remarkd-editor/remarkd-editor.test.ts +35 -7
- package/src/components/select/select.component.ts +15 -0
- package/src/components/select/select.test.ts +10 -0
- package/src/components/sp/sp.scss +6 -0
- package/src/components/sp/sp.test.ts +31 -0
- package/src/components/translations/translations.component.ts +33 -2
- package/src/components/translations/translations.test.ts +41 -0
|
@@ -56,6 +56,79 @@
|
|
|
56
56
|
}
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
"kind": "javascript-module",
|
|
61
|
+
"path": "components/action-bar/action-bar.js",
|
|
62
|
+
"declarations": [
|
|
63
|
+
{
|
|
64
|
+
"kind": "class",
|
|
65
|
+
"description": "",
|
|
66
|
+
"name": "ZnActionBar",
|
|
67
|
+
"cssProperties": [
|
|
68
|
+
{
|
|
69
|
+
"description": "An example CSS custom property.",
|
|
70
|
+
"name": "--example"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"cssParts": [
|
|
74
|
+
{
|
|
75
|
+
"description": "The component's base wrapper.",
|
|
76
|
+
"name": "base"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"slots": [
|
|
80
|
+
{
|
|
81
|
+
"description": "The default slot.",
|
|
82
|
+
"name": ""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"description": "An example slot.",
|
|
86
|
+
"name": "example"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"members": [
|
|
90
|
+
{
|
|
91
|
+
"kind": "field",
|
|
92
|
+
"name": "localize",
|
|
93
|
+
"privacy": "private",
|
|
94
|
+
"readonly": true,
|
|
95
|
+
"default": "new LocalizeController(this)"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"events": [
|
|
99
|
+
{
|
|
100
|
+
"description": "Emitted as an example.",
|
|
101
|
+
"name": "zn-event-name"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"superclass": {
|
|
105
|
+
"name": "ZincElement",
|
|
106
|
+
"module": "/src/internal/zinc-element"
|
|
107
|
+
},
|
|
108
|
+
"summary": "Short summary of the component's intended use.",
|
|
109
|
+
"tagNameWithoutPrefix": "action-bar",
|
|
110
|
+
"tagName": "zn-action-bar",
|
|
111
|
+
"customElement": true,
|
|
112
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
113
|
+
"documentation": "https://zinc.style/components/action-bar",
|
|
114
|
+
"status": "experimental",
|
|
115
|
+
"since": "1.0",
|
|
116
|
+
"dependencies": [
|
|
117
|
+
"zn-example"
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"exports": [
|
|
122
|
+
{
|
|
123
|
+
"kind": "js",
|
|
124
|
+
"name": "default",
|
|
125
|
+
"declaration": {
|
|
126
|
+
"name": "ZnActionBar",
|
|
127
|
+
"module": "components/action-bar/action-bar.js"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
59
132
|
{
|
|
60
133
|
"kind": "javascript-module",
|
|
61
134
|
"path": "components/alert/alert.js",
|
|
@@ -250,79 +323,6 @@
|
|
|
250
323
|
}
|
|
251
324
|
]
|
|
252
325
|
},
|
|
253
|
-
{
|
|
254
|
-
"kind": "javascript-module",
|
|
255
|
-
"path": "components/action-bar/action-bar.js",
|
|
256
|
-
"declarations": [
|
|
257
|
-
{
|
|
258
|
-
"kind": "class",
|
|
259
|
-
"description": "",
|
|
260
|
-
"name": "ZnActionBar",
|
|
261
|
-
"cssProperties": [
|
|
262
|
-
{
|
|
263
|
-
"description": "An example CSS custom property.",
|
|
264
|
-
"name": "--example"
|
|
265
|
-
}
|
|
266
|
-
],
|
|
267
|
-
"cssParts": [
|
|
268
|
-
{
|
|
269
|
-
"description": "The component's base wrapper.",
|
|
270
|
-
"name": "base"
|
|
271
|
-
}
|
|
272
|
-
],
|
|
273
|
-
"slots": [
|
|
274
|
-
{
|
|
275
|
-
"description": "The default slot.",
|
|
276
|
-
"name": ""
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"description": "An example slot.",
|
|
280
|
-
"name": "example"
|
|
281
|
-
}
|
|
282
|
-
],
|
|
283
|
-
"members": [
|
|
284
|
-
{
|
|
285
|
-
"kind": "field",
|
|
286
|
-
"name": "localize",
|
|
287
|
-
"privacy": "private",
|
|
288
|
-
"readonly": true,
|
|
289
|
-
"default": "new LocalizeController(this)"
|
|
290
|
-
}
|
|
291
|
-
],
|
|
292
|
-
"events": [
|
|
293
|
-
{
|
|
294
|
-
"description": "Emitted as an example.",
|
|
295
|
-
"name": "zn-event-name"
|
|
296
|
-
}
|
|
297
|
-
],
|
|
298
|
-
"superclass": {
|
|
299
|
-
"name": "ZincElement",
|
|
300
|
-
"module": "/src/internal/zinc-element"
|
|
301
|
-
},
|
|
302
|
-
"summary": "Short summary of the component's intended use.",
|
|
303
|
-
"tagNameWithoutPrefix": "action-bar",
|
|
304
|
-
"tagName": "zn-action-bar",
|
|
305
|
-
"customElement": true,
|
|
306
|
-
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
307
|
-
"documentation": "https://zinc.style/components/action-bar",
|
|
308
|
-
"status": "experimental",
|
|
309
|
-
"since": "1.0",
|
|
310
|
-
"dependencies": [
|
|
311
|
-
"zn-example"
|
|
312
|
-
]
|
|
313
|
-
}
|
|
314
|
-
],
|
|
315
|
-
"exports": [
|
|
316
|
-
{
|
|
317
|
-
"kind": "js",
|
|
318
|
-
"name": "default",
|
|
319
|
-
"declaration": {
|
|
320
|
-
"name": "ZnActionBar",
|
|
321
|
-
"module": "components/action-bar/action-bar.js"
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
]
|
|
325
|
-
},
|
|
326
326
|
{
|
|
327
327
|
"kind": "javascript-module",
|
|
328
328
|
"path": "components/animated-button/animated-button.js",
|
|
@@ -23020,15 +23020,16 @@
|
|
|
23020
23020
|
"kind": "field",
|
|
23021
23021
|
"name": "value",
|
|
23022
23022
|
"type": {
|
|
23023
|
-
"text": "string"
|
|
23023
|
+
"text": "string | string[]"
|
|
23024
23024
|
},
|
|
23025
|
+
"default": "''",
|
|
23025
23026
|
"attribute": "value"
|
|
23026
23027
|
},
|
|
23027
23028
|
{
|
|
23028
23029
|
"kind": "field",
|
|
23029
23030
|
"name": "defaultValue",
|
|
23030
23031
|
"type": {
|
|
23031
|
-
"text": "string"
|
|
23032
|
+
"text": "string | string[]"
|
|
23032
23033
|
},
|
|
23033
23034
|
"default": "''",
|
|
23034
23035
|
"description": "The default value of the form control. Primarily used for resetting the form control."
|
|
@@ -23088,6 +23089,53 @@
|
|
|
23088
23089
|
"description": "Automatically select the first option of the linked group when no value is set.",
|
|
23089
23090
|
"attribute": "select-first"
|
|
23090
23091
|
},
|
|
23092
|
+
{
|
|
23093
|
+
"kind": "field",
|
|
23094
|
+
"name": "multiple",
|
|
23095
|
+
"type": {
|
|
23096
|
+
"text": "boolean"
|
|
23097
|
+
},
|
|
23098
|
+
"default": "false",
|
|
23099
|
+
"description": "Allows more than one option of the linked group to be selected.",
|
|
23100
|
+
"attribute": "multiple",
|
|
23101
|
+
"reflects": true
|
|
23102
|
+
},
|
|
23103
|
+
{
|
|
23104
|
+
"kind": "field",
|
|
23105
|
+
"name": "placeholder",
|
|
23106
|
+
"type": {
|
|
23107
|
+
"text": "string"
|
|
23108
|
+
},
|
|
23109
|
+
"default": "''",
|
|
23110
|
+
"attribute": "placeholder"
|
|
23111
|
+
},
|
|
23112
|
+
{
|
|
23113
|
+
"kind": "field",
|
|
23114
|
+
"name": "clearable",
|
|
23115
|
+
"type": {
|
|
23116
|
+
"text": "boolean"
|
|
23117
|
+
},
|
|
23118
|
+
"default": "false",
|
|
23119
|
+
"attribute": "clearable"
|
|
23120
|
+
},
|
|
23121
|
+
{
|
|
23122
|
+
"kind": "field",
|
|
23123
|
+
"name": "search",
|
|
23124
|
+
"type": {
|
|
23125
|
+
"text": "boolean"
|
|
23126
|
+
},
|
|
23127
|
+
"default": "false",
|
|
23128
|
+
"attribute": "search"
|
|
23129
|
+
},
|
|
23130
|
+
{
|
|
23131
|
+
"kind": "field",
|
|
23132
|
+
"name": "helpText",
|
|
23133
|
+
"type": {
|
|
23134
|
+
"text": "string"
|
|
23135
|
+
},
|
|
23136
|
+
"default": "''",
|
|
23137
|
+
"attribute": "help-text"
|
|
23138
|
+
},
|
|
23091
23139
|
{
|
|
23092
23140
|
"kind": "field",
|
|
23093
23141
|
"name": "input",
|
|
@@ -23174,6 +23222,16 @@
|
|
|
23174
23222
|
"name": "handleLinkedSelectChange",
|
|
23175
23223
|
"privacy": "public"
|
|
23176
23224
|
},
|
|
23225
|
+
{
|
|
23226
|
+
"kind": "method",
|
|
23227
|
+
"name": "serialisedValue",
|
|
23228
|
+
"privacy": "private",
|
|
23229
|
+
"return": {
|
|
23230
|
+
"type": {
|
|
23231
|
+
"text": "string"
|
|
23232
|
+
}
|
|
23233
|
+
}
|
|
23234
|
+
},
|
|
23177
23235
|
{
|
|
23178
23236
|
"kind": "method",
|
|
23179
23237
|
"name": "handleChange",
|
|
@@ -23221,8 +23279,9 @@
|
|
|
23221
23279
|
{
|
|
23222
23280
|
"name": "value",
|
|
23223
23281
|
"type": {
|
|
23224
|
-
"text": "string"
|
|
23282
|
+
"text": "string | string[]"
|
|
23225
23283
|
},
|
|
23284
|
+
"default": "''",
|
|
23226
23285
|
"fieldName": "value"
|
|
23227
23286
|
},
|
|
23228
23287
|
{
|
|
@@ -23272,6 +23331,47 @@
|
|
|
23272
23331
|
"default": "false",
|
|
23273
23332
|
"description": "Automatically select the first option of the linked group when no value is set.",
|
|
23274
23333
|
"fieldName": "selectFirst"
|
|
23334
|
+
},
|
|
23335
|
+
{
|
|
23336
|
+
"name": "multiple",
|
|
23337
|
+
"type": {
|
|
23338
|
+
"text": "boolean"
|
|
23339
|
+
},
|
|
23340
|
+
"default": "false",
|
|
23341
|
+
"description": "Allows more than one option of the linked group to be selected.",
|
|
23342
|
+
"fieldName": "multiple"
|
|
23343
|
+
},
|
|
23344
|
+
{
|
|
23345
|
+
"name": "placeholder",
|
|
23346
|
+
"type": {
|
|
23347
|
+
"text": "string"
|
|
23348
|
+
},
|
|
23349
|
+
"default": "''",
|
|
23350
|
+
"fieldName": "placeholder"
|
|
23351
|
+
},
|
|
23352
|
+
{
|
|
23353
|
+
"name": "clearable",
|
|
23354
|
+
"type": {
|
|
23355
|
+
"text": "boolean"
|
|
23356
|
+
},
|
|
23357
|
+
"default": "false",
|
|
23358
|
+
"fieldName": "clearable"
|
|
23359
|
+
},
|
|
23360
|
+
{
|
|
23361
|
+
"name": "search",
|
|
23362
|
+
"type": {
|
|
23363
|
+
"text": "boolean"
|
|
23364
|
+
},
|
|
23365
|
+
"default": "false",
|
|
23366
|
+
"fieldName": "search"
|
|
23367
|
+
},
|
|
23368
|
+
{
|
|
23369
|
+
"name": "help-text",
|
|
23370
|
+
"type": {
|
|
23371
|
+
"text": "string"
|
|
23372
|
+
},
|
|
23373
|
+
"default": "''",
|
|
23374
|
+
"fieldName": "helpText"
|
|
23275
23375
|
}
|
|
23276
23376
|
],
|
|
23277
23377
|
"superclass": {
|
|
@@ -25979,6 +26079,25 @@
|
|
|
25979
26079
|
"kind": "method",
|
|
25980
26080
|
"name": "handleDisabledChange"
|
|
25981
26081
|
},
|
|
26082
|
+
{
|
|
26083
|
+
"kind": "method",
|
|
26084
|
+
"name": "isRendered",
|
|
26085
|
+
"privacy": "private",
|
|
26086
|
+
"static": true,
|
|
26087
|
+
"return": {
|
|
26088
|
+
"type": {
|
|
26089
|
+
"text": "boolean"
|
|
26090
|
+
}
|
|
26091
|
+
},
|
|
26092
|
+
"parameters": [
|
|
26093
|
+
{
|
|
26094
|
+
"name": "el",
|
|
26095
|
+
"type": {
|
|
26096
|
+
"text": "Element"
|
|
26097
|
+
}
|
|
26098
|
+
}
|
|
26099
|
+
]
|
|
26100
|
+
},
|
|
25982
26101
|
{
|
|
25983
26102
|
"kind": "method",
|
|
25984
26103
|
"name": "handleSlotChange",
|
|
@@ -28435,6 +28554,24 @@
|
|
|
28435
28554
|
"default": "null",
|
|
28436
28555
|
"description": "The stamped config form for the selected section; rebuilt on selection change."
|
|
28437
28556
|
},
|
|
28557
|
+
{
|
|
28558
|
+
"kind": "field",
|
|
28559
|
+
"name": "_inspectorWidth",
|
|
28560
|
+
"type": {
|
|
28561
|
+
"text": "number | null"
|
|
28562
|
+
},
|
|
28563
|
+
"privacy": "private",
|
|
28564
|
+
"default": "null"
|
|
28565
|
+
},
|
|
28566
|
+
{
|
|
28567
|
+
"kind": "field",
|
|
28568
|
+
"name": "_inspectorWide",
|
|
28569
|
+
"type": {
|
|
28570
|
+
"text": "boolean"
|
|
28571
|
+
},
|
|
28572
|
+
"privacy": "private",
|
|
28573
|
+
"default": "false"
|
|
28574
|
+
},
|
|
28438
28575
|
{
|
|
28439
28576
|
"kind": "field",
|
|
28440
28577
|
"name": "_hasSlot",
|
|
@@ -29608,6 +29745,45 @@
|
|
|
29608
29745
|
}
|
|
29609
29746
|
]
|
|
29610
29747
|
},
|
|
29748
|
+
{
|
|
29749
|
+
"kind": "method",
|
|
29750
|
+
"name": "_clampInspector",
|
|
29751
|
+
"privacy": "private",
|
|
29752
|
+
"return": {
|
|
29753
|
+
"type": {
|
|
29754
|
+
"text": "number"
|
|
29755
|
+
}
|
|
29756
|
+
},
|
|
29757
|
+
"parameters": [
|
|
29758
|
+
{
|
|
29759
|
+
"name": "width",
|
|
29760
|
+
"type": {
|
|
29761
|
+
"text": "number"
|
|
29762
|
+
}
|
|
29763
|
+
}
|
|
29764
|
+
],
|
|
29765
|
+
"description": "Width the inspector may be dragged to, against the builder's own width."
|
|
29766
|
+
},
|
|
29767
|
+
{
|
|
29768
|
+
"kind": "method",
|
|
29769
|
+
"name": "_inspectorRect",
|
|
29770
|
+
"privacy": "private",
|
|
29771
|
+
"return": {
|
|
29772
|
+
"type": {
|
|
29773
|
+
"text": "number"
|
|
29774
|
+
}
|
|
29775
|
+
}
|
|
29776
|
+
},
|
|
29777
|
+
{
|
|
29778
|
+
"kind": "field",
|
|
29779
|
+
"name": "_onResizeStart",
|
|
29780
|
+
"privacy": "private"
|
|
29781
|
+
},
|
|
29782
|
+
{
|
|
29783
|
+
"kind": "field",
|
|
29784
|
+
"name": "_onResizeKey",
|
|
29785
|
+
"privacy": "private"
|
|
29786
|
+
},
|
|
29611
29787
|
{
|
|
29612
29788
|
"kind": "method",
|
|
29613
29789
|
"name": "_renderInspector",
|
|
@@ -40581,6 +40757,11 @@
|
|
|
40581
40757
|
"privacy": "private",
|
|
40582
40758
|
"description": "Clears the search query and shows all options"
|
|
40583
40759
|
},
|
|
40760
|
+
{
|
|
40761
|
+
"kind": "method",
|
|
40762
|
+
"name": "updateOptGroupSeparators",
|
|
40763
|
+
"privacy": "private"
|
|
40764
|
+
},
|
|
40584
40765
|
{
|
|
40585
40766
|
"kind": "method",
|
|
40586
40767
|
"name": "commitFreeText",
|
|
@@ -52154,7 +52335,7 @@
|
|
|
52154
52335
|
"text": "object"
|
|
52155
52336
|
},
|
|
52156
52337
|
"static": true,
|
|
52157
|
-
"default": "{ 'zn-chip': ZnChip, 'zn-inline-edit': ZnInlineEdit, 'zn-input': ZnInput, 'zn-option': ZnOption, 'zn-select': ZnSelect, 'zn-textarea': ZnTextarea }"
|
|
52338
|
+
"default": "{ 'zn-chip': ZnChip, 'zn-inline-edit': ZnInlineEdit, 'zn-input': ZnInput, 'zn-option': ZnOption, 'zn-remarkd-editor': ZnRemarkdEditor, 'zn-select': ZnSelect, 'zn-textarea': ZnTextarea }"
|
|
52158
52339
|
},
|
|
52159
52340
|
{
|
|
52160
52341
|
"kind": "field",
|
|
@@ -52250,7 +52431,7 @@
|
|
|
52250
52431
|
"kind": "field",
|
|
52251
52432
|
"name": "inputType",
|
|
52252
52433
|
"type": {
|
|
52253
|
-
"text": "'text' | 'number' | 'textarea'"
|
|
52434
|
+
"text": "'text' | 'number' | 'textarea' | 'remarkd'"
|
|
52254
52435
|
},
|
|
52255
52436
|
"default": "'text'",
|
|
52256
52437
|
"description": "The control each translation is edited through.",
|
|
@@ -52265,6 +52446,46 @@
|
|
|
52265
52446
|
"description": "Rows of the textarea, when `input-type` is `textarea`.",
|
|
52266
52447
|
"attribute": "textarea-rows"
|
|
52267
52448
|
},
|
|
52449
|
+
{
|
|
52450
|
+
"kind": "field",
|
|
52451
|
+
"name": "allowRaw",
|
|
52452
|
+
"type": {
|
|
52453
|
+
"text": "boolean"
|
|
52454
|
+
},
|
|
52455
|
+
"default": "false",
|
|
52456
|
+
"description": "Allows raw HTML blocks, when `input-type` is `remarkd`.",
|
|
52457
|
+
"attribute": "allow-raw"
|
|
52458
|
+
},
|
|
52459
|
+
{
|
|
52460
|
+
"kind": "field",
|
|
52461
|
+
"name": "attachmentUrl",
|
|
52462
|
+
"type": {
|
|
52463
|
+
"text": "string"
|
|
52464
|
+
},
|
|
52465
|
+
"default": "''",
|
|
52466
|
+
"description": "Where the remarkd editor uploads images, when `input-type` is `remarkd`.",
|
|
52467
|
+
"attribute": "attachment-url"
|
|
52468
|
+
},
|
|
52469
|
+
{
|
|
52470
|
+
"kind": "field",
|
|
52471
|
+
"name": "includeUrl",
|
|
52472
|
+
"type": {
|
|
52473
|
+
"text": "string"
|
|
52474
|
+
},
|
|
52475
|
+
"default": "''",
|
|
52476
|
+
"description": "Where the remarkd editor lists embeddable includes, when `input-type` is `remarkd`.",
|
|
52477
|
+
"attribute": "include-url"
|
|
52478
|
+
},
|
|
52479
|
+
{
|
|
52480
|
+
"kind": "field",
|
|
52481
|
+
"name": "linkUrl",
|
|
52482
|
+
"type": {
|
|
52483
|
+
"text": "string"
|
|
52484
|
+
},
|
|
52485
|
+
"default": "''",
|
|
52486
|
+
"description": "Where the remarkd editor searches link targets, when `input-type` is `remarkd`.",
|
|
52487
|
+
"attribute": "link-url"
|
|
52488
|
+
},
|
|
52268
52489
|
{
|
|
52269
52490
|
"kind": "field",
|
|
52270
52491
|
"name": "inlineEdit",
|
|
@@ -52700,7 +52921,7 @@
|
|
|
52700
52921
|
{
|
|
52701
52922
|
"name": "input-type",
|
|
52702
52923
|
"type": {
|
|
52703
|
-
"text": "'text' | 'number' | 'textarea'"
|
|
52924
|
+
"text": "'text' | 'number' | 'textarea' | 'remarkd'"
|
|
52704
52925
|
},
|
|
52705
52926
|
"default": "'text'",
|
|
52706
52927
|
"description": "The control each translation is edited through.",
|
|
@@ -52714,6 +52935,42 @@
|
|
|
52714
52935
|
"description": "Rows of the textarea, when `input-type` is `textarea`.",
|
|
52715
52936
|
"fieldName": "textareaRows"
|
|
52716
52937
|
},
|
|
52938
|
+
{
|
|
52939
|
+
"name": "allow-raw",
|
|
52940
|
+
"type": {
|
|
52941
|
+
"text": "boolean"
|
|
52942
|
+
},
|
|
52943
|
+
"default": "false",
|
|
52944
|
+
"description": "Allows raw HTML blocks, when `input-type` is `remarkd`.",
|
|
52945
|
+
"fieldName": "allowRaw"
|
|
52946
|
+
},
|
|
52947
|
+
{
|
|
52948
|
+
"name": "attachment-url",
|
|
52949
|
+
"type": {
|
|
52950
|
+
"text": "string"
|
|
52951
|
+
},
|
|
52952
|
+
"default": "''",
|
|
52953
|
+
"description": "Where the remarkd editor uploads images, when `input-type` is `remarkd`.",
|
|
52954
|
+
"fieldName": "attachmentUrl"
|
|
52955
|
+
},
|
|
52956
|
+
{
|
|
52957
|
+
"name": "include-url",
|
|
52958
|
+
"type": {
|
|
52959
|
+
"text": "string"
|
|
52960
|
+
},
|
|
52961
|
+
"default": "''",
|
|
52962
|
+
"description": "Where the remarkd editor lists embeddable includes, when `input-type` is `remarkd`.",
|
|
52963
|
+
"fieldName": "includeUrl"
|
|
52964
|
+
},
|
|
52965
|
+
{
|
|
52966
|
+
"name": "link-url",
|
|
52967
|
+
"type": {
|
|
52968
|
+
"text": "string"
|
|
52969
|
+
},
|
|
52970
|
+
"default": "''",
|
|
52971
|
+
"description": "Where the remarkd editor searches link targets, when `input-type` is `remarkd`.",
|
|
52972
|
+
"fieldName": "linkUrl"
|
|
52973
|
+
},
|
|
52717
52974
|
{
|
|
52718
52975
|
"name": "inline-edit",
|
|
52719
52976
|
"type": {
|
|
@@ -53134,7 +53391,7 @@
|
|
|
53134
53391
|
"package": {
|
|
53135
53392
|
"name": "@kubex/zinc",
|
|
53136
53393
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
53137
|
-
"version": "1.1.
|
|
53394
|
+
"version": "1.1.142",
|
|
53138
53395
|
"author": "",
|
|
53139
53396
|
"license": "MIT"
|
|
53140
53397
|
}
|
|
@@ -13,6 +13,17 @@
|
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"name": "zn-action-bar",
|
|
18
|
+
"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.",
|
|
19
|
+
"attributes": [],
|
|
20
|
+
"references": [
|
|
21
|
+
{
|
|
22
|
+
"name": "Documentation",
|
|
23
|
+
"url": "https://zinc.style/components/action-bar"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
},
|
|
16
27
|
{
|
|
17
28
|
"name": "zn-alert",
|
|
18
29
|
"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.",
|
|
@@ -53,17 +64,6 @@
|
|
|
53
64
|
}
|
|
54
65
|
]
|
|
55
66
|
},
|
|
56
|
-
{
|
|
57
|
-
"name": "zn-action-bar",
|
|
58
|
-
"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.",
|
|
59
|
-
"attributes": [],
|
|
60
|
-
"references": [
|
|
61
|
-
{
|
|
62
|
-
"name": "Documentation",
|
|
63
|
-
"url": "https://zinc.style/components/action-bar"
|
|
64
|
-
}
|
|
65
|
-
]
|
|
66
|
-
},
|
|
67
67
|
{
|
|
68
68
|
"name": "zn-animated-button",
|
|
69
69
|
"description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
|
|
@@ -2597,7 +2597,7 @@
|
|
|
2597
2597
|
"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.",
|
|
2598
2598
|
"attributes": [
|
|
2599
2599
|
{ "name": "name", "values": [] },
|
|
2600
|
-
{ "name": "value", "values": [] },
|
|
2600
|
+
{ "name": "value", "values": [{ "name": "string[]" }] },
|
|
2601
2601
|
{ "name": "checked", "values": [] },
|
|
2602
2602
|
{ "name": "options", "values": [{ "name": "linkedSelectOptions" }] },
|
|
2603
2603
|
{ "name": "linked-select", "values": [] },
|
|
@@ -2607,7 +2607,16 @@
|
|
|
2607
2607
|
"name": "select-first",
|
|
2608
2608
|
"description": "Automatically select the first option of the linked group when no value is set.",
|
|
2609
2609
|
"values": []
|
|
2610
|
-
}
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"name": "multiple",
|
|
2613
|
+
"description": "Allows more than one option of the linked group to be selected.",
|
|
2614
|
+
"values": []
|
|
2615
|
+
},
|
|
2616
|
+
{ "name": "placeholder", "values": [] },
|
|
2617
|
+
{ "name": "clearable", "values": [] },
|
|
2618
|
+
{ "name": "search", "values": [] },
|
|
2619
|
+
{ "name": "help-text", "values": [] }
|
|
2611
2620
|
],
|
|
2612
2621
|
"references": [
|
|
2613
2622
|
{
|
|
@@ -5320,7 +5329,8 @@
|
|
|
5320
5329
|
"values": [
|
|
5321
5330
|
{ "name": "text" },
|
|
5322
5331
|
{ "name": "number" },
|
|
5323
|
-
{ "name": "textarea" }
|
|
5332
|
+
{ "name": "textarea" },
|
|
5333
|
+
{ "name": "remarkd" }
|
|
5324
5334
|
]
|
|
5325
5335
|
},
|
|
5326
5336
|
{
|
|
@@ -5328,6 +5338,26 @@
|
|
|
5328
5338
|
"description": "Rows of the textarea, when `input-type` is `textarea`.",
|
|
5329
5339
|
"values": []
|
|
5330
5340
|
},
|
|
5341
|
+
{
|
|
5342
|
+
"name": "allow-raw",
|
|
5343
|
+
"description": "Allows raw HTML blocks, when `input-type` is `remarkd`.",
|
|
5344
|
+
"values": []
|
|
5345
|
+
},
|
|
5346
|
+
{
|
|
5347
|
+
"name": "attachment-url",
|
|
5348
|
+
"description": "Where the remarkd editor uploads images, when `input-type` is `remarkd`.",
|
|
5349
|
+
"values": []
|
|
5350
|
+
},
|
|
5351
|
+
{
|
|
5352
|
+
"name": "include-url",
|
|
5353
|
+
"description": "Where the remarkd editor lists embeddable includes, when `input-type` is `remarkd`.",
|
|
5354
|
+
"values": []
|
|
5355
|
+
},
|
|
5356
|
+
{
|
|
5357
|
+
"name": "link-url",
|
|
5358
|
+
"description": "Where the remarkd editor searches link targets, when `input-type` is `remarkd`.",
|
|
5359
|
+
"values": []
|
|
5360
|
+
},
|
|
5331
5361
|
{
|
|
5332
5362
|
"name": "inline-edit",
|
|
5333
5363
|
"description": "Edits the translation through a `zn-inline-edit` — the value reads as text until it is clicked — rather than a\nplain input or textarea.",
|