@object-ui/components 3.4.0 → 4.0.3

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 CHANGED
@@ -1,5 +1,42 @@
1
1
  # @object-ui/components
2
2
 
3
+ ## 4.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 4be43e2: **Page-mode record forms (`editMode: 'page'`).** New per-object metadata flag that opts a record's create/edit form into a dedicated full-screen route (`/apps/:appName/:objectName/new`, `/apps/:appName/:objectName/record/:recordId/edit`). Two new declarative actions `navigate_create` and `navigate_edit` open these routes from JSON action buttons. Default modal behavior is preserved for objects that do not set `editMode`.
8
+
9
+ **`@object-ui/plugin-list` & `@object-ui/plugin-detail`: `ComponentRegistry` singleton fix.** Both plugins' Vite configs now mark all `@object-ui/*` packages as external so each plugin no longer bundles its own private copy of `@object-ui/core`. Cross-plugin component lookups now resolve correctly from the same singleton registry. `plugin-list` dist shrank from multi-MB to 67 kB (gzip 16 kB); `plugin-detail` to 124 kB (gzip 28 kB).
10
+
11
+ **`@object-ui/app-shell` `CreateViewDialog` churn fix.** `existingSet` is now memoised on the joined string key of `existingLabels` rather than the raw array reference, preventing the name-suggest `useEffect` from re-firing on every parent render.
12
+
13
+ **CI fixes.** `ReportViewer` conditional-formatting test now accepts both `rgb(...)` and hex color representations. `ObjectView` i18n mocks rewritten to mirror the real hook shapes (`useObjectTranslation`, `useObjectLabel`).
14
+
15
+ - Updated dependencies [4be43e2]
16
+ - @object-ui/types@4.0.3
17
+ - @object-ui/core@4.0.3
18
+ - @object-ui/i18n@4.0.3
19
+ - @object-ui/react@4.0.3
20
+
21
+ ## 4.0.1
22
+
23
+ ### Patch Changes
24
+
25
+ - @object-ui/types@4.0.1
26
+ - @object-ui/core@4.0.1
27
+ - @object-ui/i18n@4.0.1
28
+ - @object-ui/react@4.0.1
29
+
30
+ ## 4.0.0
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies
35
+ - @object-ui/types@4.0.0
36
+ - @object-ui/core@4.0.0
37
+ - @object-ui/react@4.0.0
38
+ - @object-ui/i18n@4.0.0
39
+
3
40
  ## 3.4.0
4
41
 
5
42
  ### Minor Changes
package/dist/index.css CHANGED
@@ -755,9 +755,6 @@
755
755
  .h-\[1px\] {
756
756
  height: 1px;
757
757
  }
758
- .h-\[20px\] {
759
- height: 20px;
760
- }
761
758
  .h-\[100dvh\] {
762
759
  height: 100dvh;
763
760
  }
@@ -1483,6 +1480,9 @@
1483
1480
  margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
1484
1481
  }
1485
1482
  }
1483
+ .self-start {
1484
+ align-self: flex-start;
1485
+ }
1486
1486
  .self-stretch {
1487
1487
  align-self: stretch;
1488
1488
  }