@wcstack/permission 1.32.0 → 2.0.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -203,5 +203,11 @@ declare class WcsPermission extends HTMLElement {
203
203
  disconnectedCallback(): void;
204
204
  }
205
205
 
206
+ declare global {
207
+ interface HTMLElementTagNameMap {
208
+ "wcs-permission": WcsPermission;
209
+ }
210
+ }
211
+
206
212
  export { PermissionCore, WcsPermission, bootstrapPermission, getConfig };
207
213
  export type { IWritableConfig, IWritableTagNames, PermissionStateOrUnsupported, WcsPermissionCoreValues, WcsPermissionDescriptor, WcsPermissionInputs, WcsPermissionValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/permission",
3
- "version": "1.32.0",
3
+ "version": "2.0.0",
4
4
  "description": "Declarative permission-state component for Web Components. Framework-agnostic Permissions API monitor via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",