-
Notifications
You must be signed in to change notification settings - Fork 981
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Description
Hello.
It seems the auto-complete for the global component ui theming is shallow.
We solved this in our own project with a that more accurately deeply-nests, whilst also allowing optional string properties (for variants and such like)
It also navigates to the source on a Cmd+Click which is great!
I had a dig into the source and it seems it can be solved at source actually-deep DeepPartial implementation:
type UI = {
primary?: string
gray?: string
colors?: string[]
strategy?: Strategy
[key: string]: any
} & FullyDeepPartial<typeof config> // <-- fix this one hereI'm happy to PR this fix.
Additional context
No response
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request