@startupjs-ui/dropdown 0.1.16 → 0.1.19
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 +19 -0
- package/README.mdx +3 -5
- package/components/Caption/index.cssx.styl +1 -1
- package/index.cssx.styl +3 -3
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.19](https://github.com/startupjs/startupjs-ui/compare/v0.1.18...v0.1.19) (2026-03-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.1.17](https://github.com/startupjs/startupjs-ui/compare/v0.1.16...v0.1.17) (2026-02-12)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @startupjs-ui/dropdown
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.1.16](https://github.com/startupjs/startupjs-ui/compare/v0.1.15...v0.1.16) (2026-02-10)
|
|
7
26
|
|
|
8
27
|
**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
|
-
|
|
8
|
-
|
|
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/index.cssx.styl
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
.case
|
|
10
10
|
&.buttons
|
|
11
11
|
margin 1.5u 1.5u 2u
|
|
12
|
-
|
|
12
|
+
radius(l)
|
|
13
13
|
background-color var(--color-bg-main-strong)
|
|
14
14
|
|
|
15
15
|
.caption
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
align-items center
|
|
33
33
|
margin -1u 1.5u 1.5u
|
|
34
34
|
padding 2u
|
|
35
|
-
|
|
35
|
+
radius(l)
|
|
36
36
|
background-color var(--color-bg-main-strong)
|
|
37
37
|
|
|
38
38
|
.popover
|
|
39
|
-
|
|
39
|
+
radius()
|
|
40
40
|
shadow(2)
|
|
41
41
|
|
|
42
42
|
.drawerReset
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startupjs-ui/dropdown",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
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.
|
|
12
|
-
"@startupjs-ui/core": "^0.1.
|
|
13
|
-
"@startupjs-ui/div": "^0.1.
|
|
14
|
-
"@startupjs-ui/drawer": "^0.1.
|
|
15
|
-
"@startupjs-ui/icon": "^0.1.
|
|
16
|
-
"@startupjs-ui/link": "^0.1.
|
|
17
|
-
"@startupjs-ui/menu": "^0.1.
|
|
18
|
-
"@startupjs-ui/popover": "^0.1.
|
|
19
|
-
"@startupjs-ui/span": "^0.1.
|
|
11
|
+
"@startupjs-ui/button": "^0.1.19",
|
|
12
|
+
"@startupjs-ui/core": "^0.1.19",
|
|
13
|
+
"@startupjs-ui/div": "^0.1.19",
|
|
14
|
+
"@startupjs-ui/drawer": "^0.1.19",
|
|
15
|
+
"@startupjs-ui/icon": "^0.1.19",
|
|
16
|
+
"@startupjs-ui/link": "^0.1.19",
|
|
17
|
+
"@startupjs-ui/menu": "^0.1.19",
|
|
18
|
+
"@startupjs-ui/popover": "^0.1.19",
|
|
19
|
+
"@startupjs-ui/span": "^0.1.19"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": "*",
|
|
23
23
|
"react-native": "*",
|
|
24
24
|
"startupjs": "*"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "bfcca786dc363f42a09b6eef4feb7ca8139302fc"
|
|
27
27
|
}
|