@aarhus-university/au-designsystem-delphinus 1.0.2 → 1.0.4

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 (29) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +2 -2
  3. package/public/figma-tokens/style.css +1 -1502
  4. package/public/js/app.js +1 -1
  5. package/public/js/demo.js +2 -2
  6. package/public/projects/bachelor-applications/js/app.js +1 -1
  7. package/public/projects/bachelor-applications/style.css +1 -9784
  8. package/public/projects/brightspace/style.css +1 -5368
  9. package/public/projects/course-catalogue/js/app.js +1 -1
  10. package/public/projects/course-catalogue/style.css +1 -9020
  11. package/public/projects/medarbejdere/js/app.js +1 -1
  12. package/public/projects/medarbejdere/style.css +1 -11845
  13. package/public/projects/mitstudie/js/app.js +1 -1
  14. package/public/projects/mitstudie/style.css +1 -11625
  15. package/public/projects/queue-it/style.css +1 -4841
  16. package/public/projects/typo3/js/app.js +1 -1
  17. package/public/projects/typo3/style.css +1 -10312
  18. package/public/style.css +1 -11126
  19. package/source/js/components/affiliate-expand.ts +17 -3
  20. package/source/js/components/helpers.ts +8 -69
  21. package/source/js/components/horizontal-scroll-btn.ts +91 -0
  22. package/source/js/production/app.ts +3 -5
  23. package/source/js/production/typo3.ts +3 -6
  24. package/source/projects/course-catalogue/markup/_course-details.pug +1 -1
  25. package/source/projects/medarbejdere/markup/_pure-profile-editor.pug +41 -34
  26. package/source/projects/medarbejdere/style/_profile-text-selector.scss +67 -0
  27. package/source/projects/medarbejdere/style.scss +1 -0
  28. package/source/projects/typo3/employee-profiles/mixins/_person-profile.pug +3 -2
  29. package/source/projects/typo3/employee-profiles/mixins/_profile-header-variants.pug +5 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 1.0.3 (July 28, 2023)
2
+
3
+ ### Core Delphinus Updates
4
+ * Restores minification for all compiled css files.
5
+ * Adjust JavaScript for [horizontal scroll](https://delphinus.au.dk/components/horizontal-scroll), so that the component now needs modifier `.horizontal-scroll--check-overflow` before JS will check for overflow and set the `.horizontal-scroll--no-overflow` modifier if the panel has no overflow.
6
+ * Adds support for scroll buttons, when [horizontal scroll](https://delphinus.au.dk/components/horizontal-scroll) is combined with [tabbed-content](https://delphinus.au.dk/components/tabbed-content).
7
+
8
+
9
+ ### Delphinus Projects Updates
10
+ #### Medarbejdere
11
+ * Adds style and markup for selecting which profile text to add in Pure editor.
12
+
13
+ #### Typo3
14
+ * Improvements for secondary affiliations-toggle in profile header.
15
+
16
+
17
+
1
18
  ## 1.0.2 (July 27, 2023)
2
19
 
3
20
  ### Core Delphinus Updates
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@aarhus-university/au-designsystem-delphinus",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "concurrently \"npm run nodemon\" \"npm run sass\" \"npm run build\"",
7
7
  "nodemon": "nodemon ./bin/www",
8
- "sass": "sass --watch source/style.scss:public/style.css source/projects/bachelor-applications/style.scss:public/projects/bachelor-applications/style.css source/projects/brightspace/style.scss:public/projects/brightspace/style.css source/projects/course-catalogue/style.scss:public/projects/course-catalogue/style.css source/projects/medarbejdere/style.scss:public/projects/medarbejdere/style.css source/projects/mitstudie/style.scss:public/projects/mitstudie/style.css source/projects/queue-it/style.scss:public/projects/queue-it/style.css source/projects/typo3/style.scss:public/projects/typo3/style.css source/demo-style.scss:public/demo-style.css source/atoms/misc/atoms-style.scss:public/atoms/atoms-style.css source/atoms/misc/atom-iframe.scss:source/atoms/misc/atom-iframe.css source/atoms/fonts/atom-fonts.scss:public/atoms/fonts/atom-fonts.css source/atoms/colors/atom-colors.scss:public/atoms/colors/atom-colors.css source/atoms/spacing/atom-spacing.scss:public/atoms/spacing/atom-spacing.css source/style/module-demo/demo-component.scss:public/demo/demo-component.css source/figma-tokens/cssvars/figma-tokens.scss:public/figma-tokens/style.css",
8
+ "sass": "sass --style compressed --watch source/style.scss:public/style.css source/projects/bachelor-applications/style.scss:public/projects/bachelor-applications/style.css source/projects/brightspace/style.scss:public/projects/brightspace/style.css source/projects/course-catalogue/style.scss:public/projects/course-catalogue/style.css source/projects/medarbejdere/style.scss:public/projects/medarbejdere/style.css source/projects/mitstudie/style.scss:public/projects/mitstudie/style.css source/projects/queue-it/style.scss:public/projects/queue-it/style.css source/projects/typo3/style.scss:public/projects/typo3/style.css source/demo-style.scss:public/demo-style.css source/atoms/misc/atoms-style.scss:public/atoms/atoms-style.css source/atoms/misc/atom-iframe.scss:source/atoms/misc/atom-iframe.css source/atoms/fonts/atom-fonts.scss:public/atoms/fonts/atom-fonts.css source/atoms/colors/atom-colors.scss:public/atoms/colors/atom-colors.css source/atoms/spacing/atom-spacing.scss:public/atoms/spacing/atom-spacing.css source/style/module-demo/demo-component.scss:public/demo/demo-component.css source/figma-tokens/cssvars/figma-tokens.scss:public/figma-tokens/style.css",
9
9
  "build": "node ./esbuild.mjs"
10
10
  },
11
11
  "dependencies": {