@startupjs-ui/number-input 0.3.5 → 0.3.7

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.7](https://github.com/startupjs/startupjs-ui/compare/v0.3.6...v0.3.7) (2026-06-20)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/number-input
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.6](https://github.com/startupjs/startupjs-ui/compare/v0.3.5...v0.3.6) (2026-06-19)
15
+
16
+ **Note:** Version bump only for package @startupjs-ui/number-input
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.5](https://github.com/startupjs/startupjs-ui/compare/v0.3.4...v0.3.5) (2026-06-19)
7
23
 
8
24
  **Note:** Version bump only for package @startupjs-ui/number-input
package/index.cssx.styl CHANGED
@@ -1,7 +1,14 @@
1
+ // ----- CONFIG: $UI.NumberInput
2
+
3
+ $this = merge({
4
+ buttonBorderColor: var(--color-border-main)
5
+ }, $UI.NumberInput, true)
6
+
7
+ // ----- COMPONENT
8
+
1
9
  $sizes = 'l' 'm' 's'
2
10
  // border color should be taken from text input config
3
11
  // because the input border and the button border overlap each other
4
- $inputBorderColor = var(--color-border-main)
5
12
  $padding = {
6
13
  l: 6u,
7
14
  m: 5u,
@@ -53,7 +60,7 @@ $padding = {
53
60
 
54
61
  .input-button
55
62
  position absolute
56
- border-color $inputBorderColor
63
+ border-color $this.buttonBorderColor
57
64
 
58
65
  &.vertical
59
66
  right 0
@@ -85,3 +92,8 @@ $padding = {
85
92
  left 0
86
93
  border-top-right-radius 0
87
94
  border-bottom-right-radius 0
95
+
96
+ // ----- JS EXPORTS
97
+
98
+ :export
99
+ config: $this
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/number-input",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,16 +8,16 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/button": "^0.3.5",
11
+ "@startupjs-ui/button": "^0.3.7",
12
12
  "@startupjs-ui/core": "^0.3.0",
13
- "@startupjs-ui/div": "^0.3.4",
13
+ "@startupjs-ui/div": "^0.3.7",
14
14
  "@startupjs-ui/span": "^0.3.4",
15
- "@startupjs-ui/text-input": "^0.3.5"
15
+ "@startupjs-ui/text-input": "^0.3.7"
16
16
  },
17
17
  "peerDependencies": {
18
18
  "react": "*",
19
19
  "react-native": "*",
20
20
  "startupjs": "*"
21
21
  },
22
- "gitHead": "8fc799070c16fb24de4ad0dbd6054108fe342d7c"
22
+ "gitHead": "a8bf45fdf47b12f25a690d9b9286fe1747edd5e9"
23
23
  }