hzzt-plus 0.0.2-dev08 → 0.0.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.
- package/dist/index.full.js +171 -101
- package/dist/index.full.min.js +14 -14
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +14 -14
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +171 -102
- package/es/component.mjs +3 -1
- package/es/component.mjs.map +1 -1
- package/es/components/confirm-password/index.d.ts +487 -0
- package/es/components/confirm-password/index.mjs +8 -0
- package/es/components/confirm-password/index.mjs.map +1 -0
- package/es/components/confirm-password/src/confirm-password.mjs +72 -0
- package/es/components/confirm-password/src/confirm-password.mjs.map +1 -0
- package/es/components/confirm-password/src/confirm-password.vue.d.ts +487 -0
- package/es/components/confirm-password/style/css.d.ts +2 -0
- package/es/components/confirm-password/style/css.mjs +3 -0
- package/es/components/confirm-password/style/css.mjs.map +1 -0
- package/es/components/confirm-password/style/index.d.ts +2 -0
- package/es/components/confirm-password/style/index.mjs +3 -0
- package/es/components/confirm-password/style/index.mjs.map +1 -0
- package/es/components/index.d.ts +1 -0
- package/es/components/index.mjs +1 -0
- package/es/components/index.mjs.map +1 -1
- package/es/components/page-size/index.d.ts +4 -4
- package/es/components/page-size/src/index.vue.d.ts +4 -4
- package/es/index.mjs +1 -0
- package/es/index.mjs.map +1 -1
- package/global.d.ts +1 -0
- package/lib/component.js +3 -1
- package/lib/component.js.map +1 -1
- package/lib/components/confirm-password/index.d.ts +487 -0
- package/lib/components/confirm-password/index.js +13 -0
- package/lib/components/confirm-password/index.js.map +1 -0
- package/lib/components/confirm-password/src/confirm-password.js +76 -0
- package/lib/components/confirm-password/src/confirm-password.js.map +1 -0
- package/lib/components/confirm-password/src/confirm-password.vue.d.ts +487 -0
- package/lib/components/confirm-password/style/css.d.ts +2 -0
- package/lib/components/confirm-password/style/css.js +6 -0
- package/lib/components/confirm-password/style/css.js.map +1 -0
- package/lib/components/confirm-password/style/index.d.ts +2 -0
- package/lib/components/confirm-password/style/index.js +6 -0
- package/lib/components/confirm-password/style/index.js.map +1 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +2 -0
- package/lib/components/index.js.map +1 -1
- package/lib/components/page-size/index.d.ts +4 -4
- package/lib/components/page-size/src/index.vue.d.ts +4 -4
- package/lib/index.js +26 -24
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/theme/hzzt-confirm-password.css +0 -0
- package/theme/src/confirm-password.scss +0 -0
- package/theme/src/index.scss +1 -0
package/lib/index.js
CHANGED
|
@@ -20,16 +20,17 @@ var index$5 = require('./components/icon/index.js');
|
|
|
20
20
|
var index$6 = require('./components/pagination/index.js');
|
|
21
21
|
var index$7 = require('./components/tooltip/index.js');
|
|
22
22
|
var index$8 = require('./components/page-size/index.js');
|
|
23
|
+
var index$9 = require('./components/confirm-password/index.js');
|
|
23
24
|
var key = require('./constants/key.js');
|
|
24
25
|
var size = require('./constants/size.js');
|
|
25
26
|
var date = require('./constants/date.js');
|
|
26
|
-
var index$
|
|
27
|
-
var index$
|
|
28
|
-
var index$
|
|
29
|
-
var index$
|
|
30
|
-
var index$
|
|
31
|
-
var index$
|
|
32
|
-
var index$
|
|
27
|
+
var index$a = require('./directives/download/index.js');
|
|
28
|
+
var index$b = require('./directives/height/index.js');
|
|
29
|
+
var index$c = require('./directives/blur/index.js');
|
|
30
|
+
var index$d = require('./directives/highlight/index.js');
|
|
31
|
+
var index$e = require('./hooks/use-locale/index.js');
|
|
32
|
+
var index$f = require('./hooks/use-size/index.js');
|
|
33
|
+
var index$g = require('./hooks/use-namespace/index.js');
|
|
33
34
|
|
|
34
35
|
const install = defaults["default"].install;
|
|
35
36
|
const version = defaults["default"].version;
|
|
@@ -49,28 +50,29 @@ exports.HzztIcon = index$5.HzztIcon;
|
|
|
49
50
|
exports.HzztPagination = index$6.HzztPagination;
|
|
50
51
|
exports.HzztTooltip = index$7.HzztTooltip;
|
|
51
52
|
exports.HzztPageSize = index$8.HzztPageSize;
|
|
53
|
+
exports.HzztConfirmPassword = index$9.HzztConfirmPassword;
|
|
52
54
|
exports.INSTALLED_KEY = key.INSTALLED_KEY;
|
|
53
55
|
exports.componentSizeMap = size.componentSizeMap;
|
|
54
56
|
exports.componentSizes = size.componentSizes;
|
|
55
57
|
exports.WEEK_DAYS = date.WEEK_DAYS;
|
|
56
58
|
exports.datePickTypes = date.datePickTypes;
|
|
57
|
-
exports.Download = index$
|
|
58
|
-
exports.Height = index$
|
|
59
|
-
exports.Blur = index$
|
|
60
|
-
exports.Highlight = index$
|
|
61
|
-
exports.buildLocaleContext = index$
|
|
62
|
-
exports.buildTranslator = index$
|
|
63
|
-
exports.localeContextKey = index$
|
|
64
|
-
exports.translate = index$
|
|
65
|
-
exports.useLocale = index$
|
|
66
|
-
exports.SIZE_INJECTION_KEY = index$
|
|
67
|
-
exports.useGlobalSize = index$
|
|
68
|
-
exports.useSizeProp = index$
|
|
69
|
-
exports.useSizeProps = index$
|
|
70
|
-
exports.defaultNamespace = index$
|
|
71
|
-
exports.namespaceContextKey = index$
|
|
72
|
-
exports.useGetDerivedNamespace = index$
|
|
73
|
-
exports.useNamespace = index$
|
|
59
|
+
exports.Download = index$a["default"];
|
|
60
|
+
exports.Height = index$b["default"];
|
|
61
|
+
exports.Blur = index$c["default"];
|
|
62
|
+
exports.Highlight = index$d["default"];
|
|
63
|
+
exports.buildLocaleContext = index$e.buildLocaleContext;
|
|
64
|
+
exports.buildTranslator = index$e.buildTranslator;
|
|
65
|
+
exports.localeContextKey = index$e.localeContextKey;
|
|
66
|
+
exports.translate = index$e.translate;
|
|
67
|
+
exports.useLocale = index$e.useLocale;
|
|
68
|
+
exports.SIZE_INJECTION_KEY = index$f.SIZE_INJECTION_KEY;
|
|
69
|
+
exports.useGlobalSize = index$f.useGlobalSize;
|
|
70
|
+
exports.useSizeProp = index$f.useSizeProp;
|
|
71
|
+
exports.useSizeProps = index$f.useSizeProps;
|
|
72
|
+
exports.defaultNamespace = index$g.defaultNamespace;
|
|
73
|
+
exports.namespaceContextKey = index$g.namespaceContextKey;
|
|
74
|
+
exports.useGetDerivedNamespace = index$g.useGetDerivedNamespace;
|
|
75
|
+
exports.useNamespace = index$g.useNamespace;
|
|
74
76
|
exports.install = install;
|
|
75
77
|
exports.version = version;
|
|
76
78
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../packages/hzzt-plus/index.ts"],"sourcesContent":["import installer from './defaults'\nexport * from '@hzzt-plus/components'\nexport * from '@hzzt-plus/constants'\nexport * from '@hzzt-plus/directives'\nexport * from '@hzzt-plus/hooks'\nexport * from './make-installer'\n\nexport const install = installer.install\nexport const version = installer.version\nexport default installer\n"],"names":["installer"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../packages/hzzt-plus/index.ts"],"sourcesContent":["import installer from './defaults'\nexport * from '@hzzt-plus/components'\nexport * from '@hzzt-plus/constants'\nexport * from '@hzzt-plus/directives'\nexport * from '@hzzt-plus/hooks'\nexport * from './make-installer'\n\nexport const install = installer.install\nexport const version = installer.version\nexport default installer\n"],"names":["installer"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMY,MAAC,OAAO,GAAGA,mBAAS,CAAC,QAAQ;AAC7B,MAAC,OAAO,GAAGA,mBAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
package/theme/src/index.scss
CHANGED