@kubex/zinc 1.0.9 → 1.0.11
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 +282 -83
- package/dist/vscode.html-custom-data.json +25 -13
- package/dist/web-types.json +84 -27
- package/dist/zn.d.ts +40 -2
- package/dist/zn.min.js +260 -243
- package/docs/pages/components/dropdown.md +6 -1
- package/docs/pages/components/table.md +1 -1
- package/package.json +1 -1
- package/src/components/button-menu/button-menu.component.ts +1 -0
- package/src/components/editor/editor.component.ts +110 -55
- package/src/components/editor/modules/context-menu/context-menu-component.ts +1 -0
- package/src/components/editor/modules/context-menu/context-menu.scss +1 -1
- package/src/components/editor/modules/context-menu/context-menu.ts +58 -26
- package/src/components/editor/modules/context-menu/quick-action/quick-action.component.ts +1 -0
- package/src/components/editor/modules/toolbar/toolbar.component.ts +61 -33
- package/src/components/editor/modules/toolbar/toolbar.ts +19 -4
- package/src/components/header/header.scss +1 -0
- package/src/components/menu/menu.component.ts +2 -1
- package/src/components/menu-item/menu-item.component.ts +4 -0
- package/src/components/note/note.component.ts +2 -25
- package/src/components/note/note.scss +0 -7
- package/src/components/order-table/order-table.scss +16 -10
- package/src/components/panel/panel.component.ts +4 -2
- package/src/components/panel/panel.scss +4 -0
- package/src/components/popup/popup.component.ts +11 -21
- package/src/components/settings-container/settings-container.component.ts +21 -15
- package/src/components/settings-container/settings-container.scss +5 -4
- package/src/components/tooltip/tooltip.component.ts +7 -7
- package/src/zinc.ts +7 -1
|
@@ -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/bulk-actions/bulk-actions.js",
|
|
@@ -8049,6 +8049,96 @@
|
|
|
8049
8049
|
},
|
|
8050
8050
|
"attribute": "attachment-url"
|
|
8051
8051
|
},
|
|
8052
|
+
{
|
|
8053
|
+
"kind": "field",
|
|
8054
|
+
"name": "codeBlocksEnabled",
|
|
8055
|
+
"type": {
|
|
8056
|
+
"text": "boolean"
|
|
8057
|
+
},
|
|
8058
|
+
"default": "false",
|
|
8059
|
+
"attribute": "code-blocks"
|
|
8060
|
+
},
|
|
8061
|
+
{
|
|
8062
|
+
"kind": "field",
|
|
8063
|
+
"name": "dividersEnabled",
|
|
8064
|
+
"type": {
|
|
8065
|
+
"text": "boolean"
|
|
8066
|
+
},
|
|
8067
|
+
"default": "false",
|
|
8068
|
+
"attribute": "dividers"
|
|
8069
|
+
},
|
|
8070
|
+
{
|
|
8071
|
+
"kind": "field",
|
|
8072
|
+
"name": "linksEnabled",
|
|
8073
|
+
"type": {
|
|
8074
|
+
"text": "boolean"
|
|
8075
|
+
},
|
|
8076
|
+
"default": "false",
|
|
8077
|
+
"attribute": "links"
|
|
8078
|
+
},
|
|
8079
|
+
{
|
|
8080
|
+
"kind": "field",
|
|
8081
|
+
"name": "attachmentsEnabled",
|
|
8082
|
+
"type": {
|
|
8083
|
+
"text": "boolean"
|
|
8084
|
+
},
|
|
8085
|
+
"default": "false",
|
|
8086
|
+
"attribute": "attachments"
|
|
8087
|
+
},
|
|
8088
|
+
{
|
|
8089
|
+
"kind": "field",
|
|
8090
|
+
"name": "imagesEnabled",
|
|
8091
|
+
"type": {
|
|
8092
|
+
"text": "boolean"
|
|
8093
|
+
},
|
|
8094
|
+
"default": "false",
|
|
8095
|
+
"attribute": "images"
|
|
8096
|
+
},
|
|
8097
|
+
{
|
|
8098
|
+
"kind": "field",
|
|
8099
|
+
"name": "videosEnabled",
|
|
8100
|
+
"type": {
|
|
8101
|
+
"text": "boolean"
|
|
8102
|
+
},
|
|
8103
|
+
"default": "false",
|
|
8104
|
+
"attribute": "videos"
|
|
8105
|
+
},
|
|
8106
|
+
{
|
|
8107
|
+
"kind": "field",
|
|
8108
|
+
"name": "datesEnabled",
|
|
8109
|
+
"type": {
|
|
8110
|
+
"text": "boolean"
|
|
8111
|
+
},
|
|
8112
|
+
"default": "false",
|
|
8113
|
+
"attribute": "dates"
|
|
8114
|
+
},
|
|
8115
|
+
{
|
|
8116
|
+
"kind": "field",
|
|
8117
|
+
"name": "emojisEnabled",
|
|
8118
|
+
"type": {
|
|
8119
|
+
"text": "boolean"
|
|
8120
|
+
},
|
|
8121
|
+
"default": "false",
|
|
8122
|
+
"attribute": "emojis"
|
|
8123
|
+
},
|
|
8124
|
+
{
|
|
8125
|
+
"kind": "field",
|
|
8126
|
+
"name": "codeEnabled",
|
|
8127
|
+
"type": {
|
|
8128
|
+
"text": "boolean"
|
|
8129
|
+
},
|
|
8130
|
+
"default": "false",
|
|
8131
|
+
"attribute": "code"
|
|
8132
|
+
},
|
|
8133
|
+
{
|
|
8134
|
+
"kind": "field",
|
|
8135
|
+
"name": "aiEnabled",
|
|
8136
|
+
"type": {
|
|
8137
|
+
"text": "boolean"
|
|
8138
|
+
},
|
|
8139
|
+
"default": "false",
|
|
8140
|
+
"attribute": "ai"
|
|
8141
|
+
},
|
|
8052
8142
|
{
|
|
8053
8143
|
"kind": "field",
|
|
8054
8144
|
"name": "aiPath",
|
|
@@ -8236,6 +8326,86 @@
|
|
|
8236
8326
|
},
|
|
8237
8327
|
"fieldName": "uploadAttachmentUrl"
|
|
8238
8328
|
},
|
|
8329
|
+
{
|
|
8330
|
+
"name": "code-blocks",
|
|
8331
|
+
"type": {
|
|
8332
|
+
"text": "boolean"
|
|
8333
|
+
},
|
|
8334
|
+
"default": "false",
|
|
8335
|
+
"fieldName": "codeBlocksEnabled"
|
|
8336
|
+
},
|
|
8337
|
+
{
|
|
8338
|
+
"name": "dividers",
|
|
8339
|
+
"type": {
|
|
8340
|
+
"text": "boolean"
|
|
8341
|
+
},
|
|
8342
|
+
"default": "false",
|
|
8343
|
+
"fieldName": "dividersEnabled"
|
|
8344
|
+
},
|
|
8345
|
+
{
|
|
8346
|
+
"name": "links",
|
|
8347
|
+
"type": {
|
|
8348
|
+
"text": "boolean"
|
|
8349
|
+
},
|
|
8350
|
+
"default": "false",
|
|
8351
|
+
"fieldName": "linksEnabled"
|
|
8352
|
+
},
|
|
8353
|
+
{
|
|
8354
|
+
"name": "attachments",
|
|
8355
|
+
"type": {
|
|
8356
|
+
"text": "boolean"
|
|
8357
|
+
},
|
|
8358
|
+
"default": "false",
|
|
8359
|
+
"fieldName": "attachmentsEnabled"
|
|
8360
|
+
},
|
|
8361
|
+
{
|
|
8362
|
+
"name": "images",
|
|
8363
|
+
"type": {
|
|
8364
|
+
"text": "boolean"
|
|
8365
|
+
},
|
|
8366
|
+
"default": "false",
|
|
8367
|
+
"fieldName": "imagesEnabled"
|
|
8368
|
+
},
|
|
8369
|
+
{
|
|
8370
|
+
"name": "videos",
|
|
8371
|
+
"type": {
|
|
8372
|
+
"text": "boolean"
|
|
8373
|
+
},
|
|
8374
|
+
"default": "false",
|
|
8375
|
+
"fieldName": "videosEnabled"
|
|
8376
|
+
},
|
|
8377
|
+
{
|
|
8378
|
+
"name": "dates",
|
|
8379
|
+
"type": {
|
|
8380
|
+
"text": "boolean"
|
|
8381
|
+
},
|
|
8382
|
+
"default": "false",
|
|
8383
|
+
"fieldName": "datesEnabled"
|
|
8384
|
+
},
|
|
8385
|
+
{
|
|
8386
|
+
"name": "emojis",
|
|
8387
|
+
"type": {
|
|
8388
|
+
"text": "boolean"
|
|
8389
|
+
},
|
|
8390
|
+
"default": "false",
|
|
8391
|
+
"fieldName": "emojisEnabled"
|
|
8392
|
+
},
|
|
8393
|
+
{
|
|
8394
|
+
"name": "code",
|
|
8395
|
+
"type": {
|
|
8396
|
+
"text": "boolean"
|
|
8397
|
+
},
|
|
8398
|
+
"default": "false",
|
|
8399
|
+
"fieldName": "codeEnabled"
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"name": "ai",
|
|
8403
|
+
"type": {
|
|
8404
|
+
"text": "boolean"
|
|
8405
|
+
},
|
|
8406
|
+
"default": "false",
|
|
8407
|
+
"fieldName": "aiEnabled"
|
|
8408
|
+
},
|
|
8239
8409
|
{
|
|
8240
8410
|
"name": "ai-path",
|
|
8241
8411
|
"type": {
|
|
@@ -13142,6 +13312,16 @@
|
|
|
13142
13312
|
},
|
|
13143
13313
|
"attribute": "gaid"
|
|
13144
13314
|
},
|
|
13315
|
+
{
|
|
13316
|
+
"kind": "field",
|
|
13317
|
+
"name": "confirm",
|
|
13318
|
+
"type": {
|
|
13319
|
+
"text": "boolean"
|
|
13320
|
+
},
|
|
13321
|
+
"default": "false",
|
|
13322
|
+
"attribute": "confirm",
|
|
13323
|
+
"reflects": true
|
|
13324
|
+
},
|
|
13145
13325
|
{
|
|
13146
13326
|
"kind": "field",
|
|
13147
13327
|
"name": "localize",
|
|
@@ -13316,6 +13496,14 @@
|
|
|
13316
13496
|
"text": "string"
|
|
13317
13497
|
},
|
|
13318
13498
|
"fieldName": "gaid"
|
|
13499
|
+
},
|
|
13500
|
+
{
|
|
13501
|
+
"name": "confirm",
|
|
13502
|
+
"type": {
|
|
13503
|
+
"text": "boolean"
|
|
13504
|
+
},
|
|
13505
|
+
"default": "false",
|
|
13506
|
+
"fieldName": "confirm"
|
|
13319
13507
|
}
|
|
13320
13508
|
],
|
|
13321
13509
|
"superclass": {
|
|
@@ -13823,15 +14011,6 @@
|
|
|
13823
14011
|
"privacy": "private",
|
|
13824
14012
|
"default": "false"
|
|
13825
14013
|
},
|
|
13826
|
-
{
|
|
13827
|
-
"kind": "field",
|
|
13828
|
-
"name": "_isOverflowing",
|
|
13829
|
-
"type": {
|
|
13830
|
-
"text": "boolean"
|
|
13831
|
-
},
|
|
13832
|
-
"privacy": "private",
|
|
13833
|
-
"default": "false"
|
|
13834
|
-
},
|
|
13835
14014
|
{
|
|
13836
14015
|
"kind": "field",
|
|
13837
14016
|
"name": "_toggleExpand",
|
|
@@ -15733,6 +15912,14 @@
|
|
|
15733
15912
|
"text": "boolean"
|
|
15734
15913
|
},
|
|
15735
15914
|
"attribute": "transparent"
|
|
15915
|
+
},
|
|
15916
|
+
{
|
|
15917
|
+
"kind": "field",
|
|
15918
|
+
"name": "shadow",
|
|
15919
|
+
"type": {
|
|
15920
|
+
"text": "boolean"
|
|
15921
|
+
},
|
|
15922
|
+
"attribute": "shadow"
|
|
15736
15923
|
}
|
|
15737
15924
|
],
|
|
15738
15925
|
"attributes": [
|
|
@@ -15819,6 +16006,13 @@
|
|
|
15819
16006
|
"text": "boolean"
|
|
15820
16007
|
},
|
|
15821
16008
|
"fieldName": "transparent"
|
|
16009
|
+
},
|
|
16010
|
+
{
|
|
16011
|
+
"name": "shadow",
|
|
16012
|
+
"type": {
|
|
16013
|
+
"text": "boolean"
|
|
16014
|
+
},
|
|
16015
|
+
"fieldName": "shadow"
|
|
15822
16016
|
}
|
|
15823
16017
|
],
|
|
15824
16018
|
"superclass": {
|
|
@@ -20046,6 +20240,11 @@
|
|
|
20046
20240
|
}
|
|
20047
20241
|
}
|
|
20048
20242
|
]
|
|
20243
|
+
},
|
|
20244
|
+
{
|
|
20245
|
+
"kind": "method",
|
|
20246
|
+
"name": "getDropdownContent",
|
|
20247
|
+
"privacy": "private"
|
|
20049
20248
|
}
|
|
20050
20249
|
],
|
|
20051
20250
|
"events": [
|
|
@@ -25757,7 +25956,7 @@
|
|
|
25757
25956
|
"package": {
|
|
25758
25957
|
"name": "@kubex/zinc",
|
|
25759
25958
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
25760
|
-
"version": "1.0.
|
|
25959
|
+
"version": "1.0.11",
|
|
25761
25960
|
"author": "",
|
|
25762
25961
|
"license": "MIT"
|
|
25763
25962
|
}
|
|
@@ -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.",
|
|
@@ -48,17 +59,6 @@
|
|
|
48
59
|
}
|
|
49
60
|
]
|
|
50
61
|
},
|
|
51
|
-
{
|
|
52
|
-
"name": "zn-action-bar",
|
|
53
|
-
"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.",
|
|
54
|
-
"attributes": [],
|
|
55
|
-
"references": [
|
|
56
|
-
{
|
|
57
|
-
"name": "Documentation",
|
|
58
|
-
"url": "https://zinc.style/components/action-bar"
|
|
59
|
-
}
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
62
|
{
|
|
63
63
|
"name": "zn-bulk-actions",
|
|
64
64
|
"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.",
|
|
@@ -997,6 +997,16 @@
|
|
|
997
997
|
"values": [{ "name": "ticket" }, { "name": "chat" }]
|
|
998
998
|
},
|
|
999
999
|
{ "name": "attachment-url", "values": [] },
|
|
1000
|
+
{ "name": "code-blocks", "values": [] },
|
|
1001
|
+
{ "name": "dividers", "values": [] },
|
|
1002
|
+
{ "name": "links", "values": [] },
|
|
1003
|
+
{ "name": "attachments", "values": [] },
|
|
1004
|
+
{ "name": "images", "values": [] },
|
|
1005
|
+
{ "name": "videos", "values": [] },
|
|
1006
|
+
{ "name": "dates", "values": [] },
|
|
1007
|
+
{ "name": "emojis", "values": [] },
|
|
1008
|
+
{ "name": "code", "values": [] },
|
|
1009
|
+
{ "name": "ai", "values": [] },
|
|
1000
1010
|
{ "name": "ai-path", "values": [] }
|
|
1001
1011
|
],
|
|
1002
1012
|
"references": [
|
|
@@ -1642,7 +1652,8 @@
|
|
|
1642
1652
|
"values": [{ "name": "modal" }, { "name": "slide" }]
|
|
1643
1653
|
},
|
|
1644
1654
|
{ "name": "rel", "values": [] },
|
|
1645
|
-
{ "name": "gaid", "values": [] }
|
|
1655
|
+
{ "name": "gaid", "values": [] },
|
|
1656
|
+
{ "name": "confirm", "values": [] }
|
|
1646
1657
|
],
|
|
1647
1658
|
"references": [
|
|
1648
1659
|
{
|
|
@@ -1794,7 +1805,8 @@
|
|
|
1794
1805
|
{ "name": "flush-x", "values": [] },
|
|
1795
1806
|
{ "name": "flush-y", "values": [] },
|
|
1796
1807
|
{ "name": "flush-footer", "values": [] },
|
|
1797
|
-
{ "name": "transparent", "values": [] }
|
|
1808
|
+
{ "name": "transparent", "values": [] },
|
|
1809
|
+
{ "name": "shadow", "values": [] }
|
|
1798
1810
|
],
|
|
1799
1811
|
"references": [
|
|
1800
1812
|
{
|
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@kubex/zinc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,6 +15,28 @@
|
|
|
15
15
|
"events": [],
|
|
16
16
|
"js": { "properties": [], "events": [] }
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
"name": "zn-action-bar",
|
|
20
|
+
"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.",
|
|
21
|
+
"doc-url": "",
|
|
22
|
+
"attributes": [],
|
|
23
|
+
"slots": [
|
|
24
|
+
{ "name": "", "description": "The default slot." },
|
|
25
|
+
{ "name": "example", "description": "An example slot." }
|
|
26
|
+
],
|
|
27
|
+
"events": [
|
|
28
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
29
|
+
],
|
|
30
|
+
"js": {
|
|
31
|
+
"properties": [],
|
|
32
|
+
"events": [
|
|
33
|
+
{
|
|
34
|
+
"name": "zn-event-name",
|
|
35
|
+
"description": "Emitted as an example."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
18
40
|
{
|
|
19
41
|
"name": "zn-alert",
|
|
20
42
|
"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.",
|
|
@@ -70,28 +92,6 @@
|
|
|
70
92
|
]
|
|
71
93
|
}
|
|
72
94
|
},
|
|
73
|
-
{
|
|
74
|
-
"name": "zn-action-bar",
|
|
75
|
-
"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.",
|
|
76
|
-
"doc-url": "",
|
|
77
|
-
"attributes": [],
|
|
78
|
-
"slots": [
|
|
79
|
-
{ "name": "", "description": "The default slot." },
|
|
80
|
-
{ "name": "example", "description": "An example slot." }
|
|
81
|
-
],
|
|
82
|
-
"events": [
|
|
83
|
-
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
84
|
-
],
|
|
85
|
-
"js": {
|
|
86
|
-
"properties": [],
|
|
87
|
-
"events": [
|
|
88
|
-
{
|
|
89
|
-
"name": "zn-event-name",
|
|
90
|
-
"description": "Emitted as an example."
|
|
91
|
-
}
|
|
92
|
-
]
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
95
|
{
|
|
96
96
|
"name": "zn-bulk-actions",
|
|
97
97
|
"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.",
|
|
@@ -2181,6 +2181,46 @@
|
|
|
2181
2181
|
"value": { "type": "'ticket' | 'chat'", "default": "'chat'" }
|
|
2182
2182
|
},
|
|
2183
2183
|
{ "name": "attachment-url", "value": { "type": "string" } },
|
|
2184
|
+
{
|
|
2185
|
+
"name": "code-blocks",
|
|
2186
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"name": "dividers",
|
|
2190
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"name": "links",
|
|
2194
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"name": "attachments",
|
|
2198
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"name": "images",
|
|
2202
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"name": "videos",
|
|
2206
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"name": "dates",
|
|
2210
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"name": "emojis",
|
|
2214
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"name": "code",
|
|
2218
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"name": "ai",
|
|
2222
|
+
"value": { "type": "boolean", "default": "false" }
|
|
2223
|
+
},
|
|
2184
2224
|
{
|
|
2185
2225
|
"name": "ai-path",
|
|
2186
2226
|
"value": { "type": "string", "default": "''" }
|
|
@@ -2200,6 +2240,16 @@
|
|
|
2200
2240
|
{ "name": "value", "type": "string" },
|
|
2201
2241
|
{ "name": "interactionType", "type": "'ticket' | 'chat'" },
|
|
2202
2242
|
{ "name": "uploadAttachmentUrl", "type": "string" },
|
|
2243
|
+
{ "name": "codeBlocksEnabled", "type": "boolean" },
|
|
2244
|
+
{ "name": "dividersEnabled", "type": "boolean" },
|
|
2245
|
+
{ "name": "linksEnabled", "type": "boolean" },
|
|
2246
|
+
{ "name": "attachmentsEnabled", "type": "boolean" },
|
|
2247
|
+
{ "name": "imagesEnabled", "type": "boolean" },
|
|
2248
|
+
{ "name": "videosEnabled", "type": "boolean" },
|
|
2249
|
+
{ "name": "datesEnabled", "type": "boolean" },
|
|
2250
|
+
{ "name": "emojisEnabled", "type": "boolean" },
|
|
2251
|
+
{ "name": "codeEnabled", "type": "boolean" },
|
|
2252
|
+
{ "name": "aiEnabled", "type": "boolean" },
|
|
2203
2253
|
{ "name": "aiPath", "type": "string" },
|
|
2204
2254
|
{ "name": "validity", "type": "ValidityState" },
|
|
2205
2255
|
{ "name": "validationMessage", "type": "string" }
|
|
@@ -3629,7 +3679,11 @@
|
|
|
3629
3679
|
"name": "rel",
|
|
3630
3680
|
"value": { "type": "string", "default": "'noreferrer noopener'" }
|
|
3631
3681
|
},
|
|
3632
|
-
{ "name": "gaid", "value": { "type": "string" } }
|
|
3682
|
+
{ "name": "gaid", "value": { "type": "string" } },
|
|
3683
|
+
{
|
|
3684
|
+
"name": "confirm",
|
|
3685
|
+
"value": { "type": "boolean", "default": "false" }
|
|
3686
|
+
}
|
|
3633
3687
|
],
|
|
3634
3688
|
"slots": [
|
|
3635
3689
|
{ "name": "", "description": "The default slot." },
|
|
@@ -3677,7 +3731,8 @@
|
|
|
3677
3731
|
},
|
|
3678
3732
|
{ "name": "dataTarget", "type": "'modal' | 'slide' | string" },
|
|
3679
3733
|
{ "name": "rel", "type": "string" },
|
|
3680
|
-
{ "name": "gaid", "type": "string" }
|
|
3734
|
+
{ "name": "gaid", "type": "string" },
|
|
3735
|
+
{ "name": "confirm", "type": "boolean" }
|
|
3681
3736
|
],
|
|
3682
3737
|
"events": [
|
|
3683
3738
|
{
|
|
@@ -4018,7 +4073,8 @@
|
|
|
4018
4073
|
{ "name": "flush-x", "value": { "type": "boolean" } },
|
|
4019
4074
|
{ "name": "flush-y", "value": { "type": "boolean" } },
|
|
4020
4075
|
{ "name": "flush-footer", "value": { "type": "boolean" } },
|
|
4021
|
-
{ "name": "transparent", "value": { "type": "boolean" } }
|
|
4076
|
+
{ "name": "transparent", "value": { "type": "boolean" } },
|
|
4077
|
+
{ "name": "shadow", "value": { "type": "boolean" } }
|
|
4022
4078
|
],
|
|
4023
4079
|
"slots": [
|
|
4024
4080
|
{ "name": "", "description": "The default slot." },
|
|
@@ -4039,7 +4095,8 @@
|
|
|
4039
4095
|
{ "name": "flushX", "type": "boolean" },
|
|
4040
4096
|
{ "name": "flushY", "type": "boolean" },
|
|
4041
4097
|
{ "name": "flushFooter", "type": "boolean" },
|
|
4042
|
-
{ "name": "transparent", "type": "boolean" }
|
|
4098
|
+
{ "name": "transparent", "type": "boolean" },
|
|
4099
|
+
{ "name": "shadow", "type": "boolean" }
|
|
4043
4100
|
],
|
|
4044
4101
|
"events": []
|
|
4045
4102
|
}
|