@dialpad/dialtone-css 8.42.3 → 8.44.0-beta.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.
@@ -24,11 +24,9 @@
24
24
  --button-color-background: var(--dt-action-color-background-base-default);
25
25
  --button-color-border: transparent;
26
26
  --button-gap: calc(var(--button-padding-x) / 2);
27
- --button-border-radius: var(--dt-size-400);
28
- --button-border-width: var(--dt-size-100);
29
- --button-font-size: var(--dt-font-size-200);
30
- --button-font-weight: var(--dt-font-weight-medium);
31
- --button-line-height: var(--dt-font-line-height-200);
27
+ --button-border-radius: var(--dt-button-size-radius-md);
28
+ --button-border-width: var(--dt-size-border-100);
29
+ --button-typography: var(--dt-typography-button-md);
32
30
  --button-padding-y-xs: calc(
33
31
  calc(var(--dt-space-400) - var(--dt-space-100)) - var(--button-border-width)
34
32
  ); // ((8 - 1) - border-width)
@@ -80,10 +78,7 @@
80
78
  box-sizing: border-box;
81
79
  padding: var(--button-padding-y) var(--button-padding-x);
82
80
  color: var(--button-color-text);
83
- font-weight: var(--button-font-weight);
84
- font-size: var(--button-font-size);
85
- font-family: inherit;
86
- line-height: var(--button-line-height);
81
+ font: var(--button-typography);
87
82
  text-transform: inherit;
88
83
  text-decoration: none;
89
84
  vertical-align: middle;
@@ -92,10 +87,9 @@
92
87
  border-style: solid;
93
88
  border-width: var(--button-border-width);
94
89
  border-radius: var(--button-border-radius);
95
- box-shadow: var(--button--bs);
96
90
  cursor: pointer;
97
91
  transition-timing-function: var(--ttf-out-quint);
98
- transition-duration: var(--td200);
92
+ transition-duration: var(--td100);
99
93
  transition-property: background-color, border, box-shadow;
100
94
  user-select: none;
101
95
  fill: currentColor;
@@ -139,18 +133,19 @@
139
133
  // $$ EXTRA SMALL
140
134
  // ----------------------------------------------------------------------------
141
135
  .d-btn--xs {
136
+ --button-typography: var(--dt-typography-button-xs);
142
137
  --button-padding-y: var(--button-padding-y-xs);
143
138
  --button-padding-x: var(--button-padding-x-xs);
144
- --button-font-size: var(--dt-font-size-100);
145
- --button-border-radius: var(--dt-size-300);
139
+ --button-border-radius: var(--dt-button-size-radius-xs);
146
140
  }
147
141
 
148
142
  // $$ SMALL
149
143
  // ----------------------------------------------------------------------------
150
144
  .d-btn--sm {
145
+ --button-typography: var(--dt-typography-button-sm);
151
146
  --button-padding-y: var(--button-padding-y-sm);
152
147
  --button-padding-x: var(--button-padding-x-sm);
153
- --button-font-size: var(--dt-font-size-100);
148
+ --button-border-radius: var(--dt-button-size-radius-sm);
154
149
  }
155
150
 
156
151
  // $$ MEDIUM
@@ -162,20 +157,19 @@
162
157
  // $$ LARGE
163
158
  // ----------------------------------------------------------------------------
164
159
  .d-btn--lg {
160
+ --button-typography: var(--dt-typography-button-lg);
165
161
  --button-padding-y: var(--button-padding-y-lg);
166
162
  --button-padding-x: var(--button-padding-x-lg);
167
- --button-font-size: var(--dt-font-size-300);
168
- --button-border-radius: var(--dt-size-450);
163
+ --button-border-radius: var(--dt-button-size-radius-lg);
169
164
  }
170
165
 
171
166
  // $$ EXTRA LARGE
172
167
  // ----------------------------------------------------------------------------
173
168
  .d-btn--xl {
169
+ --button-typography: var(--dt-typography-button-xl);
174
170
  --button-padding-y: var(--button-padding-y-xl);
175
171
  --button-padding-x: var(--button-padding-x-xl);
176
- --button-font-size: var(--dt-font-size-400);
177
- --button-font-weight: var(--dt-font-weight-normal);
178
- --button-border-radius: var(--dt-size-500);
172
+ --button-border-radius: var(--dt-button-size-radius-xl);
179
173
  }
180
174
 
181
175
  // ============================================================================
@@ -17,18 +17,18 @@
17
17
  width: calc(var(--dt-size-925) + var(--dt-size-600) + var(--dt-size-400));
18
18
  height: 100%;
19
19
  background-color: var(--dt-color-surface-primary);
20
- border-radius: var(--dt-size-300);
20
+ border-radius: var(--dt-size-radius-300);
21
21
 
22
22
  &--header {
23
23
  position: relative;
24
- padding: var(--dt-space-300) var(--dt-space-300) 0 var(--dt-space-400);
24
+ padding: var(--dt-space-300) var(--dt-space-300) 0;
25
25
 
26
26
  &::after {
27
27
  position: absolute;
28
28
  right: 0;
29
29
  bottom: 0;
30
30
  left: 0;
31
- height: var(--dt-size-100);
31
+ height: var(--dt-size-border-200);
32
32
  background-color: var(--dt-color-surface-moderate) !important;
33
33
  content: '';
34
34
  }
@@ -50,22 +50,26 @@
50
50
  height: calc(var(--dt-size-650) + var(--dt-size-400) + var(--dt-size-200));
51
51
  padding: 0 var(--dt-space-500);
52
52
  background: var(--dt-color-surface-secondary);
53
- border-top: var(--dt-size-100) solid var(--dt-color-border-subtle);
53
+ border-top: var(--dt-size-border-100) solid var(--dt-color-border-subtle);
54
54
  }
55
55
 
56
56
  &__tabset-list {
57
- gap: var(--dt-space-300);
57
+ gap: var(--dt-space-0);
58
+ justify-content: space-between;
58
59
 
59
60
  &::after {
60
61
  background-color: var(--dt-color-surface-moderate) !important;
61
62
  }
62
63
 
63
- button {
64
- padding: var(--dt-space-400);
64
+ .d-tab {
65
+ --tab-padding-y: var(--dt-space-400);
66
+ --tab-padding-x: var(--dt-space-300);
67
+
68
+ flex-grow: 1;
65
69
 
66
70
  &.d-tab--selected {
67
71
  &::after {
68
- height: var(--dt-size-200);
72
+ height: var(--dt-size-border-200);
69
73
  }
70
74
  }
71
75
  }
@@ -77,8 +81,8 @@
77
81
  gap: var(--dt-space-300);
78
82
  align-items: flex-start;
79
83
  padding: var(--dt-space-300);
80
- background: rgba(0, 0, 0, 0.05);
81
- border-radius: calc(var(--dt-size-600) + var(--dt-size-400));
84
+ background: var(--dt-color-surface-moderate-opaque);
85
+ border-radius: var(--dt-size-radius-pill);
82
86
 
83
87
  button {
84
88
  width: var(--dt-size-600);
@@ -86,19 +90,18 @@
86
90
  margin: 0;
87
91
  padding: 0;
88
92
  background: none;
89
- border: none;
93
+ border: var(--dt-size-border-100) solid transparent;
90
94
  border-radius: calc(var(--dt-size-550) + var(--dt-size-300));
91
95
  outline: none;
92
96
  cursor: pointer;
93
97
 
94
98
  &:hover {
95
- background: rgba(0, 0, 0, 0.1);
96
- border-radius: calc(var(--dt-size-550) + var(--dt-size-300));
99
+ background: var(--dt-color-surface-moderate-opaque);
97
100
  }
98
101
 
102
+ &:active,
99
103
  &.selected {
100
- border: var(--dt-size-100) solid rgba(0, 0, 0, 0.25);
101
- border-radius: calc(var(--dt-size-550) + var(--dt-size-300));
104
+ border-color: var(--dt-color-border-bold);
102
105
  }
103
106
  }
104
107
  }
@@ -110,9 +113,9 @@
110
113
  height: var(--dt-size-625);
111
114
  margin: 0;
112
115
  padding: calc(var(--dt-space-350) + var(--dt-space-100));
113
- background: rgba(0, 0, 0, 0.1);
116
+ background: var(--dt-color-surface-moderate-opaque);
114
117
  border: none;
115
- border-radius: calc(var(--dt-size-550) + var(--dt-size-300));
118
+ border-radius: var(--dt-size-radius-circle);
116
119
  outline: none;
117
120
  cursor: pointer;
118
121
 
@@ -126,10 +129,10 @@
126
129
  min-height: calc(var(--dt-size-905) + var(--dt-size-600) + var(--dt-size-100));
127
130
 
128
131
  p {
129
- margin-bottom: var(--dt-space-300);
130
- font-weight: 700;
131
- font-size: var(--dt-size-450);
132
- letter-spacing: -0.01em;
132
+ padding-bottom: var(--dt-space-300);
133
+ color: var(--dt-color-foreground-secondary);
134
+ font: var(--dt-typography-headline-eyebrow);
135
+ text-transform: var(--dt-typography-headline-eyebrow-text-case);
133
136
  }
134
137
  }
135
138
 
@@ -138,7 +141,7 @@
138
141
  top: 0;
139
142
  width: 100%;
140
143
  margin: 0;
141
- padding: var(--dt-space-525) var(--dt-space-500) 0 var(--dt-space-500);
144
+ padding: var(--dt-space-500) var(--dt-space-500) 0 var(--dt-space-500);
142
145
  background: var(--dt-color-surface-primary);
143
146
  }
144
147
 
@@ -151,13 +154,13 @@
151
154
 
152
155
  div:not(:first-child) {
153
156
  p {
154
- margin-top: calc(var(--dt-space-525) + var(--dt-space-200));
157
+ margin-top: var(--dt-space-500);
155
158
  }
156
159
  }
157
160
  }
158
161
 
159
162
  &__search-label {
160
- margin-top: calc(var(--dt-space-525));
163
+ padding-top: var(--dt-space-500);
161
164
  }
162
165
 
163
166
  &__tab {
@@ -168,6 +171,7 @@
168
171
  max-width: calc(var(--dt-size-925) + var(--dt-size-400));
169
172
  // We use this margin left to align the emoji list with the tabset label
170
173
  margin-left: var(--dt-space-350-negative);
174
+ padding-top: var(--dt-space-300);
171
175
 
172
176
  button {
173
177
  display: flex;
@@ -179,17 +183,17 @@
179
183
  padding: 0;
180
184
  background: none;
181
185
  border: none;
182
- border-radius: 50%;
186
+ border-radius: var(--dt-size-radius-circle);
183
187
  outline: none;
184
188
  cursor: pointer;
185
189
 
186
190
  &:hover,
187
191
  &:active {
188
- background: rgba(0, 0, 0, 0.1);
192
+ background: var(--dt-color-surface-moderate-opaque);
189
193
  }
190
194
 
191
195
  &.hover-emoji {
192
- background: rgba(0, 0, 0, 0.1);
196
+ background: var(--dt-color-surface-moderate-opaque);
193
197
  }
194
198
 
195
199
  &:focus {
@@ -201,8 +205,7 @@
201
205
  &__search {
202
206
  position: relative;
203
207
  z-index: 1;
204
- margin: var(--dt-space-500) var(--dt-space-550) 0 var(--dt-space-500);
205
- background-color: var(--dt-color-surface-primary);
208
+ padding: var(--dt-space-500) 0 0 0;
206
209
  }
207
210
 
208
211
  &__search-button {
@@ -221,5 +224,7 @@
221
224
  align-items: center;
222
225
  width: 100%;
223
226
  max-width: calc(var(--dt-size-905) + var(--dt-size-550) + var(--dt-size-200));
227
+ color: var(--dt-color-foreground-tertiary);
228
+ font: var(--dt-typography-body-md);
224
229
  }
225
230
  }
@@ -29,7 +29,8 @@ fieldset {
29
29
  // ============================================================================
30
30
  // $ LABELS
31
31
  // ----------------------------------------------------------------------------
32
- .d-label {
32
+ .d-label,
33
+ .d-label--md {
33
34
  display: flex;
34
35
  flex: 1 0%;
35
36
  align-items: baseline;
@@ -37,10 +38,7 @@ fieldset {
37
38
  box-sizing: border-box;
38
39
  margin-bottom: var(--dt-space-300);
39
40
  color: var(--dt-color-foreground-secondary);
40
- font-weight: var(--dt-font-weight-semi-bold);
41
- font-size: var(--dt-font-size-200);
42
- font-family: inherit;
43
- line-height: var(--dt-font-line-height-300);
41
+ font: var(--dt-typography-label-md);
44
42
  word-break: break-word;
45
43
  overflow-wrap: break-word;
46
44
 
@@ -30,12 +30,11 @@
30
30
  --input-color-background: var(--dt-inputs-color-background-default);
31
31
  --input-color-background-disabled: var(--dt-inputs-color-background-disabled);
32
32
  --input-color-text: var(--dt-inputs-color-foreground-default);
33
- --input-border-width: calc(var(--dt-size-100) + var(--dt-size-50)); // 1.5
34
- --input-border-radius: var(--dt-size-400);
33
+ --input-border-width: var(--dt-size-border-150);
34
+ --input-border-radius: var(--dt-inputs-size-radius-md);
35
35
  --input-padding-y: calc(var(--dt-space-400) - var(--input-border-width));
36
36
  --input-padding-x: calc((var(--dt-space-500) - var(--dt-space-300)) - var(--input-border-width));
37
- --input-font-size: var(--dt-font-size-200);
38
- --input-line-height: var(--dt-font-line-height-200);
37
+ --input-typography: var(--dt-typography-inputs-md);
39
38
 
40
39
  position: relative;
41
40
  display: inline-flex;
@@ -45,20 +44,44 @@
45
44
  min-width: 0;
46
45
  padding: var(--input-padding-y) var(--input-padding-x);
47
46
  color: var(--input-color-text);
48
- font-weight: inherit;
49
- font-size: var(--input-font-size);
50
- font-family: inherit;
51
- line-height: var(--input-line-height);
47
+ font: var(--input-typography);
52
48
  background-color: var(--input-color-background);
53
49
  border: var(--input-border-width) solid var(--input-color-border);
54
50
  border-radius: var(--input-border-radius);
55
51
  outline: none;
56
52
  box-shadow: none;
57
- transition-timing-function: var(--ttf-in-out);
58
- transition-duration: var(--td100);
59
- transition-property: box-shadow, background-color;
60
53
  appearance: none;
61
- caret-color: var(--input-color-text);
54
+ caret-color: fieldtext;
55
+
56
+ &:has(.d-textarea) {
57
+ border-end-end-radius: var(--dt-inputs-size-radius-xs);
58
+ }
59
+
60
+ &:has(.d-input--xs),
61
+ &:has(.d-textarea--xs) {
62
+ --input-border-radius: var(--dt-inputs-size-radius-xs);
63
+ }
64
+
65
+ &:has(.d-input--sm),
66
+ &:has(.d-textarea--sm) {
67
+ --input-border-radius: var(--dt-inputs-size-radius-sm);
68
+ }
69
+
70
+ &:has(.d-input--md),
71
+ &:has(.d-textarea--md) {
72
+ --input-border-radius: var(--dt-inputs-size-radius-md);
73
+ }
74
+
75
+ &:has(.d-input--lg),
76
+ &:has(.d-textarea--lg) {
77
+ --input-border-radius: var(--dt-inputs-size-radius-lg);
78
+ }
79
+
80
+ &:has(.d-input--xl),
81
+ &:has(.d-textarea--xl) {
82
+ --input-border-radius: var(--dt-inputs-size-radius-xl);
83
+ }
84
+
62
85
 
63
86
  // -- Placeholder copy
64
87
  &::placeholder {
@@ -74,7 +97,7 @@
74
97
  --input-color-background: var(--dt-inputs-color-background-focus);
75
98
  --input-color-border: var(--dt-inputs-color-border-focus) !important;
76
99
 
77
- box-shadow: 0 0 0 var(--dt-size-100) var(--dt-inputs-color-border-focus) inset;
100
+ box-shadow: 0 0 0 var(--dt-size-border-100) var(--dt-inputs-color-border-focus) inset;
78
101
  }
79
102
  // -- DISABLED / READ-ONLY
80
103
  &[disabled],
@@ -203,14 +226,12 @@
203
226
  #d-internal__input-and-select-xl();
204
227
  }
205
228
 
206
-
207
229
  // ============================================================================
208
230
  // $ TEXTAREAS
209
231
  // ----------------------------------------------------------------------------
210
232
  .d-textarea {
211
233
  min-height: calc(var(--dt-size-300) * 20); // 80
212
234
  vertical-align: top;
213
- border-bottom-right-radius: var(--dt-size-300);
214
235
  resize: vertical;
215
236
  scroll-padding-block: var(--input-padding-y);
216
237
  }
@@ -30,7 +30,7 @@
30
30
  --check-radio-color-background: var(--dt-inputs-color-background-default);
31
31
  --check-radio-color-background-checked: var(--dt-checkbox-color-background-checked);
32
32
  --check-radio-color-background-disabled: var(--dt-inputs-color-background-disabled);
33
- --check-radio-border-width: calc(var(--dt-size-100) + var(--dt-size-50)); // 1.5
33
+ --check-radio-border-width: var(--dt-size-border-150);
34
34
 
35
35
  // [1] Check to see if we can use custom styles, if so reset the defaults
36
36
  // ------------------------------------------------------------------------
@@ -155,9 +155,7 @@
155
155
  flex-direction: column;
156
156
  align-items: flex-start;
157
157
  color: var(--dt-color-foreground-primary);
158
- font-weight: var(--dt-font-weight-normal);
159
- font-size: var(--dt-font-size-200);
160
- line-height: var(--dt-font-line-height-400);
158
+ font: var(--dt-typography-label-md-plain);
161
159
  cursor: pointer;
162
160
  }
163
161
 
@@ -179,7 +177,7 @@
179
177
  background-repeat: no-repeat;
180
178
  background-position: center center;
181
179
  background-size: contain;
182
- border-radius: var(--dt-size-300);
180
+ border-radius: var(--dt-size-radius-300);
183
181
 
184
182
  &:focus-visible,
185
183
  &:checked:focus-visible {
@@ -14,12 +14,20 @@
14
14
  // $ WRAPPERS
15
15
  // ----------------------------------------------------------------------------
16
16
  .d-tablist {
17
+ // -- COMPONENT CSS VARS
18
+ // ------------------------------------------------------------------------
19
+ --tab-color-background: var(--dt-action-color-background-base-default);
20
+ --tab-color-text: var(--dt-action-color-foreground-muted-default);
21
+ --tab-font-style: var(--dt-typography-button-md);
22
+ --tab-border-radius: var(--dt-button-size-radius-md);
23
+ --tab-padding-x: calc(var(--dt-space-450) - var(--dt-size-border-100));
24
+ --tab-padding-y: calc(var(--dt-space-400) - var(--dt-size-border-100));
25
+
17
26
  position: relative;
18
27
  display: flex;
19
28
  flex-wrap: wrap;
20
29
  gap: var(--dt-space-300);
21
- color: var(--dt-color-foreground-muted-default);
22
- font-size: var(--dt-font-size-200);
30
+ align-items: baseline;
23
31
 
24
32
  &:focus {
25
33
  outline: 0;
@@ -28,50 +36,19 @@
28
36
  // Add a bottom border unless no border is requested
29
37
  &:not(.d-tablist--no-border)::after {
30
38
  position: absolute;
31
- right: 0;
32
- bottom: 0;
33
- left: 0;
39
+ inset-inline: 0;
40
+ inset-block-end: 0;
34
41
  z-index: var(--zi-base1);
35
- height: var(--dt-size-100);
42
+ block-size: var(--dt-size-border-100);
36
43
  background-color: var(--dt-color-border-default);
37
44
  content: '';
38
45
  }
39
-
40
- // ============================================================================
41
- // $ SIZES
42
- // ----------------------------------------------------------------------------
43
- &--sm {
44
- font-size: var(--dt-font-size-100);
45
-
46
- .d-tab {
47
- --tab-padding-x: var(--dt-space-400);
48
- --tab-padding-y: var(--dt-space-400);
49
- --tab-padding-bottom: calc(var(--tab-padding-y) + var(--dt-space-100));
50
- --tab-border-radius-top: var(--dt-size-radius-300);
51
-
52
- .d-tablist--no-border &:not(.d-tab--selected) {
53
- border-radius: var(--tab-border-radius-top);
54
- }
55
- }
56
- }
57
46
  }
58
47
 
59
-
60
48
  // ============================================================================
61
49
  // $ BASE STYLE
62
50
  // ----------------------------------------------------------------------------
63
51
  .d-tab {
64
- // -- COMPONENT CSS VARS
65
- // ------------------------------------------------------------------------
66
- --tab-color-background: var(--dt-action-color-background-base-default);
67
- --tab-color-text: var(--dt-action-color-foreground-muted-default);
68
- --tab-line-height: var(--dt-font-line-height-200);
69
- --tab-font-weight: var(--dt-font-weight-medium);
70
- --tab-border-radius-top: var(--dt-size-radius-400);
71
- --tab-padding-x: var(--dt-space-450);
72
- --tab-padding-y: var(--dt-space-400);
73
- --tab-padding-bottom: calc(var(--tab-padding-y) + var(--dt-space-100));
74
-
75
52
  position: relative;
76
53
  display: inline-flex;
77
54
  gap: var(--dt-space-400);
@@ -79,40 +56,36 @@
79
56
  justify-content: center;
80
57
  box-sizing: border-box;
81
58
  padding: var(--tab-padding-y) var(--tab-padding-x);
82
- padding-bottom: var(--tab-padding-bottom);
83
59
  color: var(--tab-color-text);
84
- font: inherit;
85
- font-weight: var(--tab-font-weight);
86
- line-height: var(--tab-line-height);
60
+ font: var(--tab-font-style);
87
61
  background-color: var(--tab-color-background);
88
- border: 0;
89
- border-radius: var(--tab-border-radius-top) var(--tab-border-radius-top) 0 0;
62
+ border: var(--dt-size-border-100) solid transparent;
63
+ border-radius: var(--tab-border-radius) var(--tab-border-radius) 0 0;
90
64
  cursor: pointer;
91
65
  transition-timing-function: var(--ttf-out-quint);
92
- transition-duration: var(--td200);
66
+ transition-duration: var(--td100);
93
67
  transition-property: background-color, border, color, box-shadow;
94
68
  fill: currentColor;
95
69
 
96
70
  .d-tablist--no-border &:not(.d-tab--selected) {
97
- border-radius: var(--tab-border-radius-top);
71
+ border-radius: var(--tab-border-radius);
98
72
  }
99
73
 
100
74
  &:first-of-type {
101
- margin-left: 0;
75
+ margin-inline-start: 0;
102
76
  }
103
77
 
104
78
  &:last-of-type {
105
- margin-right: 0;
79
+ margin-inline-end: 0;
106
80
  }
107
81
 
108
82
  &::after {
109
83
  position: absolute;
110
- right: 0;
111
- bottom: 0;
112
- left: 0;
113
- height: var(--dt-size-200);
84
+ block-size: var(--dt-size-border-200);
114
85
  background-color: var(--tab-color-background);
115
86
  content: '';
87
+ inset-inline: var(--dt-size-100-negative) var(--dt-size-100-negative);
88
+ inset-block-end: var(--dt-size-100-negative);
116
89
 
117
90
  .d-tablist--no-border & {
118
91
  background-color: transparent;
@@ -144,6 +117,19 @@
144
117
  @media (prefers-reduced-motion) {
145
118
  transition: none;
146
119
  }
120
+
121
+ // ============================================================================
122
+ // $ SIZES
123
+ // ----------------------------------------------------------------------------
124
+ .d-tablist--sm & {
125
+ --tab-padding-x: calc(var(--dt-space-400) - var(--dt-size-border-100));
126
+ --tab-border-radius: var(--dt-button-size-radius-xs);
127
+ --tab-font-style: var(--dt-typography-button-xs);
128
+
129
+ .d-tablist--no-border &:not(.d-tab--selected) {
130
+ border-radius: var(--tab-border-radius);
131
+ }
132
+ }
147
133
  }
148
134
 
149
135
  // ============================================================================
@@ -174,7 +160,6 @@
174
160
  }
175
161
  }
176
162
 
177
-
178
163
  // ============================================================================
179
164
  // $ INVERTED STYLE
180
165
  // ----------------------------------------------------------------------------
@@ -25,9 +25,6 @@
25
25
  @import 'components/collapsible';
26
26
  @import 'components/combobox';
27
27
  @import 'components/datepicker';
28
- @import 'components/emoji';
29
- @import 'components/emoji-text-wrapper';
30
- @import 'components/emoji-picker';
31
28
  @import 'components/empty-state';
32
29
  @import 'components/forms';
33
30
  @import 'components/image-viewer';
@@ -53,6 +50,9 @@
53
50
  @import 'components/presence';
54
51
  @import 'components/icon';
55
52
  @import 'components/scrollbar';
53
+ @import 'components/emoji';
54
+ @import 'components/emoji-text-wrapper';
55
+ @import 'components/emoji-picker';
56
56
 
57
57
  // -- UTILITIES
58
58
  @import 'utilities/backgrounds';
@@ -69,6 +69,7 @@
69
69
  // ----------------------------------------------------------------------------
70
70
 
71
71
  // $$ FLEX GAPS
72
+ // TODO: Deprecated classes, remove on our next migration. https://dialpad.atlassian.net/browse/DLT-1763
72
73
  // ----------------------------------------------------------------------------
73
74
  .d-flg0 > * { --fl-gap: 0 !important; }
74
75
  .d-flg1 > * { --fl-gap: var(--dt-space-100) !important; }
@@ -38,6 +38,7 @@
38
38
  // ============================================================================
39
39
  // Defines the size of grid 'gaps' (lines). We generate a gap for
40
40
  // each defined spacing unit.
41
+ // TODO: Deprecated classes, remove on our next migration. https://dialpad.atlassian.net/browse/DLT-1763
41
42
  // ----------------------------------------------------------------------------
42
43
  .d-gcg-unset { grid-column-gap: unset !important; }
43
44
  .d-grg-unset { grid-row-gap: unset !important; }
@@ -105,3 +105,13 @@
105
105
  .d-px-unset { padding-right: unset !important; padding-left: unset !important; }
106
106
 
107
107
  .d-py-unset { padding-top: unset !important; padding-bottom: unset !important; }
108
+
109
+ // ============================================================================
110
+ // $ GAP
111
+ // ============================================================================
112
+ // Defines the size of 'gaps' (lines). We generate a gap for
113
+ // each defined spacing unit.
114
+ // ----------------------------------------------------------------------------
115
+ .d-cg-unset { column-gap: unset !important; }
116
+ .d-rg-unset { row-gap: unset !important; }
117
+ .d-g-unset { gap: unset !important; }