@aarhus-university/au-designsystem-delphinus 0.35.3 → 0.37.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/CHANGELOG.md +20 -0
- package/build/changelog.html +19 -1
- package/build/projects/bachelor-applications/style.css +1 -1
- package/build/projects/bachelor-applications/style.css.map +1 -1
- package/build/projects/brightspace/style.css +1 -1
- package/build/projects/brightspace/style.css.map +1 -1
- package/build/projects/course-catalogue/style.css +1 -1
- package/build/projects/course-catalogue/style.css.map +1 -1
- package/build/projects/medarbejdere/style.css +1 -1
- package/build/projects/medarbejdere/style.css.map +1 -1
- package/build/projects/mitstudie/style.css +1 -1
- package/build/projects/mitstudie/style.css.map +1 -1
- package/build/projects/typo3/style.css +1 -1
- package/build/projects/typo3/style.css.map +1 -1
- package/build/style.css +1 -1
- package/build/style.css.map +1 -1
- package/package.json +1 -1
- package/source/markup/components/cards.pug +1 -1
- package/source/markup/components/list-navigator.pug +4 -4
- package/source/markup/form-example-change-password.pug +13 -0
- package/source/markup/form-fields.pug +2 -126
- package/source/markup/form-file-upload.pug +30 -12
- package/source/markup/form-inline-select.pug +42 -0
- package/source/markup/form-invalid.pug +6 -71
- package/source/markup/form-locked.pug +15 -83
- package/source/markup/form-search.pug +10 -53
- package/source/markup/form-visually-disabled.pug +17 -87
- package/source/markup/form.pug +33 -14
- package/source/markup/partials/mixins/_form-field.pug +66 -0
- package/source/markup/partials/mixins/_switch.pug +2 -1
- package/source/markup/partials/mixins-demo/_form-fields-demo.pug +183 -0
- package/source/markup/partials/mixins-demo/_nav-form.pug +6 -5
- package/source/projects/course-catalogue/markup/_course-cards.pug +1 -1
- package/source/projects/medarbejdere/pure-profile-editor-links.pug +1 -1
- package/source/projects/mitstudie/student-id.pug +8 -10
- package/source/projects/mitstudie/style/_student-id.scss +5 -1
- package/source/projects/typo3/employee-profiles/mixins/_contact-list.pug +1 -1
- package/source/style/_sass-variables.scss +1 -0
- package/source/style/base/_buttons.scss +5 -1
- package/source/style/base/_forms.scss +103 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 0.37.0 (March 10, 2023)
|
|
2
|
+
|
|
3
|
+
### Core Delphinus Updates
|
|
4
|
+
* **CHANGED:** When setting form fields in a `fieldset` invalid you now need to add the `.form-info--error` class to both the `fieldset` and each `.form__field` that is invalid. Before, setting the class on the `.form__field`'s individually would have no effect and it would look like all fields in the set were invalid.
|
|
5
|
+
* Fixes active state of `input(type="submit")` in processing state.
|
|
6
|
+
|
|
7
|
+
### Delphinus Projects Updates
|
|
8
|
+
#### Mit Studie
|
|
9
|
+
* Markup and style for [student id-image upload](https://delphinus.au.dk/projects/mitstudie/student-id) updated to use new markup for [file upload](https://delphinus.au.dk/form-file-upload) introduced in 0.36.0.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## 0.36.0 (March 8, 2023)
|
|
13
|
+
|
|
14
|
+
### Core Delphinus Updates
|
|
15
|
+
* Adds new style and markup for [uploading files](https://delphinus.au.dk/form-file-upload) in a form.
|
|
16
|
+
|
|
17
|
+
### Delphinus Projects Updates
|
|
18
|
+
None
|
|
19
|
+
|
|
20
|
+
|
|
1
21
|
## 0.35.3 (March 7, 2023)
|
|
2
22
|
|
|
3
23
|
### Core Delphinus Updates
|
package/build/changelog.html
CHANGED
|
@@ -17,7 +17,25 @@ a(href="/components" class= active_nav_item=="components" ? "nav__item--active"
|
|
|
17
17
|
a(href="/atom-fonts.html" class= active_nav_item=="atoms" ? "nav__item--active" : "").nav__item Atoms
|
|
18
18
|
a(href="/code.html" class= active_nav_item=="code" ? "nav__item--active" : "").nav__item Code
|
|
19
19
|
a(href="/projects" class= active_nav_item=="projects" ? "nav__item--active" : "").nav__item Projects
|
|
20
|
-
a(href="/changelog.html" class= active_nav_item=="changelog" ? "nav__item--active" : "").nav__item Changelog--><!--button(title="Show full menu" aria-label="Show full menu" aria-haspopup="true" aria-expanded="false" aria-controls="nav-items-global").nav__toggle Menu--></div></nav></header><main class="page__content theme--normal" id="content"><div class="page__content__block"><h1> <strong>Changelog</strong></h1><div class="changelog"><h2>0.
|
|
20
|
+
a(href="/changelog.html" class= active_nav_item=="changelog" ? "nav__item--active" : "").nav__item Changelog--><!--button(title="Show full menu" aria-label="Show full menu" aria-haspopup="true" aria-expanded="false" aria-controls="nav-items-global").nav__toggle Menu--></div></nav></header><main class="page__content theme--normal" id="content"><div class="page__content__block"><h1> <strong>Changelog</strong></h1><div class="changelog"><h2>0.37.0 (March 10, 2023)</h2>
|
|
21
|
+
<h3>Core Delphinus Updates</h3>
|
|
22
|
+
<ul>
|
|
23
|
+
<li><strong>CHANGED:</strong> When setting form fields in a <code>fieldset</code> invalid you now need to add the <code>.form-info--error</code> class to both the <code>fieldset</code> and each <code>.form__field</code> that is invalid. Before, setting the class on the <code>.form__field</code>'s individually would have no effect and it would look like all fields in the set were invalid.</li>
|
|
24
|
+
<li>Fixes active state of <code>input(type="submit")</code> in processing state.</li>
|
|
25
|
+
</ul>
|
|
26
|
+
<h3>Delphinus Projects Updates</h3>
|
|
27
|
+
<h4>Mit Studie</h4>
|
|
28
|
+
<ul>
|
|
29
|
+
<li>Markup and style for <a href="https://delphinus.au.dk/projects/mitstudie/student-id">student id-image upload</a> updated to use new markup for <a href="https://delphinus.au.dk/form-file-upload">file upload</a> introduced in 0.36.0.</li>
|
|
30
|
+
</ul>
|
|
31
|
+
<h2>0.36.0 (March 8, 2023)</h2>
|
|
32
|
+
<h3>Core Delphinus Updates</h3>
|
|
33
|
+
<ul>
|
|
34
|
+
<li>Adds new style and markup for <a href="https://delphinus.au.dk/form-file-upload">uploading files</a> in a form.</li>
|
|
35
|
+
</ul>
|
|
36
|
+
<h3>Delphinus Projects Updates</h3>
|
|
37
|
+
<p>None</p>
|
|
38
|
+
<h2>0.35.3 (March 7, 2023)</h2>
|
|
21
39
|
<h3>Core Delphinus Updates</h3>
|
|
22
40
|
<ul>
|
|
23
41
|
<li>Fix sizing of hit area on iOS when using <a href="https://delphinus.au.dk/components/switch">Switch component</a> as checkbox.</li>
|