@startupjs-ui/dropdown 0.3.1 → 0.3.5

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,22 @@
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.3.5](https://github.com/startupjs/startupjs-ui/compare/v0.3.4...v0.3.5) (2026-06-19)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/dropdown
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.4](https://github.com/startupjs/startupjs-ui/compare/v0.3.3...v0.3.4) (2026-06-18)
15
+
16
+ **Note:** Version bump only for package @startupjs-ui/dropdown
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.1](https://github.com/startupjs/startupjs-ui/compare/v0.3.0...v0.3.1) (2026-06-08)
7
23
 
8
24
  **Note:** Version bump only for package @startupjs-ui/dropdown
package/README.mdx CHANGED
@@ -81,6 +81,12 @@ return (
81
81
  )
82
82
  ```
83
83
 
84
+ ## Theme configuration
85
+
86
+ Dropdown caption exposes CSSX theme configuration for app-wide visual tuning:
87
+
88
+ - **$UI.DropdownCaption.activeColor** -- text color used by the active caption. It uses `var(--color-text-main)` by default.
89
+
84
90
  ## Sandbox
85
91
 
86
92
  <Sandbox
@@ -1,3 +1,7 @@
1
+ $this = merge({
2
+ activeColor: var(--color-text-main)
3
+ }, $UI.DropdownCaption, true)
4
+
1
5
  .select
2
6
  background-color var(--color-bg-main-strong)
3
7
  height 4u
@@ -14,4 +18,4 @@
14
18
  color var(--color-text-placeholder)
15
19
 
16
20
  .active
17
- color var(--color-text-main)
21
+ color $this.activeColor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/dropdown",
3
- "version": "0.3.1",
3
+ "version": "0.3.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,21 +8,21 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/button": "^0.3.1",
11
+ "@startupjs-ui/button": "^0.3.5",
12
12
  "@startupjs-ui/core": "^0.3.0",
13
- "@startupjs-ui/div": "^0.3.1",
13
+ "@startupjs-ui/div": "^0.3.4",
14
14
  "@startupjs-ui/drawer": "^0.3.0",
15
- "@startupjs-ui/icon": "^0.3.0",
16
- "@startupjs-ui/link": "^0.3.1",
17
- "@startupjs-ui/menu": "^0.3.1",
18
- "@startupjs-ui/popover": "^0.3.1",
15
+ "@startupjs-ui/icon": "^0.3.5",
16
+ "@startupjs-ui/link": "^0.3.5",
17
+ "@startupjs-ui/menu": "^0.3.5",
18
+ "@startupjs-ui/popover": "^0.3.4",
19
19
  "@startupjs-ui/scroll-view": "^0.3.0",
20
- "@startupjs-ui/span": "^0.3.1"
20
+ "@startupjs-ui/span": "^0.3.4"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": "*",
24
24
  "react-native": "*",
25
25
  "startupjs": "*"
26
26
  },
27
- "gitHead": "60311773bdc83f354c797a272774304502d28c58"
27
+ "gitHead": "8fc799070c16fb24de4ad0dbd6054108fe342d7c"
28
28
  }