@kengic/vue 0.26.6-beta.52 → 0.26.6-beta.54

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,7 +15,6 @@ declare const _default: import("vue").DefineComponent<{
15
15
  kgSpan: import("vue").PropType<number>;
16
16
  kgPlaceholder: import("vue").PropType<string>;
17
17
  kgMode: import("vue").PropType<"multiple" | "tags">;
18
- /** 初始. */
19
18
  kgShowLabel: {
20
19
  type: import("vue").PropType<boolean>;
21
20
  default: boolean;
@@ -57,7 +56,6 @@ declare const _default: import("vue").DefineComponent<{
57
56
  kgSpan: import("vue").PropType<number>;
58
57
  kgPlaceholder: import("vue").PropType<string>;
59
58
  kgMode: import("vue").PropType<"multiple" | "tags">;
60
- /** 初始. */
61
59
  kgShowLabel: {
62
60
  type: import("vue").PropType<boolean>;
63
61
  default: boolean;
@@ -131,8 +131,8 @@ export declare const getProps: () => {
131
131
  default: undefined;
132
132
  };
133
133
  okButtonProps: PropType<Partial<ExtractPropTypes<{
134
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
135
134
  prefixCls: StringConstructor;
135
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
136
136
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
137
137
  htmlType: {
138
138
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -180,8 +180,8 @@ export declare const getProps: () => {
180
180
  };
181
181
  }>>>;
182
182
  cancelButtonProps: PropType<Partial<ExtractPropTypes<{
183
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
184
183
  prefixCls: StringConstructor;
184
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
185
185
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
186
186
  htmlType: {
187
187
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -397,8 +397,8 @@ declare const _default: import("vue").DefineComponent<{
397
397
  default: undefined;
398
398
  };
399
399
  okButtonProps: PropType<Partial<ExtractPropTypes<{
400
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
401
400
  prefixCls: StringConstructor;
401
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
402
402
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
403
403
  htmlType: {
404
404
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -446,8 +446,8 @@ declare const _default: import("vue").DefineComponent<{
446
446
  };
447
447
  }>>>;
448
448
  cancelButtonProps: PropType<Partial<ExtractPropTypes<{
449
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
450
449
  prefixCls: StringConstructor;
450
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
451
451
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
452
452
  htmlType: {
453
453
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -661,8 +661,8 @@ declare const _default: import("vue").DefineComponent<{
661
661
  default: undefined;
662
662
  };
663
663
  okButtonProps: PropType<Partial<ExtractPropTypes<{
664
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
665
664
  prefixCls: StringConstructor;
665
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
666
666
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
667
667
  htmlType: {
668
668
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -710,8 +710,8 @@ declare const _default: import("vue").DefineComponent<{
710
710
  };
711
711
  }>>>;
712
712
  cancelButtonProps: PropType<Partial<ExtractPropTypes<{
713
- /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
714
713
  prefixCls: StringConstructor;
714
+ /** 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象. */
715
715
  type: PropType<import("ant-design-vue/lib/button").ButtonType>;
716
716
  htmlType: {
717
717
  type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
@@ -808,9 +808,9 @@ declare const _default: import("vue").DefineComponent<{
808
808
  mask: boolean;
809
809
  keyboard: boolean;
810
810
  focusTriggerAfterClose: boolean;
811
+ kgIsDragToMove: boolean;
811
812
  kgFullHeight: boolean;
812
813
  kgIsDefaultFullscreen: boolean;
813
- kgIsDragToMove: boolean;
814
814
  kgIsDragToResize: boolean;
815
815
  kgIsShowFullscreenButton: boolean;
816
816
  kgMaxHeight: number;
@@ -0,0 +1,12 @@
1
+ import { ComputedRef, Ref } from 'vue';
2
+ /**
3
+ * 拖拽改变位置.
4
+ *
5
+ * @param param.getProps 组件参数.
6
+ * @param param.domRef 页面特殊元素对象.
7
+ */
8
+ export declare function useDragToMove(param: {
9
+ domRef: Ref<HTMLDivElement | null>;
10
+ getKgIsDragToMove: ComputedRef<boolean>;
11
+ getVisible: ComputedRef<boolean>;
12
+ }): void;
@@ -1,15 +1,5 @@
1
1
  import { Ref } from 'vue';
2
- import { IKgModalProps } from './KgModal';
3
- /**
4
- * 拖拽改变位置.
5
- *
6
- * @param param.getProps 组件参数.
7
- * @param param.domRef 页面特殊元素对象.
8
- */
9
- export declare function useDragToMove(param: {
10
- domRef: Ref<HTMLDivElement | null>;
11
- getProps: Ref<IKgModalProps>;
12
- }): void;
2
+ import { IKgModalProps } from '../KgModal';
13
3
  /**
14
4
  * 拖拽改变大小.
15
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.26.6-beta.52",
3
+ "version": "0.26.6-beta.54",
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",
@@ -39,7 +39,7 @@
39
39
  "@iconify-icons/mdi": "1.2.48",
40
40
  "@iconify-icons/ph": "1.2.5",
41
41
  "@iconify/vue": "4.1.1",
42
- "@kengic/core": "6.0.1-beta.55",
42
+ "@kengic/core": "6.0.1-beta.57",
43
43
  "@kengic/pont": "1.2.17-beta.1",
44
44
  "@rys-fe/vite-plugin-theme": "0.8.6",
45
45
  "@thymine/xunee": "0.4.9-beta.8",
@@ -74,6 +74,7 @@
74
74
  "rimraf": "3.0.2",
75
75
  "rollup": "2.79.1",
76
76
  "rollup-plugin-visualizer": "5.8.3",
77
+ "screenfull": "6.0.2",
77
78
  "semver": "7.5.4",
78
79
  "store": "2.0.12",
79
80
  "tsx": "3.12.3",