@vtj/web 0.7.2 → 0.7.3
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 +7 -7
- package/src/index.ts +0 -22
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtj/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@vtj/icons": "^0.7.
|
|
9
|
-
"@vtj/renderer": "^0.7.
|
|
10
|
-
"@vtj/ui": "^0.7.
|
|
11
|
-
"@vtj/utils": "^0.7.
|
|
8
|
+
"@vtj/icons": "^0.7.3",
|
|
9
|
+
"@vtj/renderer": "^0.7.3",
|
|
10
|
+
"@vtj/ui": "^0.7.3",
|
|
11
|
+
"@vtj/utils": "^0.7.3"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@vtj/cli": "^0.7.
|
|
14
|
+
"@vtj/cli": "^0.7.3"
|
|
15
15
|
},
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"files": [
|
|
47
47
|
"src"
|
|
48
48
|
],
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "86a13552ff03a6e623efe6ea0515f5f780a9fde1",
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
import { VTJ_UTILS_VERSION, isClient } from './utils';
|
|
2
|
-
import { VTJ_ICONS_VERSION } from './icons';
|
|
3
|
-
import { VTJ_UI_VERSION } from './ui';
|
|
4
|
-
import { VTJ_RENDERER_VERSION } from './renderer';
|
|
5
|
-
|
|
6
|
-
const __VTJ_Web__ = {
|
|
7
|
-
VTJ_UTILS_VERSION,
|
|
8
|
-
VTJ_ICONS_VERSION,
|
|
9
|
-
VTJ_UI_VERSION,
|
|
10
|
-
VTJ_RENDERER_VERSION
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
declare global {
|
|
14
|
-
interface Window {
|
|
15
|
-
__VTJ_Web__: typeof __VTJ_Web__;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
if (isClient) {
|
|
20
|
-
window.__VTJ_Web__ = __VTJ_Web__;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
1
|
export * from './utils';
|
|
24
2
|
export * from './icons';
|
|
25
3
|
export * from './ui';
|