-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
838 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/ApplicationLogo.d.ts
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,4 @@ | ||
import { FC } from "react"; | ||
import { ApplicationLogoProps } from "./ApplicationLogo.types"; | ||
declare const ApplicationLogo: FC<ApplicationLogoProps>; | ||
export default ApplicationLogo; |
5 changes: 5 additions & 0 deletions
5
dist/cjs/types/components/ApplicationLogo/ApplicationLogo.types.d.ts
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,5 @@ | ||
export interface ApplicationLogoProps { | ||
applicationName: "console" | "operator" | "directpv" | "kes" | "subnet"; | ||
subVariant?: "simple" | "AGPL" | "standard" | "enterprise"; | ||
inverse?: boolean; | ||
} |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/Console/ConsoleAGPL.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const ConsoleAGPL: FC<SVGProps<any> & LogoBaseProps>; | ||
export default ConsoleAGPL; |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/Console/ConsoleEnterprise.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const ConsoleEnterprise: FC<SVGProps<any> & LogoBaseProps>; | ||
export default ConsoleEnterprise; |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/Console/ConsoleSingle.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const ConsoleSingle: FC<SVGProps<any> & LogoBaseProps>; | ||
export default ConsoleSingle; |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/Console/ConsoleStandard.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const ConsoleStandard: FC<SVGProps<any> & LogoBaseProps>; | ||
export default ConsoleStandard; |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/DirectPV/DirectPV.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const DirectPV: FC<SVGProps<any> & LogoBaseProps>; | ||
export default DirectPV; |
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const KES: FC<SVGProps<any> & LogoBaseProps>; | ||
export default KES; |
9 changes: 9 additions & 0 deletions
9
dist/cjs/types/components/ApplicationLogo/Logos/LogoBase/LogoBase.d.ts
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,9 @@ | ||
import React from "react"; | ||
import { LogoBaseProps } from "./LogoBase.types"; | ||
declare const LogoBase: import("styled-components").StyledComponent< | ||
"svg", | ||
any, | ||
React.SVGProps<any> & LogoBaseProps, | ||
never | ||
>; | ||
export default LogoBase; |
3 changes: 3 additions & 0 deletions
3
dist/cjs/types/components/ApplicationLogo/Logos/LogoBase/LogoBase.types.d.ts
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,3 @@ | ||
export interface LogoBaseProps { | ||
inverse?: boolean; | ||
} |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/Operator/Operator.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const Operator: FC<SVGProps<any> & LogoBaseProps>; | ||
export default Operator; |
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/ApplicationLogo/Logos/SUBNET/SUBNET.d.ts
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,4 @@ | ||
import { FC, SVGProps } from "react"; | ||
import { LogoBaseProps } from "../LogoBase/LogoBase.types"; | ||
declare const SUBNET: FC<SVGProps<any> & LogoBaseProps>; | ||
export default SUBNET; |
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,6 @@ | ||
import React, { FC } from "react"; | ||
import { ButtonProps } from "./Button.types"; | ||
declare const Button: FC< | ||
ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement> | ||
>; | ||
export default Button; |
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,17 @@ | ||
import { MouseEventHandler, ReactNode } from "react"; | ||
export interface ButtonProps { | ||
id: string; | ||
name?: string; | ||
label?: string; | ||
variant?: "regular" | "callAction" | "secondary"; | ||
icon?: ReactNode; | ||
iconLocation?: "start" | "end"; | ||
fullWidth?: boolean; | ||
disabled?: boolean; | ||
collapseOnSmall?: boolean; | ||
onClick?: MouseEventHandler<HTMLButtonElement>; | ||
children?: ReactNode | string; | ||
} | ||
export interface ConstructProps { | ||
parentChildren: ReactNode | string | 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,5 @@ | ||
declare const GlobalStyles: import("styled-components").GlobalStyleComponent< | ||
{}, | ||
import("styled-components").DefaultTheme | ||
>; | ||
export default GlobalStyles; |
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,4 @@ | ||
import { FC } from "react"; | ||
import { GridProps } from "./Grid.types"; | ||
declare const Grid: FC<GridProps>; | ||
export default Grid; |
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,35 @@ | ||
import { HTMLAttributes, ReactNode } from "react"; | ||
import { CSSObject } from "styled-components"; | ||
interface GridCommonProps extends HTMLAttributes<HTMLDivElement> { | ||
children?: ReactNode; | ||
sx?: CSSObject; | ||
} | ||
type ConditionalProps = | ||
| { | ||
container?: boolean; | ||
item?: never; | ||
wrap?: "nowrap" | "wrap-reverse" | "wrap"; | ||
direction?: "column-reverse" | "column" | "row-reverse" | "row"; | ||
columnSpacing?: number; | ||
rowSpacing?: number; | ||
xs?: never; | ||
sm?: never; | ||
md?: never; | ||
lg?: never; | ||
xl?: never; | ||
} | ||
| { | ||
container?: never; | ||
item?: boolean; | ||
wrap?: never; | ||
direction?: never; | ||
columnSpacing?: never; | ||
rowSpacing?: never; | ||
xs?: "auto" | "hidden" | number | boolean; | ||
sm?: "auto" | "hidden" | number | boolean; | ||
md?: "auto" | "hidden" | number | boolean; | ||
lg?: "auto" | "hidden" | number | boolean; | ||
xl?: "auto" | "hidden" | number | boolean; | ||
}; | ||
export type GridProps = GridCommonProps & ConditionalProps; | ||
export {}; |
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,4 @@ | ||
import { FC } from "react"; | ||
import { LoginWrapperProps } from "./LoginWrapper.types"; | ||
declare const LoginWrapper: FC<LoginWrapperProps>; | ||
export default LoginWrapper; |
9 changes: 9 additions & 0 deletions
9
dist/cjs/types/components/LoginWrapper/LoginWrapper.types.d.ts
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,9 @@ | ||
import { ReactNode } from "react"; | ||
import { ApplicationLogoProps } from "../ApplicationLogo/ApplicationLogo.types"; | ||
export interface LoginWrapperProps { | ||
logoProps: ApplicationLogoProps; | ||
form: ReactNode; | ||
formFooter?: ReactNode; | ||
promoHeader?: ReactNode; | ||
promoInfo?: ReactNode; | ||
} |
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,4 @@ | ||
import { FC } from "react"; | ||
import { ThemeHandlerProps } from "./ThemeHandler.types"; | ||
declare const ThemeHandler: FC<ThemeHandlerProps>; | ||
export default ThemeHandler; |
5 changes: 5 additions & 0 deletions
5
dist/cjs/types/components/ThemeHandler/ThemeHandler.types.d.ts
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,5 @@ | ||
import { ReactNode } from "react"; | ||
export interface ThemeHandlerProps { | ||
darkMode?: boolean; | ||
children: ReactNode; | ||
} |
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,3 @@ | ||
import { FC, SVGProps } from "react"; | ||
declare const ThemedLogo: FC<SVGProps<any>>; | ||
export default ThemedLogo; |
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,7 @@ | ||
export { default as ThemeHandler } from "./ThemeHandler/ThemeHandler"; | ||
export { default as GlobalStyles } from "./GlobalStyles/GlobalStyles"; | ||
export { default as Button } from "./Button/Button"; | ||
export { default as ApplicationLogo } from "./ApplicationLogo/ApplicationLogo"; | ||
export { default as ThemedLogo } from "./ThemedLogo/ThemedLogo"; | ||
export { default as Grid } from "./Grid/Grid"; | ||
export { default as LoginWrapper } from "./LoginWrapper/LoginWrapper"; |
Oops, something went wrong.