orio-ui 1.11.9 → 1.11.10
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/module.json
CHANGED
|
@@ -8,7 +8,7 @@ const props = defineProps({
|
|
|
8
8
|
origin: { type: [Object, null], required: true }
|
|
9
9
|
});
|
|
10
10
|
const show = defineModel("show", { type: Boolean });
|
|
11
|
-
const isLocked = useScrollLock(document.body);
|
|
11
|
+
const isLocked = import.meta.client ? useScrollLock(document.body) : ref(false);
|
|
12
12
|
const wrapper = ref(null);
|
|
13
13
|
const { width: windowWidth, height: windowHeight } = useWindowSize();
|
|
14
14
|
function animateToCenter(el) {
|
package/dist/runtime/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export { default as ViewDates } from "./components/view/Dates.vue.js";
|
|
|
28
28
|
export { default as ViewSeparator } from "./components/view/Separator.vue.js";
|
|
29
29
|
export { useApi, type ApiOptions, type RequestBody, type RequestMethod, } from "./composables/useApi.js";
|
|
30
30
|
export { useFuzzySearch } from "./composables/useFuzzySearch.js";
|
|
31
|
-
export { useModal, type ModalProps, type OriginRect } from "./composables/useModal.js";
|
|
31
|
+
export { useModal, type ModalProps, type OriginRect, } from "./composables/useModal.js";
|
|
32
32
|
export { useTheme } from "./composables/useTheme.js";
|
|
33
33
|
export { useDecimalFormatter } from "./composables/useDecimalFormatter.js";
|
|
34
34
|
export { usePressAndHold } from "./composables/usePressAndHold.js";
|
package/dist/runtime/index.js
CHANGED
|
@@ -30,7 +30,9 @@ export {
|
|
|
30
30
|
useApi
|
|
31
31
|
} from "./composables/useApi.js";
|
|
32
32
|
export { useFuzzySearch } from "./composables/useFuzzySearch.js";
|
|
33
|
-
export {
|
|
33
|
+
export {
|
|
34
|
+
useModal
|
|
35
|
+
} from "./composables/useModal.js";
|
|
34
36
|
export { useTheme } from "./composables/useTheme.js";
|
|
35
37
|
export { useDecimalFormatter } from "./composables/useDecimalFormatter.js";
|
|
36
38
|
export { usePressAndHold } from "./composables/usePressAndHold.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orio-ui",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.10",
|
|
4
4
|
"description": "Modern Nuxt component library with theme support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.mjs",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"types": "./dist/types.d.mts",
|
|
10
10
|
"import": "./dist/module.mjs"
|
|
11
11
|
},
|
|
12
|
+
"./runtime": {
|
|
13
|
+
"types": "./dist/runtime/index.d.ts",
|
|
14
|
+
"import": "./dist/runtime/index.mjs"
|
|
15
|
+
},
|
|
12
16
|
"./styles": "./dist/runtime/assets/css/main.css",
|
|
13
17
|
"./theme": "./dist/runtime/assets/css/colors.css"
|
|
14
18
|
},
|