@v-c/picker 0.0.6 → 0.0.7
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.
|
@@ -26,9 +26,6 @@ var Popup = /* @__PURE__ */ (0, vue.defineComponent)((props) => {
|
|
|
26
26
|
const containerWidth = (0, vue.ref)(0);
|
|
27
27
|
const containerOffset = (0, vue.ref)(0);
|
|
28
28
|
const arrowOffset = (0, vue.ref)(0);
|
|
29
|
-
(0, vue.computed)(() => activeInfo.value[0]);
|
|
30
|
-
(0, vue.computed)(() => activeInfo.value[1]);
|
|
31
|
-
(0, vue.computed)(() => activeInfo.value[2]);
|
|
32
29
|
const onResize = (info) => {
|
|
33
30
|
if (info.width) containerWidth.value = info.width;
|
|
34
31
|
};
|
|
@@ -21,9 +21,6 @@ var Popup_default = /* @__PURE__ */ defineComponent((props) => {
|
|
|
21
21
|
const containerWidth = ref(0);
|
|
22
22
|
const containerOffset = ref(0);
|
|
23
23
|
const arrowOffset = ref(0);
|
|
24
|
-
computed(() => activeInfo.value[0]);
|
|
25
|
-
computed(() => activeInfo.value[1]);
|
|
26
|
-
computed(() => activeInfo.value[2]);
|
|
27
24
|
const onResize = (info) => {
|
|
28
25
|
if (info.width) containerWidth.value = info.width;
|
|
29
26
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v-c/picker",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.7",
|
|
5
5
|
"description": "picker ui component for vue",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -72,10 +72,10 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@v-c/overflow": "^1.0.1",
|
|
76
75
|
"@v-c/util": "^1.0.8",
|
|
77
|
-
"@v-c/
|
|
78
|
-
"@v-c/
|
|
76
|
+
"@v-c/resize-observer": "^1.0.7",
|
|
77
|
+
"@v-c/overflow": "^1.0.1",
|
|
78
|
+
"@v-c/trigger": "^1.0.5"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@types/luxon": "^3.7.1"
|