-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from OpenWebhook/dependabot/merge
Dependabot/merge
- Loading branch information
Showing
7 changed files
with
3,347 additions
and
2,816 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
patches/@pluralsight+ps-design-system-appframe+6.1.2.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/node_modules/@pluralsight/ps-design-system-appframe/dist/esm/react/index.d.ts b/node_modules/@pluralsight/ps-design-system-appframe/dist/esm/react/index.d.ts | ||
index 25aab2a..4ed1b8c 100644 | ||
--- a/node_modules/@pluralsight/ps-design-system-appframe/dist/esm/react/index.d.ts | ||
+++ b/node_modules/@pluralsight/ps-design-system-appframe/dist/esm/react/index.d.ts | ||
@@ -25,6 +25,7 @@ interface AppFrameStatics { | ||
interface AppFrameComponent extends RefForwardingComponent<AppFrameProps, HTMLDivElement, AppFrameStatics> { | ||
} | ||
declare const AppFrame: AppFrameComponent; | ||
+//@ts-ignore | ||
interface SideNavProps extends React.HTMLAttributes<HTMLDivElement> { | ||
children: AppFrameProps['sidenav']; | ||
} | ||
@@ -32,6 +33,7 @@ interface SideNavStatics { | ||
variants: typeof vars.sidenavVariants; | ||
} | ||
declare const SideNav: React.FC<SideNavProps> & SideNavStatics; | ||
+//@ts-ignore | ||
interface TopNavProps extends React.HTMLAttributes<HTMLDivElement> { | ||
children: AppFrameProps['topnav']; | ||
} |
12 changes: 12 additions & 0 deletions
12
patches/@pluralsight+ps-design-system-dropdown+13.1.3.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/node_modules/@pluralsight/ps-design-system-dropdown/dist/esm/js/index.d.ts b/node_modules/@pluralsight/ps-design-system-dropdown/dist/esm/js/index.d.ts | ||
index 1741a52..f240f44 100644 | ||
--- a/node_modules/@pluralsight/ps-design-system-dropdown/dist/esm/js/index.d.ts | ||
+++ b/node_modules/@pluralsight/ps-design-system-dropdown/dist/esm/js/index.d.ts | ||
@@ -286,6 +286,7 @@ export declare const useDropdown: (props: UseDropdownProps, forwardedRef: React. | ||
onAnimationIterationCapture?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined; | ||
onTransitionEnd?: ((event: React.TransitionEvent<HTMLButtonElement>) => void) | undefined; | ||
onTransitionEndCapture?: ((event: React.TransitionEvent<HTMLButtonElement>) => void) | undefined; | ||
+ //@ts-ignore | ||
css?: import("@emotion/core").InterpolationWithTheme<any>; | ||
appearance: "default" | "subtle" | undefined; | ||
disabled: boolean | undefined; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/node_modules/@pluralsight/ps-design-system-theme/dist/esm/react/index.d.ts b/node_modules/@pluralsight/ps-design-system-theme/dist/esm/react/index.d.ts | ||
index 18df805..6d0eae7 100644 | ||
--- a/node_modules/@pluralsight/ps-design-system-theme/dist/esm/react/index.d.ts | ||
+++ b/node_modules/@pluralsight/ps-design-system-theme/dist/esm/react/index.d.ts | ||
@@ -7,6 +7,7 @@ declare type Names = typeof names; | ||
export declare const ThemeContext: React.Context<"dark" | "light">; | ||
declare type ThemeProps = { | ||
name?: ValueOf<Names>; | ||
+ children?: React.ReactNode; | ||
}; | ||
declare type ThemeStatics = { | ||
defaultName: typeof defaultName; | ||
diff --git a/node_modules/@pluralsight/ps-design-system-theme/src/react/index.tsx b/node_modules/@pluralsight/ps-design-system-theme/src/react/index.tsx | ||
index a2fbd65..10a84ac 100644 | ||
--- a/node_modules/@pluralsight/ps-design-system-theme/src/react/index.tsx | ||
+++ b/node_modules/@pluralsight/ps-design-system-theme/src/react/index.tsx | ||
@@ -8,7 +8,7 @@ export { defaultName, names } | ||
type Names = typeof names | ||
export const ThemeContext = React.createContext<ValueOf<Names>>(defaultName) | ||
|
||
-type ThemeProps = { name?: ValueOf<Names> } | ||
+type ThemeProps = { name?: ValueOf<Names>; children?: React.ReactNode } | ||
type ThemeStatics = { defaultName: typeof defaultName; names: Names } | ||
type ThemeComponent = React.FC<ThemeProps> & ThemeStatics | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.