@apolitical/component-library 1.3.0-beta.2 → 1.3.0

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/layout/index.d.ts CHANGED
@@ -1,4 +1 @@
1
- export * from './download-section';
2
- export * from './full-width';
3
- export * from './logos';
4
1
  export * from './page-layout';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apolitical/component-library",
3
- "version": "1.3.0-beta.2",
3
+ "version": "1.3.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface Props {
3
+ /** Additional classes */
4
+ className?: string;
5
+ children: React.ReactNode | JSX.Element;
6
+ }
7
+ declare const FullWidthSection: ({ children, className, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
8
+ export default FullWidthSection;
@@ -0,0 +1 @@
1
+ export { default as FullWidthSection } from './full-width-section';
@@ -0,0 +1,3 @@
1
+ export * from './download-section';
2
+ export * from './full-width-section';
3
+ export * from './logo-section';
@@ -0,0 +1 @@
1
+ export { default as LogoSection } from './logo-section';
@@ -20,5 +20,5 @@ interface Props {
20
20
  /** Additional classes */
21
21
  className?: string;
22
22
  }
23
- declare const Logos: ({ title: titleProps, logos, className }: Props) => import("react/jsx-runtime").JSX.Element | null;
24
- export default Logos;
23
+ declare const LogoSection: ({ title: titleProps, logos, className }: Props) => import("react/jsx-runtime").JSX.Element | null;
24
+ export default LogoSection;
@@ -1,3 +1,3 @@
1
- import type { LogosType } from './logos';
1
+ import type { LogosType } from './logo-section';
2
2
  declare const data: Array<LogosType>;
3
3
  export default data;