Merge branch 'main' into main-jd-keep-role-dialog-for-modal-and-offcanvas

This commit is contained in:
Patrick H. Lauke 2024-05-06 11:18:45 +01:00 committed by GitHub
commit 12980df87f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 465 additions and 456 deletions

880
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -82,7 +82,7 @@
"docs-serve": "hugo server --port 9001 --disableFastRender --noHTTPCache --renderToMemory --printPathWarnings --printUnusedTemplates",
"docs-serve-only": "npx sirv-cli _site --port 9001",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"update-deps": "ncu -u -x karma-browserstack-launcher,karma-rollup-preprocessor",
"update-deps": "ncu -u -x eslint,karma-browserstack-launcher,karma-rollup-preprocessor",
"release": "npm-run-all dist release-sri docs-build release-zip*",
"release-sri": "node build/generate-sri.mjs",
"release-version": "node build/change-version.mjs",
@ -103,9 +103,9 @@
"@popperjs/core": "^2.11.8"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@docsearch/js": "^3.6.0",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-babel": "^6.0.4",
@ -127,7 +127,7 @@
"find-unused-sass-variables": "^6.0.0",
"globby": "^14.0.1",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.122.3",
"hugo-bin": "^0.122.5",
"ip": "^2.0.1",
"jasmine": "^5.1.0",
"jquery": "^3.7.1",
@ -145,15 +145,15 @@
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"rollup": "^4.16.3",
"rollup": "^4.17.2",
"rollup-plugin-istanbul": "^5.0.0",
"rtlcss": "^4.1.1",
"sass": "^1.75.0",
"sass": "^1.76.0",
"sass-true": "^8.0.0",
"shelljs": "^0.8.5",
"stylelint": "^16.3.1",
"stylelint": "^16.4.0",
"stylelint-config-twbs-bootstrap": "^14.1.0",
"terser": "^5.30.4",
"terser": "^5.31.0",
"vnu-jar": "23.4.11"
},
"files": [

View File

@ -73,9 +73,8 @@
}
// Prevent breaking of code
// stylelint-disable-next-line selector-max-compound-selectors
th,
td:first-child > code {
td:first-child > code { // stylelint-disable-line selector-max-compound-selectors
white-space: nowrap;
}
}

View File

@ -5,7 +5,7 @@ description: ""
url: /404.html
robots: noindex,follow
sitemap:
exclude: true
disable: true
---
<div class="text-center py-5">

View File

@ -1,6 +1,6 @@
---
layout: redirect
sitemap:
exclude: true
disable: true
redirect: "/docs/5.3/getting-started/introduction/"
---

View File

@ -6,7 +6,7 @@ aliases: "/docsref/"
toc: true
robots: noindex,follow
sitemap:
exclude: true
disable: true
---
## Buttons

View File

@ -1,6 +1,6 @@
---
layout: redirect
sitemap:
exclude: true
disable: true
redirect: "/docs/5.3/getting-started/introduction/"
---

View File

@ -1,12 +0,0 @@
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
{{- range where .Data.Pages "Params.sitemap.exclude" "ne" true -}}{{ if .Permalink }}
<url>
<loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML (.Lastmod.Format "2006-01-02T15:04:05-07:00") }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
<xhtml:link rel="alternate" hreflang="{{ .Language.LanguageCode }}" href="{{ .Permalink }}"/>{{ end }}
<xhtml:link rel="alternate" hreflang="{{ .Language.LanguageCode }}" href="{{ .Permalink }}"/>{{ end }}
</url>{{ end }}{{ end }}
</urlset>