zero-hour 1.0.0-dev.0 → 1.0.0-dev.1

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/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -43,7 +43,7 @@ import { initCountdownTimers } from 'zero-hour';
43
43
  separator-url="/sprites/sep.webp"
44
44
  date="2025-12-31"
45
45
  time="23:59:59"
46
- utc="+03:00"
46
+ utc="UTC+03:00"
47
47
  ></countdown-timer>
48
48
  ```
49
49
 
@@ -121,7 +121,7 @@ el?.start();
121
121
  | `autostart` | `boolean` | `true` | Auto-start on connect. Can be a boolean attribute (`autostart`) or a string (`autostart="false"`). |
122
122
  | `date` | `YYYY-MM-DD` | — | Target date. Without `date` the timer resolves to zero. |
123
123
  | `time` | `HH:MM[:SS]` | `00:00:00` | Target time. |
124
- | `utc` | `UTC±H[:MM]` or `±H[:MM]` | `UTC+0` | UTC offset used to compute the target moment. Examples: `utc="+03:00"`, `utc="UTC-5"`. |
124
+ | `utc` | `UTC±H[:MM]` or `±H[:MM]` | `UTC+0` | UTC offset used to compute the target moment. Examples: `utc="UTC+03:00"`, `utc="UTC-5"`. |
125
125
  | `units` | `string` | `"d:h:m:s"` | Visible groups pattern using `d`, `h`, `m`, `s` separated by `:` (e.g. `"h:m:s"`). Empty/invalid value falls back to showing all. |
126
126
 
127
127
  <br>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zero-hour",
3
- "version": "1.0.0-dev.0",
3
+ "version": "1.0.0-dev.1",
4
4
  "description": "Tiny countdown Web Component. Registers <countdown-timer> that renders a configurable DD:HH:MM:SS countdown to a target date/time (optional UTC offset) and fires a done event at zero.",
5
5
  "author": "ux-ui.pro",
6
6
  "license": "MIT",