@momentum-design/components 0.64.0 → 0.65.0

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.
@@ -11,6 +11,10 @@ declare const List_base: import("../../utils/mixins/index.types").Constructor<im
11
11
  * @slot default - This is a default/unnamed slot
12
12
  */
13
13
  declare class List extends List_base {
14
+ /**
15
+ * @internal
16
+ * Get all listitem elements which are not disabled in the list.
17
+ */
14
18
  listItems: Array<HTMLElement>;
15
19
  /**
16
20
  * The header text of the list.
@@ -129,7 +129,7 @@ class List extends DataAriaLabelMixin(Component) {
129
129
  }
130
130
  List.styles = [...Component.styles, ...styles];
131
131
  __decorate([
132
- queryAssignedElements({ selector: LISTITEM_TAGNAME }),
132
+ queryAssignedElements({ selector: `${LISTITEM_TAGNAME}:not([disabled])` }),
133
133
  __metadata("design:type", Array)
134
134
  ], List.prototype, "listItems", void 0);
135
135
  __decorate([
@@ -12257,13 +12257,6 @@
12257
12257
  }
12258
12258
  ],
12259
12259
  "members": [
12260
- {
12261
- "kind": "field",
12262
- "name": "listItems",
12263
- "type": {
12264
- "text": "Array<HTMLElement>"
12265
- }
12266
- },
12267
12260
  {
12268
12261
  "kind": "field",
12269
12262
  "name": "headerText",
package/package.json CHANGED
@@ -39,5 +39,5 @@
39
39
  "lit": "^3.2.0",
40
40
  "uuid": "^11.0.5"
41
41
  },
42
- "version": "0.64.0"
42
+ "version": "0.65.0"
43
43
  }