@ilo-org/styles 0.14.2 → 0.16.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/.turbo/turbo-build:lib.log +25 -0
- package/CHANGELOG.md +727 -0
- package/css/components/accordion.css +1 -1
- package/css/components/breadcrumb.css +1 -1
- package/css/components/button.css +1 -1
- package/css/components/callout.css +1 -1
- package/css/components/card.css +1 -1
- package/css/components/cardgroup.css +1 -1
- package/css/components/checkbox.css +1 -1
- package/css/components/container.css +1 -1
- package/css/components/contextmenu.css +1 -1
- package/css/components/credit.css +1 -1
- package/css/components/datacard.css +1 -1
- package/css/components/detailcard.css +1 -1
- package/css/components/dropdown.css +1 -1
- package/css/components/empty.css +1 -1
- package/css/components/factlistcard.css +1 -1
- package/css/components/featurecard.css +1 -1
- package/css/components/fieldset.css +1 -1
- package/css/components/file-upload.css +1 -1
- package/css/components/footer.css +1 -1
- package/css/components/form.css +1 -1
- package/css/components/formcontrol.css +1 -1
- package/css/components/hero.css +1 -1
- package/css/components/herocard.css +1 -1
- package/css/components/image.css +1 -1
- package/css/components/input.css +1 -1
- package/css/components/link.css +1 -1
- package/css/components/linklist.css +1 -1
- package/css/components/list.css +1 -1
- package/css/components/loading.css +1 -1
- package/css/components/logo.css +1 -1
- package/css/components/logogrid.css +1 -1
- package/css/components/modal.css +1 -1
- package/css/components/multilinkcard.css +1 -1
- package/css/components/navigation.css +1 -1
- package/css/components/notification.css +1 -1
- package/css/components/pagination.css +1 -1
- package/css/components/profile.css +1 -1
- package/css/components/promocard.css +1 -1
- package/css/components/radio.css +1 -1
- package/css/components/readmore.css +1 -1
- package/css/components/richtext.css +1 -1
- package/css/components/searchfield.css +1 -1
- package/css/components/socialmedia.css +1 -1
- package/css/components/statcard.css +1 -1
- package/css/components/table.css +1 -1
- package/css/components/tableofcontents.css +1 -1
- package/css/components/tabs.css +1 -1
- package/css/components/tag.css +1 -1
- package/css/components/textarea.css +1 -1
- package/css/components/textcard.css +1 -1
- package/css/components/textinput.css +1 -1
- package/css/components/toggle.css +1 -1
- package/css/components/tooltip.css +1 -1
- package/css/components/video.css +1 -1
- package/css/global.css +1 -1
- package/css/global.css.map +1 -1
- package/css/index.css +2 -2
- package/css/index.css.map +1 -1
- package/css/monorepo.css +2 -2
- package/css/monorepo.css.map +1 -1
- package/gulpfile.mjs +99 -0
- package/package.json +26 -17
- package/postcss.config.js +1 -0
- package/scss/_mixins.scss +74 -0
- package/scss/_normalize.scss +329 -0
- package/scss/_reset.scss +62 -113
- package/scss/components/_list.scss +28 -69
- package/scss/components/_pagination.scss +7 -1
- package/scss/components/_richtext.scss +24 -63
- package/scss/components/_textcard.scss +3 -3
- package/scss/index.scss +3 -0
- package/build/css/components/index.css +0 -8494
- package/build/css/components/index.css.map +0 -1
- package/build/css/global.css +0 -175
- package/build/css/global.css.map +0 -1
- package/build/css/index.css +0 -8657
- package/build/css/index.css.map +0 -1
- package/build/css/monorepo.css +0 -8735
- package/build/css/monorepo.css.map +0 -1
- package/build/minified/index.css +0 -2
- package/build/minified/index.css.map +0 -1
- package/build/minified/monorepo.css +0 -2
- package/build/minified/monorepo.css.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,727 @@
|
|
|
1
|
+
# @ilo-org/styles
|
|
2
|
+
|
|
3
|
+
## 0.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 977e15006: Fixes a bug where some distribution assets weren't getting included in Design System packages while a lot of non-essential development assets were. At the same time, this removes some `src` directories from the packages which some consumers might have been using.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3ceaceaa3: Add spacing within articles in rich text
|
|
12
|
+
- 13bcd92df: Make cornercut transparent in pullquote
|
|
13
|
+
- 8e6c502a7: Fixes some layout issues in List that caused parts of the list item numbers to get chopped off in ordered lists when they were rendered in containers with hidden overflow, as well as some incorrect rendering in RTL layouts.
|
|
14
|
+
- f5a78ab73: Fix profile hover in dark mode in text card
|
|
15
|
+
- d0a08d7c3: Fix incorrect heading styles in richtext
|
|
16
|
+
- Updated dependencies [977e15006]
|
|
17
|
+
- @ilo-org/fonts@0.2.0
|
|
18
|
+
- @ilo-org/icons@0.3.0
|
|
19
|
+
- @ilo-org/themes@0.8.0
|
|
20
|
+
|
|
21
|
+
## 0.15.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- 5bc989f5d: removed legacy build dir
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 7e1460a88: reoragnised css reset with normalisaiton
|
|
30
|
+
- 10dadfad7: Fix design bug in pagination for rtl
|
|
31
|
+
|
|
32
|
+
## 0.14.2
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 94c28eae7: Fix table of contents padding on hover
|
|
37
|
+
|
|
38
|
+
## 0.14.1
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- d44ee1021: Normalized video implementation for react
|
|
43
|
+
- Updated dependencies [be59e9c1f]
|
|
44
|
+
- @ilo-org/themes@0.7.2
|
|
45
|
+
|
|
46
|
+
## 0.14.0
|
|
47
|
+
|
|
48
|
+
### Minor Changes
|
|
49
|
+
|
|
50
|
+
- 138890e7a: implemented new icon component
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- ac23bf484: Add clear button to search input field
|
|
55
|
+
- 1b9c54f99: Fix alignment in navigation header label and icon
|
|
56
|
+
|
|
57
|
+
## 0.13.3
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- 4153f99b5: Removed black bars from youtube ebedded video
|
|
62
|
+
- c8de2b695: Fix reset tag button having a bigger height than other tags
|
|
63
|
+
- 7472dd625: Fix spacing when the date is not shown in the feature card
|
|
64
|
+
- bf4432d7c: Force logo to appear a standard height in Navigation
|
|
65
|
+
- 1ed3123ae: Re-implemented video.js styles
|
|
66
|
+
- f76a35fdc: Refactor spacing in profile and cardgroup to use new mixin
|
|
67
|
+
- a3c872512: separated labels for breadcrumbs
|
|
68
|
+
- 056754038: Revise and refactor color names with the same values and remove duplicates and replace where it was used
|
|
69
|
+
- 4bbac5457: Fix padding and ending quote missing issue in pullquote
|
|
70
|
+
- e1000fbbd: added legacy classname for react video component
|
|
71
|
+
- ac58b53d2: Fix breadcrumb getting hidden in small devices
|
|
72
|
+
- 51b20d4aa: Remove gap between forward and end button in pagination
|
|
73
|
+
- 52eeae214: Refactor default heading styles in richtext
|
|
74
|
+
- 709675b79: Refactor text alignment on accordion on small devices and fix rtl design bug
|
|
75
|
+
- Updated dependencies [056754038]
|
|
76
|
+
- @ilo-org/themes@0.7.1
|
|
77
|
+
|
|
78
|
+
## 0.13.2
|
|
79
|
+
|
|
80
|
+
### Patch Changes
|
|
81
|
+
|
|
82
|
+
- 16dea2974: Add spacing to iframes in richtext
|
|
83
|
+
- 0d0341a3c: Fix padding between arrow and label content in table of contents to prevent overlap
|
|
84
|
+
|
|
85
|
+
## 0.13.1
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- 08a2141cc: Refactor link hover bottom border
|
|
90
|
+
- dea2d0a07: Fix link position on RTL on feature card
|
|
91
|
+
|
|
92
|
+
## 0.13.0
|
|
93
|
+
|
|
94
|
+
### Minor Changes
|
|
95
|
+
|
|
96
|
+
- 6fe60e0d6: Add a `gap` setting to the hero card that allows the developer to set an optional background color on the entire Hero,
|
|
97
|
+
which fills the "gap" between the bottom of the Hero Card and the bottom of the hero image when `align` is set to `bottom` or `baseline`. Options are `transparent`, `white`, `light` and `dark`.
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- df7080c80: Used popper library to handle tooltip
|
|
102
|
+
- c5eaabd55: Support RTL for accordion
|
|
103
|
+
- 720825342: Fix accordion spacing
|
|
104
|
+
- 6f86e7a94: Add margin to accordion to prevent overflow
|
|
105
|
+
- 94b03b9be: Make card animations smoother
|
|
106
|
+
- c54ce9923: Fix Breadcrumb spacing vis-a-vis Hero
|
|
107
|
+
- 9ed7b873d: build(deps-dev): bump postcss from 8.4.21 to 8.4.31
|
|
108
|
+
- c173ec9f8: Tweak breadcrumb spacing, particularly in RTL
|
|
109
|
+
|
|
110
|
+
## 0.12.0
|
|
111
|
+
|
|
112
|
+
### Minor Changes
|
|
113
|
+
|
|
114
|
+
- ed548bcfc: Truncate text of breadcrumbs when it exceeds 40 chars
|
|
115
|
+
- bf1ec0843: Truncate long text in tags
|
|
116
|
+
|
|
117
|
+
### Patch Changes
|
|
118
|
+
|
|
119
|
+
- 34c8c9a8f: Refactor RTL style using dir in Breadcrumb
|
|
120
|
+
- 05a5a4b84: Refactor RTL style using dir in image and caption
|
|
121
|
+
- cf4d43446: added hover effect for anchor item inside indented linked list
|
|
122
|
+
- e8cec8dfc: Refactor RTL style using dir in linklist and fix style bug
|
|
123
|
+
- 045602383: Hero caption should appear above the hero card when justify is set to offset
|
|
124
|
+
- 5e051fc7a: corrected promo card spacing
|
|
125
|
+
- d74847eff: Refactor RTL style using dir in cards
|
|
126
|
+
- b04dd21bb: Refactor RTL style using dir in navigation
|
|
127
|
+
- 060748c0f: Refactor rtl style using dir in text area
|
|
128
|
+
- ff62947c3: Refactor RTL style using dir in dropdown
|
|
129
|
+
- 02a0e177e: Use dir="rtl" to manage RTL layouts in Hero and correctly position RTL Hero Caption
|
|
130
|
+
- a010a5077: reworked media components with new spacing utility
|
|
131
|
+
- 9b960abc2: Update Detail Card spacing
|
|
132
|
+
- 55f0c47aa: Added chained hover effect for video play button
|
|
133
|
+
- 30b275924: Support rtl in statcard
|
|
134
|
+
- 690efdabb: Refactor rtl style using dir in table of contents
|
|
135
|
+
- e48c3cdbd: reworked spacing values for content category and fix design bugs.
|
|
136
|
+
- 01c4126c2: reworked spacing for user interface and transition components
|
|
137
|
+
- 309733cdd: reworked spacing values for form category and fix design bugs.
|
|
138
|
+
- 2b02101ef: Refactor rtl to use dir in richtext
|
|
139
|
+
- 4a5afb00e: refatored bare padding values with new spacing tokens for card components
|
|
140
|
+
- aa4dce006: Refactor RTL style in tag
|
|
141
|
+
- 1794fc434: Fixed hover state styling in tab button
|
|
142
|
+
- c885bf0cd: reduced play button size for ended video
|
|
143
|
+
- ea4ac05ea: rewroked spacing for navigation components
|
|
144
|
+
- 3be0a12ac: reduced padding for accordion inner panel
|
|
145
|
+
- f0dbaa608: Update intro spacing for all cards
|
|
146
|
+
- b976f7221: Fix ol showing icon instead of numbers
|
|
147
|
+
- ca463b9b7: added full width on mobile viewport for affected cards
|
|
148
|
+
- 6d089ba7f: Set box-sizing in fieldsets
|
|
149
|
+
- ec4cec224: Refactor RTL style using dir in seachfield
|
|
150
|
+
- a8ce5d3fc: Make sure form elements have box-sizing: border-box
|
|
151
|
+
- bec744d2e: Refactor rtl to use dir in social media
|
|
152
|
+
- 6be769d3f: Refactor rtl to use dir in video
|
|
153
|
+
- 5df8f748a: fixed text input invalid state
|
|
154
|
+
- ee17a3bd2: Top spacing should be removed in hero card when there is no image
|
|
155
|
+
- cfba6422c: Make sure Breadcrumb shows first link when condensed with ellipses
|
|
156
|
+
- 03d0b6549: reworked spacing for feedback components
|
|
157
|
+
- b972abe2e: Fix bug where long Hero titles would stretch the Hero Card when set to justify start, ignoring the size property of the card.
|
|
158
|
+
- 1e58f9c7d: Allow added offset for Hero Card when justify is set to offset
|
|
159
|
+
- f0e5b51b9: Add blue border on Text Card hover
|
|
160
|
+
- 76db527a0: Refactor RTL style using dir in tabs
|
|
161
|
+
- 70c645779: Refactor RTL style using dir in herocard
|
|
162
|
+
- 86189a0d7: Update card crop shadows
|
|
163
|
+
- Updated dependencies [4522e79de]
|
|
164
|
+
- Updated dependencies [bf1ec0843]
|
|
165
|
+
- Updated dependencies [ccdb35c99]
|
|
166
|
+
- Updated dependencies [5df8f748a]
|
|
167
|
+
- Updated dependencies [ee17a3bd2]
|
|
168
|
+
- @ilo-org/themes@0.7.0
|
|
169
|
+
|
|
170
|
+
## 0.11.2
|
|
171
|
+
|
|
172
|
+
### Patch Changes
|
|
173
|
+
|
|
174
|
+
- 9b1d93031: Fix various styling issues with the Profile.
|
|
175
|
+
- 632a16fcf: Prevent horizontal scrollbar from appearing in Tab content in some browsers
|
|
176
|
+
- b8e8265ce: Fix nav logo no appearing in Firefox
|
|
177
|
+
- 7dedac6dd: Fix Callout styles
|
|
178
|
+
- 8d912f712: Make the accordion function properly inside a modal window. This also smoothens animations and simplifies the accordion styles.
|
|
179
|
+
- 50ed7febf: Align source to the bottom of Stat Cards
|
|
180
|
+
- 44e42762f: fixed input border-radius on iOS Safari
|
|
181
|
+
- Updated dependencies [1f7525b0d]
|
|
182
|
+
- @ilo-org/fonts@0.1.2
|
|
183
|
+
|
|
184
|
+
## 0.11.1
|
|
185
|
+
|
|
186
|
+
### Patch Changes
|
|
187
|
+
|
|
188
|
+
- Updated dependencies [78f48eff5]
|
|
189
|
+
- Updated dependencies [03b3c26e4]
|
|
190
|
+
- @ilo-org/fonts@0.1.1
|
|
191
|
+
|
|
192
|
+
## 0.11.0
|
|
193
|
+
|
|
194
|
+
### Minor Changes
|
|
195
|
+
|
|
196
|
+
- b7fcf3426: Data Card dataset field takes an optional `cta` argument that renders a list of secondary buttons with possible headline
|
|
197
|
+
|
|
198
|
+
### Patch Changes
|
|
199
|
+
|
|
200
|
+
- 27624a076: Correct spacing in Data Card
|
|
201
|
+
|
|
202
|
+
## 0.10.6
|
|
203
|
+
|
|
204
|
+
### Patch Changes
|
|
205
|
+
|
|
206
|
+
- 266671491: Hero Card and Breadcrumbs get their padding-inline-start value from a CSS variable calculated in the Hero
|
|
207
|
+
- 244fae9db: Prevent artifact from appearing between the Hero Card and the card offset space in Chrome
|
|
208
|
+
- 1a6d0671f: Align Hero Card content with main body content when `justify` is set to `start` or `offset`
|
|
209
|
+
- 371faf0fb: Fix alignment of Hero Card content in RTL layouts
|
|
210
|
+
|
|
211
|
+
## 0.10.5
|
|
212
|
+
|
|
213
|
+
### Patch Changes
|
|
214
|
+
|
|
215
|
+
- 2c4331403: Set opacity with decimals instead of percents to prevent cssnano from clamping values at 1%.
|
|
216
|
+
- Updated dependencies [2c4331403]
|
|
217
|
+
- @ilo-org/themes@0.6.1
|
|
218
|
+
|
|
219
|
+
## 0.10.4
|
|
220
|
+
|
|
221
|
+
### Patch Changes
|
|
222
|
+
|
|
223
|
+
- 477ccf7c0: Prevent cssnano from re-setting z-indexes during compilation of stylesheets
|
|
224
|
+
|
|
225
|
+
## 0.10.3
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- 0e2e0a039: Update container margins top and bottom auto that cause issues.
|
|
230
|
+
|
|
231
|
+
## 0.10.2
|
|
232
|
+
|
|
233
|
+
### Patch Changes
|
|
234
|
+
|
|
235
|
+
- ee517d0f2: Add margin bottom to the pagination.
|
|
236
|
+
- 71002bcde: Correctly centers Hero Card when it's justify centred by taking into account the width of the caption
|
|
237
|
+
- 703bc66a6: Offset Hero Card from the edge of the window so it lines up with content in the main content area
|
|
238
|
+
- 9be1cd23e: Breadcrumbs in the Hero should be aligned with the main content area
|
|
239
|
+
- Updated dependencies [ad52c6442]
|
|
240
|
+
- @ilo-org/themes@0.6.0
|
|
241
|
+
|
|
242
|
+
## 0.10.1
|
|
243
|
+
|
|
244
|
+
### Patch Changes
|
|
245
|
+
|
|
246
|
+
- c3b0e6def: In Form Controls, fix the arrangement of elements (label, input, helper and upload list), especially in the case of the File Upload
|
|
247
|
+
- 39ff32a91: Fix appearance of Radio buttons in Firefox
|
|
248
|
+
- 0488bc66e: Fix padding in Hero Card
|
|
249
|
+
- c86fa4f33: Fix tooltip icon appearing in the wrong color. This adds a new parameter `icontheme` for the tooltip, which defaults to light.
|
|
250
|
+
- Updated dependencies [0488bc66e]
|
|
251
|
+
- @ilo-org/themes@0.5.1
|
|
252
|
+
|
|
253
|
+
## 0.10.0
|
|
254
|
+
|
|
255
|
+
### Minor Changes
|
|
256
|
+
|
|
257
|
+
- 6c4ebfeb3: Add layout .`container` class with theme values for maxWidth and padding that automatically center itself in its container.
|
|
258
|
+
|
|
259
|
+
### Patch Changes
|
|
260
|
+
|
|
261
|
+
- 1e18e0ca9: Fix RTL styles for social media component
|
|
262
|
+
- ad590b833: Use container class to set max widths and padding for Navigation
|
|
263
|
+
- e575c2973: Fit content in the footer inside a 1300px max-width container
|
|
264
|
+
- e575c2973: Various style fixes in the Footer including to RTL layouts
|
|
265
|
+
- Updated dependencies [73640499b]
|
|
266
|
+
- @ilo-org/themes@0.5.0
|
|
267
|
+
|
|
268
|
+
## 0.9.2
|
|
269
|
+
|
|
270
|
+
### Patch Changes
|
|
271
|
+
|
|
272
|
+
- Updated dependencies [3290283dd]
|
|
273
|
+
- @ilo-org/themes@0.4.0
|
|
274
|
+
|
|
275
|
+
## 0.9.1
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- 5a4a7255a: Fix navigation spacing and styles
|
|
280
|
+
- 5a4a7255a: Fix grid spacing between form control elements
|
|
281
|
+
- Updated dependencies [5a4a7255a]
|
|
282
|
+
- @ilo-org/themes@0.3.0
|
|
283
|
+
|
|
284
|
+
## 0.9.0
|
|
285
|
+
|
|
286
|
+
### Minor Changes
|
|
287
|
+
|
|
288
|
+
- 897fe5766: This release includes refactored form components and styles. Whereas before, the Form component took all of the props for all of the form components itself and determined which to render based on data, this release exposes all of the individual form components directly to the developer. The Form component is refactored as a simple wrapper around an HTML form element, which includes a `theme` prop modifying the label and text colors for use on dark backgrounds. Otherwise, it simply provides a layout for different form elements. The Fieldset is used as a layout wrapper to group multiple related form components together, especially theRadio and Checkbox, for which it can also handle error messages. All form components provide access to the underlying form element (usually an `input`) via a `ref` prop.
|
|
289
|
+
|
|
290
|
+
### Patch Changes
|
|
291
|
+
|
|
292
|
+
- 897fe5766: fix label/icon misalignment issue
|
|
293
|
+
- 897fe5766: Fix error styles for radio buttons
|
|
294
|
+
|
|
295
|
+
## 0.8.4
|
|
296
|
+
|
|
297
|
+
### Patch Changes
|
|
298
|
+
|
|
299
|
+
- 58bc8ff88: Ensure cards in card group take up full width of card group and always have the same gap
|
|
300
|
+
- 58a708c3a: Ensure Hero can expand to the full width of its container
|
|
301
|
+
|
|
302
|
+
## 0.8.3
|
|
303
|
+
|
|
304
|
+
### Patch Changes
|
|
305
|
+
|
|
306
|
+
- cefc8690e: Correctly apply max-width to card wrappers
|
|
307
|
+
|
|
308
|
+
## 0.8.2
|
|
309
|
+
|
|
310
|
+
### Patch Changes
|
|
311
|
+
|
|
312
|
+
- 270805a67: Avoid card wrappers getting stretched beyond the width of the actual component
|
|
313
|
+
- 9ed7f815a: Cards should have white background by default
|
|
314
|
+
- c81b76d1a: All cards in card group should be the same height.
|
|
315
|
+
- bffee71ef: In Feature Card, push dates and ctas to the bottom of the card
|
|
316
|
+
|
|
317
|
+
## 0.8.1
|
|
318
|
+
|
|
319
|
+
### Patch Changes
|
|
320
|
+
|
|
321
|
+
- 5887810c3: Feature Card, prevent image from distorting
|
|
322
|
+
|
|
323
|
+
## 0.8.0
|
|
324
|
+
|
|
325
|
+
### Minor Changes
|
|
326
|
+
|
|
327
|
+
- 9edcc451f: Add 2-column layout for Data Cards. `columns` setting allows users to choose preferred layout option.
|
|
328
|
+
|
|
329
|
+
### Patch Changes
|
|
330
|
+
|
|
331
|
+
- 9edcc451f: Fix spacing in data card to match designs
|
|
332
|
+
|
|
333
|
+
## 0.7.2
|
|
334
|
+
|
|
335
|
+
### Patch Changes
|
|
336
|
+
|
|
337
|
+
- 0cb90a388: Prevent caption from appearing on top of hero card when it's aligned bottom and justified start
|
|
338
|
+
- b0797d2f9: Fixes RTL styles in hero. As for other components, adding the `right-to-left` class to any parent of Hero now correctly renders the RTL styles.
|
|
339
|
+
|
|
340
|
+
## 0.7.1
|
|
341
|
+
|
|
342
|
+
### Patch Changes
|
|
343
|
+
|
|
344
|
+
- 0fd4b60df: - In Card Group, set `theme` and `type` properties for Cards on Card Group, not on invididual cards
|
|
345
|
+
- Use `cardcount` to determine how many cards should be in a row and how wide they should be.
|
|
346
|
+
|
|
347
|
+
## 0.7.0
|
|
348
|
+
|
|
349
|
+
### Minor Changes
|
|
350
|
+
|
|
351
|
+
- bdeca8720: Refactor the Card Group in line with changes made to the Cards.
|
|
352
|
+
|
|
353
|
+
- Width of the cards in the card group are set via a new `size` property that uses the `size` property of the cards in the group.
|
|
354
|
+
- A new `collapsed` property optionally removes the space between the cards so they are touching.
|
|
355
|
+
- A new `justify` property allows the user to horizontally align the cards to the beginning or center, or to the left and right edges of the container.
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- ba46a3a7d: Complete refactor of card styles.
|
|
360
|
+
- bbd9262d1: Fix bug preventing sub-links in multilink card from being clickable
|
|
361
|
+
- ee14cd3d3: changed spaces between cards
|
|
362
|
+
- b56d55cfd: Cards: fix unlinked text changing colors on hover
|
|
363
|
+
- 5022dfc4c: Fix bug where profile in dark themed graphic card had unreadable white text on hover
|
|
364
|
+
- bacc0bba7: Fix hero image corner cut
|
|
365
|
+
- ba46a3a7d: Use clip-path for cornercuts instead of pseudoelements and svgs
|
|
366
|
+
- 652966ab7: Add `fluid` size to cards allowing them to take the full width of their container.
|
|
367
|
+
|
|
368
|
+
## 0.6.0
|
|
369
|
+
|
|
370
|
+
### Minor Changes
|
|
371
|
+
|
|
372
|
+
- c0648530f: Accordion items can now be made scrollable by passing `scroll: true` to the Accordion Panel component.
|
|
373
|
+
- 0dc9a8538: Add LogoGrid component which shows a list of logos with an optional link
|
|
374
|
+
|
|
375
|
+
## 0.5.0
|
|
376
|
+
|
|
377
|
+
### Minor Changes
|
|
378
|
+
|
|
379
|
+
- 0f45a7aae: Add styles for new social media component
|
|
380
|
+
|
|
381
|
+
### Patch Changes
|
|
382
|
+
|
|
383
|
+
- 0f45a7aae: Remove unneeded styles from footer which are now in social media component
|
|
384
|
+
- 2f6b0e73f: added background color white to the content tabs
|
|
385
|
+
- Updated dependencies [0f45a7aae]
|
|
386
|
+
- Updated dependencies [0f45a7aae]
|
|
387
|
+
- @ilo-org/themes@0.2.0
|
|
388
|
+
- @ilo-org/icons@0.2.1
|
|
389
|
+
|
|
390
|
+
## 0.4.0
|
|
391
|
+
|
|
392
|
+
### Minor Changes
|
|
393
|
+
|
|
394
|
+
- 6a7dbe609: Refactor hero and hero card, expose more options for styling and positioning and remove params that tied layout options to template names
|
|
395
|
+
- b498c19c4: Add support for tiktok and flickr social media links in footer
|
|
396
|
+
|
|
397
|
+
### Patch Changes
|
|
398
|
+
|
|
399
|
+
- Updated dependencies [5df0bb1a9]
|
|
400
|
+
- Updated dependencies [51b4be31a]
|
|
401
|
+
- @ilo-org/icons@0.2.0
|
|
402
|
+
- @ilo-org/themes@0.1.16
|
|
403
|
+
|
|
404
|
+
## 0.3.5
|
|
405
|
+
|
|
406
|
+
### Patch Changes
|
|
407
|
+
|
|
408
|
+
- 11801070b: Change request for videojs player to be able to work with Youtube videos.
|
|
409
|
+
- 1b942833b: Remove max-width for the video component. Not needed.
|
|
410
|
+
|
|
411
|
+
## 0.3.4
|
|
412
|
+
|
|
413
|
+
### Patch Changes
|
|
414
|
+
|
|
415
|
+
- ee2e53f51: Fix bug where whole nav disappeared when user clicked more button
|
|
416
|
+
|
|
417
|
+
## 0.3.3
|
|
418
|
+
|
|
419
|
+
### Patch Changes
|
|
420
|
+
|
|
421
|
+
- ee859111c: Fix bug where links in language toggle were still clickable even when not showing
|
|
422
|
+
- ee859111c: Correct hero card with
|
|
423
|
+
- ee859111c: Correctly handle visibility of mobile nav sections when they're covered by other parts
|
|
424
|
+
|
|
425
|
+
## 0.3.2
|
|
426
|
+
|
|
427
|
+
### Patch Changes
|
|
428
|
+
|
|
429
|
+
- be8262383: Use css fonts file for monorepo
|
|
430
|
+
- be8262383: Get monorepo fonts from css instead of from sass
|
|
431
|
+
- 36960e383: Transpile and export global css for components
|
|
432
|
+
- @ilo-org/icons@0.1.17
|
|
433
|
+
|
|
434
|
+
## 0.3.1
|
|
435
|
+
|
|
436
|
+
### Patch Changes
|
|
437
|
+
|
|
438
|
+
- e5c100219: Correctly export files in styles/css dir
|
|
439
|
+
|
|
440
|
+
## 0.3.0
|
|
441
|
+
|
|
442
|
+
### Minor Changes
|
|
443
|
+
|
|
444
|
+
- 8bc52db6e: Create a new build folder called css which includes both the bundled stylesheets as well as the compiled css for each of the components.
|
|
445
|
+
|
|
446
|
+
## 0.2.1
|
|
447
|
+
|
|
448
|
+
### Patch Changes
|
|
449
|
+
|
|
450
|
+
- bac3cc9d5: Fix bug preventing the sub-brand from rendering with the proper font size on some mobile browsers
|
|
451
|
+
|
|
452
|
+
## 0.2.0
|
|
453
|
+
|
|
454
|
+
### Minor Changes
|
|
455
|
+
|
|
456
|
+
- c24a5f721: Adds responsive logo component and styles
|
|
457
|
+
|
|
458
|
+
### Patch Changes
|
|
459
|
+
|
|
460
|
+
- 2aa1f1cc6: feat/react: Implementation of Card and CardGroup components
|
|
461
|
+
- 2aa1f1cc6: enable profile to be themeable and address a few minor style issues
|
|
462
|
+
|
|
463
|
+
## 0.1.19
|
|
464
|
+
|
|
465
|
+
### Patch Changes
|
|
466
|
+
|
|
467
|
+
- 1405b9cbf: Fix logo not appearing in Navigation
|
|
468
|
+
|
|
469
|
+
## 0.1.18
|
|
470
|
+
|
|
471
|
+
### Patch Changes
|
|
472
|
+
|
|
473
|
+
- 2f60e9d92: Correct local navigation styles
|
|
474
|
+
- c9413b943: Fix small line showing through nav component diagonal at some viewports
|
|
475
|
+
|
|
476
|
+
## 0.1.17
|
|
477
|
+
|
|
478
|
+
### Patch Changes
|
|
479
|
+
|
|
480
|
+
- Updated dependencies [391687e3e]
|
|
481
|
+
- @ilo-org/fonts@0.1.0
|
|
482
|
+
|
|
483
|
+
## 0.1.16
|
|
484
|
+
|
|
485
|
+
### Patch Changes
|
|
486
|
+
|
|
487
|
+
- @ilo-org/icons@0.1.16
|
|
488
|
+
|
|
489
|
+
## 0.1.15
|
|
490
|
+
|
|
491
|
+
### Patch Changes
|
|
492
|
+
|
|
493
|
+
- 8e24e57fc: We've fixed broken exports from @ilo-org/react and ensured that types are exported properly as well. We've upgraded the @ilo-org/react Storybook project to version 7.0.0-beta. This has required us to decouple the installation and build scripts of the react and storybook projects. It's no longer possible to install dependencies and then build both storybook projects together. Instead, users should run `pnpm react:install` or `pnpm twig:install` before building the respective Storbyook project. This should be fixed when Wingsuit upgrades to Webpack5.
|
|
494
|
+
- Updated dependencies [8e24e57fc]
|
|
495
|
+
- @ilo-org/themes@0.1.15
|
|
496
|
+
- @ilo-org/fonts@0.0.7
|
|
497
|
+
- @ilo-org/icons@0.1.15
|
|
498
|
+
|
|
499
|
+
## 0.1.14
|
|
500
|
+
|
|
501
|
+
### Patch Changes
|
|
502
|
+
|
|
503
|
+
- b48b386b8: Local nav color for the background is a setting now
|
|
504
|
+
- Updated dependencies [b48b386b8]
|
|
505
|
+
- @ilo-org/fonts@0.0.6
|
|
506
|
+
- @ilo-org/icons@0.1.14
|
|
507
|
+
- @ilo-org/themes@0.1.14
|
|
508
|
+
|
|
509
|
+
## 0.1.13
|
|
510
|
+
|
|
511
|
+
### Patch Changes
|
|
512
|
+
|
|
513
|
+
- 62c3c624e: Bugfixes in multiple components
|
|
514
|
+
- 1b29018f0: Adds better React Storybook experience
|
|
515
|
+
- 43c2b0026: Cornercut changes to make more consistent across sizes and breakpoints for hero and cards
|
|
516
|
+
- Updated dependencies [62c3c624e]
|
|
517
|
+
- Updated dependencies [1b29018f0]
|
|
518
|
+
- Updated dependencies [43c2b0026]
|
|
519
|
+
- @ilo-org/fonts@0.0.5
|
|
520
|
+
- @ilo-org/icons@0.1.13
|
|
521
|
+
- @ilo-org/themes@0.1.13
|
|
522
|
+
|
|
523
|
+
## 0.1.12
|
|
524
|
+
|
|
525
|
+
### Patch Changes
|
|
526
|
+
|
|
527
|
+
- 94bd642d9: ILOUAT-16: Clicking on the page should close subnav menu
|
|
528
|
+
ILOUAT-26: mobile hamburger click shouldn't auto navigate to inside link
|
|
529
|
+
ILOUAT-27: Menu take over on mobile should be the whole page without the ability to scroll past it
|
|
530
|
+
ILOUAT-37: Subnav pane should properly open when subnav items are focused
|
|
531
|
+
- a167b7405: - Border radius for context menu
|
|
532
|
+
- Mobile nav disappear on breakpoint instead of any resize event
|
|
533
|
+
- More List spacing fixes (title item)
|
|
534
|
+
- Breadcrumb on mobile in heroes
|
|
535
|
+
- Bugfixes for feature card on wide mode with list item
|
|
536
|
+
- Add in "Back to main site" link for local nav
|
|
537
|
+
- 79e17c5d3: Bufdixes to multiple components
|
|
538
|
+
- 7b3813bb1: Bugfixes to multiple components
|
|
539
|
+
- Updated dependencies [94bd642d9]
|
|
540
|
+
- Updated dependencies [a167b7405]
|
|
541
|
+
- Updated dependencies [79e17c5d3]
|
|
542
|
+
- Updated dependencies [7b3813bb1]
|
|
543
|
+
- @ilo-org/fonts@0.0.4
|
|
544
|
+
- @ilo-org/icons@0.1.12
|
|
545
|
+
- @ilo-org/themes@0.1.12
|
|
546
|
+
|
|
547
|
+
## 0.1.11
|
|
548
|
+
|
|
549
|
+
### Patch Changes
|
|
550
|
+
|
|
551
|
+
- f7f448c65: Fixes to React radio button, SearchField, add ability to serve different langauge fonts
|
|
552
|
+
- f4b7bcb7f: Local nav fixes for mobile
|
|
553
|
+
- 0dfb90274: Patchfix for Feature card wide version
|
|
554
|
+
- Updated dependencies [f7f448c65]
|
|
555
|
+
- Updated dependencies [f4b7bcb7f]
|
|
556
|
+
- Updated dependencies [0dfb90274]
|
|
557
|
+
- @ilo-org/fonts@0.0.3
|
|
558
|
+
- @ilo-org/themes@0.1.11
|
|
559
|
+
- @ilo-org/icons@0.1.11
|
|
560
|
+
|
|
561
|
+
## 0.1.10
|
|
562
|
+
|
|
563
|
+
### Patch Changes
|
|
564
|
+
|
|
565
|
+
- fdba39df6: Adjust card widths
|
|
566
|
+
- 592c40ae9: Hover fix for data card and breadcrumb for hero
|
|
567
|
+
- 3005bb74c: Fixes to Video, Accordion, List, Checkbox, favicon
|
|
568
|
+
- b72b8aa9e: Update README; various bugfixes with Table, Footer, Notification, Video, RichText
|
|
569
|
+
- d7015e194: - Tag fixes for consistent font size
|
|
570
|
+
- Accordion transition, font size and height fixes
|
|
571
|
+
- Tooltip transition fix
|
|
572
|
+
- Cards padding and anchor the date on feature cards
|
|
573
|
+
- List fix font sizes on mobile
|
|
574
|
+
- Callout fix transition timing
|
|
575
|
+
- 6ba8ee615: Documentation for wingusit
|
|
576
|
+
- Updated dependencies [592c40ae9]
|
|
577
|
+
- Updated dependencies [b72b8aa9e]
|
|
578
|
+
- Updated dependencies [d7015e194]
|
|
579
|
+
- Updated dependencies [6ba8ee615]
|
|
580
|
+
- @ilo-org/icons@0.1.10
|
|
581
|
+
- @ilo-org/themes@0.1.10
|
|
582
|
+
|
|
583
|
+
## 0.1.9
|
|
584
|
+
|
|
585
|
+
### Patch Changes
|
|
586
|
+
|
|
587
|
+
- 48e7a4ada: - Hero: Breadcrumb add in
|
|
588
|
+
- Cards: Video icon for feature and external link option
|
|
589
|
+
- 2bfdfd356: Fixes to Hero, Cards components
|
|
590
|
+
- Updated dependencies [48e7a4ada]
|
|
591
|
+
- @ilo-org/icons@0.1.9
|
|
592
|
+
- @ilo-org/themes@0.1.9
|
|
593
|
+
|
|
594
|
+
## 0.1.8
|
|
595
|
+
|
|
596
|
+
### Patch Changes
|
|
597
|
+
|
|
598
|
+
- 069cd8eaf: FIxes to cards
|
|
599
|
+
- a76395618: ESC exits out of toggle menus in the nav
|
|
600
|
+
- 8cd74234c: Bugfixes to Tag, Tooltip, Callout, Checkbox, LinkList
|
|
601
|
+
- Updated dependencies [069cd8eaf]
|
|
602
|
+
- Updated dependencies [a76395618]
|
|
603
|
+
- Updated dependencies [8cd74234c]
|
|
604
|
+
- @ilo-org/themes@0.1.8
|
|
605
|
+
- @ilo-org/icons@0.1.8
|
|
606
|
+
|
|
607
|
+
## 0.1.7
|
|
608
|
+
|
|
609
|
+
### Patch Changes
|
|
610
|
+
|
|
611
|
+
- 84fd6bc7d: Bugfixes with several components
|
|
612
|
+
- 6e470111a: Nav, Card and Hero fixes for QA
|
|
613
|
+
- Updated dependencies [6e470111a]
|
|
614
|
+
- @ilo-org/icons@0.1.7
|
|
615
|
+
- @ilo-org/themes@0.1.7
|
|
616
|
+
|
|
617
|
+
## 0.1.6
|
|
618
|
+
|
|
619
|
+
### Patch Changes
|
|
620
|
+
|
|
621
|
+
- b65d5c4c1: Various bugfixes
|
|
622
|
+
- 487778036: CHangeset wasn't detected by github
|
|
623
|
+
- ab6c0a1c7: Set all packages to rely on latest fixed version of other internal packages
|
|
624
|
+
- d2b78bb88: Right to left for Profile component
|
|
625
|
+
- dd2b3ece6: YHet another changeset, perhaps something is broken with changesets
|
|
626
|
+
- Updated dependencies [b65d5c4c1]
|
|
627
|
+
- Updated dependencies [ab6c0a1c7]
|
|
628
|
+
- @ilo-org/icons@0.1.6
|
|
629
|
+
- @ilo-org/themes@0.1.6
|
|
630
|
+
|
|
631
|
+
## 0.1.5
|
|
632
|
+
|
|
633
|
+
### Patch Changes
|
|
634
|
+
|
|
635
|
+
- a3bd6c73c: Bugfixes for Form, Loading components
|
|
636
|
+
- aa8469ceb: Remove testing code from hero and add RTL style for tags
|
|
637
|
+
- da45da834: Bugfixes in several components
|
|
638
|
+
- 539894a90: Hero fixes for RTL and lack of image
|
|
639
|
+
- 22bda9fb8: Rename tagset to Tags to match other components and work as an npm package
|
|
640
|
+
- Updated dependencies [aa8469ceb]
|
|
641
|
+
- Updated dependencies [539894a90]
|
|
642
|
+
- Updated dependencies [22bda9fb8]
|
|
643
|
+
- @ilo-org/icons@0.1.5
|
|
644
|
+
- @ilo-org/themes@0.1.5
|
|
645
|
+
|
|
646
|
+
## 0.1.4
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- a8e627c45: Bugfixes in Form and Footer, and right-to-left styling for Form
|
|
651
|
+
- 9d25aa0e8: QA bugfixes for Nav Hero and Callout
|
|
652
|
+
- Updated dependencies [a8e627c45]
|
|
653
|
+
- Updated dependencies [9d25aa0e8]
|
|
654
|
+
- @ilo-org/icons@0.1.4
|
|
655
|
+
- @ilo-org/themes@0.1.4
|
|
656
|
+
|
|
657
|
+
## 0.1.3
|
|
658
|
+
|
|
659
|
+
### Patch Changes
|
|
660
|
+
|
|
661
|
+
- 774682316: Card fixes such as font sizes and some slight tweaks to make sure all the data is displayed
|
|
662
|
+
- 2d7d8114a: Bug fixes and right-to-left stlying for rich text, tabs, image and credit components
|
|
663
|
+
- 04fe60f9f: Mostly design bugfixes across multiple components
|
|
664
|
+
- Updated dependencies [774682316]
|
|
665
|
+
- Updated dependencies [2d7d8114a]
|
|
666
|
+
- Updated dependencies [04fe60f9f]
|
|
667
|
+
- @ilo-org/icons@0.1.3
|
|
668
|
+
- @ilo-org/themes@0.1.3
|
|
669
|
+
|
|
670
|
+
## 0.1.2
|
|
671
|
+
|
|
672
|
+
### Patch Changes
|
|
673
|
+
|
|
674
|
+
- a84c36d: Navigation RTL styles and design QA
|
|
675
|
+
- Updated dependencies [a84c36d]
|
|
676
|
+
- @ilo-org/icons@0.1.2
|
|
677
|
+
- @ilo-org/themes@0.1.2
|
|
678
|
+
|
|
679
|
+
## 0.1.1
|
|
680
|
+
|
|
681
|
+
### Patch Changes
|
|
682
|
+
|
|
683
|
+
- ce78c7a: Accordion, Callout and Hero minor bugfixing and RTL styling for Cards
|
|
684
|
+
|
|
685
|
+
- Added sizes for cards, certain cards have different padding or styles for wide/standard/narrow
|
|
686
|
+
- Changed the parameters for cardgroups, removing settings and adding type to denote variant of card
|
|
687
|
+
- Changed the way cornercut and dark settings work, including a :not selector for cards that do no utilize those features
|
|
688
|
+
|
|
689
|
+
- 04c5c4e: - Fix some narrow/wide styles for multilink
|
|
690
|
+
- Use px-to-rem
|
|
691
|
+
- Overflow on hero images
|
|
692
|
+
- max-width on mobile logos
|
|
693
|
+
- 1a7ac4f: Bugfixes for several components
|
|
694
|
+
- 2aa4aed: Bugfixes to Footer and Table components
|
|
695
|
+
- Updated dependencies [ce78c7a]
|
|
696
|
+
- Updated dependencies [04c5c4e]
|
|
697
|
+
- Updated dependencies [1a7ac4f]
|
|
698
|
+
- Updated dependencies [2aa4aed]
|
|
699
|
+
- @ilo-org/icons@0.1.1
|
|
700
|
+
- @ilo-org/themes@0.1.1
|
|
701
|
+
|
|
702
|
+
## 0.1.0
|
|
703
|
+
|
|
704
|
+
### Minor Changes
|
|
705
|
+
|
|
706
|
+
- 6bf0e10: Use context menu for language switcher and wingsuit setup for local nav
|
|
707
|
+
|
|
708
|
+
### Patch Changes
|
|
709
|
+
|
|
710
|
+
- Updated dependencies [6bf0e10]
|
|
711
|
+
- @ilo-org/icons@0.1.0
|
|
712
|
+
- @ilo-org/themes@0.1.0
|
|
713
|
+
|
|
714
|
+
## 0.0.3
|
|
715
|
+
|
|
716
|
+
### Patch Changes
|
|
717
|
+
|
|
718
|
+
- ab6fd1b: fix(monorepo): update docs and fix css affecting templating
|
|
719
|
+
- b68f6fb: Remove styles for cardgroup that should be template styles
|
|
720
|
+
|
|
721
|
+
## 0.0.2
|
|
722
|
+
|
|
723
|
+
### Patch Changes
|
|
724
|
+
|
|
725
|
+
- b61692a: CSS should default to assuming fonts are being loaded via a server rather than by means of the monorepo
|
|
726
|
+
- Updated dependencies [b61692a]
|
|
727
|
+
- @ilo-org/fonts@0.0.2
|