@cgi-learning-hub/ui 1.2.0-dev.1726157992 → 1.2.0-dev.1726218202

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/components/Alert/Alert.d.ts +0 -1
  2. package/dist/components/Alert/Alert.stories.d.ts +0 -1
  3. package/dist/components/DatePicker/DatePicker.d.ts +0 -1
  4. package/dist/components/DatePicker/DatePicker.stories.d.ts +0 -1
  5. package/dist/components/DefaultButton/DefaultButton.d.ts +0 -1
  6. package/dist/components/DefaultButton/DefaultButtonIcon.d.ts +0 -1
  7. package/dist/components/Dropzone/Dropzone.d.ts +0 -1
  8. package/dist/components/Dropzone/Dropzone.stories.d.ts +0 -1
  9. package/dist/components/EmptyState/EmptyState.d.ts +0 -1
  10. package/dist/components/EmptyState/EmptyState.stories.d.ts +0 -1
  11. package/dist/components/FileList/FileList.d.ts +0 -1
  12. package/dist/components/FileList/FileList.stories.d.ts +0 -1
  13. package/dist/components/IconButton.stories.d.ts +0 -1
  14. package/dist/components/Loader/Loader.d.ts +0 -1
  15. package/dist/components/Loader/Loader.stories.d.ts +0 -1
  16. package/dist/components/LoaderBackdrop/LoaderBackdrop.d.ts +0 -1
  17. package/dist/components/LoaderBackdrop/LoaderBackdrop.stories.d.ts +0 -1
  18. package/dist/components/PaperHeader/PaperHeader.d.ts +0 -1
  19. package/dist/components/PaperHeader/PaperHeader.stories.d.ts +0 -1
  20. package/dist/components/PasswordInput/PasswordInput.d.ts +0 -1
  21. package/dist/components/PasswordInput/PasswordInput.stories.d.ts +0 -1
  22. package/dist/components/PrimaryButton/PrimaryButton.d.ts +0 -1
  23. package/dist/components/PrimaryButton/PrimaryButton.stories.d.ts +0 -1
  24. package/dist/components/QueryError/QueryError.d.ts +0 -1
  25. package/dist/components/QueryError/helpers.d.ts +0 -1
  26. package/dist/components/SearchInput/SearchInput.d.ts +0 -1
  27. package/dist/components/SearchInput/SearchInput.stories.d.ts +0 -1
  28. package/dist/components/SecondaryButton/SecondaryButton.d.ts +0 -1
  29. package/dist/components/SecondaryButton/SecondaryButton.stories.d.ts +0 -1
  30. package/dist/components/TabList.stories.d.ts +0 -1
  31. package/dist/components/TextInput/TextInput.d.ts +0 -1
  32. package/dist/components/TextInput/TextInput.stories.d.ts +0 -1
  33. package/dist/hooks/lazySvgImport.d.ts +0 -1
  34. package/package.json +1 -1
@@ -1,5 +1,4 @@
1
1
  import { AlertProps as MUIAlertProps } from '@mui/material';
2
-
3
2
  type AlertProps = {
4
3
  title?: string;
5
4
  } & Omit<MUIAlertProps, "variant" | "color">;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,6 +1,5 @@
1
1
  import { DatePickerProps as MuiDatePickerProps } from '@mui/x-date-pickers/DatePicker';
2
2
  import { Dayjs } from 'dayjs';
3
-
4
3
  export type DatePickerProps = {
5
4
  adapterLocale?: string;
6
5
  } & MuiDatePickerProps<Dayjs>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,6 +1,5 @@
1
1
  import { LoadingButtonProps } from '@mui/lab/LoadingButton';
2
2
  import { DefaultButtonIconProps } from './DefaultButtonIcon';
3
-
4
3
  export interface DefaultButtonProps extends LoadingButtonProps {
5
4
  icon?: DefaultButtonIconProps;
6
5
  text?: string;
@@ -1,5 +1,4 @@
1
1
  import { SvgIconComponent } from '@mui/icons-material';
2
-
3
2
  export interface DefaultButtonIconProps {
4
3
  position: "left" | "right";
5
4
  Component?: SvgIconComponent;
@@ -1,5 +1,4 @@
1
1
  import { DropzoneProps as ReactDropzoneProps } from 'react-dropzone';
2
-
3
2
  export type DropzoneProps = {
4
3
  defaultLabel?: string;
5
4
  dragLabel?: string;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,6 +1,5 @@
1
1
  import { StackProps } from '@mui/material/Stack';
2
2
  import { TypographyProps } from '@mui/material/Typography';
3
-
4
3
  export type EmptyStateProps = {
5
4
  svgName: string;
6
5
  title: string;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { File } from './FileListItem';
2
-
3
2
  export interface FileListProps<T extends File> {
4
3
  files: T[];
5
4
  onDelete?: (file: T) => void;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,4 +1,3 @@
1
-
2
1
  export interface LoaderProps {
3
2
  }
4
3
  declare const Loader: React.FunctionComponent<LoaderProps>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,4 +1,3 @@
1
-
2
1
  export interface LoaderBackdropProps {
3
2
  }
4
3
  declare const LoaderBackdrop: React.FunctionComponent<LoaderBackdropProps>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -2,7 +2,6 @@ import { SvgIconComponent } from '@mui/icons-material';
2
2
  import { Color, SvgIconProps } from '@mui/material';
3
3
  import { StackProps } from '@mui/material/Stack';
4
4
  import { TypographyProps } from '@mui/material/Typography';
5
-
6
5
  export type PaperHeaderProps = {
7
6
  title: string;
8
7
  IconComponent?: SvgIconComponent;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,6 +1,5 @@
1
1
  import { default as React } from 'react';
2
2
  import { InputTextProps } from '../TextInput';
3
-
4
3
  export type PasswordInputProps = {} & Omit<InputTextProps, "variant" | "type">;
5
4
  declare const PasswordInput: React.FunctionComponent<PasswordInputProps>;
6
5
  export default PasswordInput;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { DefaultButtonProps } from '../DefaultButton';
2
-
3
2
  export interface PrimaryButtonProps extends Omit<DefaultButtonProps, "color"> {
4
3
  }
5
4
  declare const PrimaryButton: React.FunctionComponent<PrimaryButtonProps>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,6 +1,5 @@
1
1
  import { SerializedError } from '@reduxjs/toolkit';
2
2
  import { FetchBaseQueryError } from '@reduxjs/toolkit/query';
3
-
4
3
  export interface QueryErrorProps {
5
4
  error: FetchBaseQueryError | SerializedError | undefined;
6
5
  statusPrefix?: string;
@@ -1,5 +1,4 @@
1
1
  import { FetchBaseQueryError } from '@reduxjs/toolkit/query';
2
-
3
2
  /**
4
3
  * Type predicate to narrow an unknown error to `FetchBaseQueryError`
5
4
  */
@@ -1,5 +1,4 @@
1
1
  import { InputBaseProps } from '@mui/material/InputBase';
2
-
3
2
  export interface SearchInputProps extends InputBaseProps {
4
3
  }
5
4
  declare const SearchInput: React.FunctionComponent<SearchInputProps>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { DefaultButtonProps } from '../DefaultButton';
2
-
3
2
  export interface SecondaryButtonProps extends Omit<DefaultButtonProps, "color"> {
4
3
  }
5
4
  declare const SecondaryButton: React.FunctionComponent<SecondaryButtonProps>;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export default stories;
@@ -1,5 +1,4 @@
1
1
  import { TextFieldProps } from '@mui/material/TextField';
2
-
3
2
  export type InputTextProps = {} & TextFieldProps;
4
3
  declare const TextInput: React.FunctionComponent<InputTextProps>;
5
4
  export default TextInput;
@@ -1,5 +1,4 @@
1
1
  import { Meta, StoryFn } from '@storybook/react';
2
-
3
2
  declare const stories: Meta<StoryFn<any>>;
4
3
  export declare const Default: any;
5
4
  export declare const Standard: any;
@@ -1,5 +1,4 @@
1
1
  import { FC } from 'react';
2
-
3
2
  export declare const useLazySvgImport: (name: string) => {
4
3
  error: Error | undefined;
5
4
  loading: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgi-learning-hub/ui",
3
- "version": "1.2.0-dev.1726157992",
3
+ "version": "1.2.0-dev.1726218202",
4
4
  "private": false,
5
5
  "author": "CGI Learning-hub Team",
6
6
  "description": "@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features",