@opengis/table 0.0.34 → 0.0.36
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/README.md +158 -158
- package/dist/components/Export.vue.d.ts.map +1 -1
- package/dist/composables/i18n.d.ts.map +1 -1
- package/dist/composables/useLocale.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.mjs +1948 -1790
- package/dist/index.umd.js +20 -15
- package/package.json +58 -58
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@opengis/table",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A Vue 3 data table component with advanced features",
|
|
5
|
-
"types": "./dist/index.d.ts",
|
|
6
|
-
"main": "./dist/index.mjs",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"keywords": [
|
|
11
|
-
"vue",
|
|
12
|
-
"vue3",
|
|
13
|
-
"table",
|
|
14
|
-
"data-table",
|
|
15
|
-
"component",
|
|
16
|
-
"typescript"
|
|
17
|
-
],
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"peerDependencies": {
|
|
20
|
-
"vue": "^3.0.0"
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@tsconfig/node22": "^22.0.2",
|
|
24
|
-
"@types/node": "^22.15.32",
|
|
25
|
-
"@vitejs/plugin-vue": "^6.0.0",
|
|
26
|
-
"@vue/eslint-config-typescript": "^12.0.0",
|
|
27
|
-
"@vue/tsconfig": "^0.7.0",
|
|
28
|
-
"eslint": "8.49.0",
|
|
29
|
-
"eslint-config-airbnb": "19.0.4",
|
|
30
|
-
"eslint-plugin-import": "^2.25.3",
|
|
31
|
-
"eslint-plugin-vue": "^9.17.0",
|
|
32
|
-
"typescript": "~5.8.0",
|
|
33
|
-
"vite": "^7.0.0",
|
|
34
|
-
"vue": "^3.5.17",
|
|
35
|
-
"vue-tsc": "^2.2.10"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
39
|
-
"dev": "vite",
|
|
40
|
-
"type-check": "vue-tsc --noEmit -p tsconfig.app.json",
|
|
41
|
-
"build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
42
|
-
"build": "vue-tsc -b && vite build && npm run build:types",
|
|
43
|
-
"prepublishOnly": "bun run build",
|
|
44
|
-
"preview": "vite preview",
|
|
45
|
-
"docs:dev": "npm run --prefix ./docs docs:dev",
|
|
46
|
-
"docs:build": "npm run --prefix ./docs docs:build",
|
|
47
|
-
"docs:preview": "npm run --prefix ./docs docs:preview"
|
|
48
|
-
},
|
|
49
|
-
"directories": {
|
|
50
|
-
"example": "examples"
|
|
51
|
-
},
|
|
52
|
-
"repository": {
|
|
53
|
-
"type": "git",
|
|
54
|
-
"url": "https://git.softpro.ua/npm/table.git"
|
|
55
|
-
},
|
|
56
|
-
"author": "softpro",
|
|
57
|
-
"dependencies": {}
|
|
58
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@opengis/table",
|
|
3
|
+
"version": "0.0.36",
|
|
4
|
+
"description": "A Vue 3 data table component with advanced features",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"main": "./dist/index.mjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"vue",
|
|
12
|
+
"vue3",
|
|
13
|
+
"table",
|
|
14
|
+
"data-table",
|
|
15
|
+
"component",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"vue": "^3.0.0"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@tsconfig/node22": "^22.0.2",
|
|
24
|
+
"@types/node": "^22.15.32",
|
|
25
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
26
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
27
|
+
"@vue/tsconfig": "^0.7.0",
|
|
28
|
+
"eslint": "8.49.0",
|
|
29
|
+
"eslint-config-airbnb": "19.0.4",
|
|
30
|
+
"eslint-plugin-import": "^2.25.3",
|
|
31
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
32
|
+
"typescript": "~5.8.0",
|
|
33
|
+
"vite": "^7.0.0",
|
|
34
|
+
"vue": "^3.5.17",
|
|
35
|
+
"vue-tsc": "^2.2.10"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
39
|
+
"dev": "vite",
|
|
40
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.app.json",
|
|
41
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
42
|
+
"build": "vue-tsc -b && vite build && npm run build:types",
|
|
43
|
+
"prepublishOnly": "bun run build",
|
|
44
|
+
"preview": "vite preview",
|
|
45
|
+
"docs:dev": "npm run --prefix ./docs docs:dev",
|
|
46
|
+
"docs:build": "npm run --prefix ./docs docs:build",
|
|
47
|
+
"docs:preview": "npm run --prefix ./docs docs:preview"
|
|
48
|
+
},
|
|
49
|
+
"directories": {
|
|
50
|
+
"example": "examples"
|
|
51
|
+
},
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "https://git.softpro.ua/npm/table.git"
|
|
55
|
+
},
|
|
56
|
+
"author": "softpro",
|
|
57
|
+
"dependencies": {}
|
|
58
|
+
}
|