@reapit/elements 3.7.12 → 3.7.16

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 (28) hide show
  1. package/assets/infographic-icons/foundationsCustomerInfographic.svg +25 -0
  2. package/assets/infographic-icons/newCustomerInfographic.svg +49 -0
  3. package/assets/infographic-icons/propTechInfographic.svg +28 -0
  4. package/assets/infographic-icons/webDeveloperInfographic.svg +44 -0
  5. package/dist/cjs/components/form-layout/__styles__/index.d.ts +1 -0
  6. package/dist/cjs/components/form-layout/form-layout.d.ts +3 -1
  7. package/dist/cjs/components/icon/icons/index.d.ts +4 -0
  8. package/dist/cjs/components/icon/icons/infographic-icons/foundationsCustomerInfographic.d.ts +3 -0
  9. package/dist/cjs/components/icon/icons/infographic-icons/newCustomerInfographic.d.ts +3 -0
  10. package/dist/cjs/components/icon/icons/infographic-icons/propTechInfographic.d.ts +3 -0
  11. package/dist/cjs/components/icon/icons/infographic-icons/webDeveloperInfographic.d.ts +3 -0
  12. package/dist/cjs/components/typography/__styles__/index.d.ts +1 -0
  13. package/dist/cjs/components/typography/typography.d.ts +1 -0
  14. package/dist/cjs/index.js +1 -1
  15. package/dist/cjs/index.js.map +1 -1
  16. package/dist/esm/components/form-layout/__styles__/index.d.ts +1 -0
  17. package/dist/esm/components/form-layout/form-layout.d.ts +3 -1
  18. package/dist/esm/components/icon/icons/index.d.ts +4 -0
  19. package/dist/esm/components/icon/icons/infographic-icons/foundationsCustomerInfographic.d.ts +3 -0
  20. package/dist/esm/components/icon/icons/infographic-icons/newCustomerInfographic.d.ts +3 -0
  21. package/dist/esm/components/icon/icons/infographic-icons/propTechInfographic.d.ts +3 -0
  22. package/dist/esm/components/icon/icons/infographic-icons/webDeveloperInfographic.d.ts +3 -0
  23. package/dist/esm/components/typography/__styles__/index.d.ts +1 -0
  24. package/dist/esm/components/typography/typography.d.ts +1 -0
  25. package/dist/esm/index.js +2 -2
  26. package/dist/esm/index.js.map +1 -1
  27. package/dist/index.css +61 -59
  28. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ export declare const elFormLayoutHasMargin: import("@linaria/core").LinariaClassName;
2
3
  export declare const ElFormLayout: import("@linaria/core").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
3
4
  as?: import("react").ElementType<any> | undefined;
4
5
  }>;
@@ -1,5 +1,7 @@
1
1
  import React, { FC, HTMLAttributes } from 'react';
2
- export declare type FormLayoutProps = HTMLAttributes<HTMLDivElement>;
2
+ export declare type FormLayoutProps = HTMLAttributes<HTMLDivElement> & {
3
+ hasMargin?: boolean;
4
+ };
3
5
  export declare const FormLayout: FC<FormLayoutProps>;
4
6
  export declare const InputWrap: React.ForwardRefExoticComponent<FormLayoutProps & React.RefAttributes<HTMLDivElement>>;
5
7
  export declare const InputWrapMed: FC<FormLayoutProps>;
@@ -126,4 +126,8 @@ export declare const iconSet: {
126
126
  userHouseInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
127
127
  userInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
128
128
  userAuthInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
129
+ foundationsCustomerInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
130
+ newCustomerInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
131
+ propTechInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
132
+ webDeveloperInfographic: import("react").MemoExoticComponent<() => JSX.Element>;
129
133
  };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<() => JSX.Element>;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<() => JSX.Element>;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<() => JSX.Element>;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<() => JSX.Element>;
3
+ export default _default;
@@ -5,6 +5,7 @@ export declare const elHasRegularText: import("@linaria/core").LinariaClassName;
5
5
  export declare const elHasBoldText: import("@linaria/core").LinariaClassName;
6
6
  export declare const elHasItalicText: import("@linaria/core").LinariaClassName;
7
7
  export declare const elHasCenteredText: import("@linaria/core").LinariaClassName;
8
+ export declare const elHasSectionMargin: import("@linaria/core").LinariaClassName;
8
9
  export declare const ElTitle: import("@linaria/core").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLHeadingElement> & import("react").HTMLAttributes<HTMLHeadingElement> & {
9
10
  as?: import("react").ElementType<any> | undefined;
10
11
  }>;
@@ -2,6 +2,7 @@ import { FC, HTMLAttributes } from 'react';
2
2
  export interface TypographyProps extends HTMLAttributes<HTMLElement> {
3
3
  hasGreyText?: boolean;
4
4
  hasNoMargin?: boolean;
5
+ hasSectionMargin?: boolean;
5
6
  hasBoldText?: boolean;
6
7
  hasItalicText?: boolean;
7
8
  hasCenteredText?: boolean;