@hg2/dataview-basic 2.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/dist/componentEntries.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsDate/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsDate/interact.d.ts +47 -0
- package/dist/components/Informations/Inputs/InputsInput/config.d.ts +27 -0
- package/dist/components/Informations/Inputs/InputsInput/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsInput/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsInput/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsPagination/config.d.ts +31 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsPagination/interact.d.ts +9 -0
- package/dist/components/Informations/Inputs/InputsSelect/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsSelect/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsTab/config.d.ts +35 -0
- package/dist/components/Informations/Inputs/InputsTab/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsTab/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsTab/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextBarrage/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextBarrage/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextCommon/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextCommon/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/config.d.ts +24 -0
- package/dist/components/Informations/Texts/TextGradient/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/index.vue.d.ts +14 -0
- package/dist/components/Informations/Texts/index.d.ts +2 -0
- package/dist/components/Informations/index.d.ts +1 -0
- package/dist/components/Tables/Tables/TableList/config.d.ts +46 -0
- package/dist/components/Tables/Tables/TableList/data.json.d.ts +17 -0
- package/dist/components/Tables/Tables/TableList/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableList/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TableScrollBoard/config.d.ts +34 -0
- package/dist/components/Tables/Tables/TableScrollBoard/data.json.d.ts +15 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TablesBasic/config.d.ts +81 -0
- package/dist/components/Tables/Tables/TablesBasic/data.json.d.ts +63 -0
- package/dist/components/Tables/Tables/TablesBasic/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TablesBasic/index.vue.d.ts +18 -0
- package/dist/components/Tables/Tables/TablesBasic/public.d.ts +2 -0
- package/dist/components/Tables/Tables/index.d.ts +7 -0
- package/dist/components/Tables/index.d.ts +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +9698 -0
- package/dist/index.js.map +1 -0
- package/dist/public/components.d.ts +37 -0
- package/dist/style.css +1 -0
- package/package.json +31 -0
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hg2/dataview-basic",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "vite build --config ./vite.config.ts"
|
|
17
|
+
},
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"default": "./dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@hg2/dataview-core": "^2.0.1"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@hg2/dataview-core": "workspace:*"
|
|
30
|
+
}
|
|
31
|
+
}
|