Skip to content

Commit

Permalink
Update more things
Browse files Browse the repository at this point in the history
  • Loading branch information
olivia committed Oct 22, 2024
1 parent bad2833 commit 465265b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
Binary file modified bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@fortawesome/react-fontawesome": "^0.2.0",
"@microsoft/applicationinsights-web": "^2.8.10",
"@react-hook/resize-observer": "^1.2.6",
"@react-spring/three": "^9.7.0",
"@react-spring/three": "^9.7.5",
"@react-three/drei": "^9.114.2",
"@react-three/fiber": "^8.17.9",
"@reduxjs/toolkit": "^1.9.3",
Expand All @@ -37,9 +37,9 @@
"json-stringify-pretty-compact": "^4.0.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.partition": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-redux": "^8.0.5",
"react-select": "^5.7.0",
"react-textarea-autosize": "^8.4.0",
Expand Down
18 changes: 9 additions & 9 deletions src/components/two-string/key-group.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
import {useCallback, useEffect, useMemo, useState} from 'react';
import {useMemo} from 'react';
import {getBasicKeyToByte} from 'src/store/definitionsSlice';
import {useAppDispatch, useAppSelector} from 'src/store/hooks';
import {getSelectedKey} from 'src/store/keymapSlice';
import {Keycap} from './unit-key/keycap';
import {getExpressions} from 'src/store/macrosSlice';
import {getSelectedTheme} from 'src/store/settingsSlice';
import {KeyGroupProps, KeysKeys} from 'src/types/keyboard-rendering';
import {getRGB} from 'src/utils/color-math';
import {
calculateKeyboardFrameDimensions,
CSSVarObject,
getComboKeyProps,
} from 'src/utils/keyboard-rendering';
import {getExpressions} from 'src/store/macrosSlice';
import {useSkipFontCheck} from 'src/utils/use-skip-font-check';
import styled from 'styled-components';
import {getSelectedTheme} from 'src/store/settingsSlice';
import {CaseInsideBorder} from './case';
import type {Color} from 'three';
import {
getKeycapSharedProps,
getKeysKeys,
getLabels,
} from '../n-links/key-group';
import {KeyGroupProps, KeysKeys} from 'src/types/keyboard-rendering';
import {getRGB} from 'src/utils/color-math';
import {Color} from 'three';
import {useSkipFontCheck} from 'src/utils/use-skip-font-check';
import {CaseInsideBorder} from './case';
import {Keycap} from './unit-key/keycap';

const KeyGroupContainer = styled.div<{height: number; width: number}>`
position: absolute;
Expand Down

0 comments on commit 465265b

Please sign in to comment.