@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.
@@ -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.10",
25959
+ "version": "1.0.11",
25960
25960
  "author": "",
25961
25961
  "license": "MIT"
25962
25962
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@kubex/zinc",
4
- "version": "1.0.10",
4
+ "version": "1.0.11",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubex/zinc",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
5
5
  "keywords": [
6
6
  "web components",
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 { default as SettingsContainer } from './components/settings-container';
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';