UNPKG

@v4fire/client

Version:

V4Fire client core library

23 lines (17 loc) 859 B
'use strict'; /*! * V4Fire Client Core * https://github.com/V4Fire/Client * * Released under the MIT license * https://github.com/V4Fire/Client/blob/master/LICENSE */ module.exports = { dsHasThemesNotIncluded: 'The design system object has themes, but no one included into the build', dsNotIncludedRequiredThemes: (dark, light) => `The "prefersColorScheme" is enabled, but the design system does not provide "${dark}" and "${light}" themes, which are required for using this parameter`, dsNotIncludedDarkTheme: (dark) => `The "prefersColorScheme" is enabled, but the design system does not provide "${dark}" theme, which is required for using this parameter`, dsNotIncludedLightTheme: (light) => `The "prefersColorScheme" is enabled, but the design system does not provide "${light}" theme, which is required for using this parameter` };