From 0d71d3224cb21574841c2ca9566dcc93219c092a Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 20 Sep 2024 14:56:25 +0300 Subject: [PATCH 01/11] PC Prefix section added --- apps/showcase/doc/passthrough/PCPrefixDoc.vue | 74 +++++++++++++++++++ apps/showcase/pages/passthrough/index.vue | 6 ++ 2 files changed, 80 insertions(+) create mode 100644 apps/showcase/doc/passthrough/PCPrefixDoc.vue diff --git a/apps/showcase/doc/passthrough/PCPrefixDoc.vue b/apps/showcase/doc/passthrough/PCPrefixDoc.vue new file mode 100644 index 000000000..cf655e90d --- /dev/null +++ b/apps/showcase/doc/passthrough/PCPrefixDoc.vue @@ -0,0 +1,74 @@ + + + diff --git a/apps/showcase/pages/passthrough/index.vue b/apps/showcase/pages/passthrough/index.vue index 9b37fa0b8..c69c6ca2c 100644 --- a/apps/showcase/pages/passthrough/index.vue +++ b/apps/showcase/pages/passthrough/index.vue @@ -21,6 +21,7 @@ import CustomCSSDoc from '@/doc/passthrough/CustomCSSDoc.vue'; import DeclarativeDoc from '@/doc/passthrough/DeclarativeDoc.vue'; import GlobalDoc from '@/doc/passthrough/GlobalDoc.vue'; import LifecycleDoc from '@/doc/passthrough/LifecycleDoc.vue'; +import PCPrefixDoc from '@/doc/passthrough/PCPrefixDoc.vue'; import UsePassThroughDoc from '@/doc/passthrough/UsePassThroughDoc.vue'; export default { @@ -37,6 +38,11 @@ export default { label: 'Declarative', component: DeclarativeDoc }, + { + id: 'pcprefix', + label: 'PC Prefix', + component: PCPrefixDoc + }, { id: 'lifecycle', label: 'Lifecycle', From a646374e32302da73bbcd7b61713244fc5e42b98 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 20 Sep 2024 14:56:43 +0300 Subject: [PATCH 02/11] PTViewer description updated --- apps/showcase/components/doc/DocApiSection.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/showcase/components/doc/DocApiSection.vue b/apps/showcase/components/doc/DocApiSection.vue index 0f49cc07c..1341e1d2b 100644 --- a/apps/showcase/components/doc/DocApiSection.vue +++ b/apps/showcase/components/doc/DocApiSection.vue @@ -348,7 +348,6 @@ export default { return !findMainInterface || findMainInterface.values.props.length > 0; } }, - computed: { description() { return this.doc && this.doc.length > 0 ? `API defines helper props, events and others for the PrimeVue ${this.header} module.` : `${this.header} is a CSS feature so does not provide a Javascript API`; From 2d64e321c23a2463aee606b0a4f8d55fc48612b4 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 20 Sep 2024 14:57:01 +0300 Subject: [PATCH 03/11] PTViewer description updated --- apps/showcase/components/doc/DocPTViewer.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/showcase/components/doc/DocPTViewer.vue b/apps/showcase/components/doc/DocPTViewer.vue index f9db9be11..36ec906b3 100644 --- a/apps/showcase/components/doc/DocPTViewer.vue +++ b/apps/showcase/components/doc/DocPTViewer.vue @@ -1,4 +1,10 @@