diff --git a/src/documentation/DocsPage.vue b/src/documentation/DocsPage.vue index 0cf425b..e9fa31d 100644 --- a/src/documentation/DocsPage.vue +++ b/src/documentation/DocsPage.vue @@ -131,5 +131,24 @@ const componentVersion = ref(packageInfo.version); provide('classes', classes); + + diff --git a/src/documentation/components/CheckboxComponent.vue b/src/documentation/components/CheckboxComponent.vue index e296b1a..49a51c5 100644 --- a/src/documentation/components/CheckboxComponent.vue +++ b/src/documentation/components/CheckboxComponent.vue @@ -25,8 +25,8 @@ @@ -52,7 +52,7 @@ :items="propsStore.vInlineCheckboxProps" section-id="inline-checkbox-props" section-title="Props" - subtitle="These are all props for the VInlineCheckbox component" + subtitle="These are all props for the VInlineCheckbox component" /> diff --git a/src/documentation/components/SelectComponent.vue b/src/documentation/components/SelectComponent.vue index c012a2d..48dc3a4 100644 --- a/src/documentation/components/SelectComponent.vue +++ b/src/documentation/components/SelectComponent.vue @@ -26,10 +26,11 @@ v-model="values.select" align-items="flex-end" :density="density" - do-not-save item-title="state" item-value="abbr" :items="items" + :loading-wait="false" + return-object :table-field="false" :variant="variant" > @@ -64,7 +65,7 @@ :items="propsStore.vInlineSelectProps" section-id="inline-select-props" section-title="Props" - subtitle="These are all props for the VInlineSelect component" + subtitle="These are all props for the VInlineSelect component" /> @@ -83,17 +84,13 @@ const variant = ref('underlined'); const values = reactive({ boolean: true, select: { - abbr: 'FL', - state: 'Florida', + abbr: 'CA', + state: 'California', }, textField: 'Hello World', }); const items = reactive([ - { - abbr: 'FL', - state: 'Florida', - }, { abbr: 'GA', state: 'Georgia', diff --git a/src/documentation/components/SwitchComponent.vue b/src/documentation/components/SwitchComponent.vue index 058ce45..69aa63d 100644 --- a/src/documentation/components/SwitchComponent.vue +++ b/src/documentation/components/SwitchComponent.vue @@ -25,8 +25,8 @@ @@ -51,7 +51,7 @@ :items="propsStore.vInlineSwitchProps" section-id="inline-switch-props" section-title="Props" - subtitle="These are all props for the VInlineSwitch component" + subtitle="These are all props for the VInlineSwitch component" /> diff --git a/src/documentation/components/TextFieldComponent.vue b/src/documentation/components/TextFieldComponent.vue index 0cba430..924c594 100644 --- a/src/documentation/components/TextFieldComponent.vue +++ b/src/documentation/components/TextFieldComponent.vue @@ -26,7 +26,7 @@ v-model="values.textField" align-items="flex-end" :density="density" - do-not-save + :loading-wait="false" :table-field="false" :variant="variant" > diff --git a/src/documentation/components/TextareaComponent.vue b/src/documentation/components/TextareaComponent.vue index cf62a59..34d9328 100644 --- a/src/documentation/components/TextareaComponent.vue +++ b/src/documentation/components/TextareaComponent.vue @@ -26,7 +26,7 @@ v-model="values.textField" align-items="flex-start" :density="density" - do-not-save + :loading-wait="false" rows="1" :table-field="true" :variant="variant" @@ -55,7 +55,7 @@ :items="propsStore.vInlineTextareaProps" section-id="inline-textarea-props" section-title="Props" - subtitle="These are all props for the VInlineTextarea component" + subtitle="These are all props for the VInlineTextarea component" /> diff --git a/src/documentation/sections/ComponentsSection.vue b/src/documentation/sections/ComponentsSection.vue index fdb6dd0..7740f9c 100644 --- a/src/documentation/sections/ComponentsSection.vue +++ b/src/documentation/sections/ComponentsSection.vue @@ -47,25 +47,6 @@ const store = useCoreStore();