@kubex/zinc 1.0.19 → 1.0.20
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 +462 -13
- package/dist/vscode.html-custom-data.json +56 -1
- package/dist/web-types.json +117 -4
- package/dist/zn.d.ts +95 -4
- package/dist/zn.min.js +423 -375
- package/docs/pages/components/input-group.md +61 -0
- package/docs/pages/components/translations.md +53 -0
- package/package.json +1 -1
- package/src/components/audio-select/audio-select.component.ts +37 -34
- package/src/components/checkbox/checkbox.component.ts +12 -1
- package/src/components/data-table/data-table.component.ts +7 -0
- package/src/components/inline-edit/inline-edit.component.ts +2 -1
- package/src/components/input-group/index.ts +12 -0
- package/src/components/input-group/input-group.component.ts +73 -0
- package/src/components/input-group/input-group.scss +65 -0
- package/src/components/input-group/input-group.test.ts +98 -0
- package/src/components/item/item.component.ts +5 -1
- package/src/components/item/item.scss +4 -0
- package/src/components/navbar/navbar.component.ts +21 -6
- package/src/components/navbar/navbar.scss +17 -1
- package/src/components/tabs/tabs.component.ts +33 -24
- package/src/components/translations/index.ts +6 -0
- package/src/components/translations/translations.component.ts +214 -0
- package/src/components/translations/translations.scss +15 -0
- package/src/components/translations/translations.test.ts +39 -0
- package/src/zinc.ts +2 -0
|
@@ -325,15 +325,6 @@
|
|
|
325
325
|
}
|
|
326
326
|
],
|
|
327
327
|
"members": [
|
|
328
|
-
{
|
|
329
|
-
"kind": "field",
|
|
330
|
-
"name": "_selectedUrl",
|
|
331
|
-
"type": {
|
|
332
|
-
"text": "string"
|
|
333
|
-
},
|
|
334
|
-
"privacy": "private",
|
|
335
|
-
"default": "''"
|
|
336
|
-
},
|
|
337
328
|
{
|
|
338
329
|
"kind": "field",
|
|
339
330
|
"name": "_isPlaying",
|
|
@@ -353,6 +344,15 @@
|
|
|
353
344
|
"readonly": true,
|
|
354
345
|
"default": "new Audio()"
|
|
355
346
|
},
|
|
347
|
+
{
|
|
348
|
+
"kind": "field",
|
|
349
|
+
"name": "value",
|
|
350
|
+
"type": {
|
|
351
|
+
"text": "string"
|
|
352
|
+
},
|
|
353
|
+
"default": "''",
|
|
354
|
+
"attribute": "value"
|
|
355
|
+
},
|
|
356
356
|
{
|
|
357
357
|
"kind": "field",
|
|
358
358
|
"name": "label",
|
|
@@ -377,11 +377,12 @@
|
|
|
377
377
|
"type": {
|
|
378
378
|
"text": "AudioFile[]"
|
|
379
379
|
},
|
|
380
|
+
"default": "[]",
|
|
380
381
|
"attribute": "files"
|
|
381
382
|
},
|
|
382
383
|
{
|
|
383
384
|
"kind": "method",
|
|
384
|
-
"name": "
|
|
385
|
+
"name": "stopAudio"
|
|
385
386
|
},
|
|
386
387
|
{
|
|
387
388
|
"kind": "method",
|
|
@@ -409,6 +410,14 @@
|
|
|
409
410
|
}
|
|
410
411
|
],
|
|
411
412
|
"attributes": [
|
|
413
|
+
{
|
|
414
|
+
"name": "value",
|
|
415
|
+
"type": {
|
|
416
|
+
"text": "string"
|
|
417
|
+
},
|
|
418
|
+
"default": "''",
|
|
419
|
+
"fieldName": "value"
|
|
420
|
+
},
|
|
412
421
|
{
|
|
413
422
|
"name": "label",
|
|
414
423
|
"type": {
|
|
@@ -430,6 +439,7 @@
|
|
|
430
439
|
"type": {
|
|
431
440
|
"text": "AudioFile[]"
|
|
432
441
|
},
|
|
442
|
+
"default": "[]",
|
|
433
443
|
"fieldName": "files"
|
|
434
444
|
}
|
|
435
445
|
],
|
|
@@ -2440,7 +2450,7 @@
|
|
|
2440
2450
|
"name": "formControlController",
|
|
2441
2451
|
"privacy": "private",
|
|
2442
2452
|
"readonly": true,
|
|
2443
|
-
"default": "new FormControlController(this, { value: (control: ZnCheckbox) => (control.checked ? control.value || 'on' : undefined), defaultValue: (control: ZnCheckbox) => control.defaultChecked, setValue: (control: ZnCheckbox, checked: boolean) => (control.checked = checked) })"
|
|
2453
|
+
"default": "new FormControlController(this, { value: (control: ZnCheckbox) => (control.checked ? control.value || 'on' : control.uncheckedValue || undefined), defaultValue: (control: ZnCheckbox) => control.defaultChecked, setValue: (control: ZnCheckbox, checked: boolean) => (control.checked = checked) })"
|
|
2444
2454
|
},
|
|
2445
2455
|
{
|
|
2446
2456
|
"kind": "field",
|
|
@@ -2493,6 +2503,16 @@
|
|
|
2493
2503
|
"description": "The current value of the checkbox, submitted as a name/value pair with form data.",
|
|
2494
2504
|
"attribute": "value"
|
|
2495
2505
|
},
|
|
2506
|
+
{
|
|
2507
|
+
"kind": "field",
|
|
2508
|
+
"name": "uncheckedValue",
|
|
2509
|
+
"type": {
|
|
2510
|
+
"text": "string"
|
|
2511
|
+
},
|
|
2512
|
+
"description": "The unchecked value of the checkbox, submitted as a name/value pair with form data.",
|
|
2513
|
+
"attribute": "unchecked-value",
|
|
2514
|
+
"reflects": true
|
|
2515
|
+
},
|
|
2496
2516
|
{
|
|
2497
2517
|
"kind": "field",
|
|
2498
2518
|
"name": "size",
|
|
@@ -2590,6 +2610,17 @@
|
|
|
2590
2610
|
"attribute": "required",
|
|
2591
2611
|
"reflects": true
|
|
2592
2612
|
},
|
|
2613
|
+
{
|
|
2614
|
+
"kind": "field",
|
|
2615
|
+
"name": "submitOnClick",
|
|
2616
|
+
"type": {
|
|
2617
|
+
"text": "boolean"
|
|
2618
|
+
},
|
|
2619
|
+
"default": "false",
|
|
2620
|
+
"description": "Submits the form when checkbox is clicked.",
|
|
2621
|
+
"attribute": "submit-on-click",
|
|
2622
|
+
"reflects": true
|
|
2623
|
+
},
|
|
2593
2624
|
{
|
|
2594
2625
|
"kind": "field",
|
|
2595
2626
|
"name": "description",
|
|
@@ -2842,6 +2873,14 @@
|
|
|
2842
2873
|
"description": "The current value of the checkbox, submitted as a name/value pair with form data.",
|
|
2843
2874
|
"fieldName": "value"
|
|
2844
2875
|
},
|
|
2876
|
+
{
|
|
2877
|
+
"name": "unchecked-value",
|
|
2878
|
+
"type": {
|
|
2879
|
+
"text": "string"
|
|
2880
|
+
},
|
|
2881
|
+
"description": "The unchecked value of the checkbox, submitted as a name/value pair with form data.",
|
|
2882
|
+
"fieldName": "uncheckedValue"
|
|
2883
|
+
},
|
|
2845
2884
|
{
|
|
2846
2885
|
"name": "size",
|
|
2847
2886
|
"type": {
|
|
@@ -2914,6 +2953,15 @@
|
|
|
2914
2953
|
"description": "Makes the checkbox a required field.",
|
|
2915
2954
|
"fieldName": "required"
|
|
2916
2955
|
},
|
|
2956
|
+
{
|
|
2957
|
+
"name": "submit-on-click",
|
|
2958
|
+
"type": {
|
|
2959
|
+
"text": "boolean"
|
|
2960
|
+
},
|
|
2961
|
+
"default": "false",
|
|
2962
|
+
"description": "Submits the form when checkbox is clicked.",
|
|
2963
|
+
"fieldName": "submitOnClick"
|
|
2964
|
+
},
|
|
2917
2965
|
{
|
|
2918
2966
|
"name": "description",
|
|
2919
2967
|
"type": {
|
|
@@ -12987,6 +13035,109 @@
|
|
|
12987
13035
|
}
|
|
12988
13036
|
]
|
|
12989
13037
|
},
|
|
13038
|
+
{
|
|
13039
|
+
"kind": "javascript-module",
|
|
13040
|
+
"path": "components/input-group/input-group.js",
|
|
13041
|
+
"declarations": [
|
|
13042
|
+
{
|
|
13043
|
+
"kind": "class",
|
|
13044
|
+
"description": "",
|
|
13045
|
+
"name": "ZnInputGroup",
|
|
13046
|
+
"cssParts": [
|
|
13047
|
+
{
|
|
13048
|
+
"description": "The component's base wrapper.",
|
|
13049
|
+
"name": "base"
|
|
13050
|
+
},
|
|
13051
|
+
{
|
|
13052
|
+
"description": "The form control wrapper.",
|
|
13053
|
+
"name": "form-control"
|
|
13054
|
+
},
|
|
13055
|
+
{
|
|
13056
|
+
"description": "The label's wrapper.",
|
|
13057
|
+
"name": "form-control-label"
|
|
13058
|
+
},
|
|
13059
|
+
{
|
|
13060
|
+
"description": "The input group container.",
|
|
13061
|
+
"name": "form-control-input"
|
|
13062
|
+
}
|
|
13063
|
+
],
|
|
13064
|
+
"slots": [
|
|
13065
|
+
{
|
|
13066
|
+
"description": "The default slot for inputs and selects.",
|
|
13067
|
+
"name": ""
|
|
13068
|
+
},
|
|
13069
|
+
{
|
|
13070
|
+
"description": "The input group's label. Alternatively, you can use the `label` attribute.",
|
|
13071
|
+
"name": "label"
|
|
13072
|
+
}
|
|
13073
|
+
],
|
|
13074
|
+
"members": [
|
|
13075
|
+
{
|
|
13076
|
+
"kind": "field",
|
|
13077
|
+
"name": "hasSlotController",
|
|
13078
|
+
"privacy": "private",
|
|
13079
|
+
"readonly": true,
|
|
13080
|
+
"default": "new HasSlotController(this, 'label')"
|
|
13081
|
+
},
|
|
13082
|
+
{
|
|
13083
|
+
"kind": "field",
|
|
13084
|
+
"name": "defaultSlot",
|
|
13085
|
+
"type": {
|
|
13086
|
+
"text": "HTMLSlotElement"
|
|
13087
|
+
}
|
|
13088
|
+
},
|
|
13089
|
+
{
|
|
13090
|
+
"kind": "field",
|
|
13091
|
+
"name": "label",
|
|
13092
|
+
"type": {
|
|
13093
|
+
"text": "string"
|
|
13094
|
+
},
|
|
13095
|
+
"default": "''",
|
|
13096
|
+
"description": "The input group's label. If you need to display HTML, use the `label` slot.",
|
|
13097
|
+
"attribute": "label"
|
|
13098
|
+
},
|
|
13099
|
+
{
|
|
13100
|
+
"kind": "method",
|
|
13101
|
+
"name": "handleSlotChange",
|
|
13102
|
+
"privacy": "private"
|
|
13103
|
+
}
|
|
13104
|
+
],
|
|
13105
|
+
"attributes": [
|
|
13106
|
+
{
|
|
13107
|
+
"name": "label",
|
|
13108
|
+
"type": {
|
|
13109
|
+
"text": "string"
|
|
13110
|
+
},
|
|
13111
|
+
"default": "''",
|
|
13112
|
+
"description": "The input group's label. If you need to display HTML, use the `label` slot.",
|
|
13113
|
+
"fieldName": "label"
|
|
13114
|
+
}
|
|
13115
|
+
],
|
|
13116
|
+
"superclass": {
|
|
13117
|
+
"name": "ZincElement",
|
|
13118
|
+
"module": "/src/internal/zinc-element"
|
|
13119
|
+
},
|
|
13120
|
+
"summary": "A wrapper component that groups inputs and selects visually.",
|
|
13121
|
+
"tagNameWithoutPrefix": "input-group",
|
|
13122
|
+
"tagName": "zn-input-group",
|
|
13123
|
+
"customElement": true,
|
|
13124
|
+
"jsDoc": "/**\n * @summary A wrapper component that groups inputs and selects visually.\n * @documentation https://zinc.style/components/input-group\n * @status experimental\n * @since 1.0\n *\n * @slot - The default slot for inputs and selects.\n * @slot label - The input group's label. Alternatively, you can use the `label` attribute.\n *\n * @csspart base - The component's base wrapper.\n * @csspart form-control - The form control wrapper.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The input group container.\n */",
|
|
13125
|
+
"documentation": "https://zinc.style/components/input-group",
|
|
13126
|
+
"status": "experimental",
|
|
13127
|
+
"since": "1.0"
|
|
13128
|
+
}
|
|
13129
|
+
],
|
|
13130
|
+
"exports": [
|
|
13131
|
+
{
|
|
13132
|
+
"kind": "js",
|
|
13133
|
+
"name": "default",
|
|
13134
|
+
"declaration": {
|
|
13135
|
+
"name": "ZnInputGroup",
|
|
13136
|
+
"module": "components/input-group/input-group.js"
|
|
13137
|
+
}
|
|
13138
|
+
}
|
|
13139
|
+
]
|
|
13140
|
+
},
|
|
12990
13141
|
{
|
|
12991
13142
|
"kind": "javascript-module",
|
|
12992
13143
|
"path": "components/item/item.js",
|
|
@@ -13119,6 +13270,14 @@
|
|
|
13119
13270
|
},
|
|
13120
13271
|
"attribute": "align-end"
|
|
13121
13272
|
},
|
|
13273
|
+
{
|
|
13274
|
+
"kind": "field",
|
|
13275
|
+
"name": "alignCenter",
|
|
13276
|
+
"type": {
|
|
13277
|
+
"text": "boolean"
|
|
13278
|
+
},
|
|
13279
|
+
"attribute": "align-center"
|
|
13280
|
+
},
|
|
13122
13281
|
{
|
|
13123
13282
|
"kind": "method",
|
|
13124
13283
|
"name": "_hasContent",
|
|
@@ -13208,6 +13367,13 @@
|
|
|
13208
13367
|
"text": "boolean"
|
|
13209
13368
|
},
|
|
13210
13369
|
"fieldName": "alignEnd"
|
|
13370
|
+
},
|
|
13371
|
+
{
|
|
13372
|
+
"name": "align-center",
|
|
13373
|
+
"type": {
|
|
13374
|
+
"text": "boolean"
|
|
13375
|
+
},
|
|
13376
|
+
"fieldName": "alignCenter"
|
|
13211
13377
|
}
|
|
13212
13378
|
],
|
|
13213
13379
|
"superclass": {
|
|
@@ -14216,6 +14382,15 @@
|
|
|
14216
14382
|
},
|
|
14217
14383
|
"attribute": "no-pad"
|
|
14218
14384
|
},
|
|
14385
|
+
{
|
|
14386
|
+
"kind": "field",
|
|
14387
|
+
"name": "manualAddItems",
|
|
14388
|
+
"type": {
|
|
14389
|
+
"text": "boolean"
|
|
14390
|
+
},
|
|
14391
|
+
"default": "false",
|
|
14392
|
+
"attribute": "manual-add-items"
|
|
14393
|
+
},
|
|
14219
14394
|
{
|
|
14220
14395
|
"kind": "field",
|
|
14221
14396
|
"name": "_preItems",
|
|
@@ -14341,11 +14516,16 @@
|
|
|
14341
14516
|
"kind": "method",
|
|
14342
14517
|
"name": "addItem",
|
|
14343
14518
|
"privacy": "public",
|
|
14519
|
+
"return": {
|
|
14520
|
+
"type": {
|
|
14521
|
+
"text": "void"
|
|
14522
|
+
}
|
|
14523
|
+
},
|
|
14344
14524
|
"parameters": [
|
|
14345
14525
|
{
|
|
14346
14526
|
"name": "item",
|
|
14347
14527
|
"type": {
|
|
14348
|
-
"text": "
|
|
14528
|
+
"text": "Element"
|
|
14349
14529
|
}
|
|
14350
14530
|
}
|
|
14351
14531
|
]
|
|
@@ -14435,6 +14615,14 @@
|
|
|
14435
14615
|
},
|
|
14436
14616
|
"fieldName": "noPad"
|
|
14437
14617
|
},
|
|
14618
|
+
{
|
|
14619
|
+
"name": "manual-add-items",
|
|
14620
|
+
"type": {
|
|
14621
|
+
"text": "boolean"
|
|
14622
|
+
},
|
|
14623
|
+
"default": "false",
|
|
14624
|
+
"fieldName": "manualAddItems"
|
|
14625
|
+
},
|
|
14438
14626
|
{
|
|
14439
14627
|
"name": "_appended",
|
|
14440
14628
|
"type": {
|
|
@@ -26559,6 +26747,267 @@
|
|
|
26559
26747
|
}
|
|
26560
26748
|
]
|
|
26561
26749
|
},
|
|
26750
|
+
{
|
|
26751
|
+
"kind": "javascript-module",
|
|
26752
|
+
"path": "components/translations/translations.js",
|
|
26753
|
+
"declarations": [
|
|
26754
|
+
{
|
|
26755
|
+
"kind": "class",
|
|
26756
|
+
"description": "",
|
|
26757
|
+
"name": "ZnTranslations",
|
|
26758
|
+
"members": [
|
|
26759
|
+
{
|
|
26760
|
+
"kind": "field",
|
|
26761
|
+
"name": "dependencies",
|
|
26762
|
+
"type": {
|
|
26763
|
+
"text": "object"
|
|
26764
|
+
},
|
|
26765
|
+
"static": true,
|
|
26766
|
+
"default": "{ 'zn-navbar': ZnNavbar, 'zn-input': ZnInput, 'zn-inline-edit': ZnInlineEdit }"
|
|
26767
|
+
},
|
|
26768
|
+
{
|
|
26769
|
+
"kind": "field",
|
|
26770
|
+
"name": "formControlController",
|
|
26771
|
+
"type": {
|
|
26772
|
+
"text": "FormControlController"
|
|
26773
|
+
},
|
|
26774
|
+
"privacy": "private",
|
|
26775
|
+
"readonly": true,
|
|
26776
|
+
"default": "new FormControlController(this)"
|
|
26777
|
+
},
|
|
26778
|
+
{
|
|
26779
|
+
"kind": "field",
|
|
26780
|
+
"name": "hasSlotController",
|
|
26781
|
+
"privacy": "private",
|
|
26782
|
+
"readonly": true,
|
|
26783
|
+
"default": "new HasSlotController(this, 'label')"
|
|
26784
|
+
},
|
|
26785
|
+
{
|
|
26786
|
+
"kind": "field",
|
|
26787
|
+
"name": "name",
|
|
26788
|
+
"type": {
|
|
26789
|
+
"text": "string"
|
|
26790
|
+
},
|
|
26791
|
+
"default": "''",
|
|
26792
|
+
"attribute": "name"
|
|
26793
|
+
},
|
|
26794
|
+
{
|
|
26795
|
+
"kind": "field",
|
|
26796
|
+
"name": "value",
|
|
26797
|
+
"type": {
|
|
26798
|
+
"text": "string"
|
|
26799
|
+
},
|
|
26800
|
+
"default": "'{\"en\":\"\"}'",
|
|
26801
|
+
"attribute": "value"
|
|
26802
|
+
},
|
|
26803
|
+
{
|
|
26804
|
+
"kind": "field",
|
|
26805
|
+
"name": "label",
|
|
26806
|
+
"type": {
|
|
26807
|
+
"text": "string"
|
|
26808
|
+
},
|
|
26809
|
+
"default": "''",
|
|
26810
|
+
"attribute": "label"
|
|
26811
|
+
},
|
|
26812
|
+
{
|
|
26813
|
+
"kind": "field",
|
|
26814
|
+
"name": "disabled",
|
|
26815
|
+
"type": {
|
|
26816
|
+
"text": "boolean"
|
|
26817
|
+
},
|
|
26818
|
+
"default": "false",
|
|
26819
|
+
"attribute": "disabled",
|
|
26820
|
+
"reflects": true
|
|
26821
|
+
},
|
|
26822
|
+
{
|
|
26823
|
+
"kind": "field",
|
|
26824
|
+
"name": "required",
|
|
26825
|
+
"type": {
|
|
26826
|
+
"text": "boolean"
|
|
26827
|
+
},
|
|
26828
|
+
"default": "false",
|
|
26829
|
+
"attribute": "required",
|
|
26830
|
+
"reflects": true
|
|
26831
|
+
},
|
|
26832
|
+
{
|
|
26833
|
+
"kind": "field",
|
|
26834
|
+
"name": "languages",
|
|
26835
|
+
"type": {
|
|
26836
|
+
"text": "Record<string, string>"
|
|
26837
|
+
},
|
|
26838
|
+
"default": "{ 'en': 'English' }",
|
|
26839
|
+
"attribute": "languages"
|
|
26840
|
+
},
|
|
26841
|
+
{
|
|
26842
|
+
"kind": "field",
|
|
26843
|
+
"name": "values",
|
|
26844
|
+
"type": {
|
|
26845
|
+
"text": "Record<string, string>"
|
|
26846
|
+
},
|
|
26847
|
+
"default": "{}",
|
|
26848
|
+
"attribute": "values"
|
|
26849
|
+
},
|
|
26850
|
+
{
|
|
26851
|
+
"kind": "field",
|
|
26852
|
+
"name": "_activeLanguage",
|
|
26853
|
+
"type": {
|
|
26854
|
+
"text": "string"
|
|
26855
|
+
},
|
|
26856
|
+
"privacy": "private",
|
|
26857
|
+
"default": "''"
|
|
26858
|
+
},
|
|
26859
|
+
{
|
|
26860
|
+
"kind": "field",
|
|
26861
|
+
"name": "validity",
|
|
26862
|
+
"type": {
|
|
26863
|
+
"text": "ValidityState"
|
|
26864
|
+
},
|
|
26865
|
+
"readonly": true
|
|
26866
|
+
},
|
|
26867
|
+
{
|
|
26868
|
+
"kind": "field",
|
|
26869
|
+
"name": "validationMessage",
|
|
26870
|
+
"readonly": true
|
|
26871
|
+
},
|
|
26872
|
+
{
|
|
26873
|
+
"kind": "method",
|
|
26874
|
+
"name": "checkValidity"
|
|
26875
|
+
},
|
|
26876
|
+
{
|
|
26877
|
+
"kind": "method",
|
|
26878
|
+
"name": "getForm"
|
|
26879
|
+
},
|
|
26880
|
+
{
|
|
26881
|
+
"kind": "method",
|
|
26882
|
+
"name": "reportValidity"
|
|
26883
|
+
},
|
|
26884
|
+
{
|
|
26885
|
+
"kind": "method",
|
|
26886
|
+
"name": "setCustomValidity"
|
|
26887
|
+
},
|
|
26888
|
+
{
|
|
26889
|
+
"kind": "method",
|
|
26890
|
+
"name": "handleLanguageAdd",
|
|
26891
|
+
"privacy": "private",
|
|
26892
|
+
"parameters": [
|
|
26893
|
+
{
|
|
26894
|
+
"name": "e",
|
|
26895
|
+
"type": {
|
|
26896
|
+
"text": "ZnMenuSelectEvent"
|
|
26897
|
+
}
|
|
26898
|
+
}
|
|
26899
|
+
]
|
|
26900
|
+
},
|
|
26901
|
+
{
|
|
26902
|
+
"kind": "method",
|
|
26903
|
+
"name": "handleNavbarClick",
|
|
26904
|
+
"privacy": "private",
|
|
26905
|
+
"parameters": [
|
|
26906
|
+
{
|
|
26907
|
+
"name": "e",
|
|
26908
|
+
"type": {
|
|
26909
|
+
"text": "MouseEvent"
|
|
26910
|
+
}
|
|
26911
|
+
}
|
|
26912
|
+
]
|
|
26913
|
+
},
|
|
26914
|
+
{
|
|
26915
|
+
"kind": "method",
|
|
26916
|
+
"name": "handleValueUpdate",
|
|
26917
|
+
"privacy": "private",
|
|
26918
|
+
"parameters": [
|
|
26919
|
+
{
|
|
26920
|
+
"name": "e",
|
|
26921
|
+
"type": {
|
|
26922
|
+
"text": "CustomEvent"
|
|
26923
|
+
}
|
|
26924
|
+
}
|
|
26925
|
+
]
|
|
26926
|
+
},
|
|
26927
|
+
{
|
|
26928
|
+
"kind": "method",
|
|
26929
|
+
"name": "updateValue",
|
|
26930
|
+
"privacy": "private"
|
|
26931
|
+
}
|
|
26932
|
+
],
|
|
26933
|
+
"attributes": [
|
|
26934
|
+
{
|
|
26935
|
+
"name": "name",
|
|
26936
|
+
"type": {
|
|
26937
|
+
"text": "string"
|
|
26938
|
+
},
|
|
26939
|
+
"default": "''",
|
|
26940
|
+
"fieldName": "name"
|
|
26941
|
+
},
|
|
26942
|
+
{
|
|
26943
|
+
"name": "value",
|
|
26944
|
+
"type": {
|
|
26945
|
+
"text": "string"
|
|
26946
|
+
},
|
|
26947
|
+
"default": "'{\"en\":\"\"}'",
|
|
26948
|
+
"fieldName": "value"
|
|
26949
|
+
},
|
|
26950
|
+
{
|
|
26951
|
+
"name": "label",
|
|
26952
|
+
"type": {
|
|
26953
|
+
"text": "string"
|
|
26954
|
+
},
|
|
26955
|
+
"default": "''",
|
|
26956
|
+
"fieldName": "label"
|
|
26957
|
+
},
|
|
26958
|
+
{
|
|
26959
|
+
"name": "disabled",
|
|
26960
|
+
"type": {
|
|
26961
|
+
"text": "boolean"
|
|
26962
|
+
},
|
|
26963
|
+
"default": "false",
|
|
26964
|
+
"fieldName": "disabled"
|
|
26965
|
+
},
|
|
26966
|
+
{
|
|
26967
|
+
"name": "required",
|
|
26968
|
+
"type": {
|
|
26969
|
+
"text": "boolean"
|
|
26970
|
+
},
|
|
26971
|
+
"default": "false",
|
|
26972
|
+
"fieldName": "required"
|
|
26973
|
+
},
|
|
26974
|
+
{
|
|
26975
|
+
"name": "languages",
|
|
26976
|
+
"type": {
|
|
26977
|
+
"text": "Record<string, string>"
|
|
26978
|
+
},
|
|
26979
|
+
"default": "{ 'en': 'English' }",
|
|
26980
|
+
"fieldName": "languages"
|
|
26981
|
+
},
|
|
26982
|
+
{
|
|
26983
|
+
"name": "values",
|
|
26984
|
+
"type": {
|
|
26985
|
+
"text": "Record<string, string>"
|
|
26986
|
+
},
|
|
26987
|
+
"default": "{}",
|
|
26988
|
+
"fieldName": "values"
|
|
26989
|
+
}
|
|
26990
|
+
],
|
|
26991
|
+
"superclass": {
|
|
26992
|
+
"name": "ZincElement",
|
|
26993
|
+
"module": "/src/internal/zinc-element"
|
|
26994
|
+
},
|
|
26995
|
+
"tagNameWithoutPrefix": "translations",
|
|
26996
|
+
"tagName": "zn-translations",
|
|
26997
|
+
"customElement": true
|
|
26998
|
+
}
|
|
26999
|
+
],
|
|
27000
|
+
"exports": [
|
|
27001
|
+
{
|
|
27002
|
+
"kind": "js",
|
|
27003
|
+
"name": "default",
|
|
27004
|
+
"declaration": {
|
|
27005
|
+
"name": "ZnTranslations",
|
|
27006
|
+
"module": "components/translations/translations.js"
|
|
27007
|
+
}
|
|
27008
|
+
}
|
|
27009
|
+
]
|
|
27010
|
+
},
|
|
26562
27011
|
{
|
|
26563
27012
|
"kind": "javascript-module",
|
|
26564
27013
|
"path": "components/vertical-stepper/vertical-stepper.js",
|
|
@@ -26800,7 +27249,7 @@
|
|
|
26800
27249
|
"package": {
|
|
26801
27250
|
"name": "@kubex/zinc",
|
|
26802
27251
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
26803
|
-
"version": "1.0.
|
|
27252
|
+
"version": "1.0.20",
|
|
26804
27253
|
"author": "",
|
|
26805
27254
|
"license": "MIT"
|
|
26806
27255
|
}
|