@treely/strapi-slices 8.0.3 → 8.1.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/components/CertificationBadge/CertificationBadge.d.ts +7 -0
- package/dist/components/CertificationBadge/CertificationBadge.d.ts.map +1 -0
- package/dist/components/CertificationBadge/index.d.ts +3 -0
- package/dist/components/CertificationBadge/index.d.ts.map +1 -0
- package/dist/components/CertificationBadge/messages.de.d.ts +6 -0
- package/dist/components/CertificationBadge/messages.de.d.ts.map +1 -0
- package/dist/components/CertificationBadge/messages.en.d.ts +6 -0
- package/dist/components/CertificationBadge/messages.en.d.ts.map +1 -0
- package/dist/components/ContextProvider/ContextProvider.d.ts +3 -0
- package/dist/components/ContextProvider/ContextProvider.d.ts.map +1 -1
- package/dist/components/CreditsAvailableBadge/CreditsAvailableBadge.d.ts +2 -1
- package/dist/components/CreditsAvailableBadge/CreditsAvailableBadge.d.ts.map +1 -1
- package/dist/components/ProjectGridCard/ProjectGridCard.d.ts.map +1 -1
- package/dist/components/ProjectGridCardV2/ProjectGridCardV2.d.ts +7 -0
- package/dist/components/ProjectGridCardV2/ProjectGridCardV2.d.ts.map +1 -0
- package/dist/components/ProjectGridCardV2/index.d.ts +3 -0
- package/dist/components/ProjectGridCardV2/index.d.ts.map +1 -0
- package/dist/components/SliceRenderer/SliceRenderer.d.ts +4 -1
- package/dist/components/SliceRenderer/SliceRenderer.d.ts.map +1 -1
- package/dist/index.cjs +1446 -1183
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1362 -1099
- package/dist/index.js.map +4 -4
- package/dist/rootMessages.de.d.ts +2 -2
- package/dist/rootMessages.en.d.ts +2 -2
- package/dist/slices/Facts/Facts.d.ts.map +1 -1
- package/dist/slices/HeroWithHighlights/HeroWithHighlights.d.ts +17 -0
- package/dist/slices/HeroWithHighlights/HeroWithHighlights.d.ts.map +1 -0
- package/dist/slices/HeroWithHighlights/index.d.ts +3 -0
- package/dist/slices/HeroWithHighlights/index.d.ts.map +1 -0
- package/dist/slices/ProjectsGridV2/ProjectsGridV2.d.ts +13 -0
- package/dist/slices/ProjectsGridV2/ProjectsGridV2.d.ts.map +1 -0
- package/dist/slices/ProjectsGridV2/index.d.ts +3 -0
- package/dist/slices/ProjectsGridV2/index.d.ts.map +1 -0
- package/dist/utils/getMessages.d.ts +4 -4
- package/package.json +1 -1
- package/dist/components/ProjectGridCard/messages.de.d.ts +0 -6
- package/dist/components/ProjectGridCard/messages.de.d.ts.map +0 -1
- package/dist/components/ProjectGridCard/messages.en.d.ts +0 -6
- package/dist/components/ProjectGridCard/messages.en.d.ts.map +0 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface CertificationBadgeProps {
|
|
2
|
+
certificationDate?: string | Date;
|
|
3
|
+
variant?: 'default' | 'withIcon';
|
|
4
|
+
}
|
|
5
|
+
declare const CertificationBadge: ({ certificationDate, variant, }: CertificationBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default CertificationBadge;
|
|
7
|
+
//# sourceMappingURL=CertificationBadge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CertificationBadge.d.ts","sourceRoot":"","sources":["../../../src/components/CertificationBadge/CertificationBadge.tsx"],"names":[],"mappings":"AAKA,MAAM,WAAW,uBAAuB;IACtC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;CAClC;AAED,QAAA,MAAM,kBAAkB,GAAI,iCAGzB,uBAAuB,4CA8CzB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/CertificationBadge/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,sBAAsB,CAAC;AAEtD,eAAe,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.de.d.ts","sourceRoot":"","sources":["../../../src/components/CertificationBadge/messages.de.ts"],"names":[],"mappings":";;;;AAAA,wBAIE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.en.d.ts","sourceRoot":"","sources":["../../../src/components/CertificationBadge/messages.en.ts"],"names":[],"mappings":";;;;AAAA,wBAIE"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import FontsCustomization from '../../constants/fontCustomizations';
|
|
2
3
|
export type AnalyticsFunction = ({ type, props, }: {
|
|
3
4
|
type: 'track' | 'page';
|
|
4
5
|
props?: Record<string, any>;
|
|
@@ -9,6 +10,8 @@ export interface ContextProviderProps {
|
|
|
9
10
|
children: React.ReactNode;
|
|
10
11
|
locale: string;
|
|
11
12
|
analyticsFunction?: AnalyticsFunction;
|
|
13
|
+
colors?: Record<string, any>;
|
|
14
|
+
fonts?: FontsCustomization;
|
|
12
15
|
}
|
|
13
16
|
export declare const ContextProvider: React.FC<ContextProviderProps>;
|
|
14
17
|
//# sourceMappingURL=ContextProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContextProvider.d.ts","sourceRoot":"","sources":["../../../src/components/ContextProvider/ContextProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAwB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ContextProvider.d.ts","sourceRoot":"","sources":["../../../src/components/ContextProvider/ContextProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAwB,MAAM,OAAO,CAAC;AAK7C,OAAO,kBAEN,MAAM,oCAAoC,CAAC;AAK5C,MAAM,MAAM,iBAAiB,GAAG,CAAC,EAC/B,IAAI,EACJ,KAAK,GACN,EAAE;IACD,IAAI,EAAE,OAAO,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC7B,KAAK,IAAI,CAAC;AAEX,eAAO,MAAM,gBAAgB,8CAE5B,CAAC;AAaF,eAAO,MAAM,WAAW,+CAAmC,CAAC;AAE5D,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,KAAK,CAAC,EAAE,kBAAkB,CAAC;CAC5B;AAED,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA6C1D,CAAC"}
|
|
@@ -2,7 +2,8 @@ import { CreditAvailability } from '../../models/fpm/FPMProject';
|
|
|
2
2
|
export interface CreditsAvailableBadgeProps {
|
|
3
3
|
status: CreditAvailability;
|
|
4
4
|
href?: string;
|
|
5
|
+
variant?: 'default' | 'withIcon';
|
|
5
6
|
}
|
|
6
|
-
declare const CreditsAvailableBadge: ({ status, href, }: CreditsAvailableBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const CreditsAvailableBadge: ({ status, href, variant, }: CreditsAvailableBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default CreditsAvailableBadge;
|
|
8
9
|
//# sourceMappingURL=CreditsAvailableBadge.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreditsAvailableBadge.d.ts","sourceRoot":"","sources":["../../../src/components/CreditsAvailableBadge/CreditsAvailableBadge.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CreditsAvailableBadge.d.ts","sourceRoot":"","sources":["../../../src/components/CreditsAvailableBadge/CreditsAvailableBadge.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAEjE,MAAM,WAAW,0BAA0B;IACzC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;CAClC;AAED,QAAA,MAAM,qBAAqB,GAAI,4BAI5B,0BAA0B,4CAuE5B,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProjectGridCard.d.ts","sourceRoot":"","sources":["../../../src/components/ProjectGridCard/ProjectGridCard.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"ProjectGridCard.d.ts","sourceRoot":"","sources":["../../../src/components/ProjectGridCard/ProjectGridCard.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAO7D,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,gBAAgB,CAAC;CAC3B;AAED,eAAO,MAAM,eAAe,GAAI,cAE7B,oBAAoB,KAAG,KAAK,CAAC,GAAG,CAAC,OA0CnC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PortfolioProject from '../../models/PortfolioProject';
|
|
3
|
+
export interface ProjectGridCardV2Props {
|
|
4
|
+
project: PortfolioProject;
|
|
5
|
+
}
|
|
6
|
+
export declare const ProjectGridCardV2: ({ project, }: ProjectGridCardV2Props) => React.JSX.Element;
|
|
7
|
+
//# sourceMappingURL=ProjectGridCardV2.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProjectGridCardV2.d.ts","sourceRoot":"","sources":["../../../src/components/ProjectGridCardV2/ProjectGridCardV2.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAQ7D,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE,gBAAgB,CAAC;CAC3B;AAED,eAAO,MAAM,iBAAiB,GAAI,cAE/B,sBAAsB,KAAG,KAAK,CAAC,GAAG,CAAC,OAgFrC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ProjectGridCardV2/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,eAAe,iBAAiB,CAAC"}
|
|
@@ -5,6 +5,7 @@ import PortfolioProject from '../../models/PortfolioProject';
|
|
|
5
5
|
import StrapiCustomerStory from '../../models/strapi/StrapiCustomerStory';
|
|
6
6
|
import Locale from '../../models/Locale';
|
|
7
7
|
import { AnalyticsFunction } from '../ContextProvider/ContextProvider';
|
|
8
|
+
import FontsCustomization from '../../constants/fontCustomizations';
|
|
8
9
|
export interface CustomSliceProps {
|
|
9
10
|
slice: any;
|
|
10
11
|
id: string;
|
|
@@ -15,8 +16,10 @@ export interface SliceRendererProps {
|
|
|
15
16
|
projects: PortfolioProject[];
|
|
16
17
|
customerStories: IStrapiData<StrapiCustomerStory>[];
|
|
17
18
|
locale?: Locale;
|
|
19
|
+
colors?: Record<string, any>;
|
|
20
|
+
fonts?: FontsCustomization;
|
|
18
21
|
CustomSlice?: ({ slice, id }: CustomSliceProps) => React.JSX.Element;
|
|
19
22
|
analyticsFunction?: AnalyticsFunction;
|
|
20
23
|
}
|
|
21
|
-
export declare const SliceRenderer: ({ slices, blogPosts, projects, customerStories, locale, CustomSlice, analyticsFunction, }: SliceRendererProps) => React.JSX.Element;
|
|
24
|
+
export declare const SliceRenderer: ({ slices, blogPosts, projects, customerStories, locale, colors, fonts, CustomSlice, analyticsFunction, }: SliceRendererProps) => React.JSX.Element;
|
|
22
25
|
//# sourceMappingURL=SliceRenderer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SliceRenderer.d.ts","sourceRoot":"","sources":["../../../src/components/SliceRenderer/SliceRenderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAoB1B,OAAO,cAAc,MAAM,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"SliceRenderer.d.ts","sourceRoot":"","sources":["../../../src/components/SliceRenderer/SliceRenderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAoB1B,OAAO,cAAc,MAAM,oCAAoC,CAAC;AAQhE,OAAO,WAAW,MAAM,iCAAiC,CAAC;AAO1D,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAG7D,OAAO,mBAAmB,MAAM,yCAAyC,CAAC;AAG1E,OAAO,MAAM,MAAM,qBAAqB,CAAC;AAMzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,kBAAkB,MAAM,oCAAoC,CAAC;AAEpE,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,GAAG,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,GAAG,CAAC;IACZ,SAAS,EAAE,WAAW,CAAC,cAAc,CAAC,EAAE,CAAC;IACzC,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAC7B,eAAe,EAAE,WAAW,CAAC,mBAAmB,CAAC,EAAE,CAAC;IACpD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,KAAK,CAAC,EAAE,kBAAkB,CAAC;IAC3B,WAAW,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,gBAAgB,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;IACrE,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;CACvC;AAED,eAAO,MAAM,aAAa,GAAI,0GAU3B,kBAAkB,KAAG,KAAK,CAAC,GAAG,CAAC,OAoSjC,CAAC"}
|