Releases: cschroeter/park-ui
Releases · cschroeter/park-ui
@park-ui/[email protected]
Changed
- Replaced
start
withflex-start
due to mixed support in some browsers.
@park-ui/[email protected]
Changed
- Replaced
start
withflex-start
due to mixed support in some browsers.
@park-ui/[email protected]
Added
- Added
Collapsible
component. - Added
TreeView
component. - Added
Clipboard
component.
Changed
- Updated the
Accordion
to leverage the newCollapsible
component from Ark UI (version 2.20+).
@park-ui/[email protected]
Added
- Introduced the
Collapsible
component.
Changed
- Updated the
Accordion
to leverage the newCollapsible
component from Ark UI (version 2.20+).
@park-ui/[email protected]
Fixed
- Replaced
{colors.white}
and{colors.black}
withblack
andwhite
in color references to prevent false positive error messages.
@park-ui/[email protected]
Added
- Added
TreeView
component. - Added
Clipboard
component.
@park-ui/[email protected]
Fixed
- Resolved an issue that you had to add the
accent
andgray
colors to theadditionalColors
option in thecreatePreset
function to make them available in the CSS bundle.
@park-ui/[email protected]
Added
Introduced a new additionalColors
option in the createPreset
function to decrease the CSS bundle size effectively. By default, the preset includes only the gray
and accent
colors.
This maybe a breaking change for some users, so please update your configuration accordingly.
Example configuration:
import { defineConfig } from '@pandacss/dev';
import { createPreset } from '@park-ui/panda-preset';
export default defineConfig({
presets: [
'@pandacss/preset-base',
createPreset({
accentColor: 'amber',
grayColor: 'sand',
additionalColors: ['red', 'green'],
}),
],
// Additional configuration...
})
To add all available colors, use this wildcard:
createPreset({
additionalColors: ['*'],
}),
@park-ui/[email protected]
Fixed
- Resolved an issue that the layers in the generated CSS file were not sorted correctly.
@park-ui/[email protected]
Added
- Added
Icon
andProgress
components.
Changed
- Replaced
heading
recipe in favor oftext
recipe. Please update your code snippets accordingly.