@kubex/zinc 1.1.45 → 1.1.47
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 +113 -8
- package/dist/vscode.html-custom-data.json +12 -2
- package/dist/web-types.json +29 -3
- package/dist/zn.d.ts +24 -4
- package/dist/zn.min.js +131 -117
- package/docs/pages/components/content-block.md +49 -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 +48 -2
- package/src/components/content-block/content-block.scss +44 -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
|
@@ -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",
|
|
@@ -6283,6 +6299,26 @@
|
|
|
6283
6299
|
"default": "''",
|
|
6284
6300
|
"attribute": "avatar"
|
|
6285
6301
|
},
|
|
6302
|
+
{
|
|
6303
|
+
"kind": "field",
|
|
6304
|
+
"name": "subject",
|
|
6305
|
+
"type": {
|
|
6306
|
+
"text": "string"
|
|
6307
|
+
},
|
|
6308
|
+
"default": "''",
|
|
6309
|
+
"description": "The message subject, shown in the header after the sender.",
|
|
6310
|
+
"attribute": "subject"
|
|
6311
|
+
},
|
|
6312
|
+
{
|
|
6313
|
+
"kind": "field",
|
|
6314
|
+
"name": "subjectPlaceholder",
|
|
6315
|
+
"type": {
|
|
6316
|
+
"text": "string"
|
|
6317
|
+
},
|
|
6318
|
+
"default": "''",
|
|
6319
|
+
"description": "Placeholder shown dimmed in place of the subject when `subject` is empty\n(e.g. \"This message has no subject.\"). Omit both for content without a\nsubject line (e.g. notes).",
|
|
6320
|
+
"attribute": "subject-placeholder"
|
|
6321
|
+
},
|
|
6286
6322
|
{
|
|
6287
6323
|
"kind": "field",
|
|
6288
6324
|
"name": "outbound",
|
|
@@ -6343,6 +6379,15 @@
|
|
|
6343
6379
|
"readonly": true,
|
|
6344
6380
|
"default": "new HasSlotController(this, 'text', 'html')"
|
|
6345
6381
|
},
|
|
6382
|
+
{
|
|
6383
|
+
"kind": "field",
|
|
6384
|
+
"name": "attachmentCount",
|
|
6385
|
+
"type": {
|
|
6386
|
+
"text": "number"
|
|
6387
|
+
},
|
|
6388
|
+
"privacy": "private",
|
|
6389
|
+
"default": "0"
|
|
6390
|
+
},
|
|
6346
6391
|
{
|
|
6347
6392
|
"kind": "field",
|
|
6348
6393
|
"name": "_textRows",
|
|
@@ -6405,6 +6450,16 @@
|
|
|
6405
6450
|
}
|
|
6406
6451
|
]
|
|
6407
6452
|
},
|
|
6453
|
+
{
|
|
6454
|
+
"kind": "method",
|
|
6455
|
+
"name": "handleAttachmentsSlotChange",
|
|
6456
|
+
"privacy": "private"
|
|
6457
|
+
},
|
|
6458
|
+
{
|
|
6459
|
+
"kind": "method",
|
|
6460
|
+
"name": "syncAttachmentCount",
|
|
6461
|
+
"privacy": "private"
|
|
6462
|
+
},
|
|
6408
6463
|
{
|
|
6409
6464
|
"kind": "method",
|
|
6410
6465
|
"name": "truncateText",
|
|
@@ -6481,6 +6536,24 @@
|
|
|
6481
6536
|
"default": "''",
|
|
6482
6537
|
"fieldName": "avatar"
|
|
6483
6538
|
},
|
|
6539
|
+
{
|
|
6540
|
+
"name": "subject",
|
|
6541
|
+
"type": {
|
|
6542
|
+
"text": "string"
|
|
6543
|
+
},
|
|
6544
|
+
"default": "''",
|
|
6545
|
+
"description": "The message subject, shown in the header after the sender.",
|
|
6546
|
+
"fieldName": "subject"
|
|
6547
|
+
},
|
|
6548
|
+
{
|
|
6549
|
+
"name": "subject-placeholder",
|
|
6550
|
+
"type": {
|
|
6551
|
+
"text": "string"
|
|
6552
|
+
},
|
|
6553
|
+
"default": "''",
|
|
6554
|
+
"description": "Placeholder shown dimmed in place of the subject when `subject` is empty\n(e.g. \"This message has no subject.\"). Omit both for content without a\nsubject line (e.g. notes).",
|
|
6555
|
+
"fieldName": "subjectPlaceholder"
|
|
6556
|
+
},
|
|
6484
6557
|
{
|
|
6485
6558
|
"name": "outbound",
|
|
6486
6559
|
"type": {
|
|
@@ -6522,7 +6595,7 @@
|
|
|
6522
6595
|
"tagNameWithoutPrefix": "content-block",
|
|
6523
6596
|
"tagName": "zn-content-block",
|
|
6524
6597
|
"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 */",
|
|
6598
|
+
"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
6599
|
"documentation": "https://zinc.style/components/content-block",
|
|
6527
6600
|
"status": "experimental",
|
|
6528
6601
|
"since": "1.0"
|
|
@@ -21468,17 +21541,19 @@
|
|
|
21468
21541
|
"kind": "field",
|
|
21469
21542
|
"name": "_preItems",
|
|
21470
21543
|
"type": {
|
|
21471
|
-
"text": "
|
|
21544
|
+
"text": "HTMLElement[]"
|
|
21472
21545
|
},
|
|
21473
|
-
"privacy": "private"
|
|
21546
|
+
"privacy": "private",
|
|
21547
|
+
"default": "[]"
|
|
21474
21548
|
},
|
|
21475
21549
|
{
|
|
21476
21550
|
"kind": "field",
|
|
21477
21551
|
"name": "_postItems",
|
|
21478
21552
|
"type": {
|
|
21479
|
-
"text": "
|
|
21553
|
+
"text": "HTMLElement[]"
|
|
21480
21554
|
},
|
|
21481
|
-
"privacy": "private"
|
|
21555
|
+
"privacy": "private",
|
|
21556
|
+
"default": "[]"
|
|
21482
21557
|
},
|
|
21483
21558
|
{
|
|
21484
21559
|
"kind": "field",
|
|
@@ -21548,6 +21623,13 @@
|
|
|
21548
21623
|
"readonly": true,
|
|
21549
21624
|
"default": "new WeakMap<HTMLElement, HTMLElement>()"
|
|
21550
21625
|
},
|
|
21626
|
+
{
|
|
21627
|
+
"kind": "field",
|
|
21628
|
+
"name": "_lightDomClones",
|
|
21629
|
+
"privacy": "private",
|
|
21630
|
+
"readonly": true,
|
|
21631
|
+
"default": "new WeakMap<HTMLElement, HTMLElement>()"
|
|
21632
|
+
},
|
|
21551
21633
|
{
|
|
21552
21634
|
"kind": "field",
|
|
21553
21635
|
"name": "_navItemsGap",
|
|
@@ -21613,6 +21695,29 @@
|
|
|
21613
21695
|
}
|
|
21614
21696
|
]
|
|
21615
21697
|
},
|
|
21698
|
+
{
|
|
21699
|
+
"kind": "method",
|
|
21700
|
+
"name": "_cloneLightItem",
|
|
21701
|
+
"privacy": "private",
|
|
21702
|
+
"return": {
|
|
21703
|
+
"type": {
|
|
21704
|
+
"text": "HTMLElement"
|
|
21705
|
+
}
|
|
21706
|
+
},
|
|
21707
|
+
"parameters": [
|
|
21708
|
+
{
|
|
21709
|
+
"name": "item",
|
|
21710
|
+
"type": {
|
|
21711
|
+
"text": "HTMLElement"
|
|
21712
|
+
}
|
|
21713
|
+
}
|
|
21714
|
+
]
|
|
21715
|
+
},
|
|
21716
|
+
{
|
|
21717
|
+
"kind": "method",
|
|
21718
|
+
"name": "_syncLightDomItems",
|
|
21719
|
+
"privacy": "private"
|
|
21720
|
+
},
|
|
21616
21721
|
{
|
|
21617
21722
|
"kind": "method",
|
|
21618
21723
|
"name": "addExpandingAction",
|
|
@@ -40209,7 +40314,7 @@
|
|
|
40209
40314
|
"package": {
|
|
40210
40315
|
"name": "@kubex/zinc",
|
|
40211
40316
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
40212
|
-
"version": "1.1.
|
|
40317
|
+
"version": "1.1.47",
|
|
40213
40318
|
"author": "",
|
|
40214
40319
|
"license": "MIT"
|
|
40215
40320
|
}
|
|
@@ -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,11 +875,21 @@
|
|
|
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": [] },
|
|
882
882
|
{ "name": "avatar", "values": [] },
|
|
883
|
+
{
|
|
884
|
+
"name": "subject",
|
|
885
|
+
"description": "The message subject, shown in the header after the sender.",
|
|
886
|
+
"values": []
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "subject-placeholder",
|
|
890
|
+
"description": "Placeholder shown dimmed in place of the subject when `subject` is empty\n(e.g. \"This message has no subject.\"). Omit both for content without a\nsubject line (e.g. notes).",
|
|
891
|
+
"values": []
|
|
892
|
+
},
|
|
883
893
|
{ "name": "outbound", "values": [] },
|
|
884
894
|
{ "name": "no-collapse", "values": [] },
|
|
885
895
|
{ "name": "short", "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.47",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -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": "''" } },
|
|
@@ -1933,6 +1933,16 @@
|
|
|
1933
1933
|
"name": "avatar",
|
|
1934
1934
|
"value": { "type": "string", "default": "''" }
|
|
1935
1935
|
},
|
|
1936
|
+
{
|
|
1937
|
+
"name": "subject",
|
|
1938
|
+
"description": "The message subject, shown in the header after the sender.",
|
|
1939
|
+
"value": { "type": "string", "default": "''" }
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"name": "subject-placeholder",
|
|
1943
|
+
"description": "Placeholder shown dimmed in place of the subject when `subject` is empty\n(e.g. \"This message has no subject.\"). Omit both for content without a\nsubject line (e.g. notes).",
|
|
1944
|
+
"value": { "type": "string", "default": "''" }
|
|
1945
|
+
},
|
|
1936
1946
|
{
|
|
1937
1947
|
"name": "outbound",
|
|
1938
1948
|
"value": { "type": "boolean", "default": "false" }
|
|
@@ -1950,12 +1960,28 @@
|
|
|
1950
1960
|
"value": { "type": "'text' | 'html'", "default": "'text'" }
|
|
1951
1961
|
}
|
|
1952
1962
|
],
|
|
1963
|
+
"slots": [
|
|
1964
|
+
{
|
|
1965
|
+
"name": "attachments",
|
|
1966
|
+
"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."
|
|
1967
|
+
}
|
|
1968
|
+
],
|
|
1953
1969
|
"events": [],
|
|
1954
1970
|
"js": {
|
|
1955
1971
|
"properties": [
|
|
1956
1972
|
{ "name": "time", "type": "string" },
|
|
1957
1973
|
{ "name": "sender", "type": "string" },
|
|
1958
1974
|
{ "name": "avatar", "type": "string" },
|
|
1975
|
+
{
|
|
1976
|
+
"name": "subject",
|
|
1977
|
+
"description": "The message subject, shown in the header after the sender.",
|
|
1978
|
+
"type": "string"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"name": "subjectPlaceholder",
|
|
1982
|
+
"description": "Placeholder shown dimmed in place of the subject when `subject` is empty\n(e.g. \"This message has no subject.\"). Omit both for content without a\nsubject line (e.g. notes).",
|
|
1983
|
+
"type": "string"
|
|
1984
|
+
},
|
|
1959
1985
|
{ "name": "outbound", "type": "boolean" },
|
|
1960
1986
|
{ "name": "noCollapse", "type": "boolean" },
|
|
1961
1987
|
{ "name": "short", "type": "boolean" },
|
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
|
|
@@ -4198,6 +4198,7 @@ declare module "components/navbar/navbar.component" {
|
|
|
4198
4198
|
private _expandable;
|
|
4199
4199
|
private _extendedMenu;
|
|
4200
4200
|
private readonly _cloneSources;
|
|
4201
|
+
private readonly _lightDomClones;
|
|
4201
4202
|
private _navItemsGap;
|
|
4202
4203
|
private _expandableMargin;
|
|
4203
4204
|
private _totalItemWidth;
|
|
@@ -4205,6 +4206,8 @@ declare module "components/navbar/navbar.component" {
|
|
|
4205
4206
|
private _resizeController;
|
|
4206
4207
|
protected _store: Store;
|
|
4207
4208
|
appendItem(item: Element): void;
|
|
4209
|
+
private _cloneLightItem;
|
|
4210
|
+
private _syncLightDomItems;
|
|
4208
4211
|
addExpandingAction(action: Element): void;
|
|
4209
4212
|
constructor();
|
|
4210
4213
|
private readonly _expandingActionObserver;
|
|
@@ -7711,12 +7714,26 @@ declare module "components/content-block/content-block.component" {
|
|
|
7711
7714
|
* @documentation https://zinc.style/components/content-block
|
|
7712
7715
|
* @status experimental
|
|
7713
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.
|
|
7714
7723
|
*/
|
|
7715
7724
|
export default class ContentBlock extends ZincElement {
|
|
7716
7725
|
static styles: import("lit").CSSResult;
|
|
7717
7726
|
time: string;
|
|
7718
7727
|
sender: string;
|
|
7719
7728
|
avatar: string;
|
|
7729
|
+
/** The message subject, shown in the header after the sender. */
|
|
7730
|
+
subject: string;
|
|
7731
|
+
/**
|
|
7732
|
+
* Placeholder shown dimmed in place of the subject when `subject` is empty
|
|
7733
|
+
* (e.g. "This message has no subject."). Omit both for content without a
|
|
7734
|
+
* subject line (e.g. notes).
|
|
7735
|
+
*/
|
|
7736
|
+
subjectPlaceholder: string;
|
|
7720
7737
|
outbound: boolean;
|
|
7721
7738
|
noCollapse: boolean;
|
|
7722
7739
|
short: boolean;
|
|
@@ -7724,6 +7741,7 @@ declare module "components/content-block/content-block.component" {
|
|
|
7724
7741
|
htmlNodes: Node[];
|
|
7725
7742
|
iframe: Promise<HTMLIFrameElement>;
|
|
7726
7743
|
private readonly hasSlotController;
|
|
7744
|
+
private attachmentCount;
|
|
7727
7745
|
private _textRows;
|
|
7728
7746
|
private readonly _footerObserver;
|
|
7729
7747
|
private _replaceDebounce;
|
|
@@ -7733,6 +7751,8 @@ declare module "components/content-block/content-block.component" {
|
|
|
7733
7751
|
private _toggleText;
|
|
7734
7752
|
private _toggleHtml;
|
|
7735
7753
|
private _resizeIframe;
|
|
7754
|
+
private handleAttachmentsSlotChange;
|
|
7755
|
+
private syncAttachmentCount;
|
|
7736
7756
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
7737
7757
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
7738
7758
|
protected truncateText(): string;
|