From a23dece86fe666f15c74e304f65bbdd1ce13cefc Mon Sep 17 00:00:00 2001 From: John Leider Date: Sat, 25 May 2024 11:28:46 -0500 Subject: [PATCH 1/2] fix(flex): add missing flex-x-x-0 classes --- packages/docs/src/pages/en/styles/flex.md | 20 +++++++++++++++++++ .../src/styles/settings/_utilities.scss | 6 +++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/packages/docs/src/pages/en/styles/flex.md b/packages/docs/src/pages/en/styles/flex.md index e383a5bc5cf..eeb47ffb572 100644 --- a/packages/docs/src/pages/en/styles/flex.md +++ b/packages/docs/src/pages/en/styles/flex.md @@ -52,21 +52,41 @@ Control the layout of flex containers with alignment, justification and more wit | **flex-md-0-0** | flex: 0 0 auto; | | **flex-lg-0-0** | flex: 0 0 auto; | | **flex-xl-0-0** | flex: 0 0 auto; | +| **flex-1-1-0** | flex: 1 1 0%; | +| **flex-sm-1-1-0** | flex: 1 1 0%; | +| **flex-md-1-1-0** | flex: 1 1 0%; | +| **flex-lg-1-1-0** | flex: 1 1 0%; | +| **flex-xl-1-1-0** | flex: 1 1 0%; | | **flex-1-1-100** | flex: 1 1 100%; | | **flex-sm-1-1-100** | flex: 1 1 100%; | | **flex-md-1-1-100** | flex: 1 1 100%; | | **flex-lg-1-1-100** | flex: 1 1 100%; | | **flex-xl-1-1-100** | flex: 1 1 100%; | +| **flex-1-0-0** | flex: 1 0 0%; | +| **flex-sm-1-0-0** | flex: 1 0 0%; | +| **flex-md-1-0-0** | flex: 1 0 0%; | +| **flex-lg-1-0-0** | flex: 1 0 0%; | +| **flex-xl-1-0-0** | flex: 1 0 0%; | | **flex-1-0-100** | flex: 1 0 100%; | | **flex-sm-1-0-100** | flex: 1 0 100%; | | **flex-md-1-0-100** | flex: 1 0 100%; | | **flex-lg-1-0-100** | flex: 1 0 100%; | | **flex-xl-1-0-100** | flex: 1 0 100%; | +| **flex-0-1-0** | flex: 0 1 0%; | +| **flex-sm-0-1-0** | flex: 0 1 0%; | +| **flex-md-0-1-0** | flex: 0 1 0%; | +| **flex-lg-0-1-0** | flex: 0 1 0%; | +| **flex-xl-0-1-0** | flex: 0 1 0%; | | **flex-0-1-100** | flex: 0 1 100%; | | **flex-sm-0-1-100** | flex: 0 1 100%; | | **flex-md-0-1-100** | flex: 0 1 100%; | | **flex-lg-0-1-100** | flex: 0 1 100%; | | **flex-xl-0-1-100** | flex: 0 1 100%; | +| **flex-0-0-0** | flex: 0 0 0% | +| **flex-sm-0-0-0** | flex: 0 0 0% | +| **flex-md-0-0-0** | flex: 0 0 0% | +| **flex-lg-0-0-0** | flex: 0 0 0% | +| **flex-xl-0-0-0** | flex: 0 0 0% | | **flex-0-0-100** | flex: 0 0 100%; | | **flex-sm-0-0-100** | flex: 0 0 100%; | | **flex-md-0-0-100** | flex: 0 0 100%; | diff --git a/packages/vuetify/src/styles/settings/_utilities.scss b/packages/vuetify/src/styles/settings/_utilities.scss index 82a097a500e..dc4ce44386f 100644 --- a/packages/vuetify/src/styles/settings/_utilities.scss +++ b/packages/vuetify/src/styles/settings/_utilities.scss @@ -67,7 +67,11 @@ $utilities: () !default; '1-1-100': 1 1 100%, '1-0-100': 1 0 100%, '0-1-100': 0 1 100%, - '0-0-100': 0 0 100% + '0-0-100': 0 0 100%, + '1-1-0': 1 1 0, + '1-0-0': 1 0 0, + '0-1-0': 0 1 0, + '0-0-0': 0 0 0, ) ), "flex-direction": ( From 2877f4f855fcc7b3bd0241a523a4284f3fb5b307 Mon Sep 17 00:00:00 2001 From: SonTT19 <49301480+SonTT19@users.noreply.github.com> Date: Mon, 27 May 2024 11:17:09 +0700 Subject: [PATCH 2/2] docs(VColorPicker): fix display eye dropper icon (#19902) --- packages/docs/src/plugins/icons.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/docs/src/plugins/icons.ts b/packages/docs/src/plugins/icons.ts index 10ede5a498f..5f50e64d639 100644 --- a/packages/docs/src/plugins/icons.ts +++ b/packages/docs/src/plugins/icons.ts @@ -150,6 +150,7 @@ export { mdiExport, mdiExportVariant, mdiEye, + mdiEyedropper, mdiEyeOff, mdiFacebook, mdiFastForward,