Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit bf4155a

Browse files
committed
feat(docs): update to 1.1.0-beta.1
1 parent 742978f commit bf4155a

File tree

6 files changed

+119
-5
lines changed

6 files changed

+119
-5
lines changed

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@mdi/js": "^5.9.55",
1616
"@vueuse/core": "^6.0.0",
1717
"balm-ui": "9.37.2",
18-
"gitart-vue-dialog": "1.0.3",
18+
"gitart-vue-dialog": "1.1.0-beta.1",
1919
"markdown-it-container": "^3.0.0",
2020
"prismjs": "^1.24.1",
2121
"sass": "^1.38.0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<template>
2+
<ButtonWrapper>
3+
<GDialog
4+
v-model="value"
5+
max-width="500"
6+
>
7+
<template #activator="attrs">
8+
<UiButton v-bind="attrs">
9+
Open Dialog
10+
</UiButton>
11+
</template>
12+
13+
<div class="usage-slot-dialog">
14+
<p>
15+
Using slot
16+
</p>
17+
18+
<UiButton @click="value = false">
19+
Close
20+
</UiButton>
21+
</div>
22+
</GDialog>
23+
</ButtonWrapper>
24+
</template>
25+
26+
<script>
27+
import { ref } from 'vue'
28+
29+
export default {
30+
setup() {
31+
const value = ref(false)
32+
33+
return {
34+
value,
35+
}
36+
},
37+
}
38+
</script>
39+
40+
<style lang="scss" scoped>
41+
.usage-slot-dialog {
42+
padding: 0 30px 20px;
43+
}
44+
</style>

packages/docs/src/docs/components/g-dialog.md

+55
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,62 @@ Sets width for the dialog
193193
| Name | Description |
194194
|:---|:---|
195195
| default | The default Vue slot |
196+
| activator | When used, will activate the component when clicked |
196197

198+
### `default`
199+
- **Scoped Data:**
200+
201+
```js
202+
undefined
203+
```
204+
205+
- **Details:**
206+
207+
Just put your content inside `<GDialog>`
208+
209+
---
210+
211+
### `activator`
212+
- **Scoped Data:**
213+
214+
```js
215+
{
216+
onClick: () => {}
217+
on: () => {}
218+
}
219+
```
220+
221+
- **Details:**
222+
223+
`onClick` will open your dialog. Bind scoped data to an element
224+
225+
```html
226+
<GDialog>
227+
<template #activator="attrs">
228+
<button v-bind="attrs">
229+
open
230+
</button>
231+
</template>
232+
233+
Content
234+
</GDialog>
235+
```
236+
237+
or call `onClick` manually with another event
238+
239+
```html
240+
<GDialog>
241+
<template #activator="{ onClick }">
242+
<button @mouseenter="onClick">
243+
open
244+
</button>
245+
</template>
246+
247+
Content
248+
</GDialog>
249+
```
250+
251+
---
197252

198253
## Events
199254

packages/docs/src/docs/guide/component-usage.md

+8
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ Pretty **ugly** dialog, right? Let's add background and some content. Take a loo
7979

8080
## Examples
8181

82+
### Activator slot
83+
84+
`v1.1.0`
85+
86+
In some cases, you only need one button to open a dialog. An activator slot can help here
87+
88+
<Example file="Guide/UsageActivatorExample" />
89+
8290
### Fullscreen
8391

8492
Due to limited space, full-screen dialogs may be more appropriate for mobile devices

packages/docs/src/imports.ts

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ export const imports = {
1414
}
1515
},
1616

17+
async 'Guide/UsageActivatorExample'() {
18+
return {
19+
component: (await import('./components/Examples/Guide/UsageActivatorExample.vue')).default,
20+
raw: (await import('./components/Examples/Guide/UsageActivatorExample.vue?raw')).default,
21+
}
22+
},
23+
1724
async 'Guide/UsageFullscreenExample'() {
1825
return {
1926
component: (await import('./components/Examples/Guide/UsageFullscreenExample.vue')).default,

packages/docs/yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1407,10 +1407,10 @@ get-intrinsic@^1.0.2:
14071407
has "^1.0.3"
14081408
has-symbols "^1.0.1"
14091409

1410-
gitart-vue-dialog@1.0.3:
1411-
version "1.0.3"
1412-
resolved "https://registry.yarnpkg.com/gitart-vue-dialog/-/gitart-vue-dialog-1.0.3.tgz#216cf3bced44146616aa63a6c9af92babd597843"
1413-
integrity sha512-fmLKtJcwXIh8SB2kJYN//B9gySpPKpr8avdeTFeHGmJJuZVCnjn7QXiEGqUI9srqnfB7ZAixHaKdiepBRm4Qgg==
1410+
gitart-vue-dialog@1.1.0-beta.1:
1411+
version "1.1.0-beta.1"
1412+
resolved "https://registry.yarnpkg.com/gitart-vue-dialog/-/gitart-vue-dialog-1.1.0-beta.1.tgz#06a980354e0bc308c8ba8fb544ecc8171868aba4"
1413+
integrity sha512-Hqk0CIuxH880A6eoz8xFi/jTTAx9vZSCeTFqAxVHx46PSm23EySL8gfYb45JpRaTCpdp3q8nAPv5XxdhQnf3Gw==
14141414

14151415
glob-parent@^5.1.2, glob-parent@~5.1.2:
14161416
version "5.1.2"

0 commit comments

Comments
 (0)