@kubex/zinc 1.0.19 → 1.0.21
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 +470 -13
- package/dist/vscode.html-custom-data.json +57 -1
- package/dist/web-types.json +122 -4
- package/dist/zn.d.ts +100 -5
- package/dist/zn.min.js +433 -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 +4 -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 +40 -8
- 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 +239 -0
- package/src/components/translations/translations.scss +15 -0
- package/src/components/translations/translations.test.ts +39 -0
- package/src/events/zn-select.ts +1 -1
- 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,24 @@
|
|
|
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
|
+
},
|
|
14394
|
+
{
|
|
14395
|
+
"kind": "field",
|
|
14396
|
+
"name": "isolated",
|
|
14397
|
+
"type": {
|
|
14398
|
+
"text": "boolean"
|
|
14399
|
+
},
|
|
14400
|
+
"default": "false",
|
|
14401
|
+
"attribute": "isolated"
|
|
14402
|
+
},
|
|
14219
14403
|
{
|
|
14220
14404
|
"kind": "field",
|
|
14221
14405
|
"name": "_preItems",
|
|
@@ -14341,11 +14525,16 @@
|
|
|
14341
14525
|
"kind": "method",
|
|
14342
14526
|
"name": "addItem",
|
|
14343
14527
|
"privacy": "public",
|
|
14528
|
+
"return": {
|
|
14529
|
+
"type": {
|
|
14530
|
+
"text": "void"
|
|
14531
|
+
}
|
|
14532
|
+
},
|
|
14344
14533
|
"parameters": [
|
|
14345
14534
|
{
|
|
14346
14535
|
"name": "item",
|
|
14347
14536
|
"type": {
|
|
14348
|
-
"text": "
|
|
14537
|
+
"text": "Element"
|
|
14349
14538
|
}
|
|
14350
14539
|
}
|
|
14351
14540
|
]
|
|
@@ -14353,6 +14542,11 @@
|
|
|
14353
14542
|
{
|
|
14354
14543
|
"kind": "method",
|
|
14355
14544
|
"name": "showMore"
|
|
14545
|
+
},
|
|
14546
|
+
{
|
|
14547
|
+
"kind": "field",
|
|
14548
|
+
"name": "handleClick",
|
|
14549
|
+
"privacy": "private"
|
|
14356
14550
|
}
|
|
14357
14551
|
],
|
|
14358
14552
|
"events": [
|
|
@@ -14435,6 +14629,22 @@
|
|
|
14435
14629
|
},
|
|
14436
14630
|
"fieldName": "noPad"
|
|
14437
14631
|
},
|
|
14632
|
+
{
|
|
14633
|
+
"name": "manual-add-items",
|
|
14634
|
+
"type": {
|
|
14635
|
+
"text": "boolean"
|
|
14636
|
+
},
|
|
14637
|
+
"default": "false",
|
|
14638
|
+
"fieldName": "manualAddItems"
|
|
14639
|
+
},
|
|
14640
|
+
{
|
|
14641
|
+
"name": "isolated",
|
|
14642
|
+
"type": {
|
|
14643
|
+
"text": "boolean"
|
|
14644
|
+
},
|
|
14645
|
+
"default": "false",
|
|
14646
|
+
"fieldName": "isolated"
|
|
14647
|
+
},
|
|
14438
14648
|
{
|
|
14439
14649
|
"name": "_appended",
|
|
14440
14650
|
"type": {
|
|
@@ -26559,6 +26769,253 @@
|
|
|
26559
26769
|
}
|
|
26560
26770
|
]
|
|
26561
26771
|
},
|
|
26772
|
+
{
|
|
26773
|
+
"kind": "javascript-module",
|
|
26774
|
+
"path": "components/translations/translations.js",
|
|
26775
|
+
"declarations": [
|
|
26776
|
+
{
|
|
26777
|
+
"kind": "class",
|
|
26778
|
+
"description": "",
|
|
26779
|
+
"name": "ZnTranslations",
|
|
26780
|
+
"members": [
|
|
26781
|
+
{
|
|
26782
|
+
"kind": "field",
|
|
26783
|
+
"name": "dependencies",
|
|
26784
|
+
"type": {
|
|
26785
|
+
"text": "object"
|
|
26786
|
+
},
|
|
26787
|
+
"static": true,
|
|
26788
|
+
"default": "{ 'zn-navbar': ZnNavbar, 'zn-input': ZnInput, 'zn-inline-edit': ZnInlineEdit }"
|
|
26789
|
+
},
|
|
26790
|
+
{
|
|
26791
|
+
"kind": "field",
|
|
26792
|
+
"name": "formControlController",
|
|
26793
|
+
"type": {
|
|
26794
|
+
"text": "FormControlController"
|
|
26795
|
+
},
|
|
26796
|
+
"privacy": "private",
|
|
26797
|
+
"readonly": true,
|
|
26798
|
+
"default": "new FormControlController(this)"
|
|
26799
|
+
},
|
|
26800
|
+
{
|
|
26801
|
+
"kind": "field",
|
|
26802
|
+
"name": "hasSlotController",
|
|
26803
|
+
"privacy": "private",
|
|
26804
|
+
"readonly": true,
|
|
26805
|
+
"default": "new HasSlotController(this, 'label')"
|
|
26806
|
+
},
|
|
26807
|
+
{
|
|
26808
|
+
"kind": "field",
|
|
26809
|
+
"name": "name",
|
|
26810
|
+
"type": {
|
|
26811
|
+
"text": "string"
|
|
26812
|
+
},
|
|
26813
|
+
"default": "''",
|
|
26814
|
+
"attribute": "name"
|
|
26815
|
+
},
|
|
26816
|
+
{
|
|
26817
|
+
"kind": "field",
|
|
26818
|
+
"name": "value",
|
|
26819
|
+
"type": {
|
|
26820
|
+
"text": "string"
|
|
26821
|
+
},
|
|
26822
|
+
"default": "'{\"en\":\"\"}'",
|
|
26823
|
+
"attribute": "value"
|
|
26824
|
+
},
|
|
26825
|
+
{
|
|
26826
|
+
"kind": "field",
|
|
26827
|
+
"name": "label",
|
|
26828
|
+
"type": {
|
|
26829
|
+
"text": "string"
|
|
26830
|
+
},
|
|
26831
|
+
"default": "''",
|
|
26832
|
+
"attribute": "label"
|
|
26833
|
+
},
|
|
26834
|
+
{
|
|
26835
|
+
"kind": "field",
|
|
26836
|
+
"name": "disabled",
|
|
26837
|
+
"type": {
|
|
26838
|
+
"text": "boolean"
|
|
26839
|
+
},
|
|
26840
|
+
"default": "false",
|
|
26841
|
+
"attribute": "disabled",
|
|
26842
|
+
"reflects": true
|
|
26843
|
+
},
|
|
26844
|
+
{
|
|
26845
|
+
"kind": "field",
|
|
26846
|
+
"name": "required",
|
|
26847
|
+
"type": {
|
|
26848
|
+
"text": "boolean"
|
|
26849
|
+
},
|
|
26850
|
+
"default": "false",
|
|
26851
|
+
"attribute": "required",
|
|
26852
|
+
"reflects": true
|
|
26853
|
+
},
|
|
26854
|
+
{
|
|
26855
|
+
"kind": "field",
|
|
26856
|
+
"name": "languages",
|
|
26857
|
+
"type": {
|
|
26858
|
+
"text": "Record<string, string>"
|
|
26859
|
+
},
|
|
26860
|
+
"default": "{ 'en': 'English' }",
|
|
26861
|
+
"attribute": "languages"
|
|
26862
|
+
},
|
|
26863
|
+
{
|
|
26864
|
+
"kind": "field",
|
|
26865
|
+
"name": "values",
|
|
26866
|
+
"type": {
|
|
26867
|
+
"text": "Record<string, string>"
|
|
26868
|
+
},
|
|
26869
|
+
"default": "{}",
|
|
26870
|
+
"attribute": "values"
|
|
26871
|
+
},
|
|
26872
|
+
{
|
|
26873
|
+
"kind": "field",
|
|
26874
|
+
"name": "_activeLanguage",
|
|
26875
|
+
"type": {
|
|
26876
|
+
"text": "string"
|
|
26877
|
+
},
|
|
26878
|
+
"privacy": "private",
|
|
26879
|
+
"default": "''"
|
|
26880
|
+
},
|
|
26881
|
+
{
|
|
26882
|
+
"kind": "field",
|
|
26883
|
+
"name": "validity",
|
|
26884
|
+
"type": {
|
|
26885
|
+
"text": "ValidityState"
|
|
26886
|
+
},
|
|
26887
|
+
"readonly": true
|
|
26888
|
+
},
|
|
26889
|
+
{
|
|
26890
|
+
"kind": "field",
|
|
26891
|
+
"name": "validationMessage",
|
|
26892
|
+
"readonly": true
|
|
26893
|
+
},
|
|
26894
|
+
{
|
|
26895
|
+
"kind": "method",
|
|
26896
|
+
"name": "checkValidity"
|
|
26897
|
+
},
|
|
26898
|
+
{
|
|
26899
|
+
"kind": "method",
|
|
26900
|
+
"name": "getForm"
|
|
26901
|
+
},
|
|
26902
|
+
{
|
|
26903
|
+
"kind": "method",
|
|
26904
|
+
"name": "reportValidity"
|
|
26905
|
+
},
|
|
26906
|
+
{
|
|
26907
|
+
"kind": "method",
|
|
26908
|
+
"name": "setCustomValidity"
|
|
26909
|
+
},
|
|
26910
|
+
{
|
|
26911
|
+
"kind": "field",
|
|
26912
|
+
"name": "handleLanguageAdd",
|
|
26913
|
+
"privacy": "private"
|
|
26914
|
+
},
|
|
26915
|
+
{
|
|
26916
|
+
"kind": "field",
|
|
26917
|
+
"name": "handleNavbarClick",
|
|
26918
|
+
"privacy": "private"
|
|
26919
|
+
},
|
|
26920
|
+
{
|
|
26921
|
+
"kind": "field",
|
|
26922
|
+
"name": "handleValueUpdate",
|
|
26923
|
+
"privacy": "private"
|
|
26924
|
+
},
|
|
26925
|
+
{
|
|
26926
|
+
"kind": "method",
|
|
26927
|
+
"name": "updateValue",
|
|
26928
|
+
"privacy": "private"
|
|
26929
|
+
},
|
|
26930
|
+
{
|
|
26931
|
+
"kind": "field",
|
|
26932
|
+
"name": "handleKeyDown",
|
|
26933
|
+
"privacy": "private"
|
|
26934
|
+
},
|
|
26935
|
+
{
|
|
26936
|
+
"kind": "field",
|
|
26937
|
+
"name": "handleSubmit",
|
|
26938
|
+
"privacy": "private"
|
|
26939
|
+
}
|
|
26940
|
+
],
|
|
26941
|
+
"attributes": [
|
|
26942
|
+
{
|
|
26943
|
+
"name": "name",
|
|
26944
|
+
"type": {
|
|
26945
|
+
"text": "string"
|
|
26946
|
+
},
|
|
26947
|
+
"default": "''",
|
|
26948
|
+
"fieldName": "name"
|
|
26949
|
+
},
|
|
26950
|
+
{
|
|
26951
|
+
"name": "value",
|
|
26952
|
+
"type": {
|
|
26953
|
+
"text": "string"
|
|
26954
|
+
},
|
|
26955
|
+
"default": "'{\"en\":\"\"}'",
|
|
26956
|
+
"fieldName": "value"
|
|
26957
|
+
},
|
|
26958
|
+
{
|
|
26959
|
+
"name": "label",
|
|
26960
|
+
"type": {
|
|
26961
|
+
"text": "string"
|
|
26962
|
+
},
|
|
26963
|
+
"default": "''",
|
|
26964
|
+
"fieldName": "label"
|
|
26965
|
+
},
|
|
26966
|
+
{
|
|
26967
|
+
"name": "disabled",
|
|
26968
|
+
"type": {
|
|
26969
|
+
"text": "boolean"
|
|
26970
|
+
},
|
|
26971
|
+
"default": "false",
|
|
26972
|
+
"fieldName": "disabled"
|
|
26973
|
+
},
|
|
26974
|
+
{
|
|
26975
|
+
"name": "required",
|
|
26976
|
+
"type": {
|
|
26977
|
+
"text": "boolean"
|
|
26978
|
+
},
|
|
26979
|
+
"default": "false",
|
|
26980
|
+
"fieldName": "required"
|
|
26981
|
+
},
|
|
26982
|
+
{
|
|
26983
|
+
"name": "languages",
|
|
26984
|
+
"type": {
|
|
26985
|
+
"text": "Record<string, string>"
|
|
26986
|
+
},
|
|
26987
|
+
"default": "{ 'en': 'English' }",
|
|
26988
|
+
"fieldName": "languages"
|
|
26989
|
+
},
|
|
26990
|
+
{
|
|
26991
|
+
"name": "values",
|
|
26992
|
+
"type": {
|
|
26993
|
+
"text": "Record<string, string>"
|
|
26994
|
+
},
|
|
26995
|
+
"default": "{}",
|
|
26996
|
+
"fieldName": "values"
|
|
26997
|
+
}
|
|
26998
|
+
],
|
|
26999
|
+
"superclass": {
|
|
27000
|
+
"name": "ZincElement",
|
|
27001
|
+
"module": "/src/internal/zinc-element"
|
|
27002
|
+
},
|
|
27003
|
+
"tagNameWithoutPrefix": "translations",
|
|
27004
|
+
"tagName": "zn-translations",
|
|
27005
|
+
"customElement": true
|
|
27006
|
+
}
|
|
27007
|
+
],
|
|
27008
|
+
"exports": [
|
|
27009
|
+
{
|
|
27010
|
+
"kind": "js",
|
|
27011
|
+
"name": "default",
|
|
27012
|
+
"declaration": {
|
|
27013
|
+
"name": "ZnTranslations",
|
|
27014
|
+
"module": "components/translations/translations.js"
|
|
27015
|
+
}
|
|
27016
|
+
}
|
|
27017
|
+
]
|
|
27018
|
+
},
|
|
26562
27019
|
{
|
|
26563
27020
|
"kind": "javascript-module",
|
|
26564
27021
|
"path": "components/vertical-stepper/vertical-stepper.js",
|
|
@@ -26800,7 +27257,7 @@
|
|
|
26800
27257
|
"package": {
|
|
26801
27258
|
"name": "@kubex/zinc",
|
|
26802
27259
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
26803
|
-
"version": "1.0.
|
|
27260
|
+
"version": "1.0.21",
|
|
26804
27261
|
"author": "",
|
|
26805
27262
|
"license": "MIT"
|
|
26806
27263
|
}
|