@kickstartds/ds-agency-premium 1.6.22 → 1.6.24
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/SectionProps-7a46a8ad.d.ts +1 -1
- package/dist/components/blog-head/blog-head.css +3 -3
- package/dist/components/blog-head/index.js +1 -1
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page-wrapper/index.js +59 -1134
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/tokens/IconSprite.js +59 -1134
- package/dist/tokens/icon-sprite.html +49 -268
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +21 -104
- package/package.json +2 -2
- /package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7a46a8ad.d.ts} +0 -0
- /package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-7a46a8ad.d.ts} +0 -0
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
- /package/dist/{PageProps-aa29c554.d.ts → PageProps-7a46a8ad.d.ts} +0 -0
|
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
|
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-cf82a16d.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-8e95ed81.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.js";
|
|
14
14
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
15
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
16
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
--dsa-blog-head--margin-bottom: var(--ks-spacing-stack-m);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.dsa-
|
|
11
|
+
.dsa-blog-head.c-post-head {
|
|
12
12
|
--c-post-head_date--font: var(--dsa-blog-head__date--font, var(--ks-font-interface-xs));
|
|
13
13
|
--c-post-head_date--font-weight: var(--dsa-blog-head__date--font-weight, var(--ks-font-weight-bold));
|
|
14
14
|
--c-post-head_date--color: var(--dsa-blog-head__date--color, var(--ks-text-color-interface));
|
|
15
15
|
}
|
|
16
|
-
.dsa-
|
|
16
|
+
.dsa-blog-head.c-post-head .dsa-headline__headline {
|
|
17
17
|
font: var(--dsa-blog-head__headline--font, var(--dsa-headline_h2--font, var(--ks-font-display-l)));
|
|
18
18
|
font-weight: var(--dsa-blog-head__headline--font-weight, var(--dsa-headline--font-weight, var(--ks-font-weight-medium)));
|
|
19
19
|
color: var(--dsa-blog-head__headline--color, var(--dsa-headline--color, var(--ks-text-color-display)));
|
|
20
20
|
}
|
|
21
|
-
.dsa-
|
|
21
|
+
.dsa-blog-head.c-post-head .c-post-head__image {
|
|
22
22
|
margin-bottom: var(--dsa-blog-head--margin-bottom, var(--ks-spacing-stack-m));
|
|
23
23
|
}
|
|
@@ -4,7 +4,7 @@ import { forwardRef, createContext, useContext } from 'react';
|
|
|
4
4
|
import { PostHead } from '@kickstartds/blog/lib/post-head';
|
|
5
5
|
|
|
6
6
|
const BlogHeadContextDefault = forwardRef(({ date, tags = [], headline, image, alt, ...rest }, ref) => {
|
|
7
|
-
return (jsx(PostHead, { ...rest, date: date, headline: { text: headline, level: "h1", align: "left" }, image: { src: image, alt: alt || headline }, categories: tags.map((tag) => {
|
|
7
|
+
return (jsx(PostHead, { ...rest, className: "dsa-blog-head", date: date, headline: { text: headline, level: "h1", align: "left" }, image: { src: image, alt: alt || headline }, categories: tags.map((tag) => {
|
|
8
8
|
return { label: tag.entry };
|
|
9
9
|
}), ref: ref }));
|
|
10
10
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-7a46a8ad.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export type { BlogOverviewProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-7a46a8ad.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
|
|
4
4
|
declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -29,7 +29,7 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
33
|
-
export * from "../../BlogOverviewProps-
|
|
34
|
-
export * from "../../PageProps-
|
|
32
|
+
export * from "../../BlogPostProps-7a46a8ad.js";
|
|
33
|
+
export * from "../../BlogOverviewProps-7a46a8ad.js";
|
|
34
|
+
export * from "../../PageProps-7a46a8ad.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|