@bolttech/molecules-dropdown 0.37.2 → 0.37.4

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/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@bolttech/molecules-dropdown",
3
- "version": "0.37.2",
3
+ "version": "0.37.4",
4
4
  "dependencies": {
5
5
  "react": "19.1.2",
6
- "@bolttech/atoms-select": "0.27.2",
6
+ "@bolttech/atoms-select": "0.27.4",
7
7
  "react-dom": "19.1.2",
8
- "@bolttech/ui-utils": "0.6.5",
8
+ "@bolttech/ui-utils": "0.6.7",
9
9
  "styled-components": "6.1.1",
10
- "@bolttech/atoms-icon": "0.24.8",
11
- "@bolttech/atoms-input": "0.30.3",
12
- "@bolttech/default-theme": "0.18.0"
10
+ "@bolttech/atoms-icon": "0.24.9",
11
+ "@bolttech/atoms-input": "0.30.4",
12
+ "@bolttech/default-theme": "0.18.2"
13
13
  },
14
14
  "main": "./index.cjs.js",
15
15
  "type": "commonjs",
@@ -291,8 +291,8 @@ export declare const ClickableElement: import("styled-components").IStyledCompon
291
291
  onTransitionStart?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
292
292
  onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
293
293
  }>;
294
- export declare const ContainerDropdown: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, DropdownStyledProps>>;
295
- export declare const SectionContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, Omit<DropdownStyledProps, "$hasValue">>>;
294
+ export declare const ContainerDropdown: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, DropdownStyledProps>>;
295
+ export declare const SectionContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<DropdownStyledProps, "$hasValue">>>;
296
296
  export declare const InputAndIconDropdown: import("styled-components").IStyledComponent<"web", {
297
297
  ref?: import("react").Ref<HTMLDivElement> | undefined;
298
298
  key?: import("react").Key | null | undefined;
@@ -192,5 +192,6 @@ export type ReusableDropdownComponentProps = DefaultProps & Pick<DOMAttributes<E
192
192
  inputLabel: string;
193
193
  setSelectedOptionOnInputValue: () => void;
194
194
  inputRef: React.RefObject<HTMLInputElement | null>;
195
+ activeDescendantId?: string;
195
196
  };
196
197
  export {};
@@ -1,2 +1,2 @@
1
1
  import { ReusableDropdownComponentProps } from './molecules-dropdown.type';
2
- export declare const ReusableDropdownComponent: ({ id, dataTestId, label, variant, required, inputValue, inputLabel, disabled, errorMessage, helperMessage, onChangeInputValue, onChangeInputLabel, setShowSelectComponent, showSelectComponent, setSelectedOptionOnInputValue, disableSearch, inputRef, placeholder, onBlur, onFocus, onKeyUp, onKeyDown, ...props }: ReusableDropdownComponentProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const ReusableDropdownComponent: ({ id, dataTestId, label, variant, required, inputValue, inputLabel, disabled, errorMessage, helperMessage, onChangeInputValue, onChangeInputLabel, setShowSelectComponent, showSelectComponent, setSelectedOptionOnInputValue, disableSearch, inputRef, placeholder, onBlur, onFocus, onKeyUp, onKeyDown, activeDescendantId, ...props }: ReusableDropdownComponentProps) => import("react/jsx-runtime").JSX.Element;