Skip to content

Releases: cschroeter/park-ui

@park-ui/[email protected]

01 Aug 19:08
9e1177a
Compare
Choose a tag to compare

Added

  • Input, Textarea: Now support usage within the Field component.

Changed

  • CLI: Installation of components using the CLI no longer requires a tsconfig.json file.
    This is particularly beneficial for setups like nx workspaces that do not include a tsconfig.json file.

The CLI now prompts the following:

➜ Which JS framework do you use? [React / Solid / Vue]
➜ Where would you like to store your components? [./src/components/ui]

Adding a component will create the following folder structure:

➜ /src/components/ui/
  |-- styled/
  |   |-- utils/
  |   |   `-- create-style-context.ts
  |   `-- button.tsx
  `-- button.tsx

Fixed

  • Textarea: Fixed an issue where the invalid state was not rendered correctly.
  • Tooltip: Set a proper z-index value to ensure the tooltip is displayed above other elements.
  • Input: Fixed an issue where the horizontal padding was not applied correctly.
  • Resolved a warning related to the undefined usage of colors.red.9.

@park-ui/[email protected]

28 Jul 21:34
9eb1312
Compare
Choose a tag to compare

Added

  • Added new semantic tokens: fg.error and border.error for styling error states.
  • Added support for invalid state in the Input component.
  • Added _invalid condition to the list of supported conditions.

Changed

  • Updated the Button component to support loading states.

Fixed

  • Resolved an issue where Panda sometimes did not recognize style props on IconButton components.

@park-ui/[email protected]

27 Jul 21:18
00fe5b0
Compare
Choose a tag to compare

Added

  • Added Spinner component.

Fixed

  • Fixed an issue where forcing a color mode on a component sometimes did not work as expected.

Removed

  • Removed the icon-button recipe in favor of reusing the button recipe.

@park-ui/[email protected]

15 Jul 16:59
50397b3
Compare
Choose a tag to compare

Added

  • Added support for forcing all components to render in either dark or light mode.
export const App = () => {
  return (
    <Box className="dark">
      {/* Renders a Popover component always in dark mode */}
      <Popover />
    </Box>
  )
}

@park-ui/[email protected]

25 Jun 20:06
f4b5aae
Compare
Choose a tag to compare

Fixed

  • Prepared recipes for QrCode, SignaturePad and Field components.

@park-ui/[email protected]

06 Jun 20:06
Compare
Choose a tag to compare

We are excited to announce that in this release, we have migrated all components to the new Ark UI 3.0 API.
This update includes several breaking changes, so please make sure to update your code snippets accordingly.

Changed

  • Optimized type checking for Heading, Icon and Text components for faster performance.

Fixed

  • Resolved an issue with the Avatar component where the image did not display as round after loading.

@park-ui/[email protected]

19 May 07:15
Compare
Choose a tag to compare

Fixed

  • Set white-space: pre for the Code and Kb component to prevent text wrapping.

@park-ui/[email protected]

10 Apr 09:40
Compare
Choose a tag to compare

Added

  • Added on and off to the list of supported conditions.

Changed

  • Improved the hover conditions to only activate on non-touch devices.

Fixed

  • Fixed an issue where the NumberInput component rendered a border incorrectly.
  • Fixed an issue where the ToggleGroup component did not appear to work correctly on touch devices.

@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.