@seeqdev/qomponents 0.0.222 → 0.0.224

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
  import { BadgeProps } from "./Badge.types.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime4 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Badge/Badge.d.ts
5
5
  /**
@@ -10,6 +10,6 @@ declare const Badge: ({
10
10
  variant,
11
11
  testId,
12
12
  extraClassNames
13
- }: BadgeProps) => react_jsx_runtime3.JSX.Element;
13
+ }: BadgeProps) => react_jsx_runtime4.JSX.Element;
14
14
  //#endregion
15
15
  export { Badge, Badge as default };
@@ -1,5 +1,5 @@
1
1
  import { ColorPickerControlProps } from "./ColorPickerControl.types.js";
2
- import * as react_jsx_runtime2 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ColorPickerControl/ColorPickerControl.d.ts
5
5
  declare function ColorPickerControl({
@@ -12,6 +12,6 @@ declare function ColorPickerControl({
12
12
  id,
13
13
  testId,
14
14
  onOpen
15
- }: ColorPickerControlProps): react_jsx_runtime2.JSX.Element;
15
+ }: ColorPickerControlProps): react_jsx_runtime3.JSX.Element;
16
16
  //#endregion
17
17
  export { ColorPickerControl as default };
@@ -1,5 +1,5 @@
1
1
  import { LoadingIndicatorProps } from "./LoadingIndicator.types.js";
2
- import * as react_jsx_runtime4 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime2 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/LoadingIndicator/LoadingIndicator.d.ts
5
5
  /**
@@ -19,6 +19,6 @@ declare const LoadingIndicator: ({
19
19
  role,
20
20
  onClick,
21
21
  title
22
- }: LoadingIndicatorProps) => react_jsx_runtime4.JSX.Element;
22
+ }: LoadingIndicatorProps) => react_jsx_runtime2.JSX.Element;
23
23
  //#endregion
24
24
  export { LoadingIndicator as default };
@@ -1,5 +1,5 @@
1
1
  import { SegmentedControlProps } from "./SegmentedControl.types.js";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/SegmentedControl/SegmentedControl.d.ts
5
5
  declare function SegmentedControl<T extends string | number | boolean>({
@@ -10,6 +10,6 @@ declare function SegmentedControl<T extends string | number | boolean>({
10
10
  id,
11
11
  testId,
12
12
  ariaLabel
13
- }: SegmentedControlProps<T>): react_jsx_runtime0.JSX.Element;
13
+ }: SegmentedControlProps<T>): react_jsx_runtime1.JSX.Element;
14
14
  //#endregion
15
15
  export { SegmentedControl as default };
@@ -221,6 +221,11 @@ interface SelectProps {
221
221
  * Use this when you want to control the search input externally.
222
222
  */
223
223
  inputValue?: string;
224
+ /**
225
+ * Callback triggered when the user scrolls to the bottom of the dropdown menu.
226
+ * Use this to fetch the next page of options when implementing infinite-scroll loading.
227
+ */
228
+ onMenuScrollToBottom?: (event: WheelEvent | TouchEvent) => void;
224
229
  }
225
230
  //#endregion
226
231
  export { GroupedOption, Option, SelectProps };
package/dist/styles.css CHANGED
@@ -583,6 +583,9 @@
583
583
  .tw\:flex-shrink-0 {
584
584
  flex-shrink: 0;
585
585
  }
586
+ .tw\:shrink-0 {
587
+ flex-shrink: 0;
588
+ }
586
589
  .tw\:flex-grow {
587
590
  flex-grow: 1;
588
591
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.222",
3
+ "version": "0.0.224",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -48,6 +48,7 @@
48
48
  "cross-env": "10.0.0",
49
49
  "identity-obj-proxy": "3.0.0",
50
50
  "postcss-import": "16.0.0",
51
+ "prettier": "3.8.1",
51
52
  "react": "19.2.0",
52
53
  "react-dom": "19.2.0",
53
54
  "rimraf": "6.0.1",