Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PAC-1569-added codes for Packs API fetch #2484

Merged
merged 23 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3abb7f2
PAC-1569-added codes for Packs API fetch
nage1234 Mar 26, 2024
5d5b209
PAC-1569-added few components for filtering, changed exisitng Technol…
nage1234 Mar 31, 2024
af3e9aa
filters logic added for various pack filters
nage1234 Apr 2, 2024
87a48d8
added some more changes for routing, integrated the readme and custom…
nage1234 Apr 11, 2024
2a78b10
fixed the filter issue, handled api failure, eslint error fixed
nage1234 Apr 12, 2024
c3c662c
removed the unused component
nage1234 Apr 12, 2024
cb515d8
addressed the review comments
nage1234 Apr 12, 2024
00d1514
reverted the antd version
nage1234 Apr 12, 2024
e222d9d
search support added
nage1234 Apr 15, 2024
93355b8
addressed few review comments
nage1234 Apr 15, 2024
369e37e
fixed broken search, moved the filtering logic to memo
nage1234 Apr 16, 2024
71ad8d6
formatted the doc
nage1234 Apr 16, 2024
0243674
fixed dark mode Ant components, added empty content packs
nage1234 Apr 17, 2024
1960a63
cleanup, renamed pack details to Readme in one of the tab
nage1234 Apr 17, 2024
ad196a8
registry changes added as per the new mockup
nage1234 Apr 21, 2024
26ed76c
added config file passed registries param
nage1234 Apr 22, 2024
a780ec9
addressed the review comments
nage1234 Apr 24, 2024
cc6d2b2
a small fix - version wise readme
nage1234 Apr 24, 2024
9ed38ab
removed unwanted file and correct variable name
nage1234 Apr 24, 2024
cfb6c05
fixed a small issue with search
nage1234 Apr 25, 2024
dca42b8
Addressed the comments and restructured the codes
nage1234 Apr 29, 2024
954d6f5
addressed few more review comments
nage1234 Apr 29, 2024
ee78203
changed API rate limit to function to return promise, addressed the c…
nage1234 Apr 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion declarations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ declare module "*.module.scss" {
export default classes;
}

declare module '*.md' {
const value: string; // markdown is just a string
export default value;
}

declare module "*.scss" {
const src: string;
export default src;
Expand All @@ -13,5 +18,4 @@ declare module "*.scss" {
interface Mendable {
initialize: () => void;
} // Add other methods or properties as needed }

// Extend the global Window interface declare global { interface Window { Mendable: Mendable; } }
10 changes: 10 additions & 0 deletions docs/docs-content/integrations/packs.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_label: "Pack Information"
title: "Pack Information"
description: "Learn about packs that Palette offers and choose from Pallette packs."
hide_table_of_contents: false
icon: "teams"
tags: ["packs"]
---

<PacksInformation />
Loading
Loading