@pushwoosh/dumb-components 1.1.169 → 1.1.171

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.
@@ -6,6 +6,8 @@ import type { SelectProps, SelectAsyncProps, SelectCreatableProps } from './type
6
6
  *
7
7
  * @deprecated Use {@link Combobox} (or {@link ComboboxMulti} for multi-select) instead —
8
8
  * Combobox is the in-house replacement for the `react-select` family.
9
+ * If the select is used as an action/navigation menu rather than a form value picker,
10
+ * use {@link DropdownMenu} with a {@link DropdownMenuButton} trigger.
9
11
  * @example
10
12
  * <Select options={options} value={value} onChange={onChange} />
11
13
  */
package/Select/Select.js CHANGED
@@ -17,6 +17,8 @@ const componentsProps = {
17
17
  *
18
18
  * @deprecated Use {@link Combobox} (or {@link ComboboxMulti} for multi-select) instead —
19
19
  * Combobox is the in-house replacement for the `react-select` family.
20
+ * If the select is used as an action/navigation menu rather than a form value picker,
21
+ * use {@link DropdownMenu} with a {@link DropdownMenuButton} trigger.
20
22
  * @example
21
23
  * <Select options={options} value={value} onChange={onChange} />
22
24
  */
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@pushwoosh/dumb-components",
3
- "version": "1.1.169",
3
+ "version": "1.1.171",
4
4
  "description": "React components to build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "sideEffects": false,
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
9
12
  "scripts": {
10
13
  "start": "npm --prefix ./storybook run storybook",
11
14
  "build": "pushwoosh-engine lib:build",