{{ header }}
10 |{{ description }}
11 |├── .gitignore ├── .storybook ├── logo.png ├── main.js ├── manager.js ├── preview.js └── theme.js ├── README.md ├── dist ├── library.js └── library.mjs ├── docs ├── 0.4a17d245c1d2363e659e.manager.bundle.js ├── 0.bd72fe98.iframe.bundle.js ├── 0.bd72fe98.iframe.bundle.js.LICENSE.txt ├── 0.bd72fe98.iframe.bundle.js.map ├── 1.f11dd144.iframe.bundle.js ├── 1.f11dd144.iframe.bundle.js.LICENSE.txt ├── 1.f11dd144.iframe.bundle.js.map ├── 2.c54b583a.iframe.bundle.js ├── 3.8211f5f0.iframe.bundle.js ├── 4.753500e6d6abbf9cd9b3.manager.bundle.js ├── 4.753500e6d6abbf9cd9b3.manager.bundle.js.LICENSE.txt ├── 5.f1f10cba216a2baa1720.manager.bundle.js ├── 6.2f101c8b021945f26efd.manager.bundle.js ├── 6.2f101c8b021945f26efd.manager.bundle.js.LICENSE.txt ├── 7.bd77b6b16da48fd21038.manager.bundle.js ├── 7.fb8019bc.iframe.bundle.js ├── 8.19453156.iframe.bundle.js ├── 8.19453156.iframe.bundle.js.LICENSE.txt ├── 8.19453156.iframe.bundle.js.map ├── 8.a8d3556f90318e344f03.manager.bundle.js ├── 9.df8e29ad.iframe.bundle.js ├── favicon.ico ├── iframe.html ├── index.html ├── main.41002c0e674415a607bc.manager.bundle.js ├── main.f826ea03.iframe.bundle.js ├── runtime~main.32e5ad97792ac1f73161.manager.bundle.js ├── runtime~main.5e81a700.iframe.bundle.js ├── static │ └── media │ │ ├── logo.ba22adc0.png │ │ └── logo.ddc6a94a.png ├── vendors~main.b994dafc81dac401bbb0.manager.bundle.js ├── vendors~main.b994dafc81dac401bbb0.manager.bundle.js.LICENSE.txt ├── vendors~main.bc11a40b.iframe.bundle.js ├── vendors~main.bc11a40b.iframe.bundle.js.LICENSE.txt └── vendors~main.bc11a40b.iframe.bundle.js.map ├── package-lock.json ├── package.json ├── rollup.config.js └── src ├── Button.vue ├── Card.vue ├── Chip.vue ├── NavBar.vue ├── components.js ├── global.css ├── index.js ├── logo.png └── stories ├── Button.stories.js ├── Card.stories.js ├── Chip.stories.js ├── Introduction.stories.mdx └── page.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.storybook/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlt/vue-md3/7eec5c1d5fc01dfc88a2a23541704852d68a8849/.storybook/logo.png -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], 3 | addons: ["@storybook/addon-links", "@storybook/addon-essentials"], 4 | framework: "@storybook/vue3", 5 | }; 6 | -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- 1 | import { addons } from "@storybook/addons"; 2 | import theme from "./theme"; 3 | 4 | addons.setConfig({ 5 | theme: theme, 6 | }); 7 | -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | import "../src/global.css"; 2 | document.documentElement.classList.add("light"); 3 | export const parameters = { 4 | actions: { argTypesRegex: "^on[A-Z].*" }, 5 | controls: { 6 | matchers: { 7 | color: /(background|color)$/i, 8 | date: /Date$/, 9 | }, 10 | }, 11 | }; 12 | -------------------------------------------------------------------------------- /.storybook/theme.js: -------------------------------------------------------------------------------- 1 | import { create } from "@storybook/theming"; 2 | import logo from "./logo.png"; 3 | 4 | export default create({ 5 | base: "light", 6 | brandTitle: "Material Vue", 7 | brandUrl: "https://micahlindley.com/vue-md3", 8 | brandImage: logo, 9 | colorPrimary: "#3C6472", 10 | colorSecondary: "#006C45", 11 | }); 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
{{ description }}
11 |