@verndale/accessibility-standards 1.0.0 → 2.0.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/OPERATING.md +2 -0
- package/README.md +4 -0
- package/bin/accessibility-standards.mjs +1 -1
- package/dist/manifest.json +39 -21
- package/dist/profiles/ai-orchestration/coverage-manifest.json +109 -2
- package/dist/profiles/ai-orchestration/implementation/accessibility.md +334 -0
- package/dist/profiles/ai-orchestration/pattern-contracts.json +125 -39
- package/dist/profiles/ai-orchestration/patterns/accordion.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/alert.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/carousel.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/combobox.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/consequential-submission.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/dialog.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/disclosure.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/dynamic-status.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/field.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/image.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/listbox.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/media-player.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/menu-button.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/pagination.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/popover.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/progress.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/tabs.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/tooltip.md +9 -0
- package/dist/profiles/ai-orchestration/patterns/validation.md +9 -0
- package/dist/profiles/ai-orchestration/review/accessibility.md +8 -1
- package/dist/profiles/ai-orchestration/semantics/accessible-name.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/alert.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/consequential-action.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/data-table.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/expanded-state.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/focus.initial.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/focus.return.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/focus.visible.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/form-error.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/form-label.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/form-required.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/headings.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/keyboard.escape.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/keyboard.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/landmarks.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/live-status.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/media-alternatives.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/motion-control.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/name-role-value.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/native-dialog.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/native-elements.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/non-text-alternative.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/roles-states-properties.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/selected-state.md +1 -0
- package/dist/profiles/ai-orchestration/semantics/target-size.md +1 -0
- package/dist/profiles/ai-orchestration/semantics.json +48 -1
- package/dist/profiles/ai-orchestration/testing/accessibility.md +1 -1
- package/dist/profiles/ai-orchestration/ui-design-brain-bindings.json +856 -0
- package/dist/profiles/conductor/a11y-semantics.md +22 -1
- package/dist/profiles/conductor/accessibility-quality.md +314 -0
- package/dist/profiles/conductor/applicability-matrix.json +111 -28
- package/dist/profiles/conductor/coverage-manifest.json +109 -2
- package/dist/profiles/conductor/pattern-contracts.json +125 -39
- package/dist/profiles/conductor/patterns/accordion.json +13 -3
- package/dist/profiles/conductor/patterns/alert.json +13 -3
- package/dist/profiles/conductor/patterns/carousel.json +13 -3
- package/dist/profiles/conductor/patterns/combobox.json +13 -3
- package/dist/profiles/conductor/patterns/consequential-submission.json +13 -3
- package/dist/profiles/conductor/patterns/dialog.json +13 -3
- package/dist/profiles/conductor/patterns/disclosure.json +13 -3
- package/dist/profiles/conductor/patterns/dynamic-status.json +13 -3
- package/dist/profiles/conductor/patterns/field.json +23 -3
- package/dist/profiles/conductor/patterns/image.json +23 -3
- package/dist/profiles/conductor/patterns/listbox.json +13 -3
- package/dist/profiles/conductor/patterns/media-player.json +23 -3
- package/dist/profiles/conductor/patterns/menu-button.json +13 -3
- package/dist/profiles/conductor/patterns/pagination.json +13 -3
- package/dist/profiles/conductor/patterns/popover.json +13 -3
- package/dist/profiles/conductor/patterns/progress.json +13 -3
- package/dist/profiles/conductor/patterns/tabs.json +13 -3
- package/dist/profiles/conductor/patterns/tooltip.json +13 -3
- package/dist/profiles/conductor/patterns/validation.json +23 -3
- package/dist/profiles/conductor/semantics.json +48 -1
- package/dist/profiles/conductor/ui-design-brain-bindings.json +856 -0
- package/dist/projection-manifest.json +103 -78
- package/dist/requirements-to-implementation.md +2 -0
- package/lib/build-manifest.mjs +12 -6
- package/lib/build.mjs +19 -5
- package/lib/compile-applicability.mjs +131 -10
- package/lib/coverage.mjs +20 -0
- package/lib/index.mjs +1 -1
- package/lib/load.mjs +31 -1
- package/lib/provenance.mjs +49 -0
- package/lib/render.mjs +69 -29
- package/lib/sync.mjs +240 -26
- package/lib/validate.mjs +255 -24
- package/package.json +24 -11
- package/profiles/ai-orchestration/profile.json +1 -1
- package/profiles/conductor/profile.json +1 -1
- package/schemas/consumer-config.schema.json +1 -1
- package/schemas/contract.schema.json +1 -0
- package/schemas/manifest.schema.json +1 -1
- package/schemas/projection-manifest.schema.json +84 -1
- package/schemas/ui-design-brain-bindings.schema.json +86 -0
- package/src/applicability/facts.yml +29 -1
- package/src/applicability/matrix.yml +3 -2
- package/src/applicability/ui-design-brain-bindings.yml +210 -0
- package/src/contract.yml +1 -0
- package/src/patterns/disclosure/accordion.yml +1 -1
- package/src/patterns/disclosure/disclosure.yml +1 -1
- package/src/patterns/feedback/alert.yml +1 -1
- package/src/patterns/feedback/dynamic-status.yml +1 -1
- package/src/patterns/feedback/progress.yml +1 -1
- package/src/patterns/forms/consequential-submission.yml +1 -1
- package/src/patterns/forms/field.yml +1 -1
- package/src/patterns/forms/validation.yml +1 -1
- package/src/patterns/media/carousel.yml +1 -1
- package/src/patterns/media/image.yml +1 -1
- package/src/patterns/media/media-player.yml +1 -1
- package/src/patterns/navigation/menu-button.yml +1 -1
- package/src/patterns/navigation/pagination.yml +1 -1
- package/src/patterns/navigation/tabs.yml +1 -1
- package/src/patterns/overlays/dialog.yml +1 -1
- package/src/patterns/overlays/popover.yml +1 -1
- package/src/patterns/overlays/tooltip.yml +1 -1
- package/src/patterns/selection/combobox.yml +1 -1
- package/src/patterns/selection/listbox.yml +1 -1
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# pattern.tooltip
|
|
3
4
|
|
|
4
5
|
## pattern.tooltip
|
|
5
6
|
|
|
6
7
|
Requires: semantics.accessible-name, semantics.keyboard.escape.
|
|
7
8
|
|
|
9
|
+
Scope: Supplementary description.
|
|
10
|
+
|
|
8
11
|
Behavior:
|
|
9
12
|
- Available on hover and focus
|
|
10
13
|
- Never contains interactive content
|
|
11
14
|
|
|
15
|
+
Product decisions: delay.
|
|
16
|
+
|
|
17
|
+
Functional Spec bindings: behavior.
|
|
18
|
+
|
|
19
|
+
Implementation outcomes: tooltip-description.
|
|
20
|
+
|
|
12
21
|
Evidence: unit, e2e, human.
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# pattern.validation
|
|
3
4
|
|
|
4
5
|
## pattern.validation
|
|
5
6
|
|
|
6
7
|
Requires: semantics.form-error, semantics.live-status, semantics.focus.initial.
|
|
7
8
|
|
|
9
|
+
Scope: Client or server validation.
|
|
10
|
+
|
|
8
11
|
Behavior:
|
|
9
12
|
- Identify, associate, summarize, and focus errors deterministically
|
|
10
13
|
|
|
14
|
+
Product decisions: validation_timing, error_summary.
|
|
15
|
+
|
|
16
|
+
Functional Spec bindings: validation, messaging, focus.
|
|
17
|
+
|
|
18
|
+
Implementation outcomes: validation-associations, error-summary.
|
|
19
|
+
|
|
11
20
|
Evidence: unit, axe, e2e, human.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# Accessibility review contract
|
|
3
4
|
|
|
4
|
-
Review in this order: source compatibility, semantic dependencies, pattern behavior, implementation outcomes, test lanes, human evidence.
|
|
5
|
+
Review in this order: source compatibility, foundations, semantic dependencies, pattern behavior, applicability outcomes, implementation outcomes, test lanes, human evidence.
|
|
5
6
|
|
|
6
7
|
- applicability.authentication-captcha
|
|
7
8
|
- applicability.character-shortcuts
|
|
@@ -21,6 +22,10 @@ Review in this order: source compatibility, semantic dependencies, pattern behav
|
|
|
21
22
|
- applicability.page-context
|
|
22
23
|
- applicability.redundant-entry
|
|
23
24
|
- applicability.target-size
|
|
25
|
+
- applicability.validation
|
|
26
|
+
- foundation.conformance-boundary
|
|
27
|
+
- foundation.standards-hierarchy
|
|
28
|
+
- foundation.wcag-2.2
|
|
24
29
|
- pattern.accordion
|
|
25
30
|
- pattern.alert
|
|
26
31
|
- pattern.carousel
|
|
@@ -40,6 +45,8 @@ Review in this order: source compatibility, semantic dependencies, pattern behav
|
|
|
40
45
|
- pattern.tabs
|
|
41
46
|
- pattern.tooltip
|
|
42
47
|
- pattern.validation
|
|
48
|
+
- policy.enhanced-quality
|
|
49
|
+
- policy.target-size
|
|
43
50
|
- semantics.accessible-name
|
|
44
51
|
- semantics.alert
|
|
45
52
|
- semantics.consequential-action
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.accessible-name
|
|
3
4
|
|
|
4
5
|
## semantics.accessible-name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.alert
|
|
3
4
|
|
|
4
5
|
## semantics.alert
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.consequential-action
|
|
3
4
|
|
|
4
5
|
## semantics.consequential-action
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.data-table
|
|
3
4
|
|
|
4
5
|
## semantics.data-table
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.expanded-state
|
|
3
4
|
|
|
4
5
|
## semantics.expanded-state
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.focus.initial
|
|
3
4
|
|
|
4
5
|
## semantics.focus.initial
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.focus.return
|
|
3
4
|
|
|
4
5
|
## semantics.focus.return
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.focus.visible
|
|
3
4
|
|
|
4
5
|
## semantics.focus.visible
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.form-error
|
|
3
4
|
|
|
4
5
|
## semantics.form-error
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.form-label
|
|
3
4
|
|
|
4
5
|
## semantics.form-label
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.form-required
|
|
3
4
|
|
|
4
5
|
## semantics.form-required
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.headings
|
|
3
4
|
|
|
4
5
|
## semantics.headings
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.keyboard.escape
|
|
3
4
|
|
|
4
5
|
## semantics.keyboard.escape
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.keyboard
|
|
3
4
|
|
|
4
5
|
## semantics.keyboard
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.landmarks
|
|
3
4
|
|
|
4
5
|
## semantics.landmarks
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.live-status
|
|
3
4
|
|
|
4
5
|
## semantics.live-status
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.media-alternatives
|
|
3
4
|
|
|
4
5
|
## semantics.media-alternatives
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.motion-control
|
|
3
4
|
|
|
4
5
|
## semantics.motion-control
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.name-role-value
|
|
3
4
|
|
|
4
5
|
## semantics.name-role-value
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.native-dialog
|
|
3
4
|
|
|
4
5
|
## semantics.native-dialog
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.native-elements
|
|
3
4
|
|
|
4
5
|
## semantics.native-elements
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.non-text-alternative
|
|
3
4
|
|
|
4
5
|
## semantics.non-text-alternative
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.roles-states-properties
|
|
3
4
|
|
|
4
5
|
## semantics.roles-states-properties
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.selected-state
|
|
3
4
|
|
|
4
5
|
## semantics.selected-state
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# semantics.target-size
|
|
3
4
|
|
|
4
5
|
## semantics.target-size
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_generated": "GENERATED by @verndale/accessibility-standards; DO NOT EDIT",
|
|
3
|
-
"
|
|
3
|
+
"_provenance": {
|
|
4
|
+
"package": "@verndale/accessibility-standards@2.0.1",
|
|
5
|
+
"profile": "ai-orchestration",
|
|
6
|
+
"profile_version": "2.0.1",
|
|
7
|
+
"profile_digest": "f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3",
|
|
8
|
+
"schema_version": 2,
|
|
9
|
+
"source_digest": "5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b"
|
|
10
|
+
},
|
|
11
|
+
"schema_version": 2,
|
|
12
|
+
"foundations": [
|
|
13
|
+
{
|
|
14
|
+
"id": "foundation.conformance-boundary",
|
|
15
|
+
"version": "1.0.0",
|
|
16
|
+
"title": "Conformance boundary",
|
|
17
|
+
"kind": "foundation",
|
|
18
|
+
"requirement": "Automated checks provide evidence but do not establish conformance; every applicable outcome needs its declared proof routes."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "foundation.standards-hierarchy",
|
|
22
|
+
"version": "1.0.0",
|
|
23
|
+
"title": "Standards hierarchy",
|
|
24
|
+
"kind": "foundation",
|
|
25
|
+
"requirement": "Prefer native platform semantics; apply WCAG conformance, ARIA only where needed, APG interaction guidance, then non-conflicting product policy."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "foundation.wcag-2.2",
|
|
29
|
+
"version": "1.0.0",
|
|
30
|
+
"title": "WCAG 2.2 AA baseline",
|
|
31
|
+
"kind": "foundation",
|
|
32
|
+
"requirement": "Meet WCAG 2.2 Level A and AA. Target size minimum is 24 by 24 CSS pixels or an allowed exception; 44 by 44 is enhanced guidance only."
|
|
33
|
+
}
|
|
34
|
+
],
|
|
4
35
|
"semantics": [
|
|
5
36
|
{
|
|
6
37
|
"id": "semantics.accessible-name",
|
|
@@ -285,5 +316,21 @@
|
|
|
285
316
|
"human"
|
|
286
317
|
]
|
|
287
318
|
}
|
|
319
|
+
],
|
|
320
|
+
"policies": [
|
|
321
|
+
{
|
|
322
|
+
"id": "policy.enhanced-quality",
|
|
323
|
+
"version": "1.0.0",
|
|
324
|
+
"title": "Enhanced quality",
|
|
325
|
+
"kind": "policy",
|
|
326
|
+
"requirement": "Enhanced guidance is advisory and cannot be represented as a conformance failure unless the consumer explicitly adopts it as product policy."
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "policy.target-size",
|
|
330
|
+
"version": "1.0.0",
|
|
331
|
+
"title": "Target size policy",
|
|
332
|
+
"kind": "policy",
|
|
333
|
+
"requirement": "Enforce WCAG 2.5.8 at 24 by 24 CSS pixels or a documented exception; report 44 by 44 as enhanced guidance, never as the AA minimum."
|
|
334
|
+
}
|
|
288
335
|
]
|
|
289
336
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<!-- GENERATED by @verndale/accessibility-standards; DO NOT EDIT -->
|
|
2
|
+
<!-- package: @verndale/accessibility-standards@2.0.1; profile: ai-orchestration@2.0.1; schema: 2; source-digest: 5123634b229ba2ada6a8270b53276f3074ed628c8d8a32db26b88ae7688df49b; profile-digest: f8485b4e166fe305a4a779a00700f8b9fc7e8b8f49904d24ddcdac016a5792a3 -->
|
|
2
3
|
# Accessibility testing contract
|
|
3
4
|
|
|
4
5
|
## axe
|
|
@@ -39,7 +40,6 @@
|
|
|
39
40
|
- pattern.dialog
|
|
40
41
|
- pattern.disclosure
|
|
41
42
|
- pattern.dynamic-status
|
|
42
|
-
- pattern.field
|
|
43
43
|
- pattern.listbox
|
|
44
44
|
- pattern.media-player
|
|
45
45
|
- pattern.menu-button
|