v0.2.0
Configurable extraction — classAttributes and classFunctions options.
Adds configurable class extraction — you can now specify which attribute names and utility functions the extractor scans.
This version predates the package's npm publication — the published registry history starts at
v1.0.0. It's recorded here as the sub-package's pre-npm version history.
classAttributesconfig option: specify the attribute names (e.g.inputClassName,wrapperClass) the extractor should scan, replacing the defaults (classNameandclass— include them in your list to keep them)classFunctionsconfig option: specify the utility function names (e.g.cva,tv,twJoin) the extractor should scan, replacing the defaults (cn,clsx,classNames, andtwMerge— include them in your list to keep them)ExtractorOptionstype added to public APIextractClasses()now accepts an optional second parameter (options?: ExtractorOptions) to override attributes and functions per-callDEFAULT_CLASS_ATTRIBUTESandDEFAULT_CLASS_FUNCTIONSconstants exported for referenceBackwards compatible — no breaking changes; existing configs and code continue to work without modification