@chekinapp/ui 0.0.55 → 0.0.56

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/index.cjs CHANGED
@@ -267,6 +267,7 @@ __export(index_exports, {
267
267
  CopyLinkButton: () => CopyLinkButton,
268
268
  CopyString: () => CopyString,
269
269
  CustomCheckboxDropdownGroup: () => CustomCheckboxDropdownGroup,
270
+ DEVICE_BREAKPOINTS: () => DEVICE_BREAKPOINTS,
270
271
  DataTable: () => DataTable,
271
272
  DatePicker: () => DatePicker,
272
273
  DateTableFilter: () => DateTableFilter,
@@ -14454,6 +14455,21 @@ function getNextEnabledIndex(options, startIndex, step) {
14454
14455
  }
14455
14456
  return -1;
14456
14457
  }
14458
+
14459
+ // src/lib/breakpoints.ts
14460
+ var DEVICE_BREAKPOINTS = {
14461
+ mobileS: "320px",
14462
+ mobileM: "375px",
14463
+ mobileL: "425px",
14464
+ tabletS: "640px",
14465
+ tablet: "768px",
14466
+ tabletL: "970px",
14467
+ laptop: "1024px",
14468
+ yFullHD: "1080px",
14469
+ laptopM: "1280px",
14470
+ laptopL: "1400px",
14471
+ desktop: "2560px"
14472
+ };
14457
14473
  // Annotate the CommonJS export names for ESM import in node:
14458
14474
  0 && (module.exports = {
14459
14475
  Accordion,
@@ -14503,6 +14519,7 @@ function getNextEnabledIndex(options, startIndex, step) {
14503
14519
  CopyLinkButton,
14504
14520
  CopyString,
14505
14521
  CustomCheckboxDropdownGroup,
14522
+ DEVICE_BREAKPOINTS,
14506
14523
  DataTable,
14507
14524
  DatePicker,
14508
14525
  DateTableFilter,