@atscript/ui 0.1.102 → 0.1.104
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/index.cjs +731 -10
- package/dist/index.d.cts +272 -6
- package/dist/index.d.mts +272 -6
- package/dist/index.mjs +722 -9
- package/dist/plugin.cjs +2 -2
- package/dist/plugin.mjs +2 -2
- package/package.json +3 -3
package/dist/plugin.cjs
CHANGED
|
@@ -344,8 +344,8 @@ const uiAnnotations = { ui: {
|
|
|
344
344
|
description: "Component name from the table components registry"
|
|
345
345
|
}
|
|
346
346
|
}),
|
|
347
|
-
|
|
348
|
-
description: "
|
|
347
|
+
exclude: new _atscript_core.AnnotationSpec({
|
|
348
|
+
description: "Completely removes this field from the table — not displayable, filterable, or sortable, and not shown in the config dialog. The field stays in the type and remains a valid `@ui.table.selectWith` target so its data can still be fetched for custom cells.",
|
|
349
349
|
nodeType: ["prop", "type"]
|
|
350
350
|
}),
|
|
351
351
|
attr: new _atscript_core.AnnotationSpec({
|
package/dist/plugin.mjs
CHANGED
|
@@ -344,8 +344,8 @@ const uiAnnotations = { ui: {
|
|
|
344
344
|
description: "Component name from the table components registry"
|
|
345
345
|
}
|
|
346
346
|
}),
|
|
347
|
-
|
|
348
|
-
description: "
|
|
347
|
+
exclude: new AnnotationSpec({
|
|
348
|
+
description: "Completely removes this field from the table — not displayable, filterable, or sortable, and not shown in the config dialog. The field stays in the type and remains a valid `@ui.table.selectWith` target so its data can still be fetched for custom cells.",
|
|
349
349
|
nodeType: ["prop", "type"]
|
|
350
350
|
}),
|
|
351
351
|
attr: new AnnotationSpec({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atscript/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.104",
|
|
4
4
|
"description": "Framework-agnostic runtime for form and table definitions from atscript annotated types",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"annotations",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@atscript/db-client": "^0.1.
|
|
50
|
+
"@atscript/db-client": "^0.1.108"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@atscript/core": "^0.1.77",
|
|
54
|
-
"@atscript/db": "^0.1.
|
|
54
|
+
"@atscript/db": "^0.1.108",
|
|
55
55
|
"@atscript/typescript": "^0.1.77",
|
|
56
56
|
"unplugin-atscript": "^0.1.77",
|
|
57
57
|
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.14"
|