@momentum-design/components 0.131.4 → 0.131.5

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.
@@ -214,5 +214,13 @@ declare class Input extends Input_base implements AssociatedFormControl {
214
214
  protected renderInputElement(type: InputType, hidePlaceholder?: boolean): import("lit-html").TemplateResult<1>;
215
215
  render(): import("lit-html").TemplateResult<1>;
216
216
  static styles: Array<CSSResult>;
217
+ static shadowRootOptions: {
218
+ delegatesFocus: boolean;
219
+ clonable?: boolean;
220
+ customElementRegistry?: CustomElementRegistry;
221
+ mode: ShadowRootMode;
222
+ serializable?: boolean;
223
+ slotAssignment?: SlotAssignmentMode;
224
+ };
217
225
  }
218
226
  export default Input;
@@ -351,6 +351,7 @@ class Input extends KeyToActionMixin(AutoFocusOnMountMixin(FormInternalsMixin(Da
351
351
  }
352
352
  }
353
353
  Input.styles = [...FormfieldWrapper.styles, ...styles];
354
+ Input.shadowRootOptions = { ...FormfieldWrapper.shadowRootOptions, delegatesFocus: true };
354
355
  __decorate([
355
356
  property({ type: String }),
356
357
  __metadata("design:type", Object)
@@ -18089,6 +18089,15 @@
18089
18089
  "module": "utils/mixins/FormInternalsMixin.js"
18090
18090
  }
18091
18091
  },
18092
+ {
18093
+ "kind": "field",
18094
+ "name": "shadowRootOptions",
18095
+ "type": {
18096
+ "text": "object"
18097
+ },
18098
+ "static": true,
18099
+ "default": "{ ...FormfieldWrapper.shadowRootOptions, delegatesFocus: true }"
18100
+ },
18092
18101
  {
18093
18102
  "kind": "field",
18094
18103
  "name": "size",
@@ -30551,6 +30560,19 @@
30551
30560
  "module": "utils/mixins/FormInternalsMixin.js"
30552
30561
  }
30553
30562
  },
30563
+ {
30564
+ "kind": "field",
30565
+ "name": "shadowRootOptions",
30566
+ "type": {
30567
+ "text": "object"
30568
+ },
30569
+ "static": true,
30570
+ "default": "{ ...FormfieldWrapper.shadowRootOptions, delegatesFocus: true }",
30571
+ "inheritedFrom": {
30572
+ "name": "Input",
30573
+ "module": "components/input/input.component.js"
30574
+ }
30575
+ },
30554
30576
  {
30555
30577
  "kind": "field",
30556
30578
  "name": "showButtonAriaLabel",
@@ -36629,6 +36651,19 @@
36629
36651
  "module": "utils/mixins/FormInternalsMixin.js"
36630
36652
  }
36631
36653
  },
36654
+ {
36655
+ "kind": "field",
36656
+ "name": "shadowRootOptions",
36657
+ "type": {
36658
+ "text": "object"
36659
+ },
36660
+ "static": true,
36661
+ "default": "{ ...FormfieldWrapper.shadowRootOptions, delegatesFocus: true }",
36662
+ "inheritedFrom": {
36663
+ "name": "Input",
36664
+ "module": "components/input/input.component.js"
36665
+ }
36666
+ },
36632
36667
  {
36633
36668
  "kind": "field",
36634
36669
  "name": "size",
@@ -38195,6 +38230,19 @@
38195
38230
  "module": "utils/mixins/FormInternalsMixin.js"
38196
38231
  }
38197
38232
  },
38233
+ {
38234
+ "kind": "field",
38235
+ "name": "shadowRootOptions",
38236
+ "type": {
38237
+ "text": "object"
38238
+ },
38239
+ "static": true,
38240
+ "default": "{ ...FormfieldWrapper.shadowRootOptions, delegatesFocus: true }",
38241
+ "inheritedFrom": {
38242
+ "name": "Input",
38243
+ "module": "components/input/input.component.js"
38244
+ }
38245
+ },
38198
38246
  {
38199
38247
  "kind": "field",
38200
38248
  "name": "size",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momentum-design/components",
3
3
  "packageManager": "yarn@3.2.4",
4
- "version": "0.131.4",
4
+ "version": "0.131.5",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"