@pnx-mixtape/mxds 0.0.7 → 0.0.9
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/package.json +2 -2
- package/src/Atom/Button/button.twig +1 -1
- package/src/Atom/Image/image.twig +3 -3
- package/src/Atom/Link/link.twig +1 -1
- package/src/Atom/Media/media.twig +2 -2
- package/src/Atom/Video/video.twig +1 -1
- package/src/Component/Accordion/accordion-item.twig +1 -1
- package/src/Component/Accordion/accordion.twig +1 -1
- package/src/Component/Card/Card.stories.ts +26 -14
- package/src/Component/Card/Card.tsx +7 -7
- package/src/Component/Card/__snapshots__/Card.stories.ts.snap +19 -13
- package/src/Component/Card/__snapshots__/Card.stories.tsx.snap +5 -5
- package/src/Component/Card/card.css +3 -3
- package/src/Component/Card/card.twig +5 -5
- package/src/Component/ContentBlock/ContentBlock.tsx +1 -1
- package/src/Component/ContentBlock/__snapshots__/ContentBlock.stories.ts.snap +9 -45
- package/src/Component/ContentBlock/__snapshots__/ContentBlock.stories.tsx.snap +1 -1
- package/src/Component/ContentBlock/content-block.twig +2 -2
- package/src/Component/DropMenu/drop-menu.twig +1 -1
- package/src/Component/GlobalAlert/__snapshots__/GlobalAlert.stories.ts.snap +1 -3
- package/src/Component/GlobalAlert/global-alert.twig +3 -3
- package/src/Component/HeroBanner/HeroBanner.stories.ts +25 -11
- package/src/Component/HeroBanner/__snapshots__/HeroBanner.stories.ts.snap +18 -12
- package/src/Component/HeroBanner/hero-banner.twig +3 -3
- package/src/Component/LinkList/LinkList.stories.ts +20 -6
- package/src/Component/LinkList/__snapshots__/LinkList.stories.ts.snap +18 -12
- package/src/Component/LinkList/link-list.css +7 -35
- package/src/Component/LinkList/link-list.twig +1 -5
- package/src/Component/ListItem/__snapshots__/ListItem.stories.ts.snap +1 -1
- package/src/Component/ListItem/list-item.css +1 -1
- package/src/Component/ListItem/list-item.twig +4 -4
- package/src/Component/Navigation/menu.twig +4 -4
- package/src/Component/Navigation/navigation.twig +1 -1
- package/src/Component/Pagination/pagination-item.twig +1 -1
- package/src/Component/Pagination/pagination.twig +2 -2
- package/src/Component/SideNavigation/side-navigation.twig +4 -4
- package/src/Component/Tabs/tabs.twig +1 -1
- package/src/Component/Tag/tag.css +4 -0
- package/src/Form/Checkbox/input-checkbox.twig +1 -1
- package/src/Form/Form/form.twig +2 -2
- package/src/Form/FormItem/form-item.twig +1 -1
- package/src/Form/Select/input-select.twig +1 -1
- package/src/Form/TextInput/input-text.twig +1 -1
- package/src/Form/Textarea/input-textarea.twig +1 -1
- package/src/Layout/Footer/Footer.stories.ts +1 -2
- package/src/Layout/Footer/__snapshots__/Footer.stories.ts.snap +20 -40
- package/src/Layout/Footer/footer.twig +3 -3
- package/src/Layout/Header/Header.stories.ts +0 -1
- package/src/Layout/Header/__snapshots__/Header.stories.ts.snap +5 -5
- package/src/Layout/Header/header-stacked.twig +13 -11
- package/src/Layout/Header/header.twig +12 -10
- package/src/Layout/Header/twig/logo.twig +1 -3
- package/src/Layout/Masthead/Masthead.stories.ts +10 -0
- package/src/Layout/Masthead/__snapshots__/Masthead.stories.ts.snap +51 -3
- package/src/Layout/Masthead/masthead.css +23 -0
- package/src/Layout/Masthead/masthead.twig +9 -5
- package/src/Layout/Section/section.twig +1 -1
- package/src/Layout/Sidebar/sidebar.twig +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnx-mixtape/mxds",
|
|
3
3
|
"description": "The Mixtape Design System",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "concurrently -k -n \"VITE,STORYBOOK\" -c \"#636cff,#ff4785\" \"npm run dev-vite\" \"npm run dev-storybook\"",
|
|
7
7
|
"build": "concurrently -n \"VITE,STORYBOOK\" -c \"#636cff,#ff4785\" \"npm run build-vite\" \"npm run build-storybook\"",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@floating-ui/dom": "^1.6.5",
|
|
34
34
|
"@oddbird/popover-polyfill": "^0.4.3",
|
|
35
|
-
"@pnx-mixtape/ids-shape": "^0.0.
|
|
35
|
+
"@pnx-mixtape/ids-shape": "^0.0.16",
|
|
36
36
|
"classnames": "^2.5.1",
|
|
37
37
|
"js-cookie": "^3.0.5",
|
|
38
38
|
"react": "^18.3.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
{% endfor %}
|
|
9
9
|
{% set attributes = (attributes ?? create_attribute()).addClass(classes) %}
|
|
10
10
|
|
|
11
|
-
{% if href %}
|
|
11
|
+
{% if href is not empty %}
|
|
12
12
|
<a{{ attributes}} href="{{ href }}">
|
|
13
13
|
{{ iconStart }}
|
|
14
14
|
<span{% if iconOnly %} class="sr-only"{% endif %}>{{ title }}</span>
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<img
|
|
7
7
|
src="{{ src }}"
|
|
8
8
|
alt="{{ alt }}"
|
|
9
|
-
{% if loading %} loading="{{ loading }}"{% endif %}
|
|
10
|
-
{% if height %} height="{{ height }}"{% endif %}
|
|
11
|
-
{% if width %} width="{{ width }}"{% endif %}
|
|
9
|
+
{% if loading is not empty %} loading="{{ loading }}"{% endif %}
|
|
10
|
+
{% if height is not empty %} height="{{ height }}"{% endif %}
|
|
11
|
+
{% if width is not empty %} width="{{ width }}"{% endif %}
|
|
12
12
|
/>
|
|
13
13
|
</picture>
|
package/src/Atom/Link/link.twig
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
<figure{{ attributes }}>
|
|
10
10
|
{{ item }}
|
|
11
|
-
{% if caption or attribution%}
|
|
11
|
+
{% if caption is not empty or attribution is not empty %}
|
|
12
12
|
<figcaption>
|
|
13
13
|
{{ caption }}
|
|
14
|
-
{% if caption and attribution %} - {% endif %}
|
|
14
|
+
{% if caption is not empty and attribution is not empty %} - {% endif %}
|
|
15
15
|
{{ attribution }}
|
|
16
16
|
</figcaption>
|
|
17
17
|
{% endif %}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{% set attributes = (attributes ?? create_attribute()).addClass(classes) %}
|
|
7
7
|
|
|
8
8
|
<mx-accordion>
|
|
9
|
-
<details{{ attributes }}{% if id %} id="{{ id }}"{% endif %}>
|
|
9
|
+
<details{{ attributes }}{% if id is not empty %} id="{{ id }}"{% endif %}>
|
|
10
10
|
<summary class="mx-accordion__toggle">
|
|
11
11
|
{{ title }}
|
|
12
12
|
<span class="mx-button mx-icon mx-button--small mx-button--icon-only mx-icon--chevron-down" aria-hidden="true"></span>
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { Meta, StoryObj } from "@storybook/html"
|
|
2
2
|
import Component from "./card.twig"
|
|
3
3
|
import "./card.css"
|
|
4
|
-
import "../Tag/tag.css"
|
|
5
|
-
import "../LinkList/link-list.css"
|
|
6
|
-
import Heading from "../../Atom/Heading/heading.twig"
|
|
7
|
-
import Link from "../../Atom/Link/link.twig"
|
|
8
|
-
import Image from "../../Atom/Image/image.twig"
|
|
9
|
-
import Tags from "../Tag/tags.twig"
|
|
10
|
-
import LinkList from "../LinkList/link-list.twig"
|
|
11
|
-
import Icon from "../../Atom/Icon/icon.twig"
|
|
12
4
|
import {
|
|
13
5
|
Card as CardType,
|
|
14
6
|
CardModifier,
|
|
@@ -18,6 +10,17 @@ import {
|
|
|
18
10
|
} from "@pnx-mixtape/ids-shape"
|
|
19
11
|
import { Icons } from "../../enums"
|
|
20
12
|
|
|
13
|
+
// Deps.
|
|
14
|
+
import Heading from "../../Atom/Heading/heading.twig"
|
|
15
|
+
import Link from "../../Atom/Link/link.twig"
|
|
16
|
+
import Image from "../../Atom/Image/image.twig"
|
|
17
|
+
import Tags from "../Tag/tags.twig"
|
|
18
|
+
import LinkList from "../LinkList/link-list.twig"
|
|
19
|
+
import Icon from "../../Atom/Icon/icon.twig"
|
|
20
|
+
// css
|
|
21
|
+
import "../Tag/tag.css"
|
|
22
|
+
import "../LinkList/link-list.css"
|
|
23
|
+
|
|
21
24
|
export type MxCardType = Omit<CardType, "modifiers"> & {
|
|
22
25
|
modifiers?: CardModifier[] | ListItemModifiers[]
|
|
23
26
|
}
|
|
@@ -100,18 +103,27 @@ export const WithLinkList: Story = {
|
|
|
100
103
|
link: null,
|
|
101
104
|
linkList: LinkList({
|
|
102
105
|
items: [
|
|
103
|
-
{
|
|
106
|
+
Link({
|
|
104
107
|
title: "Link one",
|
|
105
108
|
href: "#",
|
|
106
|
-
|
|
107
|
-
|
|
109
|
+
iconEnd: Icon({
|
|
110
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
111
|
+
}),
|
|
112
|
+
}),
|
|
113
|
+
Link({
|
|
108
114
|
title: "Link two",
|
|
109
115
|
href: "#",
|
|
110
|
-
|
|
111
|
-
|
|
116
|
+
iconEnd: Icon({
|
|
117
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
118
|
+
}),
|
|
119
|
+
}),
|
|
120
|
+
Link({
|
|
112
121
|
title: "Link three",
|
|
113
122
|
href: "#",
|
|
114
|
-
|
|
123
|
+
iconEnd: Icon({
|
|
124
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
125
|
+
}),
|
|
126
|
+
}),
|
|
115
127
|
],
|
|
116
128
|
}),
|
|
117
129
|
},
|
|
@@ -8,8 +8,8 @@ type CardProps = PropsWithChildren & {
|
|
|
8
8
|
title: string
|
|
9
9
|
image?: ReactNode
|
|
10
10
|
intro?: ReactNode
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
reversed?: boolean
|
|
12
|
+
block?: boolean
|
|
13
13
|
headingLevel?: HeadingTypes
|
|
14
14
|
headingModifier?: HeadingStyles
|
|
15
15
|
as?: AsTags
|
|
@@ -18,8 +18,8 @@ type CardProps = PropsWithChildren & {
|
|
|
18
18
|
const Card = ({
|
|
19
19
|
title,
|
|
20
20
|
children,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
reversed = null,
|
|
22
|
+
block = false,
|
|
23
23
|
image = null,
|
|
24
24
|
intro = null,
|
|
25
25
|
headingLevel = HeadingTypes.THREE,
|
|
@@ -31,12 +31,12 @@ const Card = ({
|
|
|
31
31
|
<Tag className="mx-container">
|
|
32
32
|
<article
|
|
33
33
|
className={classNames("mx-card", {
|
|
34
|
-
"mx-card--
|
|
35
|
-
"mx-card--
|
|
34
|
+
"mx-card--reversed": reversed,
|
|
35
|
+
"mx-card--block": block,
|
|
36
36
|
})}
|
|
37
37
|
>
|
|
38
38
|
{image && (
|
|
39
|
-
<figure className={classNames("mx-card__media", "
|
|
39
|
+
<figure className={classNames("mx-card__media", "stack")}>
|
|
40
40
|
<div className="mx-skeleton mx-skeleton--bg"></div>
|
|
41
41
|
{image}
|
|
42
42
|
</figure>
|
|
@@ -122,7 +122,7 @@ exports[`Component/Card NoImage smoke-test 1`] = `
|
|
|
122
122
|
|
|
123
123
|
exports[`Component/Card Reverse smoke-test 1`] = `
|
|
124
124
|
<div class="mx-container">
|
|
125
|
-
<article class="mx-card mx-card--
|
|
125
|
+
<article class="mx-card mx-card--reversed">
|
|
126
126
|
<figure class="mx-card__media">
|
|
127
127
|
<picture>
|
|
128
128
|
<img src="https://picsum.photos/id/56/558/418?grayscale"
|
|
@@ -200,24 +200,30 @@ exports[`Component/Card WithLinkList smoke-test 1`] = `
|
|
|
200
200
|
</div>
|
|
201
201
|
<ul class="mx-link-list">
|
|
202
202
|
<li>
|
|
203
|
-
<a href="#"
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
203
|
+
<a href="#">
|
|
204
|
+
<span>
|
|
205
|
+
Link one
|
|
206
|
+
</span>
|
|
207
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
208
|
+
</span>
|
|
207
209
|
</a>
|
|
208
210
|
</li>
|
|
209
211
|
<li>
|
|
210
|
-
<a href="#"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
<a href="#">
|
|
213
|
+
<span>
|
|
214
|
+
Link two
|
|
215
|
+
</span>
|
|
216
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
217
|
+
</span>
|
|
214
218
|
</a>
|
|
215
219
|
</li>
|
|
216
220
|
<li>
|
|
217
|
-
<a href="#"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
+
<a href="#">
|
|
222
|
+
<span>
|
|
223
|
+
Link three
|
|
224
|
+
</span>
|
|
225
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
226
|
+
</span>
|
|
221
227
|
</a>
|
|
222
228
|
</li>
|
|
223
229
|
</ul>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
exports[`Component/Card Card smoke-test 1`] = `
|
|
4
4
|
<div class="mx-container">
|
|
5
5
|
<article class="mx-card">
|
|
6
|
-
<figure class="mx-card__media
|
|
6
|
+
<figure class="mx-card__media stack">
|
|
7
7
|
<div class="mx-skeleton mx-skeleton--bg">
|
|
8
8
|
</div>
|
|
9
9
|
<img alt
|
|
@@ -31,8 +31,8 @@ exports[`Component/Card Card smoke-test 1`] = `
|
|
|
31
31
|
|
|
32
32
|
exports[`Component/Card Linked smoke-test 1`] = `
|
|
33
33
|
<div class="mx-container">
|
|
34
|
-
<article class="mx-card
|
|
35
|
-
<figure class="mx-card__media
|
|
34
|
+
<article class="mx-card">
|
|
35
|
+
<figure class="mx-card__media stack">
|
|
36
36
|
<div class="mx-skeleton mx-skeleton--bg">
|
|
37
37
|
</div>
|
|
38
38
|
<img alt
|
|
@@ -60,8 +60,8 @@ exports[`Component/Card Linked smoke-test 1`] = `
|
|
|
60
60
|
|
|
61
61
|
exports[`Component/Card Right smoke-test 1`] = `
|
|
62
62
|
<div class="mx-container">
|
|
63
|
-
<article class="mx-card
|
|
64
|
-
<figure class="mx-card__media
|
|
63
|
+
<article class="mx-card">
|
|
64
|
+
<figure class="mx-card__media stack">
|
|
65
65
|
<div class="mx-skeleton mx-skeleton--bg">
|
|
66
66
|
</div>
|
|
67
67
|
<img alt
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
grid-template: "media content" 1fr / 1fr 1fr;
|
|
30
30
|
align-items: center;
|
|
31
31
|
|
|
32
|
-
&.mx-card--
|
|
32
|
+
&.mx-card--reversed {
|
|
33
33
|
grid-template-areas: "content media";
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
padding-block-start: var(--content-min-spacing, var(--spacing-s));
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
&:where(:not(.mx-card--
|
|
51
|
+
&:where(:not(.mx-card--reversed)) .mx-card__content {
|
|
52
52
|
padding-inline-start: 0;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
&.mx-card--
|
|
55
|
+
&.mx-card--reversed .mx-card__content {
|
|
56
56
|
padding-inline-end: 0;
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -12,30 +12,30 @@
|
|
|
12
12
|
{% set classes = classes|merge([baseClass~"--"~modifier]) %}
|
|
13
13
|
{% endif %}
|
|
14
14
|
{% endfor %}
|
|
15
|
-
{% if background %}
|
|
15
|
+
{% if background is not empty %}
|
|
16
16
|
{% set classes = classes|merge([background]) %}
|
|
17
17
|
{% endif %}
|
|
18
18
|
{% set attributes = (attributes ?? create_attribute()).addClass(classes) %}
|
|
19
19
|
|
|
20
20
|
<div class="mx-container">
|
|
21
21
|
<article{{ attributes }}>
|
|
22
|
-
{% if image %}
|
|
22
|
+
{% if image is not empty %}
|
|
23
23
|
<figure class="mx-card__media">
|
|
24
24
|
{{ image }}
|
|
25
25
|
</figure>
|
|
26
26
|
{% endif %}
|
|
27
|
-
{% if icon %}
|
|
27
|
+
{% if icon is not empty %}
|
|
28
28
|
<div class="mx-card__icon">
|
|
29
29
|
{{ icon }}
|
|
30
30
|
</div>
|
|
31
31
|
{% endif %}
|
|
32
32
|
<div class="mx-card__content mx-vertical-flow-flex">
|
|
33
|
-
{% if date %}
|
|
33
|
+
{% if date is not empty %}
|
|
34
34
|
<div class="mx-text--s">{{ date }}</div>
|
|
35
35
|
{% endif %}
|
|
36
36
|
{{ title }}
|
|
37
37
|
{{ tags }}
|
|
38
|
-
{% if content %}
|
|
38
|
+
{% if content is not empty %}
|
|
39
39
|
<div class="mx-text--lede">{{ content }}</div>
|
|
40
40
|
{% endif %}
|
|
41
41
|
{{ linkList }}
|
|
@@ -25,7 +25,7 @@ const ContentBlock = ({
|
|
|
25
25
|
return (
|
|
26
26
|
<Tag className={classNames("mx-content-block")} {...props}>
|
|
27
27
|
{image && (
|
|
28
|
-
<figure className={classNames("mx-content-block__media", "
|
|
28
|
+
<figure className={classNames("mx-content-block__media", "stack")}>
|
|
29
29
|
<div className="mx-skeleton mx-skeleton--bg"></div>
|
|
30
30
|
{image}
|
|
31
31
|
</figure>
|
|
@@ -11,25 +11,13 @@ exports[`Component/ContentBlock ContentBlock smoke-test 1`] = `
|
|
|
11
11
|
</p>
|
|
12
12
|
<ul class="mx-link-list">
|
|
13
13
|
<li>
|
|
14
|
-
|
|
15
|
-
class="mx-icon mx-icon--chevron-right"
|
|
16
|
-
>
|
|
17
|
-
Link one
|
|
18
|
-
</a>
|
|
14
|
+
[object Object]
|
|
19
15
|
</li>
|
|
20
16
|
<li>
|
|
21
|
-
|
|
22
|
-
class="mx-icon mx-icon--chevron-right"
|
|
23
|
-
>
|
|
24
|
-
Link two
|
|
25
|
-
</a>
|
|
17
|
+
[object Object]
|
|
26
18
|
</li>
|
|
27
19
|
<li>
|
|
28
|
-
|
|
29
|
-
class="mx-icon mx-icon--chevron-right"
|
|
30
|
-
>
|
|
31
|
-
Link three
|
|
32
|
-
</a>
|
|
20
|
+
[object Object]
|
|
33
21
|
</li>
|
|
34
22
|
</ul>
|
|
35
23
|
<a class="mx-link--more"
|
|
@@ -58,25 +46,13 @@ exports[`Component/ContentBlock WithIcon smoke-test 1`] = `
|
|
|
58
46
|
</p>
|
|
59
47
|
<ul class="mx-link-list">
|
|
60
48
|
<li>
|
|
61
|
-
|
|
62
|
-
class="mx-icon mx-icon--chevron-right"
|
|
63
|
-
>
|
|
64
|
-
Link one
|
|
65
|
-
</a>
|
|
49
|
+
[object Object]
|
|
66
50
|
</li>
|
|
67
51
|
<li>
|
|
68
|
-
|
|
69
|
-
class="mx-icon mx-icon--chevron-right"
|
|
70
|
-
>
|
|
71
|
-
Link two
|
|
72
|
-
</a>
|
|
52
|
+
[object Object]
|
|
73
53
|
</li>
|
|
74
54
|
<li>
|
|
75
|
-
|
|
76
|
-
class="mx-icon mx-icon--chevron-right"
|
|
77
|
-
>
|
|
78
|
-
Link three
|
|
79
|
-
</a>
|
|
55
|
+
[object Object]
|
|
80
56
|
</li>
|
|
81
57
|
</ul>
|
|
82
58
|
<a class="mx-link--more"
|
|
@@ -108,25 +84,13 @@ exports[`Component/ContentBlock WithImage smoke-test 1`] = `
|
|
|
108
84
|
</p>
|
|
109
85
|
<ul class="mx-link-list">
|
|
110
86
|
<li>
|
|
111
|
-
|
|
112
|
-
class="mx-icon mx-icon--chevron-right"
|
|
113
|
-
>
|
|
114
|
-
Link one
|
|
115
|
-
</a>
|
|
87
|
+
[object Object]
|
|
116
88
|
</li>
|
|
117
89
|
<li>
|
|
118
|
-
|
|
119
|
-
class="mx-icon mx-icon--chevron-right"
|
|
120
|
-
>
|
|
121
|
-
Link two
|
|
122
|
-
</a>
|
|
90
|
+
[object Object]
|
|
123
91
|
</li>
|
|
124
92
|
<li>
|
|
125
|
-
|
|
126
|
-
class="mx-icon mx-icon--chevron-right"
|
|
127
|
-
>
|
|
128
|
-
Link three
|
|
129
|
-
</a>
|
|
93
|
+
[object Object]
|
|
130
94
|
</li>
|
|
131
95
|
</ul>
|
|
132
96
|
<a class="mx-link--more"
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
{% set attributes = (attributes ?? create_attribute()).addClass(classes) %}
|
|
3
3
|
|
|
4
4
|
<article{{ attributes }}>
|
|
5
|
-
{% if image %}
|
|
5
|
+
{% if image is not empty %}
|
|
6
6
|
<figure class="mx-content-block__media">
|
|
7
7
|
{{ image }}
|
|
8
8
|
</figure>
|
|
9
9
|
{% endif %}
|
|
10
|
-
{% if icon %}
|
|
10
|
+
{% if icon is not empty %}
|
|
11
11
|
<div class="mx-content-block__icon">
|
|
12
12
|
{{ icon }}
|
|
13
13
|
</div>
|
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Component/GlobalAlert Critical smoke-test 1`] = `
|
|
4
4
|
<div class="mx-global-alert mx-page mx-global-alert--critical">
|
|
5
|
-
<div class="mx-global-alert__inner"
|
|
6
|
-
data-container
|
|
7
|
-
>
|
|
5
|
+
<div class="mx-global-alert__inner">
|
|
8
6
|
<div class="mx-global-alert__content">
|
|
9
7
|
<h2 class=" mx-heading--m">
|
|
10
8
|
In page alert
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
{% set attributes = (attributes ?? create_attribute()).addClass(classes) %}
|
|
8
8
|
|
|
9
9
|
{% if dismissible %}
|
|
10
|
-
<mx-closable-alert {{ attributes}}{% if id %} id="{{ id ~ type }}"{% endif %}>
|
|
10
|
+
<mx-closable-alert {{ attributes}}{% if id is not empty %} id="{{ id ~ type }}"{% endif %}>
|
|
11
11
|
<div class="mx-global-alert__inner" data-container>
|
|
12
12
|
<div class="mx-global-alert__content">
|
|
13
13
|
{{ title }}
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</mx-closable-alert>
|
|
19
19
|
{% else %}
|
|
20
|
-
<div {{ attributes}}{% if id %} id="{{ id ~ type }}"{% endif %}>
|
|
21
|
-
<div class="mx-global-alert__inner"
|
|
20
|
+
<div {{ attributes}}{% if id is not empty %} id="{{ id ~ type }}"{% endif %}>
|
|
21
|
+
<div class="mx-global-alert__inner">
|
|
22
22
|
<div class="mx-global-alert__content">
|
|
23
23
|
{{ title }}
|
|
24
24
|
{{ content }}
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import { Meta, StoryObj } from "@storybook/html"
|
|
2
2
|
import { Page } from "../../../.storybook/decorators"
|
|
3
3
|
import Component from "./hero-banner.twig"
|
|
4
|
-
import Heading from "../../Atom/Heading/heading.twig"
|
|
5
|
-
import Link from "../../Atom/Link/link.twig"
|
|
6
|
-
import Image from "../../Atom/Image/image.twig"
|
|
7
|
-
import LinkList from "../LinkList/link-list.twig"
|
|
8
4
|
import "./hero-banner.css"
|
|
9
|
-
import "../LinkList/link-list.css"
|
|
10
5
|
import {
|
|
11
6
|
HeroBannerModifier,
|
|
12
7
|
HeadingTypes,
|
|
13
8
|
HeroBanner as HeroBannerType,
|
|
14
9
|
} from "@pnx-mixtape/ids-shape"
|
|
10
|
+
import { Icons } from "../../enums"
|
|
11
|
+
|
|
12
|
+
// Deps.
|
|
13
|
+
import Heading from "../../Atom/Heading/heading.twig"
|
|
14
|
+
import Link from "../../Atom/Link/link.twig"
|
|
15
|
+
import Image from "../../Atom/Image/image.twig"
|
|
16
|
+
import LinkList from "../LinkList/link-list.twig"
|
|
17
|
+
import Icon from "../../Atom/Icon/icon.twig"
|
|
18
|
+
// css
|
|
19
|
+
import "../LinkList/link-list.css"
|
|
15
20
|
|
|
16
21
|
const meta: Meta<HeroBannerType> = {
|
|
17
22
|
tags: ["autodocs", "ids-mvp"],
|
|
@@ -62,18 +67,27 @@ export const WithLinkList: Story = {
|
|
|
62
67
|
link: null,
|
|
63
68
|
linkList: LinkList({
|
|
64
69
|
items: [
|
|
65
|
-
{
|
|
70
|
+
Link({
|
|
66
71
|
title: "Link one",
|
|
67
72
|
href: "#",
|
|
68
|
-
|
|
69
|
-
|
|
73
|
+
iconEnd: Icon({
|
|
74
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
75
|
+
}),
|
|
76
|
+
}),
|
|
77
|
+
Link({
|
|
70
78
|
title: "Link two",
|
|
71
79
|
href: "#",
|
|
72
|
-
|
|
73
|
-
|
|
80
|
+
iconEnd: Icon({
|
|
81
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
82
|
+
}),
|
|
83
|
+
}),
|
|
84
|
+
Link({
|
|
74
85
|
title: "Link three",
|
|
75
86
|
href: "#",
|
|
76
|
-
|
|
87
|
+
iconEnd: Icon({
|
|
88
|
+
icon: Icons.CHEVRON_RIGHT,
|
|
89
|
+
}),
|
|
90
|
+
}),
|
|
77
91
|
],
|
|
78
92
|
}),
|
|
79
93
|
},
|
|
@@ -46,24 +46,30 @@ exports[`Component/HeroBanner WithLinkList smoke-test 1`] = `
|
|
|
46
46
|
<div class="mx-hero-banner__aside">
|
|
47
47
|
<ul class="mx-link-list">
|
|
48
48
|
<li>
|
|
49
|
-
<a href="#"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
<a href="#">
|
|
50
|
+
<span>
|
|
51
|
+
Link one
|
|
52
|
+
</span>
|
|
53
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
54
|
+
</span>
|
|
53
55
|
</a>
|
|
54
56
|
</li>
|
|
55
57
|
<li>
|
|
56
|
-
<a href="#"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
<a href="#">
|
|
59
|
+
<span>
|
|
60
|
+
Link two
|
|
61
|
+
</span>
|
|
62
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
63
|
+
</span>
|
|
60
64
|
</a>
|
|
61
65
|
</li>
|
|
62
66
|
<li>
|
|
63
|
-
<a href="#"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
<a href="#">
|
|
68
|
+
<span>
|
|
69
|
+
Link three
|
|
70
|
+
</span>
|
|
71
|
+
<span class="mx-icon mx-icon--chevron-right ">
|
|
72
|
+
</span>
|
|
67
73
|
</a>
|
|
68
74
|
</li>
|
|
69
75
|
</ul>
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
<div class="mx-hero-banner__inner">
|
|
24
24
|
<div class="mx-hero-banner__content mx-vertical-flow mx-section--xl">
|
|
25
25
|
{{ title }}
|
|
26
|
-
{% if subtitle %}
|
|
26
|
+
{% if subtitle is not empty %}
|
|
27
27
|
<p class="mx-text--lede">{{ subtitle }}</p>
|
|
28
28
|
{% endif %}
|
|
29
29
|
{{ content }}
|
|
30
30
|
{{ link }}
|
|
31
31
|
</div>
|
|
32
|
-
{% if linkList %}
|
|
32
|
+
{% if linkList is not empty %}
|
|
33
33
|
<div class="mx-hero-banner__aside">
|
|
34
34
|
{{ linkList }}
|
|
35
35
|
</div>
|
|
36
|
-
{% elseif image %}
|
|
36
|
+
{% elseif image is not empty %}
|
|
37
37
|
<div class="mx-hero-banner__aside mx-hero-banner__aside-image">
|
|
38
38
|
{{ image }}
|
|
39
39
|
</div>
|