@arcgis/lumina 4.31.0-next.94 → 4.31.0-next.96
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/jsx/jsx.d.ts +6 -2
- package/package.json +6 -6
package/dist/jsx/jsx.d.ts
CHANGED
|
@@ -378,8 +378,12 @@ export declare namespace LuminaJsx {
|
|
|
378
378
|
* This does not impact the typings we publish - at build time we have all the
|
|
379
379
|
* information and can generate the typings that expose only the actual
|
|
380
380
|
* properties component declared.
|
|
381
|
+
*
|
|
382
|
+
* @remarks
|
|
383
|
+
* Do not exclude "manager" and "componentOnReady" since these properties are
|
|
384
|
+
* available both on lazy and non-lazy instance.
|
|
381
385
|
*/
|
|
382
|
-
type ExcludedProperties = "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "el" | "
|
|
386
|
+
type ExcludedProperties = "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "el" | "listen" | "load" | "loaded" | "willUpdate" | "updated" | "render" | "renderOptions";
|
|
383
387
|
type ReMappedComponents<Components> = {
|
|
384
388
|
[Key in keyof Components]: Components[Key] extends {
|
|
385
389
|
el: unknown;
|
|
@@ -481,7 +485,7 @@ export declare namespace LuminaJsx {
|
|
|
481
485
|
*
|
|
482
486
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/click_event)
|
|
483
487
|
*/
|
|
484
|
-
onClick?: EventHandlerUnion<T,
|
|
488
|
+
onClick?: EventHandlerUnion<T, PointerEvent>;
|
|
485
489
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/compositionend_event) */
|
|
486
490
|
onCompositionEnd?: EventHandlerUnion<T, CompositionEvent>;
|
|
487
491
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/compositionstart_event) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina",
|
|
3
|
-
"version": "4.31.0-next.
|
|
3
|
+
"version": "4.31.0-next.96",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"clean": "rimraf ./dist ./build ./turbo ./node_modules"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@arcgis/components-controllers": "4.31.0-next.
|
|
33
|
-
"@arcgis/components-utils": "4.31.0-next.
|
|
32
|
+
"@arcgis/components-controllers": "4.31.0-next.96",
|
|
33
|
+
"@arcgis/components-utils": "4.31.0-next.96",
|
|
34
34
|
"@lit-labs/ssr": "^3.2.2",
|
|
35
35
|
"@lit-labs/ssr-client": "^1.1.7",
|
|
36
36
|
"csstype": "^3.1.3",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"tslib": "^2.7.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@arcgis/typescript-config": "4.31.0-next.
|
|
41
|
+
"@arcgis/typescript-config": "4.31.0-next.96",
|
|
42
42
|
"@types/node": "^20.2.5",
|
|
43
43
|
"eslint": "^8.55.0",
|
|
44
44
|
"rimraf": "^5.0.0",
|
|
45
|
-
"tsup": "^8.
|
|
45
|
+
"tsup": "^8.2.4",
|
|
46
46
|
"typescript": "~5.4.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "574b70bb276a6660cf8e84e1b9b2180f0d326c7d"
|
|
49
49
|
}
|