@kubex/zinc 1.0.10 → 1.0.11
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 -0
- package/package.json +1 -1
- package/src/zinc.ts +7 -1
|
@@ -25956,7 +25956,7 @@
|
|
|
25956
25956
|
"package": {
|
|
25957
25957
|
"name": "@kubex/zinc",
|
|
25958
25958
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
25959
|
-
"version": "1.0.
|
|
25959
|
+
"version": "1.0.11",
|
|
25960
25960
|
"author": "",
|
|
25961
25961
|
"license": "MIT"
|
|
25962
25962
|
}
|
package/dist/web-types.json
CHANGED
package/dist/zn.d.ts
CHANGED
|
@@ -6587,6 +6587,10 @@ declare module "zinc" {
|
|
|
6587
6587
|
export { default as ContentBlock } from "components/content-block/index";
|
|
6588
6588
|
export { default as FilterWrapper } from "components/filter-wrapper/index";
|
|
6589
6589
|
export { default as SettingsContainer } from "components/settings-container/index";
|
|
6590
|
+
export * from "internal/zinc-element";
|
|
6591
|
+
export * from "utilities/on";
|
|
6592
|
+
export * from "utilities/query";
|
|
6593
|
+
export * from "utilities/lit-to-html";
|
|
6590
6594
|
export * from "events/events";
|
|
6591
6595
|
}
|
|
6592
6596
|
declare module "components/editor/modules/events/zn-command-select" {
|
package/package.json
CHANGED
package/src/zinc.ts
CHANGED
|
@@ -79,10 +79,16 @@ export {default as Skeleton} from './components/skeleton';
|
|
|
79
79
|
export {default as Style} from './components/style';
|
|
80
80
|
export {default as ContentBlock} from './components/content-block';
|
|
81
81
|
export {default as FilterWrapper} from './components/filter-wrapper';
|
|
82
|
-
export {
|
|
82
|
+
export {default as SettingsContainer} from './components/settings-container';
|
|
83
83
|
/* plop:component */
|
|
84
84
|
|
|
85
|
+
// Base Component
|
|
86
|
+
export * from './internal/zinc-element';
|
|
87
|
+
|
|
85
88
|
// Utilities
|
|
89
|
+
export * from './utilities/on';
|
|
90
|
+
export * from './utilities/query';
|
|
91
|
+
export * from './utilities/lit-to-html';
|
|
86
92
|
|
|
87
93
|
// Events
|
|
88
94
|
export * from './events/events';
|