@startupjs-ui/multi-select 0.1.22 → 0.2.0-alpha.0
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 +11 -0
- package/index.tsx +4 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* fix and improve accessibility of various components. Add storybook with tests. ([#21](https://github.com/startupjs/startupjs-ui/issues/21)) ([83b6576](https://github.com/startupjs/startupjs-ui/commit/83b65767ed61b24209f71b143ba1c2986170ab58))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.1.22](https://github.com/startupjs/startupjs-ui/compare/v0.1.21...v0.1.22) (2026-03-25)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @startupjs-ui/multi-select
|
package/index.tsx
CHANGED
|
@@ -201,6 +201,7 @@ function MultiSelect ({
|
|
|
201
201
|
...props
|
|
202
202
|
captionStyle=style
|
|
203
203
|
visible=focused
|
|
204
|
+
openOnAnchorPress=false
|
|
204
205
|
matchAnchorWidth=hasWidthCaption
|
|
205
206
|
attachment='start'
|
|
206
207
|
position='bottom'
|
|
@@ -365,6 +366,9 @@ function DefaultInput ({
|
|
|
365
366
|
Div.input(
|
|
366
367
|
style=style
|
|
367
368
|
styleName={ disabled, focused, readonly, error: _hasError }
|
|
369
|
+
role='button'
|
|
370
|
+
aria-disabled=disabled
|
|
371
|
+
aria-readonly=readonly
|
|
368
372
|
onPress=disabled || readonly ? void 0 : onOpen
|
|
369
373
|
wrap
|
|
370
374
|
row
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startupjs-ui/multi-select",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-alpha.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -8,19 +8,19 @@
|
|
|
8
8
|
"types": "index.d.ts",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@startupjs-ui/core": "^0.
|
|
12
|
-
"@startupjs-ui/div": "^0.
|
|
13
|
-
"@startupjs-ui/drawer": "^0.
|
|
14
|
-
"@startupjs-ui/icon": "^0.
|
|
15
|
-
"@startupjs-ui/popover": "^0.
|
|
16
|
-
"@startupjs-ui/scroll-view": "^0.
|
|
17
|
-
"@startupjs-ui/span": "^0.
|
|
18
|
-
"@startupjs-ui/tag": "^0.
|
|
11
|
+
"@startupjs-ui/core": "^0.2.0-alpha.0",
|
|
12
|
+
"@startupjs-ui/div": "^0.2.0-alpha.0",
|
|
13
|
+
"@startupjs-ui/drawer": "^0.2.0-alpha.0",
|
|
14
|
+
"@startupjs-ui/icon": "^0.2.0-alpha.0",
|
|
15
|
+
"@startupjs-ui/popover": "^0.2.0-alpha.0",
|
|
16
|
+
"@startupjs-ui/scroll-view": "^0.2.0-alpha.0",
|
|
17
|
+
"@startupjs-ui/span": "^0.2.0-alpha.0",
|
|
18
|
+
"@startupjs-ui/tag": "^0.2.0-alpha.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "*",
|
|
22
22
|
"react-native": "*",
|
|
23
23
|
"startupjs": "*"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "a428246a18d0e7f77809043c8240253240d11d66"
|
|
26
26
|
}
|