@operato/scene-clock 10.0.0-beta.14 → 10.0.0-beta.65

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 +31 -8
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,11 +1,34 @@
1
- # things-scene-clock
1
+ # @operato/scene-clock
2
2
 
3
- ## build
3
+ > Clock component for things-scene
4
4
 
5
- `$ yarn build`
5
+ <!-- AUTOGEN_BEGIN: do not edit between markers (run scripts/regenerate-readmes.mjs to update) -->
6
6
 
7
- | type | filename | for | tested |
8
- | ---- | ------------------------ | -------------- | ------ |
9
- | UMD | things-scene-clock.js | modern browser | O |
10
- | UMD | things-scene-clock-ie.js | ie 11 | O |
11
- | ESM | things-scene-clock.mjs | modern browser | O |
7
+ ## Components
8
+
9
+ - `ClockAnalog`
10
+ - `ClockText`
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ yarn add @operato/scene-clock
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ```ts
21
+ import { ClockAnalog, ClockText } from '@operato/scene-clock'
22
+ ```
23
+
24
+ ## Build
25
+
26
+ ```bash
27
+ yarn build
28
+ ```
29
+
30
+ Output: ESM module at `dist/index.js` (single bundle, no UMD/IE legacy).
31
+
32
+ _Version: 10.0.0-beta.14_
33
+
34
+ <!-- AUTOGEN_END -->
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-clock",
3
3
  "description": "Clock component for things-scene",
4
4
  "author": "heartyoh",
5
- "version": "10.0.0-beta.14",
5
+ "version": "10.0.0-beta.65",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.js",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@hatiolab/prettier-config": "^1.0.0",
36
- "@things-factory/builder": "^10.0.0-beta.1",
37
- "@things-factory/operato-board": "^10.0.0-beta.1",
36
+ "@things-factory/builder": "^10.0.0-zeta.1",
37
+ "@things-factory/operato-board": "^10.0.0-zeta.1",
38
38
  "@typescript-eslint/eslint-plugin": "^8.0.0",
39
39
  "@typescript-eslint/parser": "^8.0.0",
40
40
  "@web/dev-server": "^0.1.28",
@@ -59,5 +59,5 @@
59
59
  "prettier --write"
60
60
  ]
61
61
  },
62
- "gitHead": "3defb7207c541d87da3f5ebdd34f06d2e9e1cebb"
62
+ "gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
63
63
  }