mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-23 20:18:42 +08:00
chore(core): bump @toeverything/theme, add cssVar use case (#5667)
This commit is contained in:
@@ -44,7 +44,7 @@
|
|||||||
"@radix-ui/react-toast": "^1.1.5",
|
"@radix-ui/react-toast": "^1.1.5",
|
||||||
"@radix-ui/react-toolbar": "^1.0.4",
|
"@radix-ui/react-toolbar": "^1.0.4",
|
||||||
"@radix-ui/react-tooltip": "^1.0.7",
|
"@radix-ui/react-tooltip": "^1.0.7",
|
||||||
"@toeverything/theme": "^0.7.24",
|
"@toeverything/theme": "^0.7.28",
|
||||||
"@vanilla-extract/dynamic": "^2.0.3",
|
"@vanilla-extract/dynamic": "^2.0.3",
|
||||||
"bytes": "^3.1.2",
|
"bytes": "^3.1.2",
|
||||||
"check-password-strength": "^2.0.7",
|
"check-password-strength": "^2.0.7",
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { cssVar } from '@toeverything/theme';
|
||||||
import { style } from '@vanilla-extract/css';
|
import { style } from '@vanilla-extract/css';
|
||||||
|
|
||||||
export const weekDatePicker = style({
|
export const weekDatePicker = style({
|
||||||
@@ -36,24 +37,24 @@ export const dayCell = style({
|
|||||||
padding: '2px 4px 1px 4px',
|
padding: '2px 4px 1px 4px',
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
|
|
||||||
fontFamily: 'var(--affine-font-family)',
|
fontFamily: cssVar('fontFamily'),
|
||||||
fontWeight: 500,
|
fontWeight: 500,
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
|
|
||||||
selectors: {
|
selectors: {
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
backgroundColor: 'var(--affine-hover-color)',
|
backgroundColor: cssVar('hoverColor'),
|
||||||
},
|
},
|
||||||
'&[data-today="true"]:not([data-active="true"])': {
|
'&[data-today="true"]:not([data-active="true"])': {
|
||||||
vars: {
|
vars: {
|
||||||
'--cell-color': 'var(--affine-brand-color)',
|
'--cell-color': cssVar('brandColor'),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'&[data-active="true"]': {
|
'&[data-active="true"]': {
|
||||||
vars: {
|
vars: {
|
||||||
'--cell-color': 'var(--affine-pure-white)',
|
'--cell-color': cssVar('pureWhite'),
|
||||||
},
|
},
|
||||||
background: 'var(--affine-brand-color)',
|
background: cssVar('brandColor'),
|
||||||
},
|
},
|
||||||
|
|
||||||
// interactive
|
// interactive
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
"@react-hookz/web": "^24.0.0",
|
"@react-hookz/web": "^24.0.0",
|
||||||
"@sentry/integrations": "^7.83.0",
|
"@sentry/integrations": "^7.83.0",
|
||||||
"@sentry/react": "^7.83.0",
|
"@sentry/react": "^7.83.0",
|
||||||
"@toeverything/theme": "^0.7.20",
|
"@toeverything/theme": "^0.7.28",
|
||||||
"@vanilla-extract/dynamic": "^2.0.3",
|
"@vanilla-extract/dynamic": "^2.0.3",
|
||||||
"animejs": "^3.2.2",
|
"animejs": "^3.2.2",
|
||||||
"async-call-rpc": "^6.3.1",
|
"async-call-rpc": "^6.3.1",
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ __metadata:
|
|||||||
"@storybook/test-runner": "npm:^0.16.0"
|
"@storybook/test-runner": "npm:^0.16.0"
|
||||||
"@storybook/testing-library": "npm:^0.2.2"
|
"@storybook/testing-library": "npm:^0.2.2"
|
||||||
"@testing-library/react": "npm:^14.0.0"
|
"@testing-library/react": "npm:^14.0.0"
|
||||||
"@toeverything/theme": "npm:^0.7.24"
|
"@toeverything/theme": "npm:^0.7.28"
|
||||||
"@types/bytes": "npm:^3.1.3"
|
"@types/bytes": "npm:^3.1.3"
|
||||||
"@types/react": "npm:^18.2.28"
|
"@types/react": "npm:^18.2.28"
|
||||||
"@types/react-datepicker": "npm:^4.19.0"
|
"@types/react-datepicker": "npm:^4.19.0"
|
||||||
@@ -338,7 +338,7 @@ __metadata:
|
|||||||
"@sentry/webpack-plugin": "npm:^2.8.0"
|
"@sentry/webpack-plugin": "npm:^2.8.0"
|
||||||
"@swc/core": "npm:^1.3.93"
|
"@swc/core": "npm:^1.3.93"
|
||||||
"@testing-library/react": "npm:^14.0.0"
|
"@testing-library/react": "npm:^14.0.0"
|
||||||
"@toeverything/theme": "npm:^0.7.20"
|
"@toeverything/theme": "npm:^0.7.28"
|
||||||
"@types/animejs": "npm:^3"
|
"@types/animejs": "npm:^3"
|
||||||
"@types/bytes": "npm:^3.1.3"
|
"@types/bytes": "npm:^3.1.3"
|
||||||
"@types/image-blob-reduce": "npm:^4.1.3"
|
"@types/image-blob-reduce": "npm:^4.1.3"
|
||||||
@@ -12847,13 +12847,20 @@ __metadata:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"@toeverything/theme@npm:^0.7.20, @toeverything/theme@npm:^0.7.24, @toeverything/theme@npm:^0.7.27":
|
"@toeverything/theme@npm:^0.7.27":
|
||||||
version: 0.7.27
|
version: 0.7.27
|
||||||
resolution: "@toeverything/theme@npm:0.7.27"
|
resolution: "@toeverything/theme@npm:0.7.27"
|
||||||
checksum: 9349d30256d33b5528441dbca09387819225449f97549585b92b33e354d7fbb3d0e5e35001c89b8a7e3033d8f51d3aee75ef9edaaf14fb7dd717dd66bfe96009
|
checksum: 9349d30256d33b5528441dbca09387819225449f97549585b92b33e354d7fbb3d0e5e35001c89b8a7e3033d8f51d3aee75ef9edaaf14fb7dd717dd66bfe96009
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@toeverything/theme@npm:^0.7.28":
|
||||||
|
version: 0.7.28
|
||||||
|
resolution: "@toeverything/theme@npm:0.7.28"
|
||||||
|
checksum: 675da6a9f1a7394b04ddb5e58ddc088ea6a56c2ae5f22d6041ec966905a231ba7238417bb63d95633963f9ebae1d7c655c88e22fccf0c4e54dfcceda0deee108
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@toeverything/y-indexeddb@workspace:packages/common/y-indexeddb":
|
"@toeverything/y-indexeddb@workspace:packages/common/y-indexeddb":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@toeverything/y-indexeddb@workspace:packages/common/y-indexeddb"
|
resolution: "@toeverything/y-indexeddb@workspace:packages/common/y-indexeddb"
|
||||||
|
|||||||
Reference in New Issue
Block a user