@peektravel/app-utilities 0.1.3 → 0.1.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.
package/dist/ui/index.cjs CHANGED
@@ -1266,6 +1266,14 @@ define("ody-two-column-main", OdyTwoColumnMain);
1266
1266
  define("ody-two-column-secondary", OdyTwoColumnSecondary);
1267
1267
  define("ody-two-column-secondary-header", OdyTwoColumnSecondaryHeader);
1268
1268
 
1269
+ // src/ui/components/page-container.ts
1270
+ var OdyPageContainer = class extends OdyElement {
1271
+ render() {
1272
+ this.mount(`<div class="ody-page-container" data-ody-slot></div>`);
1273
+ }
1274
+ };
1275
+ define("ody-page-container", OdyPageContainer);
1276
+
1269
1277
  // src/ui/components/collapsible-section.ts
1270
1278
  var OdyCollapsibleSection = class extends OdyElement {
1271
1279
  static observedAttributes = ["header-text", "secondary-header-text", "icon", "expanded"];
@@ -3883,6 +3891,7 @@ exports.OdyMessage = OdyMessage;
3883
3891
  exports.OdyModal = OdyModal;
3884
3892
  exports.OdyMoneyInput = OdyMoneyInput;
3885
3893
  exports.OdyOption = OdyOption;
3894
+ exports.OdyPageContainer = OdyPageContainer;
3886
3895
  exports.OdyPanel = OdyPanel;
3887
3896
  exports.OdyPercentageInput = OdyPercentageInput;
3888
3897
  exports.OdyPopover = OdyPopover;