@isi-ui7/bos7-shared 0.3.7 → 0.3.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isi-ui7/bos7-shared",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Shared auth7 and layout primitives for bos7 applications.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -588,7 +588,12 @@ export function CrudSchemaPage<TData extends Record<string, unknown>>({
588
588
  disabled={saving}
589
589
  onChange={setForm}
590
590
  density={density}
591
- width={width}
591
+ // Pada wizard, form MENGISI kolom kirinya. Default global
592
+ // "two-thirds" membatasi form di dalam kolom yang SUDAH
593
+ // dipersempit stepper — hasilnya sepertiga ruang kosong
594
+ // menganga di antara keduanya. Penulis skema tetap bisa
595
+ // menyempitkannya dgn menyetel schema.width secara eksplisit.
596
+ width={width ?? "full"}
592
597
  />
593
598
  ) : null}
594
599
  </div>
@@ -100,7 +100,7 @@ export function WizardStepper({
100
100
  <nav
101
101
  aria-label={title}
102
102
  style={{
103
- width: "15rem",
103
+ width: "13.5rem",
104
104
  flexShrink: 0,
105
105
  display: "flex",
106
106
  flexDirection: "column",