@arcgis/lumina 4.33.0-next.105 → 4.33.0-next.107
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { C as Controller, s as setAmbientComponent, i as isPromise, e as setParentController, f as retrieveParentControllers, t as trackKey, r as retrieveComponent, g as createEventFactory } from "../Controller-CZ8Djohh.js";
|
|
2
2
|
import { G, h, l, j, c, o, k, n, m } from "../Controller-CZ8Djohh.js";
|
|
3
3
|
import { p as proxyExports } from "../proxyExports-CK5BLFLO.js";
|
|
4
|
+
import { isServer } from "lit";
|
|
4
5
|
import { observeAncestorsMutation, isEsriInternalEnv, getElementAttribute, getElementLocales, startLocaleObserver } from "@arcgis/components-utils";
|
|
5
6
|
const makeController = (constructor) => proxy(void 0, constructor);
|
|
6
7
|
const makeGenericController = (constructor) => (component) => proxy(
|
|
@@ -55,6 +56,9 @@ class AttributeWatchController extends Controller {
|
|
|
55
56
|
super();
|
|
56
57
|
this._attributes = _attributes;
|
|
57
58
|
this._callback = _callback;
|
|
59
|
+
if (isServer) {
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
58
62
|
this._observer = new MutationObserver((mutations) => {
|
|
59
63
|
mutations.forEach((mutation) => {
|
|
60
64
|
if (_attributes.includes(mutation.attributeName)) {
|
package/dist/hmrSupport.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as noShadowRoot, P as ProxyComponent } from "./utils-
|
|
1
|
+
import { n as noShadowRoot, P as ProxyComponent } from "./utils-CwiifsrO.js";
|
|
2
2
|
import { camelToKebab } from "@arcgis/components-utils";
|
|
3
3
|
function handleHmrUpdate(newModules) {
|
|
4
4
|
newModules.forEach((newModule) => {
|
package/dist/index.js
CHANGED
|
@@ -3,8 +3,8 @@ import { r as retrieveComponent, G as GenericController, k as keyTrackResolve, s
|
|
|
3
3
|
import { d } from "./Controller-CZ8Djohh.js";
|
|
4
4
|
import { state } from "@lit/reactive-element/decorators/state.js";
|
|
5
5
|
import { property as property$1 } from "@lit/reactive-element/decorators/property.js";
|
|
6
|
-
import { n as noShadowRoot, a as attachToAncestor } from "./utils-
|
|
7
|
-
import { m } from "./utils-
|
|
6
|
+
import { n as noShadowRoot, a as attachToAncestor } from "./utils-CwiifsrO.js";
|
|
7
|
+
import { m } from "./utils-CwiifsrO.js";
|
|
8
8
|
import { isEsriInternalEnv, safeCall, devToolsAwareTimeout, Deferred, camelToKebab, safeAsyncCall } from "@arcgis/components-utils";
|
|
9
9
|
import { nothing as nothing$1, LitElement as LitElement$1, isServer, noChange as noChange$1 } from "lit";
|
|
10
10
|
import { PropertyFlags } from "./config.js";
|
|
@@ -392,10 +392,9 @@ function patchLitElement(parentClass) {
|
|
|
392
392
|
devOnlyDetectIncorrectLazyUsages(parentClass);
|
|
393
393
|
}
|
|
394
394
|
}
|
|
395
|
-
const awaitTopLevelPolyfill = async (module) =>
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
};
|
|
395
|
+
const awaitTopLevelPolyfill = async (module) => await (module.default?.then(
|
|
396
|
+
(module2) => typeof module2 === "function" ? { a: module2 } : module2
|
|
397
|
+
) ?? module);
|
|
399
398
|
const noShadowRoot = {};
|
|
400
399
|
export {
|
|
401
400
|
ProxyComponent as P,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.107",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@arcgis/components-utils": "4.33.0-next.
|
|
25
|
+
"@arcgis/components-utils": "4.33.0-next.107",
|
|
26
26
|
"@lit-labs/ssr": "^3.2.2",
|
|
27
27
|
"@lit-labs/ssr-client": "^1.1.7",
|
|
28
28
|
"@lit/context": "^1.1.3",
|