@arcgis/lumina 5.2.0-next.11 → 5.2.0-next.110

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/LICENSE.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # Licensing
2
2
 
3
- COPYRIGHT © Esri
3
+ COPYRIGHT Esri
4
4
 
5
5
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
6
6
 
7
- This material is licensed for use under the [Esri Master License Agreement (MLA)](https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf), and is bound by the terms of that agreement.
7
+ This material is licensed for use under the Esri Master License Agreement (MLA), and is bound by the terms of that agreement.
8
8
  You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.
9
9
 
10
+ See use restrictions at https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf.
11
+
10
12
  For additional information, contact:
11
13
  Environmental Systems Research Institute, Inc.
12
14
  Attn: Contracts and Legal Services Department
package/README.md CHANGED
@@ -8,5 +8,5 @@ It is not intended to be used directly, but rather used as a dependency by other
8
8
 
9
9
  ## License
10
10
 
11
- This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.1/LICENSE.txt.
12
- For third party notices, see https://js.arcgis.com/5.1/third-party-notices.txt.
11
+ This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.2/LICENSE.txt.
12
+ For third party notices, see https://js.arcgis.com/5.2/third-party-notices.txt.
@@ -74,7 +74,7 @@ const use = async (value, watchExports) => {
74
74
  throw new Error(`The controller must implement watchExports method to support watching exports`);
75
75
  }
76
76
  const unsubscribe = controller.watchExports(
77
- (exports$1) => watchExports(exports$1, unsubscribe)
77
+ (exports) => watchExports(exports, unsubscribe)
78
78
  );
79
79
  }
80
80
  return controller.exports;
@@ -114,18 +114,18 @@ const bypassReadOnly = (callback) => {
114
114
  }
115
115
  };
116
116
  export {
117
- setAmbientComponent as a,
118
- setParentController as b,
119
- controllerSymbol as c,
120
- retrieveParentControllers as d,
121
- bypassReadOnly as e,
122
- isController as f,
117
+ setParentController as a,
118
+ retrieveParentControllers as b,
119
+ bypassReadOnly as c,
120
+ controllerSymbol as d,
121
+ isController as e,
122
+ setAmbientChildController as f,
123
123
  getControllersCount as g,
124
- setAmbientChildController as h,
124
+ shouldBypassReadOnly as h,
125
125
  isPromise as i,
126
126
  useRef as j,
127
127
  useRefSync as k,
128
128
  retrieveComponent as r,
129
- shouldBypassReadOnly as s,
129
+ setAmbientComponent as s,
130
130
  use as u
131
131
  };
@@ -1,8 +1,8 @@
1
1
  import { safeCall, isEsriInternalEnv } from "@arcgis/toolkit/error";
2
- import { G as GenericController, p as propertyTrackResolve } from "./GenericController-C8NSb50b.js";
2
+ import { G as GenericController, p as propertyTrackResolve } from "./GenericController-Ko6PTuJs.js";
3
3
  import { nothing, LitElement as LitElement$1 } from "lit";
4
4
  import { devToolsAwareTimeout } from "@arcgis/toolkit/promise";
5
- import { a as setAmbientComponent } from "./ControllerInternals-CeDntN3G.js";
5
+ import { a as setParentController, s as setAmbientComponent } from "./ControllerInternals-DBoubTn4.js";
6
6
  class ControllerManager extends GenericController {
7
7
  /**
8
8
  * @public
@@ -79,6 +79,7 @@ class ControllerManager extends GenericController {
79
79
  }
80
80
  });
81
81
  queueMicrotask(() => this.R = true);
82
+ setParentController(void 0);
82
83
  setAmbientComponent(component);
83
84
  }
84
85
  #autoDestroyTimeout;
@@ -88,7 +89,7 @@ class ControllerManager extends GenericController {
88
89
  * @privateRemarks
89
90
  * Keeping this method async needlessly for now to avoid a breaking change if
90
91
  * we would need to make it async in the future.
91
- * Related: https://devtopia.esri.com/WebGIS/arcgis-web-components/pull/15301#issuecomment-6321306
92
+ * Related: https://devtopia.esri.com/WebGIS/webgis-sdk/pull/15301#issuecomment-6321306
92
93
  */
93
94
  // eslint-disable-next-line @typescript-eslint/require-await
94
95
  async destroy() {
@@ -137,14 +138,14 @@ class ControllerManager extends GenericController {
137
138
  * Associate an exports object with a controller for reverse lookup in
138
139
  * controller.use
139
140
  */
140
- W(controller, exports$1) {
141
- if (typeof exports$1 === "object" && exports$1 !== null || typeof exports$1 === "function") {
142
- this.#exportsStore.set(exports$1, controller);
141
+ W(controller, exports) {
142
+ if (typeof exports === "object" && exports !== null || typeof exports === "function") {
143
+ this.#exportsStore.set(exports, controller);
143
144
  }
144
145
  }
145
- X(exports$1) {
146
- if (typeof exports$1 === "object" && exports$1 !== null || typeof exports$1 === "function") {
147
- return this.#exportsStore.get(exports$1);
146
+ X(exports) {
147
+ if (typeof exports === "object" && exports !== null || typeof exports === "function") {
148
+ return this.#exportsStore.get(exports);
148
149
  } else {
149
150
  return void 0;
150
151
  }
@@ -183,7 +184,7 @@ function setAutoDestroyOnDisconnectTimeout(timeout) {
183
184
  }
184
185
  export {
185
186
  ControllerManager as C,
186
- autoDestroyDisabledPropName as a,
187
- autoDestroyOnDisconnectTimeout as b,
187
+ autoDestroyOnDisconnectTimeout as a,
188
+ autoDestroyDisabledPropName as b,
188
189
  setAutoDestroyOnDisconnectTimeout as s
189
190
  };
@@ -1,5 +1,5 @@
1
1
  import { safeCall, isEsriInternalEnv, safeAsyncCall } from "@arcgis/toolkit/error";
2
- import { r as retrieveComponent, d as retrieveParentControllers, b as setParentController, a as setAmbientComponent, u as use, j as useRef, k as useRefSync, c as controllerSymbol } from "./ControllerInternals-CeDntN3G.js";
2
+ import { r as retrieveComponent, b as retrieveParentControllers, a as setParentController, s as setAmbientComponent, u as use, j as useRef, k as useRefSync, d as controllerSymbol } from "./ControllerInternals-DBoubTn4.js";
3
3
  import { nothing } from "lit";
4
4
  import { Deferred } from "@arcgis/toolkit/promise";
5
5
  import { rethrowError } from "@arcgis/toolkit/log";
@@ -217,19 +217,19 @@ class Controller {
217
217
  get exports() {
218
218
  return this.#exports;
219
219
  }
220
- set exports(exports$1) {
220
+ set exports(exports) {
221
221
  const oldExports = this.#exports;
222
- if (oldExports !== exports$1) {
223
- this.#exports = exports$1;
222
+ if (oldExports !== exports) {
223
+ this.#exports = exports;
224
224
  this.#exportWatchers.forEach(safeCall);
225
225
  if (this.connectedCalled && this.O !== false) {
226
226
  this.#component.requestUpdate(this.O, oldExports);
227
227
  }
228
228
  }
229
- this.P.resolve(exports$1);
229
+ this.P.resolve(exports);
230
230
  }
231
- setProvisionalExports(exports$1, proxy = true) {
232
- this.#exports = proxy ? makeProvisionalValue(exports$1) : exports$1;
231
+ setProvisionalExports(exports, proxy = true) {
232
+ this.#exports = proxy ? makeProvisionalValue(exports) : exports;
233
233
  this.#exportWatchers.forEach(safeCall);
234
234
  }
235
235
  #exportWatchers;
@@ -489,10 +489,10 @@ const GenericController = Controller;
489
489
  export {
490
490
  Controller as C,
491
491
  GenericController as G,
492
- createEventFactory as a,
493
- trackPropKey as b,
494
- createEvent as c,
492
+ trackKey as a,
493
+ createEvent as b,
494
+ createEventFactory as c,
495
495
  trackPropertyKey as d,
496
496
  propertyTrackResolve as p,
497
- trackKey as t
497
+ trackPropKey as t
498
498
  };
@@ -29,6 +29,9 @@ export class LitElement extends OriginalLitElement {
29
29
  static readonly lumina: true;
30
30
  /** @internal */
31
31
  constructor();
32
+ readonly "@cssParts": Record<never, HTMLElement | undefined>;
33
+ readonly "@cssStates": Record<never, boolean>;
34
+ readonly "@slots": Record<never, Node | Node[] | undefined>;
32
35
  /**
33
36
  * In lazy build, the actual DOM element differs from the class instance:
34
37
  * - "this.el" is a proxy custom element - it's physically present in the DOM
package/dist/context.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ContextConsumer, ContextProvider } from "@lit/context";
2
- import { r as retrieveComponent } from "./ControllerInternals-CeDntN3G.js";
2
+ import { r as retrieveComponent } from "./ControllerInternals-DBoubTn4.js";
3
3
  const useContextProvider = (options) => {
4
4
  const component = retrieveComponent();
5
5
  const controller = new ContextProvider(component.el, options);
@@ -1,8 +1,8 @@
1
1
  import { isEsriInternalEnv } from "@arcgis/toolkit/error";
2
- import { r as retrieveComponent } from "../../ControllerInternals-CeDntN3G.js";
2
+ import { r as retrieveComponent } from "../../ControllerInternals-DBoubTn4.js";
3
3
  import { on, watch } from "@arcgis/core/core/reactiveUtils.js";
4
- import { a as createEventFactory, G as GenericController, b as trackPropKey, t as trackKey } from "../../GenericController-C8NSb50b.js";
5
- import { p as proxyExports } from "../../proxyExports-ZRLty8oJ.js";
4
+ import { c as createEventFactory, G as GenericController, t as trackPropKey, a as trackKey } from "../../GenericController-Ko6PTuJs.js";
5
+ import { p as proxyExports } from "../../proxyExports-D-G9Eby6.js";
6
6
  import { createObservable, trackAccess } from "@arcgis/core/applications/Components/reactiveUtils.js";
7
7
  import { property, subclass } from "@arcgis/core/core/accessorSupport/decorators.js";
8
8
  import Accessor from "@arcgis/core/core/Accessor.js";
@@ -1,13 +1,13 @@
1
- import { C as Controller, c as createEvent, t as trackKey, a as createEventFactory } from "../GenericController-C8NSb50b.js";
2
- import { G, p, b, d } from "../GenericController-C8NSb50b.js";
3
- import { a as setAmbientComponent, i as isPromise, b as setParentController, d as retrieveParentControllers, r as retrieveComponent } from "../ControllerInternals-CeDntN3G.js";
4
- import { e, c, g, f } from "../ControllerInternals-CeDntN3G.js";
5
- import { p as proxyExports } from "../proxyExports-ZRLty8oJ.js";
1
+ import { C as Controller, b as createEvent, a as trackKey, c as createEventFactory } from "../GenericController-Ko6PTuJs.js";
2
+ import { G, p, t, d } from "../GenericController-Ko6PTuJs.js";
3
+ import { s as setAmbientComponent, i as isPromise, a as setParentController, b as retrieveParentControllers, r as retrieveComponent } from "../ControllerInternals-DBoubTn4.js";
4
+ import { c, d as d2, g, e } from "../ControllerInternals-DBoubTn4.js";
5
+ import { p as proxyExports } from "../proxyExports-D-G9Eby6.js";
6
6
  import { isServer } from "lit";
7
7
  import { isEsriInternalEnv } from "@arcgis/toolkit/error";
8
8
  import { observeAncestorsMutation, getElementAttribute } from "@arcgis/toolkit/dom";
9
- import { getElementLocale, startLocaleObserver } from "@arcgis/toolkit/intl";
10
- import { s as setAutoDestroyOnDisconnectTimeout, b as autoDestroyOnDisconnectTimeout } from "../ControllerManager-4cSEnB5Y.js";
9
+ import { getElementLocale, startLocaleObserver } from "@arcgis/toolkit/intl/dom";
10
+ import { s as setAutoDestroyOnDisconnectTimeout, a as autoDestroyOnDisconnectTimeout } from "../ControllerManager-CXEWZVTX.js";
11
11
  const makeController = (constructor) => proxy(void 0, constructor);
12
12
  const makeGenericController = (constructor) => (component) => proxy(
13
13
  component,
@@ -304,11 +304,11 @@ const exportsForTests = {
304
304
  export {
305
305
  Controller,
306
306
  G as GenericController,
307
- e as bypassReadOnly,
308
- c as controllerSymbol,
307
+ c as bypassReadOnly,
308
+ d2 as controllerSymbol,
309
309
  exportsForTests,
310
310
  g as getControllersCount,
311
- f as isController,
311
+ e as isController,
312
312
  load,
313
313
  makeController,
314
314
  makeGenericController,
@@ -318,7 +318,7 @@ export {
318
318
  retrieveComponent,
319
319
  toFunction,
320
320
  trackKey,
321
- b as trackPropKey,
321
+ t as trackPropKey,
322
322
  d as trackPropertyKey,
323
323
  useDirection,
324
324
  useMedia,
@@ -5,6 +5,6 @@ export type Direction = "ltr" | "rtl";
5
5
  * Watches for changes to "dir" and will re-render your component if needed.
6
6
  *
7
7
  * @see https://webgis.esri.com/references/lumina/controllers/useDirection
8
- * @see [Design decisions](https://devtopia.esri.com/WebGIS/arcgis-web-components/discussions/987)
8
+ * @see [Design decisions](https://devtopia.esri.com/WebGIS/webgis-sdk/discussions/987)
9
9
  */
10
10
  export function useDirection(): Direction;
@@ -1,4 +1,5 @@
1
- import type { GenericT9nStrings, LocaleObserverResult } from "@arcgis/toolkit/intl";
1
+ import type { GenericT9nStrings } from "@arcgis/toolkit/intl";
2
+ import type { LocaleObserverResult } from "@arcgis/toolkit/intl/dom";
2
3
 
3
4
  export type T9nMeta<T9nStrings extends GenericT9nStrings> = {
4
5
  _lang: LocaleObserverResult["lang"];
@@ -48,7 +49,7 @@ export interface UseT9n {
48
49
  *
49
50
  * @param getAssetPath
50
51
  * @see [Documentation](https://webgis.esri.com/references/lumina/controllers/useT9n)
51
- * @see [Design decisions 1](https://devtopia.esri.com/WebGIS/arcgis-web-components/discussions/969)
52
- * @see [Design decisions 2](https://devtopia.esri.com/WebGIS/arcgis-web-components/discussions/987)
52
+ * @see [Design decisions 1](https://devtopia.esri.com/WebGIS/webgis-sdk/discussions/969)
53
+ * @see [Design decisions 2](https://devtopia.esri.com/WebGIS/webgis-sdk/discussions/987)
53
54
  */
54
55
  export function makeT9nController(getAssetPath: (path: string) => string): UseT9n;
@@ -1,4 +1,4 @@
1
- import { P as ProxyComponent, n as noShadowRoot } from "./lazyLoad-B5Rj3U_I.js";
1
+ import { P as ProxyComponent, n as noShadowRoot } from "./lazyLoad-ki2r1z-R.js";
2
2
  import { camelToKebab } from "@arcgis/toolkit/string";
3
3
  function handleHmrUpdate(newModules) {
4
4
  newModules.forEach((newModule) => {
package/dist/index.js CHANGED
@@ -1,15 +1,15 @@
1
- import { p as propertyTrackResolve } from "./GenericController-C8NSb50b.js";
2
- import { c } from "./GenericController-C8NSb50b.js";
1
+ import { p as propertyTrackResolve } from "./GenericController-Ko6PTuJs.js";
2
+ import { b } from "./GenericController-Ko6PTuJs.js";
3
3
  import { state } from "lit/decorators/state.js";
4
4
  import { property as property$1 } from "lit/decorators/property.js";
5
- import { e as emptyFunction, n as noShadowRoot, p as proxyFormMethodsToEvents, a as attachToAncestor } from "./lazyLoad-B5Rj3U_I.js";
6
- import { d, m } from "./lazyLoad-B5Rj3U_I.js";
5
+ import { e as emptyFunction, n as noShadowRoot, p as proxyFormMethodsToEvents, a as attachToAncestor } from "./lazyLoad-ki2r1z-R.js";
6
+ import { d, m } from "./lazyLoad-ki2r1z-R.js";
7
7
  import { isEsriInternalEnv, safeAsyncCall, safeCall } from "@arcgis/toolkit/error";
8
8
  import { camelToKebab } from "@arcgis/toolkit/string";
9
9
  import { Deferred } from "@arcgis/toolkit/promise";
10
10
  import { LitElement as LitElement$1, isServer, notEqual, noChange as noChange$1, nothing as nothing$1, render } from "lit";
11
- import { c as controllerSymbol, s as shouldBypassReadOnly } from "./ControllerInternals-CeDntN3G.js";
12
- import { C as ControllerManager, a as autoDestroyDisabledPropName } from "./ControllerManager-4cSEnB5Y.js";
11
+ import { h as shouldBypassReadOnly, d as controllerSymbol } from "./ControllerInternals-DBoubTn4.js";
12
+ import { C as ControllerManager, b as autoDestroyDisabledPropName } from "./ControllerManager-CXEWZVTX.js";
13
13
  import { propertyFlagAttribute, propertyFlagUseDefault, propertyFlagNoAccessor, propertyFlagReadOnly, propertyFlagState, propertyFlagBoolean, propertyFlagNumber, propertyFlagReflect } from "./config.js";
14
14
  import { classMap } from "lit/directives/class-map.js";
15
15
  import { styleMap } from "lit/directives/style-map.js";
@@ -557,7 +557,7 @@ export {
557
557
  bindBooleanAttribute,
558
558
  bindEvent,
559
559
  bindProperty,
560
- c as createEvent,
560
+ b as createEvent,
561
561
  deferLoad,
562
562
  deferredLoaders,
563
563
  d as devOnly$getLitElementTagNameAndRuntime,
@@ -1,4 +1,4 @@
1
- import type { Properties as CssProperties } from "csstype";
1
+ import type { StandardProperties } from "csstype";
2
2
  import type { ClassInfo, ClassMapDirective } from "lit/directives/class-map.js";
3
3
  import type { DirectiveResult, DirectiveClass } from "lit/directive.js";
4
4
  import type { StyleMapDirective } from "lit/directives/style-map.js";
@@ -54,7 +54,7 @@ export function safeClassMap(parameters: ClassInfo | null | undefined | string):
54
54
  * @param parameters
55
55
  * @internal
56
56
  */
57
- export function safeStyleMap(parameters: CssProperties | null | undefined | string): DirectiveResult<typeof StyleMapDirective> | null | undefined | string;
57
+ export function safeStyleMap(parameters: null | undefined | StandardProperties | string): DirectiveResult<typeof StyleMapDirective> | null | undefined | string;
58
58
 
59
59
  /**
60
60
  * Do not use this directive directly. Use the `deferLoad` JSX prop instead.
@@ -3,7 +3,7 @@ import type { ClassInfo, ClassMapDirective } from "lit/directives/class-map.js";
3
3
  import type { StyleMapDirective } from "lit/directives/style-map.js";
4
4
  import type { ChangeEventHandlerUnion, CustomAttributes, EventHandlerUnion, FocusEventHandlerUnion, InputEventHandlerUnion } from "./baseTypes.js";
5
5
  import type { JsxNode } from "./types.js";
6
- import type { Properties as CssProperties } from "csstype";
6
+ import type { StandardProperties } from "csstype";
7
7
 
8
8
  export type HtmlAutocapitalize = "characters" | "none" | "off" | "on" | "sentences" | "words";
9
9
 
@@ -501,7 +501,7 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
501
501
  */
502
502
  spellcheck?: boolean;
503
503
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
504
- style?: CssProperties | DirectiveResult<typeof StyleMapDirective> | string;
504
+ style?: DirectiveResult<typeof StyleMapDirective> | StandardProperties | string;
505
505
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */
506
506
  tabIndex?: number | string;
507
507
  /**
@@ -2279,7 +2279,7 @@ export interface SvgCoreAttributes<T> extends AriaAttributes, DOMAttributes<T> {
2279
2279
  }
2280
2280
 
2281
2281
  export interface SvgStylableAttributes {
2282
- style?: CssProperties | DirectiveResult<typeof StyleMapDirective> | string;
2282
+ style?: DirectiveResult<typeof StyleMapDirective> | StandardProperties | string;
2283
2283
  }
2284
2284
 
2285
2285
  export interface SvgTransformableAttributes {
@@ -70,7 +70,8 @@ export declare namespace LuminaJsx {
70
70
  }
71
71
 
72
72
  export interface IntrinsicElements
73
- extends HTMLElementTags,
73
+ extends
74
+ HTMLElementTags,
74
75
  SvgElementTags,
75
76
  ReMappedComponents<DeclareElements>,
76
77
  ReMapStencilComponents<ImportStencilElements> {}
@@ -322,6 +323,14 @@ export type RemapEvents<Component extends { el: unknown; }> = {
322
323
  */
323
324
  export interface ImportStencilElements {}
324
325
 
326
+ /** @internal */
327
+ export interface DeclareCssProperties {}
328
+
329
+ /** @internal */
330
+ export type NormalizedDeclaredCssProperties = {
331
+ [key in keyof DeclareCssProperties]?: number | string;
332
+ };
333
+
325
334
  /**
326
335
  * Get the type of all events for a given component. Includes native DOM events
327
336
  * and custom events.
@@ -215,7 +215,7 @@ class ProxyComponent extends HtmlElement {
215
215
  /**
216
216
  * "$$" is our top-level await polyfill due to broken top-level await
217
217
  * support in Safari. Only applies in CDN build.
218
- * See https://devtopia.esri.com/WebGIS/arcgis-web-components/issues/3933
218
+ * See https://devtopia.esri.com/WebGIS/webgis-sdk/issues/3933
219
219
  * and https://bugs.webkit.org/show_bug.cgi?id=242740
220
220
  */
221
221
  await (module.default?.then(
@@ -408,9 +408,15 @@ const patchLitElement = (parentClass) => {
408
408
  const alreadyPatched = Object.hasOwn(litElementPrototype, "isConnected");
409
409
  if (!alreadyPatched) {
410
410
  litElementPrototype.setAttribute = function(qualifiedName, value) {
411
+ if (process.env.NODE_ENV !== "production" && isStaleHmrComponent(this)) {
412
+ return;
413
+ }
411
414
  elementPrototype.setAttribute.call(this.el, qualifiedName, value);
412
415
  };
413
416
  litElementPrototype.removeAttribute = function(qualifiedName) {
417
+ if (process.env.NODE_ENV !== "production" && isStaleHmrComponent(this)) {
418
+ return;
419
+ }
414
420
  elementPrototype.removeAttribute.call(this.el, qualifiedName);
415
421
  };
416
422
  litElementPrototype.hasAttribute = function(qualifiedName) {
@@ -426,6 +432,10 @@ const patchLitElement = (parentClass) => {
426
432
  devOnlyDetectIncorrectLazyUsages(parentClass);
427
433
  }
428
434
  };
435
+ function isStaleHmrComponent(component) {
436
+ const currentComponent = "$component" in component.el ? component.el.$component : void 0;
437
+ return isEsriInternalEnv() && currentComponent !== void 0 && currentComponent !== component;
438
+ }
429
439
  export {
430
440
  ProxyComponent as P,
431
441
  attachToAncestor as a,
@@ -1,5 +1,5 @@
1
- import { b as setParentController, h as setAmbientChildController, d as retrieveParentControllers, e as bypassReadOnly } from "./ControllerInternals-CeDntN3G.js";
2
- import { t as trackKey } from "./GenericController-C8NSb50b.js";
1
+ import { a as setParentController, f as setAmbientChildController, b as retrieveParentControllers, c as bypassReadOnly } from "./ControllerInternals-DBoubTn4.js";
2
+ import { a as trackKey } from "./GenericController-Ko6PTuJs.js";
3
3
  const proxyExports = (Class) => (...args) => {
4
4
  const ambientControllers = retrieveParentControllers();
5
5
  const instance = new Class(...args);
@@ -0,0 +1,8 @@
1
+ /**
2
+ * A helper for documenting the accepted syntax for a CSS property.
3
+ *
4
+ * @see https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@property/syntax
5
+ */
6
+ export type CssSyntax<Syntax extends CssSyntaxUnion, Multiplier extends "" | "#" | "+" = ""> = `<${Syntax}>${Multiplier}`;
7
+
8
+ export type CssSyntaxUnion = "absolute-size" | "alpha-value" | "angle-percentage" | "angle" | "axis" | "baseline-position" | "basic-shape" | "blend-mode" | "box-edge" | "calc-keyword" | "calc-sum" | "color-interpolation-method" | "color" | "content-distribution" | "content-position" | "corner-shape-value" | "custom-ident" | "dashed-function" | "dashed-ident" | "dimension" | "display-box" | "display-inside" | "display-internal" | "display-legacy" | "display-listitem" | "display-outside" | "easing-function" | "filter-function" | "flex" | "frequency-percentage" | "frequency" | "generic-family" | "gradient" | "hex-color" | "hue-interpolation-method" | "hue" | "ident" | "image" | "integer" | "length-percentage" | "length" | "line-style" | "line-width" | "named-color" | "number" | "overflow-position" | "overflow" | "percentage" | "position-area" | "position" | "ratio" | "relative-size" | "resolution" | "rule-list" | "self-position" | "shape" | "string" | "system-color" | "text-edge" | "time-percentage" | "time" | "timeline-range-name" | "transform-function" | "url";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/lumina",
3
- "version": "5.2.0-next.11",
3
+ "version": "5.2.0-next.110",
4
4
  "description": "Runtime for WebGIS SDK web components",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -24,6 +24,9 @@
24
24
  "./PublicLitElement": {
25
25
  "types": "./dist/PublicLitElement.d.ts"
26
26
  },
27
+ "./utils/cssSyntax": {
28
+ "types": "./dist/utils/cssSyntax.d.ts"
29
+ },
27
30
  "./controllers": "./dist/controllers/index.js",
28
31
  "./controllers/accessor": "./dist/controllers/accessor/index.js",
29
32
  "./package.json": "./package.json"
@@ -33,9 +36,9 @@
33
36
  ],
34
37
  "license": "SEE LICENSE IN LICENSE.md",
35
38
  "dependencies": {
39
+ "@arcgis/toolkit": "~5.2.0-next.110",
36
40
  "csstype": "^3.1.3",
37
- "tslib": "^2.8.1",
38
- "@arcgis/toolkit": "~5.2.0-next.11"
41
+ "tslib": "^2.8.1"
39
42
  },
40
43
  "peerDependencies": {
41
44
  "@lit/context": "^1.1.6",