@webitel/ui-sdk 24.8.13 → 24.8.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "24.8.
|
|
3
|
+
"version": "24.8.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -22,12 +22,8 @@
|
|
|
22
22
|
"require": "./dist/@webitel/ui-sdk.cjs"
|
|
23
23
|
},
|
|
24
24
|
"./store": {
|
|
25
|
-
"import": "./src/store/index.js",
|
|
26
|
-
"require": "./src/store/index.js"
|
|
27
|
-
},
|
|
28
|
-
"./*": {
|
|
29
|
-
"import": "./src",
|
|
30
|
-
"require": "./src"
|
|
25
|
+
"import": "./src/store/new/index.js",
|
|
26
|
+
"require": "./src/store/new/index.js"
|
|
31
27
|
}
|
|
32
28
|
},
|
|
33
29
|
"files": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed } from 'vue';
|
|
2
2
|
import { useStore } from 'vuex';
|
|
3
|
-
import getNamespacedState from '../../../
|
|
3
|
+
import getNamespacedState from '../../../helpers/getNamespacedState.js';
|
|
4
4
|
|
|
5
5
|
export const useCardStore = (namespace) => {
|
|
6
6
|
const store = useStore();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed } from 'vue';
|
|
2
2
|
import { useStore } from 'vuex';
|
|
3
|
-
import getNamespacedState from '../../../
|
|
3
|
+
import getNamespacedState from '../../../helpers/getNamespacedState.js';
|
|
4
4
|
|
|
5
5
|
export const useTableStore = (namespace) => {
|
|
6
6
|
const store = useStore();
|