@dolanske/vui 0.5.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/dist/components/Alert/Alert.vue.d.ts +7 -1
- package/dist/components/Avatar/Avatar.vue.d.ts +15 -1
- package/dist/components/Badge/Badge.vue.d.ts +1 -1
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +1 -1
- package/dist/components/Button/Button.vue.d.ts +5 -15
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +2 -0
- package/dist/components/Calendar/Calendar.vue.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.vue.d.ts +1 -0
- package/dist/components/Dropdown/Dropdown.vue.d.ts +19 -4
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +5 -1
- package/dist/components/Grid/Grid.vue.d.ts +4 -1
- package/dist/components/Input/Dropzone.vue.d.ts +1 -1
- package/dist/components/Input/Input.vue.d.ts +2 -2
- package/dist/components/Kbd/KbdGroup.vue.d.ts +3 -11
- package/dist/components/Modal/Confirm.vue.d.ts +1 -1
- package/dist/components/Modal/Modal.vue.d.ts +1 -1
- package/dist/components/Pagination/Pagination.vue.d.ts +3 -0
- package/dist/components/Popout/Popout.vue.d.ts +8 -1
- package/dist/components/Progress/Progress.vue.d.ts +2 -0
- package/dist/components/Radio/Radio.vue.d.ts +1 -0
- package/dist/components/Select/Select.vue.d.ts +2 -0
- package/dist/components/Sheet/Sheet.vue.d.ts +3 -0
- package/dist/components/Switch/Switch.vue.d.ts +1 -0
- package/dist/components/Table/index.d.ts +6 -0
- package/dist/components/Table/table.d.ts +1 -1
- package/dist/components/Tabs/Tab.vue.d.ts +16 -3
- package/dist/components/Toast/toast.d.ts +245 -0
- package/dist/index.d.ts +2 -7
- package/dist/shared/helpers.d.ts +9 -0
- package/dist/shared/theme.d.ts +3 -0
- package/dist/style.css +1 -1
- package/dist/vui.js +6418 -6049
- package/package.json +7 -3
- package/src/App.vue +90 -171
- package/src/components/Accordion/accordion.scss +1 -0
- package/src/components/Alert/Alert.vue +11 -5
- package/src/components/Alert/alert.scss +104 -23
- package/src/components/Avatar/Avatar.vue +4 -1
- package/src/components/Avatar/avatar.scss +1 -1
- package/src/components/Badge/Badge.vue +1 -1
- package/src/components/Badge/badge.scss +134 -17
- package/src/components/Breadcrumbs/BreadcrumbItem.vue +2 -2
- package/src/components/Breadcrumbs/Breadcrumbs.vue +1 -2
- package/src/components/Breadcrumbs/breadcrumbs.scss +2 -1
- package/src/components/Button/Button.vue +15 -20
- package/src/components/Button/button.scss +156 -55
- package/src/components/ButtonGroup/ButtonGroup.vue +4 -1
- package/src/components/ButtonGroup/button-group.scss +2 -2
- package/src/components/Calendar/Calendar.vue +4 -1
- package/src/components/Calendar/calendar.scss +25 -2
- package/src/components/Card/Card.vue +2 -2
- package/src/components/Card/card.scss +4 -4
- package/src/components/Checkbox/Checkbox.vue +4 -1
- package/src/components/Checkbox/checkbox.scss +17 -12
- package/src/components/CopyClipboard/CopyClipboard.vue +15 -6
- package/src/components/CopyClipboard/copy-clipboard.scss +10 -2
- package/src/components/Drawer/Drawer.vue +4 -4
- package/src/components/Drawer/drawer.scss +1 -0
- package/src/components/Dropdown/Dropdown.vue +44 -20
- package/src/components/Dropdown/DropdownItem.vue +4 -4
- package/src/components/Dropdown/DropdownTitle.vue +7 -1
- package/src/components/Dropdown/dropdown-item.scss +9 -2
- package/src/components/Dropdown/dropdown.scss +21 -7
- package/src/components/Grid/Grid.vue +21 -1
- package/src/components/Input/Color.vue +26 -0
- package/src/components/Input/Counter.vue +12 -16
- package/src/components/Input/Dropzone.vue +1 -1
- package/src/components/Input/File.vue +1 -1
- package/src/components/Input/Input.vue +8 -6
- package/src/components/Input/Password.vue +1 -13
- package/src/components/Input/Textarea.vue +4 -2
- package/src/components/Input/input.scss +110 -16
- package/src/components/Kbd/KbdGroup.vue +2 -6
- package/src/components/Kbd/kbd.scss +6 -5
- package/src/components/Modal/Confirm.vue +1 -1
- package/src/components/Modal/Modal.vue +23 -15
- package/src/components/Modal/modal.scss +11 -6
- package/src/components/OTP/otp.scss +8 -7
- package/src/components/Pagination/Pagination.vue +6 -3
- package/src/components/Popout/Popout.vue +15 -5
- package/src/components/Popout/popout.scss +8 -1
- package/src/components/Progress/Progress.vue +18 -5
- package/src/components/Progress/progress.scss +7 -1
- package/src/components/Radio/Radio.vue +4 -2
- package/src/components/Radio/radio.scss +18 -8
- package/src/components/Select/Select.vue +49 -18
- package/src/components/Select/select.scss +35 -2
- package/src/components/Sheet/Sheet.vue +8 -2
- package/src/components/Sheet/sheet.scss +9 -0
- package/src/components/Sidebar/Sidebar.vue +24 -11
- package/src/components/Sidebar/sidebar.scss +6 -5
- package/src/components/Spinner/spinner.scss +2 -1
- package/src/components/Switch/Switch.vue +4 -3
- package/src/components/Switch/switch.scss +39 -6
- package/src/components/Table/{Header.vue → Head.vue} +5 -5
- package/src/components/Table/{Table.vue → Root.vue} +2 -2
- package/src/components/Table/SelectRow.vue +2 -1
- package/src/components/Table/index.ts +7 -0
- package/src/components/Table/table.scss +25 -5
- package/src/components/Table/table.ts +7 -3
- package/src/components/Tabs/Tab.vue +7 -9
- package/src/components/Tabs/Tabs.vue +2 -2
- package/src/components/Tabs/tabs.scss +10 -3
- package/src/components/Toast/Toasts.vue +5 -0
- package/src/components/Toast/toast.scss +6 -2
- package/src/components/Toast/toast.ts +7 -0
- package/src/components/Tooltip/Tooltip.vue +9 -9
- package/src/components/Tooltip/tooltip.scss +4 -0
- package/src/examples/ExampleAccordions.vue +58 -0
- package/src/examples/ExampleAlerts.vue +78 -0
- package/src/examples/ExampleAvatars.vue +44 -0
- package/src/examples/ExampleBadges.vue +48 -0
- package/src/examples/ExampleBreadcrumbs.vue +46 -0
- package/src/examples/ExampleButtons.vue +140 -0
- package/src/examples/ExampleCalendars.vue +40 -0
- package/src/examples/ExampleCards.vue +94 -0
- package/src/examples/ExampleCheckboxes.vue +123 -0
- package/src/examples/ExampleCopyClipboard.vue +47 -0
- package/src/examples/ExampleDividers.vue +39 -0
- package/src/examples/ExampleDrawers.vue +67 -0
- package/src/examples/ExampleDropdowns.vue +114 -0
- package/src/examples/ExampleFlexGrid.vue +122 -0
- package/src/examples/ExampleInputs.vue +234 -0
- package/src/examples/ExampleKBD.vue +65 -0
- package/src/examples/ExampleModals.vue +143 -0
- package/src/examples/ExamplePalette.vue +159 -0
- package/src/examples/ExamplePopouts.vue +41 -0
- package/src/examples/ExampleSheets.vue +77 -0
- package/src/examples/ExampleSidebars.vue +270 -0
- package/src/examples/ExampleSkeletons.vue +26 -0
- package/src/examples/ExampleSpinners.vue +78 -0
- package/src/examples/ExampleTables.vue +195 -0
- package/src/examples/ExampleTabs.vue +119 -0
- package/src/examples/ExampleToasts.vue +96 -0
- package/src/examples/ExampleTooltips.vue +70 -0
- package/src/examples/shared/ExampleColor.vue +28 -0
- package/src/index.ts +4 -11
- package/src/internal/Backdrop/backdrop.scss +7 -1
- package/src/shared/helpers.ts +43 -0
- package/src/shared/theme.ts +22 -0
- package/src/style/animation.scss +1 -0
- package/src/style/core.scss +30 -55
- package/src/style/layout.scss +74 -9
- package/src/style/text.scss +18 -0
- package/src/style/theme.scss +195 -0
- package/src/style/tooltip.scss +22 -4
- package/src/style/typography.scss +95 -18
- package/dist/components/Table/Row.vue.d.ts +0 -16
- package/src/components/Table/Row.vue +0 -9
- /package/dist/components/Table/{Header.vue.d.ts → Head.vue.d.ts} +0 -0
- /package/dist/components/Table/{Table.vue.d.ts → Root.vue.d.ts} +0 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed, onBeforeMount, ref } from 'vue'
|
|
3
|
+
import Accordion from '../components/Accordion/Accordion.vue'
|
|
4
|
+
import Divider from '../components/Divider/Divider.vue'
|
|
5
|
+
import { paginate } from '../components/Pagination/pagination'
|
|
6
|
+
import Pagination from '../components/Pagination/Pagination.vue'
|
|
7
|
+
import * as Table from '../components/Table/index'
|
|
8
|
+
import { defineTable } from '../components/Table/table'
|
|
9
|
+
|
|
10
|
+
interface Item {
|
|
11
|
+
'ID Nation': string
|
|
12
|
+
'ID Year': number
|
|
13
|
+
'Nation': string
|
|
14
|
+
'Population': number
|
|
15
|
+
'Slug Nation': string
|
|
16
|
+
'Year': string
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
interface StrippedItem {
|
|
20
|
+
Nation: string
|
|
21
|
+
Population: number
|
|
22
|
+
Year: string
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const data = ref<StrippedItem[]>([])
|
|
26
|
+
|
|
27
|
+
onBeforeMount(async () => {
|
|
28
|
+
data.value = await fetch('https://datausa.io/api/data?drilldowns=Nation&measures=Population')
|
|
29
|
+
.then(response => response.json())
|
|
30
|
+
.then(({ data }: { data: Item[] }) => {
|
|
31
|
+
return data.map(row => ({
|
|
32
|
+
Nation: row.Nation,
|
|
33
|
+
Population: row.Population,
|
|
34
|
+
Year: row.Year,
|
|
35
|
+
}))
|
|
36
|
+
})
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
const {
|
|
40
|
+
rows,
|
|
41
|
+
headers,
|
|
42
|
+
pagination,
|
|
43
|
+
allRows,
|
|
44
|
+
setPage,
|
|
45
|
+
selectedRows,
|
|
46
|
+
} = defineTable(data, {
|
|
47
|
+
pagination: {
|
|
48
|
+
enabled: true,
|
|
49
|
+
perPage: 3,
|
|
50
|
+
},
|
|
51
|
+
select: true,
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
// Example
|
|
55
|
+
//
|
|
56
|
+
const testData = ['Jan', 'Andrew', 'Kasper', 'Anton', 'Felix', 'Daniel', 'Gabriel', 'Ayalga', 'Floris']
|
|
57
|
+
const page = ref(1)
|
|
58
|
+
const paginationExample = computed(() => paginate(testData.length, page.value, 2))
|
|
59
|
+
const exampleToRender = computed(() => testData.slice(paginationExample.value.startIndex, paginationExample.value.endIndex + 1))
|
|
60
|
+
</script>
|
|
61
|
+
|
|
62
|
+
<template>
|
|
63
|
+
<div class="mb-xxl">
|
|
64
|
+
<h3 class="mb-l">
|
|
65
|
+
Tables
|
|
66
|
+
</h3>
|
|
67
|
+
|
|
68
|
+
<p class="mb-l">
|
|
69
|
+
This library has two way to define tables. By default, you can use the classic <code>table</code> element and compose simple tables. <br> Or you can go overkill with the <code>{{ `<Table />` }}</code> component, which comes with its own composable function
|
|
70
|
+
</p>
|
|
71
|
+
|
|
72
|
+
<strong class="mb-s block">Simple vertical table</strong>
|
|
73
|
+
|
|
74
|
+
<table class="mb-l">
|
|
75
|
+
<thead>
|
|
76
|
+
<tr>
|
|
77
|
+
<th>One</th>
|
|
78
|
+
<th>Two</th>
|
|
79
|
+
<th>Three</th>
|
|
80
|
+
</tr>
|
|
81
|
+
</thead>
|
|
82
|
+
<tbody>
|
|
83
|
+
<tr>
|
|
84
|
+
<td>First </td>
|
|
85
|
+
<td>Second</td>
|
|
86
|
+
<td>Third</td>
|
|
87
|
+
</tr>
|
|
88
|
+
</tbody>
|
|
89
|
+
</table>
|
|
90
|
+
|
|
91
|
+
<strong class="mb-s block">Simple horizontal table</strong>
|
|
92
|
+
|
|
93
|
+
<table class="mb-xxl">
|
|
94
|
+
<tbody>
|
|
95
|
+
<tr>
|
|
96
|
+
<th>One</th>
|
|
97
|
+
<td>First</td>
|
|
98
|
+
</tr>
|
|
99
|
+
<tr>
|
|
100
|
+
<th>Two</th>
|
|
101
|
+
<td>Second</td>
|
|
102
|
+
</tr>
|
|
103
|
+
<tr>
|
|
104
|
+
<th>Three</th>
|
|
105
|
+
<td>Third</td>
|
|
106
|
+
</tr>
|
|
107
|
+
</tbody>
|
|
108
|
+
</table>
|
|
109
|
+
|
|
110
|
+
<h5 class="mb-s">
|
|
111
|
+
Data table
|
|
112
|
+
</h5>
|
|
113
|
+
|
|
114
|
+
<p class="mb-s">
|
|
115
|
+
This example demonstrates the full capability of the table component. Including column sorting, pagination and row selection.
|
|
116
|
+
</p>
|
|
117
|
+
|
|
118
|
+
<Table.Root separate-cells class="mb-l">
|
|
119
|
+
<template #header>
|
|
120
|
+
<Table.SelectAll />
|
|
121
|
+
<Table.Head v-for="header in headers" :key="header.label" :header sort />
|
|
122
|
+
</template>
|
|
123
|
+
<template #body>
|
|
124
|
+
<tr v-for="row in rows" :key="row.Year">
|
|
125
|
+
<Table.SelectRow :row />
|
|
126
|
+
<Table.Cell>{{ row.Nation }}</Table.Cell>
|
|
127
|
+
<Table.Cell>{{ row.Population }}</Table.Cell>
|
|
128
|
+
<Table.Cell>{{ row.Year }}</Table.Cell>
|
|
129
|
+
</tr>
|
|
130
|
+
</template>
|
|
131
|
+
<template #pagination>
|
|
132
|
+
<Pagination :pagination :first-last="false" @change="setPage" />
|
|
133
|
+
</template>
|
|
134
|
+
</Table.Root>
|
|
135
|
+
|
|
136
|
+
<Accordion :label="`Selected rows (${selectedRows.size})`" class="mb-xl">
|
|
137
|
+
<pre>
|
|
138
|
+
{{ selectedRows }}
|
|
139
|
+
</pre>
|
|
140
|
+
</Accordion>
|
|
141
|
+
|
|
142
|
+
<h5 class="mb-s">
|
|
143
|
+
Variations
|
|
144
|
+
</h5>
|
|
145
|
+
|
|
146
|
+
<div class="typeset mb-xl">
|
|
147
|
+
<ul>
|
|
148
|
+
<li><p><code>separate-rows</code> Adds a border between rows (default: <code>true</code>)</p></li>
|
|
149
|
+
<li><p><code>separate-cells</code> Adds a border between cells (default: <code>false</code>)</p></li>
|
|
150
|
+
<li><p><code>outer-border</code> Adds a border around the entire table component (default: <code>true</code>)</p></li>
|
|
151
|
+
<li><p><code>nowrap</code> Adds ellipsis to text which overflows to keep row size consistent (default: <code>false</code>)</p></li>
|
|
152
|
+
<li><p><code>fixed</code> Keeps all the columns the same size (default: <code>false</code>)</p></li>
|
|
153
|
+
</ul>
|
|
154
|
+
</div>
|
|
155
|
+
|
|
156
|
+
<div class="container container-s mb-xxl ml-0">
|
|
157
|
+
<Table.Root :outer-border="false" :separate-cells="true" nowrap fixed>
|
|
158
|
+
<template #body>
|
|
159
|
+
<tr v-for="row in allRows" :key="row.Year">
|
|
160
|
+
<Table.Cell>{{ `${row.Nation} ${row.Nation}` }}</Table.Cell>
|
|
161
|
+
<Table.Cell>{{ row.Population }}</Table.Cell>
|
|
162
|
+
<Table.Cell>{{ row.Year }}</Table.Cell>
|
|
163
|
+
</tr>
|
|
164
|
+
</template>
|
|
165
|
+
</Table.Root>
|
|
166
|
+
</div>
|
|
167
|
+
|
|
168
|
+
<h5 class="mb-s">
|
|
169
|
+
Pagination
|
|
170
|
+
</h5>
|
|
171
|
+
|
|
172
|
+
<p class="mb-m">
|
|
173
|
+
Pagination does not need to be used with table only. The calculation of pages is done via an external function and the pagination component accepts all the necesary props to implement it for any kind of dataset and UI
|
|
174
|
+
</p>
|
|
175
|
+
|
|
176
|
+
<p class="mb-m">
|
|
177
|
+
Here we have a list of names and we're gonna paginate through them:<br><br> {{ testData.join(', ') }}
|
|
178
|
+
</p>
|
|
179
|
+
<Pagination :pagination="paginationExample" @change="(num) => page = num" />
|
|
180
|
+
<div class="typeset">
|
|
181
|
+
<ul>
|
|
182
|
+
<li
|
|
183
|
+
v-for="name in exampleToRender"
|
|
184
|
+
:key="name"
|
|
185
|
+
>
|
|
186
|
+
{{ name }}
|
|
187
|
+
</li>
|
|
188
|
+
</ul>
|
|
189
|
+
</div>
|
|
190
|
+
|
|
191
|
+
<Divider :size="40" class="w-40" />
|
|
192
|
+
|
|
193
|
+
<p>The <code>defineTable</code> hook can also be used with other UI components. Not just tables. That's why all the table interactivity is not within the component, but in a hook. It's very flexible and allows custom functionality.</p>
|
|
194
|
+
</div>
|
|
195
|
+
</template>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<script setup lang='ts'>
|
|
2
|
+
import { Icon } from '@iconify/vue'
|
|
3
|
+
import { ref } from 'vue'
|
|
4
|
+
import Button from '../components/Button/Button.vue'
|
|
5
|
+
import Tab from '../components/Tabs/Tab.vue'
|
|
6
|
+
import Tabs from '../components/Tabs/Tabs.vue'
|
|
7
|
+
|
|
8
|
+
const activeTab = ref('Home')
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<template>
|
|
12
|
+
<div class="mb-xxl">
|
|
13
|
+
<h3 class="mb-l">
|
|
14
|
+
Tabs
|
|
15
|
+
</h3>
|
|
16
|
+
<table>
|
|
17
|
+
<tbody>
|
|
18
|
+
<tr>
|
|
19
|
+
<th>Base</th>
|
|
20
|
+
<td>
|
|
21
|
+
<Tabs v-model="activeTab">
|
|
22
|
+
<Tab label="Home" />
|
|
23
|
+
<Tab label="About" />
|
|
24
|
+
<Tab label="You" />
|
|
25
|
+
</Tabs>
|
|
26
|
+
</td>
|
|
27
|
+
</tr>
|
|
28
|
+
<tr>
|
|
29
|
+
<th>Filled</th>
|
|
30
|
+
<td>
|
|
31
|
+
<Tabs v-model="activeTab" variant="filled">
|
|
32
|
+
<Tab label="Home" />
|
|
33
|
+
<Tab label="About" />
|
|
34
|
+
<Tab label="You" />
|
|
35
|
+
</Tabs>
|
|
36
|
+
</td>
|
|
37
|
+
</tr>
|
|
38
|
+
<tr class="w-100">
|
|
39
|
+
<th>Expanded</th>
|
|
40
|
+
<td class="w-100">
|
|
41
|
+
<Tabs v-model="activeTab" expand>
|
|
42
|
+
<Tab label="Home" />
|
|
43
|
+
<Tab label="About" />
|
|
44
|
+
<Tab label="You" />
|
|
45
|
+
</Tabs>
|
|
46
|
+
|
|
47
|
+
<div class="mb-xl" />
|
|
48
|
+
|
|
49
|
+
<Tabs v-model="activeTab" expand variant="filled">
|
|
50
|
+
<Tab label="Home" />
|
|
51
|
+
<Tab label="About" />
|
|
52
|
+
<Tab label="You" />
|
|
53
|
+
</Tabs>
|
|
54
|
+
</td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<th>With slots</th>
|
|
58
|
+
<td class="w-100">
|
|
59
|
+
<Tabs v-model="activeTab">
|
|
60
|
+
<template #start>
|
|
61
|
+
<Button>
|
|
62
|
+
<template #start>
|
|
63
|
+
<Icon icon="ph:sidebar" />
|
|
64
|
+
</template>
|
|
65
|
+
Sidebar
|
|
66
|
+
</Button>
|
|
67
|
+
</template>
|
|
68
|
+
<Tab label="Home" />
|
|
69
|
+
<Tab label="About" />
|
|
70
|
+
<Tab label="You" />
|
|
71
|
+
</Tabs>
|
|
72
|
+
|
|
73
|
+
<div class="mb-xl" />
|
|
74
|
+
|
|
75
|
+
<Tabs v-model="activeTab" variant="filled">
|
|
76
|
+
<Tab label="Home" />
|
|
77
|
+
<Tab label="About" />
|
|
78
|
+
<Tab label="You" />
|
|
79
|
+
|
|
80
|
+
<template #end>
|
|
81
|
+
<Button icon="ph:x" plain />
|
|
82
|
+
</template>
|
|
83
|
+
</Tabs>
|
|
84
|
+
</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<th>With slots expanded</th>
|
|
88
|
+
<td class="w-100">
|
|
89
|
+
<Tabs v-model="activeTab" expand>
|
|
90
|
+
<template #start>
|
|
91
|
+
<Button>
|
|
92
|
+
<template #start>
|
|
93
|
+
<Icon icon="ph:sidebar" />
|
|
94
|
+
</template>
|
|
95
|
+
Sidebar
|
|
96
|
+
</Button>
|
|
97
|
+
</template>
|
|
98
|
+
<Tab label="Home" />
|
|
99
|
+
<Tab label="About" />
|
|
100
|
+
<Tab label="You" />
|
|
101
|
+
</Tabs>
|
|
102
|
+
|
|
103
|
+
<div class="mb-xl" />
|
|
104
|
+
|
|
105
|
+
<Tabs v-model="activeTab" expand variant="filled">
|
|
106
|
+
<Tab label="Home" />
|
|
107
|
+
<Tab label="About" />
|
|
108
|
+
<Tab label="You" />
|
|
109
|
+
|
|
110
|
+
<template #end>
|
|
111
|
+
<Button icon="ph:x" plain />
|
|
112
|
+
</template>
|
|
113
|
+
</Tabs>
|
|
114
|
+
</td>
|
|
115
|
+
</tr>
|
|
116
|
+
</tbody>
|
|
117
|
+
</table>
|
|
118
|
+
</div>
|
|
119
|
+
</template>
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { defineComponent, h, markRaw } from 'vue'
|
|
3
|
+
import Button from '../components/Button/Button.vue'
|
|
4
|
+
import { pushToast, removeToast } from '../components/Toast/toast'
|
|
5
|
+
import Toasts from '../components/Toast/Toasts.vue'
|
|
6
|
+
|
|
7
|
+
const testBody = markRaw(defineComponent((props) => {
|
|
8
|
+
return () => h('h2', `${props.data.title} ${props.toastId}`)
|
|
9
|
+
}, {
|
|
10
|
+
props: {
|
|
11
|
+
data: Object,
|
|
12
|
+
toastId: Number,
|
|
13
|
+
},
|
|
14
|
+
}))
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<template>
|
|
18
|
+
<div class="mb-xxl">
|
|
19
|
+
<h3 class="mb-l">
|
|
20
|
+
Toasts
|
|
21
|
+
</h3>
|
|
22
|
+
|
|
23
|
+
<table>
|
|
24
|
+
<tbody>
|
|
25
|
+
<tr>
|
|
26
|
+
<th>Base</th>
|
|
27
|
+
<td>
|
|
28
|
+
<Button @click="pushToast('Hello')">
|
|
29
|
+
Push toast
|
|
30
|
+
</Button>
|
|
31
|
+
</td>
|
|
32
|
+
</tr>
|
|
33
|
+
<tr>
|
|
34
|
+
<th>+ Description</th>
|
|
35
|
+
<td>
|
|
36
|
+
<Button @click="pushToast('Hello', { description: 'Lorem ipsum dolor sit amet and others stuff but I never learned it past that.' })">
|
|
37
|
+
Push toast
|
|
38
|
+
</Button>
|
|
39
|
+
</td>
|
|
40
|
+
</tr>
|
|
41
|
+
<tr>
|
|
42
|
+
<th>+ Action</th>
|
|
43
|
+
<td>
|
|
44
|
+
<Button
|
|
45
|
+
@click="pushToast('Hello', {
|
|
46
|
+
action: {
|
|
47
|
+
label: 'Close',
|
|
48
|
+
handler: (id) => {
|
|
49
|
+
removeToast(id)
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
})"
|
|
53
|
+
>
|
|
54
|
+
Push toast
|
|
55
|
+
</Button>
|
|
56
|
+
</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr>
|
|
59
|
+
<th>+ persist</th>
|
|
60
|
+
<td>
|
|
61
|
+
<Button
|
|
62
|
+
@click="pushToast('Read the description!!', {
|
|
63
|
+
description: 'So when you add an action, the handler exposes the ID of the toast. And you can then manually remove it. This toast will also stay up until you close it. It persists!!',
|
|
64
|
+
action: {
|
|
65
|
+
label: 'Close',
|
|
66
|
+
handler: (id) => {
|
|
67
|
+
removeToast(id)
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
persist: true,
|
|
71
|
+
})"
|
|
72
|
+
>
|
|
73
|
+
Push toast
|
|
74
|
+
</Button>
|
|
75
|
+
</td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr>
|
|
78
|
+
<th>Custom body</th>
|
|
79
|
+
<td>
|
|
80
|
+
<Button
|
|
81
|
+
@click="pushToast('uhhh', {
|
|
82
|
+
bodyProps: {
|
|
83
|
+
title: 'Bro im a custom component and my id is',
|
|
84
|
+
},
|
|
85
|
+
body: testBody,
|
|
86
|
+
})"
|
|
87
|
+
>
|
|
88
|
+
Push toast
|
|
89
|
+
</Button>
|
|
90
|
+
</td>
|
|
91
|
+
</tr>
|
|
92
|
+
</tbody>
|
|
93
|
+
</table>
|
|
94
|
+
<Toasts />
|
|
95
|
+
</div>
|
|
96
|
+
</template>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<script setup lang='ts'>
|
|
2
|
+
import Flex from '../components/Flex/Flex.vue'
|
|
3
|
+
import Tooltip from '../components/Tooltip/Tooltip.vue'
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div class="mb-xxl">
|
|
8
|
+
<h3 class="mb-l">
|
|
9
|
+
Tooltips
|
|
10
|
+
</h3>
|
|
11
|
+
|
|
12
|
+
<table>
|
|
13
|
+
<tbody>
|
|
14
|
+
<tr>
|
|
15
|
+
<th>Base</th>
|
|
16
|
+
<td>
|
|
17
|
+
<Tooltip>
|
|
18
|
+
<span>Hover me</span>
|
|
19
|
+
<template #tooltip>
|
|
20
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam minus labore commodi aliquid molestiae non voluptas, veritatis nesciunt. Nihil quod necessitatibus veritatis nam enim eius deleniti unde recusandae reprehenderit voluptate?</p>
|
|
21
|
+
</template>
|
|
22
|
+
</Tooltip>
|
|
23
|
+
</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<th>Hover delay</th>
|
|
27
|
+
<td>
|
|
28
|
+
<Tooltip :delay="500">
|
|
29
|
+
<span>Hover me</span>
|
|
30
|
+
<template #tooltip>
|
|
31
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
|
|
32
|
+
</template>
|
|
33
|
+
</Tooltip>
|
|
34
|
+
</td>
|
|
35
|
+
</tr>
|
|
36
|
+
<tr>
|
|
37
|
+
<th>Custom placement</th>
|
|
38
|
+
<td>
|
|
39
|
+
<Flex>
|
|
40
|
+
<Tooltip placement="top">
|
|
41
|
+
<span>Above</span>
|
|
42
|
+
<template #tooltip>
|
|
43
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
|
|
44
|
+
</template>
|
|
45
|
+
</Tooltip>
|
|
46
|
+
<Tooltip placement="right">
|
|
47
|
+
<span>Right</span>
|
|
48
|
+
<template #tooltip>
|
|
49
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
|
|
50
|
+
</template>
|
|
51
|
+
</Tooltip>
|
|
52
|
+
<Tooltip placement="left">
|
|
53
|
+
<span>Left</span>
|
|
54
|
+
<template #tooltip>
|
|
55
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
|
|
56
|
+
</template>
|
|
57
|
+
</Tooltip>
|
|
58
|
+
<Tooltip placement="bottom">
|
|
59
|
+
<span>Bottom</span>
|
|
60
|
+
<template #tooltip>
|
|
61
|
+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
|
|
62
|
+
</template>
|
|
63
|
+
</Tooltip>
|
|
64
|
+
</Flex>
|
|
65
|
+
</td>
|
|
66
|
+
</tr>
|
|
67
|
+
</tbody>
|
|
68
|
+
</table>
|
|
69
|
+
</div>
|
|
70
|
+
</template>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<script setup lang='ts'>
|
|
2
|
+
import Grid from '../../components/Grid/Grid.vue'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
name: string
|
|
6
|
+
color: string
|
|
7
|
+
}>()
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<Grid columns="212px 32px" align-center>
|
|
12
|
+
<span>{{ props.name }}</span>
|
|
13
|
+
<div
|
|
14
|
+
class="cube" :style="{
|
|
15
|
+
backgroundColor: `var(${props.color})`,
|
|
16
|
+
}"
|
|
17
|
+
/>
|
|
18
|
+
</Grid>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<style scoped>
|
|
22
|
+
.cube {
|
|
23
|
+
display: block;
|
|
24
|
+
width: 32px;
|
|
25
|
+
height: 32px;
|
|
26
|
+
border-radius: var(--border-radius-xs);
|
|
27
|
+
}
|
|
28
|
+
</style>
|
package/src/index.ts
CHANGED
|
@@ -41,13 +41,8 @@ import Sheet from './components/Sheet/Sheet.vue'
|
|
|
41
41
|
import Skeleton from './components/Skeleton/Skeleton.vue'
|
|
42
42
|
import Spinner from './components/Spinner/Spinner.vue'
|
|
43
43
|
import Switch from './components/Switch/Switch.vue'
|
|
44
|
-
import
|
|
45
|
-
import Header from './components/Table/Header.vue'
|
|
46
|
-
import Row from './components/Table/Row.vue'
|
|
47
|
-
import SelectAll from './components/Table/SelectAll.vue'
|
|
48
|
-
import SelectRow from './components/Table/SelectRow.vue'
|
|
44
|
+
import * as Table from './components/Table'
|
|
49
45
|
import { defineTable } from './components/Table/table'
|
|
50
|
-
import Table from './components/Table/Table.vue'
|
|
51
46
|
import Tab from './components/Tabs/Tab.vue'
|
|
52
47
|
import Tabs from './components/Tabs/Tabs.vue'
|
|
53
48
|
import { pushToast, removeToast } from './components/Toast/toast'
|
|
@@ -55,6 +50,7 @@ import Toasts from './components/Toast/Toasts.vue'
|
|
|
55
50
|
import Tooltip from './components/Tooltip/Tooltip.vue'
|
|
56
51
|
import Backdrop from './internal/Backdrop/Backdrop.vue'
|
|
57
52
|
import { searchString } from './shared/helpers'
|
|
53
|
+
import { setColorTheme, theme } from './shared/theme'
|
|
58
54
|
import './index.scss'
|
|
59
55
|
|
|
60
56
|
export {
|
|
@@ -70,7 +66,6 @@ export {
|
|
|
70
66
|
ButtonGroup,
|
|
71
67
|
Calendar,
|
|
72
68
|
Card,
|
|
73
|
-
Cell,
|
|
74
69
|
Checkbox,
|
|
75
70
|
Confirm,
|
|
76
71
|
CopyClipboard,
|
|
@@ -85,7 +80,6 @@ export {
|
|
|
85
80
|
File,
|
|
86
81
|
Flex,
|
|
87
82
|
Grid,
|
|
88
|
-
Header,
|
|
89
83
|
Input,
|
|
90
84
|
Kbd,
|
|
91
85
|
KbdGroup,
|
|
@@ -101,11 +95,9 @@ export {
|
|
|
101
95
|
Radio,
|
|
102
96
|
RadioGroup,
|
|
103
97
|
removeToast,
|
|
104
|
-
Row,
|
|
105
98
|
searchString,
|
|
106
99
|
Select,
|
|
107
|
-
|
|
108
|
-
SelectRow,
|
|
100
|
+
setColorTheme,
|
|
109
101
|
Sheet,
|
|
110
102
|
Skeleton,
|
|
111
103
|
Spinner,
|
|
@@ -114,6 +106,7 @@ export {
|
|
|
114
106
|
Table,
|
|
115
107
|
Tabs,
|
|
116
108
|
Textarea,
|
|
109
|
+
theme,
|
|
117
110
|
Toasts,
|
|
118
111
|
Tooltip,
|
|
119
112
|
}
|
|
@@ -19,10 +19,16 @@
|
|
|
19
19
|
z-index: -1;
|
|
20
20
|
inset: 0;
|
|
21
21
|
background-color: var(--color-bg-lowered);
|
|
22
|
-
opacity: 0.
|
|
22
|
+
opacity: 0.75;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
html:has(.vui-backdrop) {
|
|
27
27
|
overflow: hidden;
|
|
28
28
|
}
|
|
29
|
+
|
|
30
|
+
:root.light {
|
|
31
|
+
.vui-backdrop:after {
|
|
32
|
+
background-color: var(--dark-color-bg);
|
|
33
|
+
}
|
|
34
|
+
}
|
package/src/shared/helpers.ts
CHANGED
|
@@ -42,6 +42,13 @@ export function stringRgbToValues(rgbString: string): [number, number, number] {
|
|
|
42
42
|
return rgbString.match(/\d+/g)!.map(Number) as any as [number, number, number]
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
// export function rgbToHex(r: number, g: number, b: number): string {
|
|
46
|
+
// return `#${[r, g, b].map((x) => {
|
|
47
|
+
// const hex = x.toString(16)
|
|
48
|
+
// return hex.length === 1 ? `0${hex}` : hex
|
|
49
|
+
// }).join('')}`
|
|
50
|
+
// }
|
|
51
|
+
|
|
45
52
|
export function randomMinMax(min: number, max: number): number {
|
|
46
53
|
min = Math.ceil(min)
|
|
47
54
|
max = Math.floor(max)
|
|
@@ -72,3 +79,39 @@ export function formatUnitValue(value: string | number, unit: string = 'px'): st
|
|
|
72
79
|
? value
|
|
73
80
|
: `${value}${unit}`
|
|
74
81
|
}
|
|
82
|
+
|
|
83
|
+
export function clamp(min: number, max: number, value: number): number {
|
|
84
|
+
return Math.min(Math.max(value, min), max)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Checks wether an object is inside of Set, based on comparing values. Not reference
|
|
89
|
+
*
|
|
90
|
+
* @param set The Set
|
|
91
|
+
* @param obj Object which should be in the side
|
|
92
|
+
* @returns If object is inside the set
|
|
93
|
+
*/
|
|
94
|
+
export function isObjectInSet(set: Set<any>, obj: any): boolean {
|
|
95
|
+
for (const item of set) {
|
|
96
|
+
// Check if both have the same number of keys
|
|
97
|
+
if (Object.keys(item).length !== Object.keys(obj).length) {
|
|
98
|
+
continue
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Compare each key-value pair
|
|
102
|
+
let isEqual = true
|
|
103
|
+
|
|
104
|
+
for (const key in item) {
|
|
105
|
+
if (key in item && item[key] !== obj[key]) {
|
|
106
|
+
isEqual = false
|
|
107
|
+
break
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
if (isEqual) {
|
|
112
|
+
return true
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return false
|
|
117
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { useColorMode } from '@vueuse/core'
|
|
2
|
+
import { readonly } from 'vue'
|
|
3
|
+
|
|
4
|
+
export type VuiTheme = 'light' | 'dark' | 'auto'
|
|
5
|
+
|
|
6
|
+
const themeImpl = useColorMode({
|
|
7
|
+
modes: {
|
|
8
|
+
dark: 'dark',
|
|
9
|
+
light: 'light',
|
|
10
|
+
// TODO: add black theme
|
|
11
|
+
// TODO: add high contrast light & dark theme
|
|
12
|
+
},
|
|
13
|
+
})
|
|
14
|
+
|
|
15
|
+
export const theme = readonly(themeImpl)
|
|
16
|
+
|
|
17
|
+
export function setColorTheme(newTheme: VuiTheme): void {
|
|
18
|
+
if (newTheme === themeImpl.value)
|
|
19
|
+
return
|
|
20
|
+
|
|
21
|
+
themeImpl.value = newTheme
|
|
22
|
+
}
|