@arcgis/lumina 4.31.0-next.86 → 4.31.0-next.88
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 +2 -1
- package/dist/jsx/jsx.d.ts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -296,7 +296,7 @@ var ProxyComponent = class extends HtmlElement {
|
|
|
296
296
|
this._litElement?.connectedCallback();
|
|
297
297
|
} else {
|
|
298
298
|
queueMicrotask(() => {
|
|
299
|
-
this._ancestorLoad
|
|
299
|
+
this._ancestorLoad = attachToAncestor(this, this);
|
|
300
300
|
});
|
|
301
301
|
}
|
|
302
302
|
}
|
|
@@ -642,6 +642,7 @@ var _LitElement = class _LitElement extends OriginalLitElement {
|
|
|
642
642
|
this._enableUpdating(true);
|
|
643
643
|
this.performUpdate();
|
|
644
644
|
this._postLoad.resolve();
|
|
645
|
+
await Promise.resolve();
|
|
645
646
|
const pendingChildren = this._offspring.filter((loaded) => !loaded.manager?.loadedCalled);
|
|
646
647
|
if (pendingChildren.length) {
|
|
647
648
|
await Promise.allSettled(pendingChildren.map(async (child) => await child.componentOnReady()));
|
package/dist/jsx/jsx.d.ts
CHANGED
|
@@ -892,7 +892,7 @@ export declare namespace LitJsx {
|
|
|
892
892
|
form?: string;
|
|
893
893
|
name?: string;
|
|
894
894
|
type?: "submit" | "reset" | "button";
|
|
895
|
-
value?: string;
|
|
895
|
+
value?: string | number;
|
|
896
896
|
formAction?: string;
|
|
897
897
|
formEnctype?: HTMLFormEncType;
|
|
898
898
|
formMethod?: HTMLFormMethod;
|
package/dist/runtime.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export type DevOnlyGlobalRuntime = typeof globalThis & {
|
|
|
98
98
|
};
|
|
99
99
|
/**
|
|
100
100
|
* Called from the component constructor when in development or test mode.
|
|
101
|
-
* Used primarily by
|
|
101
|
+
* Used primarily by mount to get a reference to the rendered component.
|
|
102
102
|
*/
|
|
103
103
|
export type DevOnlyGlobalComponentRefCallback = typeof globalThis & {
|
|
104
104
|
devOnly$luminaComponentRefCallback?: (component: LitElement) => void;
|
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.88",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -29,20 +29,20 @@
|
|
|
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.88",
|
|
33
|
+
"@arcgis/components-utils": "4.31.0-next.88",
|
|
34
34
|
"@lit-labs/ssr": "^3.2.2",
|
|
35
35
|
"@lit-labs/ssr-client": "^1.1.7",
|
|
36
36
|
"csstype": "^3.1.3",
|
|
37
37
|
"lit": "^3.1.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@arcgis/typescript-config": "4.31.0-next.
|
|
40
|
+
"@arcgis/typescript-config": "4.31.0-next.88",
|
|
41
41
|
"@types/node": "^20.2.5",
|
|
42
42
|
"eslint": "^8.55.0",
|
|
43
43
|
"rimraf": "^5.0.0",
|
|
44
44
|
"tsup": "^8.1.0",
|
|
45
45
|
"typescript": "~5.4.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "77e107714833be6b7bb67d8a77763e9f83899446"
|
|
48
48
|
}
|