@commercetools-uikit/async-select-input 19.22.1 → 19.22.2
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.
|
@@ -274,7 +274,7 @@ AsyncSelectInput.ValueContainer = reactSelect.components.ValueContainer;
|
|
|
274
274
|
var AsyncSelectInput$1 = AsyncSelectInput;
|
|
275
275
|
|
|
276
276
|
// NOTE: This string will be replaced on build time with the package version.
|
|
277
|
-
var version = "19.22.
|
|
277
|
+
var version = "19.22.2";
|
|
278
278
|
|
|
279
279
|
exports["default"] = AsyncSelectInput$1;
|
|
280
280
|
exports.version = version;
|
|
@@ -254,7 +254,7 @@ AsyncSelectInput.ValueContainer = reactSelect.components.ValueContainer;
|
|
|
254
254
|
var AsyncSelectInput$1 = AsyncSelectInput;
|
|
255
255
|
|
|
256
256
|
// NOTE: This string will be replaced on build time with the package version.
|
|
257
|
-
var version = "19.22.
|
|
257
|
+
var version = "19.22.2";
|
|
258
258
|
|
|
259
259
|
exports["default"] = AsyncSelectInput$1;
|
|
260
260
|
exports.version = version;
|
|
@@ -254,6 +254,6 @@ AsyncSelectInput.ValueContainer = components.ValueContainer;
|
|
|
254
254
|
var AsyncSelectInput$1 = AsyncSelectInput;
|
|
255
255
|
|
|
256
256
|
// NOTE: This string will be replaced on build time with the package version.
|
|
257
|
-
var version = "19.22.
|
|
257
|
+
var version = "19.22.2";
|
|
258
258
|
|
|
259
259
|
export { AsyncSelectInput$1 as default, version };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
import { type ActionMeta, type GroupBase, type OptionsOrGroups } from 'react-select';
|
|
1
|
+
import type { ReactNode, ComponentType } from 'react';
|
|
2
|
+
import { type ActionMeta, type GroupBase, type OptionsOrGroups, type ClearIndicatorProps, type ContainerProps, type ControlProps, type DropdownIndicatorProps, type GroupHeadingProps, type GroupProps, type IndicatorsContainerProps, type InputProps, type MenuListProps, type MultiValueGenericProps, type MultiValueProps, type MultiValueRemoveProps, type NoticeProps, type OptionProps, type PlaceholderProps, type SingleValueProps, type ValueContainerProps, type LoadingIndicatorProps, type MenuProps, type CommonPropsAndClassName, type MenuPlacement, type MenuPosition } from 'react-select';
|
|
3
3
|
import { type AsyncProps } from 'react-select/async';
|
|
4
4
|
type TCustomEvent = {
|
|
5
5
|
target: {
|
|
@@ -274,42 +274,41 @@ declare const AsyncSelectInput: {
|
|
|
274
274
|
/**
|
|
275
275
|
* Expose react-select components for customization purposes.
|
|
276
276
|
*/
|
|
277
|
-
ClearIndicator: {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
ValueContainer: <Option_20, IsMulti_20 extends boolean, Group_20 extends GroupBase<Option_20>>(props: import("react-select").ValueContainerProps<Option_20, IsMulti_20, Group_20>) => import("@emotion/react").jsx.JSX.Element;
|
|
277
|
+
ClearIndicator: ComponentType<ClearIndicatorProps<{}, false, GroupBase<{}>>>;
|
|
278
|
+
Control: ComponentType<ControlProps<{}, false, GroupBase<{}>>>;
|
|
279
|
+
CrossIcon: ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
280
|
+
size?: number;
|
|
281
|
+
}>;
|
|
282
|
+
DownChevron: ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
283
|
+
size?: number;
|
|
284
|
+
}>;
|
|
285
|
+
DropdownIndicator: ComponentType<DropdownIndicatorProps<{}, false, GroupBase<{}>>>;
|
|
286
|
+
Group: ComponentType<GroupProps<{}, false, GroupBase<{}>>>;
|
|
287
|
+
GroupHeading: ComponentType<GroupHeadingProps<{}, false, GroupBase<{}>>>;
|
|
288
|
+
IndicatorSeparator: ComponentType<LoadingIndicatorProps<{}, false, GroupBase<{}>>>;
|
|
289
|
+
IndicatorsContainer: ComponentType<IndicatorsContainerProps<{}, false, GroupBase<{}>>>;
|
|
290
|
+
Input: ComponentType<InputProps<{}, false, GroupBase<{}>>>;
|
|
291
|
+
LoadingIndicator: ComponentType<LoadingIndicatorProps<{}, false, GroupBase<{}>>>;
|
|
292
|
+
LoadingMessage: ComponentType<NoticeProps<{}, false, GroupBase<{}>>>;
|
|
293
|
+
Menu: ComponentType<MenuProps<{}, false, GroupBase<{}>>>;
|
|
294
|
+
MenuList: ComponentType<MenuListProps<{}, false, GroupBase<{}>>>;
|
|
295
|
+
MenuPortal: ComponentType<CommonPropsAndClassName<{}, false, GroupBase<{}>> & {
|
|
296
|
+
appendTo: HTMLElement | undefined;
|
|
297
|
+
children: ReactNode;
|
|
298
|
+
controlElement: HTMLDivElement | null;
|
|
299
|
+
innerProps: JSX.IntrinsicElements["div"];
|
|
300
|
+
menuPlacement: MenuPlacement;
|
|
301
|
+
menuPosition: MenuPosition;
|
|
302
|
+
}>;
|
|
303
|
+
MultiValue: ComponentType<MultiValueProps<{}, false, GroupBase<{}>>>;
|
|
304
|
+
MultiValueContainer: ComponentType<MultiValueGenericProps<{}, false, GroupBase<{}>>>;
|
|
305
|
+
MultiValueLabel: ComponentType<MultiValueGenericProps<{}, false, GroupBase<{}>>>;
|
|
306
|
+
MultiValueRemove: ComponentType<MultiValueRemoveProps<{}, false, GroupBase<{}>>>;
|
|
307
|
+
NoOptionsMessage: ComponentType<NoticeProps<{}, false, GroupBase<{}>>>;
|
|
308
|
+
Option: ComponentType<OptionProps<{}, false, GroupBase<{}>>>;
|
|
309
|
+
Placeholder: ComponentType<PlaceholderProps<{}, false, GroupBase<{}>>>;
|
|
310
|
+
SelectContainer: ComponentType<ContainerProps<{}, false, GroupBase<{}>>>;
|
|
311
|
+
SingleValue: ComponentType<SingleValueProps<{}, false, GroupBase<{}>>>;
|
|
312
|
+
ValueContainer: ComponentType<ValueContainerProps<{}, false, GroupBase<{}>>>;
|
|
314
313
|
};
|
|
315
314
|
export default AsyncSelectInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/async-select-input",
|
|
3
3
|
"description": "An input component getting a selection from an asynchronously loaded list from the user.",
|
|
4
|
-
"version": "19.22.
|
|
4
|
+
"version": "19.22.2",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.20.13",
|
|
23
23
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
24
|
-
"@commercetools-uikit/constraints": "19.22.
|
|
25
|
-
"@commercetools-uikit/design-system": "19.22.
|
|
26
|
-
"@commercetools-uikit/icons": "19.22.
|
|
27
|
-
"@commercetools-uikit/loading-spinner": "19.22.
|
|
28
|
-
"@commercetools-uikit/select-utils": "19.22.
|
|
29
|
-
"@commercetools-uikit/spacings": "19.22.
|
|
30
|
-
"@commercetools-uikit/text": "19.22.
|
|
31
|
-
"@commercetools-uikit/utils": "19.22.
|
|
24
|
+
"@commercetools-uikit/constraints": "19.22.2",
|
|
25
|
+
"@commercetools-uikit/design-system": "19.22.2",
|
|
26
|
+
"@commercetools-uikit/icons": "19.22.2",
|
|
27
|
+
"@commercetools-uikit/loading-spinner": "19.22.2",
|
|
28
|
+
"@commercetools-uikit/select-utils": "19.22.2",
|
|
29
|
+
"@commercetools-uikit/spacings": "19.22.2",
|
|
30
|
+
"@commercetools-uikit/text": "19.22.2",
|
|
31
|
+
"@commercetools-uikit/utils": "19.22.2",
|
|
32
32
|
"@emotion/react": "^11.10.5",
|
|
33
33
|
"@emotion/styled": "^11.10.5",
|
|
34
34
|
"lodash": "4.17.21",
|