@aarhus-university/au-designsystem-delphinus 0.26.1 → 0.26.2
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/.eslintrc.js +35 -35
- package/.git/logs/refs/heads/Changelog +2 -0
- package/.git/logs/refs/remotes/origin/Changelog +2 -0
- package/CHANGELOG.md +277 -268
- package/Gruntfile.js +418 -418
- package/README.md +5 -5
- package/babel.config.js +16 -16
- package/build/figma-tokens/color-themes.json +4 -0
- package/build/figma-tokens/design-file.json +58 -0
- package/build/figma-tokens/design-system.json +58 -0
- package/build/js/3rdparty/iframeResizer.contentWindow.min.js +9 -9
- package/build/js/3rdparty/iframeResizer.min.js +8 -8
- package/build/js/app.js +1 -1
- package/build/js/app.js.map +1 -1
- package/build/js/components/atom-picker.ts +140 -140
- package/build/js/components/content-toggle.ts +46 -46
- package/build/js/components/copy-hex-code.ts +15 -15
- package/build/js/components/helpers.ts +45 -45
- package/build/js/components/modal-view.ts +69 -69
- package/build/js/components/nav.ts +169 -169
- package/build/js/components/ready.ts +10 -10
- package/build/js/components/selection-list.ts +37 -37
- package/build/js/components/table.ts +44 -44
- package/build/js/components/tabs.ts +200 -200
- package/build/js/components/toolbar.ts +63 -63
- package/build/js/demo/app.ts +53 -53
- package/build/js/production/app.ts +67 -67
- package/build/projects/bachelor-applications/js/app.js +1 -1
- package/build/projects/bachelor-applications/js/app.js.map +1 -1
- package/build/projects/bachelor-applications/style.css +1 -1
- package/build/projects/bachelor-applications/style.css.map +81 -81
- package/build/projects/brightspace/style.css +1 -1
- package/build/projects/brightspace/style.css.map +72 -72
- package/build/projects/medarbejdere/js/app.js +1 -1
- package/build/projects/medarbejdere/js/app.js.map +1 -1
- package/build/projects/medarbejdere/style.css +1 -1
- package/build/projects/medarbejdere/style.css.map +71 -71
- package/build/projects/mitstudie/js/app.js +1 -1
- package/build/projects/mitstudie/js/app.js.map +1 -1
- package/build/projects/mitstudie/style.css +1 -1
- package/build/projects/mitstudie/style.css.map +79 -79
- package/build/projects/typo3/js/typo3.js +47 -2
- package/build/projects/typo3/js/typo3.js.map +1 -1
- package/build/projects/typo3/style.css +1 -1
- package/build/projects/typo3/style.css.map +42 -42
- package/build/style.css +1 -1
- package/build/style.css.map +75 -75
- package/package.json +56 -56
- package/source/.htaccess +14 -14
- package/source/assets/au-logo-da.svg +39 -39
- package/source/assets/au-logo-en.svg +38 -38
- package/source/assets/au-seal-white.svg +61 -61
- package/source/assets/au-seal.svg +61 -61
- package/source/assets/delphinus-favicon.svg +11 -11
- package/source/assets/delphinus-logo.svg +10 -10
- package/source/atoms/_atoms-settings.scss +117 -117
- package/source/atoms/colors/_color-functions.scss +298 -298
- package/source/atoms/colors/_colors.scss +758 -758
- package/source/atoms/colors/atom-colors.scss +484 -484
- package/source/atoms/colors.pug +101 -101
- package/source/atoms/fonts/_au-passata.scss +44 -44
- package/source/atoms/fonts/_au-peto.scss +7 -7
- package/source/atoms/fonts/_fonts.scss +161 -161
- package/source/atoms/fonts/atom-fonts.scss +156 -156
- package/source/atoms/fonts.pug +69 -69
- package/source/atoms/functions/_power.scss +65 -65
- package/source/atoms/functions/_string-replace.scss +9 -9
- package/source/atoms/misc/_atom-layout.pug +15 -15
- package/source/atoms/misc/_atom-settings.pug +5 -5
- package/source/atoms/misc/_atom-template.scss +84 -84
- package/source/atoms/misc/atom-iframe.scss +6 -6
- package/source/atoms/misc/atoms-style.scss +5 -5
- package/source/atoms/spacing/_spacing.scss +113 -113
- package/source/atoms/spacing/atom-spacing.scss +121 -121
- package/source/atoms/spacing.pug +28 -28
- package/source/demo-style.scss +6 -6
- package/source/figma-tokens/blurs-default.json +11 -11
- package/source/figma-tokens/borders-default.json +98 -98
- package/source/figma-tokens/borders-nav-item-theme.json +124 -124
- package/source/figma-tokens/borders-nav-item.json +46 -46
- package/source/figma-tokens/borders-theme.json +98 -98
- package/source/figma-tokens/borders-widths.json +45 -41
- package/source/figma-tokens/colors-all.json +404 -404
- package/source/figma-tokens/cssvars/figma-tokens.scss +182 -182
- package/source/figma-tokens/shadows-default.json +136 -136
- package/source/figma-tokens/sizes-default.json +97 -97
- package/source/figma-tokens/sizing.json +129 -129
- package/source/figma-tokens/spacing.json +266 -212
- package/source/figma-tokens/styles/breakpoint.json +97 -97
- package/source/figma-tokens/styles/theme.json +202 -202
- package/source/figma-tokens/typography-fonts.json +78 -78
- package/source/figma-tokens/typography-line-widths.json +28 -28
- package/source/figma-tokens/typography-styles.json +620 -620
- package/source/js/3rdparty/iframeResizer.contentWindow.min.js +9 -9
- package/source/js/3rdparty/iframeResizer.min.js +8 -8
- package/source/js/components/atom-picker.ts +140 -140
- package/source/js/components/content-toggle.ts +46 -46
- package/source/js/components/copy-hex-code.ts +15 -15
- package/source/js/components/helpers.ts +45 -45
- package/source/js/components/modal-view.ts +69 -69
- package/source/js/components/nav.ts +169 -169
- package/source/js/components/ready.ts +10 -10
- package/source/js/components/selection-list.ts +37 -37
- package/source/js/components/table.ts +44 -44
- package/source/js/components/tabs.ts +200 -200
- package/source/js/components/toolbar.ts +63 -63
- package/source/js/demo/app.ts +53 -53
- package/source/js/production/app.ts +67 -67
- package/source/markup/404.pug +27 -27
- package/source/markup/atom-colors.pug +25 -25
- package/source/markup/atom-fonts.pug +24 -24
- package/source/markup/atom-spacing.pug +24 -24
- package/source/markup/blockquote.pug +39 -39
- package/source/markup/buttons.pug +149 -149
- package/source/markup/code.pug +550 -550
- package/source/markup/collage.pug +48 -48
- package/source/markup/colors-theme-dark.pug +28 -28
- package/source/markup/colors-theme-normal.pug +28 -28
- package/source/markup/colors.pug +118 -118
- package/source/markup/components/artwork.pug +75 -75
- package/source/markup/components/autosuggest.pug +82 -82
- package/source/markup/components/calendar.pug +262 -262
- package/source/markup/components/content-toggle.pug +77 -77
- package/source/markup/components/datepicker.pug +190 -190
- package/source/markup/components/empty-state.pug +39 -39
- package/source/markup/components/example-settings-list.pug +187 -187
- package/source/markup/components/example-toolbar-for-filtering-table.pug +170 -170
- package/source/markup/components/fact-list.pug +114 -114
- package/source/markup/components/header-callout.pug +68 -68
- package/source/markup/components/index.pug +20 -20
- package/source/markup/components/large-bullets.pug +71 -71
- package/source/markup/components/list-navigator.pug +27 -27
- package/source/markup/components/modal-view.pug +134 -134
- package/source/markup/components/navigation-list.pug +57 -57
- package/source/markup/components/notification.pug +56 -56
- package/source/markup/components/pre-header.pug +50 -50
- package/source/markup/components/processing-state.pug +122 -122
- package/source/markup/components/progress-bar.pug +177 -177
- package/source/markup/components/receipt.pug +33 -33
- package/source/markup/components/selection-list.pug +82 -82
- package/source/markup/components/settings-list.pug +59 -59
- package/source/markup/components/stepper.pug +48 -48
- package/source/markup/components/tabbed-content.pug +88 -88
- package/source/markup/components/toast-notification.pug +90 -90
- package/source/markup/components/toggle-button.pug +61 -61
- package/source/markup/components/toolbar.pug +187 -187
- package/source/markup/components/tooltip.pug +78 -78
- package/source/markup/cookies.pug +28 -28
- package/source/markup/font-size.pug +77 -77
- package/source/markup/form-example-change-password.pug +91 -91
- package/source/markup/form-fields.pug +148 -148
- package/source/markup/form-invalid.pug +91 -91
- package/source/markup/form-locked.pug +102 -102
- package/source/markup/form-search.pug +82 -82
- package/source/markup/form-visually-disabled.pug +105 -105
- package/source/markup/form.pug +119 -119
- package/source/markup/headings.pug +59 -59
- package/source/markup/icons.pug +103 -103
- package/source/markup/index.pug +123 -123
- package/source/markup/interactivity.pug +32 -32
- package/source/markup/layout-grid.pug +22 -22
- package/source/markup/layout-row.pug +92 -92
- package/source/markup/layout.pug +20 -20
- package/source/markup/line-height.pug +127 -127
- package/source/markup/line-width.pug +36 -36
- package/source/markup/links.pug +83 -83
- package/source/markup/lists.pug +86 -86
- package/source/markup/navigation.pug +135 -135
- package/source/markup/partials/mixins/_empty-state.pug +8 -8
- package/source/markup/partials/mixins/_header-callout.pug +7 -7
- package/source/markup/partials/mixins/_list-navigator.pug +7 -7
- package/source/markup/partials/mixins/_modal-view.pug +13 -13
- package/source/markup/partials/mixins/_notification.pug +13 -13
- package/source/markup/partials/mixins/_progress-bar.pug +5 -5
- package/source/markup/partials/mixins/_receipt.pug +9 -9
- package/source/markup/partials/mixins/_stepper.pug +7 -7
- package/source/markup/partials/mixins/_toast-notification.pug +9 -9
- package/source/markup/partials/mixins/_toggle-button.pug +4 -4
- package/source/markup/partials/mixins/_toolbar.pug +6 -6
- package/source/markup/partials/mixins-demo/_atom-picker.pug +13 -13
- package/source/markup/partials/mixins-demo/_color-tile.pug +22 -22
- package/source/markup/partials/mixins-demo/_nav-atoms.pug +11 -11
- package/source/markup/partials/mixins-demo/_nav-color.pug +7 -7
- package/source/markup/partials/mixins-demo/_nav-components.pug +32 -32
- package/source/markup/partials/mixins-demo/_nav-form.pug +12 -12
- package/source/markup/partials/mixins-demo/_nav-layout.pug +7 -7
- package/source/markup/partials/mixins-demo/_nav-text.pug +15 -15
- package/source/markup/partials/page-templates/_layout-error-page.pug +67 -67
- package/source/markup/partials/page-templates/_layout.pug +158 -158
- package/source/markup/sample-text.pug +86 -86
- package/source/markup/spacings.pug +98 -98
- package/source/markup/tables.pug +147 -147
- package/source/markup/text-callout.pug +39 -39
- package/source/markup/text.pug +50 -50
- package/source/projects/au-webshop/au-webshop-bolierplate.scss +72 -72
- package/source/projects/bachelor-applications/403-error-page.pug +12 -12
- package/source/projects/bachelor-applications/502-error-page.pug +14 -14
- package/source/projects/bachelor-applications/applicant-profile.pug +40 -40
- package/source/projects/bachelor-applications/application-statuses.pug +49 -49
- package/source/projects/bachelor-applications/applications-overview-gpa-combinations.pug +43 -43
- package/source/projects/bachelor-applications/applications-overview-no-offer.pug +51 -51
- package/source/projects/bachelor-applications/applications-overview-offer-accepted.pug +59 -59
- package/source/projects/bachelor-applications/applications-overview-sections.pug +57 -57
- package/source/projects/bachelor-applications/applications-overview-with-callout.pug +61 -61
- package/source/projects/bachelor-applications/applications-overview.pug +60 -60
- package/source/projects/bachelor-applications/empty-state-closed.pug +15 -15
- package/source/projects/bachelor-applications/impersonation-active.pug +44 -44
- package/source/projects/bachelor-applications/impersonation-form.pug +44 -44
- package/source/projects/bachelor-applications/index.pug +68 -68
- package/source/projects/bachelor-applications/kontoaktivering/faq.pug +173 -173
- package/source/projects/bachelor-applications/kontoaktivering/index.pug +25 -25
- package/source/projects/bachelor-applications/kontoaktivering/originals/faq.pug +168 -168
- package/source/projects/bachelor-applications/kontoaktivering/originals/password.pug +205 -205
- package/source/projects/bachelor-applications/kontoaktivering/originals/receipt.pug +170 -170
- package/source/projects/bachelor-applications/kontoaktivering/password.pug +203 -203
- package/source/projects/bachelor-applications/kontoaktivering/receipt-bachelor-applicants.pug +156 -156
- package/source/projects/bachelor-applications/kontoaktivering/receipt-others.pug +163 -163
- package/source/projects/bachelor-applications/kontoaktivering/start.pug +193 -193
- package/source/projects/bachelor-applications/login-signin-first.pug +35 -35
- package/source/projects/bachelor-applications/login-signup-first.pug +34 -34
- package/source/projects/bachelor-applications/markup/_applicant-course-list.pug +80 -80
- package/source/projects/bachelor-applications/markup/_applicant-profile.pug +51 -51
- package/source/projects/bachelor-applications/markup/_application.pug +147 -147
- package/source/projects/bachelor-applications/markup/_bachelor-applications-template.pug +128 -128
- package/source/projects/bachelor-applications/markup/_grade-point-average-modal.pug +5 -5
- package/source/projects/bachelor-applications/markup/_student-place-offer.pug +97 -97
- package/source/projects/bachelor-applications/markup/_vacant-student-places.pug +7 -7
- package/source/projects/bachelor-applications/receipt-accepted-animation-landscape.pug +48 -48
- package/source/projects/bachelor-applications/receipt-accepted-animation-portrait.pug +48 -48
- package/source/projects/bachelor-applications/receipt-accepted-multiple-links.pug +50 -50
- package/source/projects/bachelor-applications/receipt-accepted.pug +54 -54
- package/source/projects/bachelor-applications/receipt-rejected.pug +35 -35
- package/source/projects/bachelor-applications/student-place-offers.pug +35 -35
- package/source/projects/bachelor-applications/style/_animation-welcome.scss +25 -25
- package/source/projects/bachelor-applications/style/_applicant-course-list.scss +53 -53
- package/source/projects/bachelor-applications/style/_applicant-profile.scss +58 -58
- package/source/projects/bachelor-applications/style/_application.scss +341 -341
- package/source/projects/bachelor-applications/style/_applications-overview.scss +62 -62
- package/source/projects/bachelor-applications/style/_student-place-offer.scss +363 -363
- package/source/projects/bachelor-applications/style.scss +89 -89
- package/source/projects/brightspace/AU_00-all-standard-elements.pug +63 -63
- package/source/projects/brightspace/AU_01-empty-template.pug +5 -5
- package/source/projects/brightspace/AU_02-instructor.pug +20 -20
- package/source/projects/brightspace/index.pug +30 -30
- package/source/projects/brightspace/markup/_template.pug +20 -20
- package/source/projects/brightspace/style/_brightspace-instructor.scss +13 -13
- package/source/projects/brightspace/style/_brightspace-modifications.scss +29 -29
- package/source/projects/brightspace/style/_brightspace-sass-variables.scss +13 -13
- package/source/projects/brightspace/style/_brightspace-widget-course-setup.scss +39 -39
- package/source/projects/brightspace/style/_brightspace-widget.scss +5 -5
- package/source/projects/brightspace/style.scss +108 -108
- package/source/projects/brightspace/widgets/au-widget-course-setup.pug +32 -32
- package/source/projects/index.pug +22 -22
- package/source/projects/medarbejdere/course-config.pug +276 -276
- package/source/projects/medarbejdere/demo.scss +6 -6
- package/source/projects/medarbejdere/holiday-overview.pug +107 -107
- package/source/projects/medarbejdere/index.pug +21 -21
- package/source/projects/medarbejdere/markup/_course-config-modal-content.pug +242 -242
- package/source/projects/medarbejdere/markup/_holiday-calendar.pug +55 -55
- package/source/projects/medarbejdere/markup/_roles-config-modal-content.pug +6 -6
- package/source/projects/medarbejdere/roles-config.pug +150 -150
- package/source/projects/medarbejdere/style/_course-config.scss +493 -493
- package/source/projects/medarbejdere/style/_holiday-calendar.scss +209 -209
- package/source/projects/medarbejdere/style/_roles-config.scss +110 -110
- package/source/projects/medarbejdere/style.scss +79 -79
- package/source/projects/mitstudie/home.pug +161 -161
- package/source/projects/mitstudie/index.pug +22 -22
- package/source/projects/mitstudie/map.pug +18 -18
- package/source/projects/mitstudie/markup/_event-modals.pug +68 -68
- package/source/projects/mitstudie/markup/_mitstudie-template.pug +89 -89
- package/source/projects/mitstudie/markup/_timetable.pug +203 -203
- package/source/projects/mitstudie/student-id.pug +79 -79
- package/source/projects/mitstudie/studieordning.pug +780 -780
- package/source/projects/mitstudie/style/_academic-regulation.scss +90 -90
- package/source/projects/mitstudie/style/_diagramme.scss +49 -49
- package/source/projects/mitstudie/style/_iframe-embed.scss +28 -28
- package/source/projects/mitstudie/style/_map.scss +227 -227
- package/source/projects/mitstudie/style/_notifications.scss +45 -45
- package/source/projects/mitstudie/style/_refactor.scss +24 -24
- package/source/projects/mitstudie/style/_settings.scss +916 -916
- package/source/projects/mitstudie/style/_student-id.scss +38 -38
- package/source/projects/mitstudie/style/_timeline.scss +911 -911
- package/source/projects/mitstudie/style/_timetable-event-modal.scss +32 -32
- package/source/projects/mitstudie/style/_timetable.scss +565 -565
- package/source/projects/mitstudie/style.scss +90 -90
- package/source/projects/mitstudie/timeline.pug +256 -256
- package/source/projects/mitstudie/timetable-link-not-accessible.pug +20 -20
- package/source/projects/mitstudie/timetable.pug +26 -26
- package/source/projects/typo3/_content-elements.pug +537 -537
- package/source/projects/typo3/_elements.pug +152 -152
- package/source/projects/typo3/_event.pug +149 -149
- package/source/projects/typo3/_news-related.pug +56 -56
- package/source/projects/typo3/_news-story.pug +152 -152
- package/source/projects/typo3/editor-elements.pug +130 -130
- package/source/projects/typo3/elements.pug +5 -5
- package/source/projects/typo3/event-multiday-dash.pug +5 -5
- package/source/projects/typo3/event-multiday.pug +5 -5
- package/source/projects/typo3/event.pug +5 -5
- package/source/projects/typo3/full-width-content-elements.pug +8 -8
- package/source/projects/typo3/full-width.pug +7 -7
- package/source/projects/typo3/index.pug +72 -72
- package/source/projects/typo3/left-and-right-content-elements.pug +9 -9
- package/source/projects/typo3/left-and-right.pug +8 -8
- package/source/projects/typo3/left-menu-content-elements.pug +12 -12
- package/source/projects/typo3/left-menu.pug +11 -11
- package/source/projects/typo3/omnibus-article-content-elements.pug +336 -336
- package/source/projects/typo3/omnibus-article-content-elements2.pug +336 -336
- package/source/projects/typo3/omnibus-article-full-width.pug +341 -341
- package/source/projects/typo3/omnibus-article.pug +391 -391
- package/source/projects/typo3/omnibus-home-wide-image.pug +510 -510
- package/source/projects/typo3/omnibus-home.pug +491 -491
- package/source/projects/typo3/plain-delphinus.pug +13 -13
- package/source/projects/typo3/plain-delphinus.scss +20 -20
- package/source/projects/typo3/right-column-content-elements.pug +9 -9
- package/source/projects/typo3/right-column.pug +8 -8
- package/source/projects/typo3/style/_delphinus-gutters.scss +149 -149
- package/source/projects/typo3/style/_news-event.scss +1012 -1012
- package/source/projects/typo3/style/_news-related.scss +82 -82
- package/source/projects/typo3/style/_omnibus-font.scss +74 -74
- package/source/projects/typo3/style/_typo3-overwrites-content-elements-default.scss +192 -192
- package/source/projects/typo3/style/_typo3-overwrites.scss +167 -167
- package/source/projects/typo3/style/_typo3-sass-variables.scss +28 -28
- package/source/projects/typo3/style/_typo3-themes.scss +12 -12
- package/source/projects/typo3/style/typo3-news-list.scss +616 -616
- package/source/projects/typo3/style.scss +135 -135
- package/source/projects/typo3/typo3-delphinus.scss +4 -4
- package/source/projects/typo3/typo3-markup/_typo3-14-left-and-right.pug +9 -9
- package/source/projects/typo3/typo3-markup/_typo3-15-left-menu.pug +7 -7
- package/source/projects/typo3/typo3-markup/_typo3-16-full-width.pug +5 -5
- package/source/projects/typo3/typo3-markup/_typo3-17-right-column.pug +6 -6
- package/source/projects/typo3/typo3-markup/_typo3-footer.pug +2 -2
- package/source/projects/typo3/typo3-markup/_typo3-header.pug +4 -4
- package/source/projects/typo3/typo3-markup/_typo3-layout.pug +23 -23
- package/source/projects/typo3/universe-full-width.pug +450 -450
- package/source/projects/typo3/universe-left-and-right.pug +491 -491
- package/source/projects/typo3/universe-left-menu.pug +471 -471
- package/source/projects/typo3/universe-right-column.pug +459 -459
- package/source/style/_mixins/_all.scss +5 -5
- package/source/style/_mixins/_content-container.scss +13 -13
- package/source/style/_mixins/_font-awesome.scss +15 -15
- package/source/style/_mixins/_processing-animation.scss +50 -42
- package/source/style/_mixins/_utility-button.scss +58 -54
- package/source/style/_mixins/screenreader-only.scss +9 -9
- package/source/style/_sass-variables.scss +114 -114
- package/source/style/base/_accessibility.scss +18 -18
- package/source/style/base/_body.scss +48 -48
- package/source/style/base/_buttons.scss +389 -385
- package/source/style/base/_code.scss +4 -4
- package/source/style/base/_dl.scss +17 -17
- package/source/style/base/_forms.scss +594 -594
- package/source/style/base/_fundamentals.scss +21 -21
- package/source/style/base/_hr.scss +35 -35
- package/source/style/base/_icons.scss +85 -85
- package/source/style/base/_links.scss +81 -81
- package/source/style/base/_normalize.scss +341 -341
- package/source/style/base/_text.scss +492 -492
- package/source/style/base/_utility-classes.scss +20 -20
- package/source/style/layout/_breakpoints.scss +44 -44
- package/source/style/layout/_footer.scss +176 -176
- package/source/style/layout/_grid.scss +32 -32
- package/source/style/layout/_horizontal-scroll.scss +50 -50
- package/source/style/layout/_page.scss +314 -314
- package/source/style/layout/_row.scss +162 -162
- package/source/style/layout/_vertical-spacing.scss +38 -38
- package/source/style/module/_artwork-peto.scss +27 -27
- package/source/style/module/_autosuggest.scss +64 -64
- package/source/style/module/_box.scss +59 -59
- package/source/style/module/_calendar.scss +63 -63
- package/source/style/module/_content-toggle.scss +16 -16
- package/source/style/module/_datepicker.scss +12 -12
- package/source/style/module/_empty-state.scss +58 -58
- package/source/style/module/_environment-label.scss +67 -67
- package/source/style/module/_fact-list.scss +77 -77
- package/source/style/module/_header-callout.scss +110 -110
- package/source/style/module/_large-bullets.scss +132 -132
- package/source/style/module/_list-navigator.scss +45 -45
- package/source/style/module/_modal-view.scss +150 -150
- package/source/style/module/_nav.scss +652 -652
- package/source/style/module/_navigation-list.scss +52 -52
- package/source/style/module/_notification.scss +129 -129
- package/source/style/module/_pre-header.scss +61 -61
- package/source/style/module/_processing-state.scss +63 -63
- package/source/style/module/_progress-bar.scss +242 -242
- package/source/style/module/_receipt.scss +28 -28
- package/source/style/module/_search-filter.scss +80 -80
- package/source/style/module/_selection-list.scss +106 -106
- package/source/style/module/_settings-list.scss +78 -78
- package/source/style/module/_shortcut.scss +18 -18
- package/source/style/module/_stepper.scss +190 -190
- package/source/style/module/_sub-nav.scss +113 -113
- package/source/style/module/_tabbed-content.scss +31 -31
- package/source/style/module/_tables.scss +279 -279
- package/source/style/module/_toast-notification.scss +133 -133
- package/source/style/module/_toggle-button.scss +84 -84
- package/source/style/module/_toolbar.scss +291 -291
- package/source/style/module/_tooltip.scss +61 -61
- package/source/style/module-demo/_atom-picker.scss +83 -83
- package/source/style/module-demo/_delphinus.scss +37 -37
- package/source/style/module-demo/_demo.scss +99 -99
- package/source/style.scss +79 -79
- package/tsconfig.json +42 -42
- package/types/common/interfaces.d.ts +10 -10
- package/types/common/main.d.ts +2 -2
- package/types/common/package.json +4 -4
- package/webpack.config.js +75 -75
- package/build/types/common/interfaces.d.ts +0 -10
- package/build/types/common/main.d.ts +0 -2
package/.eslintrc.js
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
root: true,
|
|
3
|
-
extends: [
|
|
4
|
-
'airbnb',
|
|
5
|
-
'plugin:@typescript-eslint/eslint-recommended',
|
|
6
|
-
'plugin:@typescript-eslint/recommended',
|
|
7
|
-
],
|
|
8
|
-
plugins: [
|
|
9
|
-
'react',
|
|
10
|
-
'@typescript-eslint',
|
|
11
|
-
],
|
|
12
|
-
parser: '@typescript-eslint/parser',
|
|
13
|
-
rules: {
|
|
14
|
-
'import/extensions': [0],
|
|
15
|
-
'react/jsx-filename-extension': [0],
|
|
16
|
-
'no-use-before-define': [0],
|
|
17
|
-
'@typescript-eslint/no-use-before-define': ['error'],
|
|
18
|
-
'no-shadow': 'off',
|
|
19
|
-
'@typescript-eslint/no-shadow': ['error'],
|
|
20
|
-
'react/no-danger': [0],
|
|
21
|
-
'linebreak-style': [0],
|
|
22
|
-
},
|
|
23
|
-
settings: {
|
|
24
|
-
react: {
|
|
25
|
-
version: 'detect',
|
|
26
|
-
},
|
|
27
|
-
'import/resolver': {
|
|
28
|
-
typescript: {},
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
globals: {
|
|
32
|
-
AU: true,
|
|
33
|
-
$: true,
|
|
34
|
-
},
|
|
35
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
extends: [
|
|
4
|
+
'airbnb',
|
|
5
|
+
'plugin:@typescript-eslint/eslint-recommended',
|
|
6
|
+
'plugin:@typescript-eslint/recommended',
|
|
7
|
+
],
|
|
8
|
+
plugins: [
|
|
9
|
+
'react',
|
|
10
|
+
'@typescript-eslint',
|
|
11
|
+
],
|
|
12
|
+
parser: '@typescript-eslint/parser',
|
|
13
|
+
rules: {
|
|
14
|
+
'import/extensions': [0],
|
|
15
|
+
'react/jsx-filename-extension': [0],
|
|
16
|
+
'no-use-before-define': [0],
|
|
17
|
+
'@typescript-eslint/no-use-before-define': ['error'],
|
|
18
|
+
'no-shadow': 'off',
|
|
19
|
+
'@typescript-eslint/no-shadow': ['error'],
|
|
20
|
+
'react/no-danger': [0],
|
|
21
|
+
'linebreak-style': [0],
|
|
22
|
+
},
|
|
23
|
+
settings: {
|
|
24
|
+
react: {
|
|
25
|
+
version: 'detect',
|
|
26
|
+
},
|
|
27
|
+
'import/resolver': {
|
|
28
|
+
typescript: {},
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
globals: {
|
|
32
|
+
AU: true,
|
|
33
|
+
$: true,
|
|
34
|
+
},
|
|
35
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
0000000000000000000000000000000000000000 fe8a42ddf3e6625b24fd5432f984a813f0cbf030 Claus Stadel <claus.stadel@au.dk> 1643362566 +0100 branch: Created from HEAD
|
|
2
|
+
fe8a42ddf3e6625b24fd5432f984a813f0cbf030 f5336dc5708bc1d6bf452d3b2df9789a30a67546 Claus Stadel <claus.stadel@au.dk> 1643362592 +0100 commit: Stuff for changelog pug markdown filter
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
0000000000000000000000000000000000000000 fe8a42ddf3e6625b24fd5432f984a813f0cbf030 Claus Stadel <claus.stadel@au.dk> 1643362569 +0100 update by push
|
|
2
|
+
fe8a42ddf3e6625b24fd5432f984a813f0cbf030 f5336dc5708bc1d6bf452d3b2df9789a30a67546 Claus Stadel <claus.stadel@au.dk> 1643362594 +0100 update by push
|
package/CHANGELOG.md
CHANGED
|
@@ -1,268 +1,277 @@
|
|
|
1
|
-
## 0.26.
|
|
2
|
-
|
|
3
|
-
### Core Delphinus Updates
|
|
4
|
-
*
|
|
5
|
-
|
|
6
|
-
### Delphinus Projects Updates
|
|
7
|
-
None
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
###
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
###
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
###
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
*
|
|
180
|
-
*
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
## 0.23.
|
|
197
|
-
|
|
198
|
-
### Core Delphinus Updates
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
###
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
## 0.23.
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
1
|
+
## 0.26.2 (May 30, 2022)
|
|
2
|
+
|
|
3
|
+
### Core Delphinus Updates
|
|
4
|
+
* Fixes alignment of processing animation in buttons and `processing-state` component, that could sometimes not be rotating around its' center. Now uses an svg-mask in stead of a D from AU Peto font. This will also prevent the occasional rotating D, if Peto font is not loaded.
|
|
5
|
+
|
|
6
|
+
### Delphinus Projects Updates
|
|
7
|
+
None
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## 0.26.1 (May 23, 2022)
|
|
11
|
+
|
|
12
|
+
### Core Delphinus Updates
|
|
13
|
+
* Moved types folder to root and added missing package.json for automatic type recognition in other projects.
|
|
14
|
+
|
|
15
|
+
### Delphinus Projects Updates
|
|
16
|
+
None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## 0.26.0 (May 23, 2022)
|
|
21
|
+
|
|
22
|
+
### Core Delphinus Updates
|
|
23
|
+
* Added support for Typescript and converted existing scripts to Typescript.
|
|
24
|
+
|
|
25
|
+
### Delphinus Projects Updates
|
|
26
|
+
None
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 0.25.0 (May 19, 2022)
|
|
31
|
+
|
|
32
|
+
### Core Delphinus Updates
|
|
33
|
+
* Added stepper component <https://delphinus.au.dk/components/stepper>.
|
|
34
|
+
* Fix missing red border on invalid checkbox and radiobutton input.
|
|
35
|
+
|
|
36
|
+
### Delphinus Projects Updates
|
|
37
|
+
None
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## 0.24.1 (April 21, 2022)
|
|
42
|
+
|
|
43
|
+
### Core Delphinus Updates
|
|
44
|
+
None
|
|
45
|
+
|
|
46
|
+
### Delphinus Projects Updates
|
|
47
|
+
|
|
48
|
+
#### Typo3
|
|
49
|
+
Adds overwrite for all default content elements style in typo3 v10.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
## 0.24.0 (March 29, 2022)
|
|
54
|
+
|
|
55
|
+
### Core Delphinus Updates
|
|
56
|
+
* `.hr--page-content-block-seperator` modifier for adding equal space above an below a `hr` that is the first or last element of a content block.
|
|
57
|
+
* `.page__footer--only-logo-and-seal`modifier for when the footer should only contain the logo and seal.
|
|
58
|
+
|
|
59
|
+
### Delphinus Projects Updates
|
|
60
|
+
|
|
61
|
+
None
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
## 0.23.25 (March 14, 2022)
|
|
66
|
+
|
|
67
|
+
### Core Delphinus Updates
|
|
68
|
+
Fixes icon size in `.nav__item--icon` so that the icon is only large, when used in `.nav__utilities`. Otherwise, the icon has the same size as the text.
|
|
69
|
+
|
|
70
|
+
### Delphinus Projects Updates
|
|
71
|
+
|
|
72
|
+
#### Mit Studie
|
|
73
|
+
Fixes rendering issue in Chrome, where the missing exam component could have 1px line on the left.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## 0.23.24 (February 24, 2022)
|
|
79
|
+
|
|
80
|
+
### Core Delphinus Updates
|
|
81
|
+
None
|
|
82
|
+
|
|
83
|
+
### Delphinus Projects Updates
|
|
84
|
+
|
|
85
|
+
#### Typo3
|
|
86
|
+
Adds support for the HTML content element type in news.
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## 0.23.23 (February 23, 2022)
|
|
91
|
+
|
|
92
|
+
### Core Delphinus Updates
|
|
93
|
+
None
|
|
94
|
+
|
|
95
|
+
### Delphinus Projects Updates
|
|
96
|
+
|
|
97
|
+
#### Typo3
|
|
98
|
+
Fixes alignment when using content element headers and subheader in news.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
## 0.23.22 (February 15, 2022)
|
|
103
|
+
|
|
104
|
+
Don't use has bugs.
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
## 0.23.21 (February 14, 2022)
|
|
109
|
+
|
|
110
|
+
### Core Delphinus Updates
|
|
111
|
+
None
|
|
112
|
+
|
|
113
|
+
### Delphinus Projects Updates
|
|
114
|
+
|
|
115
|
+
#### Typo3
|
|
116
|
+
Support news using content elements in other layouts, than full width layouts.
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## 0.23.20 (February 10, 2022)
|
|
123
|
+
|
|
124
|
+
### Core Delphinus Updates
|
|
125
|
+
Improved design for skip-to-content accessibility-link.
|
|
126
|
+
|
|
127
|
+
### Delphinus Projects Updates
|
|
128
|
+
None
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## 0.23.19 (February 8, 2022)
|
|
133
|
+
|
|
134
|
+
### Core Delphinus Updates
|
|
135
|
+
None
|
|
136
|
+
|
|
137
|
+
### Delphinus Projects Updates
|
|
138
|
+
|
|
139
|
+
#### Typo3
|
|
140
|
+
* Prevents pseudo element in news figures from being z-indexed above the image.
|
|
141
|
+
* Allows images in one column galleries in content elements to be less wide, than the text and makes the caption follow the width of the image.
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
## 0.23.18 (February 7, 2022)
|
|
146
|
+
|
|
147
|
+
### Core Delphinus Updates
|
|
148
|
+
`.typography-dense` now supports headings, blockquotes, lists and hr.
|
|
149
|
+
|
|
150
|
+
### Delphinus Projects Updates
|
|
151
|
+
None
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
## 0.23.17 (February 7, 2022)
|
|
156
|
+
|
|
157
|
+
### Core Delphinus Updates
|
|
158
|
+
When you have a list of links (`ul` or `ol`) you can skip the underlining of the links for visual clarity by adding class `.list--links` to the list.
|
|
159
|
+
|
|
160
|
+
### Delphinus Projects Updates
|
|
161
|
+
|
|
162
|
+
#### Typo3
|
|
163
|
+
* New icons on infobox in news.
|
|
164
|
+
* Allow tables to be wider than text when using content elements.
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
## 0.23.16 (February 4, 2022)
|
|
168
|
+
|
|
169
|
+
### Core Delphinus Updates
|
|
170
|
+
None
|
|
171
|
+
|
|
172
|
+
### Delphinus Projects Updates
|
|
173
|
+
|
|
174
|
+
#### Typo3
|
|
175
|
+
Prevent news hero images from stretching, when not as wide as the page. And prevent hero image from being of a wider aspect ratio than 16:9 in narrow viewports (cropped on sides).
|
|
176
|
+
|
|
177
|
+
Loads of stuff for supporting news using content elements:
|
|
178
|
+
* Center aligned text in articles
|
|
179
|
+
* Floated images and video (above the medium breakpoint)
|
|
180
|
+
* Multicolumn image galleries (above the medium breakpoint)
|
|
181
|
+
* Infobox (collapsed and with an expand-toggle in narrow viewports)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
## 0.23.15 (January 28, 2022)
|
|
186
|
+
|
|
187
|
+
### Core Delphinus Updates
|
|
188
|
+
* Prevent site logo from hanging, when there is no other content (no site name) in the header home link.
|
|
189
|
+
* Fix processing state of buttons that use the utility-button mixin, before this fix the spinner was in the same color, as the button background and therefore hard to see, also button text was still showing.
|
|
190
|
+
|
|
191
|
+
### Delphinus Projects Updates
|
|
192
|
+
None
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
## 0.23.14 (January 21, 2022)
|
|
197
|
+
|
|
198
|
+
### Core Delphinus Updates
|
|
199
|
+
Fixes styling of links in an `.empty-state` component.
|
|
200
|
+
|
|
201
|
+
### Delphinus Projects Updates
|
|
202
|
+
None
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
## 0.23.13 (January 20, 2022)
|
|
206
|
+
|
|
207
|
+
### Core Delphinus Updates
|
|
208
|
+
* Support for nesting in `ul`, `ol` lists.
|
|
209
|
+
* Introduces `utility-shadow` color for setting shadows on buttons etc. in elements that has a utility color as background.
|
|
210
|
+
|
|
211
|
+
### Delphinus Projects Updates
|
|
212
|
+
|
|
213
|
+
#### Bachelor applications
|
|
214
|
+
Removes custom strike-through in annulled application titles. Back to `text-decoration: line-through` in order to support multiline titles.
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
## 0.23.12 (January 12, 2022)
|
|
219
|
+
|
|
220
|
+
### Core Delphinus Updates
|
|
221
|
+
None
|
|
222
|
+
|
|
223
|
+
### Delphinus Projects Updates
|
|
224
|
+
#### TYPO3-project
|
|
225
|
+
|
|
226
|
+
* Adds styling for table, pre and hr tags in news content.
|
|
227
|
+
* Fixes rendering of custom bullets in news content.
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
## 0.23.11 (January 12, 2022)
|
|
231
|
+
Don't use, has bug in typo3-project.
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
## 0.23.10 (January 12, 2022)
|
|
235
|
+
Don't use, has bug in typo3-project.
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
## 0.23.9 (January 12, 2022)
|
|
239
|
+
|
|
240
|
+
### Core Delphinus Updates
|
|
241
|
+
|
|
242
|
+
Fixes foreground-color for elements with "theme" and "theme-secondary" as background-color, that could otherwise have too low contrast in dark themes.
|
|
243
|
+
|
|
244
|
+
### Delphinus Projects Updates
|
|
245
|
+
#### TYPO3-project
|
|
246
|
+
|
|
247
|
+
* Adjusts vertical gutters in the .typo3-delphinus wrapper for various layout templates, to be in line with Delphinus vertical gutter.
|
|
248
|
+
* Adjusts horizontal gutters for typo3 sites that are "framed" on wide screens (.universe, .omnibus, .aarhus-bss).
|
|
249
|
+
* Various styling fixes for omnibus: Font rendering on headers, link underlining.
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
## 0.23.8 (December 22, 2021)
|
|
253
|
+
|
|
254
|
+
Adds README-file to project.
|
|
255
|
+
|
|
256
|
+
## 0.23.7 (December 22, 2021)
|
|
257
|
+
|
|
258
|
+
Adds .typography-dense class for less spacious typography. Currently only adds less vertical margin to p-tags.
|
|
259
|
+
|
|
260
|
+
## 0.23.6 (December 14, 2021)
|
|
261
|
+
|
|
262
|
+
Adds compiled versions of css and js for typo3-project to npm-package.
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
## 0.23.5 (November 11, 2021)
|
|
266
|
+
|
|
267
|
+
Release containing a lot of new stuff for minansøgning.au.dk: https://delphinus.au.dk/projects/bachelor-applications/
|
|
268
|
+
|
|
269
|
+
### New features and components in core Delphinus
|
|
270
|
+
|
|
271
|
+
* Header-callout: Put messages directly below the page header. Less real-estate consuming than using .notfication in a .page__content__block: https://delphinus.au.dk/components/header-callout.html
|
|
272
|
+
* Large bullet lists: https://delphinus.au.dk/components/large-bullets.html
|
|
273
|
+
* List for highlighting a list of facts or figures: https://delphinus.au.dk/components/fact-list.html
|
|
274
|
+
* Better, easier center alignment of content in a .page__content__block. E.g. used here: https://delphinus.au.dk/projects/bachelor-applications/receipt-accepted.html
|
|
275
|
+
* Page content can snap to content above. See this link, previously there would have been whitespace between the header and the first .page__content__block in the content: https://delphinus.au.dk/projects/bachelor-applications/applications-overview.html
|
|
276
|
+
* Collapse content into tabs in narrow viewports: https://delphinus.au.dk/components/tabbed-content.html
|
|
277
|
+
* Impersonation and simplar stuff for testing-purposes can be put away in a collapsible-panel above the header: https://delphinus.au.dk/projects/bachelor-applications/impersonation-form.html
|