From c576682cd42051f1ee59eddb5e97bba22e2631a7 Mon Sep 17 00:00:00 2001 From: Joe Pea <joe@trusktr.io> Date: Thu, 12 Sep 2024 12:56:16 -0400 Subject: [PATCH] Update `lowclass` version. --- dist/CustomAttributeRegistry.d.ts | 2 +- dist/CustomAttributeRegistry.d.ts.map | 2 +- package.json | 2 +- src/CustomAttributeRegistry.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/CustomAttributeRegistry.d.ts b/dist/CustomAttributeRegistry.d.ts index 884e61b..a55f9a3 100644 --- a/dist/CustomAttributeRegistry.d.ts +++ b/dist/CustomAttributeRegistry.d.ts @@ -1,4 +1,4 @@ -import type { Constructor } from 'lowclass'; +import type { Constructor } from 'lowclass/dist/Constructor.js'; export declare class CustomAttributeRegistry { ownerDocument: Document | ShadowRoot; private _attrMap; diff --git a/dist/CustomAttributeRegistry.d.ts.map b/dist/CustomAttributeRegistry.d.ts.map index 7139a91..1921e7a 100644 --- a/dist/CustomAttributeRegistry.d.ts.map +++ b/dist/CustomAttributeRegistry.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CustomAttributeRegistry.d.ts","sourceRoot":"","sources":["../src/CustomAttributeRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,UAAU,CAAA;AAIzC,qBAAa,uBAAuB;IAmBhB,aAAa,EAAE,QAAQ,GAAG,UAAU;IAlBvD,OAAO,CAAC,QAAQ,CAAiC;IACjD,OAAO,CAAC,WAAW,CAAuD;IAE1E,OAAO,CAAC,SAAS,CAaf;gBAEiB,aAAa,EAAE,QAAQ,GAAG,UAAU;IAIvD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,WAAW;IAM3C,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM;IAMtC,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,QAAQ;IAYhB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,UAAU;IAKlB,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,iBAAiB,CAWxB;IAED,OAAO,CAAC,oBAAoB,CAO3B;IAED,OAAO,CAAC,aAAa;CAiCrB;AAGD,MAAM,WAAW,eAAe;IAC/B,YAAY,EAAE,OAAO,CAAA;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,iBAAiB,CAAC,IAAI,IAAI,CAAA;IAC1B,oBAAoB,CAAC,IAAI,IAAI,CAAA;IAC7B,eAAe,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CAC1D"} \ No newline at end of file +{"version":3,"file":"CustomAttributeRegistry.d.ts","sourceRoot":"","sources":["../src/CustomAttributeRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,8BAA8B,CAAA;AAI7D,qBAAa,uBAAuB;IAmBhB,aAAa,EAAE,QAAQ,GAAG,UAAU;IAlBvD,OAAO,CAAC,QAAQ,CAAiC;IACjD,OAAO,CAAC,WAAW,CAAuD;IAE1E,OAAO,CAAC,SAAS,CAaf;gBAEiB,aAAa,EAAE,QAAQ,GAAG,UAAU;IAIvD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,WAAW;IAM3C,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM;IAMtC,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,QAAQ;IAYhB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,UAAU;IAKlB,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,iBAAiB,CAWxB;IAED,OAAO,CAAC,oBAAoB,CAO3B;IAED,OAAO,CAAC,aAAa;CAiCrB;AAGD,MAAM,WAAW,eAAe;IAC/B,YAAY,EAAE,OAAO,CAAA;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,iBAAiB,CAAC,IAAI,IAAI,CAAA;IAC1B,oBAAoB,CAAC,IAAI,IAAI,CAAA;IAC7B,eAAe,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CAC1D"} \ No newline at end of file diff --git a/package.json b/package.json index 7fe1096..ca72c29 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,6 @@ "typescript": "^5.0.0" }, "dependencies": { - "lowclass": "^7.0.0" + "lowclass": "^8.0.0" } } diff --git a/src/CustomAttributeRegistry.ts b/src/CustomAttributeRegistry.ts index 4408571..f3755d3 100644 --- a/src/CustomAttributeRegistry.ts +++ b/src/CustomAttributeRegistry.ts @@ -1,4 +1,4 @@ -import type {Constructor} from 'lowclass' +import type {Constructor} from 'lowclass/dist/Constructor.js' const forEach = Array.prototype.forEach