@atlaskit/select 18.10.3 → 18.10.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/CHANGELOG.md +6 -0
- package/dist/cjs/Select.js +1 -1
- package/dist/es2019/Select.js +1 -1
- package/dist/esm/Select.js +1 -1
- package/dist/types/CheckboxSelect.d.ts +2 -2
- package/dist/types/PopupSelect/PopupSelect.d.ts +2 -2
- package/dist/types/RadioSelect.d.ts +1 -1
- package/dist/types-ts4.5/CheckboxSelect.d.ts +2 -2
- package/dist/types-ts4.5/PopupSelect/PopupSelect.d.ts +2 -2
- package/dist/types-ts4.5/RadioSelect.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/cjs/Select.js
CHANGED
|
@@ -11,7 +11,7 @@ var _createSelect = _interopRequireDefault(require("./createSelect"));
|
|
|
11
11
|
/* eslint-disable @repo/internal/react/require-jsdoc */
|
|
12
12
|
|
|
13
13
|
var packageName = "@atlaskit/select";
|
|
14
|
-
var packageVersion = "18.10.
|
|
14
|
+
var packageVersion = "18.10.4";
|
|
15
15
|
var SelectWithoutAnalytics = exports.SelectWithoutAnalytics = (0, _createSelect.default)(_async.default);
|
|
16
16
|
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
|
|
17
17
|
var Select = (0, _analyticsNext.withAnalyticsContext)({
|
package/dist/es2019/Select.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
3
3
|
import AsyncSelect from '@atlaskit/react-select/async';
|
|
4
4
|
import createSelect from './createSelect';
|
|
5
5
|
const packageName = "@atlaskit/select";
|
|
6
|
-
const packageVersion = "18.10.
|
|
6
|
+
const packageVersion = "18.10.4";
|
|
7
7
|
export const SelectWithoutAnalytics = createSelect(AsyncSelect);
|
|
8
8
|
const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
9
9
|
const Select = withAnalyticsContext({
|
package/dist/esm/Select.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
|
|
|
3
3
|
import AsyncSelect from '@atlaskit/react-select/async';
|
|
4
4
|
import createSelect from './createSelect';
|
|
5
5
|
var packageName = "@atlaskit/select";
|
|
6
|
-
var packageVersion = "18.10.
|
|
6
|
+
var packageVersion = "18.10.4";
|
|
7
7
|
export var SelectWithoutAnalytics = createSelect(AsyncSelect);
|
|
8
8
|
var createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
9
9
|
var Select = withAnalyticsContext({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type SelectProps, type OptionType } from './types';
|
|
3
|
-
declare const CheckboxSelect: <OptionT extends OptionType>({ components, ...props }: SelectProps<OptionT, true>) => JSX.Element;
|
|
3
|
+
declare const CheckboxSelect: <OptionT extends OptionType>({ components, ...props }: SelectProps<OptionT, true>) => React.JSX.Element;
|
|
4
4
|
export default CheckboxSelect;
|
|
@@ -167,7 +167,7 @@ export default class PopupSelect<Option = OptionType, IsMulti extends boolean =
|
|
|
167
167
|
getItemCount: () => number;
|
|
168
168
|
getMaxHeight: () => number | undefined;
|
|
169
169
|
showSearchControl: () => boolean | undefined;
|
|
170
|
-
renderSelect: (id: string) => JSX.Element | null;
|
|
171
|
-
render(): JSX.Element;
|
|
170
|
+
renderSelect: (id: string) => React.JSX.Element | null;
|
|
171
|
+
render(): React.JSX.Element;
|
|
172
172
|
}
|
|
173
173
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type SelectProps, type OptionType } from './types';
|
|
3
|
-
declare const RadioSelect: React.MemoExoticComponent<({ components, ...props }: SelectProps<OptionType>) => JSX.Element>;
|
|
3
|
+
declare const RadioSelect: React.MemoExoticComponent<({ components, ...props }: SelectProps<OptionType>) => React.JSX.Element>;
|
|
4
4
|
export default RadioSelect;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type SelectProps, type OptionType } from './types';
|
|
3
|
-
declare const CheckboxSelect: <OptionT extends OptionType>({ components, ...props }: SelectProps<OptionT, true>) => JSX.Element;
|
|
3
|
+
declare const CheckboxSelect: <OptionT extends OptionType>({ components, ...props }: SelectProps<OptionT, true>) => React.JSX.Element;
|
|
4
4
|
export default CheckboxSelect;
|
|
@@ -167,7 +167,7 @@ export default class PopupSelect<Option = OptionType, IsMulti extends boolean =
|
|
|
167
167
|
getItemCount: () => number;
|
|
168
168
|
getMaxHeight: () => number | undefined;
|
|
169
169
|
showSearchControl: () => boolean | undefined;
|
|
170
|
-
renderSelect: (id: string) => JSX.Element | null;
|
|
171
|
-
render(): JSX.Element;
|
|
170
|
+
renderSelect: (id: string) => React.JSX.Element | null;
|
|
171
|
+
render(): React.JSX.Element;
|
|
172
172
|
}
|
|
173
173
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type SelectProps, type OptionType } from './types';
|
|
3
|
-
declare const RadioSelect: React.MemoExoticComponent<({ components, ...props }: SelectProps<OptionType>) => JSX.Element>;
|
|
3
|
+
declare const RadioSelect: React.MemoExoticComponent<({ components, ...props }: SelectProps<OptionType>) => React.JSX.Element>;
|
|
4
4
|
export default RadioSelect;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/select",
|
|
3
|
-
"version": "18.10.
|
|
3
|
+
"version": "18.10.4",
|
|
4
4
|
"description": "Select allows users to make a single selection or multiple selections from a list of options.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@atlaskit/analytics-next": "^10.3.0",
|
|
45
45
|
"@atlaskit/ds-lib": "^3.5.0",
|
|
46
|
-
"@atlaskit/icon": "^23.
|
|
46
|
+
"@atlaskit/icon": "^23.7.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
48
48
|
"@atlaskit/primitives": "^13.4.0",
|
|
49
49
|
"@atlaskit/react-select": "^1.7.0",
|
|
50
50
|
"@atlaskit/spinner": "^17.1.0",
|
|
51
|
-
"@atlaskit/theme": "^
|
|
51
|
+
"@atlaskit/theme": "^15.0.0",
|
|
52
52
|
"@atlaskit/tokens": "^3.3.0",
|
|
53
53
|
"@atlaskit/visually-hidden": "^1.6.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0",
|