@arcgis/lumina 5.1.0-next.93 → 5.1.0-next.95

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.
@@ -27,7 +27,7 @@ export interface DOMAttributes<T = HTMLElement> extends CustomAttributes<T>, Glo
27
27
  children?: JsxNode;
28
28
  class?: ClassInfo | DirectiveResult<typeof ClassMapDirective> | string;
29
29
  /**
30
- * The **`innerHTML`** property of the Element interface gets or sets the HTML or XML markup contained within the element.
30
+ * The **`innerHTML`** property of the Element interface gets or sets the HTML or XML markup contained within the element, omitting any shadow roots in both cases.
31
31
  *
32
32
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/innerHTML)
33
33
  */
@@ -38,7 +38,7 @@ export interface DOMAttributes<T = HTMLElement> extends CustomAttributes<T>, Glo
38
38
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/innerText)
39
39
  */
40
40
  innerText?: number | string;
41
- /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */
41
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent) */
42
42
  textContent?: number | string;
43
43
  }
44
44
  export interface GlobalEventHandlersCamelCase<T = HTMLElement> {
@@ -427,7 +427,7 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
427
427
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndexText) */
428
428
  ariaRowIndexText?: string;
429
429
  /**
430
- * The **`autocapitalize`** property of the HTMLElement interface represents the element's capitalization behavior for user input.
430
+ * The **`autocapitalize`** property of the HTMLElement interface represents the element's capitalization behavior for user input. It is available on all HTML elements, though it doesn't affect all of them, including:
431
431
  *
432
432
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize)
433
433
  */
@@ -443,7 +443,7 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
443
443
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/contentEditable) */
444
444
  contentEditable?: boolean | "inherit" | "plaintext-only";
445
445
  /**
446
- * The **`HTMLElement.dir`** property indicates the text writing directionality of the content of the current element.
446
+ * The **`HTMLElement.dir`** property indicates the text writing directionality of the content of the current element. It reflects the element's dir attribute.
447
447
  *
448
448
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir)
449
449
  */
@@ -458,19 +458,19 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
458
458
  enterKeyHint?: "done" | "enter" | "go" | "next" | "previous" | "search" | "send";
459
459
  exportParts?: string;
460
460
  /**
461
- * The HTMLElement property **`hidden`** reflects the value of the element's `hidden` attribute.
461
+ * The HTMLElement property **`hidden`** reflects the value of the element's hidden attribute.
462
462
  *
463
463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)
464
464
  */
465
465
  hidden?: boolean | "hidden" | "until-found";
466
466
  /**
467
- * The **`id`** property of the Element interface represents the element's identifier, reflecting the **`id`** global attribute.
467
+ * The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
468
468
  *
469
469
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/id)
470
470
  */
471
471
  id?: string;
472
472
  /**
473
- * The HTMLElement property **`inert`** reflects the value of the element's `inert` attribute.
473
+ * The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible.
474
474
  *
475
475
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inert)
476
476
  */
@@ -483,7 +483,7 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
483
483
  itemscope?: boolean;
484
484
  itemtype?: string;
485
485
  /**
486
- * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
486
+ * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag. It reflects the element's lang attribute; the xml:lang attribute does not affect this property.
487
487
  *
488
488
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
489
489
  */
@@ -491,13 +491,13 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
491
491
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */
492
492
  nonce?: string;
493
493
  /**
494
- * The **`part`** property of the Element interface represents the part identifier(s) of the element (i.e., set using the `part` attribute), returned as a DOMTokenList.
494
+ * The read-only **`part`** property of the Element interface contains a DOMTokenList object representing the part identifier(s) of the element. It reflects the element's part content attribute. These can be used to style parts of a shadow DOM, via the ::part pseudo-element.
495
495
  *
496
496
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part)
497
497
  */
498
498
  part?: string;
499
499
  /**
500
- * The **`popover`** property of the HTMLElement interface gets and sets an element's popover state via JavaScript (`'auto'`, `'hint'`, or `'manual'`), and can be used for feature detection.
500
+ * The **`popover`** property of the HTMLElement interface gets and sets an element's popover state via JavaScript ("auto", "hint", or "manual"), and can be used for feature detection.
501
501
  *
502
502
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/popover)
503
503
  */
@@ -509,7 +509,7 @@ export interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, DOMAttr
509
509
  */
510
510
  slot?: string;
511
511
  /**
512
- * The **`spellcheck`** property of the HTMLElement interface represents a boolean value that controls the spell-checking hint.
512
+ * The **`spellcheck`** property of the HTMLElement interface represents a boolean value that controls the spell-checking hint. It is available on all HTML elements, though it doesn't affect all of them.
513
513
  *
514
514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/spellcheck)
515
515
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/lumina",
3
- "version": "5.1.0-next.93",
3
+ "version": "5.1.0-next.95",
4
4
  "description": "Runtime for WebGIS SDK web components",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "csstype": "^3.1.3",
34
34
  "tslib": "^2.8.1",
35
- "@arcgis/toolkit": "~5.1.0-next.93"
35
+ "@arcgis/toolkit": "~5.1.0-next.95"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@lit/context": "^1.1.6",