@rcarls/rc-progress 0.1.0 → 0.6.0

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 (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # @rcarls/rc-progress
2
+
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 509ee64: Add `rc-progress`, a native `<progress>` enhancer with a formatted value
8
+ display, a track and fill you can restyle with CSS custom properties, and a
9
+ built-in fix for the indeterminate/undefined-binding footgun.
10
+
11
+ Keep the native element as the uncontrolled source of truth, support releasing
12
+ a controlled value, and react to live native `value`/`max` changes. Preserve a
13
+ native determinate value while `indeterminate` temporarily removes its
14
+ attribute.
15
+
16
+ The bar renders at its intended height with no `display` attribute set,
17
+ matching its own documented default: previously the track/fill/native
18
+ `<progress>` are all absolutely positioned, contributing nothing to the
19
+ control's normal-flow height, so with no value-display text sharing its grid
20
+ row to give it one, the whole bar collapsed to 0px.
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [6683eb9]
25
+ - Updated dependencies [ee7ba6c]
26
+ - Updated dependencies [30eb232]
27
+ - @rcarls/rc-common@0.6.0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.0",
6
+ "version": "0.6.0",
7
7
  "description": "Native <progress> enhancer with a formatted value display, restyleable track/fill, and a built-in fix for the indeterminate/undefined-binding footgun.",
8
8
  "repository": {
9
9
  "type": "git",
@@ -57,7 +57,7 @@
57
57
  "vitest-browser-lit": "^1.0.1"
58
58
  },
59
59
  "dependencies": {
60
- "@rcarls/rc-common": "0.5.0"
60
+ "@rcarls/rc-common": "0.6.0"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "lit": "^3.0.0"