tuikit-atomicx-vue3 4.5.2 → 4.5.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/baseComp/Input/InputH5.vue.d.ts +1 -1
- package/dist/baseComp/Input/InputPC.vue.d.ts +1 -1
- package/dist/baseComp/Input/InputWX.vue.d.ts +1 -1
- package/dist/baseComp/Input/index.d.ts +15 -15
- package/dist/components/BarrageInput/TextEditor/TextEditor.vue.d.ts +1 -1
- package/dist/components/BarrageInput/index.d.ts +6 -6
- package/dist/components/ChatSetting/SettingItem/SettingItem.vue.d.ts +2 -2
- package/dist/components/ContactList/index.d.ts +6 -6
- package/dist/components/ConversationList/ConversationList.vue.d.ts +190 -190
- package/dist/components/ConversationList/ConversationPreview/ConversationPreview.vue.d.ts +82 -82
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.vue.d.ts +16 -16
- package/dist/components/ConversationList/ConversationSearch/ConversationSearch.vue.d.ts +36 -36
- package/dist/components/ConversationList/index.d.ts +416 -416
- package/dist/components/LiveView/PlayerControl/PlayerControl.js +145 -128
- package/dist/components/LiveView/PlayerControl/PlayerControlState.d.ts +6 -4
- package/dist/components/LiveView/PlayerControl/PlayerControlState.js +148 -122
- package/dist/components/LiveView/PlayerControl/utils/domHelpers.d.ts +2 -1
- package/dist/components/LiveView/PlayerControl/utils/domHelpers.js +7 -6
- package/dist/components/LiveView/i18n/en-US/index.d.ts +3 -0
- package/dist/components/LiveView/i18n/en-US/index.js +4 -1
- package/dist/components/LiveView/i18n/zh-CN/index.d.ts +3 -0
- package/dist/components/LiveView/i18n/zh-CN/index.js +4 -1
- package/dist/components/LiveView/index.js +78 -78
- package/dist/components/MessageInput/MessageInput.vue.d.ts +1 -1
- package/dist/components/MessageInput/TextEditor/TextEditor.vue.d.ts +1 -1
- package/dist/components/MessageInput/index.d.ts +30 -30
- package/dist/components/RoomParticipantList/useParticpantAction/useNameCardAction/index.d.ts +10 -2
- package/dist/components/Search/Search.vue.d.ts +12 -12
- package/dist/components/Search/index.d.ts +18 -18
- package/dist/components/StreamView/Layout/CustomLayout.vue.d.ts +2 -1
- package/dist/components/StreamView/Layout/FloatLayout.vue.d.ts +2 -1
- package/dist/components/StreamView/Layout/GridLayout.vue.d.ts +2 -1
- package/dist/components/StreamView/Layout/MeetingLayout.vue.d.ts +1 -1
- package/dist/components/StreamView/common/StreamList/index.vue.d.ts +1 -1
- package/dist/components/StreamView/common/StreamRegion/StreamRegionPC.vue.d.ts +2 -2
- package/dist/components/StreamView/index.d.ts +1 -1
- package/dist/components/StreamView/index.vue.d.ts +1 -1
- package/dist/hooks/useRoomEngine.d.ts +2 -2
- package/dist/hooks/useUserActions/index.d.ts +18 -2
- package/dist/hooks/useUserActions/useChangeNameCardAction/index.d.ts +9 -1
- package/dist/hooks/useUserActions/useKickUserAction.d.ts +9 -1
- package/dist/hooks/useUserActions/useTransferOwnerAction.d.ts +9 -1
- package/dist/hooks/useUserActions/useVideoAction.d.ts +9 -1
- package/dist/states/BarrageState/BarrageState.d.ts +2 -2
- package/dist/states/BattleState/BattleState.d.ts +5 -5
- package/dist/states/CoGuestState.d.ts +1 -1
- package/dist/states/LiveAudienceState.d.ts +4 -4
- package/dist/states/LiveListState/LiveListState.d.ts +2 -2
- package/dist/states/LiveSeatState/index.d.ts +6 -6
- package/dist/states/LiveSeatState/seatManager.d.ts +6 -6
- package/dist/states/RoomState/roomManager.d.ts +1 -0
- package/dist/states/RoomState/roomManager.js +38 -29
- package/dist/states/RoomState/scheduleManager.js +19 -25
- package/dist/states/SeatStore.d.ts +148 -16
- package/dist/states/UserState/userManager.d.ts +1 -1
- package/dist/styles/index.css +1 -1
- package/dist/subEntry/chat/chat.d.ts +457 -457
- package/dist/subEntry/live/server.d.ts +1 -1
- package/dist/subEntry/room/server.d.ts +1 -1
- package/package.json +3 -2
- package/src/components/LiveView/PlayerControl/PlayerControl.vue +39 -15
- package/src/components/LiveView/PlayerControl/PlayerControlState.ts +61 -18
- package/src/components/LiveView/PlayerControl/utils/domHelpers.ts +4 -4
- package/src/components/LiveView/i18n/en-US/index.ts +3 -0
- package/src/components/LiveView/i18n/zh-CN/index.ts +3 -0
- package/src/components/LiveView/index.vue +7 -3
|
@@ -49,9 +49,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
49
49
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
type: string;
|
|
52
|
+
placeholder: string;
|
|
52
53
|
disabled: boolean;
|
|
53
54
|
modelValue: string;
|
|
54
|
-
placeholder: string;
|
|
55
55
|
enterkeyhint: string;
|
|
56
56
|
maxlength: string;
|
|
57
57
|
border: boolean;
|
|
@@ -49,9 +49,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
49
49
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
type: string;
|
|
52
|
+
placeholder: string;
|
|
52
53
|
disabled: boolean;
|
|
53
54
|
modelValue: string;
|
|
54
|
-
placeholder: string;
|
|
55
55
|
enterkeyhint: string;
|
|
56
56
|
maxlength: string;
|
|
57
57
|
border: boolean;
|
|
@@ -49,9 +49,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
49
49
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
type: string;
|
|
52
|
+
placeholder: string;
|
|
52
53
|
disabled: boolean;
|
|
53
54
|
modelValue: string;
|
|
54
|
-
placeholder: string;
|
|
55
55
|
enterkeyhint: string;
|
|
56
56
|
maxlength: string;
|
|
57
57
|
border: boolean;
|
|
@@ -7,6 +7,10 @@ declare const Input: {
|
|
|
7
7
|
type: import('vue').PropType<string>;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
placeholder: {
|
|
11
|
+
type: import('vue').PropType<string>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
10
14
|
disabled: {
|
|
11
15
|
type: import('vue').PropType<boolean>;
|
|
12
16
|
default: boolean;
|
|
@@ -19,10 +23,6 @@ declare const Input: {
|
|
|
19
23
|
required: true;
|
|
20
24
|
default: string;
|
|
21
25
|
};
|
|
22
|
-
placeholder: {
|
|
23
|
-
type: import('vue').PropType<string>;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
26
|
readonly: {
|
|
27
27
|
type: import('vue').PropType<boolean>;
|
|
28
28
|
};
|
|
@@ -56,9 +56,9 @@ declare const Input: {
|
|
|
56
56
|
"update:modelValue": (...args: any[]) => void;
|
|
57
57
|
}, import('vue').PublicProps, {
|
|
58
58
|
type: string;
|
|
59
|
+
placeholder: string;
|
|
59
60
|
disabled: boolean;
|
|
60
61
|
modelValue: string;
|
|
61
|
-
placeholder: string;
|
|
62
62
|
enterkeyhint: string;
|
|
63
63
|
maxlength: string;
|
|
64
64
|
border: boolean;
|
|
@@ -78,6 +78,10 @@ declare const Input: {
|
|
|
78
78
|
type: import('vue').PropType<string>;
|
|
79
79
|
default: string;
|
|
80
80
|
};
|
|
81
|
+
placeholder: {
|
|
82
|
+
type: import('vue').PropType<string>;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
81
85
|
disabled: {
|
|
82
86
|
type: import('vue').PropType<boolean>;
|
|
83
87
|
default: boolean;
|
|
@@ -90,10 +94,6 @@ declare const Input: {
|
|
|
90
94
|
required: true;
|
|
91
95
|
default: string;
|
|
92
96
|
};
|
|
93
|
-
placeholder: {
|
|
94
|
-
type: import('vue').PropType<string>;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
97
|
readonly: {
|
|
98
98
|
type: import('vue').PropType<boolean>;
|
|
99
99
|
};
|
|
@@ -121,9 +121,9 @@ declare const Input: {
|
|
|
121
121
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
122
122
|
}>, {}, {}, {}, {}, {
|
|
123
123
|
type: string;
|
|
124
|
+
placeholder: string;
|
|
124
125
|
disabled: boolean;
|
|
125
126
|
modelValue: string;
|
|
126
|
-
placeholder: string;
|
|
127
127
|
enterkeyhint: string;
|
|
128
128
|
maxlength: string;
|
|
129
129
|
border: boolean;
|
|
@@ -140,6 +140,10 @@ declare const Input: {
|
|
|
140
140
|
type: import('vue').PropType<string>;
|
|
141
141
|
default: string;
|
|
142
142
|
};
|
|
143
|
+
placeholder: {
|
|
144
|
+
type: import('vue').PropType<string>;
|
|
145
|
+
default: string;
|
|
146
|
+
};
|
|
143
147
|
disabled: {
|
|
144
148
|
type: import('vue').PropType<boolean>;
|
|
145
149
|
default: boolean;
|
|
@@ -152,10 +156,6 @@ declare const Input: {
|
|
|
152
156
|
required: true;
|
|
153
157
|
default: string;
|
|
154
158
|
};
|
|
155
|
-
placeholder: {
|
|
156
|
-
type: import('vue').PropType<string>;
|
|
157
|
-
default: string;
|
|
158
|
-
};
|
|
159
159
|
readonly: {
|
|
160
160
|
type: import('vue').PropType<boolean>;
|
|
161
161
|
};
|
|
@@ -189,9 +189,9 @@ declare const Input: {
|
|
|
189
189
|
"update:modelValue": (...args: any[]) => void;
|
|
190
190
|
}, string, {
|
|
191
191
|
type: string;
|
|
192
|
+
placeholder: string;
|
|
192
193
|
disabled: boolean;
|
|
193
194
|
modelValue: string;
|
|
194
|
-
placeholder: string;
|
|
195
195
|
enterkeyhint: string;
|
|
196
196
|
maxlength: string;
|
|
197
197
|
border: boolean;
|
|
@@ -23,8 +23,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
23
|
onBlur?: (() => any) | undefined;
|
|
24
24
|
onFocus?: (() => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
|
-
disabled: boolean;
|
|
27
26
|
placeholder: string;
|
|
27
|
+
disabled: boolean;
|
|
28
28
|
autoFocus: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
@@ -5,6 +5,9 @@ declare const BarrageInput: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
5
5
|
type: import('vue').PropType<string>;
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
|
+
placeholder: {
|
|
9
|
+
type: import('vue').PropType<string>;
|
|
10
|
+
};
|
|
8
11
|
disabled: {
|
|
9
12
|
type: import('vue').PropType<boolean>;
|
|
10
13
|
default: boolean;
|
|
@@ -12,9 +15,6 @@ declare const BarrageInput: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
12
15
|
width: {
|
|
13
16
|
type: import('vue').PropType<string>;
|
|
14
17
|
};
|
|
15
|
-
placeholder: {
|
|
16
|
-
type: import('vue').PropType<string>;
|
|
17
|
-
};
|
|
18
18
|
autoFocus: {
|
|
19
19
|
type: import('vue').PropType<boolean>;
|
|
20
20
|
default: boolean;
|
|
@@ -47,6 +47,9 @@ declare const BarrageInput: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
47
47
|
type: import('vue').PropType<string>;
|
|
48
48
|
default: string;
|
|
49
49
|
};
|
|
50
|
+
placeholder: {
|
|
51
|
+
type: import('vue').PropType<string>;
|
|
52
|
+
};
|
|
50
53
|
disabled: {
|
|
51
54
|
type: import('vue').PropType<boolean>;
|
|
52
55
|
default: boolean;
|
|
@@ -54,9 +57,6 @@ declare const BarrageInput: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
54
57
|
width: {
|
|
55
58
|
type: import('vue').PropType<string>;
|
|
56
59
|
};
|
|
57
|
-
placeholder: {
|
|
58
|
-
type: import('vue').PropType<string>;
|
|
59
|
-
};
|
|
60
60
|
autoFocus: {
|
|
61
61
|
type: import('vue').PropType<boolean>;
|
|
62
62
|
default: boolean;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
type?: any;
|
|
3
3
|
label?: any;
|
|
4
|
+
placeholder?: any;
|
|
4
5
|
disabled?: any;
|
|
5
6
|
value?: any;
|
|
6
|
-
placeholder?: any;
|
|
7
7
|
editable?: any;
|
|
8
8
|
validator?: any;
|
|
9
9
|
rows?: any;
|
|
@@ -13,9 +13,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<{
|
|
14
14
|
type?: any;
|
|
15
15
|
label?: any;
|
|
16
|
+
placeholder?: any;
|
|
16
17
|
disabled?: any;
|
|
17
18
|
value?: any;
|
|
18
|
-
placeholder?: any;
|
|
19
19
|
editable?: any;
|
|
20
20
|
validator?: any;
|
|
21
21
|
rows?: any;
|
|
@@ -256,13 +256,13 @@ declare const ContactList: import('vue').DefineComponent<import('vue').ExtractPr
|
|
|
256
256
|
activeContactItem: {
|
|
257
257
|
type: import('vue').PropType<import('../..').ContactGroupItem>;
|
|
258
258
|
};
|
|
259
|
-
groupConfig: {
|
|
260
|
-
type: import('vue').PropType<Partial<Record<import('../..').ContactItemType, import('../..').CustomGroupConfig>>>;
|
|
261
|
-
};
|
|
262
259
|
emptyText: {
|
|
263
260
|
type: import('vue').PropType<string>;
|
|
264
261
|
default: undefined;
|
|
265
262
|
};
|
|
263
|
+
groupConfig: {
|
|
264
|
+
type: import('vue').PropType<Partial<Record<import('../..').ContactItemType, import('../..').CustomGroupConfig>>>;
|
|
265
|
+
};
|
|
266
266
|
ContactItem: {
|
|
267
267
|
type: import('vue').PropType<import('vue').Component>;
|
|
268
268
|
default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -352,13 +352,13 @@ declare const ContactList: import('vue').DefineComponent<import('vue').ExtractPr
|
|
|
352
352
|
activeContactItem: {
|
|
353
353
|
type: import('vue').PropType<import('../..').ContactGroupItem>;
|
|
354
354
|
};
|
|
355
|
-
groupConfig: {
|
|
356
|
-
type: import('vue').PropType<Partial<Record<import('../..').ContactItemType, import('../..').CustomGroupConfig>>>;
|
|
357
|
-
};
|
|
358
355
|
emptyText: {
|
|
359
356
|
type: import('vue').PropType<string>;
|
|
360
357
|
default: undefined;
|
|
361
358
|
};
|
|
359
|
+
groupConfig: {
|
|
360
|
+
type: import('vue').PropType<Partial<Record<import('../..').ContactItemType, import('../..').CustomGroupConfig>>>;
|
|
361
|
+
};
|
|
362
362
|
ContactItem: {
|
|
363
363
|
type: import('vue').PropType<import('vue').Component>;
|
|
364
364
|
default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|