@revolugo/elements-vue3 6.14.4-beta.3 → 6.14.4-beta.5
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 +1 -93
- package/types/src/env.d.ts +23 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolugo/elements-vue3",
|
|
3
|
-
"version": "6.14.4-beta.
|
|
3
|
+
"version": "6.14.4-beta.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Revolugo Elements UI library - Vue 3 Wrapper",
|
|
6
6
|
"author": "Revolugo",
|
|
@@ -38,98 +38,6 @@
|
|
|
38
38
|
"@revolugo/elements-core": "6.14.4",
|
|
39
39
|
"@revolugo/elements-documentation": "6.14.4"
|
|
40
40
|
},
|
|
41
|
-
"nx": {
|
|
42
|
-
"implicitDependencies": [
|
|
43
|
-
"@revolugo/elements"
|
|
44
|
-
],
|
|
45
|
-
"targets": {
|
|
46
|
-
"build": {
|
|
47
|
-
"dependsOn": [
|
|
48
|
-
"^build",
|
|
49
|
-
"storybook:render"
|
|
50
|
-
],
|
|
51
|
-
"inputs": [
|
|
52
|
-
{
|
|
53
|
-
"env": "ELEMENTS_ENTRY_URL"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"env": "NPM_PACKAGE_VERSION"
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"outputs": [
|
|
60
|
-
"{projectRoot}/dist",
|
|
61
|
-
"{projectRoot}/types"
|
|
62
|
-
]
|
|
63
|
-
},
|
|
64
|
-
"build-dev": {
|
|
65
|
-
"dependsOn": [
|
|
66
|
-
"^build-dev"
|
|
67
|
-
],
|
|
68
|
-
"inputs": [
|
|
69
|
-
{
|
|
70
|
-
"env": "ELEMENTS_ENTRY_URL"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"env": "BOOKING_API_BASE_URL"
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
"outputs": [
|
|
77
|
-
"{projectRoot}/dist"
|
|
78
|
-
]
|
|
79
|
-
},
|
|
80
|
-
"chromatic-publish": {
|
|
81
|
-
"dependsOn": [
|
|
82
|
-
"build"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
"demo": {
|
|
86
|
-
"dependsOn": [
|
|
87
|
-
"watch",
|
|
88
|
-
"^serve-lib:async"
|
|
89
|
-
]
|
|
90
|
-
},
|
|
91
|
-
"storybook:render": {
|
|
92
|
-
"dependsOn": [
|
|
93
|
-
"^build"
|
|
94
|
-
],
|
|
95
|
-
"outputs": [
|
|
96
|
-
"{projectRoot}/.storybook/documentation",
|
|
97
|
-
"{projectRoot}/.storybook/stories",
|
|
98
|
-
"{projectRoot}/src/elements"
|
|
99
|
-
]
|
|
100
|
-
},
|
|
101
|
-
"storybook:dev": {
|
|
102
|
-
"dependsOn": [
|
|
103
|
-
"watch",
|
|
104
|
-
"^serve-lib:async",
|
|
105
|
-
"^watch-wc",
|
|
106
|
-
"storybook:render"
|
|
107
|
-
]
|
|
108
|
-
},
|
|
109
|
-
"storybook:build": {
|
|
110
|
-
"dependsOn": [
|
|
111
|
-
"build",
|
|
112
|
-
"storybook:render"
|
|
113
|
-
],
|
|
114
|
-
"inputs": [
|
|
115
|
-
{
|
|
116
|
-
"env": "NPM_PACKAGE_VERSION"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"env": "VITE_STORYBOOK_API_ENVIRONMENTS"
|
|
120
|
-
}
|
|
121
|
-
],
|
|
122
|
-
"outputs": [
|
|
123
|
-
"{projectRoot}/storybook-static"
|
|
124
|
-
]
|
|
125
|
-
},
|
|
126
|
-
"watch": {
|
|
127
|
-
"dependsOn": [
|
|
128
|
-
"build-dev"
|
|
129
|
-
]
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
41
|
"scripts": {
|
|
134
42
|
"build": "pnpm run build-types && vite build",
|
|
135
43
|
"build-dev": "pnpm run build-types && vite build --mode development",
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { z } from '@revolugo/env';
|
|
2
|
+
export declare const envSchema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
}, {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
}>, envSchemaCluster: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7
|
+
[x: string]: any;
|
|
8
|
+
}, {
|
|
9
|
+
[x: string]: any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const _default: {
|
|
12
|
+
envSchema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
13
|
+
[x: string]: any;
|
|
14
|
+
}, {
|
|
15
|
+
[x: string]: any;
|
|
16
|
+
}>;
|
|
17
|
+
envSchemaCluster: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
}, {
|
|
20
|
+
[x: string]: any;
|
|
21
|
+
}>;
|
|
22
|
+
};
|
|
23
|
+
export default _default;
|