@almadar/ui 5.24.0 → 5.25.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/avl/index.cjs +1906 -1336
- package/dist/avl/index.js +840 -270
- package/dist/components/core/molecules/PropertyInspector.d.ts +3 -2
- package/dist/components/core/molecules/index.d.ts +2 -2
- package/dist/components/core/organisms/index.d.ts +5 -5
- package/dist/components/core/templates/index.d.ts +1 -1
- package/dist/components/index.cjs +1395 -1391
- package/dist/components/index.js +492 -488
- package/dist/components/{core → marketing}/organisms/CaseStudyOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/FeatureGridOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/HeroOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/ShowcaseOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/StepFlowOrganism.d.ts +1 -1
- package/dist/marketing/index.d.ts +4 -4
- package/dist/providers/index.cjs +1729 -1159
- package/dist/providers/index.js +814 -244
- package/dist/runtime/index.cjs +1769 -1199
- package/dist/runtime/index.js +818 -248
- package/package.json +2 -2
- /package/dist/components/{core → marketing}/molecules/MarketingFooter.d.ts +0 -0
- /package/dist/components/{core → marketing}/molecules/PullQuote.d.ts +0 -0
- /package/dist/components/{core → marketing}/templates/AuthLayout.d.ts +0 -0
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import type { EntityWith } from '@almadar/core';
|
|
14
|
-
import type { DisplayStateProps } from '
|
|
14
|
+
import type { DisplayStateProps } from '../../core/organisms/types';
|
|
15
15
|
export interface CaseStudyOrganismProps extends DisplayStateProps {
|
|
16
16
|
entity?: EntityWith<'title'> | readonly EntityWith<'title'>[];
|
|
17
17
|
heading?: string;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import type { EntityWith } from '@almadar/core';
|
|
14
|
-
import type { DisplayStateProps } from '
|
|
14
|
+
import type { DisplayStateProps } from '../../core/organisms/types';
|
|
15
15
|
export interface FeatureGridOrganismProps extends DisplayStateProps {
|
|
16
16
|
entity?: EntityWith<'title'> | readonly EntityWith<'title'>[];
|
|
17
17
|
columns?: 2 | 3 | 4 | 6;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import type { EntityWith } from '@almadar/core';
|
|
14
|
-
import type { DisplayStateProps } from '
|
|
14
|
+
import type { DisplayStateProps } from '../../core/organisms/types';
|
|
15
15
|
export interface HeroOrganismProps extends DisplayStateProps {
|
|
16
16
|
entity?: EntityWith<'title'>;
|
|
17
17
|
children?: React.ReactNode;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import type { EntityWith } from '@almadar/core';
|
|
14
|
-
import type { DisplayStateProps } from '
|
|
14
|
+
import type { DisplayStateProps } from '../../core/organisms/types';
|
|
15
15
|
export interface ShowcaseOrganismProps extends DisplayStateProps {
|
|
16
16
|
entity?: EntityWith<'title'> | readonly EntityWith<'title'>[];
|
|
17
17
|
columns?: 2 | 3 | 4;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import type { EntityWith } from '@almadar/core';
|
|
13
|
-
import type { DisplayStateProps } from '
|
|
13
|
+
import type { DisplayStateProps } from '../../core/organisms/types';
|
|
14
14
|
export interface StepFlowOrganismProps extends DisplayStateProps {
|
|
15
15
|
entity?: EntityWith<'title'> | readonly EntityWith<'title'>[];
|
|
16
16
|
orientation?: 'horizontal' | 'vertical';
|
|
@@ -52,12 +52,12 @@ export type { CaseStudyCardProps } from '../components/marketing/molecules/CaseS
|
|
|
52
52
|
export { ArticleSection } from '../components/marketing/molecules/ArticleSection';
|
|
53
53
|
export type { ArticleSectionProps } from '../components/marketing/molecules/ArticleSection';
|
|
54
54
|
export { SimpleGrid } from '../components/core/molecules/SimpleGrid';
|
|
55
|
-
export { MarketingFooter } from '../components/
|
|
56
|
-
export type { MarketingFooterProps, FooterLinkColumn, FooterLinkItem } from '../components/
|
|
55
|
+
export { MarketingFooter } from '../components/marketing/molecules/MarketingFooter';
|
|
56
|
+
export type { MarketingFooterProps, FooterLinkColumn, FooterLinkItem } from '../components/marketing/molecules/MarketingFooter';
|
|
57
57
|
export { GradientDivider } from '../components/core/molecules/GradientDivider';
|
|
58
58
|
export type { GradientDividerProps } from '../components/core/molecules/GradientDivider';
|
|
59
|
-
export { PullQuote } from '../components/
|
|
60
|
-
export type { PullQuoteProps } from '../components/
|
|
59
|
+
export { PullQuote } from '../components/marketing/molecules/PullQuote';
|
|
60
|
+
export type { PullQuoteProps } from '../components/marketing/molecules/PullQuote';
|
|
61
61
|
export { AnimatedCounter } from '../components/core/molecules/AnimatedCounter';
|
|
62
62
|
export type { AnimatedCounterProps } from '../components/core/molecules/AnimatedCounter';
|
|
63
63
|
export { AnimatedReveal } from '../components/marketing/atoms/AnimatedReveal';
|