Patch ScaleDropdownOption width bug

This commit is contained in:
natoverse 2022-11-28 16:10:46 -08:00
Родитель fcd94e293e
Коммит b974075217
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@thematic/fluent",
"version": "5.0.0",
"version": "5.0.1",
"license": "MIT",
"type": "module",
"main": "src/index.ts",

Просмотреть файл

@ -23,7 +23,7 @@ export const ScaleDropdownOption: FC<ScaleDropdownOptionProps> = ({
const { key } = option
const Palette = usePaletteComponent(key as string)
const [width, height] = useSafeCollapseDimensions(paletteWidth, paletteHeight)
const scale = useScale(option.key as string, paletteWidth)
const scale = useScale(option.key as string, width)
const cStyle = useMemo(
() => ({
...containerStyle,

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "@thematic/webapp",
"title": "Thematic",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "https://microsoft.github.io/thematic/",
"private": true,
"license": "MIT",