@khanacademy/wonder-blocks-clickable 8.1.1 → 8.1.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,18 @@
1
1
  # @khanacademy/wonder-blocks-clickable
2
2
 
3
+ ## 8.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 12e04c3: Update component documentation for the `disabled` props to include details about `aria-disabled` being set internally to keep an element focusable while in a disabled state
8
+
9
+ ## 8.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [8bb7ada]
14
+ - @khanacademy/wonder-blocks-tokens@15.0.0
15
+
3
16
  ## 8.1.1
4
17
 
5
18
  ### Patch Changes
@@ -28,7 +28,10 @@ Partial<Omit<AriaProps, "aria-disabled">> & {
28
28
  */
29
29
  className?: string;
30
30
  /**
31
- * Disables or enables the child; defaults to false
31
+ * Disables or enables the child; defaults to false.
32
+ *
33
+ * Internally, the `aria-disabled` attribute will be set so that the
34
+ * element remains focusable and will be included in the tab order.
32
35
  */
33
36
  disabled?: boolean;
34
37
  /**
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Clickable component for Wonder-Blocks.",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "8.1.1",
6
+ "version": "8.1.3",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -21,7 +21,7 @@
21
21
  "types": "dist/index.d.ts",
22
22
  "dependencies": {
23
23
  "@khanacademy/wonder-blocks-core": "12.4.3",
24
- "@khanacademy/wonder-blocks-tokens": "14.1.3"
24
+ "@khanacademy/wonder-blocks-tokens": "15.0.0"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "aphrodite": "^1.2.5",