@stonecrop/aform 0.4.37 → 0.6.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/aform.d.ts +5 -0
- package/package.json +6 -6
package/dist/aform.d.ts
CHANGED
|
@@ -1300,6 +1300,11 @@ export declare interface TableColumn {
|
|
|
1300
1300
|
* @defaultValue false
|
|
1301
1301
|
*/
|
|
1302
1302
|
pinned?: boolean;
|
|
1303
|
+
/**
|
|
1304
|
+
* Control whether the column can be resized by the user.
|
|
1305
|
+
*
|
|
1306
|
+
* @defaultValue false
|
|
1307
|
+
*/
|
|
1303
1308
|
resizable?: boolean;
|
|
1304
1309
|
/**
|
|
1305
1310
|
* The component to use to render the cell for the column. If not provided, the table will
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/aform",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@vueuse/core": "^14.0.0",
|
|
39
39
|
"@vueuse/components": "^14.0.0",
|
|
40
40
|
"vue": "^3.5.22",
|
|
41
|
-
"@stonecrop/
|
|
42
|
-
"@stonecrop/
|
|
41
|
+
"@stonecrop/utilities": "0.6.0",
|
|
42
|
+
"@stonecrop/themes": "0.6.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.38.0",
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
"vite": "^7.1.1",
|
|
61
61
|
"vitest": "^4.0.5",
|
|
62
62
|
"vue-router": "^4.6.3",
|
|
63
|
-
"@stonecrop/atable": "0.
|
|
63
|
+
"@stonecrop/atable": "0.6.0",
|
|
64
64
|
"stonecrop-rig": "0.2.22"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"@stonecrop/atable": "0.
|
|
67
|
+
"@stonecrop/atable": "0.6.0"
|
|
68
68
|
},
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"prepublish": "heft build && vite build && rushx docs",
|
|
78
78
|
"build": "heft build && vite build && rushx docs",
|
|
79
79
|
"dev": "vite",
|
|
80
|
-
"docs": "
|
|
80
|
+
"docs": "bash ../common/scripts/run-docs.sh aform",
|
|
81
81
|
"lint": "eslint .",
|
|
82
82
|
"preview": "vite preview",
|
|
83
83
|
"test": "vitest run --coverage.enabled false",
|