UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

50 lines 1.66 kB
import { css } from 'lit'; import { styles as bootstrapDark } from './dark/switch/switch.bootstrap.css.js'; import { styles as fluentDark } from './dark/switch/switch.fluent.css.js'; import { styles as indigoDark } from './dark/switch/switch.indigo.css.js'; import { styles as materialDark } from './dark/switch/switch.material.css.js'; import { styles as bootstrapLight } from './light/switch/switch.bootstrap.css.js'; import { styles as fluentLight } from './light/switch/switch.fluent.css.js'; import { styles as indigoLight } from './light/switch/switch.indigo.css.js'; import { styles as materialLight } from './light/switch/switch.material.css.js'; import { styles as shared } from './light/switch/switch.shared.css.js'; import { styles as bootstrap } from './shared/switch/switch.bootstrap.css.js'; import { styles as fluent } from './shared/switch/switch.fluent.css.js'; import { styles as indigo } from './shared/switch/switch.indigo.css.js'; import { styles as material } from './shared/switch/switch.material.css.js'; const light = { shared: css ` ${shared} `, bootstrap: css ` ${bootstrap} ${bootstrapLight} `, material: css ` ${material} ${materialLight} `, fluent: css ` ${fluent} ${fluentLight} `, indigo: css ` ${indigo} ${indigoLight} `, }; const dark = { shared: css ` ${shared} `, bootstrap: css ` ${bootstrap} ${bootstrapDark} `, material: css ` ${material} ${materialDark} `, fluent: css ` ${fluent} ${fluentDark} `, indigo: css ` ${indigo} ${indigoDark} `, }; export const all = { light, dark }; //# sourceMappingURL=switch-themes.js.map