@vmz/ui 0.1.9 → 0.1.11

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/README.md CHANGED
@@ -19,7 +19,7 @@ This is a **preview** release. It is **not** `production-ready` and **not** a ma
19
19
 
20
20
  Headline surface for this cut:
21
21
 
22
- - Commercial / Console / Document-Product composition dogfood (homepage)
22
+ - Commercial / Console / Document-Product composition on official homepage
23
23
  - Form depth, Structure, Overlay stacking, DataTable (ordinary HTML table — not `@vmz/ui-data-grid`)
24
24
  - DatePicker owned calendar overlay (not native `input[type=date]` popup)
25
25
  - Upload multipart binary (parent-owned FormData → `#server` File/Blob; progress/cancel)
@@ -35,7 +35,7 @@ Verify:
35
35
  pnpm verify -- ui-automation
36
36
  pnpm verify -- ui7
37
37
  pnpm verify -- ui-data-grid
38
- pnpm verify -- official-dogfood
38
+ pnpm verify -- official-homepage
39
39
  ```
40
40
 
41
41
  Still open relative to Browser Production Profile v1: `browser-production` aggregate core gaps,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vmz/ui",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "description": "VMZ UI — official UI framework (component contracts + semantic token requirements). Not a theme. Not a plugin.",
6
6
  "license": "MIT",
@@ -6,7 +6,7 @@
6
6
  role="region"
7
7
  aria-label={label}
8
8
  >
9
- <p class="vmz-ui-bulk-actions__count" data-dogfood="bulk-count">{countLabel}</p>
9
+ <p class="vmz-ui-bulk-actions__count" data-vmz-fixture="bulk-count">{countLabel}</p>
10
10
  <div class="vmz-ui-bulk-actions__actions">
11
11
  <slot />
12
12
  </div>
@@ -8,7 +8,7 @@
8
8
  >
9
9
  Previous
10
10
  </button>
11
- <p class="vmz-ui-pagination__status" data-dogfood="page-status">{status}</p>
11
+ <p class="vmz-ui-pagination__status" data-vmz-fixture="page-status">{status}</p>
12
12
  <button
13
13
  type="button"
14
14
  class="vmz-ui-pagination__btn"
@@ -316,7 +316,7 @@ export default class Upload {
316
316
  }>) | null = null;
317
317
  /** Parent receives serializable results (no File handles required). */
318
318
  public onValue: ((items: UploadValueItem[]) => void) | null = null;
319
- /** Parent mirrors overall status for form dogfood / submit gates. */
319
+ /** Parent mirrors overall status for form fixture / submit gates. */
320
320
  public onStatus: ((status: string) => void) | null = null;
321
321
  public cancelLabel: string = "Cancel upload";
322
322
  public resumeLabel: string = "Resume upload";