@alauda/ui 6.1.5-beta.15 → 6.1.5-beta.19
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/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +18 -16
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/drawer/component/drawer-ref.d.ts +1 -0
- package/drawer/component/drawer.component.d.ts +1 -0
- package/drawer/drawer.service.d.ts +11 -3
- package/esm2015/alauda-ui.ngsummary.json +1 -1
- package/esm2015/autocomplete/autocomplete.component.js +1 -1
- package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +1 -1
- package/esm2015/card/card.component.js +1 -1
- package/esm2015/card/card.component.scss.ngstyle.js +1 -1
- package/esm2015/dialog/dialog.component.js +1 -1
- package/esm2015/dialog/dialog.component.scss.ngstyle.js +1 -1
- package/esm2015/drawer/component/drawer-ref.js +1 -1
- package/esm2015/drawer/component/drawer.component.js +5 -3
- package/esm2015/drawer/component/drawer.component.ngfactory.js +1 -1
- package/esm2015/drawer/component/drawer.component.ngsummary.json +1 -1
- package/esm2015/drawer/component/drawer.component.scss.ngstyle.js +1 -1
- package/esm2015/drawer/drawer.service.js +1 -1
- package/esm2015/drawer/drawer.service.ngsummary.json +1 -1
- package/esm2015/drawer/public-api.ngsummary.json +1 -1
- package/esm2015/dropdown/menu/menu.component.js +1 -1
- package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +1 -1
- package/esm2015/inline-alert/inline-alert.component.js +1 -1
- package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +1 -1
- package/esm2015/message/message.component.js +1 -1
- package/esm2015/message/message.component.scss.ngstyle.js +1 -1
- package/esm2015/notification/notification.component.js +1 -1
- package/esm2015/notification/notification.component.scss.ngstyle.js +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/esm2015/select/multi-select/multi-select.component.js +1 -1
- package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +1 -1
- package/esm2015/select/select.component.js +1 -1
- package/esm2015/select/select.component.scss.ngstyle.js +1 -1
- package/esm2015/theme/theme.service.js +3 -3
- package/esm2015/time-picker/panel/panel.component.js +1 -1
- package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +1 -1
- package/esm2015/tooltip/tooltip.component.js +1 -1
- package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +1 -1
- package/esm2015/tree-select/tree-select.component.js +1 -1
- package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +1 -1
- package/fesm2015/alauda-ui.js +18 -16
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/theme/_mixin.scss +3 -3
- package/theme/style.css +3 -3
package/package.json
CHANGED
package/theme/_mixin.scss
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
@content;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
html[aui-
|
|
12
|
+
html[aui-theme-mode='light'] #{$host} {
|
|
13
13
|
@content;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
|
|
21
21
|
@at-root {
|
|
22
22
|
@media (prefers-color-scheme: dark) {
|
|
23
|
-
html[aui-
|
|
23
|
+
html[aui-theme-mode='system'] #{$host} {
|
|
24
24
|
@content;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
html[aui-
|
|
28
|
+
html[aui-theme-mode='dark'] #{$host} {
|
|
29
29
|
@content;
|
|
30
30
|
}
|
|
31
31
|
}
|
package/theme/style.css
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
--aui-color-origin-shadow: var(--aui-color-n-1);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
html[aui-
|
|
63
|
+
html[aui-theme-mode=light] {
|
|
64
64
|
--aui-color-blue: 0, 122, 245;
|
|
65
65
|
--aui-color-b-0: 0, 103, 208;
|
|
66
66
|
--aui-color-b-1: 38, 141, 246;
|
|
@@ -107,7 +107,7 @@ html[aui-color-mode=light] {
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
@media (prefers-color-scheme: dark) {
|
|
110
|
-
html[aui-
|
|
110
|
+
html[aui-theme-mode=system] {
|
|
111
111
|
--aui-color-blue: 61, 142, 255;
|
|
112
112
|
--aui-color-b-0: 54, 116, 206;
|
|
113
113
|
--aui-color-b-1: 109, 170, 255;
|
|
@@ -153,7 +153,7 @@ html[aui-color-mode=light] {
|
|
|
153
153
|
--aui-color-origin-shadow: var(--aui-color-main-bg);
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
-
html[aui-
|
|
156
|
+
html[aui-theme-mode=dark] {
|
|
157
157
|
--aui-color-blue: 61, 142, 255;
|
|
158
158
|
--aui-color-b-0: 54, 116, 206;
|
|
159
159
|
--aui-color-b-1: 109, 170, 255;
|