@wcstack/ambient-light-sensor 1.31.0 → 1.33.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
@@ -277,5 +277,11 @@ declare const WCS_AMBIENT_LIGHT_SENSOR_ERROR_CODE: {
277
277
  readonly SensorError: "sensor-error";
278
278
  };
279
279
 
280
+ declare global {
281
+ interface HTMLElementTagNameMap {
282
+ "wcs-ambient-light-sensor": WcsAmbientLightSensor;
283
+ }
284
+ }
285
+
280
286
  export { AmbientLightSensorCore, WCS_AMBIENT_LIGHT_SENSOR_ERROR_CODE, WcsAmbientLightSensor, bootstrapAmbientLightSensor, getConfig };
281
287
  export type { IWritableConfig, IWritableTagNames, WcsAmbientLightSensorCoreValues, WcsAmbientLightSensorErrorDetail, WcsAmbientLightSensorReading, WcsAmbientLightSensorValues, WcsIoErrorInfo, WcsIoErrorPhase };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/ambient-light-sensor",
3
- "version": "1.31.0",
3
+ "version": "1.33.0",
4
4
  "description": "Declarative AmbientLightSensor component for Web Components. Framework-agnostic Generic Sensor API (AmbientLightSensor) monitor via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",