Skip to content

Commit b349e49

Browse files
committed
docs: update browser support table
1 parent ee1f855 commit b349e49

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

packages/docs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"fflate": "^0.8.2",
3232
"isomorphic-fetch": "^3.0.0",
3333
"lodash-es": "^4.17.21",
34+
"markdown-it-multimd-table": "^4.2.3",
3435
"pinia": "^3.0.2",
3536
"prism-theme-vars": "^0.2.5",
3637
"prismjs": "^1.30.0",

packages/docs/src/pages/en/getting-started/browser-support.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
emphasized: true
23
meta:
34
title: Browser support
45
description: Vuetify is a progressive framework that supports all evergreen browsers.
@@ -21,18 +22,20 @@ Vuetify 3 is a next generation framework that takes advantage of the latest web
2122

2223
This is not an exhaustive list of compatible browsers, but the main targeted ones. If you are using a browser that is not listed here, it is not officially supported.
2324

24-
| Browser | Status |
25-
|----------------------------|----------------------------|
26-
| Chromium 90 (Chrome, Edge) | ✅ Supported <sup>*</sup> |
27-
| Firefox 88 | ✅ Supported <sup>*</sup> |
28-
| Safari 15 | ✅ Supported |
29-
| Edge <79 | ⛔ Not supported |
30-
| Internet Explorer | ⛔ Not supported |
31-
| Other Browsers | ❓ Not officially supported |
25+
| Browser | Version | Status |
26+
|-------------------------|:--------|----------------------------------|
27+
| Chromium (Chrome, Edge) | 105 | ✅ Supported <sup>*</sup> |
28+
| ^^ | 90 | ⚠️ Partial support <sup>**</sup> |
29+
| Firefox | 121 | ✅ Supported <sup>*</sup> |
30+
| ^^ | 88 | ⚠️ Partial support <sup>**</sup> |
31+
| Safari | 15.4 | ✅ Supported |
32+
| Internet Explorer | | ⛔ Not supported |
33+
| Other Browsers | | ❓ Not officially supported |
3234

3335
<p class="text-caption">* All browsers on iOS use WebKit and have the same support as Safari</p>
36+
<p class="text-caption">** Some components may have missing padding due to lack of support for CSS <v-code>:has()</v-code></p>
3437

3538
This table is updated with minor releases of Vuetify. Chrome, Firefox, and Safari will be supported at least two years back from the Vuetify x.x.0 release date.
36-
Current start date is May 2021.
39+
Current start date is September 2022.
3740

3841
Support for older browsers may be possible with additional [polyfills](https://cdnjs.cloudflare.com/polyfill/) and [PostCSS plugins](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical), but has not been tested and is not guaranteed. If you need to support older browsers we recommend using Vuetify 2.

packages/docs/src/utils/markdown-it.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import MarkdownItLinkAttributes from 'markdown-it-link-attributes'
33
import MarkdownItAttrs from 'markdown-it-attrs'
44
import MarkdownItAnchor from 'markdown-it-anchor'
55
import MarkdownItHeaderSections from 'markdown-it-header-sections'
6+
import MarkdownItMultimdTable from 'markdown-it-multimd-table'
67
import markdownRules from './markdown-it-rules'
78
import Emoji from 'markdown-it-emoji/bare.js'
89
import type MarkdownIt from 'markdown-it'
@@ -51,6 +52,9 @@ export function configureMarkdown (
5152
test_tube: '🧪',
5253
},
5354
})
55+
.use(MarkdownItMultimdTable, {
56+
rowspan: true,
57+
})
5458

5559
if (options.headerSections !== false) {
5660
md.use(MarkdownItHeaderSections)

pnpm-lock.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)