@kubex/zinc 1.0.104 → 1.0.106
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 +604 -115
- package/dist/vscode.html-custom-data.json +33 -13
- package/dist/web-types.json +73 -26
- package/dist/zn.d.ts +24 -3
- package/dist/zn.min.js +347 -294
- package/docs/pages/components/translation-group.md +25 -0
- package/docs/pages/components/translations.md +17 -1
- package/package.json +1 -1
- package/src/components/inline-edit/inline-edit.component.ts +2 -1
- package/src/components/inline-edit/inline-edit.scss +9 -11
- package/src/components/markdown-editor/markdown-editor.component.ts +107 -64
- package/src/components/markdown-editor/markdown-editor.scss +23 -24
- package/src/components/textarea/textarea.component.ts +1 -1
- package/src/components/translation-group/translation-group.component.ts +113 -2
- package/src/components/translations/translations.component.ts +120 -3
|
@@ -59,6 +59,79 @@
|
|
|
59
59
|
}
|
|
60
60
|
]
|
|
61
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"kind": "javascript-module",
|
|
64
|
+
"path": "components/action-bar/action-bar.js",
|
|
65
|
+
"declarations": [
|
|
66
|
+
{
|
|
67
|
+
"kind": "class",
|
|
68
|
+
"description": "",
|
|
69
|
+
"name": "ZnActionBar",
|
|
70
|
+
"cssProperties": [
|
|
71
|
+
{
|
|
72
|
+
"description": "An example CSS custom property.",
|
|
73
|
+
"name": "--example"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"cssParts": [
|
|
77
|
+
{
|
|
78
|
+
"description": "The component's base wrapper.",
|
|
79
|
+
"name": "base"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"slots": [
|
|
83
|
+
{
|
|
84
|
+
"description": "The default slot.",
|
|
85
|
+
"name": ""
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"description": "An example slot.",
|
|
89
|
+
"name": "example"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"members": [
|
|
93
|
+
{
|
|
94
|
+
"kind": "field",
|
|
95
|
+
"name": "localize",
|
|
96
|
+
"privacy": "private",
|
|
97
|
+
"readonly": true,
|
|
98
|
+
"default": "new LocalizeController(this)"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"events": [
|
|
102
|
+
{
|
|
103
|
+
"description": "Emitted as an example.",
|
|
104
|
+
"name": "zn-event-name"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"superclass": {
|
|
108
|
+
"name": "ZincElement",
|
|
109
|
+
"module": "/src/internal/zinc-element"
|
|
110
|
+
},
|
|
111
|
+
"summary": "Short summary of the component's intended use.",
|
|
112
|
+
"tagNameWithoutPrefix": "action-bar",
|
|
113
|
+
"tagName": "zn-action-bar",
|
|
114
|
+
"customElement": true,
|
|
115
|
+
"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 */",
|
|
116
|
+
"documentation": "https://zinc.style/components/action-bar",
|
|
117
|
+
"status": "experimental",
|
|
118
|
+
"since": "1.0",
|
|
119
|
+
"dependencies": [
|
|
120
|
+
"zn-example"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"exports": [
|
|
125
|
+
{
|
|
126
|
+
"kind": "js",
|
|
127
|
+
"name": "default",
|
|
128
|
+
"declaration": {
|
|
129
|
+
"name": "ZnActionBar",
|
|
130
|
+
"module": "components/action-bar/action-bar.js"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
},
|
|
62
135
|
{
|
|
63
136
|
"kind": "javascript-module",
|
|
64
137
|
"path": "components/alert/alert.js",
|
|
@@ -217,79 +290,6 @@
|
|
|
217
290
|
}
|
|
218
291
|
]
|
|
219
292
|
},
|
|
220
|
-
{
|
|
221
|
-
"kind": "javascript-module",
|
|
222
|
-
"path": "components/action-bar/action-bar.js",
|
|
223
|
-
"declarations": [
|
|
224
|
-
{
|
|
225
|
-
"kind": "class",
|
|
226
|
-
"description": "",
|
|
227
|
-
"name": "ZnActionBar",
|
|
228
|
-
"cssProperties": [
|
|
229
|
-
{
|
|
230
|
-
"description": "An example CSS custom property.",
|
|
231
|
-
"name": "--example"
|
|
232
|
-
}
|
|
233
|
-
],
|
|
234
|
-
"cssParts": [
|
|
235
|
-
{
|
|
236
|
-
"description": "The component's base wrapper.",
|
|
237
|
-
"name": "base"
|
|
238
|
-
}
|
|
239
|
-
],
|
|
240
|
-
"slots": [
|
|
241
|
-
{
|
|
242
|
-
"description": "The default slot.",
|
|
243
|
-
"name": ""
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"description": "An example slot.",
|
|
247
|
-
"name": "example"
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"members": [
|
|
251
|
-
{
|
|
252
|
-
"kind": "field",
|
|
253
|
-
"name": "localize",
|
|
254
|
-
"privacy": "private",
|
|
255
|
-
"readonly": true,
|
|
256
|
-
"default": "new LocalizeController(this)"
|
|
257
|
-
}
|
|
258
|
-
],
|
|
259
|
-
"events": [
|
|
260
|
-
{
|
|
261
|
-
"description": "Emitted as an example.",
|
|
262
|
-
"name": "zn-event-name"
|
|
263
|
-
}
|
|
264
|
-
],
|
|
265
|
-
"superclass": {
|
|
266
|
-
"name": "ZincElement",
|
|
267
|
-
"module": "/src/internal/zinc-element"
|
|
268
|
-
},
|
|
269
|
-
"summary": "Short summary of the component's intended use.",
|
|
270
|
-
"tagNameWithoutPrefix": "action-bar",
|
|
271
|
-
"tagName": "zn-action-bar",
|
|
272
|
-
"customElement": true,
|
|
273
|
-
"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 */",
|
|
274
|
-
"documentation": "https://zinc.style/components/action-bar",
|
|
275
|
-
"status": "experimental",
|
|
276
|
-
"since": "1.0",
|
|
277
|
-
"dependencies": [
|
|
278
|
-
"zn-example"
|
|
279
|
-
]
|
|
280
|
-
}
|
|
281
|
-
],
|
|
282
|
-
"exports": [
|
|
283
|
-
{
|
|
284
|
-
"kind": "js",
|
|
285
|
-
"name": "default",
|
|
286
|
-
"declaration": {
|
|
287
|
-
"name": "ZnActionBar",
|
|
288
|
-
"module": "components/action-bar/action-bar.js"
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
]
|
|
292
|
-
},
|
|
293
293
|
{
|
|
294
294
|
"kind": "javascript-module",
|
|
295
295
|
"path": "components/animated-button/animated-button.js",
|
|
@@ -13463,6 +13463,14 @@
|
|
|
13463
13463
|
"default": "'text'",
|
|
13464
13464
|
"attribute": "input-type"
|
|
13465
13465
|
},
|
|
13466
|
+
{
|
|
13467
|
+
"kind": "field",
|
|
13468
|
+
"name": "textareaRows",
|
|
13469
|
+
"type": {
|
|
13470
|
+
"text": "1"
|
|
13471
|
+
},
|
|
13472
|
+
"attribute": "textarea-rows"
|
|
13473
|
+
},
|
|
13466
13474
|
{
|
|
13467
13475
|
"kind": "field",
|
|
13468
13476
|
"name": "options",
|
|
@@ -13873,6 +13881,13 @@
|
|
|
13873
13881
|
"default": "'text'",
|
|
13874
13882
|
"fieldName": "inputType"
|
|
13875
13883
|
},
|
|
13884
|
+
{
|
|
13885
|
+
"name": "textarea-rows",
|
|
13886
|
+
"type": {
|
|
13887
|
+
"text": "1"
|
|
13888
|
+
},
|
|
13889
|
+
"fieldName": "textareaRows"
|
|
13890
|
+
},
|
|
13876
13891
|
{
|
|
13877
13892
|
"name": "options",
|
|
13878
13893
|
"type": {
|
|
@@ -16340,7 +16355,11 @@
|
|
|
16340
16355
|
"cssParts": [
|
|
16341
16356
|
{
|
|
16342
16357
|
"description": "The component's base wrapper.",
|
|
16343
|
-
"name": "base"
|
|
16358
|
+
"name": "base",
|
|
16359
|
+
"inheritedFrom": {
|
|
16360
|
+
"name": "ZnPanel",
|
|
16361
|
+
"module": "src/components/panel/panel.component.ts"
|
|
16362
|
+
}
|
|
16344
16363
|
},
|
|
16345
16364
|
{
|
|
16346
16365
|
"description": "The toolbar containing the view-mode and fullscreen controls.",
|
|
@@ -16363,6 +16382,30 @@
|
|
|
16363
16382
|
{
|
|
16364
16383
|
"description": "Help text shown below the editor. Alternatively, use the `help-text` attribute.",
|
|
16365
16384
|
"name": "help-text"
|
|
16385
|
+
},
|
|
16386
|
+
{
|
|
16387
|
+
"description": "The panel's main content.",
|
|
16388
|
+
"name": "",
|
|
16389
|
+
"inheritedFrom": {
|
|
16390
|
+
"name": "ZnPanel",
|
|
16391
|
+
"module": "src/components/panel/panel.component.ts"
|
|
16392
|
+
}
|
|
16393
|
+
},
|
|
16394
|
+
{
|
|
16395
|
+
"description": "Actions displayed in the panel header (buttons, chips, etc).",
|
|
16396
|
+
"name": "actions",
|
|
16397
|
+
"inheritedFrom": {
|
|
16398
|
+
"name": "ZnPanel",
|
|
16399
|
+
"module": "src/components/panel/panel.component.ts"
|
|
16400
|
+
}
|
|
16401
|
+
},
|
|
16402
|
+
{
|
|
16403
|
+
"description": "Content displayed in the panel footer.",
|
|
16404
|
+
"name": "footer",
|
|
16405
|
+
"inheritedFrom": {
|
|
16406
|
+
"name": "ZnPanel",
|
|
16407
|
+
"module": "src/components/panel/panel.component.ts"
|
|
16408
|
+
}
|
|
16366
16409
|
}
|
|
16367
16410
|
],
|
|
16368
16411
|
"members": [
|
|
@@ -16375,10 +16418,10 @@
|
|
|
16375
16418
|
},
|
|
16376
16419
|
{
|
|
16377
16420
|
"kind": "field",
|
|
16378
|
-
"name": "
|
|
16421
|
+
"name": "markdownSlotController",
|
|
16379
16422
|
"privacy": "private",
|
|
16380
16423
|
"readonly": true,
|
|
16381
|
-
"default": "new HasSlotController(this, 'label', 'help-text')"
|
|
16424
|
+
"default": "new HasSlotController(this, 'label', 'help-text', 'actions', 'footer')"
|
|
16382
16425
|
},
|
|
16383
16426
|
{
|
|
16384
16427
|
"kind": "field",
|
|
@@ -16533,7 +16576,9 @@
|
|
|
16533
16576
|
"text": "boolean"
|
|
16534
16577
|
},
|
|
16535
16578
|
"default": "false",
|
|
16536
|
-
"description": "Whether the editor is currently expanded to cover its containing positioned ancestor."
|
|
16579
|
+
"description": "Whether the editor is currently expanded to cover its containing positioned ancestor.",
|
|
16580
|
+
"attribute": "expanded",
|
|
16581
|
+
"reflects": true
|
|
16537
16582
|
},
|
|
16538
16583
|
{
|
|
16539
16584
|
"kind": "field",
|
|
@@ -16698,62 +16743,229 @@
|
|
|
16698
16743
|
}
|
|
16699
16744
|
}
|
|
16700
16745
|
]
|
|
16701
|
-
}
|
|
16702
|
-
],
|
|
16703
|
-
"events": [
|
|
16704
|
-
{
|
|
16705
|
-
"name": "zn-view-mode-change",
|
|
16706
|
-
"type": {
|
|
16707
|
-
"text": "CustomEvent"
|
|
16708
|
-
},
|
|
16709
|
-
"description": "Emitted when the user switches between editor / split / preview."
|
|
16710
16746
|
},
|
|
16711
16747
|
{
|
|
16712
|
-
"
|
|
16713
|
-
"name": "
|
|
16748
|
+
"kind": "field",
|
|
16749
|
+
"name": "hasSlotController",
|
|
16750
|
+
"privacy": "private",
|
|
16751
|
+
"readonly": true,
|
|
16752
|
+
"default": "new HasSlotController(this, '[default]', 'actions', 'footer')",
|
|
16753
|
+
"inheritedFrom": {
|
|
16754
|
+
"name": "ZnPanel",
|
|
16755
|
+
"module": "components/panel/panel.js"
|
|
16756
|
+
}
|
|
16714
16757
|
},
|
|
16715
16758
|
{
|
|
16716
|
-
"
|
|
16717
|
-
"name": "
|
|
16718
|
-
}
|
|
16719
|
-
],
|
|
16720
|
-
"attributes": [
|
|
16721
|
-
{
|
|
16722
|
-
"name": "name",
|
|
16759
|
+
"kind": "field",
|
|
16760
|
+
"name": "basis",
|
|
16723
16761
|
"type": {
|
|
16724
|
-
"text": "
|
|
16762
|
+
"text": "number"
|
|
16725
16763
|
},
|
|
16726
|
-
"
|
|
16727
|
-
"
|
|
16728
|
-
|
|
16764
|
+
"attribute": "basis-px",
|
|
16765
|
+
"inheritedFrom": {
|
|
16766
|
+
"name": "ZnPanel",
|
|
16767
|
+
"module": "components/panel/panel.js"
|
|
16768
|
+
}
|
|
16729
16769
|
},
|
|
16730
16770
|
{
|
|
16731
|
-
"
|
|
16771
|
+
"kind": "field",
|
|
16772
|
+
"name": "caption",
|
|
16732
16773
|
"type": {
|
|
16733
16774
|
"text": "string"
|
|
16734
16775
|
},
|
|
16735
|
-
"
|
|
16736
|
-
"
|
|
16737
|
-
|
|
16776
|
+
"attribute": "caption",
|
|
16777
|
+
"inheritedFrom": {
|
|
16778
|
+
"name": "ZnPanel",
|
|
16779
|
+
"module": "components/panel/panel.js"
|
|
16780
|
+
}
|
|
16738
16781
|
},
|
|
16739
16782
|
{
|
|
16740
|
-
"
|
|
16783
|
+
"kind": "field",
|
|
16784
|
+
"name": "icon",
|
|
16741
16785
|
"type": {
|
|
16742
16786
|
"text": "string"
|
|
16743
16787
|
},
|
|
16744
|
-
"
|
|
16745
|
-
"
|
|
16746
|
-
|
|
16788
|
+
"attribute": "icon",
|
|
16789
|
+
"inheritedFrom": {
|
|
16790
|
+
"name": "ZnPanel",
|
|
16791
|
+
"module": "components/panel/panel.js"
|
|
16792
|
+
}
|
|
16747
16793
|
},
|
|
16748
16794
|
{
|
|
16749
|
-
"
|
|
16795
|
+
"kind": "field",
|
|
16796
|
+
"name": "description",
|
|
16750
16797
|
"type": {
|
|
16751
16798
|
"text": "string"
|
|
16752
16799
|
},
|
|
16753
|
-
"
|
|
16754
|
-
"
|
|
16755
|
-
|
|
16756
|
-
|
|
16800
|
+
"attribute": "description",
|
|
16801
|
+
"inheritedFrom": {
|
|
16802
|
+
"name": "ZnPanel",
|
|
16803
|
+
"module": "components/panel/panel.js"
|
|
16804
|
+
}
|
|
16805
|
+
},
|
|
16806
|
+
{
|
|
16807
|
+
"kind": "field",
|
|
16808
|
+
"name": "tabbed",
|
|
16809
|
+
"type": {
|
|
16810
|
+
"text": "boolean"
|
|
16811
|
+
},
|
|
16812
|
+
"attribute": "tabbed",
|
|
16813
|
+
"inheritedFrom": {
|
|
16814
|
+
"name": "ZnPanel",
|
|
16815
|
+
"module": "components/panel/panel.js"
|
|
16816
|
+
}
|
|
16817
|
+
},
|
|
16818
|
+
{
|
|
16819
|
+
"kind": "field",
|
|
16820
|
+
"name": "underlineHeader",
|
|
16821
|
+
"type": {
|
|
16822
|
+
"text": "boolean"
|
|
16823
|
+
},
|
|
16824
|
+
"attribute": "header-underline",
|
|
16825
|
+
"inheritedFrom": {
|
|
16826
|
+
"name": "ZnPanel",
|
|
16827
|
+
"module": "components/panel/panel.js"
|
|
16828
|
+
}
|
|
16829
|
+
},
|
|
16830
|
+
{
|
|
16831
|
+
"kind": "field",
|
|
16832
|
+
"name": "cosmic",
|
|
16833
|
+
"type": {
|
|
16834
|
+
"text": "boolean"
|
|
16835
|
+
},
|
|
16836
|
+
"attribute": "cosmic",
|
|
16837
|
+
"inheritedFrom": {
|
|
16838
|
+
"name": "ZnPanel",
|
|
16839
|
+
"module": "components/panel/panel.js"
|
|
16840
|
+
}
|
|
16841
|
+
},
|
|
16842
|
+
{
|
|
16843
|
+
"kind": "field",
|
|
16844
|
+
"name": "flush",
|
|
16845
|
+
"type": {
|
|
16846
|
+
"text": "boolean"
|
|
16847
|
+
},
|
|
16848
|
+
"attribute": "flush",
|
|
16849
|
+
"inheritedFrom": {
|
|
16850
|
+
"name": "ZnPanel",
|
|
16851
|
+
"module": "components/panel/panel.js"
|
|
16852
|
+
}
|
|
16853
|
+
},
|
|
16854
|
+
{
|
|
16855
|
+
"kind": "field",
|
|
16856
|
+
"name": "flushX",
|
|
16857
|
+
"type": {
|
|
16858
|
+
"text": "boolean"
|
|
16859
|
+
},
|
|
16860
|
+
"attribute": "flush-x",
|
|
16861
|
+
"inheritedFrom": {
|
|
16862
|
+
"name": "ZnPanel",
|
|
16863
|
+
"module": "components/panel/panel.js"
|
|
16864
|
+
}
|
|
16865
|
+
},
|
|
16866
|
+
{
|
|
16867
|
+
"kind": "field",
|
|
16868
|
+
"name": "flushY",
|
|
16869
|
+
"type": {
|
|
16870
|
+
"text": "boolean"
|
|
16871
|
+
},
|
|
16872
|
+
"attribute": "flush-y",
|
|
16873
|
+
"inheritedFrom": {
|
|
16874
|
+
"name": "ZnPanel",
|
|
16875
|
+
"module": "components/panel/panel.js"
|
|
16876
|
+
}
|
|
16877
|
+
},
|
|
16878
|
+
{
|
|
16879
|
+
"kind": "field",
|
|
16880
|
+
"name": "flushFooter",
|
|
16881
|
+
"type": {
|
|
16882
|
+
"text": "boolean"
|
|
16883
|
+
},
|
|
16884
|
+
"attribute": "flush-footer",
|
|
16885
|
+
"inheritedFrom": {
|
|
16886
|
+
"name": "ZnPanel",
|
|
16887
|
+
"module": "components/panel/panel.js"
|
|
16888
|
+
}
|
|
16889
|
+
},
|
|
16890
|
+
{
|
|
16891
|
+
"kind": "field",
|
|
16892
|
+
"name": "transparent",
|
|
16893
|
+
"type": {
|
|
16894
|
+
"text": "boolean"
|
|
16895
|
+
},
|
|
16896
|
+
"attribute": "transparent",
|
|
16897
|
+
"inheritedFrom": {
|
|
16898
|
+
"name": "ZnPanel",
|
|
16899
|
+
"module": "components/panel/panel.js"
|
|
16900
|
+
}
|
|
16901
|
+
},
|
|
16902
|
+
{
|
|
16903
|
+
"kind": "field",
|
|
16904
|
+
"name": "shadow",
|
|
16905
|
+
"type": {
|
|
16906
|
+
"text": "boolean"
|
|
16907
|
+
},
|
|
16908
|
+
"attribute": "shadow",
|
|
16909
|
+
"inheritedFrom": {
|
|
16910
|
+
"name": "ZnPanel",
|
|
16911
|
+
"module": "components/panel/panel.js"
|
|
16912
|
+
}
|
|
16913
|
+
}
|
|
16914
|
+
],
|
|
16915
|
+
"events": [
|
|
16916
|
+
{
|
|
16917
|
+
"name": "zn-view-mode-change",
|
|
16918
|
+
"type": {
|
|
16919
|
+
"text": "CustomEvent"
|
|
16920
|
+
},
|
|
16921
|
+
"description": "Emitted when the user switches between editor / split / preview."
|
|
16922
|
+
},
|
|
16923
|
+
{
|
|
16924
|
+
"description": "Emitted when the markdown content changes.",
|
|
16925
|
+
"name": "zn-change"
|
|
16926
|
+
},
|
|
16927
|
+
{
|
|
16928
|
+
"description": "Emitted on each keystroke in the editor.",
|
|
16929
|
+
"name": "zn-input"
|
|
16930
|
+
}
|
|
16931
|
+
],
|
|
16932
|
+
"attributes": [
|
|
16933
|
+
{
|
|
16934
|
+
"name": "name",
|
|
16935
|
+
"type": {
|
|
16936
|
+
"text": "string"
|
|
16937
|
+
},
|
|
16938
|
+
"default": "''",
|
|
16939
|
+
"description": "The name of the control, submitted as part of form data.",
|
|
16940
|
+
"fieldName": "name"
|
|
16941
|
+
},
|
|
16942
|
+
{
|
|
16943
|
+
"name": "value",
|
|
16944
|
+
"type": {
|
|
16945
|
+
"text": "string"
|
|
16946
|
+
},
|
|
16947
|
+
"default": "''",
|
|
16948
|
+
"description": "The current markdown content.",
|
|
16949
|
+
"fieldName": "value"
|
|
16950
|
+
},
|
|
16951
|
+
{
|
|
16952
|
+
"name": "label",
|
|
16953
|
+
"type": {
|
|
16954
|
+
"text": "string"
|
|
16955
|
+
},
|
|
16956
|
+
"default": "''",
|
|
16957
|
+
"description": "The control's label. If you need HTML, use the `label` slot.",
|
|
16958
|
+
"fieldName": "label"
|
|
16959
|
+
},
|
|
16960
|
+
{
|
|
16961
|
+
"name": "help-text",
|
|
16962
|
+
"type": {
|
|
16963
|
+
"text": "string"
|
|
16964
|
+
},
|
|
16965
|
+
"default": "''",
|
|
16966
|
+
"description": "Help text displayed below the editor. If you need HTML, use the `help-text` slot.",
|
|
16967
|
+
"fieldName": "helpText"
|
|
16968
|
+
},
|
|
16757
16969
|
{
|
|
16758
16970
|
"name": "placeholder",
|
|
16759
16971
|
"type": {
|
|
@@ -16816,11 +17028,163 @@
|
|
|
16816
17028
|
"default": "false",
|
|
16817
17029
|
"description": "Disables the editor.",
|
|
16818
17030
|
"fieldName": "disabled"
|
|
17031
|
+
},
|
|
17032
|
+
{
|
|
17033
|
+
"name": "expanded",
|
|
17034
|
+
"type": {
|
|
17035
|
+
"text": "boolean"
|
|
17036
|
+
},
|
|
17037
|
+
"default": "false",
|
|
17038
|
+
"description": "Whether the editor is currently expanded to cover its containing positioned ancestor.",
|
|
17039
|
+
"fieldName": "expanded"
|
|
17040
|
+
},
|
|
17041
|
+
{
|
|
17042
|
+
"name": "basis-px",
|
|
17043
|
+
"type": {
|
|
17044
|
+
"text": "number"
|
|
17045
|
+
},
|
|
17046
|
+
"fieldName": "basis",
|
|
17047
|
+
"inheritedFrom": {
|
|
17048
|
+
"name": "ZnPanel",
|
|
17049
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17050
|
+
}
|
|
17051
|
+
},
|
|
17052
|
+
{
|
|
17053
|
+
"name": "caption",
|
|
17054
|
+
"type": {
|
|
17055
|
+
"text": "string"
|
|
17056
|
+
},
|
|
17057
|
+
"fieldName": "caption",
|
|
17058
|
+
"inheritedFrom": {
|
|
17059
|
+
"name": "ZnPanel",
|
|
17060
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17061
|
+
}
|
|
17062
|
+
},
|
|
17063
|
+
{
|
|
17064
|
+
"name": "icon",
|
|
17065
|
+
"type": {
|
|
17066
|
+
"text": "string"
|
|
17067
|
+
},
|
|
17068
|
+
"fieldName": "icon",
|
|
17069
|
+
"inheritedFrom": {
|
|
17070
|
+
"name": "ZnPanel",
|
|
17071
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17072
|
+
}
|
|
17073
|
+
},
|
|
17074
|
+
{
|
|
17075
|
+
"name": "description",
|
|
17076
|
+
"type": {
|
|
17077
|
+
"text": "string"
|
|
17078
|
+
},
|
|
17079
|
+
"fieldName": "description",
|
|
17080
|
+
"inheritedFrom": {
|
|
17081
|
+
"name": "ZnPanel",
|
|
17082
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17083
|
+
}
|
|
17084
|
+
},
|
|
17085
|
+
{
|
|
17086
|
+
"name": "tabbed",
|
|
17087
|
+
"type": {
|
|
17088
|
+
"text": "boolean"
|
|
17089
|
+
},
|
|
17090
|
+
"fieldName": "tabbed",
|
|
17091
|
+
"inheritedFrom": {
|
|
17092
|
+
"name": "ZnPanel",
|
|
17093
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17094
|
+
}
|
|
17095
|
+
},
|
|
17096
|
+
{
|
|
17097
|
+
"name": "header-underline",
|
|
17098
|
+
"type": {
|
|
17099
|
+
"text": "boolean"
|
|
17100
|
+
},
|
|
17101
|
+
"fieldName": "underlineHeader",
|
|
17102
|
+
"inheritedFrom": {
|
|
17103
|
+
"name": "ZnPanel",
|
|
17104
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17105
|
+
}
|
|
17106
|
+
},
|
|
17107
|
+
{
|
|
17108
|
+
"name": "cosmic",
|
|
17109
|
+
"type": {
|
|
17110
|
+
"text": "boolean"
|
|
17111
|
+
},
|
|
17112
|
+
"fieldName": "cosmic",
|
|
17113
|
+
"inheritedFrom": {
|
|
17114
|
+
"name": "ZnPanel",
|
|
17115
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17116
|
+
}
|
|
17117
|
+
},
|
|
17118
|
+
{
|
|
17119
|
+
"name": "flush",
|
|
17120
|
+
"type": {
|
|
17121
|
+
"text": "boolean"
|
|
17122
|
+
},
|
|
17123
|
+
"fieldName": "flush",
|
|
17124
|
+
"inheritedFrom": {
|
|
17125
|
+
"name": "ZnPanel",
|
|
17126
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17127
|
+
}
|
|
17128
|
+
},
|
|
17129
|
+
{
|
|
17130
|
+
"name": "flush-x",
|
|
17131
|
+
"type": {
|
|
17132
|
+
"text": "boolean"
|
|
17133
|
+
},
|
|
17134
|
+
"fieldName": "flushX",
|
|
17135
|
+
"inheritedFrom": {
|
|
17136
|
+
"name": "ZnPanel",
|
|
17137
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17138
|
+
}
|
|
17139
|
+
},
|
|
17140
|
+
{
|
|
17141
|
+
"name": "flush-y",
|
|
17142
|
+
"type": {
|
|
17143
|
+
"text": "boolean"
|
|
17144
|
+
},
|
|
17145
|
+
"fieldName": "flushY",
|
|
17146
|
+
"inheritedFrom": {
|
|
17147
|
+
"name": "ZnPanel",
|
|
17148
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17149
|
+
}
|
|
17150
|
+
},
|
|
17151
|
+
{
|
|
17152
|
+
"name": "flush-footer",
|
|
17153
|
+
"type": {
|
|
17154
|
+
"text": "boolean"
|
|
17155
|
+
},
|
|
17156
|
+
"fieldName": "flushFooter",
|
|
17157
|
+
"inheritedFrom": {
|
|
17158
|
+
"name": "ZnPanel",
|
|
17159
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17160
|
+
}
|
|
17161
|
+
},
|
|
17162
|
+
{
|
|
17163
|
+
"name": "transparent",
|
|
17164
|
+
"type": {
|
|
17165
|
+
"text": "boolean"
|
|
17166
|
+
},
|
|
17167
|
+
"fieldName": "transparent",
|
|
17168
|
+
"inheritedFrom": {
|
|
17169
|
+
"name": "ZnPanel",
|
|
17170
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17171
|
+
}
|
|
17172
|
+
},
|
|
17173
|
+
{
|
|
17174
|
+
"name": "shadow",
|
|
17175
|
+
"type": {
|
|
17176
|
+
"text": "boolean"
|
|
17177
|
+
},
|
|
17178
|
+
"fieldName": "shadow",
|
|
17179
|
+
"inheritedFrom": {
|
|
17180
|
+
"name": "ZnPanel",
|
|
17181
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17182
|
+
}
|
|
16819
17183
|
}
|
|
16820
17184
|
],
|
|
16821
17185
|
"superclass": {
|
|
16822
|
-
"name": "
|
|
16823
|
-
"module": "/src/
|
|
17186
|
+
"name": "ZnPanel",
|
|
17187
|
+
"module": "/src/components/panel/panel.component"
|
|
16824
17188
|
},
|
|
16825
17189
|
"summary": "A markdown editor with live preview, split view, and a fullscreen mode.",
|
|
16826
17190
|
"tagNameWithoutPrefix": "markdown-editor",
|
|
@@ -16834,6 +17198,16 @@
|
|
|
16834
17198
|
"zn-textarea",
|
|
16835
17199
|
"zn-button-group",
|
|
16836
17200
|
"zn-icon"
|
|
17201
|
+
],
|
|
17202
|
+
"cssProperties": [
|
|
17203
|
+
{
|
|
17204
|
+
"description": "The flex-basis of the panel. Can be set using the basis-px attribute.",
|
|
17205
|
+
"name": "--zn-panel-basis",
|
|
17206
|
+
"inheritedFrom": {
|
|
17207
|
+
"name": "ZnPanel",
|
|
17208
|
+
"module": "src/components/panel/panel.component.ts"
|
|
17209
|
+
}
|
|
17210
|
+
}
|
|
16837
17211
|
]
|
|
16838
17212
|
}
|
|
16839
17213
|
],
|
|
@@ -31517,6 +31891,51 @@
|
|
|
31517
31891
|
"default": "['en']",
|
|
31518
31892
|
"description": "Tracks all language codes that have been activated across children."
|
|
31519
31893
|
},
|
|
31894
|
+
{
|
|
31895
|
+
"kind": "field",
|
|
31896
|
+
"name": "_overflowIndex",
|
|
31897
|
+
"type": {
|
|
31898
|
+
"text": "number"
|
|
31899
|
+
},
|
|
31900
|
+
"privacy": "private",
|
|
31901
|
+
"default": "-1"
|
|
31902
|
+
},
|
|
31903
|
+
{
|
|
31904
|
+
"kind": "field",
|
|
31905
|
+
"name": "_resizeObserver",
|
|
31906
|
+
"type": {
|
|
31907
|
+
"text": "ResizeObserver | undefined"
|
|
31908
|
+
},
|
|
31909
|
+
"privacy": "private"
|
|
31910
|
+
},
|
|
31911
|
+
{
|
|
31912
|
+
"kind": "field",
|
|
31913
|
+
"name": "_lastObservedWidth",
|
|
31914
|
+
"type": {
|
|
31915
|
+
"text": "number"
|
|
31916
|
+
},
|
|
31917
|
+
"privacy": "private",
|
|
31918
|
+
"default": "0"
|
|
31919
|
+
},
|
|
31920
|
+
{
|
|
31921
|
+
"kind": "field",
|
|
31922
|
+
"name": "_measureRafId",
|
|
31923
|
+
"type": {
|
|
31924
|
+
"text": "number"
|
|
31925
|
+
},
|
|
31926
|
+
"privacy": "private",
|
|
31927
|
+
"default": "0"
|
|
31928
|
+
},
|
|
31929
|
+
{
|
|
31930
|
+
"kind": "method",
|
|
31931
|
+
"name": "_scheduleLangOverflow",
|
|
31932
|
+
"privacy": "private"
|
|
31933
|
+
},
|
|
31934
|
+
{
|
|
31935
|
+
"kind": "method",
|
|
31936
|
+
"name": "_computeLangOverflow",
|
|
31937
|
+
"privacy": "private"
|
|
31938
|
+
},
|
|
31520
31939
|
{
|
|
31521
31940
|
"kind": "method",
|
|
31522
31941
|
"name": "getAllTranslations",
|
|
@@ -31561,6 +31980,11 @@
|
|
|
31561
31980
|
"name": "handleLanguageAdd",
|
|
31562
31981
|
"privacy": "private"
|
|
31563
31982
|
},
|
|
31983
|
+
{
|
|
31984
|
+
"kind": "field",
|
|
31985
|
+
"name": "handleOverflowSelect",
|
|
31986
|
+
"privacy": "private"
|
|
31987
|
+
},
|
|
31564
31988
|
{
|
|
31565
31989
|
"kind": "field",
|
|
31566
31990
|
"name": "hasSlotController",
|
|
@@ -32037,6 +32461,14 @@
|
|
|
32037
32461
|
"default": "'text'",
|
|
32038
32462
|
"attribute": "input-type"
|
|
32039
32463
|
},
|
|
32464
|
+
{
|
|
32465
|
+
"kind": "field",
|
|
32466
|
+
"name": "textareaRows",
|
|
32467
|
+
"type": {
|
|
32468
|
+
"text": "number | undefined"
|
|
32469
|
+
},
|
|
32470
|
+
"attribute": "textarea-rows"
|
|
32471
|
+
},
|
|
32040
32472
|
{
|
|
32041
32473
|
"kind": "field",
|
|
32042
32474
|
"name": "grouped",
|
|
@@ -32075,6 +32507,41 @@
|
|
|
32075
32507
|
"privacy": "private",
|
|
32076
32508
|
"default": "'en'"
|
|
32077
32509
|
},
|
|
32510
|
+
{
|
|
32511
|
+
"kind": "field",
|
|
32512
|
+
"name": "_overflowIndex",
|
|
32513
|
+
"type": {
|
|
32514
|
+
"text": "number"
|
|
32515
|
+
},
|
|
32516
|
+
"privacy": "private",
|
|
32517
|
+
"default": "-1"
|
|
32518
|
+
},
|
|
32519
|
+
{
|
|
32520
|
+
"kind": "field",
|
|
32521
|
+
"name": "_resizeObserver",
|
|
32522
|
+
"type": {
|
|
32523
|
+
"text": "ResizeObserver | undefined"
|
|
32524
|
+
},
|
|
32525
|
+
"privacy": "private"
|
|
32526
|
+
},
|
|
32527
|
+
{
|
|
32528
|
+
"kind": "field",
|
|
32529
|
+
"name": "_lastObservedWidth",
|
|
32530
|
+
"type": {
|
|
32531
|
+
"text": "number"
|
|
32532
|
+
},
|
|
32533
|
+
"privacy": "private",
|
|
32534
|
+
"default": "0"
|
|
32535
|
+
},
|
|
32536
|
+
{
|
|
32537
|
+
"kind": "field",
|
|
32538
|
+
"name": "_measureRafId",
|
|
32539
|
+
"type": {
|
|
32540
|
+
"text": "number"
|
|
32541
|
+
},
|
|
32542
|
+
"privacy": "private",
|
|
32543
|
+
"default": "0"
|
|
32544
|
+
},
|
|
32078
32545
|
{
|
|
32079
32546
|
"kind": "field",
|
|
32080
32547
|
"name": "validity",
|
|
@@ -32154,11 +32621,26 @@
|
|
|
32154
32621
|
},
|
|
32155
32622
|
"description": "Returns all language codes that have values."
|
|
32156
32623
|
},
|
|
32624
|
+
{
|
|
32625
|
+
"kind": "method",
|
|
32626
|
+
"name": "_scheduleLangOverflow",
|
|
32627
|
+
"privacy": "private"
|
|
32628
|
+
},
|
|
32629
|
+
{
|
|
32630
|
+
"kind": "method",
|
|
32631
|
+
"name": "_computeLangOverflow",
|
|
32632
|
+
"privacy": "private"
|
|
32633
|
+
},
|
|
32157
32634
|
{
|
|
32158
32635
|
"kind": "field",
|
|
32159
32636
|
"name": "handleLanguageAdd",
|
|
32160
32637
|
"privacy": "private"
|
|
32161
32638
|
},
|
|
32639
|
+
{
|
|
32640
|
+
"kind": "field",
|
|
32641
|
+
"name": "handleOverflowSelect",
|
|
32642
|
+
"privacy": "private"
|
|
32643
|
+
},
|
|
32162
32644
|
{
|
|
32163
32645
|
"kind": "field",
|
|
32164
32646
|
"name": "switchLanguage",
|
|
@@ -32260,6 +32742,13 @@
|
|
|
32260
32742
|
"default": "'text'",
|
|
32261
32743
|
"fieldName": "inputType"
|
|
32262
32744
|
},
|
|
32745
|
+
{
|
|
32746
|
+
"name": "textarea-rows",
|
|
32747
|
+
"type": {
|
|
32748
|
+
"text": "number | undefined"
|
|
32749
|
+
},
|
|
32750
|
+
"fieldName": "textareaRows"
|
|
32751
|
+
},
|
|
32263
32752
|
{
|
|
32264
32753
|
"name": "grouped",
|
|
32265
32754
|
"type": {
|
|
@@ -32562,7 +33051,7 @@
|
|
|
32562
33051
|
"package": {
|
|
32563
33052
|
"name": "@kubex/zinc",
|
|
32564
33053
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
32565
|
-
"version": "1.0.
|
|
33054
|
+
"version": "1.0.106",
|
|
32566
33055
|
"author": "",
|
|
32567
33056
|
"license": "MIT"
|
|
32568
33057
|
}
|