@acorex/styles 19.10.0-next.1 → 19.10.0-next.3
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.
- package/base/index.scss +15 -0
- package/{src/shared → components}/_action-item.scss +3 -3
- package/{src/shared → components}/_actionsheet.scss +7 -6
- package/{src/shared → components}/_check-box.scss +8 -14
- package/{src/shared → components}/_drop-down.scss +7 -16
- package/{src/shared → components}/_editor-container.scss +22 -78
- package/{src/shared → components}/_general-button.scss +11 -12
- package/{src/shared → components}/_list.scss +15 -41
- package/{src/shared → components}/_radio.scss +8 -14
- package/components/_ripple.scss +13 -0
- package/{src/shared → components}/_table.scss +9 -30
- package/components/_uploader.scss +44 -0
- package/{src/shared → components}/index.scss +2 -3
- package/icons/fontawesome/index.scss +10 -11
- package/icons/huge/huge-bulk/index.scss +4 -4
- package/icons/huge/huge-duotone/index.scss +4 -4
- package/icons/huge/huge-solid-sharp/index.scss +4 -4
- package/icons/huge/huge-solid-standard/index.scss +4 -4
- package/icons/huge/huge-stroke-rounded/index.scss +4 -4
- package/icons/huge/huge-stroke-sharp/index.scss +4 -4
- package/icons/huge/huge-stroke-standard/index.scss +4 -4
- package/icons/huge/huge-twotone/index.scss +4 -4
- package/icons/material/index.scss +4 -5
- package/index.scss +5 -7
- package/mixins/_look.scss +68 -0
- package/package.json +1 -1
- package/tailwind-base.js +231 -158
- package/themes/default.scss +28 -139
- package/utils/_theme-generator.scss +241 -0
- package/utils/_utils.scss +284 -0
- package/utils/index.scss +2 -0
- package/variables/_colors.scss +7 -0
- package/variables/_looks.scss +1 -0
- package/variables/index.scss +2 -0
- package/index.css +0 -2843
- package/index.min.css +0 -1
- package/src/base/index.scss +0 -13
- package/src/mixins/_look.scss +0 -83
- package/src/shared/_color-look.scss +0 -822
- package/src/shared/_inputs.scss +0 -16
- package/src/shared/_utils.scss +0 -85
- package/src/utility/index.scss +0 -24
- package/src/variables/_colors.scss +0 -2
- package/src/variables/_degrees.scss +0 -1
- package/src/variables/index.scss +0 -2
- package/themes/default.css +0 -1
- /package/{src/base → base}/_preflight.scss +0 -0
- /package/{src/mixins → mixins}/_media.scss +0 -0
- /package/{src/mixins → mixins}/_util.scss +0 -0
- /package/{src/mixins → mixins}/index.scss +0 -0
package/src/shared/_inputs.scss
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
.ax-input {
|
2
|
-
// @apply ax-p-0 ax-outline-0;
|
3
|
-
font-size: inherit;
|
4
|
-
padding: 0px;
|
5
|
-
outline-width: 0px;
|
6
|
-
|
7
|
-
&:focus {
|
8
|
-
// @apply ax-outline-transparent;
|
9
|
-
outline-color: transparent;
|
10
|
-
}
|
11
|
-
// &.ax-state-disabled {
|
12
|
-
// // @apply ax-cursor-not-allowed ax-opacity-50;
|
13
|
-
// cursor: not-allowed;
|
14
|
-
// opacity: 0.5;
|
15
|
-
// }
|
16
|
-
}
|
package/src/shared/_utils.scss
DELETED
@@ -1,85 +0,0 @@
|
|
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
|
-
// @apply ax-rounded-default ax-border ax-border-default ax-p-3;
|
15
|
-
border-radius: var(--ax-rounded-border-default);
|
16
|
-
border-width: 1px;
|
17
|
-
border-color: rgba(var(--ax-color-input-border));
|
18
|
-
padding: 0.75rem /* 12px */;
|
19
|
-
|
20
|
-
legend {
|
21
|
-
// @apply ax-px-1 ax-text-sm;
|
22
|
-
padding-left: 0.25rem /* 4px */;
|
23
|
-
padding-right: 0.25rem /* 4px */;
|
24
|
-
font-size: 0.875rem /* 14px */;
|
25
|
-
line-height: 1.25rem /* 20px */;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
|
-
.ax-card {
|
30
|
-
// @apply ax-rounded-default ax-border ax-border-default ax-bg-surface;
|
31
|
-
border-radius: var(--ax-rounded-border-default);
|
32
|
-
border-width: 1px;
|
33
|
-
border-color: rgba(var(--ax-color-input-border));
|
34
|
-
background-color: rgba(var(--ax-color-surface));
|
35
|
-
}
|
36
|
-
|
37
|
-
.ax-drop-zone {
|
38
|
-
> input {
|
39
|
-
// @apply ax-absolute ax-h-full ax-w-full ax-cursor-pointer ax-opacity-0;
|
40
|
-
position: absolute;
|
41
|
-
height: 100%;
|
42
|
-
width: 100%;
|
43
|
-
cursor: pointer;
|
44
|
-
opacity: 0;
|
45
|
-
}
|
46
|
-
}
|
47
|
-
.ax-uploader-overlay-state {
|
48
|
-
// @apply ax-pointer-events-none ax-absolute ax-start-0 ax-top-0 ax-z-10 ax-flex ax-h-full ax-w-full ax-cursor-pointer ax-flex-col ax-items-center ax-justify-center ax-gap-2 ax-bg-primary-200/75 ax-text-sm ax-text-primary-fore-tint ax-outline-dashed ax-outline-2 -ax-outline-offset-4 ax-transition-all;
|
49
|
-
border-radius: inherit;
|
50
|
-
pointer-events: none;
|
51
|
-
position: absolute;
|
52
|
-
inset-inline-start: 0px;
|
53
|
-
top: 0px;
|
54
|
-
z-index: 10;
|
55
|
-
display: flex;
|
56
|
-
height: 100%;
|
57
|
-
width: 100%;
|
58
|
-
cursor: pointer;
|
59
|
-
flex-direction: column;
|
60
|
-
align-items: center;
|
61
|
-
justify-content: center;
|
62
|
-
gap: 0.5rem /* 8px */;
|
63
|
-
background-color: rgba(var(--ax-color-primary-200), 0.75);
|
64
|
-
font-size: 0.875rem /* 14px */;
|
65
|
-
line-height: 1.25rem /* 20px */;
|
66
|
-
color: rgba(var(--ax-color-primary-fore-tint));
|
67
|
-
outline-style: dashed;
|
68
|
-
outline-offset: -4px;
|
69
|
-
transition-property: all;
|
70
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
71
|
-
transition-duration: 150ms;
|
72
|
-
}
|
73
|
-
|
74
|
-
.ax-select-none,
|
75
|
-
.ax-select-none * {
|
76
|
-
user-select: none !important;
|
77
|
-
}
|
78
|
-
@include util.darkMode() {
|
79
|
-
.ax-uploader-overlay-state {
|
80
|
-
// @apply ax-bg-primary-800/75 ax-text-primary-fore ax-outline-primary-fore;
|
81
|
-
background-color: rgba(var(--ax-color-primary-800), 0.75);
|
82
|
-
color: rgba(var(--ax-color-primary-fore));
|
83
|
-
outline-color: rgba(var(--ax-color-primary-fore));
|
84
|
-
}
|
85
|
-
}
|
package/src/utility/index.scss
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
.ax-xs {
|
2
|
-
--ax-size-default: calc(var(--ax-size-base) - 0.75rem);
|
3
|
-
}
|
4
|
-
|
5
|
-
.ax-sm {
|
6
|
-
--ax-size-default: calc(var(--ax-size-base) - 0.5rem);
|
7
|
-
}
|
8
|
-
|
9
|
-
.ax-md {
|
10
|
-
--ax-size-default: var(--ax-size-base);
|
11
|
-
}
|
12
|
-
|
13
|
-
.ax-lg {
|
14
|
-
--ax-size-default: calc(var(--ax-size-base) + 0.5rem);
|
15
|
-
}
|
16
|
-
|
17
|
-
.ax-xl {
|
18
|
-
--ax-size-default: calc(var(--ax-size-base) + 1rem);
|
19
|
-
}
|
20
|
-
|
21
|
-
.ax-placeholder {
|
22
|
-
color: rgba(var(--ax-color-input-surface-fore), 0.5);
|
23
|
-
font-weight: 500;
|
24
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
$degrees: 45, 90, 130, 180;
|
package/src/variables/index.scss
DELETED
package/themes/default.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
:root,.ax-light{--ax-size-base: 2.5rem;--ax-size-default: var(--ax-size-base);--ax-icon-weight: 400;--ax-icon-size: 100%;--ax-rounded-border-default: 0.5rem;--ax-color-border-default: 233, 234, 235;--ax-color-background-default: 249, 250, 251;--ax-color-text-default: 22, 22, 22;--ax-color-surface: 255, 255, 255;--ax-color-surface-fore: 22, 22, 22;--ax-color-on-surface: 250, 250, 250;--ax-color-on-surface-fore: 22, 22, 22;--ax-color-input-surface: 255, 255, 255;--ax-color-input-surface-fore: 22, 22, 22;--ax-color-input-border: 213, 215, 218;--ax-color-ghost: 255, 255, 255;--ax-color-ghost-fore: 22, 22, 22;--ax-color-primary-fore: 255, 255, 255;--ax-color-primary-fore-tint: 11, 30, 71;--ax-color-primary-50: 244, 247, 254;--ax-color-primary-100: 233, 239, 253;--ax-color-primary-200: 190, 208, 249;--ax-color-primary-300: 146, 177, 245;--ax-color-primary-400: 102, 146, 241;--ax-color-primary-500: 37, 99, 235;--ax-color-primary-600: 33, 89, 212;--ax-color-primary-700: 26, 69, 165;--ax-color-primary-800: 19, 50, 118;--ax-color-primary-900: 11, 30, 71;--ax-color-primary-950: 4, 10, 23;--ax-color-secondary-fore: 255, 255, 255;--ax-color-secondary-fore-tint: 9, 12, 18;--ax-color-secondary-50: 244, 244, 245;--ax-color-secondary-100: 233, 234, 235;--ax-color-secondary-200: 188, 191, 196;--ax-color-secondary-300: 143, 148, 157;--ax-color-secondary-400: 98, 105, 118;--ax-color-secondary-500: 30, 41, 59;--ax-color-secondary-600: 27, 37, 53;--ax-color-secondary-700: 21, 29, 41;--ax-color-secondary-800: 15, 21, 30;--ax-color-secondary-900: 9, 12, 18;--ax-color-secondary-950: 3, 4, 6;--ax-color-success-fore: 255, 255, 255;--ax-color-success-fore-tint: 6, 78, 59;--ax-color-success-50: 236, 253, 245;--ax-color-success-100: 209, 250, 229;--ax-color-success-200: 167, 243, 208;--ax-color-success-300: 110, 231, 183;--ax-color-success-400: 52, 211, 153;--ax-color-success-500: 16, 185, 129;--ax-color-success-600: 5, 150, 105;--ax-color-success-700: 4, 120, 87;--ax-color-success-800: 6, 95, 70;--ax-color-success-900: 6, 78, 59;--ax-color-success-950: 2, 44, 34;--ax-color-warning-fore: 48, 26, 10;--ax-color-warning-fore-tint: 255, 111, 0;--ax-color-warning-50: 255, 248, 225;--ax-color-warning-100: 255, 236, 179;--ax-color-warning-200: 255, 224, 130;--ax-color-warning-300: 255, 213, 79;--ax-color-warning-400: 255, 202, 40;--ax-color-warning-500: 255, 193, 7;--ax-color-warning-600: 255, 179, 0;--ax-color-warning-700: 255, 160, 0;--ax-color-warning-800: 255, 143, 0;--ax-color-warning-900: 255, 111, 0;--ax-color-warning-950: 72, 40, 15;--ax-color-danger-fore: 255, 255, 255;--ax-color-danger-fore-tint: 127, 29, 29;--ax-color-danger-50: 254, 242, 242;--ax-color-danger-100: 254, 226, 226;--ax-color-danger-200: 254, 202, 202;--ax-color-danger-300: 252, 165, 165;--ax-color-danger-400: 248, 113, 113;--ax-color-danger-500: 239, 68, 68;--ax-color-danger-600: 220, 38, 38;--ax-color-danger-700: 185, 28, 28;--ax-color-danger-800: 153, 27, 27;--ax-color-danger-900: 127, 29, 29;--ax-color-danger-950: 69, 10, 10;--ax-color-info-fore: 255, 255, 255;--ax-color-info-fore-tint: 49, 46, 129;--ax-color-info-50: 238, 242, 255;--ax-color-info-100: 224, 231, 255;--ax-color-info-200: 199, 210, 254;--ax-color-info-300: 165, 180, 252;--ax-color-info-400: 129, 140, 248;--ax-color-info-500: 99, 102, 241;--ax-color-info-600: 79, 70, 229;--ax-color-info-700: 67, 56, 202;--ax-color-info-800: 55, 48, 163;--ax-color-info-900: 49, 46, 129;--ax-color-info-950: 30, 27, 75;--ax-color-neutral-fore: 255, 255, 255;--ax-color-neutral-fore-tint: 17, 24, 39;--ax-color-neutral-50: 249, 250, 251;--ax-color-neutral-100: 243, 244, 246;--ax-color-neutral-200: 229, 231, 235;--ax-color-neutral-300: 209, 213, 219;--ax-color-neutral-400: 156, 163, 175;--ax-color-neutral-500: 107, 114, 128;--ax-color-neutral-600: 75, 85, 99;--ax-color-neutral-700: 55, 65, 81;--ax-color-neutral-800: 31, 41, 55;--ax-color-neutral-900: 17, 24, 39;--ax-color-neutral-950: 3, 7, 18}.ax-dark{--ax-color-border-default: 34, 38, 47;--ax-color-background-default: 12, 14, 18;--ax-color-text-default: 255, 255, 255;--ax-color-surface: 19, 22, 27;--ax-color-surface-fore: 255, 255, 255;--ax-color-on-surface: 34, 38, 47;--ax-color-on-surface-fore: 255, 255, 255;--ax-color-input-surface: 12, 14, 18;--ax-color-input-surface-fore: 224, 224, 224;--ax-color-input-border: 55, 58, 65;--ax-color-ghost: 77, 91, 113;--ax-color-ghost-fore: 255, 255, 255}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|