@kengic/vue 0.28.2-beta.2 → 0.28.2-beta.3

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.
@@ -15,11 +15,11 @@ export declare function _useClass(props: KgSubmitProps): {
15
15
  /**
16
16
  * 弹窗样式.
17
17
  */
18
- getClass: import("vue").ComputedRef<string>;
18
+ class$$: import("vue").ComputedRef<Record<string, boolean>>;
19
19
  /**
20
20
  * 弹窗容器样式.
21
21
  */
22
- getWrapClass: import("vue").ComputedRef<string>;
22
+ wrapClass$$: import("vue").ComputedRef<string>;
23
23
  };
24
24
  export declare function _useDefaultWidth(): {
25
25
  /**
@@ -3,6 +3,9 @@ export declare function KgVarFactory(param?: {
3
3
  }): import("vue").DefineComponent<{
4
4
  kgBackgroundGray: {
5
5
  type: import("vue").PropType<boolean>;
6
+ /**
7
+ * 子页面的组件.
8
+ */
6
9
  default: undefined;
7
10
  };
8
11
  kgFormID: import("vue").PropType<string>;
@@ -15,6 +18,9 @@ export declare function KgVarFactory(param?: {
15
18
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
19
  kgBackgroundGray: {
17
20
  type: import("vue").PropType<boolean>;
21
+ /**
22
+ * 子页面的组件.
23
+ */
18
24
  default: undefined;
19
25
  };
20
26
  kgFormID: import("vue").PropType<string>;
@@ -34,6 +40,9 @@ export declare function KgVarFactory(param?: {
34
40
  export declare const KgVar2: import("vue").DefineComponent<{
35
41
  kgBackgroundGray: {
36
42
  type: import("vue").PropType<boolean>;
43
+ /**
44
+ * 子页面的组件.
45
+ */
37
46
  default: undefined;
38
47
  };
39
48
  kgFormID: import("vue").PropType<string>;
@@ -46,6 +55,9 @@ export declare const KgVar2: import("vue").DefineComponent<{
46
55
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
56
  kgBackgroundGray: {
48
57
  type: import("vue").PropType<boolean>;
58
+ /**
59
+ * 子页面的组件.
60
+ */
49
61
  default: undefined;
50
62
  };
51
63
  kgFormID: import("vue").PropType<string>;
@@ -599,10 +599,27 @@ export interface IKgVarSubmitConfigProperties {
599
599
  /** 确认按钮的文本, 实际是一个变量名, 根据变量进行翻译. */
600
600
  textVarName?: string;
601
601
  };
602
- /** 显示方式. */
602
+ /**
603
+ * 显示方式.
604
+ */
603
605
  displayType?: {
604
- [KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE]?: {
605
- /** 要嵌入的页面位置, 是一个 CSS 选择器, 如: #submit-target-xxx. */
606
+ INLINE?: {
607
+ /**
608
+ * 是否在页面的内容区域全屏, 默认为 false.
609
+ *
610
+ * @default false
611
+ */
612
+ isFullscreen?: boolean;
613
+ /**
614
+ * 是否显示标题, 默认为 false.
615
+ *
616
+ * @default false
617
+ */
618
+ isShowTitle?: boolean;
619
+ /**
620
+ * <p>要嵌入的页面位置, 是一个 CSS 选择器, 如: #submit-target-xxx.</p>
621
+ * <p>默认嵌入到表格的底部.</p>
622
+ */
606
623
  target?: string;
607
624
  };
608
625
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.2-beta.2",
3
+ "version": "0.28.2-beta.3",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",