@xyd-js/core 0.0.0-build-eb01699-20250820104451 → 0.0.0-build-98ffa49-20250820144609
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/CHANGELOG.md +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/types/settings.ts +5 -0
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -620,6 +620,10 @@ interface Appearance {
|
|
|
620
620
|
* The default color scheme to use.
|
|
621
621
|
*/
|
|
622
622
|
colorScheme?: "light" | "dark" | "os" | false;
|
|
623
|
+
/**
|
|
624
|
+
* If `false` then the color scheme button will not be displayed.
|
|
625
|
+
*/
|
|
626
|
+
colorSchemeButton?: false;
|
|
623
627
|
/**
|
|
624
628
|
* Colors configuration for the theme.
|
|
625
629
|
*/
|
package/package.json
CHANGED
package/src/types/settings.ts
CHANGED
|
@@ -176,6 +176,11 @@ export interface Appearance {
|
|
|
176
176
|
*/
|
|
177
177
|
colorScheme?: "light" | "dark" | "os" | false
|
|
178
178
|
|
|
179
|
+
/**
|
|
180
|
+
* If `false` then the color scheme button will not be displayed.
|
|
181
|
+
*/
|
|
182
|
+
colorSchemeButton?: false
|
|
183
|
+
|
|
179
184
|
/**
|
|
180
185
|
* Colors configuration for the theme.
|
|
181
186
|
*/
|