@adia-ai/web-components 0.7.23 → 0.7.24
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/CHANGELOG.md +15 -0
- package/USAGE.md +56 -11
- package/components/display-field/display-field.a2ui.json +185 -0
- package/components/display-field/display-field.css +91 -0
- package/components/display-field/display-field.d.ts +26 -0
- package/components/display-field/display-field.examples.md +44 -0
- package/components/display-field/display-field.js +141 -0
- package/components/display-field/display-field.test.js +115 -0
- package/components/display-field/display-field.yaml +191 -0
- package/components/icon/icon.class.js +34 -1
- package/components/index.js +1 -0
- package/components/table/table.class.js +42 -11
- package/components/table/table.test.js +53 -0
- package/core/icons.js +14 -0
- package/custom-elements.json +5722 -2864
- package/dist/theme-provider.min.js +1 -1
- package/dist/web-components.min.css +1 -1
- package/dist/web-components.min.js +87 -79
- package/dist/web-components.sheet.js +1 -1
- package/package.json +3 -2
- package/styles/components.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-components",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.24",
|
|
4
4
|
"description": "AdiaUI web components \u2014 vanilla custom elements. A2UI runtime (renderer, registry, streams, wiring) lives in @adia-ai/a2ui-runtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -127,7 +127,8 @@
|
|
|
127
127
|
"@codemirror/lint": "^6.9.5",
|
|
128
128
|
"@codemirror/state": "^6.6.0",
|
|
129
129
|
"@codemirror/view": "^6.41.1",
|
|
130
|
-
"@lezer/highlight": "^1.2.3"
|
|
130
|
+
"@lezer/highlight": "^1.2.3",
|
|
131
|
+
"@phosphor-icons/core": "^2.1.1"
|
|
131
132
|
},
|
|
132
133
|
"optionalDependencies": {
|
|
133
134
|
"@adia-ai/web-modules": "^0.7.0",
|
package/styles/components.css
CHANGED
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
@import "../components/col/col.css";
|
|
60
60
|
@import "../components/field/field.css";
|
|
61
61
|
@import "../components/fields/fields.css";
|
|
62
|
+
@import "../components/display-field/display-field.css";
|
|
62
63
|
@import "../components/row/row.css";
|
|
63
64
|
@import "../components/grid/grid.css";
|
|
64
65
|
@import "../components/stack/stack.css";
|