@kubex/zinc 1.1.133 → 1.1.134

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.
@@ -3443,351 +3443,6 @@
3443
3443
  }
3444
3444
  ]
3445
3445
  },
3446
- {
3447
- "kind": "javascript-module",
3448
- "path": "components/chat-message/chat-message.js",
3449
- "declarations": [
3450
- {
3451
- "kind": "class",
3452
- "description": "",
3453
- "name": "ZnChatMessage",
3454
- "cssProperties": [
3455
- {
3456
- "description": "The bubble's background color.",
3457
- "name": "--message-background"
3458
- }
3459
- ],
3460
- "cssParts": [
3461
- {
3462
- "description": "The component's base wrapper.",
3463
- "name": "base"
3464
- },
3465
- {
3466
- "description": "The avatar column.",
3467
- "name": "avatar"
3468
- },
3469
- {
3470
- "description": "The header and bubble column.",
3471
- "name": "body"
3472
- },
3473
- {
3474
- "description": "The sender/time/badge row.",
3475
- "name": "header"
3476
- },
3477
- {
3478
- "description": "The message bubble.",
3479
- "name": "bubble"
3480
- },
3481
- {
3482
- "description": "The message content within the bubble.",
3483
- "name": "content"
3484
- },
3485
- {
3486
- "description": "The attachments row beneath the message content.",
3487
- "name": "attachments"
3488
- },
3489
- {
3490
- "description": "The card rendered for system action types.",
3491
- "name": "system-card"
3492
- }
3493
- ],
3494
- "slots": [
3495
- {
3496
- "description": "The message content. Ignored when the `message` attribute is set.",
3497
- "name": ""
3498
- },
3499
- {
3500
- "description": "Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).",
3501
- "name": "badge"
3502
- },
3503
- {
3504
- "description": "Attachments displayed beneath the message content. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.",
3505
- "name": "attachments"
3506
- },
3507
- {
3508
- "description": "Action rendered at the end of the bubble (e.g. a remove icon button).",
3509
- "name": "edit-dialog-trigger"
3510
- },
3511
- {
3512
- "description": "Pass-through for an associated dialog element.",
3513
- "name": "edit-dialog"
3514
- }
3515
- ],
3516
- "members": [
3517
- {
3518
- "kind": "field",
3519
- "name": "dependencies",
3520
- "type": {
3521
- "text": "object"
3522
- },
3523
- "static": true,
3524
- "default": "{ 'zn-icon': ZnIcon }"
3525
- },
3526
- {
3527
- "kind": "field",
3528
- "name": "SYSTEM_ACTION_TYPES",
3529
- "type": {
3530
- "text": "readonly string[]"
3531
- },
3532
- "static": true,
3533
- "readonly": true,
3534
- "default": "[ 'connected.agent', 'attachment.added', 'transfer', 'ended', 'customer.ended', 'customer.connected', 'customer.disconnected', ]"
3535
- },
3536
- {
3537
- "kind": "field",
3538
- "name": "DISPLAYED_ACTION_TYPES",
3539
- "type": {
3540
- "text": "readonly string[]"
3541
- },
3542
- "privacy": "private",
3543
- "static": true,
3544
- "readonly": true,
3545
- "default": "[ '', 'connected.agent', 'attachment.added', 'multi.answer', 'transfer', 'ended', 'error', 'customer.ended', 'message-sending', 'customer.connected', 'customer.disconnected', 'internal', ]"
3546
- },
3547
- {
3548
- "kind": "field",
3549
- "name": "sender",
3550
- "type": {
3551
- "text": "string"
3552
- },
3553
- "default": "''",
3554
- "description": "The sender's name, also used for the avatar.",
3555
- "attribute": "sender"
3556
- },
3557
- {
3558
- "kind": "field",
3559
- "name": "message",
3560
- "type": {
3561
- "text": "string"
3562
- },
3563
- "default": "''",
3564
- "description": "The message body as an HTML string. When set, it is sanitized (scripts and event\nhandlers stripped), newlines become line breaks and bare URLs become links. When\nomitted the default slot is rendered instead.",
3565
- "attribute": "message"
3566
- },
3567
- {
3568
- "kind": "field",
3569
- "name": "time",
3570
- "type": {
3571
- "text": "string"
3572
- },
3573
- "default": "''",
3574
- "description": "Unix timestamp (seconds) of the message, shown as HH:MM (with date if not today).",
3575
- "attribute": "time"
3576
- },
3577
- {
3578
- "kind": "field",
3579
- "name": "avatar",
3580
- "type": {
3581
- "text": "string"
3582
- },
3583
- "default": "''",
3584
- "description": "Overrides the avatar source. Defaults to `sender`.",
3585
- "attribute": "avatar"
3586
- },
3587
- {
3588
- "kind": "field",
3589
- "name": "actionType",
3590
- "type": {
3591
- "text": "ChatMessageActionType"
3592
- },
3593
- "default": "''",
3594
- "description": "The kind of message. Drives system-card rendering, the sending state and badges.",
3595
- "attribute": "action-type",
3596
- "reflects": true
3597
- },
3598
- {
3599
- "kind": "field",
3600
- "name": "customerInitiated",
3601
- "type": {
3602
- "text": "boolean"
3603
- },
3604
- "default": "false",
3605
- "description": "Marks the message as initiated by the customer (affects styling and grouping).",
3606
- "attribute": "customer-initiated",
3607
- "reflects": true
3608
- },
3609
- {
3610
- "kind": "field",
3611
- "name": "agentInitiated",
3612
- "type": {
3613
- "text": "boolean"
3614
- },
3615
- "default": "false",
3616
- "description": "Marks the message as initiated by an agent (affects styling and grouping).",
3617
- "attribute": "agent-initiated",
3618
- "reflects": true
3619
- },
3620
- {
3621
- "kind": "field",
3622
- "name": "hideSender",
3623
- "type": {
3624
- "text": "boolean"
3625
- },
3626
- "default": "false",
3627
- "description": "Hides the sender's name in the message header.",
3628
- "attribute": "hide-sender",
3629
- "reflects": true
3630
- },
3631
- {
3632
- "kind": "field",
3633
- "name": "hasAttachments",
3634
- "type": {
3635
- "text": "boolean"
3636
- },
3637
- "privacy": "private",
3638
- "default": "false",
3639
- "description": "Whether any element is assigned to the `attachments` slot — drives the attachments row visibility."
3640
- },
3641
- {
3642
- "kind": "method",
3643
- "name": "handleAttachmentsSlotChange",
3644
- "privacy": "private"
3645
- },
3646
- {
3647
- "kind": "method",
3648
- "name": "syncHasAttachments",
3649
- "privacy": "private"
3650
- },
3651
- {
3652
- "kind": "method",
3653
- "name": "isSystemMessage",
3654
- "privacy": "private"
3655
- },
3656
- {
3657
- "kind": "method",
3658
- "name": "renderSystemCard",
3659
- "privacy": "private"
3660
- },
3661
- {
3662
- "kind": "method",
3663
- "name": "systemLabel",
3664
- "privacy": "private"
3665
- },
3666
- {
3667
- "kind": "method",
3668
- "name": "renderHeader",
3669
- "privacy": "private"
3670
- },
3671
- {
3672
- "kind": "method",
3673
- "name": "renderContent",
3674
- "privacy": "private"
3675
- },
3676
- {
3677
- "kind": "method",
3678
- "name": "getTime",
3679
- "privacy": "private",
3680
- "description": "HH:MM only — used on the system card."
3681
- },
3682
- {
3683
- "kind": "method",
3684
- "name": "getSentTime",
3685
- "privacy": "private",
3686
- "description": "HH:MM, prefixed with the date when the message is not from today."
3687
- }
3688
- ],
3689
- "attributes": [
3690
- {
3691
- "name": "sender",
3692
- "type": {
3693
- "text": "string"
3694
- },
3695
- "default": "''",
3696
- "description": "The sender's name, also used for the avatar.",
3697
- "fieldName": "sender"
3698
- },
3699
- {
3700
- "name": "message",
3701
- "type": {
3702
- "text": "string"
3703
- },
3704
- "default": "''",
3705
- "description": "The message body as an HTML string. When set, it is sanitized (scripts and event\nhandlers stripped), newlines become line breaks and bare URLs become links. When\nomitted the default slot is rendered instead.",
3706
- "fieldName": "message"
3707
- },
3708
- {
3709
- "name": "time",
3710
- "type": {
3711
- "text": "string"
3712
- },
3713
- "default": "''",
3714
- "description": "Unix timestamp (seconds) of the message, shown as HH:MM (with date if not today).",
3715
- "fieldName": "time"
3716
- },
3717
- {
3718
- "name": "avatar",
3719
- "type": {
3720
- "text": "string"
3721
- },
3722
- "default": "''",
3723
- "description": "Overrides the avatar source. Defaults to `sender`.",
3724
- "fieldName": "avatar"
3725
- },
3726
- {
3727
- "name": "action-type",
3728
- "type": {
3729
- "text": "ChatMessageActionType"
3730
- },
3731
- "default": "''",
3732
- "description": "The kind of message. Drives system-card rendering, the sending state and badges.",
3733
- "fieldName": "actionType"
3734
- },
3735
- {
3736
- "name": "customer-initiated",
3737
- "type": {
3738
- "text": "boolean"
3739
- },
3740
- "default": "false",
3741
- "description": "Marks the message as initiated by the customer (affects styling and grouping).",
3742
- "fieldName": "customerInitiated"
3743
- },
3744
- {
3745
- "name": "agent-initiated",
3746
- "type": {
3747
- "text": "boolean"
3748
- },
3749
- "default": "false",
3750
- "description": "Marks the message as initiated by an agent (affects styling and grouping).",
3751
- "fieldName": "agentInitiated"
3752
- },
3753
- {
3754
- "name": "hide-sender",
3755
- "type": {
3756
- "text": "boolean"
3757
- },
3758
- "default": "false",
3759
- "description": "Hides the sender's name in the message header.",
3760
- "fieldName": "hideSender"
3761
- }
3762
- ],
3763
- "superclass": {
3764
- "name": "ZincElement",
3765
- "module": "/src/internal/zinc-element"
3766
- },
3767
- "summary": "A single message in a chat-style conversation: avatar, sender,\ntime, optional badge, and a message bubble with optional actions. Also renders\nsystem events (connections, transfers, etc.) as a centred card.",
3768
- "tagNameWithoutPrefix": "chat-message",
3769
- "tagName": "zn-chat-message",
3770
- "customElement": true,
3771
- "jsDoc": "/**\n * @summary A single message in a chat-style conversation: avatar, sender,\n * time, optional badge, and a message bubble with optional actions. Also renders\n * system events (connections, transfers, etc.) as a centred card.\n * @documentation https://zinc.style/components/chat-message\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The message content. Ignored when the `message` attribute is set.\n * @slot badge - Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).\n * @slot attachments - Attachments displayed beneath the message content. Use `zn-chat-message-attachment`,\n * which auto-assigns itself to this slot.\n * @slot edit-dialog-trigger - Action rendered at the end of the bubble (e.g. a remove icon button).\n * @slot edit-dialog - Pass-through for an associated dialog element.\n *\n * @csspart base - The component's base wrapper.\n * @csspart avatar - The avatar column.\n * @csspart body - The header and bubble column.\n * @csspart header - The sender/time/badge row.\n * @csspart bubble - The message bubble.\n * @csspart content - The message content within the bubble.\n * @csspart attachments - The attachments row beneath the message content.\n * @csspart system-card - The card rendered for system action types.\n *\n * @cssproperty --message-background - The bubble's background color.\n */",
3772
- "documentation": "https://zinc.style/components/chat-message",
3773
- "status": "experimental",
3774
- "since": "1.0",
3775
- "dependencies": [
3776
- "zn-icon"
3777
- ]
3778
- }
3779
- ],
3780
- "exports": [
3781
- {
3782
- "kind": "js",
3783
- "name": "default",
3784
- "declaration": {
3785
- "name": "ZnChatMessage",
3786
- "module": "components/chat-message/chat-message.js"
3787
- }
3788
- }
3789
- ]
3790
- },
3791
3446
  {
3792
3447
  "kind": "javascript-module",
3793
3448
  "path": "components/chart/chart.js",
@@ -4304,6 +3959,351 @@
4304
3959
  }
4305
3960
  ]
4306
3961
  },
3962
+ {
3963
+ "kind": "javascript-module",
3964
+ "path": "components/chat-message/chat-message.js",
3965
+ "declarations": [
3966
+ {
3967
+ "kind": "class",
3968
+ "description": "",
3969
+ "name": "ZnChatMessage",
3970
+ "cssProperties": [
3971
+ {
3972
+ "description": "The bubble's background color.",
3973
+ "name": "--message-background"
3974
+ }
3975
+ ],
3976
+ "cssParts": [
3977
+ {
3978
+ "description": "The component's base wrapper.",
3979
+ "name": "base"
3980
+ },
3981
+ {
3982
+ "description": "The avatar column.",
3983
+ "name": "avatar"
3984
+ },
3985
+ {
3986
+ "description": "The header and bubble column.",
3987
+ "name": "body"
3988
+ },
3989
+ {
3990
+ "description": "The sender/time/badge row.",
3991
+ "name": "header"
3992
+ },
3993
+ {
3994
+ "description": "The message bubble.",
3995
+ "name": "bubble"
3996
+ },
3997
+ {
3998
+ "description": "The message content within the bubble.",
3999
+ "name": "content"
4000
+ },
4001
+ {
4002
+ "description": "The attachments row beneath the message content.",
4003
+ "name": "attachments"
4004
+ },
4005
+ {
4006
+ "description": "The card rendered for system action types.",
4007
+ "name": "system-card"
4008
+ }
4009
+ ],
4010
+ "slots": [
4011
+ {
4012
+ "description": "The message content. Ignored when the `message` attribute is set.",
4013
+ "name": ""
4014
+ },
4015
+ {
4016
+ "description": "Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).",
4017
+ "name": "badge"
4018
+ },
4019
+ {
4020
+ "description": "Attachments displayed beneath the message content. Use `zn-chat-message-attachment`, which auto-assigns itself to this slot.",
4021
+ "name": "attachments"
4022
+ },
4023
+ {
4024
+ "description": "Action rendered at the end of the bubble (e.g. a remove icon button).",
4025
+ "name": "edit-dialog-trigger"
4026
+ },
4027
+ {
4028
+ "description": "Pass-through for an associated dialog element.",
4029
+ "name": "edit-dialog"
4030
+ }
4031
+ ],
4032
+ "members": [
4033
+ {
4034
+ "kind": "field",
4035
+ "name": "dependencies",
4036
+ "type": {
4037
+ "text": "object"
4038
+ },
4039
+ "static": true,
4040
+ "default": "{ 'zn-icon': ZnIcon }"
4041
+ },
4042
+ {
4043
+ "kind": "field",
4044
+ "name": "SYSTEM_ACTION_TYPES",
4045
+ "type": {
4046
+ "text": "readonly string[]"
4047
+ },
4048
+ "static": true,
4049
+ "readonly": true,
4050
+ "default": "[ 'connected.agent', 'attachment.added', 'transfer', 'ended', 'customer.ended', 'customer.connected', 'customer.disconnected', ]"
4051
+ },
4052
+ {
4053
+ "kind": "field",
4054
+ "name": "DISPLAYED_ACTION_TYPES",
4055
+ "type": {
4056
+ "text": "readonly string[]"
4057
+ },
4058
+ "privacy": "private",
4059
+ "static": true,
4060
+ "readonly": true,
4061
+ "default": "[ '', 'connected.agent', 'attachment.added', 'multi.answer', 'transfer', 'ended', 'error', 'customer.ended', 'message-sending', 'customer.connected', 'customer.disconnected', 'internal', ]"
4062
+ },
4063
+ {
4064
+ "kind": "field",
4065
+ "name": "sender",
4066
+ "type": {
4067
+ "text": "string"
4068
+ },
4069
+ "default": "''",
4070
+ "description": "The sender's name, also used for the avatar.",
4071
+ "attribute": "sender"
4072
+ },
4073
+ {
4074
+ "kind": "field",
4075
+ "name": "message",
4076
+ "type": {
4077
+ "text": "string"
4078
+ },
4079
+ "default": "''",
4080
+ "description": "The message body as an HTML string. When set, it is sanitized (scripts and event\nhandlers stripped), newlines become line breaks and bare URLs become links. When\nomitted the default slot is rendered instead.",
4081
+ "attribute": "message"
4082
+ },
4083
+ {
4084
+ "kind": "field",
4085
+ "name": "time",
4086
+ "type": {
4087
+ "text": "string"
4088
+ },
4089
+ "default": "''",
4090
+ "description": "Unix timestamp (seconds) of the message, shown as HH:MM (with date if not today).",
4091
+ "attribute": "time"
4092
+ },
4093
+ {
4094
+ "kind": "field",
4095
+ "name": "avatar",
4096
+ "type": {
4097
+ "text": "string"
4098
+ },
4099
+ "default": "''",
4100
+ "description": "Overrides the avatar source. Defaults to `sender`.",
4101
+ "attribute": "avatar"
4102
+ },
4103
+ {
4104
+ "kind": "field",
4105
+ "name": "actionType",
4106
+ "type": {
4107
+ "text": "ChatMessageActionType"
4108
+ },
4109
+ "default": "''",
4110
+ "description": "The kind of message. Drives system-card rendering, the sending state and badges.",
4111
+ "attribute": "action-type",
4112
+ "reflects": true
4113
+ },
4114
+ {
4115
+ "kind": "field",
4116
+ "name": "customerInitiated",
4117
+ "type": {
4118
+ "text": "boolean"
4119
+ },
4120
+ "default": "false",
4121
+ "description": "Marks the message as initiated by the customer (affects styling and grouping).",
4122
+ "attribute": "customer-initiated",
4123
+ "reflects": true
4124
+ },
4125
+ {
4126
+ "kind": "field",
4127
+ "name": "agentInitiated",
4128
+ "type": {
4129
+ "text": "boolean"
4130
+ },
4131
+ "default": "false",
4132
+ "description": "Marks the message as initiated by an agent (affects styling and grouping).",
4133
+ "attribute": "agent-initiated",
4134
+ "reflects": true
4135
+ },
4136
+ {
4137
+ "kind": "field",
4138
+ "name": "hideSender",
4139
+ "type": {
4140
+ "text": "boolean"
4141
+ },
4142
+ "default": "false",
4143
+ "description": "Hides the sender's name in the message header.",
4144
+ "attribute": "hide-sender",
4145
+ "reflects": true
4146
+ },
4147
+ {
4148
+ "kind": "field",
4149
+ "name": "hasAttachments",
4150
+ "type": {
4151
+ "text": "boolean"
4152
+ },
4153
+ "privacy": "private",
4154
+ "default": "false",
4155
+ "description": "Whether any element is assigned to the `attachments` slot — drives the attachments row visibility."
4156
+ },
4157
+ {
4158
+ "kind": "method",
4159
+ "name": "handleAttachmentsSlotChange",
4160
+ "privacy": "private"
4161
+ },
4162
+ {
4163
+ "kind": "method",
4164
+ "name": "syncHasAttachments",
4165
+ "privacy": "private"
4166
+ },
4167
+ {
4168
+ "kind": "method",
4169
+ "name": "isSystemMessage",
4170
+ "privacy": "private"
4171
+ },
4172
+ {
4173
+ "kind": "method",
4174
+ "name": "renderSystemCard",
4175
+ "privacy": "private"
4176
+ },
4177
+ {
4178
+ "kind": "method",
4179
+ "name": "systemLabel",
4180
+ "privacy": "private"
4181
+ },
4182
+ {
4183
+ "kind": "method",
4184
+ "name": "renderHeader",
4185
+ "privacy": "private"
4186
+ },
4187
+ {
4188
+ "kind": "method",
4189
+ "name": "renderContent",
4190
+ "privacy": "private"
4191
+ },
4192
+ {
4193
+ "kind": "method",
4194
+ "name": "getTime",
4195
+ "privacy": "private",
4196
+ "description": "HH:MM only — used on the system card."
4197
+ },
4198
+ {
4199
+ "kind": "method",
4200
+ "name": "getSentTime",
4201
+ "privacy": "private",
4202
+ "description": "HH:MM, prefixed with the date when the message is not from today."
4203
+ }
4204
+ ],
4205
+ "attributes": [
4206
+ {
4207
+ "name": "sender",
4208
+ "type": {
4209
+ "text": "string"
4210
+ },
4211
+ "default": "''",
4212
+ "description": "The sender's name, also used for the avatar.",
4213
+ "fieldName": "sender"
4214
+ },
4215
+ {
4216
+ "name": "message",
4217
+ "type": {
4218
+ "text": "string"
4219
+ },
4220
+ "default": "''",
4221
+ "description": "The message body as an HTML string. When set, it is sanitized (scripts and event\nhandlers stripped), newlines become line breaks and bare URLs become links. When\nomitted the default slot is rendered instead.",
4222
+ "fieldName": "message"
4223
+ },
4224
+ {
4225
+ "name": "time",
4226
+ "type": {
4227
+ "text": "string"
4228
+ },
4229
+ "default": "''",
4230
+ "description": "Unix timestamp (seconds) of the message, shown as HH:MM (with date if not today).",
4231
+ "fieldName": "time"
4232
+ },
4233
+ {
4234
+ "name": "avatar",
4235
+ "type": {
4236
+ "text": "string"
4237
+ },
4238
+ "default": "''",
4239
+ "description": "Overrides the avatar source. Defaults to `sender`.",
4240
+ "fieldName": "avatar"
4241
+ },
4242
+ {
4243
+ "name": "action-type",
4244
+ "type": {
4245
+ "text": "ChatMessageActionType"
4246
+ },
4247
+ "default": "''",
4248
+ "description": "The kind of message. Drives system-card rendering, the sending state and badges.",
4249
+ "fieldName": "actionType"
4250
+ },
4251
+ {
4252
+ "name": "customer-initiated",
4253
+ "type": {
4254
+ "text": "boolean"
4255
+ },
4256
+ "default": "false",
4257
+ "description": "Marks the message as initiated by the customer (affects styling and grouping).",
4258
+ "fieldName": "customerInitiated"
4259
+ },
4260
+ {
4261
+ "name": "agent-initiated",
4262
+ "type": {
4263
+ "text": "boolean"
4264
+ },
4265
+ "default": "false",
4266
+ "description": "Marks the message as initiated by an agent (affects styling and grouping).",
4267
+ "fieldName": "agentInitiated"
4268
+ },
4269
+ {
4270
+ "name": "hide-sender",
4271
+ "type": {
4272
+ "text": "boolean"
4273
+ },
4274
+ "default": "false",
4275
+ "description": "Hides the sender's name in the message header.",
4276
+ "fieldName": "hideSender"
4277
+ }
4278
+ ],
4279
+ "superclass": {
4280
+ "name": "ZincElement",
4281
+ "module": "/src/internal/zinc-element"
4282
+ },
4283
+ "summary": "A single message in a chat-style conversation: avatar, sender,\ntime, optional badge, and a message bubble with optional actions. Also renders\nsystem events (connections, transfers, etc.) as a centred card.",
4284
+ "tagNameWithoutPrefix": "chat-message",
4285
+ "tagName": "zn-chat-message",
4286
+ "customElement": true,
4287
+ "jsDoc": "/**\n * @summary A single message in a chat-style conversation: avatar, sender,\n * time, optional badge, and a message bubble with optional actions. Also renders\n * system events (connections, transfers, etc.) as a centred card.\n * @documentation https://zinc.style/components/chat-message\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The message content. Ignored when the `message` attribute is set.\n * @slot badge - Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).\n * @slot attachments - Attachments displayed beneath the message content. Use `zn-chat-message-attachment`,\n * which auto-assigns itself to this slot.\n * @slot edit-dialog-trigger - Action rendered at the end of the bubble (e.g. a remove icon button).\n * @slot edit-dialog - Pass-through for an associated dialog element.\n *\n * @csspart base - The component's base wrapper.\n * @csspart avatar - The avatar column.\n * @csspart body - The header and bubble column.\n * @csspart header - The sender/time/badge row.\n * @csspart bubble - The message bubble.\n * @csspart content - The message content within the bubble.\n * @csspart attachments - The attachments row beneath the message content.\n * @csspart system-card - The card rendered for system action types.\n *\n * @cssproperty --message-background - The bubble's background color.\n */",
4288
+ "documentation": "https://zinc.style/components/chat-message",
4289
+ "status": "experimental",
4290
+ "since": "1.0",
4291
+ "dependencies": [
4292
+ "zn-icon"
4293
+ ]
4294
+ }
4295
+ ],
4296
+ "exports": [
4297
+ {
4298
+ "kind": "js",
4299
+ "name": "default",
4300
+ "declaration": {
4301
+ "name": "ZnChatMessage",
4302
+ "module": "components/chat-message/chat-message.js"
4303
+ }
4304
+ }
4305
+ ]
4306
+ },
4307
4307
  {
4308
4308
  "kind": "javascript-module",
4309
4309
  "path": "components/chat-message-attachment/chat-message-attachment.js",
@@ -52948,7 +52948,7 @@
52948
52948
  "package": {
52949
52949
  "name": "@kubex/zinc",
52950
52950
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
52951
- "version": "1.1.133",
52951
+ "version": "1.1.134",
52952
52952
  "author": "",
52953
52953
  "license": "MIT"
52954
52954
  }