@npm_leadtech/legal-lib-components 2.1.15 → 2.2.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/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +3491 -0
- package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
- package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
- package/dist/cjs/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
- package/dist/cjs/src/components/organisms/AboutUsContent/index.d.ts +2 -0
- package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
- package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
- package/dist/cjs/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
- package/dist/cjs/src/components/sections/AboutUsSection/index.d.ts +2 -0
- package/dist/cjs/src/components/sections/index.d.ts +1 -0
- package/dist/cjs/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
- package/dist/cjs/src/utils/getRichTextSkeleton.d.ts +2 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +3491 -0
- package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
- package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
- package/dist/esm/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
- package/dist/esm/src/components/organisms/AboutUsContent/index.d.ts +2 -0
- package/dist/esm/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
- package/dist/esm/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
- package/dist/esm/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
- package/dist/esm/src/components/sections/AboutUsSection/index.d.ts +2 -0
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/esm/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
- package/dist/esm/src/utils/getRichTextSkeleton.d.ts +2 -0
- package/dist/index.d.ts +15 -1
- package/package.json +1 -1
package/dist/cjs/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts
ADDED
|
@@ -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;
|
package/dist/cjs/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts
ADDED
|
@@ -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;
|