@delta-comic/ui 0.0.3 → 0.0.5
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -11
- package/dist/index.js.map +1 -1
- package/dist/lib/components/DcPopup.vue.d.ts +2 -0
- package/dist/lib/form/components/DcFormDate.vue.d.ts +2 -2
- package/dist/lib/form/components/DcFormDateRange.vue.d.ts +2 -2
- package/dist/lib/form/row.d.ts +2 -2
- package/dist/pack.tgz +0 -0
- package/package.json +3 -3
|
@@ -29,6 +29,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
29
29
|
onClosed?: (() => any) | undefined;
|
|
30
30
|
"onUpdate:show"?: ((value: boolean) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
|
+
closeOnClickOverlay: boolean;
|
|
33
|
+
overlay: boolean;
|
|
32
34
|
position: import('vant').PopupPosition;
|
|
33
35
|
noBorder: boolean;
|
|
34
36
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -6,8 +6,8 @@ type __VLS_PublicProps = {
|
|
|
6
6
|
modelValue: SingleResult<Type.Date>;
|
|
7
7
|
} & __VLS_Props;
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (value:
|
|
9
|
+
"update:modelValue": (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
"onUpdate:modelValue"?: ((value:
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
13
|
export default _default;
|
|
@@ -6,8 +6,8 @@ type __VLS_PublicProps = {
|
|
|
6
6
|
modelValue: SingleResult<Type.DateRange>;
|
|
7
7
|
} & __VLS_Props;
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (value: [from:
|
|
9
|
+
"update:modelValue": (value: [from: string, to: string]) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
"onUpdate:modelValue"?: ((value: [from:
|
|
11
|
+
"onUpdate:modelValue"?: ((value: [from: string, to: string]) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
13
|
export default _default;
|
package/dist/lib/form/row.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface DateRange extends Base {
|
|
|
51
51
|
type: 'dateRange';
|
|
52
52
|
format: string;
|
|
53
53
|
time?: boolean;
|
|
54
|
-
defaultValue?: DefaultValue['
|
|
54
|
+
defaultValue?: DefaultValue['dateRange'];
|
|
55
55
|
}
|
|
56
56
|
export interface Pairs extends Base {
|
|
57
57
|
type: 'pairs';
|
|
@@ -64,7 +64,7 @@ export interface DefaultValue {
|
|
|
64
64
|
radio: string;
|
|
65
65
|
checkbox: string[];
|
|
66
66
|
switch: boolean;
|
|
67
|
-
date:
|
|
67
|
+
date: string;
|
|
68
68
|
pairs: {
|
|
69
69
|
key: string;
|
|
70
70
|
value: string;
|
package/dist/pack.tgz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delta-comic/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "空阙虱楼",
|
|
5
5
|
"homepage": "https://github.com/delta-comic/delta-comic-core",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"vant": "^4.9",
|
|
61
61
|
"vue": "^3.5",
|
|
62
62
|
"vue-router": "^5.0",
|
|
63
|
+
"@delta-comic/core": "0.3.0",
|
|
63
64
|
"@delta-comic/model": "0.0.2",
|
|
64
|
-
"@delta-comic/utils": "0.0.3"
|
|
65
|
-
"@delta-comic/core": "0.2.1"
|
|
65
|
+
"@delta-comic/utils": "0.0.3"
|
|
66
66
|
},
|
|
67
67
|
"release": {
|
|
68
68
|
"tagFormat": "ui-${version}"
|