@seeqdev/qomponents 0.0.222 → 0.0.223
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/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/src/Badge/Badge.d.ts +2 -2
- package/dist/src/ColorPickerControl/ColorPickerControl.d.ts +2 -2
- package/dist/src/Select/Select.types.d.ts +5 -0
- package/dist/styles.css +3 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BadgeProps } from "./Badge.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 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) =>
|
|
13
|
+
}: BadgeProps) => react_jsx_runtime0.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
|
|
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):
|
|
15
|
+
}: ColorPickerControlProps): react_jsx_runtime3.JSX.Element;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { ColorPickerControl 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