Skip to content

Commit 5931cb1

Browse files
[DEV] documentation
1 parent 42ce3d9 commit 5931cb1

25 files changed

+1191
-1117
lines changed

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuetify-stepper-form",
3-
"version": "1.1.0",
3+
"version": "1.0.0",
44
"description": "Vuetify Plugin Stepper Form",
55
"private": false,
66
"publishConfig": {
@@ -42,6 +42,11 @@
4242
"vuetify",
4343
"vue",
4444
"vue3",
45+
"form",
46+
"form builder",
47+
"stepper",
48+
"vee-validate",
49+
"yup",
4550
"component",
4651
"plugin",
4752
"javascript",
@@ -50,6 +55,8 @@
5055
"wdns"
5156
],
5257
"dependencies": {
58+
"@vueuse/core": "^11.1.0",
59+
"@wdns/vuetify-color-field": "^1.1.8",
5360
"vue": "^3.5.11",
5461
"vuetify": "^3.7.2"
5562
},

pnpm-lock.yaml

Lines changed: 85 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.vue

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818

1919
<!-- ====================================================== Main Container -->
2020
<v-main class="pb-10">
21-
<v-container fluid>
21+
<v-container
22+
class="px-7"
23+
style="max-width: 1368px;"
24+
>
2225
<DocsPage :codeBlockOptions="codeBlockSettings" />
2326
</v-container>
2427
</v-main>
@@ -74,6 +77,18 @@ function toggleDrawer() {
7477
}
7578
</script>
7679

80+
<style lang="scss" scoped>
81+
:deep(code) {
82+
&.ic {
83+
background-color: rgb(255 255 255 / 10%) !important;
84+
border-radius: 3px;
85+
font-size: 85%;
86+
font-weight: normal;
87+
padding: 0.2em 0.4em;
88+
}
89+
}
90+
</style>
91+
7792
<style lang="scss">
7893
html {
7994
scroll-behavior: smooth;
@@ -100,6 +115,12 @@ a {
100115
}
101116
}
102117
}
118+
119+
code {
120+
&.ic {
121+
background-color: rgb(0 0 0 / 10%) !important;
122+
}
123+
}
103124
}
104125
105126
.top-app-bar {

0 commit comments

Comments
 (0)