@farris/x-ui 0.1.0 → 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.
@@ -10,6 +10,16 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
10
10
  type: BooleanConstructor;
11
11
  default: boolean;
12
12
  };
13
+ /** 是否在未提交时将面板固定在对话框底部 */
14
+ pinned: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ /** pinned 模式下动态卡片宽度(如 '800px'),与对话区域宽度对齐 */
19
+ pinnedWidth: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
13
23
  onSubmitAnswers: {
14
24
  type: PropType<(answers: Array<{
15
25
  id: string;
@@ -17,7 +27,7 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
17
27
  }>) => void>;
18
28
  default: undefined;
19
29
  };
20
- }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('../../../vue').ComponentOptionsMixin, import('../../../vue').ComponentOptionsMixin, {}, string, import('../../../vue').PublicProps, Readonly<import('../../../vue').ExtractPropTypes<{
30
+ }>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import('../../../vue').ComponentOptionsMixin, import('../../../vue').ComponentOptionsMixin, {}, string, import('../../../vue').PublicProps, Readonly<import('../../../vue').ExtractPropTypes<{
21
31
  content: {
22
32
  type: PropType<MessageContentHitlQuestion>;
23
33
  required: true;
@@ -26,6 +36,16 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
26
36
  type: BooleanConstructor;
27
37
  default: boolean;
28
38
  };
39
+ /** 是否在未提交时将面板固定在对话框底部 */
40
+ pinned: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ /** pinned 模式下动态卡片宽度(如 '800px'),与对话区域宽度对齐 */
45
+ pinnedWidth: {
46
+ type: StringConstructor;
47
+ default: undefined;
48
+ };
29
49
  onSubmitAnswers: {
30
50
  type: PropType<(answers: Array<{
31
51
  id: string;
@@ -35,6 +55,8 @@ declare const _default: import('../../../vue').DefineComponent<import('../../../
35
55
  };
36
56
  }>> & Readonly<{}>, {
37
57
  disabled: boolean;
58
+ pinned: boolean;
59
+ pinnedWidth: string;
38
60
  onSubmitAnswers: (answers: Array<{
39
61
  id: string;
40
62
  answer: unknown;