@weni/unnnic-system 3.26.1-alpha.0 → 3.26.1-alpha.4
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/index.d.ts +0 -755
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +8623 -9137
- package/dist/unnnic.umd.js +32 -32
- package/package.json +1 -1
- package/src/components/index.ts +0 -8
- package/src/components/ChatsMessage/ChatsMessage.vue +0 -478
- package/src/components/ChatsMessage/ChatsMessageStatusBackdrop.vue +0 -75
- package/src/components/ChatsMessage/ChatsMessageText.vue +0 -134
- package/src/components/ChatsMessage/ReplyMessage.vue +0 -244
- package/src/components/ChatsMessage/__tests__/ChatMessage.spec.js +0 -47
- package/src/components/ChatsMessage/__tests__/ReplyMessage.spec.js +0 -174
- package/src/stories/ChatsMessage.stories.js +0 -503
package/dist/index.d.ts
CHANGED
|
@@ -36,7 +36,6 @@ import { TabsListProps } from 'reka-ui';
|
|
|
36
36
|
import { TabsRootProps } from 'reka-ui';
|
|
37
37
|
import { TabsTriggerProps } from 'reka-ui';
|
|
38
38
|
import { TooltipContentProps } from 'reka-ui';
|
|
39
|
-
import { VNodeArrayChildren } from 'vue';
|
|
40
39
|
import { VNodeNormalizedChildren } from 'vue';
|
|
41
40
|
import { VNodeProps } from 'vue';
|
|
42
41
|
|
|
@@ -6139,736 +6138,6 @@ type: StringConstructor;
|
|
|
6139
6138
|
modelValue: number;
|
|
6140
6139
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6141
6140
|
|
|
6142
|
-
export declare const UnnnicChatsMessage: DefineComponent<ExtractPropTypes< {
|
|
6143
|
-
locale: {
|
|
6144
|
-
type: StringConstructor;
|
|
6145
|
-
default: string;
|
|
6146
|
-
};
|
|
6147
|
-
enableReply: {
|
|
6148
|
-
type: BooleanConstructor;
|
|
6149
|
-
default: boolean;
|
|
6150
|
-
};
|
|
6151
|
-
replyMessage: {
|
|
6152
|
-
type: (ObjectConstructor | null)[];
|
|
6153
|
-
default: null;
|
|
6154
|
-
};
|
|
6155
|
-
type: {
|
|
6156
|
-
type: StringConstructor;
|
|
6157
|
-
default: string;
|
|
6158
|
-
validate(type: any): boolean;
|
|
6159
|
-
};
|
|
6160
|
-
automatic: {
|
|
6161
|
-
type: BooleanConstructor;
|
|
6162
|
-
default: boolean;
|
|
6163
|
-
};
|
|
6164
|
-
time: {
|
|
6165
|
-
type: DateConstructor;
|
|
6166
|
-
required: true;
|
|
6167
|
-
};
|
|
6168
|
-
signature: {
|
|
6169
|
-
type: StringConstructor;
|
|
6170
|
-
default: string;
|
|
6171
|
-
};
|
|
6172
|
-
documentName: {
|
|
6173
|
-
type: StringConstructor;
|
|
6174
|
-
default: string;
|
|
6175
|
-
};
|
|
6176
|
-
status: {
|
|
6177
|
-
type: StringConstructor;
|
|
6178
|
-
default: string;
|
|
6179
|
-
validate(status: any): boolean;
|
|
6180
|
-
};
|
|
6181
|
-
mediaType: {
|
|
6182
|
-
type: StringConstructor;
|
|
6183
|
-
default: string;
|
|
6184
|
-
validate(status: any): boolean;
|
|
6185
|
-
};
|
|
6186
|
-
highlighted: {
|
|
6187
|
-
type: BooleanConstructor;
|
|
6188
|
-
default: boolean;
|
|
6189
|
-
};
|
|
6190
|
-
}>, {}, {
|
|
6191
|
-
isHovering: boolean;
|
|
6192
|
-
defaultTranslations: {
|
|
6193
|
-
reply: {
|
|
6194
|
-
'pt-br': string;
|
|
6195
|
-
en: string;
|
|
6196
|
-
es: string;
|
|
6197
|
-
};
|
|
6198
|
-
};
|
|
6199
|
-
}, {
|
|
6200
|
-
formattedTime(): string;
|
|
6201
|
-
isMedia(): boolean;
|
|
6202
|
-
isDocument(): boolean;
|
|
6203
|
-
isText(): boolean;
|
|
6204
|
-
isImage(): boolean;
|
|
6205
|
-
isVideo(): boolean;
|
|
6206
|
-
isGeolocation(): boolean;
|
|
6207
|
-
slotText(): string | VNodeArrayChildren | {
|
|
6208
|
-
[name: string]: unknown;
|
|
6209
|
-
$stable?: boolean;
|
|
6210
|
-
};
|
|
6211
|
-
sendingMedia(): boolean;
|
|
6212
|
-
failedToSendMedia(): boolean;
|
|
6213
|
-
messageStatusIcon(): "done" | "history" | "done_all";
|
|
6214
|
-
}, {
|
|
6215
|
-
onClickMedia(): void;
|
|
6216
|
-
}, {
|
|
6217
|
-
props: {
|
|
6218
|
-
locale: {
|
|
6219
|
-
type: StringConstructor;
|
|
6220
|
-
};
|
|
6221
|
-
translations: {
|
|
6222
|
-
type: ObjectConstructor;
|
|
6223
|
-
};
|
|
6224
|
-
};
|
|
6225
|
-
methods: {
|
|
6226
|
-
i18n(...args: any[]): any;
|
|
6227
|
-
};
|
|
6228
|
-
}, ComponentOptionsMixin, ("click" | "click-image" | "reply" | "click-reply-message")[], "click" | "click-image" | "reply" | "click-reply-message", PublicProps, Readonly<ExtractPropTypes< {
|
|
6229
|
-
locale: {
|
|
6230
|
-
type: StringConstructor;
|
|
6231
|
-
default: string;
|
|
6232
|
-
};
|
|
6233
|
-
enableReply: {
|
|
6234
|
-
type: BooleanConstructor;
|
|
6235
|
-
default: boolean;
|
|
6236
|
-
};
|
|
6237
|
-
replyMessage: {
|
|
6238
|
-
type: (ObjectConstructor | null)[];
|
|
6239
|
-
default: null;
|
|
6240
|
-
};
|
|
6241
|
-
type: {
|
|
6242
|
-
type: StringConstructor;
|
|
6243
|
-
default: string;
|
|
6244
|
-
validate(type: any): boolean;
|
|
6245
|
-
};
|
|
6246
|
-
automatic: {
|
|
6247
|
-
type: BooleanConstructor;
|
|
6248
|
-
default: boolean;
|
|
6249
|
-
};
|
|
6250
|
-
time: {
|
|
6251
|
-
type: DateConstructor;
|
|
6252
|
-
required: true;
|
|
6253
|
-
};
|
|
6254
|
-
signature: {
|
|
6255
|
-
type: StringConstructor;
|
|
6256
|
-
default: string;
|
|
6257
|
-
};
|
|
6258
|
-
documentName: {
|
|
6259
|
-
type: StringConstructor;
|
|
6260
|
-
default: string;
|
|
6261
|
-
};
|
|
6262
|
-
status: {
|
|
6263
|
-
type: StringConstructor;
|
|
6264
|
-
default: string;
|
|
6265
|
-
validate(status: any): boolean;
|
|
6266
|
-
};
|
|
6267
|
-
mediaType: {
|
|
6268
|
-
type: StringConstructor;
|
|
6269
|
-
default: string;
|
|
6270
|
-
validate(status: any): boolean;
|
|
6271
|
-
};
|
|
6272
|
-
highlighted: {
|
|
6273
|
-
type: BooleanConstructor;
|
|
6274
|
-
default: boolean;
|
|
6275
|
-
};
|
|
6276
|
-
}>> & Readonly<{
|
|
6277
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
6278
|
-
"onClick-image"?: ((...args: any[]) => any) | undefined;
|
|
6279
|
-
onReply?: ((...args: any[]) => any) | undefined;
|
|
6280
|
-
"onClick-reply-message"?: ((...args: any[]) => any) | undefined;
|
|
6281
|
-
}>, {
|
|
6282
|
-
type: string;
|
|
6283
|
-
locale: string;
|
|
6284
|
-
highlighted: boolean;
|
|
6285
|
-
status: string;
|
|
6286
|
-
automatic: boolean;
|
|
6287
|
-
replyMessage: Record<string, any> | null;
|
|
6288
|
-
enableReply: boolean;
|
|
6289
|
-
signature: string;
|
|
6290
|
-
documentName: string;
|
|
6291
|
-
mediaType: string;
|
|
6292
|
-
}, {}, {
|
|
6293
|
-
UnnnicChatsMessageText: DefineComponent<ExtractPropTypes< {
|
|
6294
|
-
locale: {
|
|
6295
|
-
type: StringConstructor;
|
|
6296
|
-
default: string;
|
|
6297
|
-
};
|
|
6298
|
-
text: {
|
|
6299
|
-
type: StringConstructor;
|
|
6300
|
-
required: true;
|
|
6301
|
-
};
|
|
6302
|
-
isAutomatic: {
|
|
6303
|
-
type: BooleanConstructor;
|
|
6304
|
-
default: boolean;
|
|
6305
|
-
};
|
|
6306
|
-
}>, {}, {
|
|
6307
|
-
defaultTranslations: {
|
|
6308
|
-
automatic_message: {
|
|
6309
|
-
'pt-br': string;
|
|
6310
|
-
en: string;
|
|
6311
|
-
es: string;
|
|
6312
|
-
};
|
|
6313
|
-
};
|
|
6314
|
-
}, {
|
|
6315
|
-
formattedText(): any;
|
|
6316
|
-
}, {}, {
|
|
6317
|
-
props: {
|
|
6318
|
-
locale: {
|
|
6319
|
-
type: StringConstructor;
|
|
6320
|
-
};
|
|
6321
|
-
translations: {
|
|
6322
|
-
type: ObjectConstructor;
|
|
6323
|
-
};
|
|
6324
|
-
};
|
|
6325
|
-
methods: {
|
|
6326
|
-
i18n(...args: any[]): any;
|
|
6327
|
-
};
|
|
6328
|
-
}, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6329
|
-
locale: {
|
|
6330
|
-
type: StringConstructor;
|
|
6331
|
-
default: string;
|
|
6332
|
-
};
|
|
6333
|
-
text: {
|
|
6334
|
-
type: StringConstructor;
|
|
6335
|
-
required: true;
|
|
6336
|
-
};
|
|
6337
|
-
isAutomatic: {
|
|
6338
|
-
type: BooleanConstructor;
|
|
6339
|
-
default: boolean;
|
|
6340
|
-
};
|
|
6341
|
-
}>> & Readonly<{}>, {
|
|
6342
|
-
locale: string;
|
|
6343
|
-
isAutomatic: boolean;
|
|
6344
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6345
|
-
UnnnicChatsMessageStatusBackdrop: DefineComponent<ExtractPropTypes< {
|
|
6346
|
-
status: {
|
|
6347
|
-
type: StringConstructor;
|
|
6348
|
-
required: true;
|
|
6349
|
-
default: string;
|
|
6350
|
-
validate(status: any): boolean;
|
|
6351
|
-
};
|
|
6352
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6353
|
-
status: {
|
|
6354
|
-
type: StringConstructor;
|
|
6355
|
-
required: true;
|
|
6356
|
-
default: string;
|
|
6357
|
-
validate(status: any): boolean;
|
|
6358
|
-
};
|
|
6359
|
-
}>> & Readonly<{}>, {
|
|
6360
|
-
status: string;
|
|
6361
|
-
}, {}, {
|
|
6362
|
-
UnnnicIconLoading: DefineComponent<ExtractPropTypes< {
|
|
6363
|
-
scheme: {
|
|
6364
|
-
type: StringConstructor;
|
|
6365
|
-
default: string;
|
|
6366
|
-
};
|
|
6367
|
-
size: {
|
|
6368
|
-
type: StringConstructor;
|
|
6369
|
-
default: string;
|
|
6370
|
-
};
|
|
6371
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6372
|
-
scheme: {
|
|
6373
|
-
type: StringConstructor;
|
|
6374
|
-
default: string;
|
|
6375
|
-
};
|
|
6376
|
-
size: {
|
|
6377
|
-
type: StringConstructor;
|
|
6378
|
-
default: string;
|
|
6379
|
-
};
|
|
6380
|
-
}>> & Readonly<{}>, {
|
|
6381
|
-
size: string;
|
|
6382
|
-
scheme: string;
|
|
6383
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6384
|
-
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6385
|
-
click: (event: Event) => any;
|
|
6386
|
-
mousedown: (event: Event) => any;
|
|
6387
|
-
mouseup: (event: Event) => any;
|
|
6388
|
-
}, string, PublicProps, Readonly<IconProps> & Readonly<{
|
|
6389
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
6390
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
6391
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
6392
|
-
}>, {
|
|
6393
|
-
size: IconSize;
|
|
6394
|
-
filled: boolean;
|
|
6395
|
-
icon: string | null;
|
|
6396
|
-
clickable: boolean;
|
|
6397
|
-
scheme: SchemeColor_2;
|
|
6398
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6399
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6400
|
-
UnnnicIconLoading: DefineComponent<ExtractPropTypes< {
|
|
6401
|
-
scheme: {
|
|
6402
|
-
type: StringConstructor;
|
|
6403
|
-
default: string;
|
|
6404
|
-
};
|
|
6405
|
-
size: {
|
|
6406
|
-
type: StringConstructor;
|
|
6407
|
-
default: string;
|
|
6408
|
-
};
|
|
6409
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6410
|
-
scheme: {
|
|
6411
|
-
type: StringConstructor;
|
|
6412
|
-
default: string;
|
|
6413
|
-
};
|
|
6414
|
-
size: {
|
|
6415
|
-
type: StringConstructor;
|
|
6416
|
-
default: string;
|
|
6417
|
-
};
|
|
6418
|
-
}>> & Readonly<{}>, {
|
|
6419
|
-
size: string;
|
|
6420
|
-
scheme: string;
|
|
6421
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6422
|
-
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6423
|
-
click: (event: Event) => any;
|
|
6424
|
-
mousedown: (event: Event) => any;
|
|
6425
|
-
mouseup: (event: Event) => any;
|
|
6426
|
-
}, string, PublicProps, Readonly<IconProps> & Readonly<{
|
|
6427
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
6428
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
6429
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
6430
|
-
}>, {
|
|
6431
|
-
size: IconSize;
|
|
6432
|
-
filled: boolean;
|
|
6433
|
-
icon: string | null;
|
|
6434
|
-
clickable: boolean;
|
|
6435
|
-
scheme: SchemeColor_2;
|
|
6436
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6437
|
-
UnnnicTooltip: {
|
|
6438
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<TooltipProps> & Readonly<{
|
|
6439
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6440
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6441
|
-
"click:close": (...args: any[]) => void;
|
|
6442
|
-
}, PublicProps, {
|
|
6443
|
-
text: string;
|
|
6444
|
-
class: string;
|
|
6445
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6446
|
-
enabled: boolean;
|
|
6447
|
-
forceOpen: boolean;
|
|
6448
|
-
maxWidth: string;
|
|
6449
|
-
enableHtml: boolean;
|
|
6450
|
-
showClose: boolean;
|
|
6451
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6452
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6453
|
-
P: {};
|
|
6454
|
-
B: {};
|
|
6455
|
-
D: {};
|
|
6456
|
-
C: {};
|
|
6457
|
-
M: {};
|
|
6458
|
-
Defaults: {};
|
|
6459
|
-
}, Readonly<TooltipProps> & Readonly<{
|
|
6460
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6461
|
-
}>, {}, {}, {}, {}, {
|
|
6462
|
-
text: string;
|
|
6463
|
-
class: string;
|
|
6464
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6465
|
-
enabled: boolean;
|
|
6466
|
-
forceOpen: boolean;
|
|
6467
|
-
maxWidth: string;
|
|
6468
|
-
enableHtml: boolean;
|
|
6469
|
-
showClose: boolean;
|
|
6470
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6471
|
-
}>;
|
|
6472
|
-
__isFragment?: never;
|
|
6473
|
-
__isTeleport?: never;
|
|
6474
|
-
__isSuspense?: never;
|
|
6475
|
-
} & ComponentOptionsBase<Readonly<TooltipProps> & Readonly<{
|
|
6476
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6477
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6478
|
-
"click:close": (...args: any[]) => void;
|
|
6479
|
-
}, string, {
|
|
6480
|
-
text: string;
|
|
6481
|
-
class: string;
|
|
6482
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6483
|
-
enabled: boolean;
|
|
6484
|
-
forceOpen: boolean;
|
|
6485
|
-
maxWidth: string;
|
|
6486
|
-
enableHtml: boolean;
|
|
6487
|
-
showClose: boolean;
|
|
6488
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6489
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6490
|
-
$slots: {
|
|
6491
|
-
default?(_: {}): any;
|
|
6492
|
-
};
|
|
6493
|
-
});
|
|
6494
|
-
ReplyMessage: DefineComponent< {}, {
|
|
6495
|
-
$emit: (event: "close", ...args: any[]) => void;
|
|
6496
|
-
showClose: boolean;
|
|
6497
|
-
replyMessage: Record<string, any>;
|
|
6498
|
-
messageType: string;
|
|
6499
|
-
$props: {
|
|
6500
|
-
readonly showClose?: boolean | undefined;
|
|
6501
|
-
readonly replyMessage?: Record<string, any> | undefined;
|
|
6502
|
-
readonly messageType?: string | undefined;
|
|
6503
|
-
};
|
|
6504
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6505
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6506
|
-
|
|
6507
|
-
export declare const unnnicChatsMessage: DefineComponent<ExtractPropTypes< {
|
|
6508
|
-
locale: {
|
|
6509
|
-
type: StringConstructor;
|
|
6510
|
-
default: string;
|
|
6511
|
-
};
|
|
6512
|
-
enableReply: {
|
|
6513
|
-
type: BooleanConstructor;
|
|
6514
|
-
default: boolean;
|
|
6515
|
-
};
|
|
6516
|
-
replyMessage: {
|
|
6517
|
-
type: (ObjectConstructor | null)[];
|
|
6518
|
-
default: null;
|
|
6519
|
-
};
|
|
6520
|
-
type: {
|
|
6521
|
-
type: StringConstructor;
|
|
6522
|
-
default: string;
|
|
6523
|
-
validate(type: any): boolean;
|
|
6524
|
-
};
|
|
6525
|
-
automatic: {
|
|
6526
|
-
type: BooleanConstructor;
|
|
6527
|
-
default: boolean;
|
|
6528
|
-
};
|
|
6529
|
-
time: {
|
|
6530
|
-
type: DateConstructor;
|
|
6531
|
-
required: true;
|
|
6532
|
-
};
|
|
6533
|
-
signature: {
|
|
6534
|
-
type: StringConstructor;
|
|
6535
|
-
default: string;
|
|
6536
|
-
};
|
|
6537
|
-
documentName: {
|
|
6538
|
-
type: StringConstructor;
|
|
6539
|
-
default: string;
|
|
6540
|
-
};
|
|
6541
|
-
status: {
|
|
6542
|
-
type: StringConstructor;
|
|
6543
|
-
default: string;
|
|
6544
|
-
validate(status: any): boolean;
|
|
6545
|
-
};
|
|
6546
|
-
mediaType: {
|
|
6547
|
-
type: StringConstructor;
|
|
6548
|
-
default: string;
|
|
6549
|
-
validate(status: any): boolean;
|
|
6550
|
-
};
|
|
6551
|
-
highlighted: {
|
|
6552
|
-
type: BooleanConstructor;
|
|
6553
|
-
default: boolean;
|
|
6554
|
-
};
|
|
6555
|
-
}>, {}, {
|
|
6556
|
-
isHovering: boolean;
|
|
6557
|
-
defaultTranslations: {
|
|
6558
|
-
reply: {
|
|
6559
|
-
'pt-br': string;
|
|
6560
|
-
en: string;
|
|
6561
|
-
es: string;
|
|
6562
|
-
};
|
|
6563
|
-
};
|
|
6564
|
-
}, {
|
|
6565
|
-
formattedTime(): string;
|
|
6566
|
-
isMedia(): boolean;
|
|
6567
|
-
isDocument(): boolean;
|
|
6568
|
-
isText(): boolean;
|
|
6569
|
-
isImage(): boolean;
|
|
6570
|
-
isVideo(): boolean;
|
|
6571
|
-
isGeolocation(): boolean;
|
|
6572
|
-
slotText(): string | VNodeArrayChildren | {
|
|
6573
|
-
[name: string]: unknown;
|
|
6574
|
-
$stable?: boolean;
|
|
6575
|
-
};
|
|
6576
|
-
sendingMedia(): boolean;
|
|
6577
|
-
failedToSendMedia(): boolean;
|
|
6578
|
-
messageStatusIcon(): "done" | "history" | "done_all";
|
|
6579
|
-
}, {
|
|
6580
|
-
onClickMedia(): void;
|
|
6581
|
-
}, {
|
|
6582
|
-
props: {
|
|
6583
|
-
locale: {
|
|
6584
|
-
type: StringConstructor;
|
|
6585
|
-
};
|
|
6586
|
-
translations: {
|
|
6587
|
-
type: ObjectConstructor;
|
|
6588
|
-
};
|
|
6589
|
-
};
|
|
6590
|
-
methods: {
|
|
6591
|
-
i18n(...args: any[]): any;
|
|
6592
|
-
};
|
|
6593
|
-
}, ComponentOptionsMixin, ("click" | "click-image" | "reply" | "click-reply-message")[], "click" | "click-image" | "reply" | "click-reply-message", PublicProps, Readonly<ExtractPropTypes< {
|
|
6594
|
-
locale: {
|
|
6595
|
-
type: StringConstructor;
|
|
6596
|
-
default: string;
|
|
6597
|
-
};
|
|
6598
|
-
enableReply: {
|
|
6599
|
-
type: BooleanConstructor;
|
|
6600
|
-
default: boolean;
|
|
6601
|
-
};
|
|
6602
|
-
replyMessage: {
|
|
6603
|
-
type: (ObjectConstructor | null)[];
|
|
6604
|
-
default: null;
|
|
6605
|
-
};
|
|
6606
|
-
type: {
|
|
6607
|
-
type: StringConstructor;
|
|
6608
|
-
default: string;
|
|
6609
|
-
validate(type: any): boolean;
|
|
6610
|
-
};
|
|
6611
|
-
automatic: {
|
|
6612
|
-
type: BooleanConstructor;
|
|
6613
|
-
default: boolean;
|
|
6614
|
-
};
|
|
6615
|
-
time: {
|
|
6616
|
-
type: DateConstructor;
|
|
6617
|
-
required: true;
|
|
6618
|
-
};
|
|
6619
|
-
signature: {
|
|
6620
|
-
type: StringConstructor;
|
|
6621
|
-
default: string;
|
|
6622
|
-
};
|
|
6623
|
-
documentName: {
|
|
6624
|
-
type: StringConstructor;
|
|
6625
|
-
default: string;
|
|
6626
|
-
};
|
|
6627
|
-
status: {
|
|
6628
|
-
type: StringConstructor;
|
|
6629
|
-
default: string;
|
|
6630
|
-
validate(status: any): boolean;
|
|
6631
|
-
};
|
|
6632
|
-
mediaType: {
|
|
6633
|
-
type: StringConstructor;
|
|
6634
|
-
default: string;
|
|
6635
|
-
validate(status: any): boolean;
|
|
6636
|
-
};
|
|
6637
|
-
highlighted: {
|
|
6638
|
-
type: BooleanConstructor;
|
|
6639
|
-
default: boolean;
|
|
6640
|
-
};
|
|
6641
|
-
}>> & Readonly<{
|
|
6642
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
6643
|
-
"onClick-image"?: ((...args: any[]) => any) | undefined;
|
|
6644
|
-
onReply?: ((...args: any[]) => any) | undefined;
|
|
6645
|
-
"onClick-reply-message"?: ((...args: any[]) => any) | undefined;
|
|
6646
|
-
}>, {
|
|
6647
|
-
type: string;
|
|
6648
|
-
locale: string;
|
|
6649
|
-
highlighted: boolean;
|
|
6650
|
-
status: string;
|
|
6651
|
-
automatic: boolean;
|
|
6652
|
-
replyMessage: Record<string, any> | null;
|
|
6653
|
-
enableReply: boolean;
|
|
6654
|
-
signature: string;
|
|
6655
|
-
documentName: string;
|
|
6656
|
-
mediaType: string;
|
|
6657
|
-
}, {}, {
|
|
6658
|
-
UnnnicChatsMessageText: DefineComponent<ExtractPropTypes< {
|
|
6659
|
-
locale: {
|
|
6660
|
-
type: StringConstructor;
|
|
6661
|
-
default: string;
|
|
6662
|
-
};
|
|
6663
|
-
text: {
|
|
6664
|
-
type: StringConstructor;
|
|
6665
|
-
required: true;
|
|
6666
|
-
};
|
|
6667
|
-
isAutomatic: {
|
|
6668
|
-
type: BooleanConstructor;
|
|
6669
|
-
default: boolean;
|
|
6670
|
-
};
|
|
6671
|
-
}>, {}, {
|
|
6672
|
-
defaultTranslations: {
|
|
6673
|
-
automatic_message: {
|
|
6674
|
-
'pt-br': string;
|
|
6675
|
-
en: string;
|
|
6676
|
-
es: string;
|
|
6677
|
-
};
|
|
6678
|
-
};
|
|
6679
|
-
}, {
|
|
6680
|
-
formattedText(): any;
|
|
6681
|
-
}, {}, {
|
|
6682
|
-
props: {
|
|
6683
|
-
locale: {
|
|
6684
|
-
type: StringConstructor;
|
|
6685
|
-
};
|
|
6686
|
-
translations: {
|
|
6687
|
-
type: ObjectConstructor;
|
|
6688
|
-
};
|
|
6689
|
-
};
|
|
6690
|
-
methods: {
|
|
6691
|
-
i18n(...args: any[]): any;
|
|
6692
|
-
};
|
|
6693
|
-
}, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6694
|
-
locale: {
|
|
6695
|
-
type: StringConstructor;
|
|
6696
|
-
default: string;
|
|
6697
|
-
};
|
|
6698
|
-
text: {
|
|
6699
|
-
type: StringConstructor;
|
|
6700
|
-
required: true;
|
|
6701
|
-
};
|
|
6702
|
-
isAutomatic: {
|
|
6703
|
-
type: BooleanConstructor;
|
|
6704
|
-
default: boolean;
|
|
6705
|
-
};
|
|
6706
|
-
}>> & Readonly<{}>, {
|
|
6707
|
-
locale: string;
|
|
6708
|
-
isAutomatic: boolean;
|
|
6709
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6710
|
-
UnnnicChatsMessageStatusBackdrop: DefineComponent<ExtractPropTypes< {
|
|
6711
|
-
status: {
|
|
6712
|
-
type: StringConstructor;
|
|
6713
|
-
required: true;
|
|
6714
|
-
default: string;
|
|
6715
|
-
validate(status: any): boolean;
|
|
6716
|
-
};
|
|
6717
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6718
|
-
status: {
|
|
6719
|
-
type: StringConstructor;
|
|
6720
|
-
required: true;
|
|
6721
|
-
default: string;
|
|
6722
|
-
validate(status: any): boolean;
|
|
6723
|
-
};
|
|
6724
|
-
}>> & Readonly<{}>, {
|
|
6725
|
-
status: string;
|
|
6726
|
-
}, {}, {
|
|
6727
|
-
UnnnicIconLoading: DefineComponent<ExtractPropTypes< {
|
|
6728
|
-
scheme: {
|
|
6729
|
-
type: StringConstructor;
|
|
6730
|
-
default: string;
|
|
6731
|
-
};
|
|
6732
|
-
size: {
|
|
6733
|
-
type: StringConstructor;
|
|
6734
|
-
default: string;
|
|
6735
|
-
};
|
|
6736
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6737
|
-
scheme: {
|
|
6738
|
-
type: StringConstructor;
|
|
6739
|
-
default: string;
|
|
6740
|
-
};
|
|
6741
|
-
size: {
|
|
6742
|
-
type: StringConstructor;
|
|
6743
|
-
default: string;
|
|
6744
|
-
};
|
|
6745
|
-
}>> & Readonly<{}>, {
|
|
6746
|
-
size: string;
|
|
6747
|
-
scheme: string;
|
|
6748
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6749
|
-
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6750
|
-
click: (event: Event) => any;
|
|
6751
|
-
mousedown: (event: Event) => any;
|
|
6752
|
-
mouseup: (event: Event) => any;
|
|
6753
|
-
}, string, PublicProps, Readonly<IconProps> & Readonly<{
|
|
6754
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
6755
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
6756
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
6757
|
-
}>, {
|
|
6758
|
-
size: IconSize;
|
|
6759
|
-
filled: boolean;
|
|
6760
|
-
icon: string | null;
|
|
6761
|
-
clickable: boolean;
|
|
6762
|
-
scheme: SchemeColor_2;
|
|
6763
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6764
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6765
|
-
UnnnicIconLoading: DefineComponent<ExtractPropTypes< {
|
|
6766
|
-
scheme: {
|
|
6767
|
-
type: StringConstructor;
|
|
6768
|
-
default: string;
|
|
6769
|
-
};
|
|
6770
|
-
size: {
|
|
6771
|
-
type: StringConstructor;
|
|
6772
|
-
default: string;
|
|
6773
|
-
};
|
|
6774
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6775
|
-
scheme: {
|
|
6776
|
-
type: StringConstructor;
|
|
6777
|
-
default: string;
|
|
6778
|
-
};
|
|
6779
|
-
size: {
|
|
6780
|
-
type: StringConstructor;
|
|
6781
|
-
default: string;
|
|
6782
|
-
};
|
|
6783
|
-
}>> & Readonly<{}>, {
|
|
6784
|
-
size: string;
|
|
6785
|
-
scheme: string;
|
|
6786
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6787
|
-
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6788
|
-
click: (event: Event) => any;
|
|
6789
|
-
mousedown: (event: Event) => any;
|
|
6790
|
-
mouseup: (event: Event) => any;
|
|
6791
|
-
}, string, PublicProps, Readonly<IconProps> & Readonly<{
|
|
6792
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
6793
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
6794
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
6795
|
-
}>, {
|
|
6796
|
-
size: IconSize;
|
|
6797
|
-
filled: boolean;
|
|
6798
|
-
icon: string | null;
|
|
6799
|
-
clickable: boolean;
|
|
6800
|
-
scheme: SchemeColor_2;
|
|
6801
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6802
|
-
UnnnicTooltip: {
|
|
6803
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<TooltipProps> & Readonly<{
|
|
6804
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6805
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6806
|
-
"click:close": (...args: any[]) => void;
|
|
6807
|
-
}, PublicProps, {
|
|
6808
|
-
text: string;
|
|
6809
|
-
class: string;
|
|
6810
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6811
|
-
enabled: boolean;
|
|
6812
|
-
forceOpen: boolean;
|
|
6813
|
-
maxWidth: string;
|
|
6814
|
-
enableHtml: boolean;
|
|
6815
|
-
showClose: boolean;
|
|
6816
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6817
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6818
|
-
P: {};
|
|
6819
|
-
B: {};
|
|
6820
|
-
D: {};
|
|
6821
|
-
C: {};
|
|
6822
|
-
M: {};
|
|
6823
|
-
Defaults: {};
|
|
6824
|
-
}, Readonly<TooltipProps> & Readonly<{
|
|
6825
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6826
|
-
}>, {}, {}, {}, {}, {
|
|
6827
|
-
text: string;
|
|
6828
|
-
class: string;
|
|
6829
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6830
|
-
enabled: boolean;
|
|
6831
|
-
forceOpen: boolean;
|
|
6832
|
-
maxWidth: string;
|
|
6833
|
-
enableHtml: boolean;
|
|
6834
|
-
showClose: boolean;
|
|
6835
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6836
|
-
}>;
|
|
6837
|
-
__isFragment?: never;
|
|
6838
|
-
__isTeleport?: never;
|
|
6839
|
-
__isSuspense?: never;
|
|
6840
|
-
} & ComponentOptionsBase<Readonly<TooltipProps> & Readonly<{
|
|
6841
|
-
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
6842
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6843
|
-
"click:close": (...args: any[]) => void;
|
|
6844
|
-
}, string, {
|
|
6845
|
-
text: string;
|
|
6846
|
-
class: string;
|
|
6847
|
-
side: "top" | "right" | "bottom" | "left";
|
|
6848
|
-
enabled: boolean;
|
|
6849
|
-
forceOpen: boolean;
|
|
6850
|
-
maxWidth: string;
|
|
6851
|
-
enableHtml: boolean;
|
|
6852
|
-
showClose: boolean;
|
|
6853
|
-
contentProps: Partial<TooltipContentProps>;
|
|
6854
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6855
|
-
$slots: {
|
|
6856
|
-
default?(_: {}): any;
|
|
6857
|
-
};
|
|
6858
|
-
});
|
|
6859
|
-
ReplyMessage: DefineComponent< {}, {
|
|
6860
|
-
$emit: (event: "close", ...args: any[]) => void;
|
|
6861
|
-
showClose: boolean;
|
|
6862
|
-
replyMessage: Record<string, any>;
|
|
6863
|
-
messageType: string;
|
|
6864
|
-
$props: {
|
|
6865
|
-
readonly showClose?: boolean | undefined;
|
|
6866
|
-
readonly replyMessage?: Record<string, any> | undefined;
|
|
6867
|
-
readonly messageType?: string | undefined;
|
|
6868
|
-
};
|
|
6869
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6870
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6871
|
-
|
|
6872
6141
|
export declare const UnnnicChatsUserAvatar: DefineComponent<ExtractPropTypes< {
|
|
6873
6142
|
active: {
|
|
6874
6143
|
type: BooleanConstructor;
|
|
@@ -17464,30 +16733,6 @@ labelTooltip: TooltipProps;
|
|
|
17464
16733
|
};
|
|
17465
16734
|
});
|
|
17466
16735
|
|
|
17467
|
-
export declare const UnnnicReplyMessage: DefineComponent< {}, {
|
|
17468
|
-
$emit: (event: "close", ...args: any[]) => void;
|
|
17469
|
-
showClose: boolean;
|
|
17470
|
-
replyMessage: Record<string, any>;
|
|
17471
|
-
messageType: string;
|
|
17472
|
-
$props: {
|
|
17473
|
-
readonly showClose?: boolean | undefined;
|
|
17474
|
-
readonly replyMessage?: Record<string, any> | undefined;
|
|
17475
|
-
readonly messageType?: string | undefined;
|
|
17476
|
-
};
|
|
17477
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17478
|
-
|
|
17479
|
-
export declare const unnnicReplyMessage: DefineComponent< {}, {
|
|
17480
|
-
$emit: (event: "close", ...args: any[]) => void;
|
|
17481
|
-
showClose: boolean;
|
|
17482
|
-
replyMessage: Record<string, any>;
|
|
17483
|
-
messageType: string;
|
|
17484
|
-
$props: {
|
|
17485
|
-
readonly showClose?: boolean | undefined;
|
|
17486
|
-
readonly replyMessage?: Record<string, any> | undefined;
|
|
17487
|
-
readonly messageType?: string | undefined;
|
|
17488
|
-
};
|
|
17489
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17490
|
-
|
|
17491
16736
|
export declare const UnnnicSegmentedControl: {
|
|
17492
16737
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<TabsRootProps<string | number>> & Readonly<{
|
|
17493
16738
|
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|