@npm_leadtech/legal-lib-components 2.1.15 → 2.2.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.
Files changed (30) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/legal-lib-components.css +3491 -0
  4. package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
  5. package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
  6. package/dist/cjs/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
  7. package/dist/cjs/src/components/organisms/AboutUsContent/index.d.ts +2 -0
  8. package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
  9. package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
  10. package/dist/cjs/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
  11. package/dist/cjs/src/components/sections/AboutUsSection/index.d.ts +2 -0
  12. package/dist/cjs/src/components/sections/index.d.ts +1 -0
  13. package/dist/cjs/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
  14. package/dist/cjs/src/utils/getRichTextSkeleton.d.ts +2 -0
  15. package/dist/esm/index.js +2 -2
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/legal-lib-components.css +3491 -0
  18. package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
  19. package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
  20. package/dist/esm/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
  21. package/dist/esm/src/components/organisms/AboutUsContent/index.d.ts +2 -0
  22. package/dist/esm/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
  23. package/dist/esm/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
  24. package/dist/esm/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
  25. package/dist/esm/src/components/sections/AboutUsSection/index.d.ts +2 -0
  26. package/dist/esm/src/components/sections/index.d.ts +1 -0
  27. package/dist/esm/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
  28. package/dist/esm/src/utils/getRichTextSkeleton.d.ts +2 -0
  29. package/dist/index.d.ts +15 -1
  30. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import { type AboutUsContentProps } from './AboutUsContentProps.types';
3
+ import './AboutUsContent.scss';
4
+ declare const AboutUsContent: FC<AboutUsContentProps>;
5
+ export default AboutUsContent;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { type ButtonProps } from '../../atoms';
3
+ export interface AboutUsContentProps {
4
+ children: React.ReactNode;
5
+ image: React.ReactNode;
6
+ button?: ButtonProps;
7
+ }
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import AboutUsContent from '../AboutUsContent';
3
+ declare const meta: Meta<typeof AboutUsContent>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof AboutUsContent>;
6
+ export declare const Default: Story;
7
+ export declare const WithoutButtom: Story;
@@ -0,0 +1,2 @@
1
+ export { default as AboutUsContent } from './AboutUsContent';
2
+ export { type AboutUsContentProps } from './AboutUsContentProps.types';
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import { type AboutUsSectionProps } from './AboutUsSectionProps.types';
3
+ import './AboutUsSection.scss';
4
+ declare const AboutUsSection: FC<AboutUsSectionProps>;
5
+ export default AboutUsSection;
@@ -0,0 +1,6 @@
1
+ import { type AboutUsContentProps } from '../../organisms/AboutUsContent';
2
+ export interface AboutUsSectionProps {
3
+ title: string;
4
+ subTitle?: string;
5
+ contentAboutUs: AboutUsContentProps;
6
+ }
@@ -0,0 +1,8 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import AboutUsSection from '../AboutUsSection';
3
+ declare const meta: Meta<typeof AboutUsSection>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof AboutUsSection>;
6
+ export declare const Default: Story;
7
+ export declare const WithoutButtom: Story;
8
+ export declare const WithoutSubTitle: Story;
@@ -0,0 +1,2 @@
1
+ export { default as AboutUsSection } from './AboutUsSection';
2
+ export { type AboutUsSectionProps } from './AboutUsSectionProps.types';
@@ -1,2 +1,3 @@
1
1
  export * from './HowGetYourFormsSection';
2
2
  export * from './BlogSection';
3
+ export * from './AboutUsSection';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const getGatsbyImageSkeleton: (src: string) => React.ReactNode;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const getRichTextSkeleton: (children: React.ReactNode) => React.ReactNode;
package/dist/index.d.ts CHANGED
@@ -616,4 +616,18 @@ interface BlogSectionProps {
616
616
 
617
617
  declare const BlogSection: FC<BlogSectionProps>;
618
618
 
619
- export { AddButton, AddButtonProps, Article, ArticleProps, ArticlesList, ArticlesListProps, BaseBox, BaseBoxList, BaseBoxListProps, BaseBoxProps, BillCard, BillCardProps, BlogSection, BlogSectionProps, BottomFixedBar, BottomFixedBarProps, BottomOverlay, BottomOverlayProps, BoxForm, BoxFormProps, BreadcrumItem, BreadcrumItemProps, Breadcrumb, BreadcrumbProps, Button, ButtonIcon, ButtonIconProps, ButtonProps, CardPane, CardPaneInfoProps, CardPaneProps, Checkbox, CheckboxProps, ContactBox, ContactBoxProps, DatePickerCustom, DatePickerCustomProps, DialogMenuIcon, DialogMenuIconProps, Disclaimer, DisclaimerProps, Divider, DividerProps, DocumentStatus, DocumentStatusProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, LogoText, LogoTextProps, MenuItemProps, MenuItems, MenuItemsSection, MenuItemsSectionProps, Message, MessageProps, MobileBottomBar, MobileBottomBarProps, Pagination, PaginationProps, PaypalButton, PaypalButtonProps, PricingCard, PricingCardProps, ProgressBar, ProgressBarProps, Radio, RadioProps, RemoveButton, RemoveButtonProps, RichTextInner, RichTextInnerProps, SearchSelect, SearchSelectProps, SideMenuTabProps, SidemenuTab, Snackbar, SnackbarProps, Spinner, SpinnerProps, StepGetForm, StepGetFormProps, TextArea, TextAreaProps, TextInput, TextInputProps, Toggle, ToggleProps, Tooltip, TooltipMenu, TooltipMenuProps, TooltipProps, TopBar, TopBarProps };
619
+ interface AboutUsContentProps {
620
+ children: React.ReactNode;
621
+ image: React.ReactNode;
622
+ button?: ButtonProps;
623
+ }
624
+
625
+ interface AboutUsSectionProps {
626
+ title: string;
627
+ subTitle?: string;
628
+ contentAboutUs: AboutUsContentProps;
629
+ }
630
+
631
+ declare const AboutUsSection: FC<AboutUsSectionProps>;
632
+
633
+ export { AboutUsSection, AboutUsSectionProps, AddButton, AddButtonProps, Article, ArticleProps, ArticlesList, ArticlesListProps, BaseBox, BaseBoxList, BaseBoxListProps, BaseBoxProps, BillCard, BillCardProps, BlogSection, BlogSectionProps, BottomFixedBar, BottomFixedBarProps, BottomOverlay, BottomOverlayProps, BoxForm, BoxFormProps, BreadcrumItem, BreadcrumItemProps, Breadcrumb, BreadcrumbProps, Button, ButtonIcon, ButtonIconProps, ButtonProps, CardPane, CardPaneInfoProps, CardPaneProps, Checkbox, CheckboxProps, ContactBox, ContactBoxProps, DatePickerCustom, DatePickerCustomProps, DialogMenuIcon, DialogMenuIconProps, Disclaimer, DisclaimerProps, Divider, DividerProps, DocumentStatus, DocumentStatusProps, Feedback, FeedbackProps, FormFaq, FormFaqProps, GoogleButton, GoogleButtonProps, HowGetYourFormsSection, HowGetYourFormsSectionProps, IconImage, IconImageProps, InfoBox, InfoBoxProps, ListStepsGetForm, ListStepsGetFormProps, LogoText, LogoTextProps, MenuItemProps, MenuItems, MenuItemsSection, MenuItemsSectionProps, Message, MessageProps, MobileBottomBar, MobileBottomBarProps, Pagination, PaginationProps, PaypalButton, PaypalButtonProps, PricingCard, PricingCardProps, ProgressBar, ProgressBarProps, Radio, RadioProps, RemoveButton, RemoveButtonProps, RichTextInner, RichTextInnerProps, SearchSelect, SearchSelectProps, SideMenuTabProps, SidemenuTab, Snackbar, SnackbarProps, Spinner, SpinnerProps, StepGetForm, StepGetFormProps, TextArea, TextAreaProps, TextInput, TextInputProps, Toggle, ToggleProps, Tooltip, TooltipMenu, TooltipMenuProps, TooltipProps, TopBar, TopBarProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "2.1.15",
3
+ "version": "2.2.1",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^5.16.5",
6
6
  "@tippyjs/react": "4.2.6",