@elyndra/vue 1.2.0
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 +60 -0
- package/src/index.ts +17 -0
- package/src/vue.d.ts +10 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elyndra/vue",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"sideEffects": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"description": "Elyndra UI components for Vue",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"elyndra",
|
|
11
|
+
"ui",
|
|
12
|
+
"front-end",
|
|
13
|
+
"framework",
|
|
14
|
+
"scifi",
|
|
15
|
+
"sci-fi",
|
|
16
|
+
"science-fiction",
|
|
17
|
+
"vue"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://elyndra.dev",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/Gabox301/elyndra.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/Gabox301/elyndra/issues"
|
|
26
|
+
},
|
|
27
|
+
"funding": "https://github.com/sponsors/romelperez",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"files": [
|
|
30
|
+
"src"
|
|
31
|
+
],
|
|
32
|
+
"exports": {
|
|
33
|
+
".": "./src/index.ts"
|
|
34
|
+
},
|
|
35
|
+
"types": "./src/index.ts",
|
|
36
|
+
"module": "./src/index.ts",
|
|
37
|
+
"main": "./src/index.ts",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"vue": "3"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@elyndra/core": "^1.2.0",
|
|
43
|
+
"@elyndra/styles": "^1.2.0",
|
|
44
|
+
"@elyndra/theme": "^1.2.0",
|
|
45
|
+
"@elyndra/tools": "^1.2.0",
|
|
46
|
+
"@elyndra/vue-animated": "^1.2.0",
|
|
47
|
+
"@elyndra/vue-animator": "^1.2.0",
|
|
48
|
+
"@elyndra/vue-bgs": "^1.2.0",
|
|
49
|
+
"@elyndra/vue-bleeps": "^1.2.0",
|
|
50
|
+
"@elyndra/vue-core": "^1.2.0",
|
|
51
|
+
"@elyndra/vue-effects": "^1.2.0",
|
|
52
|
+
"@elyndra/vue-frames": "^1.2.0",
|
|
53
|
+
"@elyndra/vue-text": "^1.2.0",
|
|
54
|
+
"@elyndra/vue-tools": "^1.2.0",
|
|
55
|
+
"tslib": "2.8.1"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "tsc --noEmit -p tsconfig.json && vue-tsc --noEmit -p tsconfig.json"
|
|
59
|
+
}
|
|
60
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Mirror composition of `packages/react/src/index.ts` as of master at
|
|
2
|
+
// implementation time: the nine framework adapters in the same order, then
|
|
3
|
+
// the five vanilla packages. No `'use client'` directive: Vue SFCs are
|
|
4
|
+
// consumed directly by the host app bundler instead.
|
|
5
|
+
export * from '@elyndra/vue-animated';
|
|
6
|
+
export * from '@elyndra/vue-animator';
|
|
7
|
+
export * from '@elyndra/vue-bgs';
|
|
8
|
+
export * from '@elyndra/vue-bleeps';
|
|
9
|
+
export * from '@elyndra/vue-core';
|
|
10
|
+
export * from '@elyndra/vue-effects';
|
|
11
|
+
export * from '@elyndra/vue-frames';
|
|
12
|
+
export * from '@elyndra/vue-text';
|
|
13
|
+
export * from '@elyndra/vue-tools';
|
|
14
|
+
export * from '@elyndra/core';
|
|
15
|
+
export * from '@elyndra/styles';
|
|
16
|
+
export * from '@elyndra/theme';
|
|
17
|
+
export * from '@elyndra/tools';
|
package/src/vue.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// In-repo ambient types for `.vue` imports (tests only). The published
|
|
2
|
+
// package ships the `.vue` sources and consumers get full prop inference
|
|
3
|
+
// from their own Vue setup. The umbrella holds no `.vue` files itself, but
|
|
4
|
+
// its type program reaches the adapters' `.vue` sources through their
|
|
5
|
+
// indexes, so the ambient is needed for plain `tsc` as well.
|
|
6
|
+
declare module '*.vue' {
|
|
7
|
+
import type { DefineComponent } from 'vue';
|
|
8
|
+
const Component: DefineComponent<Record<string, unknown>, Record<string, unknown>, unknown>;
|
|
9
|
+
export default Component;
|
|
10
|
+
}
|