@weni/unnnic-system 3.25.5 → 3.25.7
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/{es-ByCgA36w.mjs → es-Cez02syJ.mjs} +1 -1
- package/dist/{index-Cb-3tgt0.mjs → index-B-NJIYYT.mjs} +820 -761
- package/dist/index.d.ts +198 -2
- package/dist/{pt-br-InR8qOLr.mjs → pt-br-u8UEMjaT.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +19 -19
- package/package.json +1 -1
- package/src/components/ChatsContact/ChatsContact.vue +88 -0
- package/src/components/ChatsContact/__tests__/ChatsContact.spec.js +164 -1
- package/src/components/ChatsContact/__tests__/__snapshots__/ChatsContact.spec.js.snap +1 -0
- package/src/stories/ChatsContact.stories.js +83 -0
package/dist/index.d.ts
CHANGED
|
@@ -6203,6 +6203,22 @@ schemePin: {
|
|
|
6203
6203
|
type: StringConstructor;
|
|
6204
6204
|
default: string;
|
|
6205
6205
|
};
|
|
6206
|
+
pendingResponse: {
|
|
6207
|
+
type: BooleanConstructor;
|
|
6208
|
+
default: boolean;
|
|
6209
|
+
};
|
|
6210
|
+
pendingResponseTooltip: {
|
|
6211
|
+
type: StringConstructor;
|
|
6212
|
+
default: string;
|
|
6213
|
+
};
|
|
6214
|
+
newMessageIndicator: {
|
|
6215
|
+
type: BooleanConstructor;
|
|
6216
|
+
default: boolean;
|
|
6217
|
+
};
|
|
6218
|
+
newMessageIndicatorTooltip: {
|
|
6219
|
+
type: StringConstructor;
|
|
6220
|
+
default: string;
|
|
6221
|
+
};
|
|
6206
6222
|
}>, {}, {
|
|
6207
6223
|
isHovered: boolean;
|
|
6208
6224
|
defaultTranslations: {
|
|
@@ -6246,9 +6262,14 @@ video_message: {
|
|
|
6246
6262
|
en: string;
|
|
6247
6263
|
es: string;
|
|
6248
6264
|
};
|
|
6265
|
+
you_message_prefix: {
|
|
6266
|
+
'pt-br': string;
|
|
6267
|
+
en: string;
|
|
6268
|
+
es: string;
|
|
6269
|
+
};
|
|
6249
6270
|
};
|
|
6250
6271
|
}, {
|
|
6251
|
-
messageInfoAlign(): "center" | "flex-start";
|
|
6272
|
+
messageInfoAlign(): "center" | "space-between" | "flex-start";
|
|
6252
6273
|
messageInfoMarginTop(): "0px" | "4px";
|
|
6253
6274
|
formattedLastInteraction(): any;
|
|
6254
6275
|
lastMessageMedia(): {
|
|
@@ -6354,6 +6375,22 @@ schemePin: {
|
|
|
6354
6375
|
type: StringConstructor;
|
|
6355
6376
|
default: string;
|
|
6356
6377
|
};
|
|
6378
|
+
pendingResponse: {
|
|
6379
|
+
type: BooleanConstructor;
|
|
6380
|
+
default: boolean;
|
|
6381
|
+
};
|
|
6382
|
+
pendingResponseTooltip: {
|
|
6383
|
+
type: StringConstructor;
|
|
6384
|
+
default: string;
|
|
6385
|
+
};
|
|
6386
|
+
newMessageIndicator: {
|
|
6387
|
+
type: BooleanConstructor;
|
|
6388
|
+
default: boolean;
|
|
6389
|
+
};
|
|
6390
|
+
newMessageIndicatorTooltip: {
|
|
6391
|
+
type: StringConstructor;
|
|
6392
|
+
default: string;
|
|
6393
|
+
};
|
|
6357
6394
|
}>> & Readonly<{
|
|
6358
6395
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
6359
6396
|
onClickPin?: ((...args: any[]) => any) | undefined;
|
|
@@ -6375,6 +6412,10 @@ projectName: string;
|
|
|
6375
6412
|
pinned: boolean;
|
|
6376
6413
|
activePin: boolean;
|
|
6377
6414
|
schemePin: string;
|
|
6415
|
+
pendingResponse: boolean;
|
|
6416
|
+
pendingResponseTooltip: string;
|
|
6417
|
+
newMessageIndicator: boolean;
|
|
6418
|
+
newMessageIndicatorTooltip: string;
|
|
6378
6419
|
}, {}, {
|
|
6379
6420
|
UserAvatar: DefineComponent<ExtractPropTypes< {
|
|
6380
6421
|
active: {
|
|
@@ -6571,6 +6612,63 @@ modelValue: string | boolean;
|
|
|
6571
6612
|
helper: string;
|
|
6572
6613
|
textRight: string;
|
|
6573
6614
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6615
|
+
UnnnicTooltip: {
|
|
6616
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<TooltipProps> & Readonly<{
|
|
6617
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6618
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6619
|
+
"click:close": (...args: any[]) => void;
|
|
6620
|
+
}, PublicProps, {
|
|
6621
|
+
text: string;
|
|
6622
|
+
class: string;
|
|
6623
|
+
side: "top" | "right" | "bottom" | "left";
|
|
6624
|
+
enabled: boolean;
|
|
6625
|
+
forceOpen: boolean;
|
|
6626
|
+
maxWidth: string;
|
|
6627
|
+
enableHtml: boolean;
|
|
6628
|
+
showClose: boolean;
|
|
6629
|
+
contentProps: Partial<TooltipContentProps>;
|
|
6630
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6631
|
+
P: {};
|
|
6632
|
+
B: {};
|
|
6633
|
+
D: {};
|
|
6634
|
+
C: {};
|
|
6635
|
+
M: {};
|
|
6636
|
+
Defaults: {};
|
|
6637
|
+
}, Readonly<TooltipProps> & Readonly<{
|
|
6638
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6639
|
+
}>, {}, {}, {}, {}, {
|
|
6640
|
+
text: string;
|
|
6641
|
+
class: string;
|
|
6642
|
+
side: "top" | "right" | "bottom" | "left";
|
|
6643
|
+
enabled: boolean;
|
|
6644
|
+
forceOpen: boolean;
|
|
6645
|
+
maxWidth: string;
|
|
6646
|
+
enableHtml: boolean;
|
|
6647
|
+
showClose: boolean;
|
|
6648
|
+
contentProps: Partial<TooltipContentProps>;
|
|
6649
|
+
}>;
|
|
6650
|
+
__isFragment?: never;
|
|
6651
|
+
__isTeleport?: never;
|
|
6652
|
+
__isSuspense?: never;
|
|
6653
|
+
} & ComponentOptionsBase<Readonly<TooltipProps> & Readonly<{
|
|
6654
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6655
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6656
|
+
"click:close": (...args: any[]) => void;
|
|
6657
|
+
}, string, {
|
|
6658
|
+
text: string;
|
|
6659
|
+
class: string;
|
|
6660
|
+
side: "top" | "right" | "bottom" | "left";
|
|
6661
|
+
enabled: boolean;
|
|
6662
|
+
forceOpen: boolean;
|
|
6663
|
+
maxWidth: string;
|
|
6664
|
+
enableHtml: boolean;
|
|
6665
|
+
showClose: boolean;
|
|
6666
|
+
contentProps: Partial<TooltipContentProps>;
|
|
6667
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6668
|
+
$slots: {
|
|
6669
|
+
default?(_: {}): any;
|
|
6670
|
+
};
|
|
6671
|
+
});
|
|
6574
6672
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6575
6673
|
|
|
6576
6674
|
export declare const unnnicChatsContact: DefineComponent<ExtractPropTypes< {
|
|
@@ -6642,6 +6740,22 @@ schemePin: {
|
|
|
6642
6740
|
type: StringConstructor;
|
|
6643
6741
|
default: string;
|
|
6644
6742
|
};
|
|
6743
|
+
pendingResponse: {
|
|
6744
|
+
type: BooleanConstructor;
|
|
6745
|
+
default: boolean;
|
|
6746
|
+
};
|
|
6747
|
+
pendingResponseTooltip: {
|
|
6748
|
+
type: StringConstructor;
|
|
6749
|
+
default: string;
|
|
6750
|
+
};
|
|
6751
|
+
newMessageIndicator: {
|
|
6752
|
+
type: BooleanConstructor;
|
|
6753
|
+
default: boolean;
|
|
6754
|
+
};
|
|
6755
|
+
newMessageIndicatorTooltip: {
|
|
6756
|
+
type: StringConstructor;
|
|
6757
|
+
default: string;
|
|
6758
|
+
};
|
|
6645
6759
|
}>, {}, {
|
|
6646
6760
|
isHovered: boolean;
|
|
6647
6761
|
defaultTranslations: {
|
|
@@ -6685,9 +6799,14 @@ video_message: {
|
|
|
6685
6799
|
en: string;
|
|
6686
6800
|
es: string;
|
|
6687
6801
|
};
|
|
6802
|
+
you_message_prefix: {
|
|
6803
|
+
'pt-br': string;
|
|
6804
|
+
en: string;
|
|
6805
|
+
es: string;
|
|
6806
|
+
};
|
|
6688
6807
|
};
|
|
6689
6808
|
}, {
|
|
6690
|
-
messageInfoAlign(): "center" | "flex-start";
|
|
6809
|
+
messageInfoAlign(): "center" | "space-between" | "flex-start";
|
|
6691
6810
|
messageInfoMarginTop(): "0px" | "4px";
|
|
6692
6811
|
formattedLastInteraction(): any;
|
|
6693
6812
|
lastMessageMedia(): {
|
|
@@ -6793,6 +6912,22 @@ schemePin: {
|
|
|
6793
6912
|
type: StringConstructor;
|
|
6794
6913
|
default: string;
|
|
6795
6914
|
};
|
|
6915
|
+
pendingResponse: {
|
|
6916
|
+
type: BooleanConstructor;
|
|
6917
|
+
default: boolean;
|
|
6918
|
+
};
|
|
6919
|
+
pendingResponseTooltip: {
|
|
6920
|
+
type: StringConstructor;
|
|
6921
|
+
default: string;
|
|
6922
|
+
};
|
|
6923
|
+
newMessageIndicator: {
|
|
6924
|
+
type: BooleanConstructor;
|
|
6925
|
+
default: boolean;
|
|
6926
|
+
};
|
|
6927
|
+
newMessageIndicatorTooltip: {
|
|
6928
|
+
type: StringConstructor;
|
|
6929
|
+
default: string;
|
|
6930
|
+
};
|
|
6796
6931
|
}>> & Readonly<{
|
|
6797
6932
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
6798
6933
|
onClickPin?: ((...args: any[]) => any) | undefined;
|
|
@@ -6814,6 +6949,10 @@ projectName: string;
|
|
|
6814
6949
|
pinned: boolean;
|
|
6815
6950
|
activePin: boolean;
|
|
6816
6951
|
schemePin: string;
|
|
6952
|
+
pendingResponse: boolean;
|
|
6953
|
+
pendingResponseTooltip: string;
|
|
6954
|
+
newMessageIndicator: boolean;
|
|
6955
|
+
newMessageIndicatorTooltip: string;
|
|
6817
6956
|
}, {}, {
|
|
6818
6957
|
UserAvatar: DefineComponent<ExtractPropTypes< {
|
|
6819
6958
|
active: {
|
|
@@ -7010,6 +7149,63 @@ modelValue: string | boolean;
|
|
|
7010
7149
|
helper: string;
|
|
7011
7150
|
textRight: string;
|
|
7012
7151
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7152
|
+
UnnnicTooltip: {
|
|
7153
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<TooltipProps> & Readonly<{
|
|
7154
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
7155
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7156
|
+
"click:close": (...args: any[]) => void;
|
|
7157
|
+
}, PublicProps, {
|
|
7158
|
+
text: string;
|
|
7159
|
+
class: string;
|
|
7160
|
+
side: "top" | "right" | "bottom" | "left";
|
|
7161
|
+
enabled: boolean;
|
|
7162
|
+
forceOpen: boolean;
|
|
7163
|
+
maxWidth: string;
|
|
7164
|
+
enableHtml: boolean;
|
|
7165
|
+
showClose: boolean;
|
|
7166
|
+
contentProps: Partial<TooltipContentProps>;
|
|
7167
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
7168
|
+
P: {};
|
|
7169
|
+
B: {};
|
|
7170
|
+
D: {};
|
|
7171
|
+
C: {};
|
|
7172
|
+
M: {};
|
|
7173
|
+
Defaults: {};
|
|
7174
|
+
}, Readonly<TooltipProps> & Readonly<{
|
|
7175
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
7176
|
+
}>, {}, {}, {}, {}, {
|
|
7177
|
+
text: string;
|
|
7178
|
+
class: string;
|
|
7179
|
+
side: "top" | "right" | "bottom" | "left";
|
|
7180
|
+
enabled: boolean;
|
|
7181
|
+
forceOpen: boolean;
|
|
7182
|
+
maxWidth: string;
|
|
7183
|
+
enableHtml: boolean;
|
|
7184
|
+
showClose: boolean;
|
|
7185
|
+
contentProps: Partial<TooltipContentProps>;
|
|
7186
|
+
}>;
|
|
7187
|
+
__isFragment?: never;
|
|
7188
|
+
__isTeleport?: never;
|
|
7189
|
+
__isSuspense?: never;
|
|
7190
|
+
} & ComponentOptionsBase<Readonly<TooltipProps> & Readonly<{
|
|
7191
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
7192
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7193
|
+
"click:close": (...args: any[]) => void;
|
|
7194
|
+
}, string, {
|
|
7195
|
+
text: string;
|
|
7196
|
+
class: string;
|
|
7197
|
+
side: "top" | "right" | "bottom" | "left";
|
|
7198
|
+
enabled: boolean;
|
|
7199
|
+
forceOpen: boolean;
|
|
7200
|
+
maxWidth: string;
|
|
7201
|
+
enableHtml: boolean;
|
|
7202
|
+
showClose: boolean;
|
|
7203
|
+
contentProps: Partial<TooltipContentProps>;
|
|
7204
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
7205
|
+
$slots: {
|
|
7206
|
+
default?(_: {}): any;
|
|
7207
|
+
};
|
|
7208
|
+
});
|
|
7013
7209
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7014
7210
|
|
|
7015
7211
|
export declare const UnnnicChatsDashboardTagLive: DefineComponent< {}, {}, {
|