import { inputToRGB } from '@ctrl/tinycolor';
then inputToRGB is undefined. because it resolved to @ctrl/tinycolor/dist/index.js
but if i change like this it can work.
import { inputToRGB } from '@ctrl/tinycolor/dist/public_api.js';
seem like package.json entry not working here, but others package is fine, only this package has the problem.
my dependency chain is : @ant-design/icons@4.x -> @ant-design/colors@6.x -> @ctrl/tinycolor@3.4.0
then
inputToRGBis undefined. because it resolved to@ctrl/tinycolor/dist/index.jsbut if i change like this it can work.
seem like package.json entry not working here, but others package is fine, only this package has the problem.
my dependency chain is :
@ant-design/icons@4.x -> @ant-design/colors@6.x -> @ctrl/tinycolor@3.4.0