@revolugo/elements-vue3 6.14.6 → 6.15.1-rc.1

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,134 +1,42 @@
1
1
  {
2
2
  "name": "@revolugo/elements-vue3",
3
- "version": "6.14.6",
3
+ "version": "6.15.1-rc.1",
4
4
  "private": false,
5
5
  "description": "Revolugo Elements UI library - Vue 3 Wrapper",
6
6
  "author": "Revolugo",
7
7
  "type": "module",
8
- "exports": {
9
- ".": {
10
- "types": "./types/src/index.d.ts",
11
- "import": "./dist/elements-vue3.es.js",
12
- "require": "./dist/elements-vue3.umd.js"
13
- }
8
+ "engines": {
9
+ "node": ">=20.18.1 <25"
10
+ },
11
+ "volta": {
12
+ "extends": "../../../package.json"
14
13
  },
15
- "main": "./dist/elements-vue3.es.js",
16
- "typings": "./types/src/index.d.ts",
17
14
  "files": [
18
15
  ".keep",
19
16
  "dist",
20
17
  "storybook-static",
21
18
  "types"
22
19
  ],
23
- "dependencies": {
24
- "http-server": "14.1.1"
25
- },
26
- "devDependencies": {
27
- "@revolugo/booking-api-client": "6.14.6",
28
- "@revolugo/common": "6.14.6",
29
- "@revolugo/elements-core": "6.14.6",
30
- "@revolugo/elements-documentation": "6.14.6"
20
+ "main": "./dist/elements-vue3.es.js",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./types/src/index.d.ts",
24
+ "import": "./dist/elements-vue3.es.js",
25
+ "require": "./dist/elements-vue3.umd.js"
26
+ }
31
27
  },
28
+ "typings": "./types/src/index.d.ts",
32
29
  "peerDependencies": {
33
30
  "vue": "^3.0.1"
34
31
  },
35
- "engines": {
36
- "node": ">=20.18.1 <25"
37
- },
38
- "volta": {
39
- "extends": "../../../package.json"
32
+ "dependencies": {
33
+ "http-server": "14.1.1"
40
34
  },
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
- }
35
+ "devDependencies": {
36
+ "@revolugo/booking-api-client": "6.15.1",
37
+ "@revolugo/elements-core": "6.15.1",
38
+ "@revolugo/elements-documentation": "6.15.1",
39
+ "@revolugo/common": "6.15.1"
132
40
  },
133
41
  "scripts": {
134
42
  "build": "pnpm run build-types && vite build",
@@ -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;