@farris/x-ui 0.1.1 → 0.1.2
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/bubble/src/components/bubble-think/bubble-think.props.d.ts +1 -1
- package/bubble/src/composition/types.d.ts +10 -0
- package/bubble/src/composition/use-widget-content.d.ts +7 -1
- package/carousel/src/components/carousel-item.component.d.ts +1 -1
- package/farris.x-ui.esm.js +1911 -1847
- package/farris.x-ui.umd.cjs +46 -46
- package/hitl-question/src/hitl-question.component.d.ts +11 -0
- package/index.css +1 -1
- package/package.json +1 -1
- package/started-todo/src/started-todo.component.d.ts +27 -0
- package/started-todo/src/started-todo.props.d.ts +18 -0
- package/todo/src/composition/type.d.ts +8 -0
|
@@ -15,6 +15,11 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
|
|
|
15
15
|
type: BooleanConstructor;
|
|
16
16
|
default: boolean;
|
|
17
17
|
};
|
|
18
|
+
/** pinned 模式下动态卡片宽度(如 '800px'),与对话区域宽度对齐 */
|
|
19
|
+
pinnedWidth: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
18
23
|
onSubmitAnswers: {
|
|
19
24
|
type: PropType<(answers: Array<{
|
|
20
25
|
id: string;
|
|
@@ -36,6 +41,11 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
|
|
|
36
41
|
type: BooleanConstructor;
|
|
37
42
|
default: boolean;
|
|
38
43
|
};
|
|
44
|
+
/** pinned 模式下动态卡片宽度(如 '800px'),与对话区域宽度对齐 */
|
|
45
|
+
pinnedWidth: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: undefined;
|
|
48
|
+
};
|
|
39
49
|
onSubmitAnswers: {
|
|
40
50
|
type: PropType<(answers: Array<{
|
|
41
51
|
id: string;
|
|
@@ -46,6 +56,7 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
|
|
|
46
56
|
}>> & Readonly<{}>, {
|
|
47
57
|
disabled: boolean;
|
|
48
58
|
pinned: boolean;
|
|
59
|
+
pinnedWidth: string;
|
|
49
60
|
onSubmitAnswers: (answers: Array<{
|
|
50
61
|
id: string;
|
|
51
62
|
answer: unknown;
|