@vtable-guild/vtable-guild 1.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-present parade0393
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @vtable-guild/vtable-guild
2
+
3
+ All-in-one entry package for vtable-guild — re-exports everything from `@vtable-guild/table`, `@vtable-guild/core`, `@vtable-guild/icons`, and `@vtable-guild/theme`.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @vtable-guild/vtable-guild
9
+ ```
10
+
11
+ ## Quick Start
12
+
13
+ ```ts
14
+ import { createVTableGuild } from '@vtable-guild/vtable-guild'
15
+ import '@vtable-guild/theme/css/presets/antdv'
16
+
17
+ const app = createApp(App)
18
+ app.use(createVTableGuild())
19
+ ```
20
+
21
+ ```vue
22
+ <template>
23
+ <VTable :columns="columns" :data-source="data" />
24
+ </template>
25
+ ```
26
+
27
+ ## Documentation
28
+
29
+ See the [full documentation](https://github.com/parade0393/vtable-guild#readme).
30
+
31
+ ## License
32
+
33
+ MIT
@@ -0,0 +1,4 @@
1
+ export * from '../../core/src/index.ts';
2
+ export * from '../../theme/src/index.ts';
3
+ export * from '../../table/src/index.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA"}
package/dist/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ export * from "@vtable-guild/core";
2
+ export * from "@vtable-guild/theme";
3
+ export * from "@vtable-guild/table";
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@vtable-guild/vtable-guild",
3
+ "version": "1.0.0",
4
+ "description": "A highly customizable Vue 3 Table component library powered by tailwind-variants",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs"
13
+ }
14
+ },
15
+ "main": "./dist/index.mjs",
16
+ "module": "./dist/index.mjs",
17
+ "types": "./dist/index.d.ts",
18
+ "dependencies": {
19
+ "@vtable-guild/core": "1.0.0",
20
+ "@vtable-guild/icons": "1.0.0",
21
+ "@vtable-guild/theme": "1.0.0",
22
+ "@vtable-guild/table": "1.0.0"
23
+ },
24
+ "peerDependencies": {
25
+ "vue": "^3.5.0"
26
+ },
27
+ "author": "parade0393",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/parade0393/vtable-guild",
31
+ "directory": "packages/vtable-guild"
32
+ },
33
+ "homepage": "https://github.com/parade0393/vtable-guild#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/parade0393/vtable-guild/issues"
36
+ },
37
+ "keywords": [
38
+ "vue",
39
+ "vue3",
40
+ "table",
41
+ "component",
42
+ "tailwind",
43
+ "ant-design-vue",
44
+ "element-plus",
45
+ "customizable"
46
+ ],
47
+ "sideEffects": false,
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "license": "MIT",
52
+ "scripts": {
53
+ "build": "vite build",
54
+ "dev": "vite build --watch",
55
+ "type-check": "vue-tsc --build",
56
+ "test": "vitest run --config ../../vitest.config.ts --project vtable-guild --passWithNoTests"
57
+ }
58
+ }