persagy-vant 0.0.30 → 0.0.32
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/README.md +11 -12
- package/bin/persagy-vant.mjs +63 -0
- package/es/cell/Cell.d.ts +34 -1
- package/es/cell/Cell.mjs +48 -12
- package/es/cell/index.css +1 -1
- package/es/cell/index.d.ts +20 -1
- package/es/cell/index.less +19 -0
- package/es/cell/var.less +1 -1
- package/es/collapse-item/CollapseItem.d.ts +25 -0
- package/es/collapse-item/index.d.ts +18 -0
- package/es/content-panel/ContentPanel.d.ts +46 -0
- package/es/content-panel/ContentPanel.mjs +72 -0
- package/es/content-panel/index.css +1 -0
- package/es/content-panel/index.d.ts +33 -0
- package/es/content-panel/index.less +54 -0
- package/es/content-panel/index.mjs +8 -0
- package/es/content-panel/style/index.mjs +11 -0
- package/es/content-panel/style/less.mjs +11 -0
- package/es/content-panel/var.css +0 -0
- package/es/content-panel/var.less +3 -0
- package/es/dialog/Dialog.d.ts +4 -0
- package/es/dialog/Dialog.mjs +14 -1
- package/es/dialog/function-call.d.ts +2 -0
- package/es/dialog/types.d.ts +2 -0
- package/es/field/Field.d.ts +25 -0
- package/es/field/Field.mjs +1 -1
- package/es/field/index.d.ts +18 -0
- package/es/index.d.ts +6 -1
- package/es/index.mjs +16 -1
- package/es/info-card/InfoCard.d.ts +1 -0
- package/es/info-card/InfoCard.mjs +1 -0
- package/es/label/Label.d.ts +67 -0
- package/es/label/Label.mjs +22 -7
- package/es/label/index.css +1 -1
- package/es/label/index.d.ts +45 -0
- package/es/label/index.less +19 -0
- package/es/label/var.less +4 -1
- package/es/loading/Loading.mjs +18 -21
- package/es/material-action-bar/MaterialActionBar.d.ts +66 -0
- package/es/material-action-bar/MaterialActionBar.mjs +132 -0
- package/es/material-action-bar/index.css +1 -0
- package/es/material-action-bar/index.d.ts +58 -0
- package/es/material-action-bar/index.less +33 -0
- package/es/material-action-bar/index.mjs +8 -0
- package/es/material-action-bar/style/index.mjs +19 -0
- package/es/material-action-bar/style/less.mjs +19 -0
- package/es/material-add/MaterialAdd.mjs +12 -7
- package/es/material-add/index.css +1 -1
- package/es/material-add/index.less +7 -5
- package/es/material-add/style/index.mjs +7 -0
- package/es/material-add/style/less.mjs +7 -0
- package/es/material-detail/MaterialDetail.d.ts +64 -0
- package/es/material-detail/MaterialDetail.mjs +192 -0
- package/es/material-detail/index.css +1 -0
- package/es/material-detail/index.d.ts +40 -0
- package/es/material-detail/index.less +20 -0
- package/es/material-detail/index.mjs +8 -0
- package/es/material-detail/style/index.mjs +11 -0
- package/es/material-detail/style/less.mjs +11 -0
- package/es/material-display-bar/MaterialDisplayBar.d.ts +159 -0
- package/es/material-display-bar/MaterialDisplayBar.mjs +109 -0
- package/es/material-display-bar/index.css +1 -0
- package/es/material-display-bar/index.d.ts +103 -0
- package/es/material-display-bar/index.less +113 -0
- package/es/material-display-bar/index.mjs +8 -0
- package/es/material-display-bar/style/index.mjs +11 -0
- package/es/material-display-bar/style/less.mjs +11 -0
- package/es/material-display-bar/var.css +0 -0
- package/es/material-display-bar/var.less +12 -0
- package/es/rate/RateCell.mjs +4 -1
- package/es/rate/index.css +1 -1
- package/es/rate/index.less +16 -3
- package/es/search/Search.d.ts +14 -1
- package/es/search/Search.mjs +5 -3
- package/es/search/index.css +1 -1
- package/es/search/index.d.ts +9 -0
- package/es/search/index.less +10 -0
- package/es/search/types.d.ts +1 -0
- package/es/step/index.css +1 -1
- package/es/step/var.less +2 -2
- package/es/style/base.css +1 -1
- package/es/style/css-variables.css +1 -1
- package/es/style/var.less +1 -1
- package/es/title-bar/TitleBar.d.ts +85 -0
- package/es/title-bar/TitleBar.mjs +62 -0
- package/es/title-bar/index.css +1 -0
- package/es/title-bar/index.d.ts +60 -0
- package/es/title-bar/index.less +25 -0
- package/es/title-bar/index.mjs +8 -0
- package/es/title-bar/style/index.mjs +4 -0
- package/es/title-bar/style/less.mjs +4 -0
- package/es/title-bar/var.css +0 -0
- package/es/title-bar/var.less +6 -0
- package/es/tree-select/TreeSelect.d.ts +13 -0
- package/es/tree-select/TreeSelect.mjs +4 -2
- package/es/tree-select/index.css +1 -1
- package/es/tree-select/index.d.ts +9 -0
- package/es/tree-select/index.less +6 -0
- package/lib/cell/Cell.d.ts +34 -1
- package/lib/cell/Cell.js +46 -10
- package/lib/cell/index.css +1 -1
- package/lib/cell/index.d.ts +20 -1
- package/lib/cell/index.less +19 -0
- package/lib/cell/var.less +1 -1
- package/lib/collapse-item/CollapseItem.d.ts +25 -0
- package/lib/collapse-item/index.d.ts +18 -0
- package/lib/content-panel/ContentPanel.d.ts +46 -0
- package/lib/content-panel/ContentPanel.js +91 -0
- package/lib/content-panel/index.css +1 -0
- package/lib/content-panel/index.d.ts +33 -0
- package/lib/content-panel/index.js +37 -0
- package/lib/content-panel/index.less +54 -0
- package/lib/content-panel/style/index.js +11 -0
- package/lib/content-panel/style/less.js +11 -0
- package/lib/content-panel/var.css +0 -0
- package/lib/content-panel/var.less +3 -0
- package/lib/dialog/Dialog.d.ts +4 -0
- package/lib/dialog/Dialog.js +13 -0
- package/lib/dialog/function-call.d.ts +2 -0
- package/lib/dialog/types.d.ts +2 -0
- package/lib/dog1.jpg +0 -0
- package/lib/dog2.jpg +0 -0
- package/lib/dog3.jpg +0 -0
- package/lib/field/Field.d.ts +25 -0
- package/lib/field/Field.js +1 -1
- package/lib/field/index.d.ts +18 -0
- package/lib/index.css +1 -1
- package/lib/index.d.ts +6 -1
- package/lib/index.js +16 -1
- package/lib/index.less +6 -1
- package/lib/info-card/InfoCard.d.ts +1 -0
- package/lib/info-card/InfoCard.js +1 -0
- package/lib/label/Label.d.ts +67 -0
- package/lib/label/Label.js +21 -6
- package/lib/label/index.css +1 -1
- package/lib/label/index.d.ts +45 -0
- package/lib/label/index.less +19 -0
- package/lib/label/var.less +4 -1
- package/lib/loading/Loading.js +18 -21
- package/lib/material-action-bar/MaterialActionBar.d.ts +66 -0
- package/lib/material-action-bar/MaterialActionBar.js +151 -0
- package/lib/material-action-bar/index.css +1 -0
- package/lib/material-action-bar/index.d.ts +58 -0
- package/lib/material-action-bar/index.js +37 -0
- package/lib/material-action-bar/index.less +33 -0
- package/lib/material-action-bar/style/index.js +19 -0
- package/lib/material-action-bar/style/less.js +19 -0
- package/lib/material-add/MaterialAdd.js +12 -7
- package/lib/material-add/index.css +1 -1
- package/lib/material-add/index.less +7 -5
- package/lib/material-add/style/index.js +7 -0
- package/lib/material-add/style/less.js +7 -0
- package/lib/material-detail/MaterialDetail.d.ts +64 -0
- package/lib/material-detail/MaterialDetail.js +211 -0
- package/lib/material-detail/index.css +1 -0
- package/lib/material-detail/index.d.ts +40 -0
- package/lib/material-detail/index.js +37 -0
- package/lib/material-detail/index.less +20 -0
- package/lib/material-detail/style/index.js +11 -0
- package/lib/material-detail/style/less.js +11 -0
- package/lib/material-display-bar/MaterialDisplayBar.d.ts +159 -0
- package/lib/material-display-bar/MaterialDisplayBar.js +128 -0
- package/lib/material-display-bar/index.css +1 -0
- package/lib/material-display-bar/index.d.ts +103 -0
- package/lib/material-display-bar/index.js +37 -0
- package/lib/material-display-bar/index.less +113 -0
- package/lib/material-display-bar/style/index.js +11 -0
- package/lib/material-display-bar/style/less.js +11 -0
- package/lib/material-display-bar/var.css +0 -0
- package/lib/material-display-bar/var.less +12 -0
- package/lib/rate/RateCell.js +4 -1
- package/lib/rate/index.css +1 -1
- package/lib/rate/index.less +16 -3
- package/lib/search/Search.d.ts +14 -1
- package/lib/search/Search.js +5 -3
- package/lib/search/index.css +1 -1
- package/lib/search/index.d.ts +9 -0
- package/lib/search/index.less +10 -0
- package/lib/search/types.d.ts +1 -0
- package/lib/step/index.css +1 -1
- package/lib/step/var.less +2 -2
- package/lib/style/base.css +1 -1
- package/lib/style/css-variables.css +1 -1
- package/lib/style/var.less +1 -1
- package/lib/title-bar/TitleBar.d.ts +85 -0
- package/lib/title-bar/TitleBar.js +81 -0
- package/lib/title-bar/index.css +1 -0
- package/lib/title-bar/index.d.ts +60 -0
- package/lib/title-bar/index.js +37 -0
- package/lib/title-bar/index.less +25 -0
- package/lib/title-bar/style/index.js +4 -0
- package/lib/title-bar/style/less.js +4 -0
- package/lib/title-bar/var.css +0 -0
- package/lib/title-bar/var.less +6 -0
- package/lib/tree-select/TreeSelect.d.ts +13 -0
- package/lib/tree-select/TreeSelect.js +3 -1
- package/lib/tree-select/index.css +1 -1
- package/lib/tree-select/index.d.ts +9 -0
- package/lib/tree-select/index.less +6 -0
- package/lib/vant.cjs.js +1641 -1218
- package/lib/vant.es.js +1641 -1218
- package/lib/vant.js +1641 -1218
- package/lib/vant.min.js +1 -1
- package/lib/web-types.json +1 -1
- package/package.json +6 -2
- package/skills/use-persagy-vant/references/business-component-catalog.md +8 -3
- package/skills/use-persagy-vant/references/component-catalog.md +7 -4
- package/skills/use-persagy-vant/references/component-documentation.md +1 -1
- package/skills/use-persagy-vant/references/design-interaction-baseline.md +3 -3
- package/skills/use-persagy-vant/references/page-recipes.md +18 -5
- package/skills/use-persagy-vant/references/reuse-policy.md +1 -1
- package/skills/use-persagy-vant/references/usage-patterns.md +9 -1
|
@@ -4,12 +4,18 @@ export declare const CollapseItem: import("../utils").WithInstall<import("vue").
|
|
|
4
4
|
title: (NumberConstructor | StringConstructor)[];
|
|
5
5
|
value: (NumberConstructor | StringConstructor)[];
|
|
6
6
|
label: (NumberConstructor | StringConstructor)[];
|
|
7
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
7
8
|
avatar: StringConstructor;
|
|
8
9
|
rightAvatar: StringConstructor;
|
|
9
10
|
tags: import("vue").PropType<import("../utils").Numeric[]>;
|
|
10
11
|
titleIcon: StringConstructor;
|
|
11
12
|
rightIcon: StringConstructor;
|
|
12
13
|
note: (NumberConstructor | StringConstructor)[];
|
|
14
|
+
noteBold: BooleanConstructor;
|
|
15
|
+
noteClickable: BooleanConstructor;
|
|
16
|
+
noteTo: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
17
|
+
noteUrl: StringConstructor;
|
|
18
|
+
noteReplace: BooleanConstructor;
|
|
13
19
|
badge: (NumberConstructor | StringConstructor)[];
|
|
14
20
|
leftSelect: {
|
|
15
21
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -24,6 +30,7 @@ export declare const CollapseItem: import("../utils").WithInstall<import("vue").
|
|
|
24
30
|
default: string;
|
|
25
31
|
};
|
|
26
32
|
blueMark: BooleanConstructor;
|
|
33
|
+
titleBold: BooleanConstructor;
|
|
27
34
|
center: BooleanConstructor;
|
|
28
35
|
isLink: BooleanConstructor;
|
|
29
36
|
border: {
|
|
@@ -60,12 +67,18 @@ export declare const CollapseItem: import("../utils").WithInstall<import("vue").
|
|
|
60
67
|
title: (NumberConstructor | StringConstructor)[];
|
|
61
68
|
value: (NumberConstructor | StringConstructor)[];
|
|
62
69
|
label: (NumberConstructor | StringConstructor)[];
|
|
70
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
63
71
|
avatar: StringConstructor;
|
|
64
72
|
rightAvatar: StringConstructor;
|
|
65
73
|
tags: import("vue").PropType<import("../utils").Numeric[]>;
|
|
66
74
|
titleIcon: StringConstructor;
|
|
67
75
|
rightIcon: StringConstructor;
|
|
68
76
|
note: (NumberConstructor | StringConstructor)[];
|
|
77
|
+
noteBold: BooleanConstructor;
|
|
78
|
+
noteClickable: BooleanConstructor;
|
|
79
|
+
noteTo: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
80
|
+
noteUrl: StringConstructor;
|
|
81
|
+
noteReplace: BooleanConstructor;
|
|
69
82
|
badge: (NumberConstructor | StringConstructor)[];
|
|
70
83
|
leftSelect: {
|
|
71
84
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -80,6 +93,7 @@ export declare const CollapseItem: import("../utils").WithInstall<import("vue").
|
|
|
80
93
|
default: string;
|
|
81
94
|
};
|
|
82
95
|
blueMark: BooleanConstructor;
|
|
96
|
+
titleBold: BooleanConstructor;
|
|
83
97
|
center: BooleanConstructor;
|
|
84
98
|
isLink: BooleanConstructor;
|
|
85
99
|
border: {
|
|
@@ -113,10 +127,14 @@ export declare const CollapseItem: import("../utils").WithInstall<import("vue").
|
|
|
113
127
|
}>>, {
|
|
114
128
|
required: boolean;
|
|
115
129
|
center: boolean;
|
|
130
|
+
noteBold: boolean;
|
|
131
|
+
noteClickable: boolean;
|
|
132
|
+
noteReplace: boolean;
|
|
116
133
|
leftSelect: boolean | undefined;
|
|
117
134
|
rightSelect: boolean | undefined;
|
|
118
135
|
selectType: import("..").CellSelectType;
|
|
119
136
|
blueMark: boolean;
|
|
137
|
+
titleBold: boolean;
|
|
120
138
|
isLink: boolean;
|
|
121
139
|
border: boolean;
|
|
122
140
|
errorBorder: boolean;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { type ExtractPropTypes } from 'vue';
|
|
2
|
+
declare const contentPanelProps: {
|
|
3
|
+
show: BooleanConstructor;
|
|
4
|
+
title: StringConstructor;
|
|
5
|
+
confirmText: {
|
|
6
|
+
type: import("vue").PropType<string>;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
showFooter: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: true;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare type ContentPanelProps = ExtractPropTypes<typeof contentPanelProps>;
|
|
15
|
+
declare const _default: import("vue").DefineComponent<{
|
|
16
|
+
show: BooleanConstructor;
|
|
17
|
+
title: StringConstructor;
|
|
18
|
+
confirmText: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
showFooter: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: true;
|
|
25
|
+
};
|
|
26
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "update:show" | "confirm")[], "close" | "update:show" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
27
|
+
show: BooleanConstructor;
|
|
28
|
+
title: StringConstructor;
|
|
29
|
+
confirmText: {
|
|
30
|
+
type: import("vue").PropType<string>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
showFooter: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: true;
|
|
36
|
+
};
|
|
37
|
+
}>> & {
|
|
38
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
show: boolean;
|
|
43
|
+
confirmText: string;
|
|
44
|
+
showFooter: boolean;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { defineComponent, createVNode as _createVNode } from "vue";
|
|
2
|
+
import { createNamespace, makeStringProp, truthProp } from "../utils/index.mjs";
|
|
3
|
+
import { ActionSheet } from "../action-sheet/index.mjs";
|
|
4
|
+
import { NavBar } from "../nav-bar/index.mjs";
|
|
5
|
+
import { Icon } from "../icon/index.mjs";
|
|
6
|
+
import { Button } from "../button/index.mjs";
|
|
7
|
+
const [name, bem] = createNamespace("content-panel");
|
|
8
|
+
const contentPanelProps = {
|
|
9
|
+
show: Boolean,
|
|
10
|
+
title: String,
|
|
11
|
+
confirmText: makeStringProp("\u6211\u5DF2\u77E5\u6653"),
|
|
12
|
+
showFooter: truthProp
|
|
13
|
+
};
|
|
14
|
+
var stdin_default = defineComponent({
|
|
15
|
+
name,
|
|
16
|
+
props: contentPanelProps,
|
|
17
|
+
emits: ["update:show", "confirm", "close"],
|
|
18
|
+
setup(props, {
|
|
19
|
+
emit,
|
|
20
|
+
slots
|
|
21
|
+
}) {
|
|
22
|
+
const close = () => {
|
|
23
|
+
emit("update:show", false);
|
|
24
|
+
emit("close");
|
|
25
|
+
};
|
|
26
|
+
const confirm = () => {
|
|
27
|
+
emit("confirm");
|
|
28
|
+
close();
|
|
29
|
+
};
|
|
30
|
+
return () => _createVNode(ActionSheet, {
|
|
31
|
+
"show": props.show,
|
|
32
|
+
"class": bem(),
|
|
33
|
+
"onUpdate:show": (show) => {
|
|
34
|
+
emit("update:show", show);
|
|
35
|
+
if (!show)
|
|
36
|
+
emit("close");
|
|
37
|
+
}
|
|
38
|
+
}, {
|
|
39
|
+
default: () => {
|
|
40
|
+
var _a, _b;
|
|
41
|
+
return [_createVNode("div", {
|
|
42
|
+
"class": bem("content")
|
|
43
|
+
}, [_createVNode("div", {
|
|
44
|
+
"class": bem("nav-wrapper")
|
|
45
|
+
}, [_createVNode(NavBar, {
|
|
46
|
+
"title": props.title,
|
|
47
|
+
"border": false,
|
|
48
|
+
"class": bem("nav")
|
|
49
|
+
}, {
|
|
50
|
+
left: () => _createVNode(Icon, {
|
|
51
|
+
"name": "cross",
|
|
52
|
+
"size": "22",
|
|
53
|
+
"onClick": close
|
|
54
|
+
}, null)
|
|
55
|
+
})]), _createVNode("div", {
|
|
56
|
+
"class": bem("body")
|
|
57
|
+
}, [(_a = slots.default) == null ? void 0 : _a.call(slots)]), props.showFooter && _createVNode("div", {
|
|
58
|
+
"class": bem("footer")
|
|
59
|
+
}, [((_b = slots.footer) == null ? void 0 : _b.call(slots)) || _createVNode(Button, {
|
|
60
|
+
"block": true,
|
|
61
|
+
"type": "primary",
|
|
62
|
+
"onClick": confirm
|
|
63
|
+
}, {
|
|
64
|
+
default: () => [props.confirmText]
|
|
65
|
+
})])])];
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
export {
|
|
71
|
+
stdin_default as default
|
|
72
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--van-content-panel-background: var(--van-gray-1);--van-content-panel-radius: var(--van-border-radius-xl);--van-content-panel-footer-padding: var(--van-padding-xs) 12px}.van-content-panel{box-sizing:border-box;display:flex;height:calc(100% - 96px);max-height:calc(100% - 96px);overflow:hidden;background:var(--van-content-panel-background);border-radius:var(--van-content-panel-radius) var(--van-content-panel-radius) 0 0}.van-content-panel .van-action-sheet__content{display:flex;flex:1;min-height:0;overflow:hidden}.van-content-panel__content{display:flex;flex:1;flex-direction:column;min-height:0;overflow:hidden;background:var(--van-content-panel-background)}.van-content-panel__nav-wrapper{flex:none}.van-content-panel__nav{--van-nav-bar-background-color: var(--van-gray-1)}.van-content-panel__nav .van-nav-bar__left--slot{left:var(--van-padding-md);padding:0}.van-content-panel__body{flex:1;min-height:0;overflow-y:auto}.van-content-panel__footer{flex:none;padding:var(--van-content-panel-footer-padding);background:var(--van-white);box-shadow:0 3px 12px rgba(27,33,41,.12),0 .5px 3px rgba(27,33,41,.08)}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const ContentPanel: import("../utils").WithInstall<import("vue").DefineComponent<{
|
|
2
|
+
show: BooleanConstructor;
|
|
3
|
+
title: StringConstructor;
|
|
4
|
+
confirmText: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
showFooter: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: true;
|
|
11
|
+
};
|
|
12
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "update:show" | "confirm")[], "close" | "update:show" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
show: BooleanConstructor;
|
|
14
|
+
title: StringConstructor;
|
|
15
|
+
confirmText: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
showFooter: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: true;
|
|
22
|
+
};
|
|
23
|
+
}>> & {
|
|
24
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}, {
|
|
28
|
+
show: boolean;
|
|
29
|
+
confirmText: string;
|
|
30
|
+
showFooter: boolean;
|
|
31
|
+
}>>;
|
|
32
|
+
export default ContentPanel;
|
|
33
|
+
export type { ContentPanelProps } from './ContentPanel';
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
@import './var.less';
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--van-content-panel-background: @content-panel-background;
|
|
5
|
+
--van-content-panel-radius: @content-panel-radius;
|
|
6
|
+
--van-content-panel-footer-padding: @content-panel-footer-padding;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.van-content-panel {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
display: flex;
|
|
12
|
+
height: calc(100% - 96px);
|
|
13
|
+
max-height: calc(100% - 96px);
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
background: var(--van-content-panel-background);
|
|
16
|
+
border-radius: var(--van-content-panel-radius) var(--van-content-panel-radius) 0 0;
|
|
17
|
+
|
|
18
|
+
.van-action-sheet__content {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex: 1;
|
|
21
|
+
min-height: 0;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&__content {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex: 1;
|
|
28
|
+
flex-direction: column;
|
|
29
|
+
min-height: 0;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
background: var(--van-content-panel-background);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__nav-wrapper { flex: none; }
|
|
35
|
+
|
|
36
|
+
&__nav {
|
|
37
|
+
--van-nav-bar-background-color: var(--van-gray-1);
|
|
38
|
+
|
|
39
|
+
.van-nav-bar__left--slot { left: var(--van-padding-md); padding: 0; }
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&__body {
|
|
43
|
+
flex: 1;
|
|
44
|
+
min-height: 0;
|
|
45
|
+
overflow-y: auto;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&__footer {
|
|
49
|
+
flex: none;
|
|
50
|
+
padding: var(--van-content-panel-footer-padding);
|
|
51
|
+
background: var(--van-white);
|
|
52
|
+
box-shadow: 0 3px 12px rgb(27 33 41 / 12%), 0 0.5px 3px rgb(27 33 41 / 8%);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import "../../style/base.css";
|
|
2
|
+
import "../../badge/index.css";
|
|
3
|
+
import "../../icon/index.css";
|
|
4
|
+
import "../../loading/index.css";
|
|
5
|
+
import "../../button/index.css";
|
|
6
|
+
import "../../overlay/index.css";
|
|
7
|
+
import "../../popup/index.css";
|
|
8
|
+
import "../../popover/index.css";
|
|
9
|
+
import "../../nav-bar/index.css";
|
|
10
|
+
import "../../action-sheet/index.css";
|
|
11
|
+
import "../index.css";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import "../../style/base.less";
|
|
2
|
+
import "../../badge/index.less";
|
|
3
|
+
import "../../icon/index.less";
|
|
4
|
+
import "../../loading/index.less";
|
|
5
|
+
import "../../button/index.less";
|
|
6
|
+
import "../../overlay/index.less";
|
|
7
|
+
import "../../popup/index.less";
|
|
8
|
+
import "../../popover/index.less";
|
|
9
|
+
import "../../nav-bar/index.less";
|
|
10
|
+
import "../../action-sheet/index.less";
|
|
11
|
+
import "../index.less";
|
|
File without changes
|
package/es/dialog/Dialog.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type PropType, type ExtractPropTypes } from 'vue';
|
|
2
|
+
import type { FieldTextAlign } from '../field/types';
|
|
2
3
|
import type { DialogTheme, DialogAction, DialogMessage, DialogMessageAlign } from './types';
|
|
3
4
|
declare const dialogProps: {
|
|
4
5
|
show: BooleanConstructor;
|
|
@@ -43,6 +44,7 @@ declare const dialogProps: {
|
|
|
43
44
|
type: PropType<string>;
|
|
44
45
|
default: string;
|
|
45
46
|
};
|
|
47
|
+
inputAlign: PropType<FieldTextAlign>;
|
|
46
48
|
inputPlaceholder: {
|
|
47
49
|
type: PropType<string>;
|
|
48
50
|
default: string;
|
|
@@ -113,6 +115,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
115
|
type: PropType<string>;
|
|
114
116
|
default: string;
|
|
115
117
|
};
|
|
118
|
+
inputAlign: PropType<FieldTextAlign>;
|
|
116
119
|
inputPlaceholder: {
|
|
117
120
|
type: PropType<string>;
|
|
118
121
|
default: string;
|
|
@@ -181,6 +184,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
181
184
|
type: PropType<string>;
|
|
182
185
|
default: string;
|
|
183
186
|
};
|
|
187
|
+
inputAlign: PropType<FieldTextAlign>;
|
|
184
188
|
inputPlaceholder: {
|
|
185
189
|
type: PropType<string>;
|
|
186
190
|
default: string;
|
package/es/dialog/Dialog.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ref, reactive, withKeys, defineComponent, createVNode as _createVNode, mergeProps as _mergeProps } from "vue";
|
|
1
|
+
import { ref, nextTick, reactive, withKeys, defineComponent, createVNode as _createVNode, mergeProps as _mergeProps } from "vue";
|
|
2
2
|
import { noop, pick, extend, addUnit, truthProp, isFunction, BORDER_TOP, BORDER_LEFT, unknownProp, numericProp, makeStringProp, callInterceptor, createNamespace } from "../utils/index.mjs";
|
|
3
3
|
import { popupSharedProps, popupSharedPropKeys } from "../popup/shared.mjs";
|
|
4
4
|
import { Popup } from "../popup/index.mjs";
|
|
@@ -19,6 +19,7 @@ const dialogProps = extend({}, popupSharedProps, {
|
|
|
19
19
|
messageAlign: String,
|
|
20
20
|
showInput: Boolean,
|
|
21
21
|
inputValue: makeStringProp(""),
|
|
22
|
+
inputAlign: String,
|
|
22
23
|
inputPlaceholder: makeStringProp("\u8BF7\u8F93\u5165"),
|
|
23
24
|
inputAutofocus: Boolean,
|
|
24
25
|
closeOnPopstate: truthProp,
|
|
@@ -46,6 +47,7 @@ var stdin_default = defineComponent({
|
|
|
46
47
|
slots
|
|
47
48
|
}) {
|
|
48
49
|
const root = ref();
|
|
50
|
+
const inputRef = ref();
|
|
49
51
|
const loading = reactive({
|
|
50
52
|
confirm: false,
|
|
51
53
|
cancel: false,
|
|
@@ -133,10 +135,12 @@ var stdin_default = defineComponent({
|
|
|
133
135
|
emit("input", value);
|
|
134
136
|
};
|
|
135
137
|
return _createVNode(Field, {
|
|
138
|
+
"ref": inputRef,
|
|
136
139
|
"size": "normal",
|
|
137
140
|
"border": false,
|
|
138
141
|
"class": bem("input"),
|
|
139
142
|
"modelValue": props.inputValue,
|
|
143
|
+
"inputAlign": props.inputAlign,
|
|
140
144
|
"placeholder": props.inputPlaceholder,
|
|
141
145
|
"autofocus": props.inputAutofocus,
|
|
142
146
|
"onUpdate:modelValue": onInput
|
|
@@ -224,6 +228,14 @@ var stdin_default = defineComponent({
|
|
|
224
228
|
}
|
|
225
229
|
return props.theme === "round-button" ? renderRoundButtons() : renderButtons();
|
|
226
230
|
};
|
|
231
|
+
const onOpen = () => {
|
|
232
|
+
if (props.inputAutofocus) {
|
|
233
|
+
nextTick(() => {
|
|
234
|
+
var _a;
|
|
235
|
+
return (_a = inputRef.value) == null ? void 0 : _a.focus();
|
|
236
|
+
});
|
|
237
|
+
}
|
|
238
|
+
};
|
|
227
239
|
return () => {
|
|
228
240
|
const {
|
|
229
241
|
width,
|
|
@@ -242,6 +254,7 @@ var stdin_default = defineComponent({
|
|
|
242
254
|
"tabindex": 0,
|
|
243
255
|
"aria-labelledby": title || message,
|
|
244
256
|
"onKeydown": onKeydown,
|
|
257
|
+
"onOpen": onOpen,
|
|
245
258
|
"onUpdate:show": updateShow
|
|
246
259
|
}, pick(props, popupInheritKeys)), {
|
|
247
260
|
default: () => [renderTitle(), renderContent(), renderFooter()]
|
|
@@ -104,6 +104,7 @@ declare namespace Dialog {
|
|
|
104
104
|
type: import("vue").PropType<string>;
|
|
105
105
|
default: string;
|
|
106
106
|
};
|
|
107
|
+
inputAlign: import("vue").PropType<import("..").FieldTextAlign>;
|
|
107
108
|
inputPlaceholder: {
|
|
108
109
|
type: import("vue").PropType<string>;
|
|
109
110
|
default: string;
|
|
@@ -172,6 +173,7 @@ declare namespace Dialog {
|
|
|
172
173
|
type: import("vue").PropType<string>;
|
|
173
174
|
default: string;
|
|
174
175
|
};
|
|
176
|
+
inputAlign: import("vue").PropType<import("..").FieldTextAlign>;
|
|
175
177
|
inputPlaceholder: {
|
|
176
178
|
type: import("vue").PropType<string>;
|
|
177
179
|
default: string;
|
package/es/dialog/types.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Dialog } from './function-call';
|
|
2
2
|
import type { CSSProperties, TeleportProps } from 'vue';
|
|
3
3
|
import type { Interceptor, Numeric } from '../utils';
|
|
4
|
+
import type { FieldTextAlign } from '../field/types';
|
|
4
5
|
export declare type DialogTheme = 'default' | 'round-button';
|
|
5
6
|
export declare type DialogAction = 'confirm' | 'cancel' | 'third';
|
|
6
7
|
export declare type DialogMessage = string | (() => JSX.Element);
|
|
@@ -20,6 +21,7 @@ export declare type DialogOptions = {
|
|
|
20
21
|
messageAlign?: DialogMessageAlign;
|
|
21
22
|
showInput?: boolean;
|
|
22
23
|
inputValue?: string;
|
|
24
|
+
inputAlign?: FieldTextAlign;
|
|
23
25
|
inputPlaceholder?: string;
|
|
24
26
|
inputAutofocus?: boolean;
|
|
25
27
|
overlayClass?: string;
|
package/es/field/Field.d.ts
CHANGED
|
@@ -53,12 +53,18 @@ declare const fieldProps: {
|
|
|
53
53
|
title: (NumberConstructor | StringConstructor)[];
|
|
54
54
|
value: (NumberConstructor | StringConstructor)[];
|
|
55
55
|
label: (NumberConstructor | StringConstructor)[];
|
|
56
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
56
57
|
avatar: StringConstructor;
|
|
57
58
|
rightAvatar: StringConstructor;
|
|
58
59
|
tags: PropType<import("../utils").Numeric[]>;
|
|
59
60
|
titleIcon: StringConstructor;
|
|
60
61
|
rightIcon: StringConstructor;
|
|
61
62
|
note: (NumberConstructor | StringConstructor)[];
|
|
63
|
+
noteBold: BooleanConstructor;
|
|
64
|
+
noteClickable: BooleanConstructor;
|
|
65
|
+
noteTo: PropType<import("vue-router").RouteLocationRaw>;
|
|
66
|
+
noteUrl: StringConstructor;
|
|
67
|
+
noteReplace: BooleanConstructor;
|
|
62
68
|
badge: (NumberConstructor | StringConstructor)[];
|
|
63
69
|
leftSelect: {
|
|
64
70
|
type: PropType<boolean | undefined>;
|
|
@@ -73,6 +79,7 @@ declare const fieldProps: {
|
|
|
73
79
|
default: string;
|
|
74
80
|
};
|
|
75
81
|
blueMark: BooleanConstructor;
|
|
82
|
+
titleBold: BooleanConstructor;
|
|
76
83
|
center: BooleanConstructor;
|
|
77
84
|
isLink: BooleanConstructor;
|
|
78
85
|
border: {
|
|
@@ -170,12 +177,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
170
177
|
title: (NumberConstructor | StringConstructor)[];
|
|
171
178
|
value: (NumberConstructor | StringConstructor)[];
|
|
172
179
|
label: (NumberConstructor | StringConstructor)[];
|
|
180
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
173
181
|
avatar: StringConstructor;
|
|
174
182
|
rightAvatar: StringConstructor;
|
|
175
183
|
tags: PropType<import("../utils").Numeric[]>;
|
|
176
184
|
titleIcon: StringConstructor;
|
|
177
185
|
rightIcon: StringConstructor;
|
|
178
186
|
note: (NumberConstructor | StringConstructor)[];
|
|
187
|
+
noteBold: BooleanConstructor;
|
|
188
|
+
noteClickable: BooleanConstructor;
|
|
189
|
+
noteTo: PropType<import("vue-router").RouteLocationRaw>;
|
|
190
|
+
noteUrl: StringConstructor;
|
|
191
|
+
noteReplace: BooleanConstructor;
|
|
179
192
|
badge: (NumberConstructor | StringConstructor)[];
|
|
180
193
|
leftSelect: {
|
|
181
194
|
type: PropType<boolean | undefined>;
|
|
@@ -190,6 +203,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
190
203
|
default: string;
|
|
191
204
|
};
|
|
192
205
|
blueMark: BooleanConstructor;
|
|
206
|
+
titleBold: BooleanConstructor;
|
|
193
207
|
center: BooleanConstructor;
|
|
194
208
|
isLink: BooleanConstructor;
|
|
195
209
|
border: {
|
|
@@ -285,12 +299,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
285
299
|
title: (NumberConstructor | StringConstructor)[];
|
|
286
300
|
value: (NumberConstructor | StringConstructor)[];
|
|
287
301
|
label: (NumberConstructor | StringConstructor)[];
|
|
302
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
288
303
|
avatar: StringConstructor;
|
|
289
304
|
rightAvatar: StringConstructor;
|
|
290
305
|
tags: PropType<import("../utils").Numeric[]>;
|
|
291
306
|
titleIcon: StringConstructor;
|
|
292
307
|
rightIcon: StringConstructor;
|
|
293
308
|
note: (NumberConstructor | StringConstructor)[];
|
|
309
|
+
noteBold: BooleanConstructor;
|
|
310
|
+
noteClickable: BooleanConstructor;
|
|
311
|
+
noteTo: PropType<import("vue-router").RouteLocationRaw>;
|
|
312
|
+
noteUrl: StringConstructor;
|
|
313
|
+
noteReplace: BooleanConstructor;
|
|
294
314
|
badge: (NumberConstructor | StringConstructor)[];
|
|
295
315
|
leftSelect: {
|
|
296
316
|
type: PropType<boolean | undefined>;
|
|
@@ -305,6 +325,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
305
325
|
default: string;
|
|
306
326
|
};
|
|
307
327
|
blueMark: BooleanConstructor;
|
|
328
|
+
titleBold: BooleanConstructor;
|
|
308
329
|
center: BooleanConstructor;
|
|
309
330
|
isLink: BooleanConstructor;
|
|
310
331
|
border: {
|
|
@@ -410,10 +431,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
410
431
|
required: boolean;
|
|
411
432
|
center: boolean;
|
|
412
433
|
size: CellSize;
|
|
434
|
+
noteBold: boolean;
|
|
435
|
+
noteClickable: boolean;
|
|
436
|
+
noteReplace: boolean;
|
|
413
437
|
leftSelect: boolean | undefined;
|
|
414
438
|
rightSelect: boolean | undefined;
|
|
415
439
|
selectType: import("../cell").CellSelectType;
|
|
416
440
|
blueMark: boolean;
|
|
441
|
+
titleBold: boolean;
|
|
417
442
|
isLink: boolean;
|
|
418
443
|
border: boolean;
|
|
419
444
|
errorBorder: boolean;
|
package/es/field/Field.mjs
CHANGED
|
@@ -19,7 +19,7 @@ const fieldSharedProps = {
|
|
|
19
19
|
formatter: Function,
|
|
20
20
|
clearIcon: makeStringProp("clear"),
|
|
21
21
|
modelValue: makeNumericProp(""),
|
|
22
|
-
inputAlign: makeStringProp("
|
|
22
|
+
inputAlign: makeStringProp("left"),
|
|
23
23
|
placeholder: String,
|
|
24
24
|
autocomplete: String,
|
|
25
25
|
errorMessage: String,
|
package/es/field/index.d.ts
CHANGED
|
@@ -5,12 +5,18 @@ export declare const Field: import("../utils").WithInstall<import("vue").DefineC
|
|
|
5
5
|
title: (NumberConstructor | StringConstructor)[];
|
|
6
6
|
value: (NumberConstructor | StringConstructor)[];
|
|
7
7
|
label: (NumberConstructor | StringConstructor)[];
|
|
8
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
8
9
|
avatar: StringConstructor;
|
|
9
10
|
rightAvatar: StringConstructor;
|
|
10
11
|
tags: import("vue").PropType<import("../utils").Numeric[]>;
|
|
11
12
|
titleIcon: StringConstructor;
|
|
12
13
|
rightIcon: StringConstructor;
|
|
13
14
|
note: (NumberConstructor | StringConstructor)[];
|
|
15
|
+
noteBold: BooleanConstructor;
|
|
16
|
+
noteClickable: BooleanConstructor;
|
|
17
|
+
noteTo: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
18
|
+
noteUrl: StringConstructor;
|
|
19
|
+
noteReplace: BooleanConstructor;
|
|
14
20
|
badge: (NumberConstructor | StringConstructor)[];
|
|
15
21
|
leftSelect: {
|
|
16
22
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -25,6 +31,7 @@ export declare const Field: import("../utils").WithInstall<import("vue").DefineC
|
|
|
25
31
|
default: string;
|
|
26
32
|
};
|
|
27
33
|
blueMark: BooleanConstructor;
|
|
34
|
+
titleBold: BooleanConstructor;
|
|
28
35
|
center: BooleanConstructor;
|
|
29
36
|
isLink: BooleanConstructor;
|
|
30
37
|
border: {
|
|
@@ -120,12 +127,18 @@ export declare const Field: import("../utils").WithInstall<import("vue").DefineC
|
|
|
120
127
|
title: (NumberConstructor | StringConstructor)[];
|
|
121
128
|
value: (NumberConstructor | StringConstructor)[];
|
|
122
129
|
label: (NumberConstructor | StringConstructor)[];
|
|
130
|
+
labelSize: (NumberConstructor | StringConstructor)[];
|
|
123
131
|
avatar: StringConstructor;
|
|
124
132
|
rightAvatar: StringConstructor;
|
|
125
133
|
tags: import("vue").PropType<import("../utils").Numeric[]>;
|
|
126
134
|
titleIcon: StringConstructor;
|
|
127
135
|
rightIcon: StringConstructor;
|
|
128
136
|
note: (NumberConstructor | StringConstructor)[];
|
|
137
|
+
noteBold: BooleanConstructor;
|
|
138
|
+
noteClickable: BooleanConstructor;
|
|
139
|
+
noteTo: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
140
|
+
noteUrl: StringConstructor;
|
|
141
|
+
noteReplace: BooleanConstructor;
|
|
129
142
|
badge: (NumberConstructor | StringConstructor)[];
|
|
130
143
|
leftSelect: {
|
|
131
144
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -140,6 +153,7 @@ export declare const Field: import("../utils").WithInstall<import("vue").DefineC
|
|
|
140
153
|
default: string;
|
|
141
154
|
};
|
|
142
155
|
blueMark: BooleanConstructor;
|
|
156
|
+
titleBold: BooleanConstructor;
|
|
143
157
|
center: BooleanConstructor;
|
|
144
158
|
isLink: BooleanConstructor;
|
|
145
159
|
border: {
|
|
@@ -245,10 +259,14 @@ export declare const Field: import("../utils").WithInstall<import("vue").DefineC
|
|
|
245
259
|
required: boolean;
|
|
246
260
|
center: boolean;
|
|
247
261
|
size: import("..").CellSize;
|
|
262
|
+
noteBold: boolean;
|
|
263
|
+
noteClickable: boolean;
|
|
264
|
+
noteReplace: boolean;
|
|
248
265
|
leftSelect: boolean | undefined;
|
|
249
266
|
rightSelect: boolean | undefined;
|
|
250
267
|
selectType: import("..").CellSelectType;
|
|
251
268
|
blueMark: boolean;
|
|
269
|
+
titleBold: boolean;
|
|
252
270
|
isLink: boolean;
|
|
253
271
|
border: boolean;
|
|
254
272
|
errorBorder: boolean;
|
package/es/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from "./config-provider";
|
|
|
26
26
|
export * from "./contact-card";
|
|
27
27
|
export * from "./contact-edit";
|
|
28
28
|
export * from "./contact-list";
|
|
29
|
+
export * from "./content-panel";
|
|
29
30
|
export * from "./count-down";
|
|
30
31
|
export * from "./coupon";
|
|
31
32
|
export * from "./coupon-cell";
|
|
@@ -56,7 +57,10 @@ export * from "./list";
|
|
|
56
57
|
export * from "./loading";
|
|
57
58
|
export * from "./locale";
|
|
58
59
|
export * from "./location-select";
|
|
60
|
+
export * from "./material-action-bar";
|
|
59
61
|
export * from "./material-add";
|
|
62
|
+
export * from "./material-detail";
|
|
63
|
+
export * from "./material-display-bar";
|
|
60
64
|
export * from "./multi-person-select";
|
|
61
65
|
export * from "./nav-bar";
|
|
62
66
|
export * from "./notice-bar";
|
|
@@ -99,6 +103,7 @@ export * from "./tabbar";
|
|
|
99
103
|
export * from "./tabbar-item";
|
|
100
104
|
export * from "./tabs";
|
|
101
105
|
export * from "./tag";
|
|
106
|
+
export * from "./title-bar";
|
|
102
107
|
export * from "./toast";
|
|
103
108
|
export * from "./tree-select";
|
|
104
109
|
export * from "./uploader";
|
|
@@ -111,4 +116,4 @@ declare namespace _default {
|
|
|
111
116
|
}
|
|
112
117
|
export default _default;
|
|
113
118
|
export function install(app: any): void;
|
|
114
|
-
export const version: "0.0.
|
|
119
|
+
export const version: "0.0.32";
|