A collection of MIE design system Svelte components.
npm install mie-ds-svelte-componentsThis package provides a collection of Svelte components, available for installation here. To see a collection of the current components, please visit the
MIE Storybook Component Library
mie-ds-svelte-components package includes the following style packages by default: - mie-ds-core
- mie-ds-brand-mie-light
.sass file from each style library you use.
#### Example: Using mie-ds-core
@import "./node_modules/mie-ds-core/styles/styles.scss";
Example: Importing a Brand Theme After Core
When using a brand-specific style package, always import it after the core styles:
@import "./node_modules/mie-ds-core/styles/styles.scss";
@import "./node_modules/mie-ds-brand-mie-light/styles/styles.scss";
mie-ds-brand-bluehive-light mie-ds-brand-enterprisehealth-lightmie-ds-datavis When including the mie-ds-datavis styles, be sure to import them BEFORE the brand styles:
@import "./node_modules/mie-ds-core/styles/styles.scss";
@import '../node_modules/mie-ds-datavis/styles/styles.scss';
@import "./node_modules/mie-ds-brand-mie-light/styles/styles.scss";