├── art
└── banner.png
├── .gitignore
├── src
├── components
│ ├── optional.vue
│ ├── link.vue
│ ├── progress.vue
│ ├── attribute.vue
│ ├── clear.vue
│ ├── sticker.vue
│ ├── empty.vue
│ ├── tabs.vue
│ ├── switch.vue
│ ├── label.vue
│ ├── tip.vue
│ ├── badge.vue
│ ├── cards.vue
│ ├── banner.vue
│ ├── error.vue
│ ├── confirm.vue
│ ├── notification.vue
│ ├── remaining.vue
│ ├── grid.vue
│ ├── prompt.vue
│ ├── modal.vue
│ ├── metric.vue
│ ├── dropdown.vue
│ ├── table.vue
│ ├── password.vue
│ ├── textbox.vue
│ ├── alert.vue
│ ├── period.vue
│ ├── menu.vue
│ ├── tags.vue
│ ├── search.vue
│ ├── share.vue
│ ├── button.vue
│ ├── paginator.vue
│ ├── upload.vue
│ └── datetime.vue
├── mixins
│ ├── Container.js
│ ├── Utilities.js
│ ├── Foundation.js
│ └── Dialog.js
├── support
│ └── vapor.js
└── framework
│ └── Dialog.js
├── README.md
├── LICENSE.md
└── package.json
/art/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caneara/varnish/HEAD/art/banner.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | docs/.vitepress/dist
4 | docs/public/ProximaVara.woff2
--------------------------------------------------------------------------------
/src/components/optional.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ value }}
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/components/link.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
3 |
4 |
5 |
6 |
10 |
11 |
12 |
| 26 | 27 | 28 | {{ (column?.desktop ?? true) ? column.label : '' }} 29 | 30 | | 31 | 32 |
|---|
|
44 | |
48 |
49 |
|
66 |
67 |
68 | |
73 |
74 |