@agility/plenum-ui 2.1.20-rc5 → 2.1.20-rc7

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.
@@ -19,7 +19,7 @@ jobs:
19
19
  - name: Set up Node.js
20
20
  uses: actions/setup-node@v3
21
21
  with:
22
- node-version: "18" # Specify the Node.js version you want
22
+ node-version: "20" # Specify the Node.js version you want
23
23
 
24
24
  - name: Install dependencies
25
25
  run: yarn install # Installs dependencies using Yarn
@@ -19,7 +19,7 @@ jobs:
19
19
  - name: Set up Node.js
20
20
  uses: actions/setup-node@v3
21
21
  with:
22
- node-version: "18" # Specify the Node.js version you want
22
+ node-version: "20" # Specify the Node.js version you want
23
23
 
24
24
  - name: Install dependencies
25
25
  run: yarn install # Or `npm install` if you're using npm
package/dist/index.d.ts CHANGED
@@ -648,7 +648,7 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox' {
648
648
  /** Placeholder */
649
649
  placeholder?: string;
650
650
  /** Callback to trigger on change */
651
- onChange?(value: T | undefined): void;
651
+ onChange?(value: T | undefined | null): void;
652
652
  /** Select disabled state */
653
653
  isDisabled?: boolean;
654
654
  /** Select error state */
@@ -1047,9 +1047,8 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownWithMultiSelect/Dro
1047
1047
  interface Props {
1048
1048
  label: string;
1049
1049
  options: MultiSelectItemProps[];
1050
- type: "checkbox" | "radio";
1051
1050
  }
1052
- const DropdownWithMultiSelect: ({ label, options, type }: Props) => import("react/jsx-runtime").JSX.Element;
1051
+ const DropdownWithMultiSelect: ({ label, options }: Props) => import("react/jsx-runtime").JSX.Element;
1053
1052
  export default DropdownWithMultiSelect;
1054
1053
 
1055
1054
  }