xrk-components 0.3.6 → 0.3.9

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.
@@ -0,0 +1,4 @@
1
+ import { DefineComponent } from 'vue';
2
+ export declare const BaseConfigProvider: DefineComponent<any, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
3
+ [x: string]: any;
4
+ }>;
@@ -7,6 +7,7 @@ declare const _default: import("vue").DefineComponent<{
7
7
  trigger: {
8
8
  type: StringConstructor;
9
9
  required: false;
10
+ default: string;
10
11
  };
11
12
  transition: {
12
13
  type: StringConstructor;
@@ -56,6 +57,7 @@ declare const _default: import("vue").DefineComponent<{
56
57
  trigger: {
57
58
  type: StringConstructor;
58
59
  required: false;
60
+ default: string;
59
61
  };
60
62
  transition: {
61
63
  type: StringConstructor;
@@ -96,6 +98,7 @@ declare const _default: import("vue").DefineComponent<{
96
98
  };
97
99
  }>>, {
98
100
  popperClass: string;
101
+ trigger: string;
99
102
  transition: string;
100
103
  disabled: boolean;
101
104
  enterable: boolean;
@@ -4,7 +4,7 @@ export * from './components';
4
4
  export * from './functions';
5
5
  export * from './types';
6
6
  declare const _default: {
7
- version: string;
7
+ version: any;
8
8
  install: (app: App<any>) => void;
9
9
  };
10
10
  export default _default;
@@ -0,0 +1 @@
1
+ export declare const setGlobalNamespace: (namespace?: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xrk-components",
3
- "version": "0.3.6",
3
+ "version": "0.3.9",
4
4
  "description": "",
5
5
  "main": "lib/index.esm.js",
6
6
  "typings": "lib/packages/index.d.ts",
@@ -23,7 +23,9 @@
23
23
  "acorn-jsx": "^5.3.2",
24
24
  "autoprefixer": "^10.4.7",
25
25
  "css-loader": "^6.7.1",
26
+ "element-plus": "^2.2.8",
26
27
  "html-webpack-plugin": "^5.5.0",
28
+ "patch-package": "^6.4.7",
27
29
  "rollup": "^2.75.7",
28
30
  "rollup-plugin-babel": "^4.4.0",
29
31
  "rollup-plugin-clear": "^2.0.7",
@@ -35,12 +37,11 @@
35
37
  "style-loader": "^3.3.1",
36
38
  "ts-loader": "^9.3.1",
37
39
  "typescript": "^4.7.4",
40
+ "vue": "^3.2.27",
38
41
  "vue-loader": "^17.0.0",
39
42
  "webpack": "^5.73.0",
40
43
  "webpack-cli": "^4.10.0",
41
44
  "webpack-dev-server": "^4.9.3",
42
- "element-plus": "^2.2.8",
43
- "vue": "^3.2.27",
44
45
  "xrk-tools": "^1.0.27"
45
46
  },
46
47
  "dependencies": {},
package/tsconfig.json CHANGED
@@ -22,6 +22,8 @@
22
22
  "example/**/*.ts",
23
23
  "example/**/*.tsx",
24
24
  "example/**/*.vue",
25
+ "tools/**/*.ts",
26
+ "tools/**/*.tsx",
25
27
  "typings/**/*.ts"
26
28
  ],
27
29
  "exclude": ["node_modules", "@type/**/*.d.ts"]