@startupjs-ui/dropdown 0.1.17 → 0.1.22

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.mdx +3 -5
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
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.1.22](https://github.com/startupjs/startupjs-ui/compare/v0.1.21...v0.1.22) (2026-03-25)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/dropdown
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.21](https://github.com/startupjs/startupjs-ui/compare/v0.1.20...v0.1.21) (2026-03-25)
15
+
16
+ **Note:** Version bump only for package @startupjs-ui/dropdown
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.1.19](https://github.com/startupjs/startupjs-ui/compare/v0.1.18...v0.1.19) (2026-03-17)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **docs:** don't load all icons to keep bundle small ([#17](https://github.com/startupjs/startupjs-ui/issues/17)) ([d7eb70b](https://github.com/startupjs/startupjs-ui/commit/d7eb70bc11f5b15923f2e43b7ef1f86ea066494e))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [0.1.17](https://github.com/startupjs/startupjs-ui/compare/v0.1.16...v0.1.17) (2026-02-12)
7
34
 
8
35
  **Note:** Version bump only for package @startupjs-ui/dropdown
package/README.mdx CHANGED
@@ -3,11 +3,9 @@ import { View } from 'react-native'
3
3
  import Dropdown, { _PropsJsonSchema as DropdownPropsJsonSchema } from './index'
4
4
  import Icon from '@startupjs-ui/icon'
5
5
  import { Sandbox } from '@startupjs-ui/docs'
6
- import {
7
- faEllipsisV,
8
- faPencilAlt,
9
- faTrashAlt
10
- } from '@fortawesome/free-solid-svg-icons'
6
+ import { faEllipsisV } from '@fortawesome/free-solid-svg-icons/faEllipsisV'
7
+ import { faPencilAlt } from '@fortawesome/free-solid-svg-icons/faPencilAlt'
8
+ import { faTrashAlt } from '@fortawesome/free-solid-svg-icons/faTrashAlt'
11
9
 
12
10
  # Dropdown
13
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/dropdown",
3
- "version": "0.1.17",
3
+ "version": "0.1.22",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,20 +8,20 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/button": "^0.1.16",
12
- "@startupjs-ui/core": "^0.1.11",
13
- "@startupjs-ui/div": "^0.1.16",
14
- "@startupjs-ui/drawer": "^0.1.16",
15
- "@startupjs-ui/icon": "^0.1.16",
16
- "@startupjs-ui/link": "^0.1.16",
17
- "@startupjs-ui/menu": "^0.1.16",
18
- "@startupjs-ui/popover": "^0.1.16",
19
- "@startupjs-ui/span": "^0.1.16"
11
+ "@startupjs-ui/button": "^0.1.22",
12
+ "@startupjs-ui/core": "^0.1.22",
13
+ "@startupjs-ui/div": "^0.1.22",
14
+ "@startupjs-ui/drawer": "^0.1.22",
15
+ "@startupjs-ui/icon": "^0.1.22",
16
+ "@startupjs-ui/link": "^0.1.22",
17
+ "@startupjs-ui/menu": "^0.1.22",
18
+ "@startupjs-ui/popover": "^0.1.22",
19
+ "@startupjs-ui/span": "^0.1.22"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "react": "*",
23
23
  "react-native": "*",
24
24
  "startupjs": "*"
25
25
  },
26
- "gitHead": "902cb7536d017b53dc268cc54e8e54818279744c"
26
+ "gitHead": "3bd18c16f0f203ee3d940bf2e09381edc0034665"
27
27
  }