@moodlehq/design-system 2.1.0 → 2.1.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moodlehq/design-system",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "The Moodle Design System",
5
5
  "files": [
6
6
  "/dist",
@@ -1,14 +0,0 @@
1
- import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { default as React } from 'react';
3
- export interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
4
- variant?: string;
5
- dismissible?: boolean;
6
- heading?: React.ReactNode;
7
- showIcon?: boolean;
8
- icon?: IconProp;
9
- show?: boolean;
10
- defaultShow?: boolean;
11
- closeLabel?: string;
12
- onClose?: () => void;
13
- }
14
- export declare const Alert: React.FC<AlertProps>;
@@ -1,2 +0,0 @@
1
- export { Alert } from './Alert';
2
- export type { AlertProps } from './Alert';
@@ -1,7 +0,0 @@
1
- import { IconProp } from '@fortawesome/fontawesome-svg-core';
2
- import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome';
3
- import { default as React } from 'react';
4
- export interface IconProps extends Omit<FontAwesomeIconProps, 'icon'> {
5
- icon: IconProp;
6
- }
7
- export declare const Icon: React.FC<IconProps>;
@@ -1 +0,0 @@
1
- export * from './Icon';