From cc65afafbd78b53416fd53dcb7d02b18dd0b0c9a Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 11 May 2023 14:21:01 +0200 Subject: [PATCH] chore(CommandPaletteGroup): rename `ui.group.command.selected.icon` to `ui.group.command.selectedIcon.base` --- src/runtime/app.config.ts | 6 +++--- src/runtime/components/navigation/CommandPaletteGroup.vue | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runtime/app.config.ts b/src/runtime/app.config.ts index 17fdd213..ed26f122 100644 --- a/src/runtime/app.config.ts +++ b/src/runtime/app.config.ts @@ -511,6 +511,9 @@ const commandPalette = { active: 'text-gray-900 dark:text-white', inactive: 'text-gray-400 dark:text-gray-500' }, + selectedIcon: { + base: 'h-4 w-4 text-gray-900 dark:text-white flex-shrink-0' + }, avatar: { base: 'flex-shrink-0', size: '3xs' @@ -519,9 +522,6 @@ const commandPalette = { base: 'flex-shrink-0 w-2 h-2 mx-1 rounded-full' }, disabled: 'opacity-50', - selected: { - icon: 'h-4 w-4 text-gray-900 dark:text-white flex-shrink-0' - }, shortcuts: 'hidden md:inline-flex flex-shrink-0 gap-0.5' }, active: 'flex-shrink-0 text-gray-500 dark:text-gray-400', diff --git a/src/runtime/components/navigation/CommandPaletteGroup.vue b/src/runtime/components/navigation/CommandPaletteGroup.vue index 357a290e..1e2c4c43 100644 --- a/src/runtime/components/navigation/CommandPaletteGroup.vue +++ b/src/runtime/components/navigation/CommandPaletteGroup.vue @@ -39,7 +39,7 @@ -