@atlaskit/react-select 3.15.5 → 3.16.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/CHANGELOG.md +17 -0
- package/accessibility/package.json +17 -0
- package/async/package.json +5 -5
- package/async-creatable/package.json +5 -5
- package/base/package.json +5 -5
- package/clear-indicator/package.json +17 -0
- package/components/package.json +17 -0
- package/control/package.json +17 -0
- package/creatable/package.json +5 -5
- package/dist/cjs/async.js +1 -6
- package/dist/cjs/builtins.js +28 -15
- package/dist/cjs/colors.js +25 -0
- package/dist/cjs/compiled/components/indicators-container.compiled.css +5 -0
- package/dist/cjs/compiled/components/indicators-container.js +40 -0
- package/dist/cjs/compiled/components/select-container.compiled.css +6 -0
- package/dist/cjs/compiled/components/select-container.js +52 -0
- package/dist/cjs/compiled/components/value-container.compiled.css +20 -0
- package/dist/cjs/compiled/components/{containers.js → value-container.js} +7 -69
- package/dist/cjs/creatable.js +1 -6
- package/dist/cjs/entry-points/accessibility.js +12 -0
- package/dist/cjs/entry-points/async-creatable.js +13 -0
- package/dist/cjs/entry-points/async.js +20 -0
- package/dist/cjs/entry-points/base.js +20 -0
- package/dist/cjs/entry-points/clear-indicator.js +12 -0
- package/dist/cjs/entry-points/components.js +18 -0
- package/dist/cjs/entry-points/control.js +13 -0
- package/dist/cjs/entry-points/creatable.js +20 -0
- package/dist/cjs/entry-points/dropdown-indicator.js +12 -0
- package/dist/cjs/entry-points/filters.js +12 -0
- package/dist/cjs/entry-points/group-heading.js +12 -0
- package/dist/cjs/entry-points/group.js +13 -0
- package/dist/cjs/entry-points/indicators-container.js +12 -0
- package/dist/cjs/entry-points/input.js +13 -0
- package/dist/cjs/entry-points/loading-indicator.js +12 -0
- package/dist/cjs/entry-points/menu-list.js +12 -0
- package/dist/cjs/entry-points/menu-portal.js +12 -0
- package/dist/cjs/entry-points/menu.js +13 -0
- package/dist/cjs/entry-points/multi-value-remove.js +12 -0
- package/dist/cjs/entry-points/multi-value.js +13 -0
- package/dist/cjs/entry-points/option.js +13 -0
- package/dist/cjs/entry-points/placeholder.js +13 -0
- package/dist/cjs/entry-points/select-container.js +12 -0
- package/dist/cjs/entry-points/single-value.js +13 -0
- package/dist/cjs/entry-points/state-manager.js +13 -0
- package/dist/cjs/entry-points/styles.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/entry-points/use-async.js +13 -0
- package/dist/cjs/entry-points/use-creatable.js +13 -0
- package/dist/cjs/entry-points/use-state-manager.js +13 -0
- package/dist/cjs/entry-points/value-container.js +12 -0
- package/dist/cjs/format-group-label.js +11 -0
- package/dist/cjs/get-option-label.js +11 -0
- package/dist/cjs/get-option-value.js +11 -0
- package/dist/cjs/is-option-disabled.js +11 -0
- package/dist/cjs/theme.js +8 -26
- package/dist/es2019/async.js +0 -1
- package/dist/es2019/builtins.js +4 -4
- package/dist/es2019/colors.js +19 -0
- package/dist/es2019/compiled/components/indicators-container.compiled.css +5 -0
- package/dist/es2019/compiled/components/indicators-container.js +35 -0
- package/dist/es2019/compiled/components/select-container.compiled.css +6 -0
- package/dist/es2019/compiled/components/select-container.js +47 -0
- package/dist/es2019/compiled/components/value-container.compiled.css +20 -0
- package/dist/es2019/compiled/components/{containers.js → value-container.js} +2 -70
- package/dist/es2019/creatable.js +1 -1
- package/dist/es2019/entry-points/accessibility.js +1 -0
- package/dist/es2019/entry-points/async-creatable.js +1 -0
- package/dist/es2019/entry-points/async.js +2 -0
- package/dist/es2019/entry-points/base.js +2 -0
- package/dist/es2019/entry-points/clear-indicator.js +1 -0
- package/dist/es2019/entry-points/components.js +1 -0
- package/dist/es2019/entry-points/control.js +1 -0
- package/dist/es2019/entry-points/creatable.js +2 -0
- package/dist/es2019/entry-points/dropdown-indicator.js +1 -0
- package/dist/es2019/entry-points/filters.js +1 -0
- package/dist/es2019/entry-points/group-heading.js +1 -0
- package/dist/es2019/entry-points/group.js +1 -0
- package/dist/es2019/entry-points/indicators-container.js +1 -0
- package/dist/es2019/entry-points/input.js +1 -0
- package/dist/es2019/entry-points/loading-indicator.js +1 -0
- package/dist/es2019/entry-points/menu-list.js +1 -0
- package/dist/es2019/entry-points/menu-portal.js +1 -0
- package/dist/es2019/entry-points/menu.js +1 -0
- package/dist/es2019/entry-points/multi-value-remove.js +1 -0
- package/dist/es2019/entry-points/multi-value.js +1 -0
- package/dist/es2019/entry-points/option.js +1 -0
- package/dist/es2019/entry-points/placeholder.js +1 -0
- package/dist/es2019/entry-points/select-container.js +1 -0
- package/dist/es2019/entry-points/single-value.js +1 -0
- package/dist/es2019/entry-points/state-manager.js +1 -0
- package/dist/es2019/entry-points/styles.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/entry-points/use-async.js +1 -0
- package/dist/es2019/entry-points/use-creatable.js +1 -0
- package/dist/es2019/entry-points/use-state-manager.js +1 -0
- package/dist/es2019/entry-points/value-container.js +1 -0
- package/dist/es2019/format-group-label.js +3 -0
- package/dist/es2019/get-option-label.js +3 -0
- package/dist/es2019/get-option-value.js +3 -0
- package/dist/es2019/is-option-disabled.js +3 -0
- package/dist/es2019/theme.js +1 -25
- package/dist/esm/async.js +0 -1
- package/dist/esm/builtins.js +4 -12
- package/dist/esm/colors.js +19 -0
- package/dist/esm/compiled/components/indicators-container.compiled.css +5 -0
- package/dist/esm/compiled/components/indicators-container.js +32 -0
- package/dist/esm/compiled/components/select-container.compiled.css +6 -0
- package/dist/esm/compiled/components/select-container.js +44 -0
- package/dist/esm/compiled/components/value-container.compiled.css +20 -0
- package/dist/esm/compiled/components/value-container.js +50 -0
- package/dist/esm/creatable.js +1 -1
- package/dist/esm/entry-points/accessibility.js +1 -0
- package/dist/esm/entry-points/async-creatable.js +1 -0
- package/dist/esm/entry-points/async.js +2 -0
- package/dist/esm/entry-points/base.js +2 -0
- package/dist/esm/entry-points/clear-indicator.js +1 -0
- package/dist/esm/entry-points/components.js +1 -0
- package/dist/esm/entry-points/control.js +1 -0
- package/dist/esm/entry-points/creatable.js +2 -0
- package/dist/esm/entry-points/dropdown-indicator.js +1 -0
- package/dist/esm/entry-points/filters.js +1 -0
- package/dist/esm/entry-points/group-heading.js +1 -0
- package/dist/esm/entry-points/group.js +1 -0
- package/dist/esm/entry-points/indicators-container.js +1 -0
- package/dist/esm/entry-points/input.js +1 -0
- package/dist/esm/entry-points/loading-indicator.js +1 -0
- package/dist/esm/entry-points/menu-list.js +1 -0
- package/dist/esm/entry-points/menu-portal.js +1 -0
- package/dist/esm/entry-points/menu.js +1 -0
- package/dist/esm/entry-points/multi-value-remove.js +1 -0
- package/dist/esm/entry-points/multi-value.js +1 -0
- package/dist/esm/entry-points/option.js +1 -0
- package/dist/esm/entry-points/placeholder.js +1 -0
- package/dist/esm/entry-points/select-container.js +1 -0
- package/dist/esm/entry-points/single-value.js +1 -0
- package/dist/esm/entry-points/state-manager.js +1 -0
- package/dist/esm/entry-points/styles.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/entry-points/use-async.js +1 -0
- package/dist/esm/entry-points/use-creatable.js +1 -0
- package/dist/esm/entry-points/use-state-manager.js +1 -0
- package/dist/esm/entry-points/value-container.js +1 -0
- package/dist/esm/format-group-label.js +5 -0
- package/dist/esm/get-option-label.js +5 -0
- package/dist/esm/get-option-value.js +5 -0
- package/dist/esm/is-option-disabled.js +5 -0
- package/dist/esm/theme.js +1 -25
- package/dist/types/async.d.ts +1 -2
- package/dist/types/builtins.d.ts +4 -5
- package/dist/types/colors.d.ts +19 -0
- package/dist/types/compiled/components/indicators-container.d.ts +18 -0
- package/dist/types/compiled/components/select-container.d.ts +22 -0
- package/dist/types/compiled/components/value-container.d.ts +22 -0
- package/dist/types/creatable.d.ts +1 -2
- package/dist/types/entry-points/accessibility.d.ts +2 -0
- package/dist/types/entry-points/async-creatable.d.ts +2 -0
- package/dist/types/entry-points/async.d.ts +3 -0
- package/dist/types/entry-points/base.d.ts +3 -0
- package/dist/types/entry-points/clear-indicator.d.ts +2 -0
- package/dist/types/entry-points/components.d.ts +2 -0
- package/dist/types/entry-points/control.d.ts +2 -0
- package/dist/types/entry-points/creatable.d.ts +3 -0
- package/dist/types/entry-points/dropdown-indicator.d.ts +2 -0
- package/dist/types/entry-points/filters.d.ts +2 -0
- package/dist/types/entry-points/group-heading.d.ts +2 -0
- package/dist/types/entry-points/group.d.ts +2 -0
- package/dist/types/entry-points/indicators-container.d.ts +2 -0
- package/dist/types/entry-points/input.d.ts +2 -0
- package/dist/types/entry-points/loading-indicator.d.ts +2 -0
- package/dist/types/entry-points/menu-list.d.ts +2 -0
- package/dist/types/entry-points/menu-portal.d.ts +2 -0
- package/dist/types/entry-points/menu.d.ts +2 -0
- package/dist/types/entry-points/multi-value-remove.d.ts +2 -0
- package/dist/types/entry-points/multi-value.d.ts +2 -0
- package/dist/types/entry-points/option.d.ts +2 -0
- package/dist/types/entry-points/placeholder.d.ts +2 -0
- package/dist/types/entry-points/select-container.d.ts +2 -0
- package/dist/types/entry-points/single-value.d.ts +2 -0
- package/dist/types/entry-points/state-manager.d.ts +1 -0
- package/dist/types/entry-points/styles.d.ts +2 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/entry-points/use-async.d.ts +2 -0
- package/dist/types/entry-points/use-creatable.d.ts +2 -0
- package/dist/types/entry-points/use-state-manager.d.ts +2 -0
- package/dist/types/entry-points/value-container.d.ts +2 -0
- package/dist/types/format-group-label.d.ts +2 -0
- package/dist/types/get-option-label.d.ts +1 -0
- package/dist/types/get-option-value.d.ts +1 -0
- package/dist/types/is-option-disabled.d.ts +1 -0
- package/dist/types/theme.d.ts +1 -21
- package/dist/types-ts4.5/async.d.ts +1 -2
- package/dist/types-ts4.5/builtins.d.ts +4 -5
- package/dist/types-ts4.5/colors.d.ts +19 -0
- package/dist/types-ts4.5/compiled/components/indicators-container.d.ts +18 -0
- package/dist/types-ts4.5/compiled/components/select-container.d.ts +22 -0
- package/dist/types-ts4.5/compiled/components/value-container.d.ts +22 -0
- package/dist/types-ts4.5/creatable.d.ts +1 -2
- package/dist/types-ts4.5/entry-points/accessibility.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/async-creatable.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/async.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/base.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/clear-indicator.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/components.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/control.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/creatable.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/dropdown-indicator.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/filters.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/group-heading.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/group.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/indicators-container.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/input.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/loading-indicator.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/menu-list.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/menu-portal.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/menu.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/multi-value-remove.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/multi-value.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/option.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/placeholder.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/select-container.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/single-value.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/state-manager.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/styles.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/use-async.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/use-creatable.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/use-state-manager.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/value-container.d.ts +2 -0
- package/dist/types-ts4.5/format-group-label.d.ts +2 -0
- package/dist/types-ts4.5/get-option-label.d.ts +1 -0
- package/dist/types-ts4.5/get-option-value.d.ts +1 -0
- package/dist/types-ts4.5/is-option-disabled.d.ts +1 -0
- package/dist/types-ts4.5/theme.d.ts +1 -21
- package/dropdown-indicator/package.json +17 -0
- package/filters/package.json +17 -0
- package/group/package.json +17 -0
- package/group-heading/package.json +17 -0
- package/indicators-container/package.json +17 -0
- package/input/package.json +17 -0
- package/loading-indicator/package.json +17 -0
- package/menu/package.json +17 -0
- package/menu-list/package.json +17 -0
- package/menu-portal/package.json +17 -0
- package/multi-value/package.json +17 -0
- package/multi-value-remove/package.json +17 -0
- package/option/package.json +17 -0
- package/package.json +5 -5
- package/placeholder/package.json +17 -0
- package/select-container/package.json +17 -0
- package/single-value/package.json +17 -0
- package/state-manager/package.json +17 -0
- package/styles/package.json +17 -0
- package/types/package.json +5 -5
- package/use-async/package.json +17 -0
- package/use-creatable/package.json +17 -0
- package/use-state-manager/package.json +17 -0
- package/value-container/package.json +17 -0
- package/dist/cjs/compiled/components/containers.compiled.css +0 -28
- package/dist/es2019/compiled/components/containers.compiled.css +0 -28
- package/dist/esm/compiled/components/containers.compiled.css +0 -28
- package/dist/esm/compiled/components/containers.js +0 -112
- package/dist/types/compiled/components/containers.d.ts +0 -50
- package/dist/types-ts4.5/compiled/components/containers.d.ts +0 -50
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/react-select
|
|
2
2
|
|
|
3
|
+
## 3.16.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 3.16.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`aef119573f01b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aef119573f01b) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 3.15.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/react-select/accessibility",
|
|
3
|
+
"main": "../dist/cjs/entry-points/accessibility.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/accessibility.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/accessibility.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/accessibility.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/accessibility.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/async/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-select/async",
|
|
3
|
-
"main": "../dist/cjs/async.js",
|
|
4
|
-
"module": "../dist/esm/async.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/async.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/async.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/async.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/async.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/async.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/async.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/async.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/async.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-select/async-creatable",
|
|
3
|
-
"main": "../dist/cjs/async-creatable.js",
|
|
4
|
-
"module": "../dist/esm/async-creatable.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/async-creatable.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/async-creatable.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/async-creatable.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/async-creatable.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/async-creatable.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/async-creatable.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/async-creatable.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/async-creatable.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
package/base/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-select/base",
|
|
3
|
-
"main": "../dist/cjs/
|
|
4
|
-
"module": "../dist/esm/
|
|
5
|
-
"module:es2019": "../dist/es2019/
|
|
3
|
+
"main": "../dist/cjs/entry-points/base.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/base.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/base.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/
|
|
9
|
+
"types": "../dist/types/entry-points/base.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/
|
|
13
|
+
"../dist/types-ts4.5/entry-points/base.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/react-select/clear-indicator",
|
|
3
|
+
"main": "../dist/cjs/entry-points/clear-indicator.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/clear-indicator.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/clear-indicator.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/clear-indicator.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/clear-indicator.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/react-select/components",
|
|
3
|
+
"main": "../dist/cjs/entry-points/components.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/components.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/components.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/components.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/components.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/react-select/control",
|
|
3
|
+
"main": "../dist/cjs/entry-points/control.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/control.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/control.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/control.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/control.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/creatable/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-select/creatable",
|
|
3
|
-
"main": "../dist/cjs/creatable.js",
|
|
4
|
-
"module": "../dist/esm/creatable.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/creatable.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/creatable.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/creatable.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/creatable.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/creatable.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/creatable.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/creatable.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/creatable.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
package/dist/cjs/async.js
CHANGED
|
@@ -6,12 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
|
-
Object.defineProperty(exports, "useAsync", {
|
|
10
|
-
enumerable: true,
|
|
11
|
-
get: function get() {
|
|
12
|
-
return _useAsync.default;
|
|
13
|
-
}
|
|
14
|
-
});
|
|
15
9
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
16
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
17
11
|
var _select = _interopRequireDefault(require("./select"));
|
|
@@ -29,5 +23,6 @@ var AsyncSelect = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
29
23
|
ref: ref
|
|
30
24
|
}, selectProps));
|
|
31
25
|
});
|
|
26
|
+
|
|
32
27
|
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
33
28
|
var _default = exports.default = AsyncSelect;
|
package/dist/cjs/builtins.js
CHANGED
|
@@ -3,18 +3,31 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
Object.defineProperty(exports, "formatGroupLabel", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _formatGroupLabel.formatGroupLabel;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "getOptionLabel", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _getOptionLabel.getOptionLabel;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "getOptionValue", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _getOptionValue.getOptionValue;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "isOptionDisabled", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _isOptionDisabled.isOptionDisabled;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
var _formatGroupLabel = require("./format-group-label");
|
|
31
|
+
var _getOptionLabel = require("./get-option-label");
|
|
32
|
+
var _getOptionValue = require("./get-option-value");
|
|
33
|
+
var _isOptionDisabled = require("./is-option-disabled");
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.colors = void 0;
|
|
7
|
+
var colors = exports.colors = {
|
|
8
|
+
primary: '#2684FF',
|
|
9
|
+
primary75: '#4C9AFF',
|
|
10
|
+
primary50: '#B2D4FF',
|
|
11
|
+
primary25: '#DEEBFF',
|
|
12
|
+
danger: '#DE350B',
|
|
13
|
+
dangerLight: '#FFBDAD',
|
|
14
|
+
neutral0: 'hsl(0, 0%, 100%)',
|
|
15
|
+
neutral5: 'hsl(0, 0%, 95%)',
|
|
16
|
+
neutral10: 'hsl(0, 0%, 90%)',
|
|
17
|
+
neutral20: 'hsl(0, 0%, 80%)',
|
|
18
|
+
neutral30: 'hsl(0, 0%, 70%)',
|
|
19
|
+
neutral40: 'hsl(0, 0%, 60%)',
|
|
20
|
+
neutral50: 'hsl(0, 0%, 50%)',
|
|
21
|
+
neutral60: 'hsl(0, 0%, 40%)',
|
|
22
|
+
neutral70: 'hsl(0, 0%, 30%)',
|
|
23
|
+
neutral80: 'hsl(0, 0%, 20%)',
|
|
24
|
+
neutral90: 'hsl(0, 0%, 10%)'
|
|
25
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* indicators-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
Object.defineProperty(exports, "__esModule", {
|
|
7
|
+
value: true
|
|
8
|
+
});
|
|
9
|
+
exports.IndicatorsContainer = void 0;
|
|
10
|
+
require("./indicators-container.compiled.css");
|
|
11
|
+
var React = _interopRequireWildcard(require("react"));
|
|
12
|
+
var _runtime = require("@compiled/react/runtime");
|
|
13
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
14
|
+
var _react2 = require("@compiled/react");
|
|
15
|
+
var _getStyleProps2 = require("../../get-style-props");
|
|
16
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
17
|
+
// ==============================
|
|
18
|
+
// Indicator Container
|
|
19
|
+
// ==============================
|
|
20
|
+
|
|
21
|
+
var indicatorContainerStyles = null;
|
|
22
|
+
|
|
23
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
24
|
+
var IndicatorsContainer = exports.IndicatorsContainer = function IndicatorsContainer(props) {
|
|
25
|
+
var children = props.children,
|
|
26
|
+
innerProps = props.innerProps,
|
|
27
|
+
xcss = props.xcss;
|
|
28
|
+
var _getStyleProps = (0, _getStyleProps2.getStyleProps)(props, 'indicatorsContainer', {
|
|
29
|
+
indicators: true
|
|
30
|
+
}),
|
|
31
|
+
css = _getStyleProps.css,
|
|
32
|
+
className = _getStyleProps.className;
|
|
33
|
+
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
34
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
35
|
+
style: css
|
|
36
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop, @atlaskit/ui-styling-standard/local-cx-xcss, @compiled/local-cx-xcss
|
|
37
|
+
,
|
|
38
|
+
className: (0, _runtime.ax)(["_1e0c1txw _4cvr1h6o _1o9zidpf _1wpz1fhb _y4ti1b66", (0, _react2.cx)(className, xcss, '-IndicatorsContainer')])
|
|
39
|
+
}, innerProps), children);
|
|
40
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
._11c81d4k{font:var(--ds-font-body-large,normal 400 1pc/24px "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
2
|
+
._1eim1xrj{direction:rtl}
|
|
3
|
+
._80om13gf{cursor:not-allowed}
|
|
4
|
+
._kqswh2mm{position:relative}
|
|
5
|
+
._lcxv1rj4{pointer-events:all}
|
|
6
|
+
@media (min-width:30rem){._1tn2fhey{font:var(--ds-font-body,normal 400 14px/20px "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* select-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
Object.defineProperty(exports, "__esModule", {
|
|
7
|
+
value: true
|
|
8
|
+
});
|
|
9
|
+
exports.SelectContainer = void 0;
|
|
10
|
+
require("./select-container.compiled.css");
|
|
11
|
+
var React = _interopRequireWildcard(require("react"));
|
|
12
|
+
var _runtime = require("@compiled/react/runtime");
|
|
13
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
14
|
+
var _react2 = require("@compiled/react");
|
|
15
|
+
var _getStyleProps2 = require("../../get-style-props");
|
|
16
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
17
|
+
// ==============================
|
|
18
|
+
// Root Container
|
|
19
|
+
// ==============================
|
|
20
|
+
|
|
21
|
+
// iOS Safari automatically zooms into form inputs on focus when the font size is less than 16px.
|
|
22
|
+
// To prevent this zoom behaviour on mobile devices, the select container uses font.body.large (16px) by default,
|
|
23
|
+
// then switches to the smaller font.body on screens wider than 30rem (desktop).
|
|
24
|
+
// @see: https://medium.com/@rares.popescu/2-ways-to-avoid-the-automatic-zoom-in-on-input-fields-8a71479e542e
|
|
25
|
+
|
|
26
|
+
var containerStyles = {
|
|
27
|
+
default: "_11c81d4k _kqswh2mm _lcxv1rj4 _1tn2fhey",
|
|
28
|
+
rtl: "_1eim1xrj",
|
|
29
|
+
disabled: "_80om13gf"
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
33
|
+
var SelectContainer = exports.SelectContainer = function SelectContainer(props) {
|
|
34
|
+
var children = props.children,
|
|
35
|
+
innerProps = props.innerProps,
|
|
36
|
+
isDisabled = props.isDisabled,
|
|
37
|
+
isRtl = props.isRtl,
|
|
38
|
+
xcss = props.xcss;
|
|
39
|
+
var _getStyleProps = (0, _getStyleProps2.getStyleProps)(props, 'container', {
|
|
40
|
+
'--is-disabled': isDisabled,
|
|
41
|
+
'--is-rtl': isRtl
|
|
42
|
+
}),
|
|
43
|
+
className = _getStyleProps.className,
|
|
44
|
+
css = _getStyleProps.css;
|
|
45
|
+
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
46
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop, @atlaskit/ui-styling-standard/local-cx-xcss, @compiled/local-cx-xcss
|
|
47
|
+
className: (0, _runtime.ax)([containerStyles.default, isRtl && containerStyles.rtl, isDisabled && containerStyles.disabled, (0, _react2.cx)(className, xcss, '-container')])
|
|
48
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
49
|
+
,
|
|
50
|
+
style: css
|
|
51
|
+
}, innerProps), children);
|
|
52
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
._zulp1b66{gap:var(--ds-space-050,4px)}._16jlkb7n{flex-grow:1}
|
|
3
|
+
._18m915vq{overflow-y:hidden}
|
|
4
|
+
._1e0c11p5{display:grid}
|
|
5
|
+
._1e0c1txw{display:flex}
|
|
6
|
+
._1n261g80{flex-wrap:wrap}
|
|
7
|
+
._1o9zkb7n{flex-shrink:1}
|
|
8
|
+
._1q511b66{padding-block-start:var(--ds-space-050,4px)}
|
|
9
|
+
._1q51v77o{padding-block-start:var(--ds-space-025,2px)}
|
|
10
|
+
._1q51ze3t{padding-block-start:var(--ds-space-0,0)}
|
|
11
|
+
._1reo15vq{overflow-x:hidden}
|
|
12
|
+
._4cvr1h6o{align-items:center}
|
|
13
|
+
._85i51b66{padding-block-end:var(--ds-space-050,4px)}
|
|
14
|
+
._85i5v77o{padding-block-end:var(--ds-space-025,2px)}
|
|
15
|
+
._85i5ze3t{padding-block-end:var(--ds-space-0,0)}
|
|
16
|
+
._8am5i4x0{-webkit-overflow-scrolling:touch}
|
|
17
|
+
._bozg12x7{padding-inline-start:var(--ds-space-075,6px)}
|
|
18
|
+
._i0dlf1ug{flex-basis:0%}
|
|
19
|
+
._kqswh2mm{position:relative}
|
|
20
|
+
._y4ti12x7{padding-inline-end:var(--ds-space-075,6px)}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* value-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -6,52 +6,15 @@ var _typeof = require("@babel/runtime/helpers/typeof");
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", {
|
|
7
7
|
value: true
|
|
8
8
|
});
|
|
9
|
-
exports.ValueContainer =
|
|
10
|
-
require("./
|
|
9
|
+
exports.ValueContainer = void 0;
|
|
10
|
+
require("./value-container.compiled.css");
|
|
11
11
|
var React = _interopRequireWildcard(require("react"));
|
|
12
12
|
var _runtime = require("@compiled/react/runtime");
|
|
13
13
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
14
14
|
var _react2 = require("@compiled/react");
|
|
15
15
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
16
|
-
var
|
|
16
|
+
var _getStyleProps2 = require("../../get-style-props");
|
|
17
17
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
18
|
-
// ==============================
|
|
19
|
-
// Root Container
|
|
20
|
-
// ==============================
|
|
21
|
-
|
|
22
|
-
// iOS Safari automatically zooms into form inputs on focus when the font size is less than 16px.
|
|
23
|
-
// To prevent this zoom behaviour on mobile devices, the select container uses font.body.large (16px) by default,
|
|
24
|
-
// then switches to the smaller font.body on screens wider than 30rem (desktop).
|
|
25
|
-
// @see: https://medium.com/@rares.popescu/2-ways-to-avoid-the-automatic-zoom-in-on-input-fields-8a71479e542e
|
|
26
|
-
|
|
27
|
-
var containerStyles = {
|
|
28
|
-
default: "_11c81d4k _kqswh2mm _lcxv1rj4 _1tn2fhey",
|
|
29
|
-
rtl: "_1eim1xrj",
|
|
30
|
-
disabled: "_80om13gf"
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
34
|
-
var SelectContainer = exports.SelectContainer = function SelectContainer(props) {
|
|
35
|
-
var children = props.children,
|
|
36
|
-
innerProps = props.innerProps,
|
|
37
|
-
isDisabled = props.isDisabled,
|
|
38
|
-
isRtl = props.isRtl,
|
|
39
|
-
xcss = props.xcss;
|
|
40
|
-
var _getStyleProps = (0, _getStyleProps4.getStyleProps)(props, 'container', {
|
|
41
|
-
'--is-disabled': isDisabled,
|
|
42
|
-
'--is-rtl': isRtl
|
|
43
|
-
}),
|
|
44
|
-
className = _getStyleProps.className,
|
|
45
|
-
css = _getStyleProps.css;
|
|
46
|
-
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
47
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop, @atlaskit/ui-styling-standard/local-cx-xcss, @compiled/local-cx-xcss
|
|
48
|
-
className: (0, _runtime.ax)([containerStyles.default, isRtl && containerStyles.rtl, isDisabled && containerStyles.disabled, (0, _react2.cx)(className, xcss, '-container')])
|
|
49
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
50
|
-
,
|
|
51
|
-
style: css
|
|
52
|
-
}, innerProps), children);
|
|
53
|
-
};
|
|
54
|
-
|
|
55
18
|
// ==============================
|
|
56
19
|
// Value Container
|
|
57
20
|
// ==============================
|
|
@@ -75,13 +38,13 @@ var ValueContainer = exports.ValueContainer = function ValueContainer(props) {
|
|
|
75
38
|
isCompact = props.isCompact,
|
|
76
39
|
xcss = props.xcss,
|
|
77
40
|
controlShouldRenderValue = props.selectProps.controlShouldRenderValue;
|
|
78
|
-
var
|
|
41
|
+
var _getStyleProps = (0, _getStyleProps2.getStyleProps)(props, 'valueContainer', {
|
|
79
42
|
'value-container': true,
|
|
80
43
|
'value-container--is-multi': isMulti,
|
|
81
44
|
'value-container--has-value': hasValue
|
|
82
45
|
}),
|
|
83
|
-
css =
|
|
84
|
-
className =
|
|
46
|
+
css = _getStyleProps.css,
|
|
47
|
+
className = _getStyleProps.className;
|
|
85
48
|
var ffTagUplifts = (0, _platformFeatureFlags.fg)('platform-dst-lozenge-tag-badge-visual-uplifts');
|
|
86
49
|
var tagUpliftMultiVertical = ffTagUplifts && isMulti;
|
|
87
50
|
var tagUpliftChipRow = ffTagUplifts && isMulti && hasValue && controlShouldRenderValue;
|
|
@@ -92,29 +55,4 @@ var ValueContainer = exports.ValueContainer = function ValueContainer(props) {
|
|
|
92
55
|
,
|
|
93
56
|
style: css
|
|
94
57
|
}, innerProps), children);
|
|
95
|
-
};
|
|
96
|
-
|
|
97
|
-
// ==============================
|
|
98
|
-
// Indicator Container
|
|
99
|
-
// ==============================
|
|
100
|
-
|
|
101
|
-
var indicatorContainerStyles = null;
|
|
102
|
-
|
|
103
|
-
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
104
|
-
var IndicatorsContainer = exports.IndicatorsContainer = function IndicatorsContainer(props) {
|
|
105
|
-
var children = props.children,
|
|
106
|
-
innerProps = props.innerProps,
|
|
107
|
-
xcss = props.xcss;
|
|
108
|
-
var _getStyleProps3 = (0, _getStyleProps4.getStyleProps)(props, 'indicatorsContainer', {
|
|
109
|
-
indicators: true
|
|
110
|
-
}),
|
|
111
|
-
css = _getStyleProps3.css,
|
|
112
|
-
className = _getStyleProps3.className;
|
|
113
|
-
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
114
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
115
|
-
style: css
|
|
116
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop, @atlaskit/ui-styling-standard/local-cx-xcss, @compiled/local-cx-xcss
|
|
117
|
-
,
|
|
118
|
-
className: (0, _runtime.ax)(["_1e0c1txw _4cvr1h6o _1o9zidpf _1wpz1fhb _y4ti1b66", (0, _react2.cx)(className, xcss, '-IndicatorsContainer')])
|
|
119
|
-
}, innerProps), children);
|
|
120
58
|
};
|
package/dist/cjs/creatable.js
CHANGED
|
@@ -6,12 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
|
-
Object.defineProperty(exports, "useCreatable", {
|
|
10
|
-
enumerable: true,
|
|
11
|
-
get: function get() {
|
|
12
|
-
return _useCreatable.default;
|
|
13
|
-
}
|
|
14
|
-
});
|
|
15
9
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
16
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
17
11
|
var _select = _interopRequireDefault(require("./select"));
|
|
@@ -25,5 +19,6 @@ var CreatableSelect = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
|
25
19
|
ref: ref
|
|
26
20
|
}, selectProps));
|
|
27
21
|
});
|
|
22
|
+
|
|
28
23
|
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
29
24
|
var _default = exports.default = CreatableSelect;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "defaultAriaLiveMessages", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _index.defaultAriaLiveMessages;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _index = require("../accessibility/index");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _asyncCreatable.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _asyncCreatable = _interopRequireDefault(require("../async-creatable"));
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _async.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "useAsync", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function get() {
|
|
16
|
+
return _useAsync.default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _useAsync = _interopRequireDefault(require("../use-async"));
|
|
20
|
+
var _async = _interopRequireDefault(require("../async"));
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _select.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "defaultProps", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function get() {
|
|
16
|
+
return _select.defaultProps;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _select = _interopRequireWildcard(require("../select"));
|
|
20
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "ClearIndicator", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _clearIndicator.ClearIndicator;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _clearIndicator = require("../components/indicators/clear-indicator");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "components", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _index.components;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "defaultComponents", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _index.defaultComponents;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _index = require("../components/index");
|