ember-primitives 0.42.0 → 0.42.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.
|
@@ -31,6 +31,7 @@ export declare const colorScheme: {
|
|
|
31
31
|
export declare function sync(): void;
|
|
32
32
|
/**
|
|
33
33
|
* Helper methods to determining what the user's preferred color scheme is
|
|
34
|
+
* based on the system preferences rather than the users explicit preference.
|
|
34
35
|
*/
|
|
35
36
|
export declare const prefers: {
|
|
36
37
|
dark: () => boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"color-scheme.d.ts","sourceRoot":"","sources":["../src/color-scheme.ts"],"names":[],"mappings":"AAgBA;;GAEG;AACH,eAAO,MAAM,WAAW;IACtB;;OAEG;oBACa,MAAM;;QAOpB;;WAEG;2BACgB,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI;;;QAKhD;;WAEG;2BACgB,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI;;IAKlD;;OAEG;aACY,MAAM,GAAG,SAAS;CAelC,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,IAAI,
|
|
1
|
+
{"version":3,"file":"color-scheme.d.ts","sourceRoot":"","sources":["../src/color-scheme.ts"],"names":[],"mappings":"AAgBA;;GAEG;AACH,eAAO,MAAM,WAAW;IACtB;;OAEG;oBACa,MAAM;;QAOpB;;WAEG;2BACgB,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI;;;QAKhD;;WAEG;2BACgB,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI;;IAKlD;;OAEG;aACY,MAAM,GAAG,SAAS;CAelC,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,IAAI,SAyBnB;AAED;;;GAGG;AACH,eAAO,MAAM,OAAO;;;mBAGH,MAAM;;CAEtB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,eAAe;;;oBAGV,MAAM;;CAEvB,CAAC;AAEF;;GAEG;AACH,wBAAgB,cAAc,CAAC,OAAO,CAAC,EAAE,WAAW,UAInD;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;AAC1E,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;AAkBpD;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,CAAC,EAAE,WAAW,QAItD"}
|
package/dist/color-scheme.js
CHANGED
|
@@ -69,15 +69,10 @@ function sync() {
|
|
|
69
69
|
/**
|
|
70
70
|
* If local prefs are set, then we don't care what prefers-color-scheme is
|
|
71
71
|
*/
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
_colorScheme.current = 'dark';
|
|
77
|
-
return;
|
|
78
|
-
}
|
|
79
|
-
setColorScheme('light');
|
|
80
|
-
_colorScheme.current = 'light';
|
|
72
|
+
const userPreference = localPreference.read();
|
|
73
|
+
if (userPreference) {
|
|
74
|
+
setColorScheme(userPreference);
|
|
75
|
+
_colorScheme.current = userPreference;
|
|
81
76
|
return;
|
|
82
77
|
}
|
|
83
78
|
if (prefers.dark()) {
|
|
@@ -91,6 +86,7 @@ function sync() {
|
|
|
91
86
|
|
|
92
87
|
/**
|
|
93
88
|
* Helper methods to determining what the user's preferred color scheme is
|
|
89
|
+
* based on the system preferences rather than the users explicit preference.
|
|
94
90
|
*/
|
|
95
91
|
const prefers = {
|
|
96
92
|
dark: () => window.matchMedia('(prefers-color-scheme: dark)').matches,
|