@startupjs-ui/range-input 0.2.0-alpha.1 → 0.2.3

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,28 @@
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.3](https://github.com/startupjs/startupjs-ui/compare/v0.2.2...v0.2.3) (2026-05-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **range-input:** use forked version of the underlying range-input library which is published to npm ([7870f61](https://github.com/startupjs/startupjs-ui/commit/7870f61884d0eef85db8c4495bbd41327bd08014))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.2.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.23...v0.2.0) (2026-05-04)
18
+
19
+
20
+ ### Features
21
+
22
+ * [v0.2] add accessibility features to most components, which also dramatically improves E2E testability ([#22](https://github.com/startupjs/startupjs-ui/issues/22)) ([b563e2f](https://github.com/startupjs/startupjs-ui/commit/b563e2fa498a8a83bd5abc7836d120f6d2381e3f))
23
+
24
+
25
+
26
+
27
+
6
28
  # [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
29
 
8
30
  **Note:** Version bump only for package @startupjs-ui/range-input
package/Label/index.tsx CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type ReactNode } from 'react'
2
- import { type LabelProps as MultiSliderLabelProps } from '@ptomasroos/react-native-multi-slider'
2
+ import { type LabelProps as MultiSliderLabelProps } from '@startupjs-ui/react-native-multi-slider'
3
3
  import { pug } from 'startupjs'
4
4
  import Div from '@startupjs-ui/div'
5
5
  import Span from '@startupjs-ui/span'
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable */
2
2
  // DO NOT MODIFY THIS FILE - IT IS AUTOMATICALLY GENERATED ON COMMITS.
3
3
 
4
- import { type MultiSliderProps } from '@ptomasroos/react-native-multi-slider';
4
+ import { type MultiSliderProps } from '@startupjs-ui/react-native-multi-slider';
5
5
  import './index.cssx.styl';
6
6
  declare const _default: import("react").ComponentType<RangeInputProps>;
7
7
  export default _default;
package/index.tsx CHANGED
@@ -1,5 +1,5 @@
1
1
  import { useMemo, type ReactNode } from 'react'
2
- import MultiSlider, { type MultiSliderProps } from '@ptomasroos/react-native-multi-slider'
2
+ import MultiSlider, { type MultiSliderProps } from '@startupjs-ui/react-native-multi-slider'
3
3
  import { pug, observer } from 'startupjs'
4
4
  import { themed } from '@startupjs-ui/core'
5
5
  import Label from './Label'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/range-input",
3
- "version": "0.2.0-alpha.1",
3
+ "version": "0.2.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,15 +8,15 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@ptomasroos/react-native-multi-slider": "github:ptomasroos/react-native-multi-slider#368a0e8a67a595a84f411ea394b471a43ad8e7a4",
12
- "@startupjs-ui/core": "^0.2.0-alpha.1",
13
- "@startupjs-ui/div": "^0.2.0-alpha.1",
14
- "@startupjs-ui/span": "^0.2.0-alpha.1"
11
+ "@startupjs-ui/core": "^0.2.0",
12
+ "@startupjs-ui/div": "^0.2.0",
13
+ "@startupjs-ui/react-native-multi-slider": "^2.2.2",
14
+ "@startupjs-ui/span": "^0.2.0"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "react": "*",
18
18
  "react-native": "*",
19
19
  "startupjs": "*"
20
20
  },
21
- "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
21
+ "gitHead": "6e854934a9a9d2484291670dd5955ba8ad9af621"
22
22
  }