@kubex/zinc 1.1.44 → 1.1.46
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 +157 -81
- package/dist/vscode.html-custom-data.json +13 -13
- package/dist/web-types.json +31 -25
- package/dist/zn.d.ts +17 -4
- package/dist/zn.min.js +107 -94
- package/docs/pages/components/content-block.md +20 -0
- package/package.json +1 -1
- package/src/components/chat-message-attachment/chat-message-attachment.component.ts +6 -6
- package/src/components/content-block/content-block.component.ts +33 -1
- package/src/components/content-block/content-block.scss +35 -9
- package/src/components/data-table/data-table.component.ts +6 -1
- package/src/components/menu/menu.component.ts +14 -9
- package/src/components/menu/menu.scss +8 -3
- package/src/components/navbar/navbar.component.ts +46 -16
- package/src/components/navbar/navbar.scss +2 -2
- package/src/components/navbar/navbar.test.ts +35 -0
|
@@ -47,79 +47,6 @@
|
|
|
47
47
|
}
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
|
-
{
|
|
51
|
-
"kind": "javascript-module",
|
|
52
|
-
"path": "components/action-bar/action-bar.js",
|
|
53
|
-
"declarations": [
|
|
54
|
-
{
|
|
55
|
-
"kind": "class",
|
|
56
|
-
"description": "",
|
|
57
|
-
"name": "ZnActionBar",
|
|
58
|
-
"cssProperties": [
|
|
59
|
-
{
|
|
60
|
-
"description": "An example CSS custom property.",
|
|
61
|
-
"name": "--example"
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"cssParts": [
|
|
65
|
-
{
|
|
66
|
-
"description": "The component's base wrapper.",
|
|
67
|
-
"name": "base"
|
|
68
|
-
}
|
|
69
|
-
],
|
|
70
|
-
"slots": [
|
|
71
|
-
{
|
|
72
|
-
"description": "The default slot.",
|
|
73
|
-
"name": ""
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"description": "An example slot.",
|
|
77
|
-
"name": "example"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"members": [
|
|
81
|
-
{
|
|
82
|
-
"kind": "field",
|
|
83
|
-
"name": "localize",
|
|
84
|
-
"privacy": "private",
|
|
85
|
-
"readonly": true,
|
|
86
|
-
"default": "new LocalizeController(this)"
|
|
87
|
-
}
|
|
88
|
-
],
|
|
89
|
-
"events": [
|
|
90
|
-
{
|
|
91
|
-
"description": "Emitted as an example.",
|
|
92
|
-
"name": "zn-event-name"
|
|
93
|
-
}
|
|
94
|
-
],
|
|
95
|
-
"superclass": {
|
|
96
|
-
"name": "ZincElement",
|
|
97
|
-
"module": "/src/internal/zinc-element"
|
|
98
|
-
},
|
|
99
|
-
"summary": "Short summary of the component's intended use.",
|
|
100
|
-
"tagNameWithoutPrefix": "action-bar",
|
|
101
|
-
"tagName": "zn-action-bar",
|
|
102
|
-
"customElement": true,
|
|
103
|
-
"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 */",
|
|
104
|
-
"documentation": "https://zinc.style/components/action-bar",
|
|
105
|
-
"status": "experimental",
|
|
106
|
-
"since": "1.0",
|
|
107
|
-
"dependencies": [
|
|
108
|
-
"zn-example"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
"exports": [
|
|
113
|
-
{
|
|
114
|
-
"kind": "js",
|
|
115
|
-
"name": "default",
|
|
116
|
-
"declaration": {
|
|
117
|
-
"name": "ZnActionBar",
|
|
118
|
-
"module": "components/action-bar/action-bar.js"
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
]
|
|
122
|
-
},
|
|
123
50
|
{
|
|
124
51
|
"kind": "javascript-module",
|
|
125
52
|
"path": "components/alert/alert.js",
|
|
@@ -296,6 +223,79 @@
|
|
|
296
223
|
}
|
|
297
224
|
]
|
|
298
225
|
},
|
|
226
|
+
{
|
|
227
|
+
"kind": "javascript-module",
|
|
228
|
+
"path": "components/action-bar/action-bar.js",
|
|
229
|
+
"declarations": [
|
|
230
|
+
{
|
|
231
|
+
"kind": "class",
|
|
232
|
+
"description": "",
|
|
233
|
+
"name": "ZnActionBar",
|
|
234
|
+
"cssProperties": [
|
|
235
|
+
{
|
|
236
|
+
"description": "An example CSS custom property.",
|
|
237
|
+
"name": "--example"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"cssParts": [
|
|
241
|
+
{
|
|
242
|
+
"description": "The component's base wrapper.",
|
|
243
|
+
"name": "base"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"slots": [
|
|
247
|
+
{
|
|
248
|
+
"description": "The default slot.",
|
|
249
|
+
"name": ""
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"description": "An example slot.",
|
|
253
|
+
"name": "example"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"members": [
|
|
257
|
+
{
|
|
258
|
+
"kind": "field",
|
|
259
|
+
"name": "localize",
|
|
260
|
+
"privacy": "private",
|
|
261
|
+
"readonly": true,
|
|
262
|
+
"default": "new LocalizeController(this)"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"events": [
|
|
266
|
+
{
|
|
267
|
+
"description": "Emitted as an example.",
|
|
268
|
+
"name": "zn-event-name"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"superclass": {
|
|
272
|
+
"name": "ZincElement",
|
|
273
|
+
"module": "/src/internal/zinc-element"
|
|
274
|
+
},
|
|
275
|
+
"summary": "Short summary of the component's intended use.",
|
|
276
|
+
"tagNameWithoutPrefix": "action-bar",
|
|
277
|
+
"tagName": "zn-action-bar",
|
|
278
|
+
"customElement": true,
|
|
279
|
+
"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 */",
|
|
280
|
+
"documentation": "https://zinc.style/components/action-bar",
|
|
281
|
+
"status": "experimental",
|
|
282
|
+
"since": "1.0",
|
|
283
|
+
"dependencies": [
|
|
284
|
+
"zn-example"
|
|
285
|
+
]
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"exports": [
|
|
289
|
+
{
|
|
290
|
+
"kind": "js",
|
|
291
|
+
"name": "default",
|
|
292
|
+
"declaration": {
|
|
293
|
+
"name": "ZnActionBar",
|
|
294
|
+
"module": "components/action-bar/action-bar.js"
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
299
|
{
|
|
300
300
|
"kind": "javascript-module",
|
|
301
301
|
"path": "components/animated-button/animated-button.js",
|
|
@@ -3999,11 +3999,11 @@
|
|
|
3999
3999
|
"name": "ZincElement",
|
|
4000
4000
|
"module": "/src/internal/zinc-element"
|
|
4001
4001
|
},
|
|
4002
|
-
"summary": "A single file or link attachment for a `zn-chat-message
|
|
4002
|
+
"summary": "A single file or link attachment for a `zn-chat-message` or `zn-content-block`.\nRenders an icon and a label as a link, styled to match the message's attachments row. It is\nintended to be used only inside a `zn-chat-message` or `zn-content-block` and is automatically\nplaced in that component's `attachments` slot.",
|
|
4003
4003
|
"tagNameWithoutPrefix": "chat-message-attachment",
|
|
4004
4004
|
"tagName": "zn-chat-message-attachment",
|
|
4005
4005
|
"customElement": true,
|
|
4006
|
-
"jsDoc": "/**\n * @summary A single file or link attachment for a `zn-chat-message
|
|
4006
|
+
"jsDoc": "/**\n * @summary A single file or link attachment for a `zn-chat-message` or `zn-content-block`.\n * Renders an icon and a label as a link, styled to match the message's attachments row. It is\n * intended to be used only inside a `zn-chat-message` or `zn-content-block` and is automatically\n * placed in that component's `attachments` slot.\n * @documentation https://zinc.style/components/chat-message-attachment\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The attachment label. Falls back to the `name` attribute when empty.\n *\n * @csspart base - The attachment link.\n * @csspart icon - The leading icon.\n * @csspart label - The attachment label.\n */",
|
|
4007
4007
|
"documentation": "https://zinc.style/components/chat-message-attachment",
|
|
4008
4008
|
"status": "experimental",
|
|
4009
4009
|
"since": "1.0",
|
|
@@ -6255,6 +6255,22 @@
|
|
|
6255
6255
|
"kind": "class",
|
|
6256
6256
|
"description": "",
|
|
6257
6257
|
"name": "ContentBlock",
|
|
6258
|
+
"cssParts": [
|
|
6259
|
+
{
|
|
6260
|
+
"description": "The attachments row at the bottom of the content.",
|
|
6261
|
+
"name": "attachments"
|
|
6262
|
+
},
|
|
6263
|
+
{
|
|
6264
|
+
"description": "The attachment count indicator in the header.",
|
|
6265
|
+
"name": "header-attachments"
|
|
6266
|
+
}
|
|
6267
|
+
],
|
|
6268
|
+
"slots": [
|
|
6269
|
+
{
|
|
6270
|
+
"description": "Attachments displayed at the bottom of the content when the block is expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.",
|
|
6271
|
+
"name": "attachments"
|
|
6272
|
+
}
|
|
6273
|
+
],
|
|
6258
6274
|
"members": [
|
|
6259
6275
|
{
|
|
6260
6276
|
"kind": "field",
|
|
@@ -6343,6 +6359,15 @@
|
|
|
6343
6359
|
"readonly": true,
|
|
6344
6360
|
"default": "new HasSlotController(this, 'text', 'html')"
|
|
6345
6361
|
},
|
|
6362
|
+
{
|
|
6363
|
+
"kind": "field",
|
|
6364
|
+
"name": "attachmentCount",
|
|
6365
|
+
"type": {
|
|
6366
|
+
"text": "number"
|
|
6367
|
+
},
|
|
6368
|
+
"privacy": "private",
|
|
6369
|
+
"default": "0"
|
|
6370
|
+
},
|
|
6346
6371
|
{
|
|
6347
6372
|
"kind": "field",
|
|
6348
6373
|
"name": "_textRows",
|
|
@@ -6405,6 +6430,16 @@
|
|
|
6405
6430
|
}
|
|
6406
6431
|
]
|
|
6407
6432
|
},
|
|
6433
|
+
{
|
|
6434
|
+
"kind": "method",
|
|
6435
|
+
"name": "handleAttachmentsSlotChange",
|
|
6436
|
+
"privacy": "private"
|
|
6437
|
+
},
|
|
6438
|
+
{
|
|
6439
|
+
"kind": "method",
|
|
6440
|
+
"name": "syncAttachmentCount",
|
|
6441
|
+
"privacy": "private"
|
|
6442
|
+
},
|
|
6408
6443
|
{
|
|
6409
6444
|
"kind": "method",
|
|
6410
6445
|
"name": "truncateText",
|
|
@@ -6522,7 +6557,7 @@
|
|
|
6522
6557
|
"tagNameWithoutPrefix": "content-block",
|
|
6523
6558
|
"tagName": "zn-content-block",
|
|
6524
6559
|
"customElement": true,
|
|
6525
|
-
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/content-block\n * @status experimental\n * @since 1.0\n */",
|
|
6560
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/content-block\n * @status experimental\n * @since 1.0\n *\n * @slot attachments - Attachments displayed at the bottom of the content when the block is\n * expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.\n *\n * @csspart attachments - The attachments row at the bottom of the content.\n * @csspart header-attachments - The attachment count indicator in the header.\n */",
|
|
6526
6561
|
"documentation": "https://zinc.style/components/content-block",
|
|
6527
6562
|
"status": "experimental",
|
|
6528
6563
|
"since": "1.0"
|
|
@@ -7723,6 +7758,15 @@
|
|
|
7723
7758
|
"privacy": "private",
|
|
7724
7759
|
"default": "true"
|
|
7725
7760
|
},
|
|
7761
|
+
{
|
|
7762
|
+
"kind": "field",
|
|
7763
|
+
"name": "_hasLoadedData",
|
|
7764
|
+
"type": {
|
|
7765
|
+
"text": "boolean"
|
|
7766
|
+
},
|
|
7767
|
+
"privacy": "private",
|
|
7768
|
+
"default": "false"
|
|
7769
|
+
},
|
|
7726
7770
|
{
|
|
7727
7771
|
"kind": "field",
|
|
7728
7772
|
"name": "_lastTableContent",
|
|
@@ -21459,17 +21503,19 @@
|
|
|
21459
21503
|
"kind": "field",
|
|
21460
21504
|
"name": "_preItems",
|
|
21461
21505
|
"type": {
|
|
21462
|
-
"text": "
|
|
21506
|
+
"text": "HTMLElement[]"
|
|
21463
21507
|
},
|
|
21464
|
-
"privacy": "private"
|
|
21508
|
+
"privacy": "private",
|
|
21509
|
+
"default": "[]"
|
|
21465
21510
|
},
|
|
21466
21511
|
{
|
|
21467
21512
|
"kind": "field",
|
|
21468
21513
|
"name": "_postItems",
|
|
21469
21514
|
"type": {
|
|
21470
|
-
"text": "
|
|
21515
|
+
"text": "HTMLElement[]"
|
|
21471
21516
|
},
|
|
21472
|
-
"privacy": "private"
|
|
21517
|
+
"privacy": "private",
|
|
21518
|
+
"default": "[]"
|
|
21473
21519
|
},
|
|
21474
21520
|
{
|
|
21475
21521
|
"kind": "field",
|
|
@@ -21539,6 +21585,13 @@
|
|
|
21539
21585
|
"readonly": true,
|
|
21540
21586
|
"default": "new WeakMap<HTMLElement, HTMLElement>()"
|
|
21541
21587
|
},
|
|
21588
|
+
{
|
|
21589
|
+
"kind": "field",
|
|
21590
|
+
"name": "_lightDomClones",
|
|
21591
|
+
"privacy": "private",
|
|
21592
|
+
"readonly": true,
|
|
21593
|
+
"default": "new WeakMap<HTMLElement, HTMLElement>()"
|
|
21594
|
+
},
|
|
21542
21595
|
{
|
|
21543
21596
|
"kind": "field",
|
|
21544
21597
|
"name": "_navItemsGap",
|
|
@@ -21604,6 +21657,29 @@
|
|
|
21604
21657
|
}
|
|
21605
21658
|
]
|
|
21606
21659
|
},
|
|
21660
|
+
{
|
|
21661
|
+
"kind": "method",
|
|
21662
|
+
"name": "_cloneLightItem",
|
|
21663
|
+
"privacy": "private",
|
|
21664
|
+
"return": {
|
|
21665
|
+
"type": {
|
|
21666
|
+
"text": "HTMLElement"
|
|
21667
|
+
}
|
|
21668
|
+
},
|
|
21669
|
+
"parameters": [
|
|
21670
|
+
{
|
|
21671
|
+
"name": "item",
|
|
21672
|
+
"type": {
|
|
21673
|
+
"text": "HTMLElement"
|
|
21674
|
+
}
|
|
21675
|
+
}
|
|
21676
|
+
]
|
|
21677
|
+
},
|
|
21678
|
+
{
|
|
21679
|
+
"kind": "method",
|
|
21680
|
+
"name": "_syncLightDomItems",
|
|
21681
|
+
"privacy": "private"
|
|
21682
|
+
},
|
|
21607
21683
|
{
|
|
21608
21684
|
"kind": "method",
|
|
21609
21685
|
"name": "addExpandingAction",
|
|
@@ -40200,7 +40276,7 @@
|
|
|
40200
40276
|
"package": {
|
|
40201
40277
|
"name": "@kubex/zinc",
|
|
40202
40278
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
40203
|
-
"version": "1.1.
|
|
40279
|
+
"version": "1.1.46",
|
|
40204
40280
|
"author": "",
|
|
40205
40281
|
"license": "MIT"
|
|
40206
40282
|
}
|
|
@@ -13,17 +13,6 @@
|
|
|
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
|
-
},
|
|
27
16
|
{
|
|
28
17
|
"name": "zn-alert",
|
|
29
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.",
|
|
@@ -63,6 +52,17 @@
|
|
|
63
52
|
}
|
|
64
53
|
]
|
|
65
54
|
},
|
|
55
|
+
{
|
|
56
|
+
"name": "zn-action-bar",
|
|
57
|
+
"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.",
|
|
58
|
+
"attributes": [],
|
|
59
|
+
"references": [
|
|
60
|
+
{
|
|
61
|
+
"name": "Documentation",
|
|
62
|
+
"url": "https://zinc.style/components/action-bar"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
66
|
{
|
|
67
67
|
"name": "zn-animated-button",
|
|
68
68
|
"description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
},
|
|
517
517
|
{
|
|
518
518
|
"name": "zn-chat-message-attachment",
|
|
519
|
-
"description": "A single file or link attachment for a `zn-chat-message
|
|
519
|
+
"description": "A single file or link attachment for a `zn-chat-message` or `zn-content-block`.\nRenders an icon and a label as a link, styled to match the message's attachments row. It is\nintended to be used only inside a `zn-chat-message` or `zn-content-block` and is automatically\nplaced in that component's `attachments` slot.\n---\n\n\n### **Slots:**\n - _default_ - The attachment label. Falls back to the `name` attribute when empty.\n\n### **CSS Parts:**\n - **base** - The attachment link.\n- **icon** - The leading icon.\n- **label** - The attachment label.",
|
|
520
520
|
"attributes": [
|
|
521
521
|
{
|
|
522
522
|
"name": "href",
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
},
|
|
876
876
|
{
|
|
877
877
|
"name": "zn-content-block",
|
|
878
|
-
"description": "Short summary of the component's intended use.\n---\n",
|
|
878
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - **attachments** - Attachments displayed at the bottom of the content when the block is expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.\n\n### **CSS Parts:**\n - **attachments** - The attachments row at the bottom of the content.\n- **header-attachments** - The attachment count indicator in the header.",
|
|
879
879
|
"attributes": [
|
|
880
880
|
{ "name": "time", "values": [] },
|
|
881
881
|
{ "name": "sender", "values": [] },
|
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.1.
|
|
4
|
+
"version": "1.1.46",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,28 +15,6 @@
|
|
|
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
|
-
},
|
|
40
18
|
{
|
|
41
19
|
"name": "zn-alert",
|
|
42
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.",
|
|
@@ -100,6 +78,28 @@
|
|
|
100
78
|
]
|
|
101
79
|
}
|
|
102
80
|
},
|
|
81
|
+
{
|
|
82
|
+
"name": "zn-action-bar",
|
|
83
|
+
"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.",
|
|
84
|
+
"doc-url": "",
|
|
85
|
+
"attributes": [],
|
|
86
|
+
"slots": [
|
|
87
|
+
{ "name": "", "description": "The default slot." },
|
|
88
|
+
{ "name": "example", "description": "An example slot." }
|
|
89
|
+
],
|
|
90
|
+
"events": [
|
|
91
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
92
|
+
],
|
|
93
|
+
"js": {
|
|
94
|
+
"properties": [],
|
|
95
|
+
"events": [
|
|
96
|
+
{
|
|
97
|
+
"name": "zn-event-name",
|
|
98
|
+
"description": "Emitted as an example."
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
103
|
{
|
|
104
104
|
"name": "zn-animated-button",
|
|
105
105
|
"description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
|
|
@@ -1077,7 +1077,7 @@
|
|
|
1077
1077
|
},
|
|
1078
1078
|
{
|
|
1079
1079
|
"name": "zn-chat-message-attachment",
|
|
1080
|
-
"description": "A single file or link attachment for a `zn-chat-message
|
|
1080
|
+
"description": "A single file or link attachment for a `zn-chat-message` or `zn-content-block`.\nRenders an icon and a label as a link, styled to match the message's attachments row. It is\nintended to be used only inside a `zn-chat-message` or `zn-content-block` and is automatically\nplaced in that component's `attachments` slot.\n---\n\n\n### **Slots:**\n - _default_ - The attachment label. Falls back to the `name` attribute when empty.\n\n### **CSS Parts:**\n - **base** - The attachment link.\n- **icon** - The leading icon.\n- **label** - The attachment label.",
|
|
1081
1081
|
"doc-url": "",
|
|
1082
1082
|
"attributes": [
|
|
1083
1083
|
{
|
|
@@ -1921,7 +1921,7 @@
|
|
|
1921
1921
|
},
|
|
1922
1922
|
{
|
|
1923
1923
|
"name": "zn-content-block",
|
|
1924
|
-
"description": "Short summary of the component's intended use.\n---\n",
|
|
1924
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - **attachments** - Attachments displayed at the bottom of the content when the block is expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.\n\n### **CSS Parts:**\n - **attachments** - The attachments row at the bottom of the content.\n- **header-attachments** - The attachment count indicator in the header.",
|
|
1925
1925
|
"doc-url": "",
|
|
1926
1926
|
"attributes": [
|
|
1927
1927
|
{ "name": "time", "value": { "type": "string", "default": "''" } },
|
|
@@ -1950,6 +1950,12 @@
|
|
|
1950
1950
|
"value": { "type": "'text' | 'html'", "default": "'text'" }
|
|
1951
1951
|
}
|
|
1952
1952
|
],
|
|
1953
|
+
"slots": [
|
|
1954
|
+
{
|
|
1955
|
+
"name": "attachments",
|
|
1956
|
+
"description": "Attachments displayed at the bottom of the content when the block is expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot."
|
|
1957
|
+
}
|
|
1958
|
+
],
|
|
1953
1959
|
"events": [],
|
|
1954
1960
|
"js": {
|
|
1955
1961
|
"properties": [
|
package/dist/zn.d.ts
CHANGED
|
@@ -1600,10 +1600,10 @@ declare module "components/chat-message-attachment/chat-message-attachment.compo
|
|
|
1600
1600
|
import ZincElement from "internal/zinc-element";
|
|
1601
1601
|
import ZnIcon from "components/icon/index";
|
|
1602
1602
|
/**
|
|
1603
|
-
* @summary A single file or link attachment for a `zn-chat-message
|
|
1604
|
-
* icon and a label as a link, styled to match the message's attachments row. It is
|
|
1605
|
-
* intended to be used only inside a `zn-chat-message` and is automatically
|
|
1606
|
-
* that component's `attachments` slot.
|
|
1603
|
+
* @summary A single file or link attachment for a `zn-chat-message` or `zn-content-block`.
|
|
1604
|
+
* Renders an icon and a label as a link, styled to match the message's attachments row. It is
|
|
1605
|
+
* intended to be used only inside a `zn-chat-message` or `zn-content-block` and is automatically
|
|
1606
|
+
* placed in that component's `attachments` slot.
|
|
1607
1607
|
* @documentation https://zinc.style/components/chat-message-attachment
|
|
1608
1608
|
* @status experimental
|
|
1609
1609
|
* @since 1.0
|
|
@@ -3539,6 +3539,7 @@ declare module "components/data-table/data-table.component" {
|
|
|
3539
3539
|
itemsPerPage: number;
|
|
3540
3540
|
selectAllButton: ZnButton;
|
|
3541
3541
|
private _initialLoad;
|
|
3542
|
+
private _hasLoadedData;
|
|
3542
3543
|
private _lastTableContent;
|
|
3543
3544
|
private readonly resizeObserver;
|
|
3544
3545
|
private page;
|
|
@@ -4197,6 +4198,7 @@ declare module "components/navbar/navbar.component" {
|
|
|
4197
4198
|
private _expandable;
|
|
4198
4199
|
private _extendedMenu;
|
|
4199
4200
|
private readonly _cloneSources;
|
|
4201
|
+
private readonly _lightDomClones;
|
|
4200
4202
|
private _navItemsGap;
|
|
4201
4203
|
private _expandableMargin;
|
|
4202
4204
|
private _totalItemWidth;
|
|
@@ -4204,6 +4206,8 @@ declare module "components/navbar/navbar.component" {
|
|
|
4204
4206
|
private _resizeController;
|
|
4205
4207
|
protected _store: Store;
|
|
4206
4208
|
appendItem(item: Element): void;
|
|
4209
|
+
private _cloneLightItem;
|
|
4210
|
+
private _syncLightDomItems;
|
|
4207
4211
|
addExpandingAction(action: Element): void;
|
|
4208
4212
|
constructor();
|
|
4209
4213
|
private readonly _expandingActionObserver;
|
|
@@ -7710,6 +7714,12 @@ declare module "components/content-block/content-block.component" {
|
|
|
7710
7714
|
* @documentation https://zinc.style/components/content-block
|
|
7711
7715
|
* @status experimental
|
|
7712
7716
|
* @since 1.0
|
|
7717
|
+
*
|
|
7718
|
+
* @slot attachments - Attachments displayed at the bottom of the content when the block is
|
|
7719
|
+
* expanded. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.
|
|
7720
|
+
*
|
|
7721
|
+
* @csspart attachments - The attachments row at the bottom of the content.
|
|
7722
|
+
* @csspart header-attachments - The attachment count indicator in the header.
|
|
7713
7723
|
*/
|
|
7714
7724
|
export default class ContentBlock extends ZincElement {
|
|
7715
7725
|
static styles: import("lit").CSSResult;
|
|
@@ -7723,6 +7733,7 @@ declare module "components/content-block/content-block.component" {
|
|
|
7723
7733
|
htmlNodes: Node[];
|
|
7724
7734
|
iframe: Promise<HTMLIFrameElement>;
|
|
7725
7735
|
private readonly hasSlotController;
|
|
7736
|
+
private attachmentCount;
|
|
7726
7737
|
private _textRows;
|
|
7727
7738
|
private readonly _footerObserver;
|
|
7728
7739
|
private _replaceDebounce;
|
|
@@ -7732,6 +7743,8 @@ declare module "components/content-block/content-block.component" {
|
|
|
7732
7743
|
private _toggleText;
|
|
7733
7744
|
private _toggleHtml;
|
|
7734
7745
|
private _resizeIframe;
|
|
7746
|
+
private handleAttachmentsSlotChange;
|
|
7747
|
+
private syncAttachmentCount;
|
|
7735
7748
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
7736
7749
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
7737
7750
|
protected truncateText(): string;
|