@khanacademy/wonder-blocks-dropdown 10.4.10 → 10.5.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @khanacademy/wonder-blocks-dropdown@10.4.10 build:css /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-dropdown
2
+ > @khanacademy/wonder-blocks-dropdown@10.5.0 build:css /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-dropdown
3
3
  > pnpm exec wonder-blocks-tokens .
4
4
 
5
5
  CSS variables generated successfully in: /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-dropdown/dist/css
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @khanacademy/wonder-blocks-dropdown
2
2
 
3
+ ## 10.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a784e6c: Allow a `Partial` object for `labels` in `MultiSelect`, so consumers can decide which labels to override
8
+
3
9
  ## 10.4.10
4
10
 
5
11
  ### Patch Changes
@@ -96,7 +96,7 @@ type Props = AriaProps & DefaultProps & Readonly<{
96
96
  /**
97
97
  * The object containing the custom labels and placeholder values used inside this component.
98
98
  */
99
- labels?: LabelsValues;
99
+ labels?: Partial<LabelsValues>;
100
100
  /**
101
101
  * Callback for when the selection changes. Parameter is an updated array of
102
102
  * the values that are now selected.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Dropdown variants for Wonder Blocks.",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "10.4.10",
6
+ "version": "10.5.0",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },