@arcgis/lumina 4.32.0-next.24 → 4.32.0-next.26
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.
- package/dist/index.js +1 -1
- package/dist/jsx/jsx.d.ts +2 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -367,7 +367,7 @@ function createPrototypeProxy(tagName) {
|
|
|
367
367
|
return Object.create(HTMLElement.prototype);
|
|
368
368
|
}
|
|
369
369
|
}
|
|
370
|
-
Object.defineProperty(customElement, "prototype", customElementPrototype);
|
|
370
|
+
Object.defineProperty(customElement, "prototype", { value: customElementPrototype });
|
|
371
371
|
return customElementPrototype;
|
|
372
372
|
}
|
|
373
373
|
};
|
package/dist/jsx/jsx.d.ts
CHANGED
|
@@ -256,6 +256,7 @@ export interface ImportStencilElements {
|
|
|
256
256
|
export type ToEvents<Component> = GlobalEventTypes<MaybeEl<Component>> & {
|
|
257
257
|
[Key in keyof Component as ListenerToPayloadType<Component[Key]> extends CustomEvent ? Key : never]-?: ListenerToPayloadType<Component[Key]> & {
|
|
258
258
|
currentTarget: MaybeEl<Component>;
|
|
259
|
+
target: MaybeEl<Component>;
|
|
259
260
|
};
|
|
260
261
|
};
|
|
261
262
|
type MaybeEl<Component> = Component extends {
|
|
@@ -374,6 +375,7 @@ export declare namespace LuminaJsx {
|
|
|
374
375
|
emit: (...rest: never[]) => infer PayloadType;
|
|
375
376
|
} ? (event: PayloadType & {
|
|
376
377
|
currentTarget: Component["el"];
|
|
378
|
+
target: Component["el"];
|
|
377
379
|
}) => void : never;
|
|
378
380
|
};
|
|
379
381
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina",
|
|
3
|
-
"version": "4.32.0-next.
|
|
3
|
+
"version": "4.32.0-next.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
],
|
|
21
21
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@arcgis/components-controllers": "4.32.0-next.
|
|
24
|
-
"@arcgis/components-utils": "4.32.0-next.
|
|
23
|
+
"@arcgis/components-controllers": "4.32.0-next.26",
|
|
24
|
+
"@arcgis/components-utils": "4.32.0-next.26",
|
|
25
25
|
"@lit-labs/ssr": "^3.2.2",
|
|
26
26
|
"@lit-labs/ssr-client": "^1.1.7",
|
|
27
27
|
"@lit/context": "^1.1.3",
|