DataView, OrderList, PickList unstyled demo updates
parent
1b65bdab8a
commit
8c8287268f
|
@ -0,0 +1,148 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<DocSectionCode :code="code" :service="['ProductService']" embedded />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
products: null,
|
||||||
|
layout: 'grid',
|
||||||
|
code: {
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<DataView :value="products" :layout="layout">
|
||||||
|
<template #header>
|
||||||
|
<div class="flex justify-end">
|
||||||
|
<DataViewLayoutOptions v-model="layout" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template #list="slotProps">
|
||||||
|
<div class="flex-initial shrink-0 w-full">
|
||||||
|
<div class="flex flex-col xl:flex-row xl:items-start p-4 gap-4">
|
||||||
|
<img class="w-3/4 sm:w-64 xl:w-40 shadow-md block xl:block mx-auto rounded" :src="\`https://primefaces.org/cdn/primevue/images/product/\${slotProps.data.image}\`" :alt="slotProps.data.name" />
|
||||||
|
<div class="flex flex-col sm:flex-row justify-between items-center xl:items-start flex-1 gap-4">
|
||||||
|
<div class="flex flex-col items-center sm:items-start gap-3">
|
||||||
|
<div class="text-2xl font-bold text-900">
|
||||||
|
{{ slotProps.data.name }}
|
||||||
|
</div>
|
||||||
|
<Rating :modelValue="slotProps.data.rating" readonly :cancel="false"></Rating>
|
||||||
|
<div class="flex items-center gap-3">
|
||||||
|
<span class="flex items-center gap-2">
|
||||||
|
<i class="pi pi-tag"></i>
|
||||||
|
<span class="font-semibold">{{ slotProps.data.category }}</span>
|
||||||
|
</span>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data)"></Tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex sm:flex-col items-center sm:align-end gap-3 sm:gap-2">
|
||||||
|
<span class="text-2xl font-semibold">\${{ slotProps.data.price }}</span>
|
||||||
|
<Button icon="pi pi-shopping-cart" rounded :disabled="slotProps.data.inventoryStatus === 'OUTOFSTOCK'"></Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template #grid="slotProps">
|
||||||
|
<div class="flex-initial shrink-0 w-full sm:w-1/2 lg:w-full xl:w-1/3 p-2">
|
||||||
|
<div class="p-4 border surface-border surface-card rounded">
|
||||||
|
<div class="flex flex-wrap items-center justify-between gap-2">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<i class="pi pi-tag"></i>
|
||||||
|
<span class="font-semibold">{{ slotProps.data.category }}</span>
|
||||||
|
</div>
|
||||||
|
<Tag :value="slotProps.data.inventoryStatus" :severity="getSeverity(slotProps.data)"></Tag>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col items-center gap-3 py-5">
|
||||||
|
<img class="w-3/4 shadow-md rounded" :src="\`https://primefaces.org/cdn/primevue/images/product/\${slotProps.data.image}\`" :alt="slotProps.data.name" />
|
||||||
|
<div class="text-2xl font-bold">{{ slotProps.data.name }}</div>
|
||||||
|
<Rating :modelValue="slotProps.data.rating" readonly :cancel="false"></Rating>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center justify-between">
|
||||||
|
<span class="text-2xl font-semibold">\${{ slotProps.data.price }}</span>
|
||||||
|
<Button icon="pi pi-shopping-cart" rounded :disabled="slotProps.data.inventoryStatus === 'OUTOFSTOCK'"></Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</DataView>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
ProductService.getProducts().then((data) => (products.value = data.slice(0, 12)));
|
||||||
|
});
|
||||||
|
|
||||||
|
const products = ref();
|
||||||
|
const layout = ref('grid');
|
||||||
|
|
||||||
|
const getSeverity = (product) => {
|
||||||
|
switch (product.inventoryStatus) {
|
||||||
|
case 'INSTOCK':
|
||||||
|
return 'success';
|
||||||
|
|
||||||
|
case 'LOWSTOCK':
|
||||||
|
return 'warning';
|
||||||
|
|
||||||
|
case 'OUTOFSTOCK':
|
||||||
|
return 'danger';
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
<\/script>`,
|
||||||
|
data: `
|
||||||
|
/* ProductService */
|
||||||
|
{
|
||||||
|
id: '1000',
|
||||||
|
code: 'f230fh0g3',
|
||||||
|
name: 'Bamboo Watch',
|
||||||
|
description: 'Product Description',
|
||||||
|
image: 'bamboo-watch.jpg',
|
||||||
|
price: 65,
|
||||||
|
category: 'Accessories',
|
||||||
|
quantity: 24,
|
||||||
|
inventoryStatus: 'INSTOCK',
|
||||||
|
rating: 5
|
||||||
|
},
|
||||||
|
...
|
||||||
|
`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
ProductService.getProducts().then((data) => (this.products = data.slice(0, 12)));
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getSeverity(product) {
|
||||||
|
switch (product.inventoryStatus) {
|
||||||
|
case 'INSTOCK':
|
||||||
|
return 'success';
|
||||||
|
|
||||||
|
case 'LOWSTOCK':
|
||||||
|
return 'warning';
|
||||||
|
|
||||||
|
case 'OUTOFSTOCK':
|
||||||
|
return 'danger';
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<template>
|
||||||
|
<div class="doc-main">
|
||||||
|
<div class="doc-intro">
|
||||||
|
<h1>DataView Theming</h1>
|
||||||
|
</div>
|
||||||
|
<DocSections :docs="docs" />
|
||||||
|
</div>
|
||||||
|
<DocSectionNav :docs="docs" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import StyledDoc from './StyledDoc.vue';
|
||||||
|
import UnstyledDoc from './UnstyledDoc.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
docs: [
|
||||||
|
{
|
||||||
|
id: 'styled',
|
||||||
|
label: 'Styled',
|
||||||
|
component: StyledDoc
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'unstyled',
|
||||||
|
label: 'Unstyled',
|
||||||
|
component: UnstyledDoc
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -111,7 +111,7 @@ import { ProductService } from '@/service/ProductService'
|
||||||
const products = ref(null);
|
const products = ref(null);
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
ProductService.getProductsSmall().then((data) => (this.products = data));
|
ProductService.getProductsSmall().then((data) => (products.value = data));
|
||||||
});
|
});
|
||||||
<\/script>`,
|
<\/script>`,
|
||||||
data: `
|
data: `
|
||||||
|
|
|
@ -0,0 +1,69 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<DocSectionCode :code="code" :service="['ProductService']" embedded />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
products: null,
|
||||||
|
code: {
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card xl:flex xl:justify-center">
|
||||||
|
<OrderList v-model="products" listStyle="height:auto" dataKey="id">
|
||||||
|
<template #header> List of Products </template>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="flex flex-wrap p-2 items-center gap-3">
|
||||||
|
<img class="w-16 shadow-md shrink-0 rounded" :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.item.image" :alt="slotProps.item.name" />
|
||||||
|
<div class="flex-1 flex flex-col gap-2">
|
||||||
|
<span class="font-bold">{{ slotProps.item.name }}</span>
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<i class="pi pi-tag text-sm"></i>
|
||||||
|
<span>{{ slotProps.item.category }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span class="font-bold text-900">$ {{ slotProps.item.price }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</OrderList>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from 'vue';
|
||||||
|
import { ProductService } from '@/service/ProductService'
|
||||||
|
|
||||||
|
const products = ref(null);
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
ProductService.getProductsSmall().then((data) => (products.value = data));
|
||||||
|
});
|
||||||
|
<\/script>`,
|
||||||
|
data: `
|
||||||
|
/* ProductService */
|
||||||
|
{
|
||||||
|
id: '1000',
|
||||||
|
code: 'f230fh0g3',
|
||||||
|
name: 'Bamboo Watch',
|
||||||
|
description: 'Product Description',
|
||||||
|
image: 'bamboo-watch.jpg',
|
||||||
|
price: 65,
|
||||||
|
category: 'Accessories',
|
||||||
|
quantity: 24,
|
||||||
|
inventoryStatus: 'INSTOCK',
|
||||||
|
rating: 5
|
||||||
|
},
|
||||||
|
...`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
ProductService.getProductsSmall().then((data) => (this.products = data));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<template>
|
||||||
|
<div class="doc-main">
|
||||||
|
<div class="doc-intro">
|
||||||
|
<h1>OrderList Theming</h1>
|
||||||
|
</div>
|
||||||
|
<DocSections :docs="docs" />
|
||||||
|
</div>
|
||||||
|
<DocSectionNav :docs="docs" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import StyledDoc from './StyledDoc.vue';
|
||||||
|
import UnstyledDoc from './UnstyledDoc.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
docs: [
|
||||||
|
{
|
||||||
|
id: 'styled',
|
||||||
|
label: 'Styled',
|
||||||
|
component: StyledDoc
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'unstyled',
|
||||||
|
label: 'Unstyled',
|
||||||
|
component: UnstyledDoc
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -0,0 +1,72 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<DocSectionCode :code="code" :service="['ProductService']" embedded />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
products: null,
|
||||||
|
code: {
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<PickList v-model="products" listStyle="height:342px" dataKey="id">
|
||||||
|
<template #sourceheader> Available </template>
|
||||||
|
<template #targetheader> Selected </template>
|
||||||
|
<template #item="slotProps">
|
||||||
|
<div class="flex flex-wrap p-2 items-center gap-3">
|
||||||
|
<img class="w-16 shadow-md shrink-0 border-round" :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.item.image" :alt="slotProps.item.name" />
|
||||||
|
<div class="flex-1 flex flex-col gap-2">
|
||||||
|
<span class="font-bold">{{ slotProps.item.name }}</span>
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<i class="pi pi-tag text-sm"></i>
|
||||||
|
<span>{{ slotProps.item.category }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span class="font-bold text-900">$ {{ slotProps.item.price }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</PickList>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from 'vue';
|
||||||
|
import { ProductService } from '@/service/ProductService'
|
||||||
|
|
||||||
|
const products = ref(null);
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
ProductService.getProductsSmall().then((data) => (products.value = [data, []]));
|
||||||
|
});
|
||||||
|
<\/script>`,
|
||||||
|
data: `
|
||||||
|
/* ProductService */
|
||||||
|
{
|
||||||
|
id: '1000',
|
||||||
|
code: 'f230fh0g3',
|
||||||
|
name: 'Bamboo Watch',
|
||||||
|
description: 'Product Description',
|
||||||
|
image: '/bamboo-watch.jpg',
|
||||||
|
price: 65,
|
||||||
|
category: 'Accessories',
|
||||||
|
quantity: 24,
|
||||||
|
inventoryStatus: 'INSTOCK',
|
||||||
|
rating: 5
|
||||||
|
},
|
||||||
|
...
|
||||||
|
`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
ProductService.getProductsSmall().then((data) => (this.products = [data, []]));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<template>
|
||||||
|
<div class="doc-main">
|
||||||
|
<div class="doc-intro">
|
||||||
|
<h1>PickList Theming</h1>
|
||||||
|
</div>
|
||||||
|
<DocSections :docs="docs" />
|
||||||
|
</div>
|
||||||
|
<DocSectionNav :docs="docs" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import StyledDoc from './StyledDoc.vue';
|
||||||
|
import UnstyledDoc from './UnstyledDoc.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
docs: [
|
||||||
|
{
|
||||||
|
id: 'styled',
|
||||||
|
label: 'Styled',
|
||||||
|
component: StyledDoc
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'unstyled',
|
||||||
|
label: 'Unstyled',
|
||||||
|
component: UnstyledDoc
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -6,6 +6,7 @@
|
||||||
:componentDocs="docs"
|
:componentDocs="docs"
|
||||||
:apiDocs="['DataView', 'DataViewLayoutOptions']"
|
:apiDocs="['DataView', 'DataViewLayoutOptions']"
|
||||||
:ptTabComponent="ptComponent"
|
:ptTabComponent="ptComponent"
|
||||||
|
:themingDocs="themingDoc"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -18,8 +19,8 @@ import LoadingDoc from '@/doc/dataview/LoadingDoc';
|
||||||
import PaginationDoc from '@/doc/dataview/PaginationDoc';
|
import PaginationDoc from '@/doc/dataview/PaginationDoc';
|
||||||
import PrimeFlexDoc from '@/doc/dataview/PrimeFlexDoc';
|
import PrimeFlexDoc from '@/doc/dataview/PrimeFlexDoc';
|
||||||
import SortingDoc from '@/doc/dataview/SortingDoc';
|
import SortingDoc from '@/doc/dataview/SortingDoc';
|
||||||
import StyleDoc from '@/doc/dataview/StyleDoc';
|
|
||||||
import PTComponent from '@/doc/dataview/pt/index.vue';
|
import PTComponent from '@/doc/dataview/pt/index.vue';
|
||||||
|
import ThemingDoc from '@/doc/dataview/theming/index.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
@ -60,18 +61,14 @@ export default {
|
||||||
label: 'Loading',
|
label: 'Loading',
|
||||||
component: LoadingDoc
|
component: LoadingDoc
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: 'style',
|
|
||||||
label: 'Style',
|
|
||||||
component: StyleDoc
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 'accessibility',
|
id: 'accessibility',
|
||||||
label: 'Accessibility',
|
label: 'Accessibility',
|
||||||
component: AccessibilityDoc
|
component: AccessibilityDoc
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
ptComponent: PTComponent
|
ptComponent: PTComponent,
|
||||||
|
themingDoc: ThemingDoc
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<DocComponent title="Vue OrderList Component" header="OrderList" description="OrderList is used to sort a collection." :componentDocs="docs" :apiDocs="['OrderList']" :ptTabComponent="ptComponent" />
|
<DocComponent title="Vue OrderList Component" header="OrderList" description="OrderList is used to sort a collection." :componentDocs="docs" :apiDocs="['OrderList']" :ptTabComponent="ptComponent" :themingDocs="themingDoc" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AccessibilityDoc from '@/doc/orderlist/AccessibilityDoc.vue';
|
import AccessibilityDoc from '@/doc/orderlist/AccessibilityDoc.vue';
|
||||||
import BasicDoc from '@/doc/orderlist/BasicDoc.vue';
|
import BasicDoc from '@/doc/orderlist/BasicDoc.vue';
|
||||||
import ImportDoc from '@/doc/orderlist/ImportDoc.vue';
|
import ImportDoc from '@/doc/orderlist/ImportDoc.vue';
|
||||||
import StyleDoc from '@/doc/orderlist/StyleDoc.vue';
|
|
||||||
import PTComponent from '@/doc/orderlist/pt/index.vue';
|
import PTComponent from '@/doc/orderlist/pt/index.vue';
|
||||||
|
import ThemingDoc from '@/doc/orderlist/theming/index.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
@ -23,18 +23,14 @@ export default {
|
||||||
label: 'Basic',
|
label: 'Basic',
|
||||||
component: BasicDoc
|
component: BasicDoc
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: 'style',
|
|
||||||
label: 'Style',
|
|
||||||
component: StyleDoc
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 'accessibility',
|
id: 'accessibility',
|
||||||
label: 'Accessibility',
|
label: 'Accessibility',
|
||||||
component: AccessibilityDoc
|
component: AccessibilityDoc
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
ptComponent: PTComponent
|
ptComponent: PTComponent,
|
||||||
|
themingDoc: ThemingDoc
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<DocComponent title="Vue PickList Component" header="PickList" description="PickList is used to reorder items between different lists." :componentDocs="docs" :apiDocs="['PickList']" :ptTabComponent="ptComponent" />
|
<DocComponent title="Vue PickList Component" header="PickList" description="PickList is used to reorder items between different lists." :componentDocs="docs" :apiDocs="['PickList']" :ptTabComponent="ptComponent" :themingDocs="themingDoc" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AccessibilityDoc from '@/doc/picklist/AccessibilityDoc.vue';
|
import AccessibilityDoc from '@/doc/picklist/AccessibilityDoc.vue';
|
||||||
import BasicDoc from '@/doc/picklist/BasicDoc.vue';
|
import BasicDoc from '@/doc/picklist/BasicDoc.vue';
|
||||||
import ImportDoc from '@/doc/picklist/ImportDoc.vue';
|
import ImportDoc from '@/doc/picklist/ImportDoc.vue';
|
||||||
import StyleDoc from '@/doc/picklist/StyleDoc.vue';
|
|
||||||
import PTComponent from '@/doc/picklist/pt/index.vue';
|
import PTComponent from '@/doc/picklist/pt/index.vue';
|
||||||
|
import ThemingDoc from '@/doc/picklist/theming/index.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
@ -23,18 +23,14 @@ export default {
|
||||||
label: 'Basic',
|
label: 'Basic',
|
||||||
component: BasicDoc
|
component: BasicDoc
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: 'style',
|
|
||||||
label: 'Style',
|
|
||||||
component: StyleDoc
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 'accessibility',
|
id: 'accessibility',
|
||||||
label: 'Accessibility',
|
label: 'Accessibility',
|
||||||
component: AccessibilityDoc
|
component: AccessibilityDoc
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
ptComponent: PTComponent
|
ptComponent: PTComponent,
|
||||||
|
themingDoc: ThemingDoc
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue