Skip to content

Commit 562a97e

Browse files
Updating docs
1 parent 5e84ac6 commit 562a97e

File tree

8 files changed

+31
-26
lines changed

8 files changed

+31
-26
lines changed

src/documentation/DocsPage.vue

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,24 @@ const componentVersion = ref(packageInfo.version);
131131
provide('classes', classes);
132132
</script>
133133

134+
<style lang="scss" scoped>
135+
:deep(code) {
136+
&.ic {
137+
background-color: rgba(255, 255, 255, 0.1) !important;
138+
border-radius: 3px;
139+
font-size: 85%;
140+
font-weight: normal;
141+
padding: 0.2em 0.4em;
142+
}
143+
}
144+
</style>
145+
134146
<style lang="scss">
147+
.v-theme--light {
148+
code {
149+
&.ic {
150+
background-color: rgba(0, 0, 0, 0.1) !important;
151+
}
152+
}
153+
}
135154
</style>

src/documentation/components/CheckboxComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<VInlineCheckbox
2626
v-model="values.boolean"
2727
:density="density"
28-
do-not-save
2928
hide-details
29+
:loading-wait="false"
3030
/>
3131
</v-col>
3232

@@ -52,7 +52,7 @@
5252
:items="propsStore.vInlineCheckboxProps"
5353
section-id="inline-checkbox-props"
5454
section-title="Props"
55-
subtitle="These are all props for the <code>VInlineCheckbox</code> component"
55+
subtitle="These are all props for the <code class='ic'>VInlineCheckbox</code> component"
5656
/>
5757
</v-col>
5858
</template>

src/documentation/components/SelectComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
v-model="values.select"
2727
align-items="flex-end"
2828
:density="density"
29-
do-not-save
3029
item-title="state"
3130
item-value="abbr"
3231
:items="items"
32+
:loading-wait="false"
3333
:table-field="false"
3434
:variant="variant"
3535
>
@@ -64,7 +64,7 @@
6464
:items="propsStore.vInlineSelectProps"
6565
section-id="inline-select-props"
6666
section-title="Props"
67-
subtitle="These are all props for the <code>VInlineSelect</code> component"
67+
subtitle="These are all props for the <code class='ic'>VInlineSelect</code> component"
6868
/>
6969
</v-col>
7070
</template>

src/documentation/components/SwitchComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<VInlineSwitch
2626
v-model="values.boolean"
2727
:density="density"
28-
do-not-save
2928
hide-details
29+
:loading-wait="false"
3030
/>
3131
</v-col>
3232

@@ -51,7 +51,7 @@
5151
:items="propsStore.vInlineSwitchProps"
5252
section-id="inline-switch-props"
5353
section-title="Props"
54-
subtitle="These are all props for the <code>VInlineSwitch</code> component"
54+
subtitle="These are all props for the <code class='ic'>VInlineSwitch</code> component"
5555
/>
5656
</v-col>
5757
</template>

src/documentation/components/TextFieldComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
v-model="values.textField"
2727
align-items="flex-end"
2828
:density="density"
29-
do-not-save
29+
:loading-wait="false"
3030
:table-field="false"
3131
:variant="variant"
3232
></VInlineTextField>
@@ -53,7 +53,7 @@
5353
:items="propsStore.vInlineTextFieldProps"
5454
section-id="inline-text-field-props"
5555
section-title="Props"
56-
subtitle="These are all props for the <code>VInlineTextField</code> component"
56+
subtitle="These are all props for the <code class='ic'>VInlineTextField</code> component"
5757
/>
5858
</v-col>
5959
</template>

src/documentation/components/TextareaComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
v-model="values.textField"
2727
align-items="flex-start"
2828
:density="density"
29-
do-not-save
29+
:loading-wait="false"
3030
rows="1"
3131
:table-field="true"
3232
:variant="variant"
@@ -55,7 +55,7 @@
5555
:items="propsStore.vInlineTextareaProps"
5656
section-id="inline-textarea-props"
5757
section-title="Props"
58-
subtitle="These are all props for the <code>VInlineTextarea</code> component"
58+
subtitle="These are all props for the <code class='ic'>VInlineTextarea</code> component"
5959
/>
6060
</v-col>
6161
</template>

src/documentation/sections/ComponentsSection.vue

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,6 @@ const store = useCoreStore();
4747
</script>
4848

4949
<style lang="scss" scoped>
50-
:deep(code) {
51-
background-color: rgba(255, 255, 255, 0.1) !important;
52-
border-radius: 3px;
53-
font-size: 85%;
54-
font-weight: normal;
55-
padding: 0.2em 0.4em;
56-
}
57-
58-
:deep(.v-theme--light) {
59-
code {
60-
background-color: rgba(0, 0, 0, 0.1) !important;
61-
}
62-
}
63-
6450
:deep(.v-input__details) {
6551
max-height: 10px;
6652
min-height: 10px;

src/documentation/sections/PropsSection.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
:items="propsStore.saveAndLoadingIconProps"
3737
section-id="props-save-and-loading-icon"
3838
section-title="Save &amp; Loading Props"
39-
subtitle="These are all props for the for the <code>VInlineSelect</code>, <code>VInlineTextarea</code>, and <code>VInlineTextField</code> components"
39+
subtitle="These are all props for the for the <code class='ic'>VInlineSelect</code>, <code class='ic'>VInlineTextarea</code>, and <code class='ic'>VInlineTextField</code> components"
4040
/>
4141

4242
<PropsTable
4343
:headers="propsStore.propsSupported.headers"
4444
:items="propsStore.trueFalseIconProps"
4545
section-id="props-true-false-icon"
4646
section-title="True/False Icon Props"
47-
subtitle="These are all props for the for the <code>VInlineCheckbox</code> and <code>VInlineSwitch</code> components"
47+
subtitle="These are all props for the for the <code class='ic'>VInlineCheckbox</code> and <code class='ic'>VInlineSwitch</code> components"
4848
/>
4949
</v-col>
5050
</v-row>

0 commit comments

Comments
 (0)