From cb60e5e3f1ad2a372cf12ec75d258f62806295a7 Mon Sep 17 00:00:00 2001 From: nency-canyon Date: Wed, 1 Jul 2026 22:52:23 +0530 Subject: [PATCH 1/8] feat: add shared portal components --- resources/js/components/portal/HeroSearch.vue | 131 ++++++++++++++++++ resources/js/components/portal/Subheading.vue | 48 +++++++ .../components/portal/home/CategoryCard.vue | 80 +++++++++++ .../js/components/portal/home/HelpCenter.vue | 61 ++++++++ .../js/components/portal/home/HeroSearch.vue | 94 +++++++++++++ .../components/portal/home/SearchLoading.vue | 40 ++++++ .../components/portal/home/SearchResults.vue | 129 +++++++++++++++++ 7 files changed, 583 insertions(+) create mode 100644 resources/js/components/portal/HeroSearch.vue create mode 100644 resources/js/components/portal/Subheading.vue create mode 100644 resources/js/components/portal/home/CategoryCard.vue create mode 100644 resources/js/components/portal/home/HelpCenter.vue create mode 100644 resources/js/components/portal/home/HeroSearch.vue create mode 100644 resources/js/components/portal/home/SearchLoading.vue create mode 100644 resources/js/components/portal/home/SearchResults.vue diff --git a/resources/js/components/portal/HeroSearch.vue b/resources/js/components/portal/HeroSearch.vue new file mode 100644 index 0000000..f5710cb --- /dev/null +++ b/resources/js/components/portal/HeroSearch.vue @@ -0,0 +1,131 @@ + + + + diff --git a/resources/js/components/portal/Subheading.vue b/resources/js/components/portal/Subheading.vue new file mode 100644 index 0000000..0c0ee42 --- /dev/null +++ b/resources/js/components/portal/Subheading.vue @@ -0,0 +1,48 @@ + + + + diff --git a/resources/js/components/portal/home/CategoryCard.vue b/resources/js/components/portal/home/CategoryCard.vue new file mode 100644 index 0000000..7cfdc2e --- /dev/null +++ b/resources/js/components/portal/home/CategoryCard.vue @@ -0,0 +1,80 @@ + + + + diff --git a/resources/js/components/portal/home/HelpCenter.vue b/resources/js/components/portal/home/HelpCenter.vue new file mode 100644 index 0000000..0bacedb --- /dev/null +++ b/resources/js/components/portal/home/HelpCenter.vue @@ -0,0 +1,61 @@ + + + + diff --git a/resources/js/components/portal/home/HeroSearch.vue b/resources/js/components/portal/home/HeroSearch.vue new file mode 100644 index 0000000..3c1a2ee --- /dev/null +++ b/resources/js/components/portal/home/HeroSearch.vue @@ -0,0 +1,94 @@ + + + + diff --git a/resources/js/components/portal/home/SearchLoading.vue b/resources/js/components/portal/home/SearchLoading.vue new file mode 100644 index 0000000..0c78292 --- /dev/null +++ b/resources/js/components/portal/home/SearchLoading.vue @@ -0,0 +1,40 @@ + + + + diff --git a/resources/js/components/portal/home/SearchResults.vue b/resources/js/components/portal/home/SearchResults.vue new file mode 100644 index 0000000..7ead34f --- /dev/null +++ b/resources/js/components/portal/home/SearchResults.vue @@ -0,0 +1,129 @@ + + + + From 715450628d011c9e3791726513a3f7133a4d6c8b Mon Sep 17 00:00:00 2001 From: nency-canyon Date: Thu, 2 Jul 2026 19:10:31 +0530 Subject: [PATCH 2/8] feat: add category page portal components --- .../js/components/portal/Breadcrumbs.vue | 89 +++++++++ resources/js/components/portal/Page.vue | 59 ++++++ resources/js/components/portal/Pagination.vue | 174 ++++++++++++++++++ .../js/components/portal/ResourceList.vue | 95 ++++++++++ .../js/components/portal/ResourceListItem.vue | 71 +++++++ resources/js/components/portal/Tabs.vue | 83 +++++++++ resources/js/components/portal/Tags.vue | 60 ++++++ .../js/components/portal/category/Article.vue | 65 +++++++ .../portal/category/SearchResults.vue | 114 ++++++++++++ .../portal/category/SubCategories.vue | 62 +++++++ 10 files changed, 872 insertions(+) create mode 100644 resources/js/components/portal/Breadcrumbs.vue create mode 100644 resources/js/components/portal/Page.vue create mode 100644 resources/js/components/portal/Pagination.vue create mode 100644 resources/js/components/portal/ResourceList.vue create mode 100644 resources/js/components/portal/ResourceListItem.vue create mode 100644 resources/js/components/portal/Tabs.vue create mode 100644 resources/js/components/portal/Tags.vue create mode 100644 resources/js/components/portal/category/Article.vue create mode 100644 resources/js/components/portal/category/SearchResults.vue create mode 100644 resources/js/components/portal/category/SubCategories.vue diff --git a/resources/js/components/portal/Breadcrumbs.vue b/resources/js/components/portal/Breadcrumbs.vue new file mode 100644 index 0000000..c02b5ba --- /dev/null +++ b/resources/js/components/portal/Breadcrumbs.vue @@ -0,0 +1,89 @@ + + + + diff --git a/resources/js/components/portal/Page.vue b/resources/js/components/portal/Page.vue new file mode 100644 index 0000000..0fa9475 --- /dev/null +++ b/resources/js/components/portal/Page.vue @@ -0,0 +1,59 @@ + + + + diff --git a/resources/js/components/portal/Pagination.vue b/resources/js/components/portal/Pagination.vue new file mode 100644 index 0000000..219a1d4 --- /dev/null +++ b/resources/js/components/portal/Pagination.vue @@ -0,0 +1,174 @@ + + + + diff --git a/resources/js/components/portal/ResourceList.vue b/resources/js/components/portal/ResourceList.vue new file mode 100644 index 0000000..e2d4e2c --- /dev/null +++ b/resources/js/components/portal/ResourceList.vue @@ -0,0 +1,95 @@ + + + + diff --git a/resources/js/components/portal/ResourceListItem.vue b/resources/js/components/portal/ResourceListItem.vue new file mode 100644 index 0000000..f036965 --- /dev/null +++ b/resources/js/components/portal/ResourceListItem.vue @@ -0,0 +1,71 @@ + + + + diff --git a/resources/js/components/portal/Tabs.vue b/resources/js/components/portal/Tabs.vue new file mode 100644 index 0000000..712b4d9 --- /dev/null +++ b/resources/js/components/portal/Tabs.vue @@ -0,0 +1,83 @@ + + + + diff --git a/resources/js/components/portal/Tags.vue b/resources/js/components/portal/Tags.vue new file mode 100644 index 0000000..9ec4aa1 --- /dev/null +++ b/resources/js/components/portal/Tags.vue @@ -0,0 +1,60 @@ + + + + diff --git a/resources/js/components/portal/category/Article.vue b/resources/js/components/portal/category/Article.vue new file mode 100644 index 0000000..3489ae0 --- /dev/null +++ b/resources/js/components/portal/category/Article.vue @@ -0,0 +1,65 @@ + + + + diff --git a/resources/js/components/portal/category/SearchResults.vue b/resources/js/components/portal/category/SearchResults.vue new file mode 100644 index 0000000..f101560 --- /dev/null +++ b/resources/js/components/portal/category/SearchResults.vue @@ -0,0 +1,114 @@ + + + + diff --git a/resources/js/components/portal/category/SubCategories.vue b/resources/js/components/portal/category/SubCategories.vue new file mode 100644 index 0000000..eb48d19 --- /dev/null +++ b/resources/js/components/portal/category/SubCategories.vue @@ -0,0 +1,62 @@ + + + + From 78f7809ac87509e640fd79472e7cfb36683b5d9e Mon Sep 17 00:00:00 2001 From: nency-canyon Date: Fri, 3 Jul 2026 22:14:28 +0530 Subject: [PATCH 3/8] feat: add portal article components including loading, empty state, page card, article content, feedback, and meta --- resources/js/components/portal/AppLoading.vue | 42 +++++++++ resources/js/components/portal/EmptyState.vue | 71 +++++++++++++++ resources/js/components/portal/PageCard.vue | 38 ++++++++ .../portal/article/ArticleAttachments.vue | 62 +++++++++++++ .../portal/article/ArticleContent.vue | 72 +++++++++++++++ .../portal/article/ArticleFeedback.vue | 89 +++++++++++++++++++ .../components/portal/article/ArticleMeta.vue | 60 +++++++++++++ 7 files changed, 434 insertions(+) create mode 100644 resources/js/components/portal/AppLoading.vue create mode 100644 resources/js/components/portal/EmptyState.vue create mode 100644 resources/js/components/portal/PageCard.vue create mode 100644 resources/js/components/portal/article/ArticleAttachments.vue create mode 100644 resources/js/components/portal/article/ArticleContent.vue create mode 100644 resources/js/components/portal/article/ArticleFeedback.vue create mode 100644 resources/js/components/portal/article/ArticleMeta.vue diff --git a/resources/js/components/portal/AppLoading.vue b/resources/js/components/portal/AppLoading.vue new file mode 100644 index 0000000..c436352 --- /dev/null +++ b/resources/js/components/portal/AppLoading.vue @@ -0,0 +1,42 @@ + + + + diff --git a/resources/js/components/portal/EmptyState.vue b/resources/js/components/portal/EmptyState.vue new file mode 100644 index 0000000..149dd6c --- /dev/null +++ b/resources/js/components/portal/EmptyState.vue @@ -0,0 +1,71 @@ + + + + diff --git a/resources/js/components/portal/PageCard.vue b/resources/js/components/portal/PageCard.vue new file mode 100644 index 0000000..640e39b --- /dev/null +++ b/resources/js/components/portal/PageCard.vue @@ -0,0 +1,38 @@ + + diff --git a/resources/js/components/portal/article/ArticleAttachments.vue b/resources/js/components/portal/article/ArticleAttachments.vue new file mode 100644 index 0000000..ab730a1 --- /dev/null +++ b/resources/js/components/portal/article/ArticleAttachments.vue @@ -0,0 +1,62 @@ + + + + diff --git a/resources/js/components/portal/article/ArticleContent.vue b/resources/js/components/portal/article/ArticleContent.vue new file mode 100644 index 0000000..b0f0854 --- /dev/null +++ b/resources/js/components/portal/article/ArticleContent.vue @@ -0,0 +1,72 @@ + + + + diff --git a/resources/js/components/portal/article/ArticleFeedback.vue b/resources/js/components/portal/article/ArticleFeedback.vue new file mode 100644 index 0000000..5d55051 --- /dev/null +++ b/resources/js/components/portal/article/ArticleFeedback.vue @@ -0,0 +1,89 @@ + + + + diff --git a/resources/js/components/portal/article/ArticleMeta.vue b/resources/js/components/portal/article/ArticleMeta.vue new file mode 100644 index 0000000..dbddf0c --- /dev/null +++ b/resources/js/components/portal/article/ArticleMeta.vue @@ -0,0 +1,60 @@ + + + + From 225b6004b41037756e299c6b032c53561c7821f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 3 Jul 2026 16:47:54 +0000 Subject: [PATCH 4/8] chore: fix enforcement of copyright on all files --- resources/js/components/portal/AppLoading.vue | 2 +- resources/js/components/portal/Breadcrumbs.vue | 2 +- resources/js/components/portal/EmptyState.vue | 2 +- resources/js/components/portal/HeroSearch.vue | 2 +- resources/js/components/portal/Page.vue | 2 +- resources/js/components/portal/PageCard.vue | 2 +- resources/js/components/portal/Pagination.vue | 2 +- resources/js/components/portal/ResourceList.vue | 2 +- resources/js/components/portal/ResourceListItem.vue | 2 +- resources/js/components/portal/Subheading.vue | 2 +- resources/js/components/portal/Tabs.vue | 2 +- resources/js/components/portal/Tags.vue | 2 +- resources/js/components/portal/article/ArticleAttachments.vue | 2 +- resources/js/components/portal/article/ArticleContent.vue | 2 +- resources/js/components/portal/article/ArticleFeedback.vue | 2 +- resources/js/components/portal/article/ArticleMeta.vue | 2 +- resources/js/components/portal/category/Article.vue | 2 +- resources/js/components/portal/category/SearchResults.vue | 2 +- resources/js/components/portal/category/SubCategories.vue | 2 +- resources/js/components/portal/home/CategoryCard.vue | 2 +- resources/js/components/portal/home/HelpCenter.vue | 2 +- resources/js/components/portal/home/HeroSearch.vue | 2 +- resources/js/components/portal/home/SearchLoading.vue | 2 +- resources/js/components/portal/home/SearchResults.vue | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/resources/js/components/portal/AppLoading.vue b/resources/js/components/portal/AppLoading.vue index c436352..d6d8612 100644 --- a/resources/js/components/portal/AppLoading.vue +++ b/resources/js/components/portal/AppLoading.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Breadcrumbs.vue b/resources/js/components/portal/Breadcrumbs.vue index c02b5ba..85b2388 100644 --- a/resources/js/components/portal/Breadcrumbs.vue +++ b/resources/js/components/portal/Breadcrumbs.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/EmptyState.vue b/resources/js/components/portal/EmptyState.vue index 149dd6c..1579dfe 100644 --- a/resources/js/components/portal/EmptyState.vue +++ b/resources/js/components/portal/EmptyState.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/HeroSearch.vue b/resources/js/components/portal/HeroSearch.vue index f5710cb..c2558f0 100644 --- a/resources/js/components/portal/HeroSearch.vue +++ b/resources/js/components/portal/HeroSearch.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Page.vue b/resources/js/components/portal/Page.vue index 0fa9475..6908633 100644 --- a/resources/js/components/portal/Page.vue +++ b/resources/js/components/portal/Page.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/PageCard.vue b/resources/js/components/portal/PageCard.vue index 640e39b..3dbbd87 100644 --- a/resources/js/components/portal/PageCard.vue +++ b/resources/js/components/portal/PageCard.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Pagination.vue b/resources/js/components/portal/Pagination.vue index 219a1d4..a0a12de 100644 --- a/resources/js/components/portal/Pagination.vue +++ b/resources/js/components/portal/Pagination.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/ResourceList.vue b/resources/js/components/portal/ResourceList.vue index e2d4e2c..1a36906 100644 --- a/resources/js/components/portal/ResourceList.vue +++ b/resources/js/components/portal/ResourceList.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/ResourceListItem.vue b/resources/js/components/portal/ResourceListItem.vue index f036965..cfa0a32 100644 --- a/resources/js/components/portal/ResourceListItem.vue +++ b/resources/js/components/portal/ResourceListItem.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Subheading.vue b/resources/js/components/portal/Subheading.vue index 0c0ee42..4ceaa54 100644 --- a/resources/js/components/portal/Subheading.vue +++ b/resources/js/components/portal/Subheading.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Tabs.vue b/resources/js/components/portal/Tabs.vue index 712b4d9..df241cc 100644 --- a/resources/js/components/portal/Tabs.vue +++ b/resources/js/components/portal/Tabs.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/Tags.vue b/resources/js/components/portal/Tags.vue index 9ec4aa1..2f9c982 100644 --- a/resources/js/components/portal/Tags.vue +++ b/resources/js/components/portal/Tags.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/article/ArticleAttachments.vue b/resources/js/components/portal/article/ArticleAttachments.vue index ab730a1..fc47b44 100644 --- a/resources/js/components/portal/article/ArticleAttachments.vue +++ b/resources/js/components/portal/article/ArticleAttachments.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/article/ArticleContent.vue b/resources/js/components/portal/article/ArticleContent.vue index b0f0854..f4b2c4b 100644 --- a/resources/js/components/portal/article/ArticleContent.vue +++ b/resources/js/components/portal/article/ArticleContent.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/article/ArticleFeedback.vue b/resources/js/components/portal/article/ArticleFeedback.vue index 5d55051..0fd8826 100644 --- a/resources/js/components/portal/article/ArticleFeedback.vue +++ b/resources/js/components/portal/article/ArticleFeedback.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/article/ArticleMeta.vue b/resources/js/components/portal/article/ArticleMeta.vue index dbddf0c..c712ff7 100644 --- a/resources/js/components/portal/article/ArticleMeta.vue +++ b/resources/js/components/portal/article/ArticleMeta.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/category/Article.vue b/resources/js/components/portal/category/Article.vue index 3489ae0..5f15521 100644 --- a/resources/js/components/portal/category/Article.vue +++ b/resources/js/components/portal/category/Article.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/category/SearchResults.vue b/resources/js/components/portal/category/SearchResults.vue index f101560..923c2be 100644 --- a/resources/js/components/portal/category/SearchResults.vue +++ b/resources/js/components/portal/category/SearchResults.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/category/SubCategories.vue b/resources/js/components/portal/category/SubCategories.vue index eb48d19..35becbe 100644 --- a/resources/js/components/portal/category/SubCategories.vue +++ b/resources/js/components/portal/category/SubCategories.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/home/CategoryCard.vue b/resources/js/components/portal/home/CategoryCard.vue index 7cfdc2e..3b9f0eb 100644 --- a/resources/js/components/portal/home/CategoryCard.vue +++ b/resources/js/components/portal/home/CategoryCard.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/home/HelpCenter.vue b/resources/js/components/portal/home/HelpCenter.vue index 0bacedb..1b34193 100644 --- a/resources/js/components/portal/home/HelpCenter.vue +++ b/resources/js/components/portal/home/HelpCenter.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/home/HeroSearch.vue b/resources/js/components/portal/home/HeroSearch.vue index 3c1a2ee..1599e35 100644 --- a/resources/js/components/portal/home/HeroSearch.vue +++ b/resources/js/components/portal/home/HeroSearch.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/home/SearchLoading.vue b/resources/js/components/portal/home/SearchLoading.vue index 0c78292..f7a9486 100644 --- a/resources/js/components/portal/home/SearchLoading.vue +++ b/resources/js/components/portal/home/SearchLoading.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of diff --git a/resources/js/components/portal/home/SearchResults.vue b/resources/js/components/portal/home/SearchResults.vue index 7ead34f..386a165 100644 --- a/resources/js/components/portal/home/SearchResults.vue +++ b/resources/js/components/portal/home/SearchResults.vue @@ -15,7 +15,7 @@ in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. - You may not alter, remove, or obscure any licensing, copyright, or other notices - of the licensor in the software. Any use of the licensor's trademarks is subject + of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. - Canyon GBS LLC respects the intellectual property rights of others and expects the same in return. Canyon GBS™ and Canyon GBS Common are registered trademarks of From 5e38cc31f71f0dbb2bdd0fa25878bae52a700418 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 3 Jul 2026 16:48:53 +0000 Subject: [PATCH 5/8] chore: fix code style --- resources/js/components/portal/article/ArticleFeedback.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/js/components/portal/article/ArticleFeedback.vue b/resources/js/components/portal/article/ArticleFeedback.vue index 0fd8826..f64c734 100644 --- a/resources/js/components/portal/article/ArticleFeedback.vue +++ b/resources/js/components/portal/article/ArticleFeedback.vue @@ -49,7 +49,9 @@