@alviere/ui 0.11.2 → 0.12.1
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 +15 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +2791 -993
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/web-components.js +1 -1
- package/dist/web-components.js.map +1 -1
- package/package.json +25 -4
package/README.md
CHANGED
|
@@ -46,6 +46,21 @@ The development server will start on `http://localhost:8000`
|
|
|
46
46
|
|
|
47
47
|
- `pnpm run dev:server` - Start the Express development server
|
|
48
48
|
- `pnpm run dev` - Start Vite development server (for component development)
|
|
49
|
+
- `pnpm run a11y:all` - Run the full local accessibility audit toolchain
|
|
50
|
+
- `pnpm run a11y:report:generate` - Generate consolidated auditor-facing a11y report (HTML/MD/JSON)
|
|
51
|
+
|
|
52
|
+
## Accessibility Audits (WCAG/508)
|
|
53
|
+
|
|
54
|
+
For VPAT/Section 508 evidence generation, use the local accessibility audit pipeline documented in:
|
|
55
|
+
|
|
56
|
+
- [`test/README.md`](./test/README.md)
|
|
57
|
+
|
|
58
|
+
This includes:
|
|
59
|
+
|
|
60
|
+
- Component-level axe checks (`vitest-axe`)
|
|
61
|
+
- Browser-level axe audits (Playwright)
|
|
62
|
+
- Page-level WCAG checks (`pa11y-ci`)
|
|
63
|
+
- Lighthouse accessibility assertions and reports
|
|
49
64
|
|
|
50
65
|
**For more information on how the dev server is setup [see here](./dev/README.md)**
|
|
51
66
|
|
package/dist/index.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export declare interface FlowConfig {
|
|
|
59
59
|
title?: string;
|
|
60
60
|
description?: string;
|
|
61
61
|
profile?: string;
|
|
62
|
+
labels?: FlowLabels;
|
|
62
63
|
allowSkip?: boolean;
|
|
63
64
|
allowBack?: boolean;
|
|
64
65
|
showProgress?: boolean;
|
|
@@ -72,6 +73,16 @@ export declare interface FlowEvent {
|
|
|
72
73
|
error?: Error;
|
|
73
74
|
}
|
|
74
75
|
|
|
76
|
+
declare interface FlowLabels {
|
|
77
|
+
finalText?: string;
|
|
78
|
+
finalMessage?: string;
|
|
79
|
+
criticalErrorTitleLabel?: string;
|
|
80
|
+
criticalErrorTitle?: string;
|
|
81
|
+
criticalErrorMessageLabel?: string;
|
|
82
|
+
criticalErrorMessage?: string;
|
|
83
|
+
[key: string]: string | undefined;
|
|
84
|
+
}
|
|
85
|
+
|
|
75
86
|
export declare interface FlowState {
|
|
76
87
|
currentStepIndex: number;
|
|
77
88
|
completedSteps: number[];
|