@wcstack/tilt 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
@@ -233,5 +233,11 @@ declare const WCS_TILT_ERROR_CODE: {
233
233
  readonly TiltError: "tilt-error";
234
234
  };
235
235
 
236
+ declare global {
237
+ interface HTMLElementTagNameMap {
238
+ "wcs-tilt": WcsTilt;
239
+ }
240
+ }
241
+
236
242
  export { TiltCore, WCS_TILT_ERROR_CODE, WcsTilt, bootstrapTilt, getConfig };
237
243
  export type { IWritableConfig, IWritableTagNames, TiltPermissionState, WcsIoErrorInfo, WcsIoErrorPhase, WcsTiltCoreValues, WcsTiltValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/tilt",
3
- "version": "1.32.0",
3
+ "version": "2.0.0",
4
4
  "description": "Declarative Device Orientation component for Web Components. Framework-agnostic deviceorientation wrapper via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",