@object-ui/components 11.0.0 → 11.2.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/CHANGELOG.md +26 -0
- package/dist/index.css +10 -0
- package/dist/index.js +2347 -2285
- package/dist/index.umd.cjs +6 -6
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @object-ui/components
|
|
2
2
|
|
|
3
|
+
## 11.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9e7a986: ADR-0080: AI-authored UI pages. New `@object-ui/sdui-parser` compiles a constrained JSX/HTML+Tailwind source into the SchemaNode tree (parse, never execute) with whitelist sanitization, manifest validation, and `.d.ts` codegen for the JSX type surface. `PageRenderer` renders `kind:'jsx'` pages; `ComponentRegistry` gains `tier` + `getPublicConfigs()` (capability vs contract).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [9e7a986]
|
|
12
|
+
- Updated dependencies [1311749]
|
|
13
|
+
- @object-ui/sdui-parser@11.2.0
|
|
14
|
+
- @object-ui/core@11.2.0
|
|
15
|
+
- @object-ui/react@11.2.0
|
|
16
|
+
- @object-ui/types@11.2.0
|
|
17
|
+
- @object-ui/i18n@11.2.0
|
|
18
|
+
|
|
19
|
+
## 11.1.0
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [6726a2b]
|
|
24
|
+
- @object-ui/i18n@11.1.0
|
|
25
|
+
- @object-ui/react@11.1.0
|
|
26
|
+
- @object-ui/types@11.1.0
|
|
27
|
+
- @object-ui/core@11.1.0
|
|
28
|
+
|
|
3
29
|
## 7.3.0
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -484,6 +484,9 @@
|
|
|
484
484
|
.\!m-0 {
|
|
485
485
|
margin: 0 !important;
|
|
486
486
|
}
|
|
487
|
+
.m-4 {
|
|
488
|
+
margin: calc(var(--spacing) * 4);
|
|
489
|
+
}
|
|
487
490
|
.-mx-1 {
|
|
488
491
|
margin-inline: calc(var(--spacing) * -1);
|
|
489
492
|
}
|
|
@@ -2123,6 +2126,9 @@
|
|
|
2123
2126
|
.pl-4 {
|
|
2124
2127
|
padding-left: calc(var(--spacing) * 4);
|
|
2125
2128
|
}
|
|
2129
|
+
.pl-5 {
|
|
2130
|
+
padding-left: calc(var(--spacing) * 5);
|
|
2131
|
+
}
|
|
2126
2132
|
.pl-6 {
|
|
2127
2133
|
padding-left: calc(var(--spacing) * 6);
|
|
2128
2134
|
}
|
|
@@ -2505,6 +2511,10 @@
|
|
|
2505
2511
|
outline-style: var(--tw-outline-style);
|
|
2506
2512
|
outline-width: 1px;
|
|
2507
2513
|
}
|
|
2514
|
+
.blur {
|
|
2515
|
+
--tw-blur: blur(8px);
|
|
2516
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2517
|
+
}
|
|
2508
2518
|
.filter {
|
|
2509
2519
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2510
2520
|
}
|