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