@saasquatch/mint-components 1.15.0-121 → 1.15.0-122

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.
@@ -1560,6 +1560,13 @@ const Hero = class {
1560
1560
  * @uiEnumNames ["Wrap", "Wrap Reverse"]
1561
1561
  */
1562
1562
  this.wrapDirection = "wrap";
1563
+ /**
1564
+ * Can only be used when two columns are present
1565
+ * @uiName Hide the column in mobile view
1566
+ * @uiEnum ["primary", "secondary", "null"]
1567
+ * @uiEnumNames ["Primary", "Secondary", "None"]
1568
+ */
1569
+ this.columnToHideInMobile = null;
1563
1570
  domContextHooks_module.h$1(this);
1564
1571
  }
1565
1572
  disconnectedCallback() { }
@@ -45,6 +45,13 @@ export class Hero {
45
45
  * @uiEnumNames ["Wrap", "Wrap Reverse"]
46
46
  */
47
47
  this.wrapDirection = "wrap";
48
+ /**
49
+ * Can only be used when two columns are present
50
+ * @uiName Hide the column in mobile view
51
+ * @uiEnum ["primary", "secondary", "null"]
52
+ * @uiEnumNames ["Primary", "Secondary", "None"]
53
+ */
54
+ this.columnToHideInMobile = null;
48
55
  withHooks(this);
49
56
  }
50
57
  disconnectedCallback() { }
@@ -215,7 +222,7 @@ export class Hero {
215
222
  "type": "string",
216
223
  "mutable": false,
217
224
  "complexType": {
218
- "original": "\"primary\" | \"secondary\"",
225
+ "original": "\"primary\" | \"secondary\" | null",
219
226
  "resolved": "\"primary\" | \"secondary\"",
220
227
  "references": {}
221
228
  },
@@ -225,11 +232,18 @@ export class Hero {
225
232
  "tags": [{
226
233
  "text": "Hide the column in mobile view",
227
234
  "name": "uiName"
235
+ }, {
236
+ "text": "[\"primary\", \"secondary\", \"null\"]",
237
+ "name": "uiEnum"
238
+ }, {
239
+ "text": "[\"Primary\", \"Secondary\", \"None\"]",
240
+ "name": "uiEnumNames"
228
241
  }],
229
242
  "text": "Can only be used when two columns are present"
230
243
  },
231
244
  "attribute": "column-to-hide-in-mobile",
232
- "reflect": false
245
+ "reflect": false,
246
+ "defaultValue": "null"
233
247
  }
234
248
  }; }
235
249
  }
@@ -1556,6 +1556,13 @@ const Hero = class {
1556
1556
  * @uiEnumNames ["Wrap", "Wrap Reverse"]
1557
1557
  */
1558
1558
  this.wrapDirection = "wrap";
1559
+ /**
1560
+ * Can only be used when two columns are present
1561
+ * @uiName Hide the column in mobile view
1562
+ * @uiEnum ["primary", "secondary", "null"]
1563
+ * @uiEnumNames ["Primary", "Secondary", "None"]
1564
+ */
1565
+ this.columnToHideInMobile = null;
1559
1566
  h(this);
1560
1567
  }
1561
1568
  disconnectedCallback() { }