chore: bump icons with new design source (#9529)

This commit is contained in:
CatsJuice
2025-01-06 03:10:03 +00:00
parent c22804766d
commit 09937a8e4d
37 changed files with 80 additions and 80 deletions

View File

@@ -1,6 +1,6 @@
import { menu } from '@blocksuite/affine-components/context-menu';
import { unsafeCSSVarV2 } from '@blocksuite/affine-shared/theme';
import { CheckBoxCkeckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { CheckBoxCheckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { html } from 'lit';
import { t } from '../../logical/type-presets.js';
@@ -87,7 +87,7 @@ export const allLiteralConfig: LiteralItemsConfig[] = [
type.element.data?.map(tag => {
const selected = set.has(tag.id);
const prefix = selected
? CheckBoxCkeckSolidIcon({ style: `color:#1E96EB` })
? CheckBoxCheckSolidIcon({ style: `color:#1E96EB` })
: CheckBoxUnIcon();
return menu.action({
name: tag.value,

View File

@@ -1,4 +1,4 @@
import { CheckBoxCkeckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { CheckBoxCheckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { css, html } from 'lit';
import { BaseGroup } from './base.js';
@@ -18,7 +18,7 @@ export class BooleanGroupView extends BaseGroup<NonNullable<unknown>, boolean> {
protected override render(): unknown {
return html` <div class="data-view-group-title-boolean-view">
${this.value
? CheckBoxCkeckSolidIcon({ style: `color:#1E96EB` })
? CheckBoxCheckSolidIcon({ style: `color:#1E96EB` })
: CheckBoxUnIcon()}
</div>`;
}