@acorex/styles 22.0.0-next.9 → 22.1.0-next.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.
@@ -1,4 +1,11 @@
1
1
  .ax-action-sheet-panel {
2
+ --ax-comp-action-sheet-shadow-rest: var(--ax-sys-effect-modal);
3
+ --ax-comp-action-sheet-inner-border-rest: var(--ax-sys-inner-border-surface);
4
+ --ax-comp-action-sheet-contrast-inner-border-rest: var(--ax-sys-contrast-inner-border-surface);
5
+ --ax-comp-action-sheet-contrast-surface-overlay-rest: var(--ax-sys-contrast-surface-overlay-surface);
6
+ --ax-comp-action-sheet-backdrop-filter-rest: var(--ax-sys-backdrop-filter-surface);
7
+ --ax-comp-action-sheet-surface-overlay-rest: var(--ax-sys-surface-overlay-modal);
8
+
2
9
  @apply fixed! top-auto! right-auto! bottom-0! left-1/2! block! h-auto! w-auto! max-w-none!;
3
10
  transform: translateX(-50%) !important;
4
11
  align-items: unset !important;
@@ -8,10 +15,20 @@
8
15
  border-top-left-radius: var(--ax-comp-action-sheet-border-radius-size);
9
16
  border-top-right-radius: var(--ax-comp-action-sheet-border-radius-size);
10
17
  background-color: rgba(var(--ax-sys-color-surface-lowest));
11
- --ax-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
12
- --ax-shadow-colored: 0 10px 15px -3px var(--ax-shadow-color), 0 4px 6px -4px var(--ax-shadow-color);
18
+ background-image:
19
+ linear-gradient(
20
+ var(--ax-comp-action-sheet-contrast-surface-overlay-rest),
21
+ var(--ax-comp-action-sheet-contrast-surface-overlay-rest)
22
+ ),
23
+ linear-gradient(
24
+ var(--ax-comp-action-sheet-surface-overlay-rest),
25
+ var(--ax-comp-action-sheet-surface-overlay-rest)
26
+ );
13
27
  box-shadow:
14
- var(--ax-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--ax-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--ax-shadow);
28
+ var(--ax-comp-action-sheet-contrast-inner-border-rest), var(--ax-comp-action-sheet-inner-border-rest),
29
+ var(--ax-comp-action-sheet-shadow-rest);
30
+ backdrop-filter: var(--ax-comp-action-sheet-backdrop-filter-rest);
31
+ -webkit-backdrop-filter: var(--ax-comp-action-sheet-backdrop-filter-rest);
15
32
  animation: 1s both ax-fadeInUp;
16
33
  animation-duration: var(--ax-sys-transition-duration);
17
34
  }
@@ -7,9 +7,7 @@
7
7
  overflow-x: auto;
8
8
  overflow-y: hidden;
9
9
  font-size: 0.875rem;
10
- /* 14px */
11
10
  line-height: 1.25rem;
12
- /* 20px */
13
11
  text-transform: capitalize;
14
12
  &.ax-state-disabled {
15
13
  cursor: not-allowed;
@@ -19,28 +17,51 @@
19
17
  }
20
18
 
21
19
  .ax-overlay-pane {
20
+ --ax-comp-dropdown-shadow-rest: var(--ax-sys-effect-overlay);
21
+ --ax-comp-dropdown-inner-border-rest: var(--ax-sys-inner-border-surface);
22
+ --ax-comp-dropdown-contrast-inner-border-rest: var(--ax-sys-contrast-inner-border-surface);
23
+ --ax-comp-dropdown-contrast-surface-overlay-rest: var(--ax-sys-contrast-surface-overlay-surface);
24
+ --ax-comp-dropdown-backdrop-filter-rest: var(--ax-sys-backdrop-filter-surface);
25
+ --ax-comp-dropdown-surface-overlay-rest: var(--ax-sys-surface-overlay-overlay);
26
+
22
27
  margin: 0.25rem 0;
23
- /* min-width: 10rem; */
24
28
  width: 100%;
25
29
  height: fit-content;
26
30
  overflow: hidden;
27
31
  border-width: 1px;
28
32
  border-color: rgba(var(--ax-sys-color-border-lightest-surface));
33
+ /* Resolve text against local theme tokens (overlays are portaled). */
34
+ color: rgba(var(--ax-sys-color-on-surface));
35
+ /*
36
+ * Use opaque rgba(channels) only.
37
+ * Do NOT use rgb(channels / alpha) or rgba(channels, alpha):
38
+ * LightningCSS rewrites those to slash-syntax which is invalid with
39
+ * comma-separated RGB tokens (255, 255, 255) and yields a transparent panel.
40
+ */
29
41
  background-color: rgba(var(--ax-sys-color-lightest-surface));
30
- --ax-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
31
- --ax-shadow-colored: 0 4px 6px -1px var(--ax-shadow-color), 0 2px 4px -2px var(--ax-shadow-color);
42
+ background-image:
43
+ linear-gradient(
44
+ var(--ax-comp-dropdown-contrast-surface-overlay-rest),
45
+ var(--ax-comp-dropdown-contrast-surface-overlay-rest)
46
+ ),
47
+ linear-gradient(
48
+ var(--ax-comp-dropdown-surface-overlay-rest),
49
+ var(--ax-comp-dropdown-surface-overlay-rest)
50
+ );
32
51
  box-shadow:
33
- var(--ax-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--ax-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--ax-shadow);
52
+ var(--ax-comp-dropdown-contrast-inner-border-rest), var(--ax-comp-dropdown-inner-border-rest),
53
+ var(--ax-comp-dropdown-shadow-rest);
54
+ backdrop-filter: var(--ax-comp-dropdown-backdrop-filter-rest);
55
+ -webkit-backdrop-filter: var(--ax-comp-dropdown-backdrop-filter-rest);
34
56
  border-top-left-radius: var(--ax-comp-drop-down-border-top-left-radius, var(--ax-sys-border-radius));
35
57
  border-top-right-radius: var(--ax-comp-drop-down-border-top-right-radius, var(--ax-sys-border-radius));
36
58
  border-bottom-left-radius: var(--ax-comp-drop-down-border-bottom-left-radius, var(--ax-sys-border-radius));
37
59
  border-bottom-right-radius: var(--ax-comp-drop-down-border-bottom-right-radius, var(--ax-sys-border-radius));
38
- /* Replace the @include mixin with a normal media query */
60
+
39
61
  ax-header,
40
62
  ax-footer {
41
63
  background-color: rgba(var(--ax-sys-color-lightest-surface));
42
64
  padding: 0.75rem;
43
- /* 12px */
44
65
  }
45
66
 
46
67
  &.ax-overlay-center {
@@ -58,9 +79,13 @@
58
79
  }
59
80
  }
60
81
 
61
- .dark {
82
+ .ax-dark .ax-overlay-pane {
83
+ background-color: rgba(var(--ax-sys-color-darker-surface));
84
+ border-color: rgba(var(--ax-sys-color-border-darker-surface));
85
+ }
86
+
87
+ @supports not (backdrop-filter: blur(1px)) {
62
88
  .ax-overlay-pane {
63
- background-color: rgba(var(--ax-sys-color-darker-surface));
64
- border-color: rgba(var(--ax-sys-color-border-darker-surface));
89
+ --ax-comp-dropdown-backdrop-filter-rest: none;
65
90
  }
66
91
  }
@@ -2,7 +2,56 @@
2
2
 
3
3
  @layer base {
4
4
  .ax-editor-container {
5
+ --ax-comp-editor-shadow-rest: var(--ax-sys-effect-field-rest);
6
+ --ax-comp-editor-shadow-hover: var(--ax-sys-effect-field-hover);
7
+ --ax-comp-editor-shadow-focus: var(--ax-sys-effect-field-focus);
8
+ --ax-comp-editor-shadow-readonly: var(--ax-sys-effect-field-readonly);
9
+ --ax-comp-editor-shadow-disabled: var(--ax-sys-effect-field-disabled);
10
+ --ax-comp-editor-surface-overlay-rest: var(--ax-sys-surface-overlay-field-rest);
11
+ --ax-comp-editor-surface-overlay-hover: var(--ax-sys-surface-overlay-field-hover);
12
+ --ax-comp-editor-surface-overlay-focus: var(--ax-sys-surface-overlay-field-focus);
13
+ --ax-comp-editor-surface-overlay-readonly: var(--ax-sys-surface-overlay-field-readonly);
14
+ --ax-comp-editor-surface-overlay-disabled: var(--ax-sys-surface-overlay-field-disabled);
15
+ --ax-comp-editor-highlight-rest: var(--ax-sys-highlight-control-subtle);
16
+ --ax-comp-editor-inner-border-rest: var(--ax-sys-inner-border-control);
17
+ --ax-comp-editor-contrast-inner-border-rest: var(--ax-sys-contrast-inner-border-field);
18
+ --ax-comp-editor-contrast-inner-border-hover: var(--ax-sys-contrast-inner-border-field);
19
+ --ax-comp-editor-contrast-inner-border-focus: var(--ax-sys-contrast-inner-border-field);
20
+ --ax-comp-editor-contrast-inner-border-invalid: var(--ax-sys-contrast-inner-border-invalid);
21
+ --ax-comp-editor-contrast-surface-overlay-rest: var(--ax-sys-contrast-surface-overlay-field);
22
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-rest);
23
+ --ax-comp-editor-transition-duration: var(--ax-sys-motion-duration);
24
+ --ax-comp-editor-transition-timing: var(--ax-sys-motion-timing);
25
+
5
26
  @apply rounded-default h-default min-h-default relative flex items-center justify-between overflow-hidden px-3 py-3 text-sm leading-5;
27
+ /*
28
+ * Field inset/elevation only on the host. Contrast border is painted on ::after
29
+ * so native controls (textarea) cannot cover it.
30
+ */
31
+ box-shadow: var(--ax-comp-editor-shadow-rest);
32
+ background-image:
33
+ linear-gradient(
34
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
35
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
36
+ ),
37
+ linear-gradient(
38
+ var(--ax-comp-editor-surface-overlay-rest),
39
+ var(--ax-comp-editor-surface-overlay-rest)
40
+ );
41
+ transform: none;
42
+ transition-property: box-shadow, border-color, background-color, color;
43
+ transition-duration: var(--ax-comp-editor-transition-duration);
44
+ transition-timing-function: var(--ax-comp-editor-transition-timing);
45
+
46
+ &::after {
47
+ content: '';
48
+ position: absolute;
49
+ inset: 0;
50
+ border-radius: inherit;
51
+ pointer-events: none;
52
+ z-index: 1;
53
+ box-shadow: var(--ax-comp-editor-contrast-ring);
54
+ }
6
55
 
7
56
  .ax-content {
8
57
  @apply text-sm;
@@ -27,30 +76,55 @@
27
76
  }
28
77
 
29
78
  &.ax-state-error {
30
- @apply border-danger-600!;
79
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-invalid);
80
+ border-color: var(--ax-sys-contrast-border-invalid);
81
+
31
82
  &:focus-within {
32
- @apply outline-danger-light outline-2 outline-offset-0;
83
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-invalid);
84
+ outline: var(--ax-sys-contrast-focus-ring-invalid);
85
+ outline-offset: 0;
33
86
  }
34
87
  }
35
88
 
36
- /* Keep end padding for spin/clear controls, but not when a suffix button is attached */
37
89
  &:has(.ax-general-button-control, .ax-general-button-icon):not(:has(ax-suffix > ax-button)) {
38
90
  @apply pe-2;
39
91
  }
40
92
 
41
- ax-suffix > ax-icon,
42
- ax-prefix > ax-icon {
43
- @apply text-muted;
44
- }
45
-
46
93
  ax-prefix,
47
94
  ax-suffix {
48
95
  @apply flex items-center gap-2 self-stretch;
49
96
  }
50
97
 
98
+ /*
99
+ * Unified adornments (icon / text / kbd) inside prefix & suffix.
100
+ * Buttons keep their own look and stretch rules below.
101
+ */
102
+ ax-prefix:not(:has(> ax-button)),
103
+ ax-suffix:not(:has(> ax-button)) {
104
+ @apply shrink-0 items-center self-center;
105
+
106
+ > ax-icon,
107
+ > ax-text,
108
+ > ax-kbd {
109
+ @apply text-muted inline-flex max-h-full max-w-full items-center justify-center leading-none;
110
+ }
111
+
112
+ > ax-icon {
113
+ @apply size-4 text-sm;
114
+ }
115
+
116
+ > ax-text {
117
+ @apply text-sm whitespace-nowrap;
118
+ }
119
+
120
+ > ax-kbd {
121
+ @apply shrink-0;
122
+ }
123
+ }
124
+
51
125
  ax-prefix:has(> ax-button),
52
126
  ax-suffix:has(> ax-button) {
53
- @apply items-stretch;
127
+ @apply size-auto! w-auto! max-h-none! shrink-0 items-stretch! self-stretch!;
54
128
  }
55
129
 
56
130
  ax-prefix {
@@ -59,7 +133,6 @@
59
133
  }
60
134
  }
61
135
 
62
- /* Components layer so these beat button size utilities and spin-button pe-2 */
63
136
  @layer components {
64
137
  .ax-editor-container {
65
138
  &:has(ax-prefix > ax-button),
@@ -87,5 +160,99 @@
87
160
  @apply aspect-square size-auto! h-full w-auto!;
88
161
  }
89
162
  }
163
+
164
+ /* Field appearance — recessed inset for all looks; never outer elevation */
165
+ &:is(.ax-solid, .ax-outline, .ax-twotone, .ax-fill, .ax-flat, .ax-blank) {
166
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-rest);
167
+ box-shadow: var(--ax-comp-editor-shadow-rest);
168
+ background-image:
169
+ linear-gradient(
170
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
171
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
172
+ ),
173
+ linear-gradient(
174
+ var(--ax-comp-editor-surface-overlay-rest),
175
+ var(--ax-comp-editor-surface-overlay-rest)
176
+ );
177
+ transform: none;
178
+ }
179
+
180
+ &:is(.ax-solid, .ax-outline, .ax-twotone, .ax-fill, .ax-flat, .ax-blank):hover:not(
181
+ .ax-state-disabled,
182
+ .ax-state-readonly,
183
+ .ax-state-error
184
+ ) {
185
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-hover);
186
+ box-shadow: var(--ax-comp-editor-shadow-hover);
187
+ background-image:
188
+ linear-gradient(
189
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
190
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
191
+ ),
192
+ linear-gradient(
193
+ var(--ax-comp-editor-surface-overlay-hover),
194
+ var(--ax-comp-editor-surface-overlay-hover)
195
+ );
196
+ }
197
+
198
+ &:is(.ax-solid, .ax-outline, .ax-twotone, .ax-fill, .ax-flat, .ax-blank).ax-state-readonly {
199
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-rest);
200
+ box-shadow: var(--ax-comp-editor-shadow-readonly);
201
+ background-image:
202
+ linear-gradient(
203
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
204
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
205
+ ),
206
+ linear-gradient(
207
+ var(--ax-comp-editor-surface-overlay-readonly),
208
+ var(--ax-comp-editor-surface-overlay-readonly)
209
+ );
210
+ }
211
+
212
+ &:is(.ax-solid, .ax-outline, .ax-twotone, .ax-fill, .ax-flat, .ax-blank).ax-state-disabled {
213
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-rest);
214
+ box-shadow: var(--ax-comp-editor-shadow-disabled);
215
+ background-image:
216
+ linear-gradient(
217
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
218
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
219
+ ),
220
+ linear-gradient(
221
+ var(--ax-comp-editor-surface-overlay-disabled),
222
+ var(--ax-comp-editor-surface-overlay-disabled)
223
+ );
224
+ opacity: var(--ax-sys-contrast-disabled-opacity, 1);
225
+ }
226
+
227
+ &:is(.ax-solid, .ax-outline, .ax-twotone, .ax-fill, .ax-flat, .ax-blank):focus-within:not(
228
+ .ax-state-disabled,
229
+ .ax-state-readonly,
230
+ .ax-state-error
231
+ ) {
232
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-focus);
233
+ box-shadow: var(--ax-comp-editor-shadow-focus);
234
+ background-image:
235
+ linear-gradient(
236
+ var(--ax-comp-editor-contrast-surface-overlay-rest),
237
+ var(--ax-comp-editor-contrast-surface-overlay-rest)
238
+ ),
239
+ linear-gradient(
240
+ var(--ax-comp-editor-surface-overlay-focus),
241
+ var(--ax-comp-editor-surface-overlay-focus)
242
+ );
243
+ }
244
+
245
+ &.ax-state-error {
246
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-invalid);
247
+ border-color: var(--ax-sys-contrast-border-invalid);
248
+ box-shadow: var(--ax-comp-editor-shadow-rest);
249
+
250
+ &:focus-within {
251
+ --ax-comp-editor-contrast-ring: var(--ax-comp-editor-contrast-inner-border-invalid);
252
+ box-shadow: var(--ax-comp-editor-shadow-focus);
253
+ outline: var(--ax-sys-contrast-focus-ring-invalid);
254
+ outline-offset: 0;
255
+ }
256
+ }
90
257
  }
91
258
  }
@@ -0,0 +1,24 @@
1
+ /*
2
+ * Floating overlays opt out of Appearance + Contrast decorative boundaries.
3
+ * Theme (ax-light / ax-dark) and size still inherit from overlay visual context.
4
+ *
5
+ * Loaded after contrast/appearance theme sheets so these resets win on-pane.
6
+ */
7
+ :is(.ax-popup, ax-toast, .ax-overlay-pane, .ax-dialog) {
8
+ --ax-sys-contrast-inner-border-surface: 0 0 #0000;
9
+ --ax-sys-contrast-surface-overlay-surface: transparent;
10
+
11
+ --ax-sys-inner-border-surface: 0 0 #0000;
12
+ --ax-sys-highlight-surface: 0 0 #0000;
13
+ --ax-sys-gradient-surface: none;
14
+ --ax-sys-backdrop-filter-surface: none;
15
+ --ax-sys-surface-overlay-surface: transparent;
16
+ --ax-sys-surface-overlay-floating: transparent;
17
+ --ax-sys-surface-overlay-overlay: transparent;
18
+ --ax-sys-surface-overlay-modal: transparent;
19
+
20
+ /* Flat elevation — ignore depth/translucent shadow stacks on floating shells */
21
+ --ax-sys-effect-floating: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
22
+ --ax-sys-effect-overlay: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
23
+ --ax-sys-effect-modal: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
24
+ }
@@ -1,4 +1,4 @@
1
- .dark {
1
+ .ax-dark {
2
2
  .ax-list-item {
3
3
  &.ax-state-selected {
4
4
  background-color: rgba(var(--ax-sys-color-primary-800)) !important;
@@ -99,6 +99,7 @@
99
99
  padding-inline-start: 0.75rem;
100
100
  font-size: 1rem;
101
101
  line-height: 1.5rem;
102
+ color: rgba(var(--ax-sys-color-on-surface));
102
103
  &:focus,
103
104
  &:focus-visible {
104
105
  outline-width: 2px;
@@ -3,10 +3,10 @@
3
3
  @import './_check-box.css';
4
4
  @import './_drop-down.css';
5
5
  @import './_editor-container.css';
6
+ @import './_floating-surface.css';
6
7
  @import './_general-button.css';
7
8
  @import './_list.css';
8
9
  @import './_radio.css';
9
10
  @import './_ripple.css';
10
11
  @import './_table.css';
11
- @import './_uploader.css';
12
- @import './_conversation-picker-popup.css';
12
+ @import './_uploader.css';
@@ -0,0 +1,229 @@
1
+ :root {
2
+ --ax-icon-more-horizontal: '\e0b6';
3
+ --ax-icon-more-horizontal-after: '';
4
+
5
+ --ax-icon-more-vertical: '\e0b7';
6
+ --ax-icon-more-vertical-after: '';
7
+
8
+ --ax-icon-arrow-long-up: '\e491';
9
+ --ax-icon-arrow-long-up-after: '';
10
+
11
+ --ax-icon-arrow-long-down: '\e48c';
12
+ --ax-icon-arrow-long-down-after: '';
13
+
14
+ --ax-icon-color-palette: '\e1dd';
15
+ --ax-icon-color-palette-after: '';
16
+
17
+ --ax-icon-arrow-left: '\e1e2';
18
+ --ax-icon-arrow-left-after: '';
19
+
20
+ --ax-icon-arrow-down: '\e1e1';
21
+ --ax-icon-arrow-down-after: '';
22
+
23
+ --ax-icon-arrow-up: '\e1e4';
24
+ --ax-icon-arrow-up-after: '';
25
+
26
+ --ax-icon-arrow-right: '\e1e3';
27
+ --ax-icon-arrow-right-after: '';
28
+
29
+ --ax-icon-chevron-left: '\e06e';
30
+ --ax-icon-chevron-left-after: '';
31
+
32
+ --ax-icon-chevron-down: '\e06d';
33
+ --ax-icon-chevron-down-after: '';
34
+
35
+ --ax-icon-chevron-up: '\e070';
36
+ --ax-icon-chevron-up-after: '';
37
+
38
+ --ax-icon-chevron-right: '\e06f';
39
+ --ax-icon-chevron-right-after: '';
40
+
41
+ --ax-icon-chevron-double-right: '\e073';
42
+ --ax-icon-chevron-double-right-after: '';
43
+
44
+ --ax-icon-chevron-double-left: '\e072';
45
+ --ax-icon-chevron-double-left-after: '';
46
+
47
+ --ax-icon-first-page: '\e457';
48
+ --ax-icon-first-page-after: '';
49
+
50
+ --ax-icon-last-page: '\e459';
51
+ --ax-icon-last-page-after: '';
52
+
53
+ --ax-icon-calendar: '\e063';
54
+ --ax-icon-calendar-after: '';
55
+
56
+ --ax-icon-info: '\e0f9';
57
+ --ax-icon-info-after: '';
58
+
59
+ --ax-icon-error: '\e077';
60
+ --ax-icon-error-after: '';
61
+
62
+ --ax-icon-warning: '\e193';
63
+ --ax-icon-warning-after: '';
64
+
65
+ --ax-icon-check: '\e06c';
66
+ --ax-icon-check-after: '';
67
+
68
+ --ax-icon-check-circle: '\e226';
69
+ --ax-icon-check-circle-after: '';
70
+
71
+ --ax-icon-dobble-check: '\e38e';
72
+ --ax-icon-dobble-check-after: '';
73
+
74
+ --ax-icon-close: '\e1b2';
75
+ --ax-icon-close-after: '';
76
+
77
+ --ax-icon-clear: '\e084';
78
+ --ax-icon-clear-after: '';
79
+
80
+ --ax-icon-visibility-off: '\e62e';
81
+ --ax-icon-visibility-off-after: '';
82
+
83
+ --ax-icon-visibility: '\e0ba';
84
+ --ax-icon-visibility-after: '';
85
+
86
+ --ax-icon-unfold-more: '\e211';
87
+ --ax-icon-unfold-more-after: '';
88
+
89
+ --ax-icon-download: '\e0b2';
90
+ --ax-icon-download-after: '';
91
+
92
+ --ax-icon-upload: '\e19e';
93
+ --ax-icon-upload-after: '';
94
+
95
+ --ax-icon-search: '\e151';
96
+ --ax-icon-search-after: '';
97
+
98
+ --ax-icon-copy: '\e09e';
99
+ --ax-icon-copy-after: '';
100
+
101
+ --ax-icon-refresh: '\e145';
102
+ --ax-icon-refresh-after: '';
103
+
104
+ --ax-icon-inbox: '\e0f7';
105
+ --ax-icon-inbox-after: '';
106
+
107
+ --ax-icon-emoji: '\e164';
108
+ --ax-icon-emoji-after: '';
109
+
110
+ --ax-icon-attach: '\e12d';
111
+ --ax-icon-attach-after: '';
112
+
113
+ --ax-icon-mic: '\e118';
114
+ --ax-icon-mic-after: '';
115
+
116
+ --ax-icon-send: '\e152';
117
+ --ax-icon-send-after: '';
118
+
119
+ --ax-icon-play: '\e13c';
120
+ --ax-icon-play-after: '';
121
+
122
+ --ax-icon-pause: '\e12e';
123
+ --ax-icon-pause-after: '';
124
+
125
+ --ax-icon-reload: '\e149';
126
+ --ax-icon-reload-after: '';
127
+
128
+ --ax-icon-heart: '\e0f2';
129
+ --ax-icon-heart-after: '';
130
+
131
+ --ax-icon-comment: '\e116';
132
+ --ax-icon-comment-after: '';
133
+
134
+ --ax-icon-bold: '\e05d';
135
+ --ax-icon-bold-after: '';
136
+
137
+ --ax-icon-italic: '\e0fb';
138
+ --ax-icon-italic-after: '';
139
+
140
+ --ax-icon-strike: '\e177';
141
+ --ax-icon-strike-after: '';
142
+
143
+ --ax-icon-under-line: '\e19a';
144
+ --ax-icon-under-line-after: '';
145
+
146
+ --ax-icon-order-list: '\e1d1';
147
+ --ax-icon-order-list-after: '';
148
+
149
+ --ax-icon-un-order-list: '\e106';
150
+ --ax-icon-un-order-list-after: '';
151
+
152
+ --ax-icon-align-left: '\e185';
153
+ --ax-icon-align-left-after: '';
154
+
155
+ --ax-icon-align-right: '\e183';
156
+ --ax-icon-align-right-after: '';
157
+
158
+ --ax-icon-align-center: '\e182';
159
+ --ax-icon-align-center-after: '';
160
+
161
+ --ax-icon-align-justify: '\e184';
162
+ --ax-icon-align-justify-after: '';
163
+
164
+ --ax-icon-undo: '\e2a1';
165
+ --ax-icon-undo-after: '';
166
+
167
+ --ax-icon-redo: '\e2a0';
168
+ --ax-icon-redo-after: '';
169
+
170
+ --ax-icon-highlight: '\e0f4';
171
+ --ax-icon-highlight-after: '';
172
+
173
+ --ax-icon-link: '\e102';
174
+ --ax-icon-link-after: '';
175
+
176
+ --ax-icon-image: '\e0f6';
177
+ --ax-icon-image-after: '';
178
+
179
+ --ax-icon-pen: '\e12f';
180
+ --ax-icon-pen-after: '';
181
+
182
+ --ax-icon-eraser: '\e28f';
183
+ --ax-icon-eraser-after: '';
184
+
185
+ --ax-icon-pen-ruler: '\e4f1';
186
+ --ax-icon-pen-ruler-after: '';
187
+
188
+ --ax-icon-crop: '\e0ab';
189
+ --ax-icon-crop-after: '';
190
+
191
+ --ax-icon-full-screen: '\e112';
192
+ --ax-icon-full-screen-after: '';
193
+
194
+ --ax-icon-up-folder: '\e0a7';
195
+ --ax-icon-up-folder-after: '';
196
+
197
+ --ax-icon-sort: '\e04c';
198
+ --ax-icon-sort-after: '';
199
+
200
+ --ax-icon-menu: '\e115';
201
+ --ax-icon-menu-after: '';
202
+
203
+ --ax-icon-plus: '\e13d';
204
+ --ax-icon-plus-after: '';
205
+
206
+ --ax-icon-trash: '\e18d';
207
+ --ax-icon-trash-after: '';
208
+
209
+ --ax-icon-arrow-turn-right: '\e0a8';
210
+ --ax-icon-arrow-turn-right-after: '';
211
+
212
+ --ax-icon-arrow-turn-left: '\e0a7';
213
+ --ax-icon-arrow-turn-left-after: '';
214
+
215
+ --ax-icon-save: '\e14d';
216
+ --ax-icon-save-after: '';
217
+
218
+ --ax-icon-minimize: '\e11b';
219
+ --ax-icon-minimize-after: '';
220
+
221
+ --ax-icon-maximize: '\e113';
222
+ --ax-icon-maximize-after: '';
223
+
224
+ --ax-icon-code: '\e093';
225
+ --ax-icon-code-after: '';
226
+
227
+ --ax-icon-paragraph: '\e3a3';
228
+ --ax-icon-paragraph-after: '';
229
+ }