@digigov/css 2.0.0-85c27c19 → 2.0.0-87b6232d

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 (129) hide show
  1. package/dist/base/index.css +1 -1
  2. package/dist/base.js +1 -1
  3. package/dist/components.js +1 -1
  4. package/dist/digigov.css +3 -3
  5. package/dist/utilities/index.css +1 -1
  6. package/dist/utilities.js +1 -1
  7. package/index.js +99 -69
  8. package/package.json +13 -13
  9. package/postcss.config.js +4 -3
  10. package/src/base/index.css +1 -0
  11. package/src/base/index.native.css +0 -0
  12. package/src/base/postcss.config.js +11 -10
  13. package/src/base/tailwind.config.js +4 -11
  14. package/src/components/accordion.common.css +29 -0
  15. package/src/components/accordion.css +9 -7
  16. package/src/components/accordion.native.css +27 -0
  17. package/src/components/autocomplete.css +1 -3
  18. package/src/components/blockquote.common.css +14 -0
  19. package/src/components/blockquote.css +9 -0
  20. package/src/components/blockquote.native.css +14 -0
  21. package/src/components/breadcrumbs.css +1 -1
  22. package/src/components/button.common.css +62 -0
  23. package/src/components/button.css +13 -28
  24. package/src/components/button.native.css +55 -0
  25. package/src/components/card.common.css +33 -0
  26. package/src/components/card.css +12 -12
  27. package/src/components/card.native.css +29 -0
  28. package/src/components/checkboxes.common.css +16 -0
  29. package/src/components/checkboxes.css +6 -8
  30. package/src/components/checkboxes.native.css +27 -0
  31. package/src/components/chip.common.css +19 -0
  32. package/src/components/chip.css +5 -4
  33. package/src/components/chip.native.css +15 -0
  34. package/src/components/code.css +14 -15
  35. package/src/components/copy-to-clipboard.css +1 -1
  36. package/src/components/copy-to-clipboard.native.css +26 -0
  37. package/src/components/details.common.css +26 -0
  38. package/src/components/details.css +6 -9
  39. package/src/components/details.native.css +34 -0
  40. package/src/components/drawer.css +20 -3
  41. package/src/components/dropdown.common.css +23 -0
  42. package/src/components/dropdown.css +7 -9
  43. package/src/components/dropdown.native.css +27 -0
  44. package/src/components/filter.css +71 -22
  45. package/src/components/footer.css +8 -7
  46. package/src/components/form.common.css +81 -0
  47. package/src/components/form.css +37 -9
  48. package/src/components/form.native.css +182 -0
  49. package/src/components/header.common.css +35 -0
  50. package/src/components/header.css +12 -20
  51. package/src/components/header.native.css +29 -0
  52. package/src/components/index.css +1 -0
  53. package/src/components/kitchensink.css +2 -2
  54. package/src/components/layout.common.css +36 -0
  55. package/src/components/layout.css +12 -11
  56. package/src/components/layout.native.css +40 -0
  57. package/src/components/loader.common.css +7 -0
  58. package/src/components/loader.css +3 -1
  59. package/src/components/loader.native.css +5 -0
  60. package/src/components/masthead.css +1 -1
  61. package/src/components/modal.common.css +16 -0
  62. package/src/components/modal.css +19 -15
  63. package/src/components/modal.native.css +18 -0
  64. package/src/components/nav.common.css +22 -0
  65. package/src/components/nav.css +6 -8
  66. package/src/components/nav.native.css +39 -0
  67. package/src/components/notification-banner.common.css +46 -0
  68. package/src/components/notification-banner.css +27 -7
  69. package/src/components/notification-banner.native.css +42 -0
  70. package/src/components/pagination.css +19 -3
  71. package/src/components/panel.common.css +30 -0
  72. package/src/components/panel.css +6 -15
  73. package/src/components/panel.native.css +26 -0
  74. package/src/components/phase-banner.common.css +23 -0
  75. package/src/components/phase-banner.css +7 -6
  76. package/src/components/phase-banner.native.css +30 -0
  77. package/src/components/postcss.config.js +7 -6
  78. package/src/components/radios.common.css +16 -0
  79. package/src/components/radios.css +5 -11
  80. package/src/components/radios.native.css +23 -0
  81. package/src/components/skeleton.common.css +20 -0
  82. package/src/components/skeleton.css +7 -10
  83. package/src/components/skeleton.native.css +53 -0
  84. package/src/components/stack.common.css +67 -0
  85. package/src/components/stack.css +23 -21
  86. package/src/components/stack.native.css +68 -0
  87. package/src/components/summary-list.common.css +93 -0
  88. package/src/components/summary-list.css +82 -22
  89. package/src/components/summary-list.native.css +97 -0
  90. package/src/components/svg-icons.common.css +56 -0
  91. package/src/components/svg-icons.native.css +54 -0
  92. package/src/components/table.css +44 -11
  93. package/src/components/test.css +7 -0
  94. package/src/components/typography.common.css +135 -0
  95. package/src/components/typography.css +47 -97
  96. package/src/components/typography.native.css +128 -0
  97. package/src/components/warning-text.common.css +23 -0
  98. package/src/components/warning-text.css +9 -7
  99. package/src/components/warning-text.native.css +22 -0
  100. package/src/index.native.css +26 -0
  101. package/src/utilities/gap.css +141 -0
  102. package/src/utilities/index.css +6 -1828
  103. package/src/utilities/index.native.css +6 -0
  104. package/src/utilities/layout.css +231 -0
  105. package/src/utilities/layout.native.css +278 -0
  106. package/src/utilities/margin.css +4299 -0
  107. package/src/utilities/padding.css +4299 -0
  108. package/src/utilities/postcss.config.js +7 -6
  109. package/src/utilities/print.css +11 -0
  110. package/src/utilities/utilities.css +3 -2368
  111. package/tailwind.config.js +102 -106
  112. package/theming.js +121 -0
  113. package/defaultTheme/accordion.json +0 -16
  114. package/defaultTheme/back-to-top.json +0 -27
  115. package/defaultTheme/brandConfig.json +0 -147
  116. package/defaultTheme/breadcrumbs.json +0 -8
  117. package/defaultTheme/button.json +0 -90
  118. package/defaultTheme/card.json +0 -23
  119. package/defaultTheme/form.json +0 -30
  120. package/defaultTheme/globals.json +0 -81
  121. package/defaultTheme/index.js +0 -27
  122. package/defaultTheme/layout.json +0 -55
  123. package/defaultTheme/misc.json +0 -68
  124. package/defaultTheme/panel.json +0 -48
  125. package/defaultTheme/phase-banner.json +0 -8
  126. package/defaultTheme/radios.json +0 -8
  127. package/defaultTheme/summary-list.json +0 -8
  128. package/defaultTheme/typography.json +0 -295
  129. package/themes.plugin.js +0 -148
@@ -1,86 +1,54 @@
1
+ @import './typography.common.css';
2
+
1
3
  .ds-heading-xl {
2
- @apply mx-0 max-w-2xl;
3
- font-size: var(--heading-xl-font-size);
4
- line-height: var(--heading-xl-line-height);
5
- margin-bottom: var(--heading-xl-margin-bottom);
6
- font-weight: var(--heading-xl-font-weight);
4
+ @apply util-heading-xl util-heading-xl-text;
7
5
  letter-spacing: var(--heading-xl-letter-spacing);
6
+ margin-bottom: var(--heading-xl-margin-bottom);
8
7
  }
9
8
  .ds-heading-lg {
10
- @apply mx-0;
11
- font-size: var(--heading-lg-font-size);
12
- line-height: var(--heading-lg-line-height);
13
- margin-bottom: var(--heading-lg-margin-bottom);
14
- font-weight: var(--heading-lg-font-weight);
9
+ @apply util-heading-lg-text mx-0;
15
10
  letter-spacing: var(--heading-lg-letter-spacing);
11
+ margin-bottom: var(--heading-lg-margin-bottom);
16
12
  }
17
13
  .ds-heading-md {
18
- @apply mx-0;
19
- font-size: var(--heading-md-font-size);
20
- line-height: var(--heading-md-line-height);
14
+ @apply util-heading-md-text mx-0;
15
+ letter-spacing: var(--heading-lg-letter-spacing);
21
16
  margin-bottom: var(--heading-md-margin-bottom);
22
- font-weight: var(--heading-md-font-weight);
23
- letter-spacing: var(--heading-md-letter-spacing);
24
17
  }
25
18
  .ds-heading-sm {
26
- @apply mx-0;
27
- font-size: var(--heading-sm-font-size);
28
- line-height: var(--heading-sm-line-height);
19
+ @apply util-heading-sm-text mx-0;
20
+ letter-spacing: var(--heading-lg-letter-spacing);
29
21
  margin-bottom: var(--heading-sm-margin-bottom);
30
- font-weight: var(--heading-sm-font-weight);
31
- letter-spacing: var(--heading-sm-letter-spacing);
32
22
  }
33
23
  .ds-heading-xs {
34
- @apply mx-0;
35
- font-size: var(--heading-xs-font-size);
36
- line-height: var(--heading-xs-line-height);
24
+ @apply util-heading-xs-text mx-0;
25
+ letter-spacing: var(--heading-lg-letter-spacing);
37
26
  margin-bottom: var(--heading-xs-margin-bottom);
38
- font-weight: var(--heading-xs-font-weight);
39
- letter-spacing: var(--heading-xs-letter-spacing);
40
27
  }
28
+
41
29
  .ds-heading--break-words {
42
30
  @apply break-words;
43
31
  }
44
32
  .ds-caption-xl {
45
- @apply block mx-0 font-normal;
46
- color: var(--caption-xl-color);
47
- font-size: var(--caption-xl-font-size);
48
- line-height: var(--caption-xl-line-height);
49
- margin-bottom: var(--caption-xl-margin-bottom);
50
- font-weight: var(--caption-xl-font-weight);
33
+ @apply util-caption-xl util-caption-xl-text block;
51
34
  letter-spacing: var(--heading-xl-letter-spacing);
52
35
  }
53
36
  .ds-caption-lg {
54
- @apply block mx-0 font-normal;
55
- color: var(--caption-lg-color);
56
- font-size: var(--caption-lg-font-size);
57
- line-height: var(--caption-lg-line-height);
58
- margin-bottom: var(--caption-lg-margin-bottom);
59
- font-weight: var(--caption-lg-font-weight);
60
- letter-spacing: var(--caption-lg-letter-spacing);
37
+ @apply util-caption-lg util-caption-lg-text block;
38
+ letter-spacing: var(--heading-lg-letter-spacing);
61
39
  }
62
40
  .ds-caption-md {
63
- @apply block mx-0 font-normal;
64
- color: var(--caption-md-color);
65
- font-size: var(--caption-md-font-size);
66
- line-height: var(--caption-md-line-height);
67
- margin-bottom: var(--caption-md-margin-bottom);
68
- font-weight: var(--caption-md-font-weight);
69
- letter-spacing: var(--caption-md-letter-spacing);
41
+ @apply util-caption-md util-caption-md-text block;
42
+ letter-spacing: var(--heading-md-letter-spacing);
70
43
  }
71
44
  .ds-hint {
72
- font-size: var(--hint-font-size);
73
- line-height: var(--hint-line-height);
74
- margin-bottom: var(--hint-margin-bottom);
75
- color: var(--hint-color);
45
+ @apply util-hint util-hint-text;
76
46
  letter-spacing: var(--hint-letter-spacing);
77
47
  &.ds-hint--lg {
78
- font-size: var(--hint-lg-font-size);
79
- line-height: var(--hint--lg-line-height);
48
+ @apply util-hint-lg-text;
80
49
  }
81
50
  &.ds-hint--sm {
82
- font-size: var(--hint--sm-font-size);
83
- line-height: var(--hint--sm-line-height);
51
+ @apply util-hint-sm-text;
84
52
  }
85
53
  &.ds-hint--break-words {
86
54
  @apply break-words;
@@ -92,21 +60,6 @@
92
60
  @apply opacity-70 text-white print:text-base-content;
93
61
  }
94
62
  }
95
- .ds-code {
96
- @apply text-sm sm:text-base bg-base-100;
97
- &.ds-code--attr {
98
- @apply text-info;
99
- }
100
- &.ds-code--string {
101
- @apply text-success;
102
- }
103
- &.ds-code--keyword {
104
- @apply text-warning;
105
- }
106
- &.ds-code--name {
107
- @apply text-tertiary;
108
- }
109
- }
110
63
  .ds-\!-font-size-14 {
111
64
  @apply text-xs md:text-sm !important;
112
65
  }
@@ -135,14 +88,12 @@
135
88
  @apply font-normal !important;
136
89
  }
137
90
  .ds-\!-font-weight-bold {
138
- @apply font-bold !important;
91
+ @apply util-font-weight-bold-text;
139
92
  }
140
93
  .ds-list {
141
- @apply list-none list-outside mt-4;
142
- @apply md:mb-8 mb-4 text-base-content;
94
+ @apply list-none list-outside md:mb-8 mb-4 text-base-content;
143
95
  font-size: var(--list-font-size);
144
96
  line-height: var(--list-line-height);
145
- letter-spacing: var(--list-letter-spacing);
146
97
  &.ds-list--bullet {
147
98
  @apply list-disc list-outside pl-4;
148
99
  }
@@ -163,6 +114,9 @@
163
114
  &:last-child {
164
115
  @apply mb-0;
165
116
  }
117
+ > button.ds-link:only-child {
118
+ display: inline-flex;
119
+ }
166
120
  }
167
121
  }
168
122
  .ds-list__item > .ds-list--bullet:nth-child(1) {
@@ -193,57 +147,52 @@
193
147
  column-count: 2;
194
148
  }
195
149
  }
196
- .ds-blockquote {
197
- @apply mb-4 mt-8 md:mb-8 p-4 border-l-8 border-base-500 text-base-content;
198
- font-size: var(--blockquote-font-size);
199
- line-height: var(--blockquote-line-height);
200
- &.ds-blockquote--dense,
201
- .ds-dense & {
202
- @apply mt-3 md:mb-6 p-3 border-l-6;
203
- }
204
- }
205
150
  .ds-body {
206
- font-size: var(--body-font-size);
207
- line-height: var(--body-line-height);
208
- margin-bottom: var(--body-margin-bottom);
209
- color: var(--body-color);
151
+ @apply util-body-text;
210
152
  letter-spacing: var(--body-letter-spacing);
211
153
  &.ds-body--lg {
212
- font-size: var(--body--lg-font-size);
213
- line-height: var(--body--lg-line-height);
154
+ @apply util-body-lg-text;
214
155
  }
215
156
  &.ds-body--sm {
216
- font-size: var(--body--sm-font-size);
217
- line-height: var(--body--sm-line-height);
157
+ @apply util-body-sm-text;
218
158
  }
219
159
  .ds-code {
220
- @apply p-2 bg-base-200;
160
+ @apply p-1 bg-base-200;
221
161
  }
222
162
  }
223
163
 
224
164
  .ds-link {
225
- @apply focus:text-link-active underline cursor-pointer;
226
- color: var(--link-color);
227
- padding: var(--link-padding);
228
- font-size: var(--link-font-size);
229
- line-height: var(--link-line-height);
165
+ @apply focus:text-link-active util-link util-link-text cursor-pointer text-left;
230
166
  letter-spacing: var(--link-letter-spacing);
231
167
  &:hover {
232
168
  text-decoration-thickness: 2px;
233
169
  color: var(--link-color-hover);
234
170
  }
235
171
  &:focus {
236
- color: var(--link-color-active);
237
- background-color: var(--color-focus);
238
172
  box-shadow:
239
173
  0 -2px var(--color-focus),
240
174
  0 4px var(--color-base-content);
175
+
241
176
  text-decoration: none !important;
242
177
  outline: none;
243
178
  }
244
179
  &.ds-link--no-underline {
245
180
  @apply no-underline hover:underline;
246
181
  }
182
+ &.ds-link--disabled {
183
+ @apply cursor-not-allowed !important;
184
+ color: var(--color-base-content);
185
+ &:hover {
186
+ color: var(--color-base-content);
187
+ }
188
+ }
189
+ &.ds-link-warning {
190
+ @apply focus:text-link-active;
191
+ color: var(--color-error-text);
192
+ &:hover {
193
+ color: var(--color-error-hover);
194
+ }
195
+ }
247
196
  .ds-heading-xl &,
248
197
  .ds-heading-lg &,
249
198
  .ds-heading-md &,
@@ -331,6 +280,7 @@
331
280
  }
332
281
  }
333
282
  button.ds-link {
283
+ @apply text-left;
334
284
  .ds-svg-icon {
335
285
  @apply ml-1;
336
286
  }
@@ -0,0 +1,128 @@
1
+ /* stylelint-disable digigov/nest-related-rules */
2
+ @import './typography.common.css';
3
+
4
+ .ds-\!-font-weight-bold__text {
5
+ @apply util-font-weight-bold-text;
6
+ }
7
+
8
+ /* Heading */
9
+ .ds-heading-xl {
10
+ @apply util-heading-xl;
11
+ }
12
+ .ds-heading-xl__text {
13
+ @apply util-heading-xl-text;
14
+ margin-bottom: var(--heading-xl-margin-bottom);
15
+ line-height: calc(
16
+ var(--heading-xl-line-height) * var(--heading-xl-font-size)
17
+ );
18
+ }
19
+ .ds-heading-lg__text {
20
+ @apply util-heading-lg-text;
21
+ margin-bottom: var(--heading-lg-margin-bottom);
22
+ line-height: calc(
23
+ var(--heading-lg-line-height) * var(--heading-lg-font-size)
24
+ );
25
+ }
26
+ .ds-heading-md__text {
27
+ @apply util-heading-md-text;
28
+ margin-bottom: var(--heading-md-margin-bottom);
29
+ line-height: calc(
30
+ var(--heading-md-line-height) * var(--heading-md-font-size)
31
+ );
32
+ }
33
+ .ds-heading-sm__text {
34
+ @apply util-heading-sm-text;
35
+ margin-bottom: var(--heading-sm-margin-bottom);
36
+ line-height: calc(
37
+ var(--heading-sm-line-height) * var(--heading-sm-font-size)
38
+ );
39
+ }
40
+ .ds-heading-xs__text {
41
+ @apply util-heading-xs-text;
42
+ margin-bottom: var(--heading-xs-margin-bottom);
43
+ line-height: calc(
44
+ var(--heading-xs-line-height) * var(--heading-xs-font-size)
45
+ );
46
+ }
47
+
48
+ /* Paragraph */
49
+ .ds-body__text {
50
+ @apply util-body-text;
51
+ line-height: calc(var(--body-line-height) * var(--body-font-size));
52
+ }
53
+ .ds-body--lg__text {
54
+ @apply util-body-lg-text;
55
+ line-height: calc(var(--body--lg-line-height) * var(--body--lg-font-size));
56
+ }
57
+ .ds-body--sm__text {
58
+ @apply util-body-sm-text;
59
+ line-height: calc(var(--body__sm-line-height) * var(--body__sm-font-size));
60
+ }
61
+
62
+ /* Hint */
63
+ .ds-hint {
64
+ @apply util-hint flex flex-row;
65
+ }
66
+ .ds-hint__text {
67
+ @apply util-hint-text;
68
+ line-height: calc(var(--hint-line-height) * var(--hint-font-size));
69
+ }
70
+ .ds-hint--lg__text {
71
+ @apply util-hint-lg-text;
72
+ line-height: calc(var(--hint--lg-line-height) * var(--hint--lg-font-size));
73
+ }
74
+ .ds-hint--sm__text {
75
+ @apply util-hint-sm-text;
76
+ line-height: calc(var(--hint--sm-line-height) * var(--hint--sm-font-size));
77
+ }
78
+
79
+ /* Link */
80
+ .ds-link {
81
+ @apply util-link focus:border-b-4 border-b-base-content;
82
+ }
83
+ .ds-link__text {
84
+ @apply util-link-text;
85
+ line-height: calc(var(--link-line-height) * var(--link-font-size));
86
+ }
87
+
88
+ /* HeadingCaption */
89
+ .ds-caption-xl {
90
+ @apply util-caption-xl;
91
+ }
92
+ .ds-caption-xl__text {
93
+ @apply util-caption-xl-text;
94
+ line-height: calc(
95
+ var(--caption-xl-line-height) * var(--caption-xl-font-size)
96
+ );
97
+ }
98
+ .ds-caption-lg {
99
+ @apply util-caption-lg;
100
+ }
101
+ .ds-caption-lg__text {
102
+ @apply util-caption-lg-text;
103
+ line-height: calc(
104
+ var(--caption-lg-line-height) * var(--caption-lg-font-size)
105
+ );
106
+ }
107
+ .ds-caption-md {
108
+ @apply util-caption-md;
109
+ }
110
+ .ds-caption-md__text {
111
+ @apply util-caption-md-text;
112
+ line-height: calc(
113
+ var(--caption-md-line-height) * var(--caption-md-font-size)
114
+ );
115
+ }
116
+
117
+ .ds-list {
118
+ @apply util-list;
119
+ }
120
+ .ds-list__item {
121
+ @apply util-list-item;
122
+ }
123
+ .ds-list--bullet {
124
+ @apply util-list-bullet;
125
+ }
126
+ .ds-list--number {
127
+ @apply util-list-number;
128
+ }
@@ -0,0 +1,23 @@
1
+ /* stylelint-disable digigov/enforce-class-selector-namespace */
2
+
3
+ @tailwind utilities;
4
+
5
+ @layer utilities {
6
+ .util-warning-text {
7
+ @apply flex;
8
+ }
9
+ .util-warning-text-text {
10
+ font-size: var(--warning-text-font-size);
11
+ }
12
+ .util-warning-text__icon {
13
+ @apply md:min-h-10 w-10 h-10 rounded-3xl bg-base-content
14
+ print:bg-white print:border-2 print:border-base-content;
15
+ }
16
+ .util-warning-text__icon-text {
17
+ @apply text-base-content-invert font-bold leading-10 text-center
18
+ print:text-base-content;
19
+ }
20
+ .util-warning-text__assistive {
21
+ @apply absolute w-px h-px m-0 p-0 border-0 overflow-hidden !important;
22
+ }
23
+ }
@@ -1,5 +1,7 @@
1
+ @import './warning-text.common.css';
2
+
1
3
  .ds-warning-text {
2
- @apply flex py-4 px-0;
4
+ @apply util-warning-text py-4 px-0;
3
5
  font-size: var(--warning-text-font-size);
4
6
  &.ds-warning-text--dense,
5
7
  .ds-dense & {
@@ -12,12 +14,12 @@
12
14
  rounded-3xl md:min-h-10 min-w-10 h-fit mr-6 mt-1
13
15
  print:bg-white print:border-2 print:border-base-content print:text-base-content;
14
16
  }
15
- .ds-warning-text__text {
17
+ .ds-warning-text__content {
16
18
  @apply flex items-center;
17
19
  }
18
- .ds-warning-text__assistive {
19
- @apply absolute w-px h-px m-0 p-0 border-0 overflow-hidden whitespace-nowrap !important;
20
- clip: rect(0 0 0 0) !important;
21
- clip-path: inset(50%) !important;
22
- }
20
+ }
21
+ .ds-warning-text__assistive {
22
+ @apply absolute w-px h-px m-0 p-0 border-0 overflow-hidden whitespace-nowrap !important;
23
+ clip: rect(0 0 0 0) !important;
24
+ clip-path: inset(50%) !important;
23
25
  }
@@ -0,0 +1,22 @@
1
+ @import './warning-text.common.css';
2
+
3
+ .ds-warning-text {
4
+ @apply util-warning-text flex-row items-center mb-4;
5
+ }
6
+ .ds-warning-text__content {
7
+ @apply flex-1 flex;
8
+ }
9
+ .ds-warning-text__content__text {
10
+ /* @apply util-warning-text-text font-bold text-base-content flex-1; */
11
+ @apply text-base-content font-bold p-0 m-0;
12
+ font-size: var(--warning-text-font-size);
13
+ }
14
+ .ds-warning-text__icon {
15
+ @apply util-warning-text__icon mr-4;
16
+ }
17
+ .ds-warning-text__icon__text {
18
+ @apply util-warning-text__icon-text text-2xl;
19
+ }
20
+ .ds-warning-text__assistive {
21
+ @apply util-warning-text__assistive;
22
+ }
@@ -0,0 +1,26 @@
1
+ @import './utilities/index.native';
2
+ @import './components/button.native';
3
+ @import './components/copy-to-clipboard.native';
4
+ @import './components/layout.native';
5
+ @import './components/header.native';
6
+ @import './components/typography.native';
7
+ @import './components/card.native';
8
+ @import './components/blockquote.native';
9
+ @import './components/summary-list.native';
10
+ @import './components/details.native';
11
+ @import './components/dropdown.native';
12
+ @import './components/notification-banner.native';
13
+ @import './components/nav.native';
14
+ @import './components/phase-banner.native';
15
+ @import './components/svg-icons.native';
16
+ @import './components/panel.native';
17
+ @import './components/warning-text.native';
18
+ @import './components/form.native';
19
+ @import './components/checkboxes.native';
20
+ @import './components/radios.native';
21
+ @import './components/modal.native';
22
+ @import './components/loader.native';
23
+ @import './components/stack.native';
24
+ @import './components/chip.native';
25
+ @import './components/skeleton.native';
26
+ @import './components/accordion.native';
@@ -0,0 +1,141 @@
1
+ .ds-gap-1 {
2
+ @apply gap-1;
3
+ }
4
+ .ds-gap-2 {
5
+ @apply gap-2;
6
+ }
7
+ .ds-gap-4 {
8
+ @apply gap-4;
9
+ }
10
+ .ds-gap-6 {
11
+ @apply gap-6;
12
+ }
13
+ .ds-gap-8 {
14
+ @apply gap-8;
15
+ }
16
+ .ds-gap-10 {
17
+ @apply gap-10;
18
+ }
19
+ .ds-gap-12 {
20
+ @apply gap-12;
21
+ }
22
+ .ds-gap-xs-1 {
23
+ @apply gap-1;
24
+ }
25
+ .ds-gap-xs-2 {
26
+ @apply gap-2;
27
+ }
28
+ .ds-gap-xs-4 {
29
+ @apply gap-4;
30
+ }
31
+ .ds-gap-xs-5 {
32
+ @apply gap-5;
33
+ }
34
+ .ds-gap-xs-6 {
35
+ @apply gap-6;
36
+ }
37
+ .ds-gap-xs-8 {
38
+ @apply gap-8;
39
+ }
40
+ .ds-gap-xs-10 {
41
+ @apply gap-10;
42
+ }
43
+ .ds-gap-xs-12 {
44
+ @apply gap-12;
45
+ }
46
+ .ds-gap-sm-1 {
47
+ @apply sm:gap-1;
48
+ }
49
+ .ds-gap-sm-2 {
50
+ @apply sm:gap-2;
51
+ }
52
+ .ds-gap-sm-4 {
53
+ @apply sm:gap-4;
54
+ }
55
+ .ds-gap-sm-5 {
56
+ @apply sm:gap-5;
57
+ }
58
+ .ds-gap-sm-6 {
59
+ @apply sm:gap-6;
60
+ }
61
+ .ds-gap-sm-8 {
62
+ @apply sm:gap-8;
63
+ }
64
+ .ds-gap-sm-10 {
65
+ @apply sm:gap-10;
66
+ }
67
+ .ds-gap-sm-12 {
68
+ @apply sm:gap-12;
69
+ }
70
+ .ds-gap-md-1 {
71
+ @apply md:gap-1;
72
+ }
73
+ .ds-gap-md-2 {
74
+ @apply md:gap-2;
75
+ }
76
+ .ds-gap-md-4 {
77
+ @apply md:gap-4;
78
+ }
79
+ .ds-gap-md-5 {
80
+ @apply md:gap-5;
81
+ }
82
+ .ds-gap-md-6 {
83
+ @apply md:gap-6;
84
+ }
85
+ .ds-gap-md-8 {
86
+ @apply md:gap-8;
87
+ }
88
+ .ds-gap-md-10 {
89
+ @apply md:gap-10;
90
+ }
91
+ .ds-gap-md-12 {
92
+ @apply md:gap-12;
93
+ }
94
+ .ds-gap-lg-1 {
95
+ @apply lg:gap-1;
96
+ }
97
+ .ds-gap-lg-2 {
98
+ @apply lg:gap-2;
99
+ }
100
+ .ds-gap-lg-4 {
101
+ @apply lg:gap-4;
102
+ }
103
+ .ds-gap-lg-5 {
104
+ @apply lg:gap-5;
105
+ }
106
+ .ds-gap-lg-6 {
107
+ @apply lg:gap-6;
108
+ }
109
+ .ds-gap-lg-8 {
110
+ @apply lg:gap-8;
111
+ }
112
+ .ds-gap-lg-10 {
113
+ @apply lg:gap-10;
114
+ }
115
+ .ds-gap-lg-12 {
116
+ @apply lg:gap-12;
117
+ }
118
+ .ds-gap-xl-1 {
119
+ @apply xl:gap-1;
120
+ }
121
+ .ds-gap-xl-2 {
122
+ @apply xl:gap-2;
123
+ }
124
+ .ds-gap-xl-4 {
125
+ @apply xl:gap-4;
126
+ }
127
+ .ds-gap-xl-5 {
128
+ @apply xl:gap-5;
129
+ }
130
+ .ds-gap-xl-6 {
131
+ @apply xl:gap-6;
132
+ }
133
+ .ds-gap-xl-8 {
134
+ @apply xl:gap-8;
135
+ }
136
+ .ds-gap-xl-10 {
137
+ @apply xl:gap-10;
138
+ }
139
+ .ds-gap-xl-12 {
140
+ @apply xl:gap-12;
141
+ }