@northlight/ui 2.27.0 → 2.27.1
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/es/northlight.d.ts +1 -1
- package/dist/es/northlight.js +285 -252
- package/dist/es/northlight.js.map +1 -1
- package/dist/umd/northlight.cjs +285 -252
- package/dist/umd/northlight.cjs.map +1 -1
- package/dist/umd/northlight.min.cjs +3 -3
- package/dist/umd/northlight.min.cjs.map +1 -1
- package/package.json +2 -2
package/dist/es/northlight.d.ts
CHANGED
|
@@ -4198,7 +4198,7 @@ interface CreatableSelectDropdownProps<T extends string = string> {
|
|
|
4198
4198
|
menuPlacement?: 'top' | 'bottom' | 'auto';
|
|
4199
4199
|
}
|
|
4200
4200
|
|
|
4201
|
-
declare const CreatableSelectDropdown: <T extends string = string>({ standardOptions, initialPlaceholder, addOptionPlaceholder, creationOption, onOptionChange, variant, defaultValue, value, menuPlacement, }: CreatableSelectDropdownProps<T>) => JSX.Element;
|
|
4201
|
+
declare const CreatableSelectDropdown: <T extends string = string>({ standardOptions, initialPlaceholder, addOptionPlaceholder, creationOption, onOptionChange, variant, defaultValue, value, menuPlacement, ...restProps }: CreatableSelectDropdownProps<T>) => JSX.Element;
|
|
4202
4202
|
|
|
4203
4203
|
declare const useDebounce: <T>(value: T, delay: number) => T;
|
|
4204
4204
|
|