diff --git a/.eslintrc b/.eslintrc
deleted file mode 100644
index ba6947ee..00000000
--- a/.eslintrc
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "root":true,
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaVersion": 2020,
- "sourceType": "module",
- "project": "./tsconfig.json"
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking",
- "prettier"
- ],
- "settings": {
- "react":{
- "version":"detect"
- }
- },
- "rules": {
- "@typescript-eslint/no-unsafe-assessment": "off",
- "@typescript-eslint/no-inferrable-types": "off",
- "@typescript-eslint/require-await": ["error"],
- "@typescript-eslint/no-unsafe-return": ["error"],
- "@typescript-eslint/no-unsafe-call": ["error"],
- "@typescript-eslint/no-unsafe-argument": ["error"],
- "@typescript-eslint/no-unsafe-member-access": ["error"],
- "@typescript-eslint/no-non-null-assertion": ["error"],
- "@typescript-eslint/ban-ts-comment": "off",
- "no-unused-vars": "off",
- "require-await": "off"
- }
-}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index ec260d2f..bbf50cc9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,29 @@
-#dependencies
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
node_modules
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
.env
-.DS_Store
\ No newline at end of file
+.DS_Store
+*storybook.log
+
+storybook-static
diff --git a/.storybook/decorators/SkeletonTheme.tsx b/.storybook/decorators/SkeletonTheme.tsx
deleted file mode 100644
index 84476abc..00000000
--- a/.storybook/decorators/SkeletonTheme.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import React, { ReactNode } from 'react';
-import { SkeletonTheme } from 'react-loading-skeleton';
-import { darkTheme, lightTheme } from '../../src/styles/theme';
-import 'react-loading-skeleton/dist/skeleton.css';
-
-const SkeletonConfigProvider = ({
- children,
- theme,
- baseColor,
- highlightColor,
-}: {
- children: ReactNode;
- theme: 'dark' | 'light';
- baseColor?: string;
- highlightColor?: string;
-}) => {
- const {
- UI: {
- skeleton: { base, highlight },
- },
- } = theme === 'dark' ? darkTheme : lightTheme;
-
- return (
-
- {children}
-
- );
-};
-
-export default SkeletonConfigProvider;
diff --git a/.storybook/decorators/withNextLink.tsx b/.storybook/decorators/withNextLink.tsx
new file mode 100644
index 00000000..a3d3b983
--- /dev/null
+++ b/.storybook/decorators/withNextLink.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { Decorator } from '@storybook/react';
+
+import { LinkProvider } from '../../src/providers/NextLinkProvider';
+
+const withNextLink: Decorator = (StoryFn) => {
+ // consumers of the library pass in actual React/Next.js links
+ const FakeLink = function ({ children }) {
+ return (
+
+ {children}
+
+ );
+ };
+ return (
+
+
+
+ );
+};
+export default withNextLink;
diff --git a/.storybook/decorators/withTheme.tsx b/.storybook/decorators/withTheme.tsx
deleted file mode 100644
index 6b1a0d98..00000000
--- a/.storybook/decorators/withTheme.tsx
+++ /dev/null
@@ -1,79 +0,0 @@
-import React from 'react';
-import { ThemeProvider } from 'styled-components';
-import { Decorator } from '@storybook/react';
-
-import GlobalStyles from '../../src/providers/GlobalStyles';
-
-import { LinkProvider } from '../../src/providers/NextLinkProvider';
-import { lightTheme, darkTheme } from '../../src/styles/theme';
-
-import styled, { css } from 'styled-components';
-import SkeletonConfigProvider from './SkeletonTheme';
-
-const ThemeBlock = styled.div<{ left?: boolean; fill?: boolean }>(
- ({ left, fill, theme }) => css`
- position: absolute;
- top: 0;
- left: ${left || fill ? 0 : '50vw'};
- border-right: ${left ? '1px solid #202020' : 'none'};
- right: ${left ? '50vw' : 0};
- width: ${fill ? '100vw' : '50vw'};
- bottom: 0;
- overflow: auto;
- padding: 1rem;
- background: ${theme.colorScheme === 'dark' ? '#1f1d1d' : '#fff'};
- `,
-);
-
-const withTheme: Decorator = (StoryFn, context) => {
- const { theme } = context.globals;
- const themeToUse = theme === 'light' ? lightTheme : darkTheme;
-
- // consumers of the library pass in actual React/Next.js links
- const FakeLink = function ({ children }) {
- return {children};
- };
- switch (theme) {
- case 'side-by-side': {
- return (
- <>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- >
- );
- }
- default: {
- return (
-
-
-
-
-
-
-
-
-
-
- );
- }
- }
-};
-export default withTheme;
diff --git a/.storybook/main.ts b/.storybook/main.ts
index e596355e..97d47c05 100644
--- a/.storybook/main.ts
+++ b/.storybook/main.ts
@@ -1,38 +1,11 @@
-import type { StorybookConfig } from '@storybook/react-webpack5';
+import type { StorybookConfig } from '@storybook/react-vite';
const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
- addons: [
- '@storybook/addon-links',
- '@storybook/addon-essentials',
- '@storybook/addon-interactions',
- '@storybook/addon-controls',
- '@storybook/addon-a11y',
- '@storybook/addon-designs',
- ],
-
+ addons: ['@storybook/addon-docs'],
framework: {
- name: '@storybook/react-webpack5',
- options: {
- builder: {
- useSWC: true,
- },
- },
- },
- docs: {
- autodocs: true,
- },
- core: {
- disableTelemetry: true,
+ name: '@storybook/react-vite',
+ options: {},
},
- swc: () => ({
- jsc: {
- transform: {
- react: {
- runtime: 'automatic',
- },
- },
- },
- }),
};
export default config;
diff --git a/.storybook/manager.ts b/.storybook/manager.ts
index 20ac48dc..eafb0a1c 100644
--- a/.storybook/manager.ts
+++ b/.storybook/manager.ts
@@ -1,4 +1,4 @@
-import { addons } from '@storybook/manager-api';
+import { addons } from 'storybook/manager-api';
import LagoonTheme from './theme';
diff --git a/.storybook/preview.ts b/.storybook/preview.ts
index 34fe19fa..142155a5 100644
--- a/.storybook/preview.ts
+++ b/.storybook/preview.ts
@@ -1,54 +1,37 @@
import type { Preview } from '@storybook/react';
-import withTheme from './decorators/withTheme';
+import '../src/index.css';
+
+import React from 'react';
+import withNextLink from './decorators/withNextLink';
const preview: Preview = {
parameters: {
- options: {
- storySort: {
- order: [
- 'Introduction',
- 'Guide',
- ['Design Tokens', 'Typography', 'Globals', 'Theming And Globals', 'Figma', 'Icons'],
- 'Components',
- 'Lagoon specific',
- ],
- },
- },
- actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
controls: { expanded: true },
+
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
-
- docs: {
- source: {
- language: 'tsx',
- },
- story: {
- height: '300px',
- },
- },
- },
- globalTypes: {
- theme: {
- description: 'Global theme for components',
- defaultValue: 'light',
- toolbar: {
- title: 'Theme',
- icon: 'circlehollow',
- items: [
- { value: 'light', icon: 'circlehollow', title: 'Light Theme' },
- { value: 'dark', icon: 'circle', title: 'Dark Theme' },
- { value: 'side-by-side', icon: 'mirror', title: 'Side by side' },
- ],
- dynamicTitle: true,
+ globalTypes: {
+ theme: {
+ description: 'Global theme for components',
+ defaultValue: 'light',
+ toolbar: {
+ title: 'Theme',
+ icon: 'circlehollow',
+ items: [
+ { value: 'light', icon: 'circlehollow', title: 'Light Theme' },
+ { value: 'dark', icon: 'circle', title: 'Dark Theme' },
+ { value: 'side-by-side', icon: 'mirror', title: 'Side by side' },
+ ],
+ dynamicTitle: true,
+ },
},
},
},
- decorators: [withTheme],
+ decorators: [withNextLink],
};
export default preview;
diff --git a/.storybook/theme.js b/.storybook/theme.js
index 20f0e206..ab212d1d 100644
--- a/.storybook/theme.js
+++ b/.storybook/theme.js
@@ -1,4 +1,4 @@
-import { create } from '@storybook/theming';
+import { create } from 'storybook/theming';
import logo from './public/logo.svg';
diff --git a/README.md b/README.md
index c8bda2a8..0f0f5dbd 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,11 @@ Component library for all things lagoon related:
Install with a single npm/yarn command:
```bash
-npm install github:uselagoon/ui-library#main antd styled-components @ant-design/icons
+npm install github:uselagoon/ui-library#main
```
```bash
-yarn add github:uselagoon/ui-library#main antd styled-components @ant-design/icons
+yarn add github:uselagoon/ui-library#main
```
Alternatively, add the following to your `package.json` and run `npm i`:
@@ -18,11 +18,7 @@ Alternatively, add the following to your `package.json` and run `npm i`:
"dependencies": {
"react": "^18",
"react-dom": "^18",
-
"ui-library": "github:uselagoon/ui-library#main",
- "antd": "^5.13.0",
- "styled-components": "^6.1.8",
- "@ant-design/icons": "^5.2.6"
}
```
@@ -35,166 +31,6 @@ Alternatively, add the following to your `package.json` and run `npm i`:
Using a component from the library:
```tsx
+import '@uselagoon/ui-library/dist/ui-library.css';
import { Button } from '@uselagoon/ui-library';
```
-
-## The component library works with:
-
-- React (with styled-components or tailwind out of the box)
-- Next < 13
-- Next > 13
-
-### There are a few extra steps needed to configure usage with Next
-
-Since the library is built on top of Ant design and Styled-components, we need `AntdRegistry` and `StyledComponentsRegistry` in Next > 13, which then wrap the `children` prop in the root layout.
-
-### /lib/AntdRegistry.tsx:
-
-```tsx
-'use client';
-
-import React from 'react';
-import { useServerInsertedHTML } from 'next/navigation';
-import { StyleProvider, createCache, extractStyle } from '@ant-design/cssinjs';
-import type Entity from '@ant-design/cssinjs/es/Cache';
-
-interface AntdRegistryProps {
- children: React.ReactNode;
-}
-
-const AntdRegistry = ({ children }: AntdRegistryProps) => {
- const cache = React.useMemo(() => createCache(), []);
- useServerInsertedHTML(() => );
- return {children};
-};
-
-export default AntdRegistry;
-```
-
-### /lib/StyledComponentsRegistry.tsx:
-
-```tsx
-'use client';
-
-import React, { useState } from 'react';
-import { useServerInsertedHTML } from 'next/navigation';
-import { ServerStyleSheet, StyleSheetManager } from 'styled-components';
-
-export default function StyledComponentsRegistry({ children }: { children: React.ReactNode }) {
- // Only create stylesheet once with lazy initial state
- // x-ref: https://reactjs.org/docs/hooks-reference.html#lazy-initial-state
- const [styledComponentsStyleSheet] = useState(() => new ServerStyleSheet());
-
- useServerInsertedHTML(() => {
- const styles = styledComponentsStyleSheet.getStyleElement();
- styledComponentsStyleSheet.instance.clearTag();
- return <>{styles}>;
- });
-
- if (typeof window !== 'undefined') return <>{children}>;
-
- return {children};
-}
-```
-
-# Theming + Usage in the root layout:
-
-Theming is supported out of the box with default `UI` specific color schemes that work with the components, which can be extended from your own Provider, example below uses UI library provided global styles and users the `UIThemeProvider` to enable light/dark mode theming;
-
-The default theme can be extended by providing a `darkThemeProp` or a `lightThemeProp` of type `Record `
-
-the `useTheme` hook from the library is also useful for manually toggling between themes:
-
-```tsx
-// ...
-const { theme, toggleTheme } = useTheme();
-```
-
-### /providers/AppProvider.tsx:
-
-```tsx
-//AppProvider.tsx
-'use client';
-
-import React, { ReactNode } from 'react';
-import { GlobalStyles, UIThemeProvider } from '@uselagoon/ui-library';
-import AntdRegistry from '../lib/AntdRegistry';
-import StyledComponentsRegistry from '../lib/StyledComponentsRegistry';
-
-const AppProvider = ({ children }: { children: ReactNode }) => {
- return (
-
-
-
-
- {children}
-
-
-
- );
-};
-export default AppProvider;
-```
-
-Which can then be used in RootLayout:
-
-```tsx
-import AppProvider from "./providers/AppProvider";
-
-{ ... }
-
-export default function RootLayout({ children }: { children: React.ReactNode }) {
- return (
-
-
- {children}
-
-
- );
-}
-
-```
-
-### Usage with Next < 13
-
-Some changes are required in `__document.tsx` in order to enable SSR for antd/styled-components:
-[More at AntD docs](https://ant.design/docs/react/server-side-rendering#extract-on-demand)
-
-```tsx
-// _document.tsx
-
-import { createCache, StyleProvider } from '@ant-design/cssinjs';
-import type { DocumentContext } from 'next/document';
-import Document, { Head, Html, Main, NextScript } from 'next/document';
-
-import { ServerStyleSheet } from 'styled-components';
-
-export default class MyDocument extends Document {
- static async getInitialProps(ctx) {
- const sheet = new ServerStyleSheet();
- const originalRenderpage = ctx.renderPage;
- const cache = createCache();
-
- try {
- ctx.renderPage = () =>
- originalRenderpage({
- enhanceApp: App => props =>
- sheet.collectStyles(
-
-
-
- ),
- });
- const initialProps = await Document.getInitialProps(ctx);
- const antdStyle = extractStyle(cache, true);
- return {
- ...initialProps,
- styles: (
- <>
- {initialProps.styles}
- {sheet.getStyleElement()}
-
- >
- ),
- };
-```
diff --git a/components.json b/components.json
new file mode 100644
index 00000000..b76121fd
--- /dev/null
+++ b/components.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": false,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "src/index.css",
+ "baseColor": "neutral",
+ "cssVariables": true
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/dist/_util/colors.d.ts b/dist/_util/colors.d.ts
index c0e1bb97..e5d36b48 100644
--- a/dist/_util/colors.d.ts
+++ b/dist/_util/colors.d.ts
@@ -1,54 +1,3 @@
-declare const colors: {
- readonly lagoonBlue: string;
- readonly buttons: {
- readonly primary: {
- readonly default: string;
- readonly hover: "#4d97ff";
- readonly active: "#184CBC";
- };
- readonly secondary: {
- readonly default: "#1B8784";
- readonly hover: "#1b8784bf";
- readonly active: "#093C3B";
- };
- };
- readonly backgrounds: {
- readonly primary: {
- readonly light: string;
- readonly dark: string;
- };
- };
- readonly texts: {
- readonly primary: {
- readonly light: string;
- readonly dark: string;
- };
- readonly secondary: {
- readonly light: string;
- readonly dark: string;
- };
- readonly timeline: {
- readonly light: string;
- readonly dark: string;
- };
- };
- readonly darkGray: string;
- readonly cellGray: string;
- readonly lighterGray: "#282828";
- readonly orange: string;
- readonly lightOrange: string;
- readonly blue: string;
- readonly white: string;
- readonly purple: string;
- readonly gray: string;
- readonly yellow: string;
- readonly pink: string;
- readonly green: "#A6E22E";
- readonly green2: "#A6E22D";
- readonly black: "#000";
- readonly header: {
- readonly light: "#f2f2f2";
- readonly dark: "#0c0c0c";
- };
-};
+declare const colors: Readonly<{}>;
export default colors;
+//# sourceMappingURL=colors.d.ts.map
\ No newline at end of file
diff --git a/dist/_util/colors.d.ts.map b/dist/_util/colors.d.ts.map
new file mode 100644
index 00000000..3e90c145
--- /dev/null
+++ b/dist/_util/colors.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/_util/colors.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,MAAM,cAA6B,CAAC;AAE1C,eAAe,MAAM,CAAC"}
\ No newline at end of file
diff --git a/dist/_util/helpers.d.ts b/dist/_util/helpers.d.ts
index 1c674a01..6645106a 100644
--- a/dist/_util/helpers.d.ts
+++ b/dist/_util/helpers.d.ts
@@ -1,2 +1,9 @@
+import { NavItems } from '../components/sidenav/Sidenav';
import { ReactNode } from 'react';
export declare const highlightTextInElement: (element: ReactNode, searchString: string, key: string | number) => any;
+export declare const genAvatarBackground: (firstLetter: string, secondLetter: string) => {
+ bgColor: string;
+ textColor: string;
+};
+export declare const getCurrentPath: (navLinks: NavItems, pathname: string) => string;
+//# sourceMappingURL=helpers.d.ts.map
\ No newline at end of file
diff --git a/dist/_util/helpers.d.ts.map b/dist/_util/helpers.d.ts.map
new file mode 100644
index 00000000..fb40a173
--- /dev/null
+++ b/dist/_util/helpers.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/_util/helpers.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGzC,eAAO,MAAM,sBAAsB,GAAI,SAAS,SAAS,EAAE,cAAc,MAAM,EAAE,KAAK,MAAM,GAAG,MAAM,KAAG,GAqBvG,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC/B,aAAa,MAAM,EACnB,cAAc,MAAM,KAClB;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAYtC,CAAC;AAaF,eAAO,MAAM,cAAc,GAAI,UAAU,QAAQ,EAAE,UAAU,MAAM,KAAG,MAKrE,CAAC"}
\ No newline at end of file
diff --git a/dist/_util/lagoonColors.d.ts b/dist/_util/lagoonColors.d.ts
index 96be14c7..1f2d2e08 100644
--- a/dist/_util/lagoonColors.d.ts
+++ b/dist/_util/lagoonColors.d.ts
@@ -1,99 +1,2 @@
-export declare const lagoonColors: {
- darkGrey: {
- light: string;
- dark: string;
- };
- mediumGrey: {
- light: string;
- dark: string;
- };
- cellGrey: {
- light: string;
- dark: string;
- };
- monoBackground: {
- light: string;
- dark: string;
- alternateLight: string;
- };
- monoWhite: {
- light: string;
- dark: string;
- };
- monoComment: {
- light: string;
- dark: string;
- };
- monoPink: {
- light: string;
- dark: string;
- };
- monoOrange: {
- light: string;
- dark: string;
- };
- monoLightOrange: {
- light: string;
- dark: string;
- };
- monoYellow: {
- light: string;
- dark: string;
- };
- monoGreen: {
- light: string;
- dark: string;
- };
- monoGreen2: {
- light: string;
- dark: string;
- };
- monoPurple: {
- light: string;
- dark: string;
- };
- monoBlue: {
- light: string;
- dark: string;
- };
- success: {
- light: string;
- dark: string;
- };
- white: {
- light: string;
- dark: string;
- };
- errorRed: {
- light: string;
- dark: string;
- };
- uatOrange: {
- light: string;
- dark: string;
- };
- devBlue: {
- light: string;
- dark: string;
- };
- prodGreen: {
- light: string;
- dark: string;
- };
- disabled: {
- light: string;
- dark: string;
- };
- lagoonBlue: {
- light: string;
- dark: string;
- };
- lagoonSecondary: {
- light: string;
- dark: string;
- };
- lagoonAlternative: {
- light: string;
- dark: string;
- };
-};
+export declare const lagoonColors: {};
+//# sourceMappingURL=lagoonColors.d.ts.map
\ No newline at end of file
diff --git a/dist/_util/lagoonColors.d.ts.map b/dist/_util/lagoonColors.d.ts.map
new file mode 100644
index 00000000..486241b8
--- /dev/null
+++ b/dist/_util/lagoonColors.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"lagoonColors.d.ts","sourceRoot":"","sources":["../../src/_util/lagoonColors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,IAAK,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Accordion/Accordion.d.ts b/dist/components/Accordion/Accordion.d.ts
new file mode 100644
index 00000000..818f8e12
--- /dev/null
+++ b/dist/components/Accordion/Accordion.d.ts
@@ -0,0 +1,12 @@
+import { default as React } from 'react';
+import { Accordion } from '../ui/accordion';
+type AccordionProps = React.ComponentProps & {
+ items: {
+ id: string;
+ trigger: React.ReactNode;
+ content: React.ReactNode;
+ }[];
+};
+export default function UIAccordion({ items, ...rest }: AccordionProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Accordion.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Accordion/index.d.ts b/dist/components/Accordion/index.d.ts
new file mode 100644
index 00000000..c4af2c44
--- /dev/null
+++ b/dist/components/Accordion/index.d.ts
@@ -0,0 +1,3 @@
+import { default as Accordion } from './Accordion';
+export default Accordion;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/AvatarBubble/AvatarBubble.d.ts b/dist/components/AvatarBubble/AvatarBubble.d.ts
new file mode 100644
index 00000000..a1b4e2e1
--- /dev/null
+++ b/dist/components/AvatarBubble/AvatarBubble.d.ts
@@ -0,0 +1,8 @@
+import { HTMLAttributes } from 'react';
+type AvatarBubbleProps = HTMLAttributes & {
+ bgColor: string;
+ textColor: string;
+};
+export default function AvatarBubble({ bgColor, textColor, className, children, ...props }: AvatarBubbleProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=AvatarBubble.d.ts.map
\ No newline at end of file
diff --git a/dist/components/AvatarBubble/AvatarBubble.d.ts.map b/dist/components/AvatarBubble/AvatarBubble.d.ts.map
new file mode 100644
index 00000000..8d7f35da
--- /dev/null
+++ b/dist/components/AvatarBubble/AvatarBubble.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"AvatarBubble.d.ts","sourceRoot":"","sources":["../../../src/components/AvatarBubble/AvatarBubble.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAKvC,KAAK,iBAAiB,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG;IACzD,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,iBAAiB,+CAM5G"}
\ No newline at end of file
diff --git a/dist/components/Breadcrumb/Breadcrumb.d.ts b/dist/components/Breadcrumb/Breadcrumb.d.ts
index df474f69..94616061 100644
--- a/dist/components/Breadcrumb/Breadcrumb.d.ts
+++ b/dist/components/Breadcrumb/Breadcrumb.d.ts
@@ -1,21 +1,26 @@
-import React, { FC, MouseEventHandler, ReactElement, ReactNode } from 'react';
-import { BreadcrumbProps } from 'antd';
-import { ItemType } from 'antd/es/breadcrumb/Breadcrumb';
+import { default as React, FC, MouseEventHandler, ReactElement, ReactNode } from 'react';
type Component> = ReactElement;
type LinkComponent = Component<'a'>;
-export interface UIBreadcrumbProps extends Omit {
- type?: 'default' | 'orgs';
- items: (({
+export interface BasicProps {
+ items: ({
+ title: string | ReactNode;
navOnClick?: MouseEventHandler;
key?: string | number;
- } & Pick) | {
- key?: string | number;
- title: LinkComponent;
+ copyText?: string;
} | {
- separator: ReactNode;
- type: 'separator';
+ title: LinkComponent;
+ key?: string | number;
+ copyText?: string;
})[];
activeKey?: string | number;
}
+export type UIBreadcrumbProps = BasicProps & ({
+ type: 'default';
+ currentSlug?: never;
+} | {
+ type: 'orgs';
+ currentSlug?: 'project' | 'user' | 'group';
+});
declare const UIBreadcrumb: FC;
export default UIBreadcrumb;
+//# sourceMappingURL=Breadcrumb.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Breadcrumb/Breadcrumb.d.ts.map b/dist/components/Breadcrumb/Breadcrumb.d.ts.map
new file mode 100644
index 00000000..dfa36386
--- /dev/null
+++ b/dist/components/Breadcrumb/Breadcrumb.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"Breadcrumb.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumb/Breadcrumb.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAE,EAAE,EAAY,iBAAiB,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAWxF,KAAK,SAAS,CAAC,CAAC,SAAS,MAAM,GAAG,CAAC,iBAAiB,GAAG,KAAK,CAAC,qBAAqB,CAAC,GAAG,CAAC,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;AAC3G,KAAK,aAAa,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC;AAOpC,MAAM,WAAW,UAAU;IAC1B,KAAK,EAAE,CACJ;QACA,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;QAC1B,UAAU,CAAC,EAAE,iBAAiB,CAAC,iBAAiB,GAAG,eAAe,CAAC,CAAC;QACpE,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;KACjB,GACD;QACA,KAAK,EAAE,aAAa,CAAC;QACrB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;KACjB,CACH,EAAE,CAAC;IACJ,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B;AAED,MAAM,MAAM,iBAAiB,GAAG,UAAU,GACzC,CAAC;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,WAAW,CAAC,EAAE,KAAK,CAAA;CAAE,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,CAAC,CAAC;AAE3G,QAAA,MAAM,YAAY,EAAE,EAAE,CAAC,iBAAiB,CA2DvC,CAAC;AAGF,eAAe,YAAY,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Breadcrumb/index.d.ts b/dist/components/Breadcrumb/index.d.ts
index d237668c..1ca0dd53 100644
--- a/dist/components/Breadcrumb/index.d.ts
+++ b/dist/components/Breadcrumb/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Breadcrumb, UIBreadcrumbProps as BreadCrumbProps } from './Breadcrumb';
-export type { BreadCrumbProps };
+import { default as Breadcrumb } from './Breadcrumb';
export default Breadcrumb;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Breadcrumb/index.d.ts.map b/dist/components/Breadcrumb/index.d.ts.map
new file mode 100644
index 00000000..255c5689
--- /dev/null
+++ b/dist/components/Breadcrumb/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumb/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,eAAe,UAAU,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Button/Button.d.ts b/dist/components/Button/Button.d.ts
deleted file mode 100644
index b8961b08..00000000
--- a/dist/components/Button/Button.d.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-import { ButtonProps } from 'antd';
-export type ButtonSizeType = {
- size?: 'large' | 'middle' | 'small';
- type?: 'primary' | 'secondary';
-};
-export type InternalButtonProps = Omit & ButtonSizeType & {
- iconBefore?: React.ReactNode;
- iconAfter?: React.ReactNode;
- disabled?: boolean;
- loading?: boolean;
- className?: string;
- children?: React.ReactNode;
- styles?: React.CSSProperties;
- danger?: boolean;
-};
-declare const Button: React.ForwardRefExoticComponent & ButtonSizeType & {
- iconBefore?: React.ReactNode;
- iconAfter?: React.ReactNode;
- disabled?: boolean | undefined;
- loading?: boolean | undefined;
- className?: string | undefined;
- children?: React.ReactNode;
- styles?: React.CSSProperties | undefined;
- danger?: boolean | undefined;
-} & React.RefAttributes>;
-export default Button;
diff --git a/dist/components/Button/Styles.d.ts b/dist/components/Button/Styles.d.ts
deleted file mode 100644
index 60f0cea5..00000000
--- a/dist/components/Button/Styles.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-///
-import { ButtonSizeType } from './Button';
-export declare const IconBeforeWrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const IconAfterWrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const UIButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, ButtonSizeType>> & Omit> & {
- Group: import("react").FC;
-}, keyof import("react").Component>;
diff --git a/dist/components/Button/index.d.ts b/dist/components/Button/index.d.ts
deleted file mode 100644
index b972d2d0..00000000
--- a/dist/components/Button/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Button, InternalButtonProps as ButtonProps } from './Button';
-export type { ButtonProps };
-export default Button;
diff --git a/dist/components/Card/Card.d.ts b/dist/components/Card/Card.d.ts
deleted file mode 100644
index 7f828b34..00000000
--- a/dist/components/Card/Card.d.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-import React, { ReactNode } from 'react';
-import { CardProps as AntCardProps } from 'antd';
-import { NewCard, NewEnvironmentType } from './partials/NewCard';
-import { LagoonCardLabelProps } from '../CardLabel';
-export type DefaultCardProps = {
- loading?: boolean;
- title: string;
- showProblemIndicator: boolean;
- status: 'low' | 'medium' | 'high' | 'critical';
- styles?: React.CSSProperties;
- cardClassName?: string;
- navigateTo?: () => void;
- navPath: string;
- quickActions?: {
- sectionTitle: string;
- sectionChildren: ReactNode[];
- }[];
-};
-type ProjectCard = {
- type: 'project';
- environments: string[];
-};
-type EnvCard = {
- type: 'environment';
- envType: LagoonCardLabelProps['type'];
- projectName: string;
- environmentName: string;
- deployType: string;
- region?: string;
-};
-type NewCard = {
- type: 'new';
-} & NewEnvironmentType;
-type LoaderCard = {
- type: 'loaderOnly';
-};
-export type CardProps = (ProjectCard & DefaultCardProps) | (EnvCard & DefaultCardProps) | NewCard | LoaderCard;
-export type InternalCardProps = Pick & CardProps;
-declare const LagoonCard: React.ForwardRefExoticComponent>;
-export default LagoonCard;
diff --git a/dist/components/Card/index.d.ts b/dist/components/Card/index.d.ts
deleted file mode 100644
index e9284241..00000000
--- a/dist/components/Card/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonCard, CardProps as LagoonCardProps } from './Card';
-export type { LagoonCardProps };
-export default LagoonCard;
diff --git a/dist/components/Card/partials/EnvironmentPartial.d.ts b/dist/components/Card/partials/EnvironmentPartial.d.ts
deleted file mode 100644
index 80058dd5..00000000
--- a/dist/components/Card/partials/EnvironmentPartial.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import { FC, ReactNode } from 'react';
-export declare const EnvironmentPartial: FC<{
- projectName: string | ReactNode;
- deployType: string;
- region?: string;
-}>;
diff --git a/dist/components/Card/partials/NewCard.d.ts b/dist/components/Card/partials/NewCard.d.ts
deleted file mode 100644
index a09faccf..00000000
--- a/dist/components/Card/partials/NewCard.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { FC, ReactNode } from 'react';
-export type NewEnvironmentType = {
- /**
- * An array of React nodes representing each step in the environment.
- */
- steps: ReactNode[];
- /**
- * callback to fire env creation mutation with all required form item/val object
- */
- onCreateEnvironment: (formItems: Record) => Promise;
- loading: boolean;
- /**
- * required form fields to validate and allow step change
- */
- requiredFormItems?: string[];
- /**
- * table/list view
- */
- renderType?: 'card' | 'listItem';
-};
-export declare const NewCard: FC;
diff --git a/dist/components/Card/partials/ProjectPartial.d.ts b/dist/components/Card/partials/ProjectPartial.d.ts
deleted file mode 100644
index 06357795..00000000
--- a/dist/components/Card/partials/ProjectPartial.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import { FC } from 'react';
-export declare const ProjectPartial: FC<{
- environments: string[];
-}>;
diff --git a/dist/components/Card/styles.d.ts b/dist/components/Card/styles.d.ts
deleted file mode 100644
index 35fd01ae..00000000
--- a/dist/components/Card/styles.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-///
-import { NewEnvironmentType } from './partials/NewCard';
-export declare const LoadingCard: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, never>> & Omit>;
-export declare const StyledCard: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, never>> & Omit>;
-export declare const StyledNewCard: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, {
- $type: NewEnvironmentType['renderType'];
-}>> & Omit>;
-export declare const NewEnvTrigger: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledEnvPartial: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledProjectPartial: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledMoreActionsIcon: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit & import("react").RefAttributes, never>> & Omit & import("react").RefAttributes>, keyof import("react").Component>;
-export declare const LinkContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
diff --git a/dist/components/CardLabel/CardLabel.d.ts b/dist/components/CardLabel/CardLabel.d.ts
deleted file mode 100644
index a10074fe..00000000
--- a/dist/components/CardLabel/CardLabel.d.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-export declare const colorMap: {
- readonly development: string;
- readonly project: "#000";
- readonly production: "#A6E22E";
- readonly active: string;
- readonly standby: string;
- readonly "active production": "#A6E22E";
- readonly "standby production": string;
- readonly uat: string;
- readonly error: string;
-};
-type LagoonCardLabelProps = {
- type: 'active' | 'standby' | 'development' | 'project' | 'production' | 'active production' | 'standby production' | 'uat' | 'error';
- variant?: 'vertical' | 'horizontal';
-};
-declare const UICardLabel: React.ForwardRefExoticComponent>;
-export default UICardLabel;
-export type { LagoonCardLabelProps };
diff --git a/dist/components/CardLabel/index.d.ts b/dist/components/CardLabel/index.d.ts
deleted file mode 100644
index c684aba9..00000000
--- a/dist/components/CardLabel/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonCardLabel, LagoonCardLabelProps } from './CardLabel';
-export type { LagoonCardLabelProps };
-export default LagoonCardLabel;
diff --git a/dist/components/CardLabel/styles.d.ts b/dist/components/CardLabel/styles.d.ts
deleted file mode 100644
index d057e1f5..00000000
--- a/dist/components/CardLabel/styles.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-///
-import { colorMap } from './CardLabel';
-export declare const StyledLabel: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, {
- $currentColor: (typeof colorMap)[keyof typeof colorMap];
-}>>;
-export declare const StyledHorizontalLabel: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, {
- $currentColor: (typeof colorMap)[keyof typeof colorMap];
-}>>;
-export declare const SplitLabels: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
diff --git a/dist/components/Checkbox/Checkbox.d.ts b/dist/components/Checkbox/Checkbox.d.ts
index 1fa65f6a..a569c4f6 100644
--- a/dist/components/Checkbox/Checkbox.d.ts
+++ b/dist/components/Checkbox/Checkbox.d.ts
@@ -1,5 +1,12 @@
-import React from 'react';
-import { CheckboxProps, CheckboxRef } from 'antd';
-declare const UICheckbox: React.ForwardRefExoticComponent>;
-export type { CheckboxProps as UICheckboxProps };
-export default UICheckbox;
+import { default as React } from 'react';
+import { Checkbox } from '../ui/checkbox';
+type CheckboxProps = React.ComponentProps & {
+ label: string;
+ id: string;
+};
+declare function CheckboxWithLabel({ label, id, ...rest }: CheckboxProps): import("react/jsx-dev-runtime").JSX.Element;
+declare namespace CheckboxWithLabel {
+ var displayName: string;
+}
+export default CheckboxWithLabel;
+//# sourceMappingURL=Checkbox.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Checkbox/Checkbox.d.ts.map b/dist/components/Checkbox/Checkbox.d.ts.map
new file mode 100644
index 00000000..b1e4a646
--- /dev/null
+++ b/dist/components/Checkbox/Checkbox.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAG1C,KAAK,aAAa,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,QAAQ,CAAC,GAAG;IAC5D,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,iBAAwB,iBAAiB,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,aAAa,+CAS9E;kBATuB,iBAAiB;;;eAAjB,iBAAiB"}
\ No newline at end of file
diff --git a/dist/components/Checkbox/index.d.ts b/dist/components/Checkbox/index.d.ts
index 7a9f9012..00e657e6 100644
--- a/dist/components/Checkbox/index.d.ts
+++ b/dist/components/Checkbox/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Checkbox, UICheckboxProps as CheckboxProps } from './Checkbox';
-export type { CheckboxProps };
+import { default as Checkbox } from './Checkbox';
export default Checkbox;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Checkbox/index.d.ts.map b/dist/components/Checkbox/index.d.ts.map
new file mode 100644
index 00000000..a6cbc0eb
--- /dev/null
+++ b/dist/components/Checkbox/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAe,QAAQ,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Collapse/Collapse.d.ts b/dist/components/Collapse/Collapse.d.ts
deleted file mode 100644
index cfd10d20..00000000
--- a/dist/components/Collapse/Collapse.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { CollapseProps } from 'antd';
-import React, { ReactNode } from 'react';
-export type UICollapseProps = Omit & {
- type: 'highlightPanels' | 'default';
- customBorder?: string;
- borderless?: boolean;
- useArrowIcons?: boolean;
- icon?: ReactNode;
-};
-declare const UICollapse: React.ForwardRefExoticComponent & {
- type: 'highlightPanels' | 'default';
- customBorder?: string | undefined;
- borderless?: boolean | undefined;
- useArrowIcons?: boolean | undefined;
- icon?: ReactNode;
-} & React.RefAttributes>;
-export default UICollapse;
diff --git a/dist/components/Collapse/index.d.ts b/dist/components/Collapse/index.d.ts
deleted file mode 100644
index 71001fd1..00000000
--- a/dist/components/Collapse/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Collapse, UICollapseProps as CollapseType } from './Collapse';
-export type { CollapseType };
-export default Collapse;
diff --git a/dist/components/Confirm/Confirm.d.ts b/dist/components/Confirm/Confirm.d.ts
deleted file mode 100644
index b6569765..00000000
--- a/dist/components/Confirm/Confirm.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import React from 'react';
-import { PopconfirmProps } from 'antd';
-declare const UIConfirm: React.ForwardRefExoticComponent>;
-export type { PopconfirmProps as UIConfirmProps };
-export default UIConfirm;
diff --git a/dist/components/Confirm/index.d.ts b/dist/components/Confirm/index.d.ts
deleted file mode 100644
index 399f59f1..00000000
--- a/dist/components/Confirm/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Confirm, UIConfirmProps as ConfirmProps } from './Confirm';
-export type { ConfirmProps };
-export default Confirm;
diff --git a/dist/components/CopyToClipboard/CopyToClipboard.d.ts b/dist/components/CopyToClipboard/CopyToClipboard.d.ts
index c72aec2e..b30e3b7f 100644
--- a/dist/components/CopyToClipboard/CopyToClipboard.d.ts
+++ b/dist/components/CopyToClipboard/CopyToClipboard.d.ts
@@ -1,10 +1,12 @@
-import { FC } from 'react';
+import { default as React } from 'react';
export interface ClipboardProps {
text: string | number;
type?: 'visible' | 'hidden' | 'hiddenWithIcon' | 'alwaysHidden';
width?: number | string;
fontSize?: string;
withToolTip?: boolean;
+ iconOnly?: boolean;
}
-declare const CopyToClipboard: FC;
+declare const CopyToClipboard: React.FC;
export default CopyToClipboard;
+//# sourceMappingURL=CopyToClipboard.d.ts.map
\ No newline at end of file
diff --git a/dist/components/CopyToClipboard/CopyToClipboard.d.ts.map b/dist/components/CopyToClipboard/CopyToClipboard.d.ts.map
new file mode 100644
index 00000000..7454be2d
--- /dev/null
+++ b/dist/components/CopyToClipboard/CopyToClipboard.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"CopyToClipboard.d.ts","sourceRoot":"","sources":["../../../src/components/CopyToClipboard/CopyToClipboard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,MAAM,WAAW,cAAc;IAC9B,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,gBAAgB,GAAG,cAAc,CAAC;IAChE,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB;AAiCD,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAiG7C,CAAC;AAEF,eAAe,eAAe,CAAC"}
\ No newline at end of file
diff --git a/dist/components/CopyToClipboard/index.d.ts b/dist/components/CopyToClipboard/index.d.ts
index 9e9d5c7e..eb4aa53b 100644
--- a/dist/components/CopyToClipboard/index.d.ts
+++ b/dist/components/CopyToClipboard/index.d.ts
@@ -1,3 +1,3 @@
-import { default as CopyToClipboard, ClipboardProps } from './CopyToClipboard';
-export type { ClipboardProps };
+import { default as CopyToClipboard } from './CopyToClipboard';
export default CopyToClipboard;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/CopyToClipboard/index.d.ts.map b/dist/components/CopyToClipboard/index.d.ts.map
new file mode 100644
index 00000000..ece4a692
--- /dev/null
+++ b/dist/components/CopyToClipboard/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/CopyToClipboard/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/D,eAAe,eAAe,CAAC"}
\ No newline at end of file
diff --git a/dist/components/DataCard/DataCard.d.ts b/dist/components/DataCard/DataCard.d.ts
deleted file mode 100644
index 8805b7ad..00000000
--- a/dist/components/DataCard/DataCard.d.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import React from 'react';
-type DefaultProps = {
- text: string;
- count: string | number;
-};
-type ConditionProps = {
- critical: true;
- high?: never;
- medium?: never;
- low?: never;
-} | {
- high: true;
- critical?: never;
- medium?: never;
- low?: never;
-} | {
- medium: true;
- critical?: never;
- high?: never;
- low?: never;
-} | {
- low: true;
- critical?: never;
- high?: never;
- medium?: never;
-};
-export type CardProps = (DefaultProps & ConditionProps) | DefaultProps;
-declare const UIDataCard: React.ForwardRefExoticComponent>;
-export default UIDataCard;
-export type { CardProps as UICardProps };
diff --git a/dist/components/DataCard/index.d.ts b/dist/components/DataCard/index.d.ts
deleted file mode 100644
index a21acc60..00000000
--- a/dist/components/DataCard/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as DataCard, UICardProps as CardProps } from './DataCard';
-export type { CardProps };
-export default DataCard;
diff --git a/dist/components/DetailStat/DetailStat.d.ts b/dist/components/DetailStat/DetailStat.d.ts
new file mode 100644
index 00000000..cce77789
--- /dev/null
+++ b/dist/components/DetailStat/DetailStat.d.ts
@@ -0,0 +1,12 @@
+import { default as React, ReactNode } from 'react';
+type StatProps = {
+ title: string;
+ value: ReactNode;
+ fullWidth?: boolean;
+ lowercaseValue?: boolean;
+ capitalizeValue?: boolean;
+};
+declare const DetailStat: React.FC;
+export default DetailStat;
+export type { StatProps };
+//# sourceMappingURL=DetailStat.d.ts.map
\ No newline at end of file
diff --git a/dist/components/DetailStat/DetailStat.d.ts.map b/dist/components/DetailStat/DetailStat.d.ts.map
new file mode 100644
index 00000000..8359a01a
--- /dev/null
+++ b/dist/components/DetailStat/DetailStat.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"DetailStat.d.ts","sourceRoot":"","sources":["../../../src/components/DetailStat/DetailStat.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAkB,SAAS,EAAE,MAAM,OAAO,CAAC;AAIzD,KAAK,SAAS,GAAG;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAmBF,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAuBnC,CAAC;AAEF,eAAe,UAAU,CAAC;AAC1B,YAAY,EAAE,SAAS,EAAE,CAAC"}
\ No newline at end of file
diff --git a/dist/components/DetailStat/index.d.ts b/dist/components/DetailStat/index.d.ts
new file mode 100644
index 00000000..fd2bf9a4
--- /dev/null
+++ b/dist/components/DetailStat/index.d.ts
@@ -0,0 +1,3 @@
+import { default as DetailStat } from './DetailStat';
+export default DetailStat;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/DetailStat/index.d.ts.map b/dist/components/DetailStat/index.d.ts.map
new file mode 100644
index 00000000..1403d290
--- /dev/null
+++ b/dist/components/DetailStat/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/DetailStat/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,eAAe,UAAU,CAAC"}
\ No newline at end of file
diff --git a/dist/components/DetailedStats/DetailedStats.d.ts b/dist/components/DetailedStats/DetailedStats.d.ts
deleted file mode 100644
index c927f4c5..00000000
--- a/dist/components/DetailedStats/DetailedStats.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import React, { ReactNode } from 'react';
-type StatItem = {
- key: string;
- label: string;
- children?: ReactNode;
- loading?: boolean;
-};
-type DetailedStatsProps = {
- items: StatItem[];
-};
-declare const UIDetailedStats: React.ForwardRefExoticComponent>;
-export default UIDetailedStats;
-export type { DetailedStatsProps };
diff --git a/dist/components/DetailedStats/index.d.ts b/dist/components/DetailedStats/index.d.ts
deleted file mode 100644
index ac970ee9..00000000
--- a/dist/components/DetailedStats/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as DetailedStats, DetailedStatsProps } from './DetailedStats';
-export type { DetailedStatsProps };
-export default DetailedStats;
diff --git a/dist/components/Details/Details.d.ts b/dist/components/Details/Details.d.ts
deleted file mode 100644
index e56f2007..00000000
--- a/dist/components/Details/Details.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import type { DescriptionsProps } from 'antd';
-import React, { FC } from 'react';
-type ItemType = {
- prefixCls?: string;
- className?: string;
- style?: React.CSSProperties;
- label?: React.ReactNode;
- labelStyle?: React.CSSProperties;
- contentStyle?: React.CSSProperties;
- children: React.ReactNode;
- key?: React.Key;
-};
-export type DetailsType = Omit & ({
- type: 'topToBottom';
- items?: ItemType[];
-} | {
- type?: 'default';
- items?: DescriptionsProps['items'];
-});
-declare const UIDetails: FC;
-export default UIDetails;
diff --git a/dist/components/Details/index.d.ts b/dist/components/Details/index.d.ts
deleted file mode 100644
index eb54f29a..00000000
--- a/dist/components/Details/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Details, DetailsType } from './Details';
-export type { DetailsType };
-export default Details;
diff --git a/dist/components/EnvironmentDetails/EnvironmentDetails.d.ts b/dist/components/EnvironmentDetails/EnvironmentDetails.d.ts
deleted file mode 100644
index 07db0c9e..00000000
--- a/dist/components/EnvironmentDetails/EnvironmentDetails.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { FC } from 'react';
-export interface EnvironmentDetailsType {
- environmentType: React.ReactNode;
- deploymentType: React.ReactNode;
- created: React.ReactNode;
- source: React.ReactNode;
- standbyRoutes: React.ReactNode;
- routes: React.ReactNode[];
- deployKey: React.ReactNode;
-}
-declare const LagoonEnvironmentDetails: FC;
-export default LagoonEnvironmentDetails;
diff --git a/dist/components/EnvironmentDetails/index.d.ts b/dist/components/EnvironmentDetails/index.d.ts
deleted file mode 100644
index 0ab6b3bb..00000000
--- a/dist/components/EnvironmentDetails/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonEnvironmentDetails, EnvironmentDetailsType } from './EnvironmentDetails';
-export type { EnvironmentDetailsType };
-export default LagoonEnvironmentDetails;
diff --git a/dist/components/Filter/Filter.d.ts b/dist/components/Filter/Filter.d.ts
deleted file mode 100644
index 74948b42..00000000
--- a/dist/components/Filter/Filter.d.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-type SortType = {
- value: T;
- label: string;
-};
-type FilterProps = {
- sortOptions?: {
- options: SortType[];
- selectedState: unknown;
- setSelectedState: React.Dispatch>;
- };
- selectOptions?: {
- options: SortType[];
- selectedState: unknown;
- setSelectedState: React.Dispatch>;
- };
- searchOptions?: {
- searchText: string;
- setSearchText: React.Dispatch>;
- };
- showDateRange?: boolean;
- loadingSkeleton?: boolean;
- children?: React.ReactNode;
-};
-declare const LagoonFilter: React.ForwardRefExoticComponent>;
-export default LagoonFilter;
-export type { FilterProps as LagoonFilterProps };
diff --git a/dist/components/Filter/index.d.ts b/dist/components/Filter/index.d.ts
deleted file mode 100644
index 59b02331..00000000
--- a/dist/components/Filter/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonFilter, LagoonFilterProps } from './Filter';
-export type { LagoonFilterProps };
-export default LagoonFilter;
diff --git a/dist/components/Filter/styles.d.ts b/dist/components/Filter/styles.d.ts
deleted file mode 100644
index 628b36c0..00000000
--- a/dist/components/Filter/styles.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-///
-export declare const StyledSearch: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, never>> & Omit>, keyof import("react").Component>;
-export declare const StyledFilter: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
diff --git a/dist/components/Footer/Footer.d.ts b/dist/components/Footer/Footer.d.ts
deleted file mode 100644
index c2236100..00000000
--- a/dist/components/Footer/Footer.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import React from 'react';
-export type FooterProps = {
- icon?: React.ReactNode;
- toggleTheme?: () => void;
-};
-declare const LagoonFooter: React.ForwardRefExoticComponent>;
-export default LagoonFooter;
diff --git a/dist/components/Footer/index.d.ts b/dist/components/Footer/index.d.ts
deleted file mode 100644
index 7e2102e4..00000000
--- a/dist/components/Footer/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonFooter, FooterProps } from './Footer';
-export type { FooterProps };
-export default LagoonFooter;
diff --git a/dist/components/Footer/styles.d.ts b/dist/components/Footer/styles.d.ts
deleted file mode 100644
index 7306956b..00000000
--- a/dist/components/Footer/styles.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-///
-export declare const StyledFooter: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
-export declare const ThemeSwitcher: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
diff --git a/dist/components/FormItem/FormItem.d.ts b/dist/components/FormItem/FormItem.d.ts
deleted file mode 100644
index d55c8583..00000000
--- a/dist/components/FormItem/FormItem.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react';
-import { FormItemProps } from 'antd';
-type ItemProps = FormItemProps & {
- wrap?: boolean;
-};
-declare const UIFormItem: React.FC;
-export default UIFormItem;
-export type { FormItemProps as UIFormItemProps };
diff --git a/dist/components/FormItem/index.d.ts b/dist/components/FormItem/index.d.ts
deleted file mode 100644
index 2e848728..00000000
--- a/dist/components/FormItem/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as FormItem, UIFormItemProps as FormItemProps } from './FormItem';
-export type { FormItemProps };
-export default FormItem;
diff --git a/dist/components/Header/Header.d.ts b/dist/components/Header/Header.d.ts
deleted file mode 100644
index 243d842b..00000000
--- a/dist/components/Header/Header.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import React, { ReactNode } from 'react';
-import { MenuProps } from 'antd';
-export type HeaderProps = {
- logo?: React.ReactNode;
- toggleTheme: () => void;
- userInfo: {
- email: string;
- image?: React.ImgHTMLAttributes['src'];
- firstName?: string;
- lastName?: string;
- };
- userDropdownMenu: MenuProps['items'];
- navLinks: ReactNode[];
- currentPath?: string;
-};
-declare const LagoonHeader: React.ForwardRefExoticComponent>;
-export default LagoonHeader;
diff --git a/dist/components/Header/helpers/genAvatarBackground.d.ts b/dist/components/Header/helpers/genAvatarBackground.d.ts
deleted file mode 100644
index 8e7cf14b..00000000
--- a/dist/components/Header/helpers/genAvatarBackground.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-declare const genAvatarBackground: (firstLetter: string, secondLetter: string) => {
- bgColor: string;
- textColor: string;
-};
-export default genAvatarBackground;
diff --git a/dist/components/Header/helpers/getCurrentPathIndex.d.ts b/dist/components/Header/helpers/getCurrentPathIndex.d.ts
deleted file mode 100644
index 4cef6f85..00000000
--- a/dist/components/Header/helpers/getCurrentPathIndex.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { ReactNode } from 'react';
-export declare const getCurrentPathIndex: (navLinks: ReactNode[], pathname: string) => number;
diff --git a/dist/components/Header/index.d.ts b/dist/components/Header/index.d.ts
deleted file mode 100644
index de0f963d..00000000
--- a/dist/components/Header/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonHeader, HeaderProps } from './Header';
-export type { HeaderProps };
-export default LagoonHeader;
diff --git a/dist/components/Header/styles.d.ts b/dist/components/Header/styles.d.ts
deleted file mode 100644
index d8b855f3..00000000
--- a/dist/components/Header/styles.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-///
-export declare const StyledAvatar: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, {
- $bgcolor: string | null;
-}>>;
-export declare const StyledNav: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
-export declare const StyledNavWrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
-export declare const StyledLine: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLSpanElement>, never>>;
-export declare const StyledLink: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledAvatarBubble: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, {
- $bgColor: string;
- $textColor: string;
-}>>;
-export declare const StyledAvatarImage: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLImageElement>, never>>;
-export declare const StyledUserInfo: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledUserDropdown: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit> & Omit & {
- _InternalPanelDoNotUseOrYouWillBeFired: import("react").FC;
-} & {
- Button: import("react").FC;
-}, keyof import("react").Component>;
-export declare const StyledHeader: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
-export declare const ThemeSwitcher: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLElement>, never>>;
diff --git a/dist/components/Heading/H1/H1.d.ts b/dist/components/Heading/H1/H1.d.ts
deleted file mode 100644
index 011b9045..00000000
--- a/dist/components/Heading/H1/H1.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import React from 'react';
-import { InternalHeadingProps } from '../Heading';
-declare const Head1: React.ForwardRefExoticComponent & React.RefAttributes>;
-export default Head1;
diff --git a/dist/components/Heading/H1/index.d.ts b/dist/components/Heading/H1/index.d.ts
deleted file mode 100644
index a849676d..00000000
--- a/dist/components/Heading/H1/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { default as Head1 } from './H1';
-export default Head1;
diff --git a/dist/components/Heading/H2/H2.d.ts b/dist/components/Heading/H2/H2.d.ts
deleted file mode 100644
index 5680cc04..00000000
--- a/dist/components/Heading/H2/H2.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import React from 'react';
-import { InternalHeadingProps } from '../Heading';
-declare const Head2: React.ForwardRefExoticComponent & React.RefAttributes>;
-export default Head2;
diff --git a/dist/components/Heading/H2/index.d.ts b/dist/components/Heading/H2/index.d.ts
deleted file mode 100644
index d6ce5b23..00000000
--- a/dist/components/Heading/H2/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { default as Head2 } from './H2';
-export default Head2;
diff --git a/dist/components/Heading/H3/H3.d.ts b/dist/components/Heading/H3/H3.d.ts
deleted file mode 100644
index caf84c01..00000000
--- a/dist/components/Heading/H3/H3.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import React from 'react';
-import { InternalHeadingProps } from '../Heading';
-declare const Head3: React.ForwardRefExoticComponent & React.RefAttributes>;
-export default Head3;
diff --git a/dist/components/Heading/H3/index.d.ts b/dist/components/Heading/H3/index.d.ts
deleted file mode 100644
index b8e18369..00000000
--- a/dist/components/Heading/H3/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { default as Head3 } from './H3';
-export default Head3;
diff --git a/dist/components/Heading/H4/H4.d.ts b/dist/components/Heading/H4/H4.d.ts
deleted file mode 100644
index 186f5b4a..00000000
--- a/dist/components/Heading/H4/H4.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import React from 'react';
-import { InternalHeadingProps } from '../Heading';
-declare const Head4: React.ForwardRefExoticComponent & React.RefAttributes>;
-export default Head4;
diff --git a/dist/components/Heading/H4/index.d.ts b/dist/components/Heading/H4/index.d.ts
deleted file mode 100644
index b1910c76..00000000
--- a/dist/components/Heading/H4/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { default as Head4 } from './H4';
-export default Head4;
diff --git a/dist/components/Heading/H5/H5.d.ts b/dist/components/Heading/H5/H5.d.ts
deleted file mode 100644
index afa13533..00000000
--- a/dist/components/Heading/H5/H5.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import React from 'react';
-import { InternalHeadingProps } from '../Heading';
-declare const Head5: React.ForwardRefExoticComponent & React.RefAttributes>;
-export default Head5;
diff --git a/dist/components/Heading/H5/index.d.ts b/dist/components/Heading/H5/index.d.ts
deleted file mode 100644
index 5ed513c8..00000000
--- a/dist/components/Heading/H5/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { default as Head5 } from './H5';
-export default Head5;
diff --git a/dist/components/Heading/Heading.d.ts b/dist/components/Heading/Heading.d.ts
deleted file mode 100644
index e74a6595..00000000
--- a/dist/components/Heading/Heading.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react';
-import { TitleProps } from 'antd/es/typography/Title';
-export type Heading = 1 | 2 | 3 | 4 | 5;
-export type InternalHeadingProps = Omit & {
- level?: Heading;
- className?: string;
- children?: React.ReactNode;
- style?: React.CSSProperties;
-};
-declare const Heading: React.ForwardRefExoticComponent & {
- level?: Heading | undefined;
- className?: string | undefined;
- children?: React.ReactNode;
- style?: React.CSSProperties | undefined;
-} & React.RefAttributes>;
-export default Heading;
diff --git a/dist/components/Heading/Styles.d.ts b/dist/components/Heading/Styles.d.ts
deleted file mode 100644
index 74033451..00000000
--- a/dist/components/Heading/Styles.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-///
-import { Heading } from './Heading';
-declare const UITitleElement: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, {
- level: Heading;
-}>> & Omit>, keyof import("react").Component>;
-export default UITitleElement;
diff --git a/dist/components/Heading/index.d.ts b/dist/components/Heading/index.d.ts
deleted file mode 100644
index ceed96be..00000000
--- a/dist/components/Heading/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Heading, InternalHeadingProps as HeadingProps } from './Heading';
-export type { HeadingProps };
-export default Heading;
diff --git a/dist/components/Icons/index.d.ts b/dist/components/Icons/index.d.ts
deleted file mode 100644
index f147e146..00000000
--- a/dist/components/Icons/index.d.ts
+++ /dev/null
@@ -1,76 +0,0 @@
-import Icon from '@ant-design/icons';
-import type { GetProps } from 'antd';
-type CustomIconComponentProps = GetProps;
-export declare const IconAim: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAlert: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAlignCenter: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAlignLeft: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAlignRight: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconApartment: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconApi: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAppstore: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconArrowDown: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconArrowsAlt: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconAudio: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconBell: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconBranches: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconBug: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconBulb: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCamera: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCaretDown: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCheck: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCheckSquare: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconClose: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCloseSquare: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCloudDownload: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconCloudUpload: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconDelete: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconDisconnect: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconEdit: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconEllipsis: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconExclamation: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconExclamationCircle: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconExport: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconEye: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFileImage: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFilePdf: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFileJpg: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFrown: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFullscreen: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconFullscreenExit: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconGithub: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconHdd: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconHeart: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconHighlight: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconHome: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconIdcard: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconInfoCircle: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconLink: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconLoading: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconLock: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconMeh: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconMessage: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconMinusCircle: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconMinusSquare: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconPaperclip: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconPlus: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconPushpinFIlled: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconPushpinOutlined: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconRest: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconRocket: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconSave: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconSearch: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconSettings: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconSmile: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconStar: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconTag: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconTags: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconWifi: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconZoomIn: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconZoomOut: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const LagoonIcon: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconSun: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconLagoonOnly: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconGrid: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export declare const IconList: (props: Partial) => import("react/jsx-runtime").JSX.Element;
-export {};
diff --git a/dist/components/Icons/vectors/Aim.d.ts b/dist/components/Icons/vectors/Aim.d.ts
deleted file mode 100644
index bdf353bb..00000000
--- a/dist/components/Icons/vectors/Aim.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Aim: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Alert.d.ts b/dist/components/Icons/vectors/Alert.d.ts
deleted file mode 100644
index 3df63ad5..00000000
--- a/dist/components/Icons/vectors/Alert.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Alert: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/AlignCenter.d.ts b/dist/components/Icons/vectors/AlignCenter.d.ts
deleted file mode 100644
index c7fadc24..00000000
--- a/dist/components/Icons/vectors/AlignCenter.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const AlignCenter: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/AlignLeft.d.ts b/dist/components/Icons/vectors/AlignLeft.d.ts
deleted file mode 100644
index 38f3c101..00000000
--- a/dist/components/Icons/vectors/AlignLeft.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const AlignLeft: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/AlignRight.d.ts b/dist/components/Icons/vectors/AlignRight.d.ts
deleted file mode 100644
index c123f586..00000000
--- a/dist/components/Icons/vectors/AlignRight.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const AlignRight: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Apartment.d.ts b/dist/components/Icons/vectors/Apartment.d.ts
deleted file mode 100644
index dd29a536..00000000
--- a/dist/components/Icons/vectors/Apartment.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Apartment: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Api.d.ts b/dist/components/Icons/vectors/Api.d.ts
deleted file mode 100644
index ec077c5f..00000000
--- a/dist/components/Icons/vectors/Api.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Api: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Appstore.d.ts b/dist/components/Icons/vectors/Appstore.d.ts
deleted file mode 100644
index 28bc8e5b..00000000
--- a/dist/components/Icons/vectors/Appstore.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Appstore: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/ArrowDown.d.ts b/dist/components/Icons/vectors/ArrowDown.d.ts
deleted file mode 100644
index edc34d89..00000000
--- a/dist/components/Icons/vectors/ArrowDown.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const ArrowDown: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/ArrowsAlt.d.ts b/dist/components/Icons/vectors/ArrowsAlt.d.ts
deleted file mode 100644
index 10b8f7a8..00000000
--- a/dist/components/Icons/vectors/ArrowsAlt.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const ArrowsAlt: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Audio.d.ts b/dist/components/Icons/vectors/Audio.d.ts
deleted file mode 100644
index 5d769b0b..00000000
--- a/dist/components/Icons/vectors/Audio.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Audio: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Bell.d.ts b/dist/components/Icons/vectors/Bell.d.ts
deleted file mode 100644
index c0dc81ee..00000000
--- a/dist/components/Icons/vectors/Bell.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Bell: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Branches.d.ts b/dist/components/Icons/vectors/Branches.d.ts
deleted file mode 100644
index 33bf4b4f..00000000
--- a/dist/components/Icons/vectors/Branches.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Branches: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Bug.d.ts b/dist/components/Icons/vectors/Bug.d.ts
deleted file mode 100644
index 3e572877..00000000
--- a/dist/components/Icons/vectors/Bug.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Bug: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Bulb.d.ts b/dist/components/Icons/vectors/Bulb.d.ts
deleted file mode 100644
index 522365e4..00000000
--- a/dist/components/Icons/vectors/Bulb.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Bulb: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Camera.d.ts b/dist/components/Icons/vectors/Camera.d.ts
deleted file mode 100644
index eb865ac4..00000000
--- a/dist/components/Icons/vectors/Camera.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Camera: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/CaretDown.d.ts b/dist/components/Icons/vectors/CaretDown.d.ts
deleted file mode 100644
index 9a40b98a..00000000
--- a/dist/components/Icons/vectors/CaretDown.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const CaretDown: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Check.d.ts b/dist/components/Icons/vectors/Check.d.ts
deleted file mode 100644
index 5532eabf..00000000
--- a/dist/components/Icons/vectors/Check.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Check: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/CheckSquare.d.ts b/dist/components/Icons/vectors/CheckSquare.d.ts
deleted file mode 100644
index 0ca0312a..00000000
--- a/dist/components/Icons/vectors/CheckSquare.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const CheckSquare: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Close.d.ts b/dist/components/Icons/vectors/Close.d.ts
deleted file mode 100644
index 6efe69ba..00000000
--- a/dist/components/Icons/vectors/Close.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Close: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/CloseSquare.d.ts b/dist/components/Icons/vectors/CloseSquare.d.ts
deleted file mode 100644
index 98cedaa3..00000000
--- a/dist/components/Icons/vectors/CloseSquare.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const CloseSquare: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/CloudDownload.d.ts b/dist/components/Icons/vectors/CloudDownload.d.ts
deleted file mode 100644
index 65fb73a5..00000000
--- a/dist/components/Icons/vectors/CloudDownload.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const CloudDownload: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/CloudUpload.d.ts b/dist/components/Icons/vectors/CloudUpload.d.ts
deleted file mode 100644
index d3f4feab..00000000
--- a/dist/components/Icons/vectors/CloudUpload.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const CloudUpload: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Delete.d.ts b/dist/components/Icons/vectors/Delete.d.ts
deleted file mode 100644
index 3ab85139..00000000
--- a/dist/components/Icons/vectors/Delete.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Delete: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Disconnect.d.ts b/dist/components/Icons/vectors/Disconnect.d.ts
deleted file mode 100644
index 21f427a4..00000000
--- a/dist/components/Icons/vectors/Disconnect.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Disconnect: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Edit.d.ts b/dist/components/Icons/vectors/Edit.d.ts
deleted file mode 100644
index 79793ce4..00000000
--- a/dist/components/Icons/vectors/Edit.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Edit: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Ellipsis.d.ts b/dist/components/Icons/vectors/Ellipsis.d.ts
deleted file mode 100644
index 0e7091a9..00000000
--- a/dist/components/Icons/vectors/Ellipsis.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Ellipsis: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Exclamation.d.ts b/dist/components/Icons/vectors/Exclamation.d.ts
deleted file mode 100644
index 93598565..00000000
--- a/dist/components/Icons/vectors/Exclamation.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Exclamation: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/ExclamationCircle.d.ts b/dist/components/Icons/vectors/ExclamationCircle.d.ts
deleted file mode 100644
index a192f967..00000000
--- a/dist/components/Icons/vectors/ExclamationCircle.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const ExclamationCircle: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Export.d.ts b/dist/components/Icons/vectors/Export.d.ts
deleted file mode 100644
index 7861f49c..00000000
--- a/dist/components/Icons/vectors/Export.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Export: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Eye.d.ts b/dist/components/Icons/vectors/Eye.d.ts
deleted file mode 100644
index 06c20340..00000000
--- a/dist/components/Icons/vectors/Eye.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Eye: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/FileImage.d.ts b/dist/components/Icons/vectors/FileImage.d.ts
deleted file mode 100644
index 5ddf0df3..00000000
--- a/dist/components/Icons/vectors/FileImage.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const FileImage: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/FileJpg.d.ts b/dist/components/Icons/vectors/FileJpg.d.ts
deleted file mode 100644
index 38240f30..00000000
--- a/dist/components/Icons/vectors/FileJpg.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const FileJpg: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/FilePdf.d.ts b/dist/components/Icons/vectors/FilePdf.d.ts
deleted file mode 100644
index 717a1c3f..00000000
--- a/dist/components/Icons/vectors/FilePdf.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const FilePdf: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Frown.d.ts b/dist/components/Icons/vectors/Frown.d.ts
deleted file mode 100644
index fb22b966..00000000
--- a/dist/components/Icons/vectors/Frown.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Frown: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/FullScreen.d.ts b/dist/components/Icons/vectors/FullScreen.d.ts
deleted file mode 100644
index 2bbebc55..00000000
--- a/dist/components/Icons/vectors/FullScreen.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Fullscreen: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/FullscreenExit.d.ts b/dist/components/Icons/vectors/FullscreenExit.d.ts
deleted file mode 100644
index 039df3ab..00000000
--- a/dist/components/Icons/vectors/FullscreenExit.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const FullscreenExit: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Github.d.ts b/dist/components/Icons/vectors/Github.d.ts
deleted file mode 100644
index b79fae6c..00000000
--- a/dist/components/Icons/vectors/Github.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Github: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Grid.d.ts b/dist/components/Icons/vectors/Grid.d.ts
deleted file mode 100644
index 0ccf1412..00000000
--- a/dist/components/Icons/vectors/Grid.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Grid: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Hdd.d.ts b/dist/components/Icons/vectors/Hdd.d.ts
deleted file mode 100644
index c603cb29..00000000
--- a/dist/components/Icons/vectors/Hdd.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Hdd: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Heart.d.ts b/dist/components/Icons/vectors/Heart.d.ts
deleted file mode 100644
index 08265d53..00000000
--- a/dist/components/Icons/vectors/Heart.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Heart: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Highlight.d.ts b/dist/components/Icons/vectors/Highlight.d.ts
deleted file mode 100644
index 43d9a311..00000000
--- a/dist/components/Icons/vectors/Highlight.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Highlight: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Home.d.ts b/dist/components/Icons/vectors/Home.d.ts
deleted file mode 100644
index 42abe954..00000000
--- a/dist/components/Icons/vectors/Home.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Home: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Idcard.d.ts b/dist/components/Icons/vectors/Idcard.d.ts
deleted file mode 100644
index 6488e586..00000000
--- a/dist/components/Icons/vectors/Idcard.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Idcard: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/InfoCircle.d.ts b/dist/components/Icons/vectors/InfoCircle.d.ts
deleted file mode 100644
index e72c86d7..00000000
--- a/dist/components/Icons/vectors/InfoCircle.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const InfoCircle: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Lagoon.d.ts b/dist/components/Icons/vectors/Lagoon.d.ts
deleted file mode 100644
index d5e1b9e6..00000000
--- a/dist/components/Icons/vectors/Lagoon.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Lagoon: () => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/LagoonIconOnly.d.ts b/dist/components/Icons/vectors/LagoonIconOnly.d.ts
deleted file mode 100644
index fb76c53f..00000000
--- a/dist/components/Icons/vectors/LagoonIconOnly.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const LagoonIconOnly: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Link.d.ts b/dist/components/Icons/vectors/Link.d.ts
deleted file mode 100644
index f82b766f..00000000
--- a/dist/components/Icons/vectors/Link.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Link: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/List.d.ts b/dist/components/Icons/vectors/List.d.ts
deleted file mode 100644
index 6644d6a4..00000000
--- a/dist/components/Icons/vectors/List.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const List: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Loading.d.ts b/dist/components/Icons/vectors/Loading.d.ts
deleted file mode 100644
index 24c0e679..00000000
--- a/dist/components/Icons/vectors/Loading.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Loading: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Lock.d.ts b/dist/components/Icons/vectors/Lock.d.ts
deleted file mode 100644
index 05280c7d..00000000
--- a/dist/components/Icons/vectors/Lock.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Lock: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Meh.d.ts b/dist/components/Icons/vectors/Meh.d.ts
deleted file mode 100644
index 9bf2fdba..00000000
--- a/dist/components/Icons/vectors/Meh.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Meh: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Message.d.ts b/dist/components/Icons/vectors/Message.d.ts
deleted file mode 100644
index 9dd80dac..00000000
--- a/dist/components/Icons/vectors/Message.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Message: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/MinusCircle.d.ts b/dist/components/Icons/vectors/MinusCircle.d.ts
deleted file mode 100644
index 33f43464..00000000
--- a/dist/components/Icons/vectors/MinusCircle.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const MinusCircle: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/MinusSquare.d.ts b/dist/components/Icons/vectors/MinusSquare.d.ts
deleted file mode 100644
index e3ad1736..00000000
--- a/dist/components/Icons/vectors/MinusSquare.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const MinusSquare: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/PaperClip.d.ts b/dist/components/Icons/vectors/PaperClip.d.ts
deleted file mode 100644
index 4e3a26f4..00000000
--- a/dist/components/Icons/vectors/PaperClip.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const PaperClip: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Plus.d.ts b/dist/components/Icons/vectors/Plus.d.ts
deleted file mode 100644
index 362f496b..00000000
--- a/dist/components/Icons/vectors/Plus.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Plus: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/PushpinFilled.d.ts b/dist/components/Icons/vectors/PushpinFilled.d.ts
deleted file mode 100644
index 2d28247b..00000000
--- a/dist/components/Icons/vectors/PushpinFilled.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const PushpinFilled: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/PushpinOutlined.d.ts b/dist/components/Icons/vectors/PushpinOutlined.d.ts
deleted file mode 100644
index 7ab82c9a..00000000
--- a/dist/components/Icons/vectors/PushpinOutlined.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const PushpinOutlined: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Rest.d.ts b/dist/components/Icons/vectors/Rest.d.ts
deleted file mode 100644
index ac54945f..00000000
--- a/dist/components/Icons/vectors/Rest.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Rest: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Rocket.d.ts b/dist/components/Icons/vectors/Rocket.d.ts
deleted file mode 100644
index caea98e5..00000000
--- a/dist/components/Icons/vectors/Rocket.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Rocket: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Save.d.ts b/dist/components/Icons/vectors/Save.d.ts
deleted file mode 100644
index 461b1287..00000000
--- a/dist/components/Icons/vectors/Save.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Save: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Search.d.ts b/dist/components/Icons/vectors/Search.d.ts
deleted file mode 100644
index 45482aff..00000000
--- a/dist/components/Icons/vectors/Search.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Search: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Settings.d.ts b/dist/components/Icons/vectors/Settings.d.ts
deleted file mode 100644
index 5264efc8..00000000
--- a/dist/components/Icons/vectors/Settings.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Settings: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Smile.d.ts b/dist/components/Icons/vectors/Smile.d.ts
deleted file mode 100644
index 463c1a87..00000000
--- a/dist/components/Icons/vectors/Smile.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Smile: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Star.d.ts b/dist/components/Icons/vectors/Star.d.ts
deleted file mode 100644
index 49e3aa78..00000000
--- a/dist/components/Icons/vectors/Star.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Star: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Sun.d.ts b/dist/components/Icons/vectors/Sun.d.ts
deleted file mode 100644
index 1ef503cc..00000000
--- a/dist/components/Icons/vectors/Sun.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Sun: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Tag.d.ts b/dist/components/Icons/vectors/Tag.d.ts
deleted file mode 100644
index 93e5b4b4..00000000
--- a/dist/components/Icons/vectors/Tag.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Tag: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Tags.d.ts b/dist/components/Icons/vectors/Tags.d.ts
deleted file mode 100644
index a338195b..00000000
--- a/dist/components/Icons/vectors/Tags.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Tags: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/Wifi.d.ts b/dist/components/Icons/vectors/Wifi.d.ts
deleted file mode 100644
index a6db64ea..00000000
--- a/dist/components/Icons/vectors/Wifi.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const Wifi: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/ZoomIn.d.ts b/dist/components/Icons/vectors/ZoomIn.d.ts
deleted file mode 100644
index 3803e6cf..00000000
--- a/dist/components/Icons/vectors/ZoomIn.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const ZoomIn: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Icons/vectors/ZoomOut.d.ts b/dist/components/Icons/vectors/ZoomOut.d.ts
deleted file mode 100644
index 40e20fb3..00000000
--- a/dist/components/Icons/vectors/ZoomOut.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const ZoomOut: (props: any) => import("react/jsx-runtime").JSX.Element;
diff --git a/dist/components/Input/Input.d.ts b/dist/components/Input/Input.d.ts
index f87ddc9c..fa50c3cd 100644
--- a/dist/components/Input/Input.d.ts
+++ b/dist/components/Input/Input.d.ts
@@ -1,5 +1,11 @@
-import React from 'react';
-import { InputProps, InputRef } from 'antd';
-declare const UIInput: React.ForwardRefExoticComponent>;
-export default UIInput;
-export type { InputProps as UIInputProps };
+import { Input as ShadInput } from '../ui/input';
+import { ComponentProps, ReactNode } from 'react';
+type InputProps = ComponentProps & {
+ label: string;
+ placeholder?: string;
+ description?: string;
+ icon?: ReactNode;
+};
+export default function Input({ label, placeholder, icon, description, ...rest }: InputProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Input.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Input/Input.d.ts.map b/dist/components/Input/Input.d.ts.map
new file mode 100644
index 00000000..5875a5d5
--- /dev/null
+++ b/dist/components/Input/Input.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,IAAI,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAc,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGzD,KAAK,UAAU,GAAG,cAAc,CAAC,OAAO,SAAS,CAAC,GAAG;IACpD,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,SAAS,CAAC;CACjB,CAAC;AAUF,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAE,KAAK,EAAE,WAAgB,EAAE,IAAI,EAAE,WAAW,EAAE,GAAG,IAAI,EAAE,EAAE,UAAU,+CAoBhG"}
\ No newline at end of file
diff --git a/dist/components/Input/index.d.ts b/dist/components/Input/index.d.ts
index 6cf87c61..77645f92 100644
--- a/dist/components/Input/index.d.ts
+++ b/dist/components/Input/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Input, UIInputProps as InputProps } from './Input';
-export type { InputProps };
+import { default as Input } from './Input';
export default Input;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Input/index.d.ts.map b/dist/components/Input/index.d.ts.map
new file mode 100644
index 00000000..02a7206f
--- /dev/null
+++ b/dist/components/Input/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Input/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAE3C,eAAe,KAAK,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Input/styles.d.ts b/dist/components/Input/styles.d.ts
deleted file mode 100644
index 60dce171..00000000
--- a/dist/components/Input/styles.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-///
-export declare const StyledInput: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, never>> & Omit> & {
- Group: import("react").FC;
- Search: import("react").ForwardRefExoticComponent>;
- TextArea: import("react").ForwardRefExoticComponent>;
- Password: import("react").ForwardRefExoticComponent>;
-}, keyof import("react").Component>;
diff --git a/dist/components/KeyFactCard/KeyFactCard.d.ts b/dist/components/KeyFactCard/KeyFactCard.d.ts
new file mode 100644
index 00000000..8e0b95a3
--- /dev/null
+++ b/dist/components/KeyFactCard/KeyFactCard.d.ts
@@ -0,0 +1,10 @@
+import { ReactElement } from 'react';
+type KeyFactProps = {
+ name: string;
+ category: string;
+ value: string;
+ img: ReactElement;
+};
+export default function KeyFactCard({ name, category, value, img }: KeyFactProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=KeyFactCard.d.ts.map
\ No newline at end of file
diff --git a/dist/components/KeyFactCard/KeyFactCard.d.ts.map b/dist/components/KeyFactCard/KeyFactCard.d.ts.map
new file mode 100644
index 00000000..aea24c8f
--- /dev/null
+++ b/dist/components/KeyFactCard/KeyFactCard.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"KeyFactCard.d.ts","sourceRoot":"","sources":["../../../src/components/KeyFactCard/KeyFactCard.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAG5C,KAAK,YAAY,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;CAAE,CAAC;AAE3G,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,YAAY,+CAW/E"}
\ No newline at end of file
diff --git a/dist/components/KeyFactCard/index.d.ts b/dist/components/KeyFactCard/index.d.ts
new file mode 100644
index 00000000..a0e68ac7
--- /dev/null
+++ b/dist/components/KeyFactCard/index.d.ts
@@ -0,0 +1,3 @@
+import { default as KeyFactCard } from './KeyFactCard';
+export default KeyFactCard;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/KeyFactCard/index.d.ts.map b/dist/components/KeyFactCard/index.d.ts.map
new file mode 100644
index 00000000..6c4f2722
--- /dev/null
+++ b/dist/components/KeyFactCard/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/KeyFactCard/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,eAAe,WAAW,CAAC"}
\ No newline at end of file
diff --git a/dist/components/List/List.d.ts b/dist/components/List/List.d.ts
deleted file mode 100644
index 0579a1ef..00000000
--- a/dist/components/List/List.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { ListProps } from 'antd';
-import React, { ReactNode, RefAttributes } from 'react';
-declare const AntdListItem: import("antd/es/list/Item").ListItemTypeProps;
-export interface UIListProps extends ListProps, RefAttributes {
- children?: ReactNode;
-}
-interface UIListType extends React.ForwardRefExoticComponent & React.RefAttributes> {
- Item: typeof AntdListItem;
-}
-declare const UIList: UIListType;
-export default UIList;
diff --git a/dist/components/List/index.d.ts b/dist/components/List/index.d.ts
deleted file mode 100644
index 5aa0f27f..00000000
--- a/dist/components/List/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as List, UIListProps as ListType } from './List';
-export type { ListType };
-export default List;
diff --git a/dist/components/Modal/Modal.d.ts b/dist/components/Modal/Modal.d.ts
deleted file mode 100644
index b49e318b..00000000
--- a/dist/components/Modal/Modal.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { FC, ReactNode } from 'react';
-import { ModalProps } from 'antd';
-type UIModalProps = {
- subTitle?: ReactNode;
- confirmText?: string;
- cancelText?: string;
- minHeight?: string;
- dangerConfirm?: boolean;
- confirmDisabled?: boolean;
-} & Omit;
-declare const UIModal: FC;
-export type { UIModalProps };
-export default UIModal;
diff --git a/dist/components/Modal/index.d.ts b/dist/components/Modal/index.d.ts
deleted file mode 100644
index dbbf6ead..00000000
--- a/dist/components/Modal/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Modal, UIModalProps as ModalProps } from './Modal';
-export type { ModalProps };
-export default Modal;
diff --git a/dist/components/Modal/styles.d.ts b/dist/components/Modal/styles.d.ts
deleted file mode 100644
index 3e105335..00000000
--- a/dist/components/Modal/styles.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-///
-export declare const ModalFooterButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, never>> & Omit> & {
- Group: import("react").FC;
-}, keyof import("react").Component>;
-export declare const ModalChildren: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLElement>, {
- $minHeight?: string | undefined;
-}>>;
-export declare const StyledModal: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute> & Omit & import("antd/es/modal/confirm").ModalStaticFunctions & {
- useModal: typeof import("antd/es/modal/useModal").default;
- destroyAll: () => void;
- config: typeof import("antd/es/modal/confirm").modalGlobalConfig;
- _InternalPanelDoNotUseOrYouWillBeFired: (props: import("antd/es/modal/PurePanel").PurePanelProps) => import("react").JSX.Element;
-}, keyof import("react").Component>;
diff --git a/dist/components/Notification/Notification.d.ts b/dist/components/Notification/Notification.d.ts
index 5920ebae..01dd9a51 100644
--- a/dist/components/Notification/Notification.d.ts
+++ b/dist/components/Notification/Notification.d.ts
@@ -1,22 +1,17 @@
-import React, { ReactNode } from 'react';
-import { NotificationArgsProps } from 'antd';
-import { NotificationPlacement } from 'antd/es/notification/interface';
-export type NotificationType = {
- type?: 'error' | 'warning' | 'info' | 'success';
- requiresManualClose?: boolean;
+import { ReactNode } from 'react';
+type NotificationProps = {
title: string;
- content: ReactNode;
- placement?: NotificationPlacement;
-} & Omit & {
- showBtn?: boolean;
- btnLabel?: string;
- showIcon?: boolean;
-};
-declare const useUINotification: ({ type, title, content, placement, requiresManualClose, showBtn, showIcon, btnLabel, ...props }: NotificationType) => {
- trigger: (args?: {
- title?: string | undefined;
- content?: string | undefined;
- } | undefined) => void;
- contextHolder: React.ReactElement>;
-};
-export default useUINotification;
+ message: string;
+ cancelText?: string;
+ onCancel?: () => void;
+ confirmText?: string;
+ onConfirm?: () => void;
+} & ({
+ children?: ReactNode;
+} | {
+ open?: boolean;
+ onOpenChange?: (open: boolean) => void;
+});
+export default function Notification({ title, message, cancelText, onCancel, confirmText, onConfirm, ...rest }: NotificationProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Notification.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Notification/Notification.d.ts.map b/dist/components/Notification/Notification.d.ts.map
new file mode 100644
index 00000000..c7845151
--- /dev/null
+++ b/dist/components/Notification/Notification.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"Notification.d.ts","sourceRoot":"","sources":["../../../src/components/Notification/Notification.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,KAAK,iBAAiB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACvB,GAAG,CACD;IAAE,QAAQ,CAAC,EAAE,SAAS,CAAA;CAAE,GACxB;IACA,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CACtC,CACH,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACpC,KAAK,EACL,OAAO,EACP,UAAU,EACV,QAAQ,EACR,WAAW,EACX,SAAS,EACT,GAAG,IAAI,EACP,EAAE,iBAAiB,+CAkCnB"}
\ No newline at end of file
diff --git a/dist/components/Notification/index.d.ts b/dist/components/Notification/index.d.ts
index 1f9dda9b..8db484ef 100644
--- a/dist/components/Notification/index.d.ts
+++ b/dist/components/Notification/index.d.ts
@@ -1,3 +1,3 @@
-import { default as useNotification, NotificationType } from './Notification';
-export type { NotificationType };
-export default useNotification;
+import { default as Notification } from './Notification';
+export default Notification;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Notification/index.d.ts.map b/dist/components/Notification/index.d.ts.map
new file mode 100644
index 00000000..520feb8e
--- /dev/null
+++ b/dist/components/Notification/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Notification/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,eAAe,YAAY,CAAC"}
\ No newline at end of file
diff --git a/dist/components/PageContainer/PageContainer.d.ts b/dist/components/PageContainer/PageContainer.d.ts
deleted file mode 100644
index ecfc4170..00000000
--- a/dist/components/PageContainer/PageContainer.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import { HeaderProps } from '../Header';
-type WithHeader = {
- showHeader: true;
- headerProps: HeaderProps;
-};
-type WithoutHeader = {
- showHeader: false;
- headerProps: never;
-};
-type PageContainerProps = {
- className?: string;
- children?: React.ReactNode;
-} & (WithHeader | WithoutHeader);
-declare const PageContainer: React.ForwardRefExoticComponent>;
-export default PageContainer;
-export type { PageContainerProps };
diff --git a/dist/components/PageContainer/index.d.ts b/dist/components/PageContainer/index.d.ts
deleted file mode 100644
index f4f5e42d..00000000
--- a/dist/components/PageContainer/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as PageContainer, PageContainerProps } from './PageContainer';
-export type { PageContainerProps };
-export default PageContainer;
diff --git a/dist/components/PageContainer/styles.d.ts b/dist/components/PageContainer/styles.d.ts
deleted file mode 100644
index 85ae17c9..00000000
--- a/dist/components/PageContainer/styles.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-///
-export declare const StyledPageContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
diff --git a/dist/components/Pagination/Pagination.d.ts b/dist/components/Pagination/Pagination.d.ts
index 4af57632..1e101d83 100644
--- a/dist/components/Pagination/Pagination.d.ts
+++ b/dist/components/Pagination/Pagination.d.ts
@@ -1,7 +1,10 @@
-import { FC } from 'react';
-import { PaginationProps } from 'antd';
-declare const UIPagination: FC & {
- showSizeSelector?: boolean;
-}>;
-export type { PaginationProps as UIPaginationProps };
-export default UIPagination;
+import { default as React } from 'react';
+import { Pagination } from '../ui/pagination';
+type PaginationProps = React.ComponentProps & {
+ allItems: number;
+ itemsPerPage: number;
+ initialPage?: number;
+};
+export default function UIPagination({ allItems, itemsPerPage, initialPage, ...rest }: PaginationProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Pagination.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Pagination/index.d.ts b/dist/components/Pagination/index.d.ts
index db0f1dac..71e85bfd 100644
--- a/dist/components/Pagination/index.d.ts
+++ b/dist/components/Pagination/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Pagination, UIPaginationProps as PaginationProps } from './Pagination';
-export type { PaginationProps };
+import { default as Pagination } from './Pagination';
export default Pagination;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/ProblemsOverview/ProblemsOverview.d.ts b/dist/components/ProblemsOverview/ProblemsOverview.d.ts
index 6b828ae7..c003539f 100644
--- a/dist/components/ProblemsOverview/ProblemsOverview.d.ts
+++ b/dist/components/ProblemsOverview/ProblemsOverview.d.ts
@@ -1,4 +1,4 @@
-import React from 'react';
+import { default as React } from 'react';
type LagoonProblemsOverviewProps = {
problems: number;
critical: number;
@@ -13,3 +13,4 @@ type Props = LagoonProblemsOverviewProps | {
declare const LagoonProblemsOverview: React.FC;
export default LagoonProblemsOverview;
export type { LagoonProblemsOverviewProps };
+//# sourceMappingURL=ProblemsOverview.d.ts.map
\ No newline at end of file
diff --git a/dist/components/ProblemsOverview/ProblemsOverview.d.ts.map b/dist/components/ProblemsOverview/ProblemsOverview.d.ts.map
new file mode 100644
index 00000000..a978e128
--- /dev/null
+++ b/dist/components/ProblemsOverview/ProblemsOverview.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"ProblemsOverview.d.ts","sourceRoot":"","sources":["../../../src/components/ProblemsOverview/ProblemsOverview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,KAAK,2BAA2B,GAAG;IAClC,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,KAAK,CAAC;CACjB,CAAC;AACF,KAAK,KAAK,GACP,2BAA2B,GAC3B;IACA,QAAQ,EAAE,IAAI,CAAC;CACd,CAAC;AAEL,QAAA,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA+C3C,CAAC;AAGF,eAAe,sBAAsB,CAAC;AACtC,YAAY,EAAE,2BAA2B,EAAE,CAAC"}
\ No newline at end of file
diff --git a/dist/components/ProblemsOverview/ProblemsOverviewSkeleton.d.ts b/dist/components/ProblemsOverview/ProblemsOverviewSkeleton.d.ts
deleted file mode 100644
index d68ef6cd..00000000
--- a/dist/components/ProblemsOverview/ProblemsOverviewSkeleton.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const ProblemsOverviewSkeleton: () => import("react/jsx-runtime").JSX.Element;
-export default ProblemsOverviewSkeleton;
diff --git a/dist/components/ProblemsOverview/index.d.ts b/dist/components/ProblemsOverview/index.d.ts
index a2d7eae4..7402365b 100644
--- a/dist/components/ProblemsOverview/index.d.ts
+++ b/dist/components/ProblemsOverview/index.d.ts
@@ -1,3 +1,3 @@
-import { default as LagoonProblemsOverview, LagoonProblemsOverviewProps } from './ProblemsOverview';
-export type { LagoonProblemsOverviewProps };
-export default LagoonProblemsOverview;
+import { default as ProblemsOverview } from './ProblemsOverview';
+export default ProblemsOverview;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/ProblemsOverview/index.d.ts.map b/dist/components/ProblemsOverview/index.d.ts.map
new file mode 100644
index 00000000..a952c998
--- /dev/null
+++ b/dist/components/ProblemsOverview/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ProblemsOverview/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEjE,eAAe,gBAAgB,CAAC"}
\ No newline at end of file
diff --git a/dist/components/ProblemsOverview/styles.d.ts b/dist/components/ProblemsOverview/styles.d.ts
deleted file mode 100644
index d4ef8ba5..00000000
--- a/dist/components/ProblemsOverview/styles.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-///
-export declare const StyledOverview: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
-export declare const StyledProblemsList: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLDivElement>, never>>;
diff --git a/dist/components/ProjectDetails/ProjectDetails.d.ts b/dist/components/ProjectDetails/ProjectDetails.d.ts
deleted file mode 100644
index 2c649f44..00000000
--- a/dist/components/ProjectDetails/ProjectDetails.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { FC } from 'react';
-export interface ProjectDetailsType {
- created: React.ReactNode;
- origin: React.ReactNode;
- gitUrl: React.ReactNode;
- devEnvsInUse: React.ReactNode;
- branchesEnabled: React.ReactNode;
- prsEnabled: React.ReactNode;
- deployKey: React.ReactNode;
-}
-declare const LagoonProjectDetails: FC;
-export default LagoonProjectDetails;
diff --git a/dist/components/ProjectDetails/index.d.ts b/dist/components/ProjectDetails/index.d.ts
deleted file mode 100644
index 2b55c7be..00000000
--- a/dist/components/ProjectDetails/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as LagoonProjectDetails, ProjectDetailsType } from './ProjectDetails';
-export type { ProjectDetailsType };
-export default LagoonProjectDetails;
diff --git a/dist/components/RootLayout/RootLayout.d.ts b/dist/components/RootLayout/RootLayout.d.ts
new file mode 100644
index 00000000..147c804c
--- /dev/null
+++ b/dist/components/RootLayout/RootLayout.d.ts
@@ -0,0 +1,11 @@
+import { ReactNode } from 'react';
+import { AppInfo, UserInfo } from '../sidenav/Sidenav';
+interface RootLayoutProps {
+ userInfo: UserInfo;
+ appInfo: AppInfo;
+ children: ReactNode;
+ signOutFn: () => Promise;
+}
+export default function RootLayout({ userInfo, appInfo, signOutFn, children }: RootLayoutProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=RootLayout.d.ts.map
\ No newline at end of file
diff --git a/dist/components/RootLayout/RootLayout.d.ts.map b/dist/components/RootLayout/RootLayout.d.ts.map
new file mode 100644
index 00000000..3fcfa2ea
--- /dev/null
+++ b/dist/components/RootLayout/RootLayout.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"RootLayout.d.ts","sourceRoot":"","sources":["../../../src/components/RootLayout/RootLayout.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIzC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAEvD,UAAU,eAAe;IACxB,QAAQ,EAAE,QAAQ,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC/B;AAMD,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,eAAe,+CAa7F"}
\ No newline at end of file
diff --git a/dist/components/RootLayout/index.d.ts b/dist/components/RootLayout/index.d.ts
new file mode 100644
index 00000000..22a2edc0
--- /dev/null
+++ b/dist/components/RootLayout/index.d.ts
@@ -0,0 +1,3 @@
+import { default as RootLayout } from './RootLayout';
+export default RootLayout;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/RootLayout/index.d.ts.map b/dist/components/RootLayout/index.d.ts.map
new file mode 100644
index 00000000..24b51cdf
--- /dev/null
+++ b/dist/components/RootLayout/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/RootLayout/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,eAAe,UAAU,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Select/Select.d.ts b/dist/components/Select/Select.d.ts
index 4ab7f2e3..dec0c8b7 100644
--- a/dist/components/Select/Select.d.ts
+++ b/dist/components/Select/Select.d.ts
@@ -1,9 +1,17 @@
-import React from 'react';
-import { RefSelectProps, SelectProps } from 'antd';
-type SelectedState = any;
-declare const UISelect: React.ForwardRefExoticComponent & {
- selectedState?: SelectedState;
- setSelectedState?: React.Dispatch | undefined;
-} & React.RefAttributes>;
-export type { SelectProps as UISelectProps };
-export default UISelect;
+import { Select } from '../ui/select';
+type Option = {
+ label: string;
+ value: string | number;
+};
+type OptionGroup = {
+ label: string;
+ options: Option[];
+};
+type SelectProps = Omit, 'disabled'> & {
+ placeholder: string;
+ options?: Option[] | OptionGroup[];
+ disabled?: boolean;
+};
+export default function SelectWithOptions({ placeholder, options, disabled, ...rest }: SelectProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Select.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Select/Select.d.ts.map b/dist/components/Select/Select.d.ts.map
new file mode 100644
index 00000000..20ee671c
--- /dev/null
+++ b/dist/components/Select/Select.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAmF,MAAM,cAAc,CAAC;AAEvH,KAAK,MAAM,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;AACxD,KAAK,WAAW,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;AAExD,KAAK,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,MAAM,CAAC,EAAE,UAAU,CAAC,GAAG;IAC1E,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,WAAW,EAAE,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAMF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,WAAW,+CA4BjG"}
\ No newline at end of file
diff --git a/dist/components/Select/index.d.ts b/dist/components/Select/index.d.ts
index 872a33d6..a3f17e2e 100644
--- a/dist/components/Select/index.d.ts
+++ b/dist/components/Select/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Select, UISelectProps as SelectProps } from './Select';
-export type { SelectProps };
-export default Select;
+import { default as SelectWithOptions } from './Select';
+export default SelectWithOptions;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Select/index.d.ts.map b/dist/components/Select/index.d.ts.map
new file mode 100644
index 00000000..f4829863
--- /dev/null
+++ b/dist/components/Select/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Select/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAExD,eAAe,iBAAiB,CAAC"}
\ No newline at end of file
diff --git a/dist/components/Sheet/Sheet.d.ts b/dist/components/Sheet/Sheet.d.ts
new file mode 100644
index 00000000..7d7f509b
--- /dev/null
+++ b/dist/components/Sheet/Sheet.d.ts
@@ -0,0 +1,17 @@
+import { default as React } from 'react';
+import { Sheet } from '../ui/sheet';
+type SheetProps = React.ComponentProps & {
+ sheetTitle?: string;
+ sheetTrigger?: string;
+ sheetDescription?: string;
+ sheetFooterButton?: string;
+ buttonAction?: React.MouseEventHandler;
+ sheetFields: {
+ id: string;
+ label: string;
+ inputDefault: string;
+ }[];
+};
+export default function UISheet({ sheetTrigger, sheetTitle, sheetDescription, sheetFooterButton, buttonAction, sheetFields, ...rest }: SheetProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Sheet.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Sheet/index.d.ts b/dist/components/Sheet/index.d.ts
new file mode 100644
index 00000000..3f3cad7f
--- /dev/null
+++ b/dist/components/Sheet/index.d.ts
@@ -0,0 +1,3 @@
+import { default as Sheet } from './Sheet';
+export default Sheet;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Skeleton/Skeleton.d.ts b/dist/components/Skeleton/Skeleton.d.ts
deleted file mode 100644
index 23677b27..00000000
--- a/dist/components/Skeleton/Skeleton.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { FC } from 'react';
-import { SkeletonProps } from 'react-loading-skeleton';
-declare const Skeleton: FC;
-export type { SkeletonProps };
-export default Skeleton;
diff --git a/dist/components/Skeleton/index.d.ts b/dist/components/Skeleton/index.d.ts
deleted file mode 100644
index b0eedaef..00000000
--- a/dist/components/Skeleton/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Skeleton, SkeletonProps } from './Skeleton';
-export type { SkeletonProps };
-export default Skeleton;
diff --git a/dist/components/Stat/Stat.d.ts b/dist/components/Stat/Stat.d.ts
deleted file mode 100644
index 5de54d74..00000000
--- a/dist/components/Stat/Stat.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import React, { ReactNode } from 'react';
-import { StatisticProps } from 'antd';
-type StatProps = Omit & {
- fullWidth?: boolean;
- value: ReactNode;
-};
-declare const UIStat: React.FC;
-export default UIStat;
-export type { StatProps as UIStatProps };
diff --git a/dist/components/Stat/index.d.ts b/dist/components/Stat/index.d.ts
deleted file mode 100644
index 2c662019..00000000
--- a/dist/components/Stat/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Stat, UIStatProps as StatProps } from './Stat';
-export type { StatProps };
-export default Stat;
diff --git a/dist/components/Stat/styles.d.ts b/dist/components/Stat/styles.d.ts
deleted file mode 100644
index 754ebd1f..00000000
--- a/dist/components/Stat/styles.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-///
-export declare const StyledStatistic: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, {
- $fullWidth?: boolean | undefined;
-}>>;
diff --git a/dist/components/StatCard/StatCard.d.ts b/dist/components/StatCard/StatCard.d.ts
new file mode 100644
index 00000000..9e7817b1
--- /dev/null
+++ b/dist/components/StatCard/StatCard.d.ts
@@ -0,0 +1,12 @@
+import { ReactNode } from 'react';
+type StatCardprops = {
+ title: string;
+ content: ReactNode;
+ type?: 'default' | 'withIcon' | 'stat';
+};
+export declare const cardVariants: (props?: ({
+ type?: "default" | "withIcon" | "stat" | null | undefined;
+} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
+export default function StatCard({ type, title, content }: StatCardprops): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=StatCard.d.ts.map
\ No newline at end of file
diff --git a/dist/components/StatCard/StatCard.d.ts.map b/dist/components/StatCard/StatCard.d.ts.map
new file mode 100644
index 00000000..a4f64d1c
--- /dev/null
+++ b/dist/components/StatCard/StatCard.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"StatCard.d.ts","sourceRoot":"","sources":["../../../src/components/StatCard/StatCard.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAKzC,KAAK,aAAa,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,SAAS,CAAC;IAAC,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,MAAM,CAAA;CAAE,CAAC;AAEnG,eAAO,MAAM,YAAY;;mFAWvB,CAAC;AAEH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,IAAgB,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,aAAa,+CAyBnF"}
\ No newline at end of file
diff --git a/dist/components/StatCard/index.d.ts b/dist/components/StatCard/index.d.ts
new file mode 100644
index 00000000..07fe372a
--- /dev/null
+++ b/dist/components/StatCard/index.d.ts
@@ -0,0 +1,3 @@
+import { default as StatCard } from './StatCard';
+export default StatCard;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/StatCard/index.d.ts.map b/dist/components/StatCard/index.d.ts.map
new file mode 100644
index 00000000..dcdc718c
--- /dev/null
+++ b/dist/components/StatCard/index.d.ts.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/StatCard/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAe,QAAQ,CAAC"}
\ No newline at end of file
diff --git a/dist/components/StatusTag/StatusTag.d.ts b/dist/components/StatusTag/StatusTag.d.ts
deleted file mode 100644
index 4eaae50e..00000000
--- a/dist/components/StatusTag/StatusTag.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import React from 'react';
-import { TagProps } from 'antd';
-export type UITagProps = Omit & ({
- type: 'running' | 'complete' | 'successful' | 'failed' | 'error' | 'queued' | 'new' | 'pending' | 'cancelled' | 'unavailable';
-} | {
- type: 'custom';
- color: string;
- icon: JSX.Element;
-});
-declare const StatusTag: React.ForwardRefExoticComponent>;
-export default StatusTag;
diff --git a/dist/components/StatusTag/index.d.ts b/dist/components/StatusTag/index.d.ts
deleted file mode 100644
index b55226d0..00000000
--- a/dist/components/StatusTag/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as StatusTag, UITagProps as TagProps } from './StatusTag';
-export type { TagProps };
-export default StatusTag;
diff --git a/dist/components/Steps/Steps.d.ts b/dist/components/Steps/Steps.d.ts
deleted file mode 100644
index c0c72154..00000000
--- a/dist/components/Steps/Steps.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { FC } from 'react';
-import { StepsProps } from 'antd';
-declare const UISteps: FC;
-export type { StepsProps as UIStepsProps };
-export default UISteps;
diff --git a/dist/components/Steps/index.d.ts b/dist/components/Steps/index.d.ts
deleted file mode 100644
index 8926f12c..00000000
--- a/dist/components/Steps/index.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { default as Steps, UIStepsProps as StepsProps } from './Steps';
-export type { StepsProps };
-export default Steps;
diff --git a/dist/components/Switch/Switch.d.ts b/dist/components/Switch/Switch.d.ts
index 5893e4d5..bbeb1e2d 100644
--- a/dist/components/Switch/Switch.d.ts
+++ b/dist/components/Switch/Switch.d.ts
@@ -1,7 +1,10 @@
-import React from 'react';
-import { SwitchProps } from 'antd';
-export interface UISwitchProps extends SwitchProps {
- showLabel?: boolean;
-}
-declare const UISwitch: React.ForwardRefExoticComponent>;
-export default UISwitch;
+import { default as React } from 'react';
+import { Switch } from '../ui/switch';
+type SwitchProps = React.ComponentProps & {
+ label: string;
+ description: string;
+ id: string;
+};
+export default function SwitchWithDescription({ id, label, description, ...rest }: SwitchProps): import("react/jsx-dev-runtime").JSX.Element;
+export {};
+//# sourceMappingURL=Switch.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Switch/index.d.ts b/dist/components/Switch/index.d.ts
index 3c82f6a6..7d4c7285 100644
--- a/dist/components/Switch/index.d.ts
+++ b/dist/components/Switch/index.d.ts
@@ -1,3 +1,3 @@
-import { default as Switch, UISwitchProps as SwitchProps } from './Switch';
-export type { SwitchProps };
+import { default as Switch } from './Switch';
export default Switch;
+//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/dist/components/Table/AllDeploymentsTable/AllDeploymentsSkeleton.d.ts b/dist/components/Table/AllDeploymentsTable/AllDeploymentsSkeleton.d.ts
deleted file mode 100644
index 066df688..00000000
--- a/dist/components/Table/AllDeploymentsTable/AllDeploymentsSkeleton.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const AllDeploymentsSkeleton: () => import("react/jsx-runtime").JSX.Element;
-export default AllDeploymentsSkeleton;
diff --git a/dist/components/Table/AllDeploymentsTable/AllDeploymentsTable.d.ts b/dist/components/Table/AllDeploymentsTable/AllDeploymentsTable.d.ts
deleted file mode 100644
index 2ca2af9f..00000000
--- a/dist/components/Table/AllDeploymentsTable/AllDeploymentsTable.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Deployment } from '../DeploymentsTable/DeploymentsTable';
-type SingleDeployment = Omit;
-export type AllDeploymentsProps = {
- deployments: SingleDeployment[];
- cancelDeployment: (deployment: SingleDeployment) => JSX.Element;
- skeleton?: false;
-};
-export type AllDeploymentsSkeleton = {
- skeleton: true;
-};
-export type AllDeploymentsTableProps = {
- resultsPerPage?: number;
- filterString?: string;
-} & (AllDeploymentsSkeleton | AllDeploymentsProps);
-declare const AllDeploymentsTable: (props: AllDeploymentsTableProps) => import("react/jsx-runtime").JSX.Element;
-export default AllDeploymentsTable;
diff --git a/dist/components/Table/BackupsTable/BackupsTable.d.ts b/dist/components/Table/BackupsTable/BackupsTable.d.ts
deleted file mode 100644
index 9560754b..00000000
--- a/dist/components/Table/BackupsTable/BackupsTable.d.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-type Backup = {
- id: number;
- source: string;
- backupId: string;
- created: string;
- restore: {
- id: number;
- status: 'pending' | 'failed' | 'successful';
- restoreLocation?: string | null;
- restoreSize?: number | null;
- } | null;
-};
-export type BackupsProps = {
- backups: Backup[];
- retrieveBackup: (backup: Backup, type: 'failed' | 'unavailable') => JSX.Element;
- skeleton?: false;
-};
-export type BackupsTableSkeleton = {
- skeleton: true;
-};
-export type BackupsTableProps = {
- resultsPerPage?: number;
- filterStatus?: 'pending' | 'failed' | 'successful';
- filterDateRange?: string[] | null;
-} & (BackupsTableSkeleton | BackupsProps);
-declare const BackupsTable: (props: BackupsTableProps) => import("react/jsx-runtime").JSX.Element;
-export default BackupsTable;
diff --git a/dist/components/Table/BackupsTable/BackupsTableSkeleton.d.ts b/dist/components/Table/BackupsTable/BackupsTableSkeleton.d.ts
deleted file mode 100644
index e2c4393b..00000000
--- a/dist/components/Table/BackupsTable/BackupsTableSkeleton.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const BackupsTableSkeleton: () => import("react/jsx-runtime").JSX.Element;
-export default BackupsTableSkeleton;
diff --git a/dist/components/Table/BackupsTable/styles.d.ts b/dist/components/Table/BackupsTable/styles.d.ts
deleted file mode 100644
index 583b5356..00000000
--- a/dist/components/Table/BackupsTable/styles.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-///
-export declare const StyledDownloadButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit & import("react").RefAttributes, never>> & Omit & import("react").RefAttributes>, keyof import("react").Component>;
diff --git a/dist/components/Table/Base.d.ts b/dist/components/Table/Base.d.ts
deleted file mode 100644
index bb21221e..00000000
--- a/dist/components/Table/Base.d.ts
+++ /dev/null
@@ -1,57 +0,0 @@
-import { TableProps } from 'antd';
-import React from 'react';
-import { SshTableProps } from './SshTable/SshTable';
-import { DeploymentsTableProps } from './DeploymentsTable/DeploymentsTable';
-import { BackupsTableProps } from './BackupsTable/BackupsTable';
-import { ProblemsTableProps } from './ProblemsTable/ProblemsTable';
-import { FactsTableProps } from './FactsTable/FactsTable';
-import { InsightsTableProps } from './InsightsTable/InsightsTable';
-import { TasksTableProps } from './TasksTable/TasksTable';
-import { ProjectsTableProps } from './ProjectsTable/ProjectsTable';
-import { EnvironmentsTableProps } from './EnvironmentsTable/EnvironmentsTable';
-import { AllDeploymentsTableProps } from './AllDeploymentsTable/AllDeploymentsTable';
-import { BulkDeploymentsTableProps } from './BulkDeployments/BulkDeploymentsTable';
-import { VariablesTableProps } from './VariablesTable/VariablesTable';
-import { DeploymenTableProps } from './DeploymentTable/DeploymentTable';
-import { TaskTableProps } from './TaskTable/TaskTable';
-import { OrganizationsTableProps } from './OrganizationsTable/OrganizationsTable';
-import { GroupsTableProps } from './Organizations/OrgGroupsTable/OrgGroupsTable';
-import { UsersProps } from './Organizations/OrgUsersTable/OrgUserstable';
-import { OrgProjectsProps } from './Organizations/OrgProjectsTable/OrgProjectsTable';
-import { NotificationsTableProps } from './Organizations/OrgNotificationsTable/OrgNotificationsTable';
-import { OwnersTableProps } from './Organizations/OrgAdminsTable/OrgAdminsTable';
-import { OrgUserGroupsTableProps } from './Organizations/OrgUserGroupsTable/OrgUserGroupsTable';
-export interface BaseTableWithComponents extends React.ForwardRefExoticComponent> {
- SshTable: React.FC;
- DeploymentsTable: React.FC;
- BackupsTable: React.FC;
- ProblemsTable: React.FC;
- FactsTable: React.FC;
- InsightsTable: React.FC;
- TasksTable: React.FC;
- TaskTable: React.FC;
- ProjectsTable: React.FC;
- EnvironmentsTable: React.FC;
- AllDeploymentsTable: React.FC;
- BulkDeploymentsTable: React.FC;
- VariablesTable: React.FC;
- DeploymentTable: React.FC;
- OrganizationsTable: React.FC;
- OrgGroupsTable: React.FC;
- OrgUsersTable: React.FC;
- OrgProjectsTable: React.FC;
- OrgNotificationsTable: React.FC