@acorex/styles 5.0.40 → 5.0.43
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/package.json +1 -1
- package/src/components/_alert.scss +1 -1
- package/src/components/_checkbox.scss +1 -1
- package/src/components/_dialog.scss +1 -1
- package/src/components/_dropdown.scss +14 -4
- package/src/components/_editor-container.scss +37 -33
- package/src/components/_input.scss +7 -10
- package/src/components/_list.scss +6 -8
- package/src/components/_menu.scss +43 -0
- package/src/components/_popup.scss +33 -29
- package/src/components/_radio.scss +1 -1
- package/src/components/_skeleton.scss +1 -2
- package/src/components/_switch copy.scss +185 -0
- package/src/components/_switch.scss +145 -304
- package/src/components/_table.scss +50 -17
- package/src/components/_tabs.scss +4 -4
- package/src/components/_textarea.scss +41 -0
- package/src/components/_toast.scss +1 -1
- package/src/components/_treeview.scss +23 -0
- package/src/components/index.scss +4 -1
- package/src/utility/_mixins.scss +7 -5
@@ -17,6 +17,7 @@
|
|
17
17
|
@import "./list";
|
18
18
|
@import "./numberbox";
|
19
19
|
@import "./loading";
|
20
|
+
@import "./menu";
|
20
21
|
@import "./popup";
|
21
22
|
@import "./radio";
|
22
23
|
@import "./range-slider";
|
@@ -27,5 +28,7 @@
|
|
27
28
|
@import "./switch";
|
28
29
|
@import "./table";
|
29
30
|
@import "./tabs";
|
31
|
+
@import "./textarea";
|
30
32
|
@import "./toast";
|
31
|
-
@import "./tooltip";
|
33
|
+
@import "./tooltip";
|
34
|
+
@import "./treeview";
|
package/src/utility/_mixins.scss
CHANGED
@@ -37,17 +37,19 @@
|
|
37
37
|
}
|
38
38
|
}
|
39
39
|
|
40
|
-
@mixin control-
|
40
|
+
@mixin control-states($type) {
|
41
41
|
|
42
42
|
@if($type == "editor"){
|
43
|
-
@apply dark:ax-border-white/[0.
|
43
|
+
@apply dark:ax-border-white/[0.06] dark:ax-bg-white/[0.06] dark:ax-backdrop-blur-3xl;
|
44
|
+
}
|
45
|
+
@if($type == "editor-disabled"){
|
46
|
+
@apply ax-bg-light-100 ax-text-light-fore dark:ax-border-white/[0.06] dark:ax-bg-white/[0.-04] dark:ax-text-opacity-60 ax-cursor-not-allowed;
|
47
|
+
|
44
48
|
}
|
45
49
|
@if($type == "surface"){
|
46
50
|
@apply dark:ax-bg-default-background dark:ax-border-white/[0.16] dark:ax-shadow-md;
|
47
|
-
|
48
51
|
}
|
49
52
|
|
53
|
+
|
50
54
|
}
|
51
55
|
|
52
|
-
// @include control-dark('editor');
|
53
|
-
// @include control-dark('surface');
|