@preply/ds-web-lib 0.99.3 → 0.100.1

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.
Files changed (83) hide show
  1. package/dist/assets/Avatar.css +79 -79
  2. package/dist/assets/AvatarWithStatus.css +12 -12
  3. package/dist/assets/Badge.css +24 -24
  4. package/dist/assets/Box.css +171 -171
  5. package/dist/assets/Button.css +7 -7
  6. package/dist/assets/ButtonBase.css +245 -245
  7. package/dist/assets/Chips.css +16 -16
  8. package/dist/assets/FieldAdditionalText.css +6 -6
  9. package/dist/assets/FieldButton.css +8 -8
  10. package/dist/assets/FieldLabel.css +8 -8
  11. package/dist/assets/FieldLayout.css +29 -29
  12. package/dist/assets/FieldLayoutBase.css +4 -4
  13. package/dist/assets/Heading.css +100 -100
  14. package/dist/assets/Icon.css +14 -14
  15. package/dist/assets/LayoutFlexItem.css +14 -14
  16. package/dist/assets/Link.css +32 -32
  17. package/dist/assets/Loader.css +4 -4
  18. package/dist/assets/PreplyLogo.css +9 -9
  19. package/dist/assets/SelectFieldLayout.css +18 -18
  20. package/dist/assets/Spinner.css +26 -26
  21. package/dist/assets/Text.css +227 -227
  22. package/dist/assets/TextHighlighted.css +14 -14
  23. package/dist/assets/TextInline.css +5 -5
  24. package/dist/assets/Toast.css +12 -12
  25. package/dist/assets/align-self.css +25 -25
  26. package/dist/assets/color.css +39 -39
  27. package/dist/assets/index.css +16 -16
  28. package/dist/assets/layout-flex.css +100 -100
  29. package/dist/assets/layout-gap.css +135 -135
  30. package/dist/assets/layout-grid.css +100 -100
  31. package/dist/assets/layout-hide.css +49 -49
  32. package/dist/assets/layout-padding.css +531 -531
  33. package/dist/assets/text-accent.css +18 -18
  34. package/dist/assets/text-centered.css +13 -13
  35. package/dist/assets/text-weight.css +8 -8
  36. package/dist/components/Avatar/Avatar.js +74 -74
  37. package/dist/components/AvatarWithStatus/AvatarWithStatus.js +10 -10
  38. package/dist/components/Badge/Badge.js +1 -1
  39. package/dist/components/Box/Box.js +150 -150
  40. package/dist/components/Button/Button.js +1 -1
  41. package/dist/components/Chips/Chips.js +4 -4
  42. package/dist/components/FieldAdditionalText/FieldAdditionalText.js +3 -3
  43. package/dist/components/FieldButton/FieldButton.js +1 -1
  44. package/dist/components/FieldLayout/FieldLayout.js +7 -7
  45. package/dist/components/Heading/Heading.js +97 -97
  46. package/dist/components/Icon/Icon.js +10 -10
  47. package/dist/components/LayoutFlexItem/LayoutFlexItem.js +13 -13
  48. package/dist/components/Link/Link.js +18 -18
  49. package/dist/components/Loader/Loader.js +3 -3
  50. package/dist/components/PreplyLogo/PreplyLogo.js +2 -2
  51. package/dist/components/Text/Text.js +224 -224
  52. package/dist/components/TextHighlighted/TextHighlighted.js +11 -11
  53. package/dist/components/TextInline/TextInline.js +2 -2
  54. package/dist/components/Toast/Toast.js +5 -5
  55. package/dist/components/private/ButtonBase/ButtonBase.js +173 -173
  56. package/dist/components/private/FieldLabel/FieldLabel.js +5 -5
  57. package/dist/components/private/FieldLayoutBase/FieldLayoutBase.js +1 -1
  58. package/dist/components/private/Input/Checkbox.js +1 -1
  59. package/dist/components/private/Input/InputDate.js +1 -1
  60. package/dist/components/private/Input/InputNumber.js +1 -1
  61. package/dist/components/private/Input/InputPassword.js +1 -1
  62. package/dist/components/private/Input/InputText.js +1 -1
  63. package/dist/components/private/Input/InputTime.js +1 -1
  64. package/dist/components/private/Input/Radio.js +1 -1
  65. package/dist/components/private/Input/Select.js +1 -1
  66. package/dist/components/private/Input/Textarea.js +1 -1
  67. package/dist/components/private/SelectFieldLayout/SelectFieldLayout.js +8 -8
  68. package/dist/components/private/Spinner/Spinner.js +16 -16
  69. package/dist/index.module-B-whHMcH.js +27 -0
  70. package/dist/{layout-grid.module-DWaQUkej.js → layout-grid.module-DEhjGYxG.js} +97 -97
  71. package/dist/shared-styles/align-self/align-self.js +25 -25
  72. package/dist/shared-styles/color/color.js +38 -38
  73. package/dist/shared-styles/layout-flex/layout-flex.js +97 -97
  74. package/dist/shared-styles/layout-gap/layout-gap.js +133 -133
  75. package/dist/shared-styles/layout-grid/layout-grid.js +1 -1
  76. package/dist/shared-styles/layout-grid-responsive-columns/layout-grid-responsive-columns.js +1 -1
  77. package/dist/shared-styles/layout-hide/layout-hide.js +49 -49
  78. package/dist/shared-styles/layout-padding/layout-padding.js +529 -529
  79. package/dist/shared-styles/text-accent/text-accent.js +17 -17
  80. package/dist/shared-styles/text-centered/text-centered.js +13 -13
  81. package/dist/shared-styles/text-weight/text-weight.js +7 -7
  82. package/package.json +18 -18
  83. package/dist/index.module-47pKCoSZ.js +0 -27
@@ -4,105 +4,105 @@ import { getLayoutGapClassnames } from "../layout-gap/layout-gap.js";
4
4
  import { getLayoutHideClassnames } from "../layout-hide/layout-hide.js";
5
5
  import { getLayoutPaddingClassnames } from "../layout-padding/layout-padding.js";
6
6
  import { getLayoutRelativeClassnames } from "../layout-relative/layout-relative.js";
7
- import '../../assets/layout-flex.css';const LayoutFlex = "_LayoutFlex_1pygp_4";
7
+ import '../../assets/layout-flex.css';const LayoutFlex = "_LayoutFlex_1b3te_4";
8
8
  const styles = {
9
9
  LayoutFlex,
10
- "LayoutFlex--nowrap": "_LayoutFlex--nowrap_1pygp_15",
11
- "LayoutFlex--inline": "_LayoutFlex--inline_1pygp_18",
12
- "LayoutFlex--row-fwd": "_LayoutFlex--row-fwd_1pygp_21",
13
- "LayoutFlex--row-rev": "_LayoutFlex--row-rev_1pygp_24",
14
- "LayoutFlex--column-fwd": "_LayoutFlex--column-fwd_1pygp_27",
15
- "LayoutFlex--column-rev": "_LayoutFlex--column-rev_1pygp_30",
16
- "LayoutFlex--direction-column": "_LayoutFlex--direction-column_1pygp_33",
17
- "LayoutFlex--direction-column-reverse": "_LayoutFlex--direction-column-reverse_1pygp_36",
18
- "LayoutFlex--direction-row": "_LayoutFlex--direction-row_1pygp_39",
19
- "LayoutFlex--direction-row-reverse": "_LayoutFlex--direction-row-reverse_1pygp_42",
20
- "LayoutFlex--narrow-l--direction-column": "_LayoutFlex--narrow-l--direction-column_1pygp_46",
21
- "LayoutFlex--narrow-l--direction-column-reverse": "_LayoutFlex--narrow-l--direction-column-reverse_1pygp_49",
22
- "LayoutFlex--narrow-l--direction-row": "_LayoutFlex--narrow-l--direction-row_1pygp_52",
23
- "LayoutFlex--narrow-l--direction-row-reverse": "_LayoutFlex--narrow-l--direction-row-reverse_1pygp_55",
24
- "LayoutFlex--medium-s--direction-column": "_LayoutFlex--medium-s--direction-column_1pygp_60",
25
- "LayoutFlex--medium-s--direction-column-reverse": "_LayoutFlex--medium-s--direction-column-reverse_1pygp_63",
26
- "LayoutFlex--medium-s--direction-row": "_LayoutFlex--medium-s--direction-row_1pygp_66",
27
- "LayoutFlex--medium-s--direction-row-reverse": "_LayoutFlex--medium-s--direction-row-reverse_1pygp_69",
28
- "LayoutFlex--medium-l--direction-column": "_LayoutFlex--medium-l--direction-column_1pygp_74",
29
- "LayoutFlex--medium-l--direction-column-reverse": "_LayoutFlex--medium-l--direction-column-reverse_1pygp_77",
30
- "LayoutFlex--medium-l--direction-row": "_LayoutFlex--medium-l--direction-row_1pygp_80",
31
- "LayoutFlex--medium-l--direction-row-reverse": "_LayoutFlex--medium-l--direction-row-reverse_1pygp_83",
32
- "LayoutFlex--wide-s--direction-column": "_LayoutFlex--wide-s--direction-column_1pygp_88",
33
- "LayoutFlex--wide-s--direction-column-reverse": "_LayoutFlex--wide-s--direction-column-reverse_1pygp_91",
34
- "LayoutFlex--wide-s--direction-row": "_LayoutFlex--wide-s--direction-row_1pygp_94",
35
- "LayoutFlex--wide-s--direction-row-reverse": "_LayoutFlex--wide-s--direction-row-reverse_1pygp_97",
36
- "LayoutFlex--wide-l--direction-column": "_LayoutFlex--wide-l--direction-column_1pygp_102",
37
- "LayoutFlex--wide-l--direction-column-reverse": "_LayoutFlex--wide-l--direction-column-reverse_1pygp_105",
38
- "LayoutFlex--wide-l--direction-row": "_LayoutFlex--wide-l--direction-row_1pygp_108",
39
- "LayoutFlex--wide-l--direction-row-reverse": "_LayoutFlex--wide-l--direction-row-reverse_1pygp_111",
40
- "LayoutFlex--justify-content-center": "_LayoutFlex--justify-content-center_1pygp_115",
41
- "LayoutFlex--justify-content-start": "_LayoutFlex--justify-content-start_1pygp_118",
42
- "LayoutFlex--justify-content-end": "_LayoutFlex--justify-content-end_1pygp_121",
43
- "LayoutFlex--justify-content-space-between": "_LayoutFlex--justify-content-space-between_1pygp_124",
44
- "LayoutFlex--justify-content-space-around": "_LayoutFlex--justify-content-space-around_1pygp_127",
45
- "LayoutFlex--justify-content-space-evenly": "_LayoutFlex--justify-content-space-evenly_1pygp_130",
46
- "LayoutFlex--narrow-l--justify-content-center": "_LayoutFlex--narrow-l--justify-content-center_1pygp_134",
47
- "LayoutFlex--narrow-l--justify-content-start": "_LayoutFlex--narrow-l--justify-content-start_1pygp_137",
48
- "LayoutFlex--narrow-l--justify-content-end": "_LayoutFlex--narrow-l--justify-content-end_1pygp_140",
49
- "LayoutFlex--narrow-l--justify-content-space-between": "_LayoutFlex--narrow-l--justify-content-space-between_1pygp_143",
50
- "LayoutFlex--narrow-l--justify-content-space-around": "_LayoutFlex--narrow-l--justify-content-space-around_1pygp_146",
51
- "LayoutFlex--narrow-l--justify-content-space-evenly": "_LayoutFlex--narrow-l--justify-content-space-evenly_1pygp_149",
52
- "LayoutFlex--medium-s--justify-content-center": "_LayoutFlex--medium-s--justify-content-center_1pygp_154",
53
- "LayoutFlex--medium-s--justify-content-start": "_LayoutFlex--medium-s--justify-content-start_1pygp_157",
54
- "LayoutFlex--medium-s--justify-content-end": "_LayoutFlex--medium-s--justify-content-end_1pygp_160",
55
- "LayoutFlex--medium-s--justify-content-space-between": "_LayoutFlex--medium-s--justify-content-space-between_1pygp_163",
56
- "LayoutFlex--medium-s--justify-content-space-around": "_LayoutFlex--medium-s--justify-content-space-around_1pygp_166",
57
- "LayoutFlex--medium-s--justify-content-space-evenly": "_LayoutFlex--medium-s--justify-content-space-evenly_1pygp_169",
58
- "LayoutFlex--medium-l--justify-content-center": "_LayoutFlex--medium-l--justify-content-center_1pygp_174",
59
- "LayoutFlex--medium-l--justify-content-start": "_LayoutFlex--medium-l--justify-content-start_1pygp_177",
60
- "LayoutFlex--medium-l--justify-content-end": "_LayoutFlex--medium-l--justify-content-end_1pygp_180",
61
- "LayoutFlex--medium-l--justify-content-space-between": "_LayoutFlex--medium-l--justify-content-space-between_1pygp_183",
62
- "LayoutFlex--medium-l--justify-content-space-around": "_LayoutFlex--medium-l--justify-content-space-around_1pygp_186",
63
- "LayoutFlex--medium-l--justify-content-space-evenly": "_LayoutFlex--medium-l--justify-content-space-evenly_1pygp_189",
64
- "LayoutFlex--wide-s--justify-content-center": "_LayoutFlex--wide-s--justify-content-center_1pygp_194",
65
- "LayoutFlex--wide-s--justify-content-start": "_LayoutFlex--wide-s--justify-content-start_1pygp_197",
66
- "LayoutFlex--wide-s--justify-content-end": "_LayoutFlex--wide-s--justify-content-end_1pygp_200",
67
- "LayoutFlex--wide-s--justify-content-space-between": "_LayoutFlex--wide-s--justify-content-space-between_1pygp_203",
68
- "LayoutFlex--wide-s--justify-content-space-around": "_LayoutFlex--wide-s--justify-content-space-around_1pygp_206",
69
- "LayoutFlex--wide-s--justify-content-space-evenly": "_LayoutFlex--wide-s--justify-content-space-evenly_1pygp_209",
70
- "LayoutFlex--wide-l--justify-content-center": "_LayoutFlex--wide-l--justify-content-center_1pygp_214",
71
- "LayoutFlex--wide-l--justify-content-start": "_LayoutFlex--wide-l--justify-content-start_1pygp_217",
72
- "LayoutFlex--wide-l--justify-content-end": "_LayoutFlex--wide-l--justify-content-end_1pygp_220",
73
- "LayoutFlex--wide-l--justify-content-space-between": "_LayoutFlex--wide-l--justify-content-space-between_1pygp_223",
74
- "LayoutFlex--wide-l--justify-content-space-around": "_LayoutFlex--wide-l--justify-content-space-around_1pygp_226",
75
- "LayoutFlex--wide-l--justify-content-space-evenly": "_LayoutFlex--wide-l--justify-content-space-evenly_1pygp_229",
76
- "LayoutFlex--align-items-center": "_LayoutFlex--align-items-center_1pygp_233",
77
- "LayoutFlex--align-items-start": "_LayoutFlex--align-items-start_1pygp_236",
78
- "LayoutFlex--align-items-end": "_LayoutFlex--align-items-end_1pygp_239",
79
- "LayoutFlex--align-items-stretch": "_LayoutFlex--align-items-stretch_1pygp_242",
80
- "LayoutFlex--align-items-baseline": "_LayoutFlex--align-items-baseline_1pygp_245",
81
- "LayoutFlex--narrow-l--align-items-center": "_LayoutFlex--narrow-l--align-items-center_1pygp_249",
82
- "LayoutFlex--narrow-l--align-items-start": "_LayoutFlex--narrow-l--align-items-start_1pygp_252",
83
- "LayoutFlex--narrow-l--align-items-end": "_LayoutFlex--narrow-l--align-items-end_1pygp_255",
84
- "LayoutFlex--narrow-l--align-items-stretch": "_LayoutFlex--narrow-l--align-items-stretch_1pygp_258",
85
- "LayoutFlex--narrow-l--align-items-baseline": "_LayoutFlex--narrow-l--align-items-baseline_1pygp_261",
86
- "LayoutFlex--medium-s--align-items-center": "_LayoutFlex--medium-s--align-items-center_1pygp_266",
87
- "LayoutFlex--medium-s--align-items-start": "_LayoutFlex--medium-s--align-items-start_1pygp_269",
88
- "LayoutFlex--medium-s--align-items-end": "_LayoutFlex--medium-s--align-items-end_1pygp_272",
89
- "LayoutFlex--medium-s--align-items-stretch": "_LayoutFlex--medium-s--align-items-stretch_1pygp_275",
90
- "LayoutFlex--medium-s--align-items-baseline": "_LayoutFlex--medium-s--align-items-baseline_1pygp_278",
91
- "LayoutFlex--medium-l--align-items-center": "_LayoutFlex--medium-l--align-items-center_1pygp_283",
92
- "LayoutFlex--medium-l--align-items-start": "_LayoutFlex--medium-l--align-items-start_1pygp_286",
93
- "LayoutFlex--medium-l--align-items-end": "_LayoutFlex--medium-l--align-items-end_1pygp_289",
94
- "LayoutFlex--medium-l--align-items-stretch": "_LayoutFlex--medium-l--align-items-stretch_1pygp_292",
95
- "LayoutFlex--medium-l--align-items-baseline": "_LayoutFlex--medium-l--align-items-baseline_1pygp_295",
96
- "LayoutFlex--wide-s--align-items-center": "_LayoutFlex--wide-s--align-items-center_1pygp_300",
97
- "LayoutFlex--wide-s--align-items-start": "_LayoutFlex--wide-s--align-items-start_1pygp_303",
98
- "LayoutFlex--wide-s--align-items-end": "_LayoutFlex--wide-s--align-items-end_1pygp_306",
99
- "LayoutFlex--wide-s--align-items-stretch": "_LayoutFlex--wide-s--align-items-stretch_1pygp_309",
100
- "LayoutFlex--wide-s--align-items-baseline": "_LayoutFlex--wide-s--align-items-baseline_1pygp_312",
101
- "LayoutFlex--wide-l--align-items-center": "_LayoutFlex--wide-l--align-items-center_1pygp_317",
102
- "LayoutFlex--wide-l--align-items-start": "_LayoutFlex--wide-l--align-items-start_1pygp_320",
103
- "LayoutFlex--wide-l--align-items-end": "_LayoutFlex--wide-l--align-items-end_1pygp_323",
104
- "LayoutFlex--wide-l--align-items-stretch": "_LayoutFlex--wide-l--align-items-stretch_1pygp_326",
105
- "LayoutFlex--wide-l--align-items-baseline": "_LayoutFlex--wide-l--align-items-baseline_1pygp_329"
10
+ "LayoutFlex--nowrap": "_LayoutFlex--nowrap_1b3te_15",
11
+ "LayoutFlex--inline": "_LayoutFlex--inline_1b3te_18",
12
+ "LayoutFlex--row-fwd": "_LayoutFlex--row-fwd_1b3te_21",
13
+ "LayoutFlex--row-rev": "_LayoutFlex--row-rev_1b3te_24",
14
+ "LayoutFlex--column-fwd": "_LayoutFlex--column-fwd_1b3te_27",
15
+ "LayoutFlex--column-rev": "_LayoutFlex--column-rev_1b3te_30",
16
+ "LayoutFlex--direction-column": "_LayoutFlex--direction-column_1b3te_33",
17
+ "LayoutFlex--direction-column-reverse": "_LayoutFlex--direction-column-reverse_1b3te_36",
18
+ "LayoutFlex--direction-row": "_LayoutFlex--direction-row_1b3te_39",
19
+ "LayoutFlex--direction-row-reverse": "_LayoutFlex--direction-row-reverse_1b3te_42",
20
+ "LayoutFlex--narrow-l--direction-column": "_LayoutFlex--narrow-l--direction-column_1b3te_46",
21
+ "LayoutFlex--narrow-l--direction-column-reverse": "_LayoutFlex--narrow-l--direction-column-reverse_1b3te_49",
22
+ "LayoutFlex--narrow-l--direction-row": "_LayoutFlex--narrow-l--direction-row_1b3te_52",
23
+ "LayoutFlex--narrow-l--direction-row-reverse": "_LayoutFlex--narrow-l--direction-row-reverse_1b3te_55",
24
+ "LayoutFlex--medium-s--direction-column": "_LayoutFlex--medium-s--direction-column_1b3te_60",
25
+ "LayoutFlex--medium-s--direction-column-reverse": "_LayoutFlex--medium-s--direction-column-reverse_1b3te_63",
26
+ "LayoutFlex--medium-s--direction-row": "_LayoutFlex--medium-s--direction-row_1b3te_66",
27
+ "LayoutFlex--medium-s--direction-row-reverse": "_LayoutFlex--medium-s--direction-row-reverse_1b3te_69",
28
+ "LayoutFlex--medium-l--direction-column": "_LayoutFlex--medium-l--direction-column_1b3te_74",
29
+ "LayoutFlex--medium-l--direction-column-reverse": "_LayoutFlex--medium-l--direction-column-reverse_1b3te_77",
30
+ "LayoutFlex--medium-l--direction-row": "_LayoutFlex--medium-l--direction-row_1b3te_80",
31
+ "LayoutFlex--medium-l--direction-row-reverse": "_LayoutFlex--medium-l--direction-row-reverse_1b3te_83",
32
+ "LayoutFlex--wide-s--direction-column": "_LayoutFlex--wide-s--direction-column_1b3te_88",
33
+ "LayoutFlex--wide-s--direction-column-reverse": "_LayoutFlex--wide-s--direction-column-reverse_1b3te_91",
34
+ "LayoutFlex--wide-s--direction-row": "_LayoutFlex--wide-s--direction-row_1b3te_94",
35
+ "LayoutFlex--wide-s--direction-row-reverse": "_LayoutFlex--wide-s--direction-row-reverse_1b3te_97",
36
+ "LayoutFlex--wide-l--direction-column": "_LayoutFlex--wide-l--direction-column_1b3te_102",
37
+ "LayoutFlex--wide-l--direction-column-reverse": "_LayoutFlex--wide-l--direction-column-reverse_1b3te_105",
38
+ "LayoutFlex--wide-l--direction-row": "_LayoutFlex--wide-l--direction-row_1b3te_108",
39
+ "LayoutFlex--wide-l--direction-row-reverse": "_LayoutFlex--wide-l--direction-row-reverse_1b3te_111",
40
+ "LayoutFlex--justify-content-center": "_LayoutFlex--justify-content-center_1b3te_115",
41
+ "LayoutFlex--justify-content-start": "_LayoutFlex--justify-content-start_1b3te_118",
42
+ "LayoutFlex--justify-content-end": "_LayoutFlex--justify-content-end_1b3te_121",
43
+ "LayoutFlex--justify-content-space-between": "_LayoutFlex--justify-content-space-between_1b3te_124",
44
+ "LayoutFlex--justify-content-space-around": "_LayoutFlex--justify-content-space-around_1b3te_127",
45
+ "LayoutFlex--justify-content-space-evenly": "_LayoutFlex--justify-content-space-evenly_1b3te_130",
46
+ "LayoutFlex--narrow-l--justify-content-center": "_LayoutFlex--narrow-l--justify-content-center_1b3te_134",
47
+ "LayoutFlex--narrow-l--justify-content-start": "_LayoutFlex--narrow-l--justify-content-start_1b3te_137",
48
+ "LayoutFlex--narrow-l--justify-content-end": "_LayoutFlex--narrow-l--justify-content-end_1b3te_140",
49
+ "LayoutFlex--narrow-l--justify-content-space-between": "_LayoutFlex--narrow-l--justify-content-space-between_1b3te_143",
50
+ "LayoutFlex--narrow-l--justify-content-space-around": "_LayoutFlex--narrow-l--justify-content-space-around_1b3te_146",
51
+ "LayoutFlex--narrow-l--justify-content-space-evenly": "_LayoutFlex--narrow-l--justify-content-space-evenly_1b3te_149",
52
+ "LayoutFlex--medium-s--justify-content-center": "_LayoutFlex--medium-s--justify-content-center_1b3te_154",
53
+ "LayoutFlex--medium-s--justify-content-start": "_LayoutFlex--medium-s--justify-content-start_1b3te_157",
54
+ "LayoutFlex--medium-s--justify-content-end": "_LayoutFlex--medium-s--justify-content-end_1b3te_160",
55
+ "LayoutFlex--medium-s--justify-content-space-between": "_LayoutFlex--medium-s--justify-content-space-between_1b3te_163",
56
+ "LayoutFlex--medium-s--justify-content-space-around": "_LayoutFlex--medium-s--justify-content-space-around_1b3te_166",
57
+ "LayoutFlex--medium-s--justify-content-space-evenly": "_LayoutFlex--medium-s--justify-content-space-evenly_1b3te_169",
58
+ "LayoutFlex--medium-l--justify-content-center": "_LayoutFlex--medium-l--justify-content-center_1b3te_174",
59
+ "LayoutFlex--medium-l--justify-content-start": "_LayoutFlex--medium-l--justify-content-start_1b3te_177",
60
+ "LayoutFlex--medium-l--justify-content-end": "_LayoutFlex--medium-l--justify-content-end_1b3te_180",
61
+ "LayoutFlex--medium-l--justify-content-space-between": "_LayoutFlex--medium-l--justify-content-space-between_1b3te_183",
62
+ "LayoutFlex--medium-l--justify-content-space-around": "_LayoutFlex--medium-l--justify-content-space-around_1b3te_186",
63
+ "LayoutFlex--medium-l--justify-content-space-evenly": "_LayoutFlex--medium-l--justify-content-space-evenly_1b3te_189",
64
+ "LayoutFlex--wide-s--justify-content-center": "_LayoutFlex--wide-s--justify-content-center_1b3te_194",
65
+ "LayoutFlex--wide-s--justify-content-start": "_LayoutFlex--wide-s--justify-content-start_1b3te_197",
66
+ "LayoutFlex--wide-s--justify-content-end": "_LayoutFlex--wide-s--justify-content-end_1b3te_200",
67
+ "LayoutFlex--wide-s--justify-content-space-between": "_LayoutFlex--wide-s--justify-content-space-between_1b3te_203",
68
+ "LayoutFlex--wide-s--justify-content-space-around": "_LayoutFlex--wide-s--justify-content-space-around_1b3te_206",
69
+ "LayoutFlex--wide-s--justify-content-space-evenly": "_LayoutFlex--wide-s--justify-content-space-evenly_1b3te_209",
70
+ "LayoutFlex--wide-l--justify-content-center": "_LayoutFlex--wide-l--justify-content-center_1b3te_214",
71
+ "LayoutFlex--wide-l--justify-content-start": "_LayoutFlex--wide-l--justify-content-start_1b3te_217",
72
+ "LayoutFlex--wide-l--justify-content-end": "_LayoutFlex--wide-l--justify-content-end_1b3te_220",
73
+ "LayoutFlex--wide-l--justify-content-space-between": "_LayoutFlex--wide-l--justify-content-space-between_1b3te_223",
74
+ "LayoutFlex--wide-l--justify-content-space-around": "_LayoutFlex--wide-l--justify-content-space-around_1b3te_226",
75
+ "LayoutFlex--wide-l--justify-content-space-evenly": "_LayoutFlex--wide-l--justify-content-space-evenly_1b3te_229",
76
+ "LayoutFlex--align-items-center": "_LayoutFlex--align-items-center_1b3te_233",
77
+ "LayoutFlex--align-items-start": "_LayoutFlex--align-items-start_1b3te_236",
78
+ "LayoutFlex--align-items-end": "_LayoutFlex--align-items-end_1b3te_239",
79
+ "LayoutFlex--align-items-stretch": "_LayoutFlex--align-items-stretch_1b3te_242",
80
+ "LayoutFlex--align-items-baseline": "_LayoutFlex--align-items-baseline_1b3te_245",
81
+ "LayoutFlex--narrow-l--align-items-center": "_LayoutFlex--narrow-l--align-items-center_1b3te_249",
82
+ "LayoutFlex--narrow-l--align-items-start": "_LayoutFlex--narrow-l--align-items-start_1b3te_252",
83
+ "LayoutFlex--narrow-l--align-items-end": "_LayoutFlex--narrow-l--align-items-end_1b3te_255",
84
+ "LayoutFlex--narrow-l--align-items-stretch": "_LayoutFlex--narrow-l--align-items-stretch_1b3te_258",
85
+ "LayoutFlex--narrow-l--align-items-baseline": "_LayoutFlex--narrow-l--align-items-baseline_1b3te_261",
86
+ "LayoutFlex--medium-s--align-items-center": "_LayoutFlex--medium-s--align-items-center_1b3te_266",
87
+ "LayoutFlex--medium-s--align-items-start": "_LayoutFlex--medium-s--align-items-start_1b3te_269",
88
+ "LayoutFlex--medium-s--align-items-end": "_LayoutFlex--medium-s--align-items-end_1b3te_272",
89
+ "LayoutFlex--medium-s--align-items-stretch": "_LayoutFlex--medium-s--align-items-stretch_1b3te_275",
90
+ "LayoutFlex--medium-s--align-items-baseline": "_LayoutFlex--medium-s--align-items-baseline_1b3te_278",
91
+ "LayoutFlex--medium-l--align-items-center": "_LayoutFlex--medium-l--align-items-center_1b3te_283",
92
+ "LayoutFlex--medium-l--align-items-start": "_LayoutFlex--medium-l--align-items-start_1b3te_286",
93
+ "LayoutFlex--medium-l--align-items-end": "_LayoutFlex--medium-l--align-items-end_1b3te_289",
94
+ "LayoutFlex--medium-l--align-items-stretch": "_LayoutFlex--medium-l--align-items-stretch_1b3te_292",
95
+ "LayoutFlex--medium-l--align-items-baseline": "_LayoutFlex--medium-l--align-items-baseline_1b3te_295",
96
+ "LayoutFlex--wide-s--align-items-center": "_LayoutFlex--wide-s--align-items-center_1b3te_300",
97
+ "LayoutFlex--wide-s--align-items-start": "_LayoutFlex--wide-s--align-items-start_1b3te_303",
98
+ "LayoutFlex--wide-s--align-items-end": "_LayoutFlex--wide-s--align-items-end_1b3te_306",
99
+ "LayoutFlex--wide-s--align-items-stretch": "_LayoutFlex--wide-s--align-items-stretch_1b3te_309",
100
+ "LayoutFlex--wide-s--align-items-baseline": "_LayoutFlex--wide-s--align-items-baseline_1b3te_312",
101
+ "LayoutFlex--wide-l--align-items-center": "_LayoutFlex--wide-l--align-items-center_1b3te_317",
102
+ "LayoutFlex--wide-l--align-items-start": "_LayoutFlex--wide-l--align-items-start_1b3te_320",
103
+ "LayoutFlex--wide-l--align-items-end": "_LayoutFlex--wide-l--align-items-end_1b3te_323",
104
+ "LayoutFlex--wide-l--align-items-stretch": "_LayoutFlex--wide-l--align-items-stretch_1b3te_326",
105
+ "LayoutFlex--wide-l--align-items-baseline": "_LayoutFlex--wide-l--align-items-baseline_1b3te_329"
106
106
  };
107
107
  const LAYOUT_FLEX = "LayoutFlex";
108
108
  const getLayoutFlexClassNames = (layout, props) => {
@@ -1,139 +1,139 @@
1
1
  import { moduleClassNames, stringClassNames } from "@preply/ds-web-core";
2
- import '../../assets/layout-gap.css';const LayoutGap = "_LayoutGap_1q8iy_4";
2
+ import '../../assets/layout-gap.css';const LayoutGap = "_LayoutGap_1d8xh_4";
3
3
  const styles = {
4
4
  LayoutGap,
5
- "LayoutGap--gap-none": "_LayoutGap--gap-none_1q8iy_4",
6
- "LayoutGap--gap-3xs": "_LayoutGap--gap-3xs_1q8iy_7",
7
- "LayoutGap--gap-2xs": "_LayoutGap--gap-2xs_1q8iy_10",
8
- "LayoutGap--gap-xs": "_LayoutGap--gap-xs_1q8iy_13",
9
- "LayoutGap--gap-s": "_LayoutGap--gap-s_1q8iy_16",
10
- "LayoutGap--gap-m": "_LayoutGap--gap-m_1q8iy_19",
11
- "LayoutGap--gap-l": "_LayoutGap--gap-l_1q8iy_22",
12
- "LayoutGap--gap-xl": "_LayoutGap--gap-xl_1q8iy_25",
13
- "LayoutGap--gap-0": "_LayoutGap--gap-0_1q8iy_28",
14
- "LayoutGap--gap-1": "_LayoutGap--gap-1_1q8iy_31",
15
- "LayoutGap--gap-2": "_LayoutGap--gap-2_1q8iy_10",
16
- "LayoutGap--gap-4": "_LayoutGap--gap-4_1q8iy_37",
17
- "LayoutGap--gap-8": "_LayoutGap--gap-8_1q8iy_40",
18
- "LayoutGap--gap-12": "_LayoutGap--gap-12_1q8iy_43",
19
- "LayoutGap--gap-16": "_LayoutGap--gap-16_1q8iy_46",
20
- "LayoutGap--gap-20": "_LayoutGap--gap-20_1q8iy_49",
21
- "LayoutGap--gap-24": "_LayoutGap--gap-24_1q8iy_52",
22
- "LayoutGap--gap-32": "_LayoutGap--gap-32_1q8iy_55",
23
- "LayoutGap--gap-48": "_LayoutGap--gap-48_1q8iy_58",
24
- "LayoutGap--gap-64": "_LayoutGap--gap-64_1q8iy_61",
25
- "LayoutGap--gap-96": "_LayoutGap--gap-96_1q8iy_64",
26
- "LayoutGap--gap-160": "_LayoutGap--gap-160_1q8iy_67",
27
- "LayoutGap--narrow-l--gap-none": "_LayoutGap--narrow-l--gap-none_1q8iy_71",
28
- "LayoutGap--narrow-l--gap-3xs": "_LayoutGap--narrow-l--gap-3xs_1q8iy_74",
29
- "LayoutGap--narrow-l--gap-2xs": "_LayoutGap--narrow-l--gap-2xs_1q8iy_77",
30
- "LayoutGap--narrow-l--gap-xs": "_LayoutGap--narrow-l--gap-xs_1q8iy_80",
31
- "LayoutGap--narrow-l--gap-s": "_LayoutGap--narrow-l--gap-s_1q8iy_83",
32
- "LayoutGap--narrow-l--gap-m": "_LayoutGap--narrow-l--gap-m_1q8iy_86",
33
- "LayoutGap--narrow-l--gap-l": "_LayoutGap--narrow-l--gap-l_1q8iy_89",
34
- "LayoutGap--narrow-l--gap-xl": "_LayoutGap--narrow-l--gap-xl_1q8iy_92",
35
- "LayoutGap--narrow-l--gap-0": "_LayoutGap--narrow-l--gap-0_1q8iy_95",
36
- "LayoutGap--narrow-l--gap-1": "_LayoutGap--narrow-l--gap-1_1q8iy_98",
37
- "LayoutGap--narrow-l--gap-2": "_LayoutGap--narrow-l--gap-2_1q8iy_77",
38
- "LayoutGap--narrow-l--gap-4": "_LayoutGap--narrow-l--gap-4_1q8iy_104",
39
- "LayoutGap--narrow-l--gap-8": "_LayoutGap--narrow-l--gap-8_1q8iy_107",
40
- "LayoutGap--narrow-l--gap-12": "_LayoutGap--narrow-l--gap-12_1q8iy_110",
41
- "LayoutGap--narrow-l--gap-16": "_LayoutGap--narrow-l--gap-16_1q8iy_113",
42
- "LayoutGap--narrow-l--gap-20": "_LayoutGap--narrow-l--gap-20_1q8iy_116",
43
- "LayoutGap--narrow-l--gap-24": "_LayoutGap--narrow-l--gap-24_1q8iy_119",
44
- "LayoutGap--narrow-l--gap-32": "_LayoutGap--narrow-l--gap-32_1q8iy_122",
45
- "LayoutGap--narrow-l--gap-48": "_LayoutGap--narrow-l--gap-48_1q8iy_125",
46
- "LayoutGap--narrow-l--gap-64": "_LayoutGap--narrow-l--gap-64_1q8iy_128",
47
- "LayoutGap--narrow-l--gap-96": "_LayoutGap--narrow-l--gap-96_1q8iy_131",
48
- "LayoutGap--narrow-l--gap-160": "_LayoutGap--narrow-l--gap-160_1q8iy_134",
49
- "LayoutGap--medium-s--gap-none": "_LayoutGap--medium-s--gap-none_1q8iy_139",
50
- "LayoutGap--medium-s--gap-3xs": "_LayoutGap--medium-s--gap-3xs_1q8iy_142",
51
- "LayoutGap--medium-s--gap-2xs": "_LayoutGap--medium-s--gap-2xs_1q8iy_145",
52
- "LayoutGap--medium-s--gap-xs": "_LayoutGap--medium-s--gap-xs_1q8iy_148",
53
- "LayoutGap--medium-s--gap-s": "_LayoutGap--medium-s--gap-s_1q8iy_151",
54
- "LayoutGap--medium-s--gap-m": "_LayoutGap--medium-s--gap-m_1q8iy_154",
55
- "LayoutGap--medium-s--gap-l": "_LayoutGap--medium-s--gap-l_1q8iy_157",
56
- "LayoutGap--medium-s--gap-xl": "_LayoutGap--medium-s--gap-xl_1q8iy_160",
57
- "LayoutGap--medium-s--gap-0": "_LayoutGap--medium-s--gap-0_1q8iy_163",
58
- "LayoutGap--medium-s--gap-1": "_LayoutGap--medium-s--gap-1_1q8iy_166",
59
- "LayoutGap--medium-s--gap-2": "_LayoutGap--medium-s--gap-2_1q8iy_145",
60
- "LayoutGap--medium-s--gap-4": "_LayoutGap--medium-s--gap-4_1q8iy_172",
61
- "LayoutGap--medium-s--gap-8": "_LayoutGap--medium-s--gap-8_1q8iy_175",
62
- "LayoutGap--medium-s--gap-12": "_LayoutGap--medium-s--gap-12_1q8iy_178",
63
- "LayoutGap--medium-s--gap-16": "_LayoutGap--medium-s--gap-16_1q8iy_181",
64
- "LayoutGap--medium-s--gap-20": "_LayoutGap--medium-s--gap-20_1q8iy_184",
65
- "LayoutGap--medium-s--gap-24": "_LayoutGap--medium-s--gap-24_1q8iy_187",
66
- "LayoutGap--medium-s--gap-32": "_LayoutGap--medium-s--gap-32_1q8iy_190",
67
- "LayoutGap--medium-s--gap-48": "_LayoutGap--medium-s--gap-48_1q8iy_193",
68
- "LayoutGap--medium-s--gap-64": "_LayoutGap--medium-s--gap-64_1q8iy_196",
69
- "LayoutGap--medium-s--gap-96": "_LayoutGap--medium-s--gap-96_1q8iy_199",
70
- "LayoutGap--medium-s--gap-160": "_LayoutGap--medium-s--gap-160_1q8iy_202",
71
- "LayoutGap--medium-l--gap-none": "_LayoutGap--medium-l--gap-none_1q8iy_207",
72
- "LayoutGap--medium-l--gap-3xs": "_LayoutGap--medium-l--gap-3xs_1q8iy_210",
73
- "LayoutGap--medium-l--gap-2xs": "_LayoutGap--medium-l--gap-2xs_1q8iy_213",
74
- "LayoutGap--medium-l--gap-xs": "_LayoutGap--medium-l--gap-xs_1q8iy_216",
75
- "LayoutGap--medium-l--gap-s": "_LayoutGap--medium-l--gap-s_1q8iy_219",
76
- "LayoutGap--medium-l--gap-m": "_LayoutGap--medium-l--gap-m_1q8iy_222",
77
- "LayoutGap--medium-l--gap-l": "_LayoutGap--medium-l--gap-l_1q8iy_225",
78
- "LayoutGap--medium-l--gap-xl": "_LayoutGap--medium-l--gap-xl_1q8iy_228",
79
- "LayoutGap--medium-l--gap-0": "_LayoutGap--medium-l--gap-0_1q8iy_231",
80
- "LayoutGap--medium-l--gap-1": "_LayoutGap--medium-l--gap-1_1q8iy_234",
81
- "LayoutGap--medium-l--gap-2": "_LayoutGap--medium-l--gap-2_1q8iy_213",
82
- "LayoutGap--medium-l--gap-4": "_LayoutGap--medium-l--gap-4_1q8iy_240",
83
- "LayoutGap--medium-l--gap-8": "_LayoutGap--medium-l--gap-8_1q8iy_243",
84
- "LayoutGap--medium-l--gap-12": "_LayoutGap--medium-l--gap-12_1q8iy_246",
85
- "LayoutGap--medium-l--gap-16": "_LayoutGap--medium-l--gap-16_1q8iy_249",
86
- "LayoutGap--medium-l--gap-20": "_LayoutGap--medium-l--gap-20_1q8iy_252",
87
- "LayoutGap--medium-l--gap-24": "_LayoutGap--medium-l--gap-24_1q8iy_255",
88
- "LayoutGap--medium-l--gap-32": "_LayoutGap--medium-l--gap-32_1q8iy_258",
89
- "LayoutGap--medium-l--gap-48": "_LayoutGap--medium-l--gap-48_1q8iy_261",
90
- "LayoutGap--medium-l--gap-64": "_LayoutGap--medium-l--gap-64_1q8iy_264",
91
- "LayoutGap--medium-l--gap-96": "_LayoutGap--medium-l--gap-96_1q8iy_267",
92
- "LayoutGap--medium-l--gap-160": "_LayoutGap--medium-l--gap-160_1q8iy_270",
93
- "LayoutGap--wide-s--gap-none": "_LayoutGap--wide-s--gap-none_1q8iy_275",
94
- "LayoutGap--wide-s--gap-3xs": "_LayoutGap--wide-s--gap-3xs_1q8iy_278",
95
- "LayoutGap--wide-s--gap-2xs": "_LayoutGap--wide-s--gap-2xs_1q8iy_281",
96
- "LayoutGap--wide-s--gap-xs": "_LayoutGap--wide-s--gap-xs_1q8iy_284",
97
- "LayoutGap--wide-s--gap-s": "_LayoutGap--wide-s--gap-s_1q8iy_287",
98
- "LayoutGap--wide-s--gap-m": "_LayoutGap--wide-s--gap-m_1q8iy_290",
99
- "LayoutGap--wide-s--gap-l": "_LayoutGap--wide-s--gap-l_1q8iy_293",
100
- "LayoutGap--wide-s--gap-xl": "_LayoutGap--wide-s--gap-xl_1q8iy_296",
101
- "LayoutGap--wide-s--gap-0": "_LayoutGap--wide-s--gap-0_1q8iy_299",
102
- "LayoutGap--wide-s--gap-1": "_LayoutGap--wide-s--gap-1_1q8iy_302",
103
- "LayoutGap--wide-s--gap-2": "_LayoutGap--wide-s--gap-2_1q8iy_281",
104
- "LayoutGap--wide-s--gap-4": "_LayoutGap--wide-s--gap-4_1q8iy_308",
105
- "LayoutGap--wide-s--gap-8": "_LayoutGap--wide-s--gap-8_1q8iy_311",
106
- "LayoutGap--wide-s--gap-12": "_LayoutGap--wide-s--gap-12_1q8iy_314",
107
- "LayoutGap--wide-s--gap-16": "_LayoutGap--wide-s--gap-16_1q8iy_317",
108
- "LayoutGap--wide-s--gap-20": "_LayoutGap--wide-s--gap-20_1q8iy_320",
109
- "LayoutGap--wide-s--gap-24": "_LayoutGap--wide-s--gap-24_1q8iy_323",
110
- "LayoutGap--wide-s--gap-32": "_LayoutGap--wide-s--gap-32_1q8iy_326",
111
- "LayoutGap--wide-s--gap-48": "_LayoutGap--wide-s--gap-48_1q8iy_329",
112
- "LayoutGap--wide-s--gap-64": "_LayoutGap--wide-s--gap-64_1q8iy_332",
113
- "LayoutGap--wide-s--gap-96": "_LayoutGap--wide-s--gap-96_1q8iy_335",
114
- "LayoutGap--wide-s--gap-160": "_LayoutGap--wide-s--gap-160_1q8iy_338",
115
- "LayoutGap--wide-l--gap-none": "_LayoutGap--wide-l--gap-none_1q8iy_343",
116
- "LayoutGap--wide-l--gap-3xs": "_LayoutGap--wide-l--gap-3xs_1q8iy_346",
117
- "LayoutGap--wide-l--gap-2xs": "_LayoutGap--wide-l--gap-2xs_1q8iy_349",
118
- "LayoutGap--wide-l--gap-xs": "_LayoutGap--wide-l--gap-xs_1q8iy_352",
119
- "LayoutGap--wide-l--gap-s": "_LayoutGap--wide-l--gap-s_1q8iy_355",
120
- "LayoutGap--wide-l--gap-m": "_LayoutGap--wide-l--gap-m_1q8iy_358",
121
- "LayoutGap--wide-l--gap-l": "_LayoutGap--wide-l--gap-l_1q8iy_361",
122
- "LayoutGap--wide-l--gap-xl": "_LayoutGap--wide-l--gap-xl_1q8iy_364",
123
- "LayoutGap--wide-l--gap-0": "_LayoutGap--wide-l--gap-0_1q8iy_367",
124
- "LayoutGap--wide-l--gap-1": "_LayoutGap--wide-l--gap-1_1q8iy_370",
125
- "LayoutGap--wide-l--gap-2": "_LayoutGap--wide-l--gap-2_1q8iy_349",
126
- "LayoutGap--wide-l--gap-4": "_LayoutGap--wide-l--gap-4_1q8iy_376",
127
- "LayoutGap--wide-l--gap-8": "_LayoutGap--wide-l--gap-8_1q8iy_379",
128
- "LayoutGap--wide-l--gap-12": "_LayoutGap--wide-l--gap-12_1q8iy_382",
129
- "LayoutGap--wide-l--gap-16": "_LayoutGap--wide-l--gap-16_1q8iy_385",
130
- "LayoutGap--wide-l--gap-20": "_LayoutGap--wide-l--gap-20_1q8iy_388",
131
- "LayoutGap--wide-l--gap-24": "_LayoutGap--wide-l--gap-24_1q8iy_391",
132
- "LayoutGap--wide-l--gap-32": "_LayoutGap--wide-l--gap-32_1q8iy_394",
133
- "LayoutGap--wide-l--gap-48": "_LayoutGap--wide-l--gap-48_1q8iy_397",
134
- "LayoutGap--wide-l--gap-64": "_LayoutGap--wide-l--gap-64_1q8iy_400",
135
- "LayoutGap--wide-l--gap-96": "_LayoutGap--wide-l--gap-96_1q8iy_403",
136
- "LayoutGap--wide-l--gap-160": "_LayoutGap--wide-l--gap-160_1q8iy_406"
5
+ "LayoutGap--gap-none": "_LayoutGap--gap-none_1d8xh_4",
6
+ "LayoutGap--gap-3xs": "_LayoutGap--gap-3xs_1d8xh_7",
7
+ "LayoutGap--gap-2xs": "_LayoutGap--gap-2xs_1d8xh_10",
8
+ "LayoutGap--gap-xs": "_LayoutGap--gap-xs_1d8xh_13",
9
+ "LayoutGap--gap-s": "_LayoutGap--gap-s_1d8xh_16",
10
+ "LayoutGap--gap-m": "_LayoutGap--gap-m_1d8xh_19",
11
+ "LayoutGap--gap-l": "_LayoutGap--gap-l_1d8xh_22",
12
+ "LayoutGap--gap-xl": "_LayoutGap--gap-xl_1d8xh_25",
13
+ "LayoutGap--gap-0": "_LayoutGap--gap-0_1d8xh_28",
14
+ "LayoutGap--gap-1": "_LayoutGap--gap-1_1d8xh_31",
15
+ "LayoutGap--gap-2": "_LayoutGap--gap-2_1d8xh_10",
16
+ "LayoutGap--gap-4": "_LayoutGap--gap-4_1d8xh_37",
17
+ "LayoutGap--gap-8": "_LayoutGap--gap-8_1d8xh_40",
18
+ "LayoutGap--gap-12": "_LayoutGap--gap-12_1d8xh_43",
19
+ "LayoutGap--gap-16": "_LayoutGap--gap-16_1d8xh_46",
20
+ "LayoutGap--gap-20": "_LayoutGap--gap-20_1d8xh_49",
21
+ "LayoutGap--gap-24": "_LayoutGap--gap-24_1d8xh_52",
22
+ "LayoutGap--gap-32": "_LayoutGap--gap-32_1d8xh_55",
23
+ "LayoutGap--gap-48": "_LayoutGap--gap-48_1d8xh_58",
24
+ "LayoutGap--gap-64": "_LayoutGap--gap-64_1d8xh_61",
25
+ "LayoutGap--gap-96": "_LayoutGap--gap-96_1d8xh_64",
26
+ "LayoutGap--gap-160": "_LayoutGap--gap-160_1d8xh_67",
27
+ "LayoutGap--narrow-l--gap-none": "_LayoutGap--narrow-l--gap-none_1d8xh_71",
28
+ "LayoutGap--narrow-l--gap-3xs": "_LayoutGap--narrow-l--gap-3xs_1d8xh_74",
29
+ "LayoutGap--narrow-l--gap-2xs": "_LayoutGap--narrow-l--gap-2xs_1d8xh_77",
30
+ "LayoutGap--narrow-l--gap-xs": "_LayoutGap--narrow-l--gap-xs_1d8xh_80",
31
+ "LayoutGap--narrow-l--gap-s": "_LayoutGap--narrow-l--gap-s_1d8xh_83",
32
+ "LayoutGap--narrow-l--gap-m": "_LayoutGap--narrow-l--gap-m_1d8xh_86",
33
+ "LayoutGap--narrow-l--gap-l": "_LayoutGap--narrow-l--gap-l_1d8xh_89",
34
+ "LayoutGap--narrow-l--gap-xl": "_LayoutGap--narrow-l--gap-xl_1d8xh_92",
35
+ "LayoutGap--narrow-l--gap-0": "_LayoutGap--narrow-l--gap-0_1d8xh_95",
36
+ "LayoutGap--narrow-l--gap-1": "_LayoutGap--narrow-l--gap-1_1d8xh_98",
37
+ "LayoutGap--narrow-l--gap-2": "_LayoutGap--narrow-l--gap-2_1d8xh_77",
38
+ "LayoutGap--narrow-l--gap-4": "_LayoutGap--narrow-l--gap-4_1d8xh_104",
39
+ "LayoutGap--narrow-l--gap-8": "_LayoutGap--narrow-l--gap-8_1d8xh_107",
40
+ "LayoutGap--narrow-l--gap-12": "_LayoutGap--narrow-l--gap-12_1d8xh_110",
41
+ "LayoutGap--narrow-l--gap-16": "_LayoutGap--narrow-l--gap-16_1d8xh_113",
42
+ "LayoutGap--narrow-l--gap-20": "_LayoutGap--narrow-l--gap-20_1d8xh_116",
43
+ "LayoutGap--narrow-l--gap-24": "_LayoutGap--narrow-l--gap-24_1d8xh_119",
44
+ "LayoutGap--narrow-l--gap-32": "_LayoutGap--narrow-l--gap-32_1d8xh_122",
45
+ "LayoutGap--narrow-l--gap-48": "_LayoutGap--narrow-l--gap-48_1d8xh_125",
46
+ "LayoutGap--narrow-l--gap-64": "_LayoutGap--narrow-l--gap-64_1d8xh_128",
47
+ "LayoutGap--narrow-l--gap-96": "_LayoutGap--narrow-l--gap-96_1d8xh_131",
48
+ "LayoutGap--narrow-l--gap-160": "_LayoutGap--narrow-l--gap-160_1d8xh_134",
49
+ "LayoutGap--medium-s--gap-none": "_LayoutGap--medium-s--gap-none_1d8xh_139",
50
+ "LayoutGap--medium-s--gap-3xs": "_LayoutGap--medium-s--gap-3xs_1d8xh_142",
51
+ "LayoutGap--medium-s--gap-2xs": "_LayoutGap--medium-s--gap-2xs_1d8xh_145",
52
+ "LayoutGap--medium-s--gap-xs": "_LayoutGap--medium-s--gap-xs_1d8xh_148",
53
+ "LayoutGap--medium-s--gap-s": "_LayoutGap--medium-s--gap-s_1d8xh_151",
54
+ "LayoutGap--medium-s--gap-m": "_LayoutGap--medium-s--gap-m_1d8xh_154",
55
+ "LayoutGap--medium-s--gap-l": "_LayoutGap--medium-s--gap-l_1d8xh_157",
56
+ "LayoutGap--medium-s--gap-xl": "_LayoutGap--medium-s--gap-xl_1d8xh_160",
57
+ "LayoutGap--medium-s--gap-0": "_LayoutGap--medium-s--gap-0_1d8xh_163",
58
+ "LayoutGap--medium-s--gap-1": "_LayoutGap--medium-s--gap-1_1d8xh_166",
59
+ "LayoutGap--medium-s--gap-2": "_LayoutGap--medium-s--gap-2_1d8xh_145",
60
+ "LayoutGap--medium-s--gap-4": "_LayoutGap--medium-s--gap-4_1d8xh_172",
61
+ "LayoutGap--medium-s--gap-8": "_LayoutGap--medium-s--gap-8_1d8xh_175",
62
+ "LayoutGap--medium-s--gap-12": "_LayoutGap--medium-s--gap-12_1d8xh_178",
63
+ "LayoutGap--medium-s--gap-16": "_LayoutGap--medium-s--gap-16_1d8xh_181",
64
+ "LayoutGap--medium-s--gap-20": "_LayoutGap--medium-s--gap-20_1d8xh_184",
65
+ "LayoutGap--medium-s--gap-24": "_LayoutGap--medium-s--gap-24_1d8xh_187",
66
+ "LayoutGap--medium-s--gap-32": "_LayoutGap--medium-s--gap-32_1d8xh_190",
67
+ "LayoutGap--medium-s--gap-48": "_LayoutGap--medium-s--gap-48_1d8xh_193",
68
+ "LayoutGap--medium-s--gap-64": "_LayoutGap--medium-s--gap-64_1d8xh_196",
69
+ "LayoutGap--medium-s--gap-96": "_LayoutGap--medium-s--gap-96_1d8xh_199",
70
+ "LayoutGap--medium-s--gap-160": "_LayoutGap--medium-s--gap-160_1d8xh_202",
71
+ "LayoutGap--medium-l--gap-none": "_LayoutGap--medium-l--gap-none_1d8xh_207",
72
+ "LayoutGap--medium-l--gap-3xs": "_LayoutGap--medium-l--gap-3xs_1d8xh_210",
73
+ "LayoutGap--medium-l--gap-2xs": "_LayoutGap--medium-l--gap-2xs_1d8xh_213",
74
+ "LayoutGap--medium-l--gap-xs": "_LayoutGap--medium-l--gap-xs_1d8xh_216",
75
+ "LayoutGap--medium-l--gap-s": "_LayoutGap--medium-l--gap-s_1d8xh_219",
76
+ "LayoutGap--medium-l--gap-m": "_LayoutGap--medium-l--gap-m_1d8xh_222",
77
+ "LayoutGap--medium-l--gap-l": "_LayoutGap--medium-l--gap-l_1d8xh_225",
78
+ "LayoutGap--medium-l--gap-xl": "_LayoutGap--medium-l--gap-xl_1d8xh_228",
79
+ "LayoutGap--medium-l--gap-0": "_LayoutGap--medium-l--gap-0_1d8xh_231",
80
+ "LayoutGap--medium-l--gap-1": "_LayoutGap--medium-l--gap-1_1d8xh_234",
81
+ "LayoutGap--medium-l--gap-2": "_LayoutGap--medium-l--gap-2_1d8xh_213",
82
+ "LayoutGap--medium-l--gap-4": "_LayoutGap--medium-l--gap-4_1d8xh_240",
83
+ "LayoutGap--medium-l--gap-8": "_LayoutGap--medium-l--gap-8_1d8xh_243",
84
+ "LayoutGap--medium-l--gap-12": "_LayoutGap--medium-l--gap-12_1d8xh_246",
85
+ "LayoutGap--medium-l--gap-16": "_LayoutGap--medium-l--gap-16_1d8xh_249",
86
+ "LayoutGap--medium-l--gap-20": "_LayoutGap--medium-l--gap-20_1d8xh_252",
87
+ "LayoutGap--medium-l--gap-24": "_LayoutGap--medium-l--gap-24_1d8xh_255",
88
+ "LayoutGap--medium-l--gap-32": "_LayoutGap--medium-l--gap-32_1d8xh_258",
89
+ "LayoutGap--medium-l--gap-48": "_LayoutGap--medium-l--gap-48_1d8xh_261",
90
+ "LayoutGap--medium-l--gap-64": "_LayoutGap--medium-l--gap-64_1d8xh_264",
91
+ "LayoutGap--medium-l--gap-96": "_LayoutGap--medium-l--gap-96_1d8xh_267",
92
+ "LayoutGap--medium-l--gap-160": "_LayoutGap--medium-l--gap-160_1d8xh_270",
93
+ "LayoutGap--wide-s--gap-none": "_LayoutGap--wide-s--gap-none_1d8xh_275",
94
+ "LayoutGap--wide-s--gap-3xs": "_LayoutGap--wide-s--gap-3xs_1d8xh_278",
95
+ "LayoutGap--wide-s--gap-2xs": "_LayoutGap--wide-s--gap-2xs_1d8xh_281",
96
+ "LayoutGap--wide-s--gap-xs": "_LayoutGap--wide-s--gap-xs_1d8xh_284",
97
+ "LayoutGap--wide-s--gap-s": "_LayoutGap--wide-s--gap-s_1d8xh_287",
98
+ "LayoutGap--wide-s--gap-m": "_LayoutGap--wide-s--gap-m_1d8xh_290",
99
+ "LayoutGap--wide-s--gap-l": "_LayoutGap--wide-s--gap-l_1d8xh_293",
100
+ "LayoutGap--wide-s--gap-xl": "_LayoutGap--wide-s--gap-xl_1d8xh_296",
101
+ "LayoutGap--wide-s--gap-0": "_LayoutGap--wide-s--gap-0_1d8xh_299",
102
+ "LayoutGap--wide-s--gap-1": "_LayoutGap--wide-s--gap-1_1d8xh_302",
103
+ "LayoutGap--wide-s--gap-2": "_LayoutGap--wide-s--gap-2_1d8xh_281",
104
+ "LayoutGap--wide-s--gap-4": "_LayoutGap--wide-s--gap-4_1d8xh_308",
105
+ "LayoutGap--wide-s--gap-8": "_LayoutGap--wide-s--gap-8_1d8xh_311",
106
+ "LayoutGap--wide-s--gap-12": "_LayoutGap--wide-s--gap-12_1d8xh_314",
107
+ "LayoutGap--wide-s--gap-16": "_LayoutGap--wide-s--gap-16_1d8xh_317",
108
+ "LayoutGap--wide-s--gap-20": "_LayoutGap--wide-s--gap-20_1d8xh_320",
109
+ "LayoutGap--wide-s--gap-24": "_LayoutGap--wide-s--gap-24_1d8xh_323",
110
+ "LayoutGap--wide-s--gap-32": "_LayoutGap--wide-s--gap-32_1d8xh_326",
111
+ "LayoutGap--wide-s--gap-48": "_LayoutGap--wide-s--gap-48_1d8xh_329",
112
+ "LayoutGap--wide-s--gap-64": "_LayoutGap--wide-s--gap-64_1d8xh_332",
113
+ "LayoutGap--wide-s--gap-96": "_LayoutGap--wide-s--gap-96_1d8xh_335",
114
+ "LayoutGap--wide-s--gap-160": "_LayoutGap--wide-s--gap-160_1d8xh_338",
115
+ "LayoutGap--wide-l--gap-none": "_LayoutGap--wide-l--gap-none_1d8xh_343",
116
+ "LayoutGap--wide-l--gap-3xs": "_LayoutGap--wide-l--gap-3xs_1d8xh_346",
117
+ "LayoutGap--wide-l--gap-2xs": "_LayoutGap--wide-l--gap-2xs_1d8xh_349",
118
+ "LayoutGap--wide-l--gap-xs": "_LayoutGap--wide-l--gap-xs_1d8xh_352",
119
+ "LayoutGap--wide-l--gap-s": "_LayoutGap--wide-l--gap-s_1d8xh_355",
120
+ "LayoutGap--wide-l--gap-m": "_LayoutGap--wide-l--gap-m_1d8xh_358",
121
+ "LayoutGap--wide-l--gap-l": "_LayoutGap--wide-l--gap-l_1d8xh_361",
122
+ "LayoutGap--wide-l--gap-xl": "_LayoutGap--wide-l--gap-xl_1d8xh_364",
123
+ "LayoutGap--wide-l--gap-0": "_LayoutGap--wide-l--gap-0_1d8xh_367",
124
+ "LayoutGap--wide-l--gap-1": "_LayoutGap--wide-l--gap-1_1d8xh_370",
125
+ "LayoutGap--wide-l--gap-2": "_LayoutGap--wide-l--gap-2_1d8xh_349",
126
+ "LayoutGap--wide-l--gap-4": "_LayoutGap--wide-l--gap-4_1d8xh_376",
127
+ "LayoutGap--wide-l--gap-8": "_LayoutGap--wide-l--gap-8_1d8xh_379",
128
+ "LayoutGap--wide-l--gap-12": "_LayoutGap--wide-l--gap-12_1d8xh_382",
129
+ "LayoutGap--wide-l--gap-16": "_LayoutGap--wide-l--gap-16_1d8xh_385",
130
+ "LayoutGap--wide-l--gap-20": "_LayoutGap--wide-l--gap-20_1d8xh_388",
131
+ "LayoutGap--wide-l--gap-24": "_LayoutGap--wide-l--gap-24_1d8xh_391",
132
+ "LayoutGap--wide-l--gap-32": "_LayoutGap--wide-l--gap-32_1d8xh_394",
133
+ "LayoutGap--wide-l--gap-48": "_LayoutGap--wide-l--gap-48_1d8xh_397",
134
+ "LayoutGap--wide-l--gap-64": "_LayoutGap--wide-l--gap-64_1d8xh_400",
135
+ "LayoutGap--wide-l--gap-96": "_LayoutGap--wide-l--gap-96_1d8xh_403",
136
+ "LayoutGap--wide-l--gap-160": "_LayoutGap--wide-l--gap-160_1d8xh_406"
137
137
  };
138
138
  const LAYOUT_GAP = "LayoutGap";
139
139
  const getLayoutGapClassnames = (gap) => {
@@ -4,7 +4,7 @@ import { getLayoutGapClassnames } from "../layout-gap/layout-gap.js";
4
4
  import { getLayoutHideClassnames } from "../layout-hide/layout-hide.js";
5
5
  import { getLayoutPaddingClassnames } from "../layout-padding/layout-padding.js";
6
6
  import { getLayoutRelativeClassnames } from "../layout-relative/layout-relative.js";
7
- import { s as styles } from "../../layout-grid.module-DWaQUkej.js";
7
+ import { s as styles } from "../../layout-grid.module-DEhjGYxG.js";
8
8
  const LAYOUT_GRID = "LayoutGrid";
9
9
  const getLayoutGridClassNames = (layout, props) => {
10
10
  const {
@@ -1,6 +1,6 @@
1
1
  import { BREAKPOINT } from "@preply/ds-core";
2
2
  import { moduleLocals } from "@preply/ds-web-core";
3
- import { s as styles } from "../../layout-grid.module-DWaQUkej.js";
3
+ import { s as styles } from "../../layout-grid.module-DEhjGYxG.js";
4
4
  const LAYOUT_GRID = "LayoutGrid";
5
5
  const BREAKPOINT_LIST = Object.keys(BREAKPOINT);
6
6
  const normalizeColumns = (columns) => {