@startupjs-ui/auto-suggest 0.2.0-alpha.0 → 0.2.0-alpha.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 CHANGED
@@ -3,6 +3,14 @@
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.1](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.0...v0.2.0-alpha.1) (2026-04-10)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/auto-suggest
9
+
10
+
11
+
12
+
13
+
6
14
  # [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
7
15
 
8
16
  **Note:** Version bump only for package @startupjs-ui/auto-suggest
package/index.tsx CHANGED
@@ -170,7 +170,7 @@ function AutoSuggest ({
170
170
  return pug`
171
171
  TouchableOpacity(
172
172
  key=index
173
- onPress=() => { void _onPress(item) }
173
+ onPress=() => { _onPress(item) }
174
174
  )= renderItem(item, index, selectIndexValue)
175
175
  `
176
176
  }
@@ -179,7 +179,7 @@ function AutoSuggest ({
179
179
  Menu.Item.item(
180
180
  key=index
181
181
  styleName={ selectMenu: selectIndexValue === index }
182
- onPress=() => { void _onPress(item) }
182
+ onPress=() => { _onPress(item) }
183
183
  active=stringifyValue(item) === stringifyValue(value)
184
184
  )= getLabelFromValue(item, options)
185
185
  `
@@ -229,7 +229,7 @@ function AutoSuggest ({
229
229
  onChangeText=_onChangeText
230
230
  onFocus=() => setIsShow(true)
231
231
  onKeyPress=onKeyPress
232
- onIconPress=() => { void onChange?.() }
232
+ onIconPress=() => { onChange?.() }
233
233
  testID=testID
234
234
  )
235
235
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/auto-suggest",
3
- "version": "0.2.0-alpha.0",
3
+ "version": "0.2.0-alpha.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,17 +8,17 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/abstract-popover": "^0.2.0-alpha.0",
12
- "@startupjs-ui/core": "^0.2.0-alpha.0",
13
- "@startupjs-ui/flat-list": "^0.2.0-alpha.0",
14
- "@startupjs-ui/loader": "^0.2.0-alpha.0",
15
- "@startupjs-ui/menu": "^0.2.0-alpha.0",
16
- "@startupjs-ui/text-input": "^0.2.0-alpha.0"
11
+ "@startupjs-ui/abstract-popover": "^0.2.0-alpha.1",
12
+ "@startupjs-ui/core": "^0.2.0-alpha.1",
13
+ "@startupjs-ui/flat-list": "^0.2.0-alpha.1",
14
+ "@startupjs-ui/loader": "^0.2.0-alpha.1",
15
+ "@startupjs-ui/menu": "^0.2.0-alpha.1",
16
+ "@startupjs-ui/text-input": "^0.2.0-alpha.1"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": "*",
20
20
  "react-native": "*",
21
21
  "startupjs": "*"
22
22
  },
23
- "gitHead": "a428246a18d0e7f77809043c8240253240d11d66"
23
+ "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
24
24
  }