@kubex/zinc 1.1.7 → 1.1.8
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/dist/custom-elements.json +946 -916
- package/dist/vscode.html-custom-data.json +72 -71
- package/dist/web-types.json +187 -182
- package/dist/zn.d.ts +4 -0
- package/dist/zn.min.js +44 -43
- package/package.json +1 -1
- package/src/components/reveal/reveal.component.ts +30 -8
- package/src/components/reveal/reveal.scss +32 -2
package/dist/zn.d.ts
CHANGED
|
@@ -7636,8 +7636,12 @@ declare module "components/reveal/reveal.component" {
|
|
|
7636
7636
|
duration: number;
|
|
7637
7637
|
initial: string;
|
|
7638
7638
|
revealed: string;
|
|
7639
|
+
hideDelay: number;
|
|
7639
7640
|
private _isRevealed;
|
|
7640
7641
|
private _isToggled;
|
|
7642
|
+
private _hideTimer?;
|
|
7643
|
+
disconnectedCallback(): void;
|
|
7644
|
+
private _clearHideTimer;
|
|
7641
7645
|
protected handleToggleReveal(): void;
|
|
7642
7646
|
protected handleMouseEnter(): void;
|
|
7643
7647
|
protected handleMouseLeave(): void;
|