@kipk/ha-better-history 0.1.4 → 0.1.5
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 +9 -1
- package/dist/{decorate-BpZs5bHP.js → decorate-HnDlaVfT.js} +2 -2
- package/dist/define.js +1 -1
- package/dist/{ha-better-history-PA3nPDOW.js → ha-better-history-ClqQAeug.js} +353 -312
- package/dist/ha-better-history.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/picker.js +1 -1
- package/dist/{series-picker-element-BVn3IHNz.js → series-picker-element-vdkm1ade.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,14 @@ If this component helps you, you can support development on
|
|
|
32
32
|
|
|
33
33
|
## Quick start
|
|
34
34
|
|
|
35
|
+
Install from npm:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install @kipk/ha-better-history
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Package page: [@kipk/ha-better-history on npm](https://www.npmjs.com/package/@kipk/ha-better-history)
|
|
42
|
+
|
|
35
43
|
```html
|
|
36
44
|
<ha-better-history></ha-better-history>
|
|
37
45
|
|
|
@@ -415,7 +423,7 @@ Releases are created by pushing a version tag that matches `package.json` exactl
|
|
|
415
423
|
```bash
|
|
416
424
|
npm version 1.0.0 --no-git-tag-version
|
|
417
425
|
git tag 1.0.0
|
|
418
|
-
git push origin
|
|
426
|
+
git push origin master --tags
|
|
419
427
|
```
|
|
420
428
|
|
|
421
429
|
Accepted tag formats are `1.0.0`, `1.0.0-rc1`, and `1.0.0-beta1`. Stable tags publish to the npm `latest` dist-tag; release candidates publish to `rc`; beta releases publish to `beta`.
|
|
@@ -766,7 +766,7 @@ var fe = e`
|
|
|
766
766
|
display: flex;
|
|
767
767
|
flex-direction: column;
|
|
768
768
|
container-type: inline-size;
|
|
769
|
-
min-height: 360px;
|
|
769
|
+
min-height: var(--better-history-min-height, 360px);
|
|
770
770
|
font-family: var(--better-history-font-family, inherit);
|
|
771
771
|
user-select: none;
|
|
772
772
|
-webkit-user-select: none;
|
|
@@ -803,7 +803,7 @@ var fe = e`
|
|
|
803
803
|
flex-direction: column;
|
|
804
804
|
justify-content: center;
|
|
805
805
|
position: relative;
|
|
806
|
-
overflow-y: auto;
|
|
806
|
+
overflow-y: var(--better-history-surface-overflow-y, auto);
|
|
807
807
|
padding-block: 16px;
|
|
808
808
|
flex: 1;
|
|
809
809
|
min-height: 0;
|
package/dist/define.js
CHANGED