@utrecht/component-library-react 1.0.0-alpha.187 → 1.0.0-alpha.188

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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2021 Robbert Broersma
4
+ */
5
+ import { HTMLAttributes } from 'react';
6
+ export declare type SpotlightSectionType = 'info' | 'warning';
7
+ export interface SpotlightSectionProps extends HTMLAttributes<HTMLDivElement> {
8
+ aside?: boolean;
9
+ type?: string | SpotlightSectionType;
10
+ }
11
+ export declare const SpotlightSection: import("react").ForwardRefExoticComponent<SpotlightSectionProps & {
12
+ children?: import("react").ReactNode;
13
+ } & import("react").RefAttributes<HTMLElement>>;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2021 Robbert Broersma
4
+ */
5
+ import { HTMLAttributes } from 'react';
6
+ export declare type SpotlightSectionType = 'info' | 'warning';
7
+ export interface SpotlightSectionProps extends HTMLAttributes<HTMLDivElement> {
8
+ aside?: boolean;
9
+ type?: string | SpotlightSectionType;
10
+ }
11
+ export declare const SpotlightSection: import("react").ForwardRefExoticComponent<SpotlightSectionProps & {
12
+ children?: import("react").ReactNode;
13
+ } & import("react").RefAttributes<HTMLElement>>;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2021 Robbert Broersma
4
+ */
5
+ import '../../../../components/spotlight-section/css/index.scss';
6
+ export * from '../SpotlightSection';
@@ -50,6 +50,7 @@ export { RadioButton } from './RadioButton';
50
50
  export { Select, SelectOption } from './Select';
51
51
  export { Separator } from './Separator';
52
52
  export { SkipLink } from './SkipLink';
53
+ export { SpotlightSection } from './SpotlightSection';
53
54
  export { Strong } from './Strong';
54
55
  export { Surface } from './Surface';
55
56
  export { Table } from './Table';
@@ -51,6 +51,7 @@ export { RadioButton } from './RadioButton';
51
51
  export { Select, SelectOption } from './Select';
52
52
  export { Separator } from './Separator';
53
53
  export { SkipLink } from './SkipLink';
54
+ export { SpotlightSection } from './SpotlightSection';
54
55
  export { Strong } from './Strong';
55
56
  export { Surface } from './Surface';
56
57
  export { Table } from './Table';