@ilo-org/twig 1.3.3 → 1.4.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.
Files changed (41) hide show
  1. package/dist/components/blockquote/blockquote.component.yml +17 -0
  2. package/dist/components/blockquote/blockquote.twig +6 -0
  3. package/dist/components/blockquote/blockquote.wingsuit.yml +17 -0
  4. package/dist/components/card/card.component.yml +0 -2
  5. package/dist/components/card/card.wingsuit.yml +0 -2
  6. package/dist/components/card_data/card_data.component.yml +1 -1
  7. package/dist/components/card_data/card_data.twig +6 -0
  8. package/dist/components/card_data/card_data.wingsuit.yml +1 -1
  9. package/dist/components/card_factlist/card_factlist.component.yml +2 -5
  10. package/dist/components/card_factlist/card_factlist.twig +3 -6
  11. package/dist/components/card_factlist/card_factlist.wingsuit.yml +2 -5
  12. package/dist/components/card_feature/card_feature.component.yml +1 -1
  13. package/dist/components/card_feature/card_feature.twig +1 -0
  14. package/dist/components/card_feature/card_feature.wingsuit.yml +1 -1
  15. package/dist/components/card_multilink/card_multilink.component.yml +13 -4
  16. package/dist/components/card_multilink/card_multilink.twig +18 -13
  17. package/dist/components/card_multilink/card_multilink.wingsuit.yml +13 -4
  18. package/dist/components/icon/icon.behavior.js +565 -520
  19. package/dist/components/list/list.component.yml +7 -0
  20. package/dist/components/list/list.twig +5 -3
  21. package/dist/components/list/list.wingsuit.yml +7 -0
  22. package/dist/components/socialmedia/socialmedia.component.yml +10 -0
  23. package/dist/components/socialmedia/socialmedia.wingsuit.yml +10 -0
  24. package/dist/styles/components/blockquote.css +1 -0
  25. package/dist/styles/components/breadcrumb.css +1 -1
  26. package/dist/styles/components/card.css +1 -1
  27. package/dist/styles/components/datacard.css +1 -1
  28. package/dist/styles/components/factlistcard.css +1 -1
  29. package/dist/styles/components/featurecard.css +1 -1
  30. package/dist/styles/components/languagetoggle.css +1 -0
  31. package/dist/styles/components/list.css +1 -1
  32. package/dist/styles/components/multilinkcard.css +1 -1
  33. package/dist/styles/components/richtext.css +1 -1
  34. package/dist/styles/components/socialmedia.css +1 -1
  35. package/dist/styles/global.css +1 -1
  36. package/dist/styles/global.css.map +1 -1
  37. package/dist/styles/index.css +2 -2
  38. package/dist/styles/index.css.map +1 -1
  39. package/dist/styles/monorepo.css +2 -2
  40. package/dist/styles/monorepo.css.map +1 -1
  41. package/package.json +7 -6
@@ -0,0 +1,17 @@
1
+ blockquote:
2
+ namespace: Components/Content
3
+ use: "@components/blockquote/blockquote.twig"
4
+ label: Blockquote
5
+ description: The Blockquote component is used to display quoted text with proper attribution, helping to highlight references and citations effectively.
6
+ fields:
7
+ quote:
8
+ type: string
9
+ label: Quote
10
+ description: The main quoted text content.
11
+ preview: "The fundamental ideas that forged the ILO one hundred and three years ago still underpin the global pledge to leave no one behind."
12
+ cite:
13
+ type: string
14
+ label: Citation
15
+ description: The source or author of the quote.
16
+ preview: ILO Director-General Gilbert F. Houngbo
17
+ visibility: storybook
@@ -0,0 +1,6 @@
1
+ {# blockquote.twig #}
2
+
3
+ <blockquote class="ilo--blockquote">
4
+ <p>{{ quote }}</p>
5
+ <cite>{{ cite }}</cite>
6
+ </blockquote>
@@ -0,0 +1,17 @@
1
+ blockquote:
2
+ namespace: Components/Content
3
+ use: "@components/blockquote/blockquote.twig"
4
+ label: Blockquote
5
+ description: The Blockquote component is used to display quoted text with proper attribution, helping to highlight references and citations effectively.
6
+ fields:
7
+ quote:
8
+ type: string
9
+ label: Quote
10
+ description: The main quoted text content.
11
+ preview: "The fundamental ideas that forged the ILO one hundred and three years ago still underpin the global pledge to leave no one behind."
12
+ cite:
13
+ type: string
14
+ label: Citation
15
+ description: The source or author of the quote.
16
+ preview: ILO Director-General Gilbert F. Houngbo
17
+ visibility: storybook
@@ -190,8 +190,6 @@ card:
190
190
  stat: Stat
191
191
  factlist: Factlist
192
192
  variants:
193
- basic:
194
- label: Default
195
193
  feature:
196
194
  label: Feature Card
197
195
  settings:
@@ -190,8 +190,6 @@ card:
190
190
  stat: Stat
191
191
  factlist: Factlist
192
192
  variants:
193
- basic:
194
- label: Default
195
193
  feature:
196
194
  label: Feature Card
197
195
  settings:
@@ -90,7 +90,7 @@ datacard:
90
90
  columns:
91
91
  type: select
92
92
  label: Columns
93
- description: Displays the data in one or two columns. If not set, the card will appear as `one`.
93
+ description: Displays the data in one or two columns. If not set, the card will appear as `one`. Only applies when size is set to `wide` or `fluid`.
94
94
  required: false
95
95
  preview: one
96
96
  options:
@@ -1,9 +1,15 @@
1
1
  {# card_data.twig #}
2
2
 
3
+ {# Defaults to one column #}
3
4
  {% if not columns %}
4
5
  {% set columns = "one" %}
5
6
  {% endif %}
6
7
 
8
+ {# size overrides column if it's set to 'narrow' #}
9
+ {% if size == "narrow" %}
10
+ {% set columns = "one" %}
11
+ {% endif %}
12
+
7
13
  {# Different layout options to apply depending on if the card has an image
8
14
  or if it has links. If it has two columns with image, then image goes on one side
9
15
  and content goes on the other. If it has two columns witout image but links, then
@@ -90,7 +90,7 @@ datacard:
90
90
  columns:
91
91
  type: select
92
92
  label: Columns
93
- description: Displays the data in one or two columns. If not set, the card will appear as `one`.
93
+ description: Displays the data in one or two columns. If not set, the card will appear as `one`. Only applies when size is set to `wide` or `fluid`.
94
94
  required: false
95
95
  preview: one
96
96
  options:
@@ -13,11 +13,8 @@ factlistcard:
13
13
  list:
14
14
  type: object
15
15
  label: List
16
- description: List of facts or statistics. See the List component for a full list of options.
16
+ description: List of facts or statistics. Each item takes a `content` property with the text of the list and an optional `id` property.
17
17
  preview:
18
- settings:
19
- - ordered: unordered
20
- - alignment: default
21
18
  items:
22
19
  - content: "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022."
23
20
  id: "list1"
@@ -40,7 +37,7 @@ factlistcard:
40
37
  label: Theme
41
38
  description: Sets the card to appear as either light or dark. If not set, the card will inherit the theme of its parent.
42
39
  required: false
43
- preview: "light"
40
+ preview: "dark"
44
41
  options:
45
42
  dark: Dark
46
43
  light: Light
@@ -1,6 +1,4 @@
1
- {#
2
- FACT LIST CARD COMPONENT
3
- #}
1
+ {# card_factlist.twig #}
4
2
  <div class="ilo--card ilo--card__type__factlist ilo--card__size__{{size}} ilo--card__theme__{{theme}}">
5
3
  <div class="ilo--card--wrap">
6
4
  <div class="ilo--card--content">
@@ -9,11 +7,10 @@
9
7
  {% endif %}
10
8
  {% if list %}
11
9
  {% include "@components/list/list.twig" with {
12
- title: list.title,
13
- ordered: list.ordered,
14
- alignment: list.alignment,
10
+ ordered: "unordered",
15
11
  items: list.items,
16
12
  prefix: prefix,
13
+ theme: theme
17
14
  } only %}
18
15
  {% endif %}
19
16
  </div>
@@ -13,11 +13,8 @@ factlistcard:
13
13
  list:
14
14
  type: object
15
15
  label: List
16
- description: List of facts or statistics. See the List component for a full list of options.
16
+ description: List of facts or statistics. Each item takes a `content` property with the text of the list and an optional `id` property.
17
17
  preview:
18
- settings:
19
- - ordered: unordered
20
- - alignment: default
21
18
  items:
22
19
  - content: "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022."
23
20
  id: "list1"
@@ -40,7 +37,7 @@ factlistcard:
40
37
  label: Theme
41
38
  description: Sets the card to appear as either light or dark. If not set, the card will inherit the theme of its parent.
42
39
  required: false
43
- preview: "light"
40
+ preview: "dark"
44
41
  options:
45
42
  dark: Dark
46
43
  light: Light
@@ -71,7 +71,7 @@ featurecard:
71
71
  label: Theme
72
72
  description: Sets the card to appear as either light or dark. If not set, the card will inherit the theme of its parent.
73
73
  required: false
74
- preview: "light"
74
+ preview: "dark"
75
75
  options:
76
76
  dark: Dark
77
77
  light: Light
@@ -28,6 +28,7 @@
28
28
  {% endif %}
29
29
  {% if cta %}
30
30
  {% include "@components/linklist/linklist.twig" with {
31
+ theme: theme,
31
32
  linkgroup: [{
32
33
  links: [cta]
33
34
  }],
@@ -71,7 +71,7 @@ featurecard:
71
71
  label: Theme
72
72
  description: Sets the card to appear as either light or dark. If not set, the card will inherit the theme of its parent.
73
73
  required: false
74
- preview: "light"
74
+ preview: "dark"
75
75
  options:
76
76
  dark: Dark
77
77
  light: Light
@@ -26,13 +26,13 @@ multilinkcard:
26
26
  loading: "lazy"
27
27
  url:
28
28
  - breakpoint: "(min-width: 0px)"
29
- src: "/images/small.jpg"
29
+ src: "images/16x9.jpg"
30
30
  - breakpoint: "(min-width: 800px)"
31
- src: "/images/medium.jpg"
31
+ src: "images/16x9.jpg"
32
32
  - breakpoint: "(min-width: 1200px)"
33
- src: "/images/large.jpg"
33
+ src: "images/16x9.jpg"
34
34
  - breakpoint: "(min-width: 1440px)"
35
- src: "/images/large.jpg"
35
+ src: "images/16x9.jpg"
36
36
  intro:
37
37
  type: string
38
38
  label: Intro
@@ -86,6 +86,15 @@ multilinkcard:
86
86
  narrow: narrow
87
87
  wide: wide
88
88
  fluid: fluid
89
+ theme:
90
+ type: select
91
+ label: Theme
92
+ description: Sets the theme of the card, either `light` or `soft`. Defaults to `light`.
93
+ required: false
94
+ preview: "light"
95
+ options:
96
+ light: light
97
+ soft: soft
89
98
  titleLevel:
90
99
  type: select
91
100
  label: Title Element
@@ -1,6 +1,11 @@
1
1
  {# card_multilink.twig #}
2
2
 
3
- <div class="ilo--card ilo--card__type__multilink {% if link|length > 0 %} ilo--card__action {% endif %} ilo--card__size__{{size}} {% if isvideo|boolval %} ilo--card__isvideo {% endif %} {% if linklist %} ilo--card__linklist {% endif %} {% if size == "wide" or size == "fluid" %} ilo--card__align__{{alignment}} {% endif %} {% if not image %} ilo--card--no-image {% endif %}">
3
+ {# Theme defaults to light #}
4
+ {% if not theme %}
5
+ {% set theme = "light" %}
6
+ {% endif %}
7
+
8
+ <div class="ilo--card ilo--card__theme__{{theme}} ilo--card__type__multilink {% if link|length > 0 %} ilo--card__action {% endif %} ilo--card__size__{{size}} {% if isvideo|boolval %} ilo--card__isvideo {% endif %} {% if linklist %} ilo--card__linklist {% endif %} {% if size == "wide" or size == "fluid" %} ilo--card__align__{{alignment}} {% endif %} {% if not image %} ilo--card--no-image {% endif %}">
4
9
  {% if link|length > 0 %}
5
10
  <a class="ilo--card--link" href="{{link}}" title="{{title}}">
6
11
  <span class="ilo--card--link--text">{{title}}</span>
@@ -8,14 +13,14 @@
8
13
  {% endif %}
9
14
  <div class="ilo--card--wrap">
10
15
  {% if image %}
11
- <div class="ilo--card--image--wrapper">
12
- {% include "@components/picture/picture.twig" with {
13
- image: image,
14
- class: "card"
15
- }
16
- %}
16
+ <div class="ilo--card--image--wrapper">
17
+ {% include "@components/picture/picture.twig" with {
18
+ image: image,
19
+ class: "card"
20
+ }
21
+ %}
17
22
  </div>
18
- {% endif %}
23
+ {% endif %}
19
24
  <div class="ilo--card--content">
20
25
  {% if eyebrow %}
21
26
  <p class="ilo--card--eyebrow">{{eyebrow}}</p>
@@ -26,10 +31,10 @@
26
31
  {% if image %}
27
32
  <div class="ilo--card--image--wrapper">
28
33
  {% include "@components/picture/picture.twig" with {
29
- image: image,
30
- class: "card"
31
- }
32
- %}
34
+ image: image,
35
+ class: "card"
36
+ }
37
+ %}
33
38
  </div>
34
39
  {% endif %}
35
40
  {% if intro %}
@@ -39,7 +44,7 @@
39
44
  {% include "@components/linklist/linklist.twig" with {
40
45
  headline: linklist.headline,
41
46
  linkgroup: linklist.linkgroup,
42
- prefix: prefix
47
+ prefix: prefix,
43
48
  } only %}
44
49
  {% endif %}
45
50
  </div>
@@ -26,13 +26,13 @@ multilinkcard:
26
26
  loading: "lazy"
27
27
  url:
28
28
  - breakpoint: "(min-width: 0px)"
29
- src: "/images/small.jpg"
29
+ src: "images/16x9.jpg"
30
30
  - breakpoint: "(min-width: 800px)"
31
- src: "/images/medium.jpg"
31
+ src: "images/16x9.jpg"
32
32
  - breakpoint: "(min-width: 1200px)"
33
- src: "/images/large.jpg"
33
+ src: "images/16x9.jpg"
34
34
  - breakpoint: "(min-width: 1440px)"
35
- src: "/images/large.jpg"
35
+ src: "images/16x9.jpg"
36
36
  intro:
37
37
  type: string
38
38
  label: Intro
@@ -86,6 +86,15 @@ multilinkcard:
86
86
  narrow: narrow
87
87
  wide: wide
88
88
  fluid: fluid
89
+ theme:
90
+ type: select
91
+ label: Theme
92
+ description: Sets the theme of the card, either `light` or `soft`. Defaults to `light`.
93
+ required: false
94
+ preview: "light"
95
+ options:
96
+ light: light
97
+ soft: soft
89
98
  titleLevel:
90
99
  type: select
91
100
  label: Title Element