Skip to content

Releases: cschroeter/park-ui

@park-ui/[email protected]

06 Mar 09:58
Compare
Choose a tag to compare

Changed

  • Replaced start with flex-start due to mixed support in some browsers.

@park-ui/[email protected]

06 Mar 09:58
Compare
Choose a tag to compare

Changed

  • Replaced start with flex-start due to mixed support in some browsers.

@park-ui/[email protected]

28 Feb 12:52
Compare
Choose a tag to compare

Added

  • Added Collapsible component.
  • Added TreeView component.
  • Added Clipboard component.

Changed

  • Updated the Accordion to leverage the new Collapsible component from Ark UI (version 2.20+).

@park-ui/[email protected]

27 Feb 14:17
Compare
Choose a tag to compare

Added

  • Introduced the Collapsible component.

Changed

  • Updated the Accordion to leverage the new Collapsible component from Ark UI (version 2.20+).

@park-ui/[email protected]

16 Feb 11:58
Compare
Choose a tag to compare

Fixed

  • Replaced {colors.white} and {colors.black} with black and white in color references to prevent false positive error messages.

@park-ui/[email protected]

16 Feb 10:08
Compare
Choose a tag to compare

Added

  • Added TreeView component.
  • Added Clipboard component.

@park-ui/[email protected]

12 Feb 09:36
Compare
Choose a tag to compare

Fixed

  • Resolved an issue that you had to add the accent and gray colors to the additionalColors option in the createPreset function to make them available in the CSS bundle.

@park-ui/[email protected]

08 Feb 08:45
Compare
Choose a tag to compare

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]

01 Feb 12:27
Compare
Choose a tag to compare

Fixed

  • Resolved an issue that the layers in the generated CSS file were not sorted correctly.

@park-ui/[email protected]

01 Feb 08:52
Compare
Choose a tag to compare

Added

  • Added Icon and Progress components.

Changed

  • Replaced heading recipe in favor of text recipe. Please update your code snippets accordingly.