@acorex/styles 19.10.0-next.0 → 19.10.0-next.10

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 (42) hide show
  1. package/base/index.scss +15 -0
  2. package/{src/shared → components}/_action-item.scss +1 -1
  3. package/{src/shared → components}/_check-box.scss +1 -1
  4. package/{src/shared → components}/_drop-down.scss +10 -3
  5. package/components/_editor-container.scss +260 -0
  6. package/{src/shared → components}/_general-button.scss +4 -4
  7. package/{src/shared → components}/_list.scss +2 -2
  8. package/{src/shared → components}/_radio.scss +1 -1
  9. package/{src/shared → components}/_table.scss +3 -3
  10. package/{src/shared/_utils.scss → components/_uploader.scss} +11 -46
  11. package/{src/shared → components}/index.scss +3 -6
  12. package/index.scss +5 -7
  13. package/mixins/_editor-looks.scss +23 -0
  14. package/mixins/_scroll-bar.scss +23 -0
  15. package/mixins/index.scss +4 -0
  16. package/package.json +1 -1
  17. package/tailwind-base.js +203 -180
  18. package/themes/default.scss +33 -237
  19. package/utils/_theme-generator.scss +230 -0
  20. package/utils/_utils.scss +276 -0
  21. package/utils/index.scss +2 -0
  22. package/variables/_colors.scss +7 -0
  23. package/variables/_looks.scss +1 -0
  24. package/variables/index.scss +2 -0
  25. package/index.css +0 -988
  26. package/index.min.css +0 -1
  27. package/src/base/index.scss +0 -11
  28. package/src/mixins/_look.scss +0 -68
  29. package/src/mixins/index.scss +0 -3
  30. package/src/shared/_editor-container.scss +0 -251
  31. package/src/shared/_inputs.scss +0 -0
  32. package/src/utility/index.scss +0 -4
  33. package/src/variables/_colors.scss +0 -2
  34. package/src/variables/_degrees.scss +0 -1
  35. package/src/variables/index.scss +0 -2
  36. package/themes/default.css +0 -1
  37. package/themes/test.scss +0 -237
  38. /package/{src/base → base}/_preflight.scss +0 -0
  39. /package/{src/shared → components}/_actionsheet.scss +0 -0
  40. /package/{src/shared → components}/_ripple.scss +0 -0
  41. /package/{src/mixins → mixins}/_media.scss +0 -0
  42. /package/{src/mixins → mixins}/_util.scss +0 -0
@@ -0,0 +1,15 @@
1
+ @use './preflight' as *;
2
+ :root {
3
+ --ax-overlay-full-width: 93;
4
+ --ax-sys-transition-duration: 150ms;
5
+ --ax-sys-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
6
+ }
7
+ html {
8
+ background-color: rgba(var(--ax-sys-color-lightest-surface));
9
+ color: rgba(var(--ax-sys-color-on-lightest-surface));
10
+ }
11
+
12
+ html.ax-dark {
13
+ background-color: rgba(var(--ax-sys-color-darkest-surface));
14
+ color: rgba(var(--ax-sys-color-on-darkest-surface));
15
+ }
@@ -63,7 +63,7 @@
63
63
 
64
64
  &:hover {
65
65
  &:not(&.ax-state-disabled, &.ax-state-selected) {
66
- // background-color: rgba(var(--ax-sys-color-surface-high));
66
+ background-color: rgba(var(--ax-sys-color-surface));
67
67
  ax-prefix,
68
68
  ax-suffix {
69
69
  opacity: 1;
@@ -8,7 +8,7 @@
8
8
  appearance: none;
9
9
  border-radius: 0.25rem /* 4px */;
10
10
  border-width: 1px;
11
- border-color: rgba(var(--ax-sys-color-input-surface-border));
11
+ border-color: rgba(var(--ax-sys-color-border-surface));
12
12
  background-color: rgba(var(--ax-sys-color-input-surface));
13
13
  vertical-align: middle;
14
14
  outline: 2px solid transparent;
@@ -1,5 +1,5 @@
1
1
  @use '../variables/index.scss';
2
- @use '../mixins/index.scss' as mixins;
2
+ @use '../mixins/' as mixins;
3
3
  .ax-drop-down {
4
4
  display: contents;
5
5
 
@@ -26,8 +26,8 @@
26
26
  height: fit-content;
27
27
  overflow: hidden;
28
28
  border-width: 1px;
29
- border-color: rgba(var(--ax-sys-border-color));
30
- background-color: rgba(var(--ax-sys-color-surface-lowest));
29
+ border-color: rgba(var(--ax-sys-color-border-lightest-surface));
30
+ background-color: rgba(var(--ax-sys-color-lightest-surface));
31
31
  --ax-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
32
32
  --ax-shadow-colored: 0 4px 6px -1px var(--ax-shadow-color), 0 2px 4px -2px var(--ax-shadow-color);
33
33
  box-shadow: var(--ax-ring-offset-shadow, 0 0 #0000), var(--ax-ring-shadow, 0 0 #0000), var(--ax-shadow);
@@ -66,3 +66,10 @@
66
66
  height: 100vh;
67
67
  }
68
68
  }
69
+
70
+ @include mixins.darkMode() {
71
+ .ax-overlay-pane {
72
+ background-color: rgba(var(--ax-sys-color-darker-surface));
73
+ border-color: rgba(var(--ax-sys-color-border-darker-surface));
74
+ }
75
+ }
@@ -0,0 +1,260 @@
1
+ @use '../mixins/index.scss' as mixin;
2
+
3
+ :root,
4
+ .ax-editor-container {
5
+ --ax-comp-editor-font-size: 0.875rem;
6
+ --ax-comp-editor-space-start-size: 0.75rem;
7
+ --ax-comp-editor-space-end-size: 0.75rem;
8
+ --ax-comp-editor-height: var(--ax-sys-size-base);
9
+
10
+ --ax-comp-editor-error-bg-color: var(--ax-sys-color-danger-light-surface);
11
+ --ax-comp-editor-error-text-color: var(--ax-sys-color-danger-surface);
12
+ --ax-comp-editor-error-border-color: var(--ax-sys-color-border-danger-surface);
13
+ --ax-comp-editor-error-box-shadow-color: var(--ax-sys-color-danger-surface);
14
+
15
+ --ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
16
+ --ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
17
+ --ax-comp-editor-border-radius: var(--ax-sys-border-radius);
18
+ --ax-comp-editor-box-outline-width: 1px;
19
+ --ax-comp-editor-box-outline-color: var(--ax-sys-color-primary-surface);
20
+ --ax-comp-editor-placeholder-opacity: 0.5;
21
+
22
+ --ax-comp-editor-focused-border-color: var(--ax-sys-color-border-primary-surface);
23
+ --ax-comp-editor-focused-box-shadow-color: var(--ax-sys-color-primary-surface);
24
+
25
+ --ax-comp-editor-border-width: 0px;
26
+ }
27
+
28
+ .ax-editor-container {
29
+ display: flex;
30
+ align-items: center;
31
+ overflow: hidden;
32
+ width: 100%;
33
+ height: var(--ax-comp-editor-height);
34
+ font-size: var(--ax-comp-editor-font-size);
35
+ border-radius: var(--ax-comp-editor-border-radius);
36
+ border-width: var(--ax-comp-editor-border-width);
37
+ border-color: rgba(var(--ax-comp-editor-border-color));
38
+ background-color: rgba(var(--ax-comp-editor-bg-color));
39
+ color: rgba(var(--ax-comp-editor-text-color));
40
+
41
+ &:focus-within {
42
+ border-color: rgba(var(--ax-comp-editor-focused-border-color));
43
+ outline-width: var(--ax-comp-editor-box-outline-width);
44
+ outline-style: solid;
45
+ outline-color: rgba(var(--ax-comp-editor-focused-border-color));
46
+ }
47
+
48
+ &.ax-state-error {
49
+ border-color: rgba(var(--ax-comp-editor-error-border-color));
50
+ outline-width: var(--ax-comp-editor-box-outline-width);
51
+ outline-color: rgba(var(--ax-comp-editor-error-border-color));
52
+ outline-style: solid;
53
+ &:focus-within {
54
+ border-color: rgba(var(--ax-comp-editor-error-border-color));
55
+ }
56
+ .ax-input {
57
+ .ax-placeholder,
58
+ &::placeholder {
59
+ color: rgba(var(--ax-comp-editor-error-text-color), var(--ax-comp-editor-placeholder-opacity));
60
+ }
61
+ }
62
+ }
63
+
64
+ &.ax-solid {
65
+ @include mixin.solid-look();
66
+ }
67
+ &.ax-outline {
68
+ @include mixin.outline-look();
69
+ }
70
+
71
+ &.ax-flat {
72
+ @include mixin.flat-look();
73
+ }
74
+
75
+ &.ax-fill {
76
+ @include mixin.fill-look();
77
+ }
78
+
79
+ .ax-editor-input {
80
+ height: 100%;
81
+ flex: 1 1 0%;
82
+
83
+ .ax-input {
84
+ height: 100%;
85
+ }
86
+ }
87
+
88
+ .ax-editor,
89
+ .ax-input {
90
+ padding-inline-start: var(--ax-comp-editor-space-start-size);
91
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
92
+ }
93
+ .ax-input {
94
+ // padding: 0 calc(var(--ax-comp-editor-font-size) - 4px);
95
+ font-size: var(--ax-comp-editor-font-size);
96
+ line-height: var(--ax-comp-editor-font-size);
97
+ color: rgba(var(--ax-comp-editor-text-color));
98
+ cursor: inherit;
99
+ .ax-placeholder,
100
+ &::placeholder {
101
+ font-size: inherit;
102
+ font-weight: 400;
103
+ color: rgb(var(--ax-comp-editor-text-color), var(--ax-comp-editor-placeholder-opacity));
104
+ }
105
+ &:focus,
106
+ &:focus-visible,
107
+ &:focus-within {
108
+ outline: none;
109
+ }
110
+ }
111
+
112
+ .ax-editor-container {
113
+ border-radius: 0 !important;
114
+ border: 0px !important;
115
+ // height: 100% !important;
116
+
117
+ &:focus-within {
118
+ box-shadow: none !important;
119
+ }
120
+ &:focus {
121
+ box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
122
+ }
123
+ }
124
+
125
+ &.ax-state-disabled {
126
+ opacity: 0.5;
127
+ cursor: not-allowed;
128
+ }
129
+
130
+ .ax-editor-control {
131
+ display: flex;
132
+ height: 100%;
133
+ align-items: center;
134
+ justify-content: center;
135
+ padding-inline-start: 0.5rem;
136
+ font-size: 1.125rem;
137
+ line-height: 1.75rem;
138
+ color: rgba(var(--ax-comp-editor-text-color));
139
+ }
140
+
141
+ &.ax-button-icon {
142
+ padding: 0 0.5rem;
143
+ }
144
+
145
+ .ax-input,
146
+ .ax-text-area {
147
+ text-align: inherit;
148
+ font-family: inherit;
149
+ font-size: inherit;
150
+ line-height: inherit;
151
+ height: 100%;
152
+ width: 100%;
153
+ flex: 1 1 0%;
154
+ background-color: transparent;
155
+ font-weight: inherit;
156
+
157
+ &:focus {
158
+ box-shadow: none;
159
+ }
160
+ }
161
+
162
+ .ax-editor-button {
163
+ font-size: var(--ax-comp-editor-button-font-size, var(--ax-comp-editor-font-size));
164
+ height: var(--ax-comp-editor-button-height, 100%);
165
+ }
166
+
167
+ > ax-prefix {
168
+ padding-inline-start: var(--ax-comp-editor-space-end-size);
169
+ }
170
+
171
+ > ax-suffix,
172
+ .ax-editor-button,
173
+ .ax-clear-button {
174
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
175
+ }
176
+ & > ax-prefix,
177
+ & > ax-suffix {
178
+ max-width: fit-content;
179
+ }
180
+ & > ax-prefix {
181
+ ax-icon {
182
+ }
183
+ }
184
+ & > ax-suffix {
185
+ ax-icon {
186
+ }
187
+ }
188
+
189
+ & > ax-prefix,
190
+ & > ax-suffix {
191
+ height: 100%;
192
+
193
+ // + .ax-input {
194
+ // padding-left: 0.375rem !important;
195
+ // padding-right: 0.375rem !important;
196
+ // }
197
+ * {
198
+ display: flex;
199
+ height: 100%;
200
+ align-items: center;
201
+ justify-content: center;
202
+ border-radius: 0px;
203
+ }
204
+
205
+ ax-title {
206
+ padding-left: 1rem;
207
+ padding-right: 1rem;
208
+ }
209
+
210
+ & > ax-text {
211
+ display: flex;
212
+ align-items: center;
213
+ justify-content: center;
214
+ }
215
+ }
216
+
217
+ .ax-button {
218
+ height: 100% !important;
219
+ border-radius: 0px !important;
220
+
221
+ &.ax-button-icon {
222
+ height: 100%;
223
+ width: var(--ax-comp-editor-height);
224
+ }
225
+ }
226
+ }
227
+
228
+ .ax-xs .ax-editor-container,
229
+ .ax-editor-container.ax-xs {
230
+ --ax-comp-editor-font-size: 0.75rem;
231
+ --ax-comp-editor-space-start-size: 0.375rem;
232
+ --ax-comp-editor-space-end-size: 0.375rem;
233
+ }
234
+ .ax-sm .ax-editor-container,
235
+ .ax-editor-container.ax-sm {
236
+ --ax-comp-editor-font-size: 0.875rem;
237
+ --ax-comp-editor-space-start-size: 0.5rem;
238
+ --ax-comp-editor-space-end-size: 0.5rem;
239
+ }
240
+
241
+ .ax-md .ax-editor-container,
242
+ .ax-editor-container,
243
+ .ax-editor-container.ax-md {
244
+ --ax-comp-editor-space-start-size: 0.75rem;
245
+ --ax-comp-editor-space-end-size: 0.75rem;
246
+ }
247
+
248
+ .ax-lg .ax-editor-container,
249
+ .ax-editor-container.ax-lg {
250
+ --ax-comp-editor-font-size: 1.125rem;
251
+ --ax-comp-editor-space-start-size: 0.75rem;
252
+ --ax-comp-editor-space-end-size: 0.75rem;
253
+ }
254
+
255
+ .ax-xl .ax-editor-container,
256
+ .ax-editor-container.ax-xl {
257
+ --ax-comp-editor-font-size: 1.5rem;
258
+ --ax-comp-editor-space-start-size: 0.75rem;
259
+ --ax-comp-editor-space-end-size: 0.75rem;
260
+ }
@@ -9,7 +9,7 @@
9
9
  padding-right: 1rem;
10
10
  font-size: 0.875rem;
11
11
  line-height: 1.25rem;
12
- color: rgb(var(--ax-sys-color-input-surface-text), 0.75);
12
+ color: rgb(var(--ax-sys-color-on-surface), 0.75);
13
13
 
14
14
  &:hover {
15
15
  &:not(&:disabled, .ax-state-disabled) {
@@ -56,20 +56,20 @@
56
56
  margin-right: 0.25rem;
57
57
  font-size: 1rem /* 16px */;
58
58
  line-height: 1.5rem /* 24px */;
59
- color: rgb(var(--ax-sys-body-text-color), 0.75);
59
+ color: rgb(var(--ax-sys-color-on-surface), 0.75);
60
60
 
61
61
  > button {
62
62
  display: flex;
63
63
  }
64
64
  &:hover {
65
65
  &:not(&:disabled, .ax-state-disabled) {
66
- color: rgb(var(--ax-sys-body-text-color), 0.5);
66
+ color: rgb(var(--ax-sys-color-on-surface), 0.5);
67
67
  }
68
68
  }
69
69
  &:focus,
70
70
  &:focus-visible {
71
71
  &:not(&:disabled, .ax-state-disabled) {
72
- color: rgb(var(--ax-sys-body-text-color));
72
+ color: rgb(var(--ax-sys-color-on-surface));
73
73
  }
74
74
  }
75
75
  }
@@ -147,10 +147,10 @@
147
147
 
148
148
  &:focus-visible,
149
149
  &:hover {
150
- background-color: rgba(var(--ax-sys-color-surface-high));
150
+ background-color: rgba(var(--ax-sys-color-surface));
151
151
  }
152
152
  &.ax-state-focus {
153
- background-color: rgba(var(--ax-sys-color-surface-high));
153
+ background-color: rgba(var(--ax-sys-color-surface));
154
154
  }
155
155
  }
156
156
  }
@@ -10,7 +10,7 @@
10
10
  appearance: none;
11
11
  border-radius: 9999px /* 4px */;
12
12
  border-width: 1px;
13
- border-color: rgba(var(--ax-sys-color-input-surface-border));
13
+ border-color: rgba(var(--ax-sys-color-border-surface));
14
14
  background-color: rgba(var(--ax-sys-color-input-surface));
15
15
  vertical-align: middle;
16
16
  outline: 2px solid transparent;
@@ -2,7 +2,7 @@
2
2
  @include mixins.darkMode() {
3
3
  .ax-table {
4
4
  thead {
5
- background-color: rgba(var(--ax-sys-color-surface-high));
5
+ background-color: rgba(var(--ax-sys-color-surface));
6
6
  }
7
7
  }
8
8
  }
@@ -27,7 +27,7 @@
27
27
  thead {
28
28
  border-bottom-width: 1px;
29
29
  border-color: rgba(var(--ax-sys-border-color));
30
- background-color: rgba(var(--ax-sys-color-surface-high));
30
+ background-color: rgba(var(--ax-sys-color-surface));
31
31
 
32
32
  th {
33
33
  padding-left: 1rem /* 16px */;
@@ -43,7 +43,7 @@
43
43
  tbody {
44
44
  tr {
45
45
  &:nth-child(even) {
46
- background-color: rgba(var(--ax-sys-color-surface-high));
46
+ background-color: rgba(var(--ax-sys-color-surface));
47
47
  }
48
48
  }
49
49
  }
@@ -1,45 +1,4 @@
1
- @use '../variables/index.scss';
2
- @use '../mixins/util';
3
-
4
- [class*=' ax-icon-'],
5
- [class^='ax-icon-'] {
6
- vertical-align: middle;
7
- }
8
-
9
- .ax-bold {
10
- font-weight: bold !important;
11
- }
12
-
13
- .ax-fieldset {
14
- border-radius: var(--ax-sys-border-radius);
15
- border-width: 1px;
16
- border-color: rgba(var(--ax-sys-color-input-surface-border));
17
- padding: 0.75rem /* 12px */;
18
-
19
- legend {
20
- padding-left: 0.25rem /* 4px */;
21
- padding-right: 0.25rem /* 4px */;
22
- font-size: 0.875rem /* 14px */;
23
- line-height: 1.25rem /* 20px */;
24
- }
25
- }
26
-
27
- .ax-card {
28
- border-radius: var(--ax-sys-border-radius);
29
- border-width: 1px;
30
- border-color: rgba(var(--ax-sys-color-input-surface-border));
31
- background-color: rgba(var(--ax-sys-color-surface));
32
- }
33
-
34
- .ax-drop-zone {
35
- > input {
36
- position: absolute;
37
- height: 100%;
38
- width: 100%;
39
- cursor: pointer;
40
- opacity: 0;
41
- }
42
- }
1
+ @use '../mixins/index.scss' as mixin;
43
2
  .ax-uploader-overlay-state {
44
3
  border-radius: inherit;
45
4
  pointer-events: none;
@@ -66,11 +25,17 @@
66
25
  transition-duration: 150ms;
67
26
  }
68
27
 
69
- .ax-select-none,
70
- .ax-select-none * {
71
- user-select: none !important;
28
+ .ax-drop-zone {
29
+ > input {
30
+ position: absolute;
31
+ height: 100%;
32
+ width: 100%;
33
+ cursor: pointer;
34
+ opacity: 0;
35
+ }
72
36
  }
73
- @include util.darkMode() {
37
+
38
+ @include mixin.darkMode() {
74
39
  .ax-uploader-overlay-state {
75
40
  background-color: rgba(var(--ax-sys-color-primary-800), 0.75);
76
41
  color: rgba(var(--ax-sys-color-on-primary));
@@ -2,13 +2,10 @@
2
2
  @forward './actionsheet';
3
3
  @forward './check-box';
4
4
  @forward './drop-down';
5
- // @forward './editor-container';
5
+ @forward './editor-container';
6
6
  @forward './general-button';
7
- @forward './inputs';
8
7
  @forward './list';
9
8
  @forward './radio';
10
- @forward './table';
11
- @forward './utils';
12
-
13
- // new //
14
9
  @forward './ripple';
10
+ @forward './table';
11
+ @forward './uploader';
package/index.scss CHANGED
@@ -1,9 +1,7 @@
1
- @forward './src/base/preflight';
2
- @forward './src/variables/colors';
3
-
4
- @forward './src/base/index.scss';
5
- @forward './src/mixins/index.scss';
6
- @forward './src/shared/index.scss';
7
- @forward './src/utility/index.scss';
1
+ @forward './base/index.scss';
2
+ @forward './components/index.scss';
3
+ @forward './mixins/index.scss';
4
+ @forward './utils/index.scss';
5
+ @forward './variables/index.scss';
8
6
 
9
7
  @import '@angular/cdk/overlay-prebuilt.css';
@@ -0,0 +1,23 @@
1
+ @mixin solid-look() {
2
+ --ax-comp-editor-bg-color: var(--ax-sys-color-lightest-surface);
3
+ --ax-comp-editor-border-width: 1px;
4
+ }
5
+ @mixin fill-look() {
6
+ --ax-comp-editor-box-outline-width: 2px;
7
+ --ax-comp-editor-border-width: 0px;
8
+
9
+ --ax-comp-editor-bg-color: var(--ax-sys-color-surface);
10
+ --ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
11
+ --ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
12
+ }
13
+ @mixin outline-look() {
14
+ --ax-comp-editor-bg-color: 0, 0, 0, 0;
15
+ --ax-comp-editor-border-width: 1px;
16
+ }
17
+ @mixin flat-look() {
18
+ --ax-comp-editor-border-width: 2px;
19
+ --ax-comp-editor-border-radius: 0px;
20
+ --ax-comp-editor-box-outline-width: 0px;
21
+ border-width: 0px !important;
22
+ border-bottom-width: var(--ax-comp-editor-border-width) !important;
23
+ }
@@ -0,0 +1,23 @@
1
+ @mixin scroll-bar() {
2
+ :root,
3
+ * {
4
+ --ax-sys-scroller-size-width: 5px;
5
+ --ax-sys-scroller-size-radius: 3px;
6
+ --ax-sys-scroller-track-color: rgba(var(--ax-sys-color-darkest-surface));
7
+ --ax-sys-scroller-thumb-color: rgba(var(--ax-sys-color-primary-surface));
8
+ }
9
+
10
+ ::-webkit-scrollbar {
11
+ width: var(--ax-sys-scroller-size-width);
12
+ }
13
+
14
+ ::-webkit-scrollbar-track {
15
+ background: var(--ax-sys-scroller-track-color);
16
+ border-radius: var(--ax-sys-scroller-size-radius);
17
+ }
18
+
19
+ ::-webkit-scrollbar-thumb {
20
+ background: var(--ax-sys-scroller-thumb-color);
21
+ border-radius: var(--ax-sys-scroller-size-radius);
22
+ }
23
+ }
@@ -0,0 +1,4 @@
1
+ @forward './media';
2
+ @forward './util';
3
+ @forward './editor-looks';
4
+ @forward './scroll-bar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "19.10.0-next.0",
3
+ "version": "19.10.0-next.10",
4
4
  "main": "index.js",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",