@kubex/zinc 1.1.0 → 1.1.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.
- package/dist/custom-elements.json +1 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.d.ts +4 -2
- package/dist/zn.min.js +150 -150
- package/package.json +1 -1
- package/src/components/collapsible/collapsible.scss +4 -0
- package/src/components/menu/menu.scss +2 -2
- package/src/components/navbar/navbar.scss +1 -1
- package/src/internal/zinc-element.ts +6 -1
|
@@ -36133,7 +36133,7 @@
|
|
|
36133
36133
|
"package": {
|
|
36134
36134
|
"name": "@kubex/zinc",
|
|
36135
36135
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
36136
|
-
"version": "1.1.
|
|
36136
|
+
"version": "1.1.1",
|
|
36137
36137
|
"author": "",
|
|
36138
36138
|
"license": "MIT"
|
|
36139
36139
|
}
|
package/dist/web-types.json
CHANGED
package/dist/zn.d.ts
CHANGED
|
@@ -61,8 +61,10 @@ declare module "internal/event" {
|
|
|
61
61
|
declare module "internal/zinc-element" {
|
|
62
62
|
import { LitElement, type PropertyValues } from "lit";
|
|
63
63
|
import type { EventTypeDoesNotRequireDetail, EventTypeRequiresDetail, EventTypesWithoutRequiredDetail, EventTypesWithRequiredDetail, GetCustomEventType, ZincEventInit } from "internal/event";
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
import type { SignalWatcherApi } from "@lit-labs/signals";
|
|
65
|
+
type Constructor<T = NonNullable<unknown>> = new (...args: any[]) => T;
|
|
66
|
+
const ZincElementBase: typeof LitElement & Constructor<SignalWatcherApi>;
|
|
67
|
+
export default class ZincElement extends ZincElementBase {
|
|
66
68
|
dir: string;
|
|
67
69
|
lang: string;
|
|
68
70
|
t: string;
|