Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update chakra-ui monorepo (major) #768

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@chakra-ui/color-mode (source) 1.4.8 -> 2.2.0 age adoption passing confidence
@chakra-ui/icons (source) 1.1.7 -> 2.2.4 age adoption passing confidence
@chakra-ui/react (source) 1.8.9 -> 3.2.3 age adoption passing confidence

Release Notes

chakra-ui/chakra-ui (@​chakra-ui/color-mode)

v2.2.0

v2.1.11

Compare Source

Patch Changes
  • #​7154
    2d7398a01
    Thanks @​segunadebayo! - ## All components

    Improved the bundling setup for all components.

    • Switched to the .mjs file extension for correct ESM behavior
    • Switched to the latest tsup will uses automatic JSX runtime detection
      removing the need for manually inject classic React import
    • Moved tsup config to package.json since it's very minimal
    • Removed clean-package.config.json in favor of the package.json property
    • Fixed issue where Storybook addon (dark mode and RTL) was not working
  • Updated dependencies
    [2d7398a01]:

v2.1.10

Compare Source

Patch Changes

v2.1.9

Compare Source

Patch Changes

v2.1.8

Compare Source

Patch Changes

v2.1.7

Patch Changes

v2.1.2

Compare Source

v2.1.1

Compare Source

v2.1.0

Compare Source

v2.0.4

Compare Source

Patch Changes

v2.0.3

Compare Source

Patch Changes

v2.0.2

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

Major Changes
  • #​5879
    c390af485
    Thanks @​TimKolberger! - Bump all packages
    to next major for Chakra UI version 2.

  • #​5989
    ed692c0ae
    Thanks @​TimKolberger! - Omit src
    directory from being published to npm

  • #​5828
    1a47fd27e
    Thanks @​segunadebayo! - ### Remove
    deprecations

    Affected components or packages:

    Button, Icon Button, Input, NumberInput, Radio, Checkbox, Select

    • Removed the isFullWidth deprecation. Use width=full or width=100%

    Checkbox

    • Removed defaultIsChecked. Use defaultChecked

    Color mode

    • Removed references to --chakra-ui-color-mode. Use data-theme property
      instead

    Hooks

    • Removed useEventCallback hook

    Input / NumberInput

    • Removed the isFullWidth deprecation. Use width=full or width=100%

    Grid

    • Removed the area prop from Grid component. Should be passed to the
      GridItem instead.

    Styled system

    • Removed the d style prop. Use display instead.
    • Removed the isTruncated style prop. Use noOfLines={1} instead.

    Theme

    • Removed deprecated types.
  • #​5946
    7b5bdcc58
    Thanks @​segunadebayo! - Ensure the
    transition between light/dark modes happens instantly without transition. This
    helps to avoid a weird UX when switch modes for elements with different
    transition definition on the page.

    Allow user configure the storage key for the provider and script. We now
    export a createLocalStorageManager and createCookieStorageManager
    functions.

    const manager = createLocalStorageManager("{storageKey}")
    
    function App({ Component, pageProps }) {
      return (
        <ChakraProvider colorModeManager={manager}>
          <Component {...pageProps} />
        </ChakraProvider>
      )
    }

    Add better support for cookie storage to provide better SSG experience. To use
    cookie script, you can set type=cookie.

    Pro tip: You can also configure the storageKey from script as well

    import { ColorModeScript } from "@&#8203;chakra-ui/react"
    function Document() {
      return (
        <Html>
          <Head>
            <title>App</title>
          </Head>
          <Body>
            <ColorModeScript type="cookie" />
            <Main />
          </Body>
        </Html>
      )
    }

    Refactored color mode to behave consistently between provider and script. The
    new precedence is as follows:

    • Get the color mode value in the specified localStorage or cookie manager
    • If value doesn't exist, use the initialColorMode value specified.
      • If the initial value is system, then we'll compute the color mode using
        matchMedia
      • Else, we use the initial value as is.
    • If user specifies useSystemColorMode: true, then we'll subscribe to color
      mode changes from the operating system. It is no longer used to determine
      the initial color mode. To achieve that, please use
      initialColorMode: "system"

    Removed --chakra-ui-color-mode CSS variable and use data-theme attribute
    on the html element.

    Added color-scheme to the html element to ensure native form-elements
    render in the correct mode.

  • #​5882
    41b3119f5
    Thanks @​TimKolberger! - Bump peer
    dependency to React and ReactDOM to >=18

Patch Changes
chakra-ui/chakra-ui (@​chakra-ui/react)

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes
  • 7234d75
    Thanks @​segunadebayo! - - Slider

    • Add DraggingIndicator component to show an element only while dragging

    • Fix issue where slider marks were not styled correctly in vertical
      orientation

    • Menu: Update recipe to use --available-height css variable to keep the
      menu's height within the available space

    • System: Fixed issue where exporting withRootProvider would result in
      type error

    • Snippets / Slider

      • Move MarkerGroup into the Control component
      • Remove hardcoded margin values in favor of recipes and
        data-has-mark-label attribute

v3.2.1

Compare Source

Patch Changes
  • #​9240
    561ccc0
    Thanks @​Pagebakers! - - System: Fix issue
    where exporting withProvider and withContext would result in type error

    • Timeline: Fix issue where TimelineTitle was missing from the export
    • Tabs: Fix issue where useTabs and useTabsContext were not exported
    • Snippets / ColorPicker: Fix flex direction of ColorPickerChannelInputs
      and ColorPickerChannelSliders

v3.2.0

Compare Source

Minor Changes
  • #​9130
    e5880fb
    Thanks @​segunadebayo! - - [Preview] Add new
    ColorPicker component to allow users pick a color in hsl, rgb, hsb formats.

    • Add new ColorSwatch component to preview a color.
    • Fix issue where mergeConfigs mutates the underlying configs passed to it.

v3.1.2

Compare Source

Patch Changes
  • 65952d7
    Thanks @​segunadebayo! - - General: Fix
    issue where value change types were not re-exported from Ark UI

    • Layer Style: Fix issue where fill.surface layer style doesn't render
      the correct styles
    • Pagination: Fix issue where PaginationPageText did not render the
      correct page range

v3.1.1

Compare Source

Patch Changes
  • #​9128
    0715e2c
    Thanks @​coverlv! - Fix issue where
    useBreakpointValue throws error if ssr is false

  • #​9103
    1254769
    Thanks @​Newbie012! - - Checkbox: Fix issue
    where checkmark doesn't show on Safari

    • Alert: Fix issue where indicator icon is not visible on Safari
    • ClientOnly: Fix issue where returned the incorrect type leading to TS
      error like ClientOnly cannot be used as a JSX component.
    • Fieldset: Fix issue where anatomy is not exported
    • Timeline: Refactor variants such that it responds to colorPalette

v3.1.0

Compare Source

Minor Changes
  • 9a27c2c
    Thanks @​segunadebayo! - - System: Fix
    issue where using as prop with logic based components doesn't work as
    expected.

    • DataList: Add support for bold variant.

    • Button: Tweak the horizontal padding when size is sm.

    • Snippets

      • Slider: Add showValue prop to render the text value of the slider.
      • Select
        • Add HiddenSelect to ensure it works in form submissions.
        • Fix type inference is lost when using SelectRoot component from
          snippet
        • Fix issue where form data is not populated when using native form
          element
      • ColorMode: Fix type error when using the latest next-themes.
      • Provider: Forward props to ColorModeProvider powered by next-themes
        for better customization.
    • Toggle: Add Toggle component for toggling between two states. It
      composes the Button component.

v3.0.2

Compare Source

Patch Changes
  • 20b91bd
    Thanks @​segunadebayo! - - InputAddon:
    Fix issue with input addon not stretched correctly.
    • Snippets / Toaster: Improve toaster styling by adding
      width={{ md: "sm" }} to the toast root.

v3.0.1

Compare Source

Patch Changes
  • c0020c9
    Thanks @​segunadebayo! - Fix issue where
    using keyframe interpolation in animation prop doesn't work

  • 7d4f898
    Thanks @​segunadebayo! - Fix issue where
    scrollBehavior=outside doesn't allow scrolling outside the dialog content

v3.0.0

Major Changes
  • #​8153
    7b6e66a
    Thanks @​segunadebayo! - Prepares the ground
    for the next version Chakra that leverages Ark UI.

    User Facing

    • Consolidate all component packages into a single package
    • Remove all deprecated components and APIs
    • Simplify the Changelogs for all v2 releases

    Infrastructure

    • Simplify the repo infrastructure and release process
    • Migrate from jest to vitest
    • Migrate from tsup to custom rollup setup for better bundling strategy
  • #​8815
    806be96
    Thanks @​isBatak! - Remove the @chakra-ui/hooks
    package in favour of using dedicated, robust libraries like react-use and
    usehooks-ts

Minor Changes
  • #​8121
    170198f
    Thanks @​kkieninger! - ### Fixed

    • Fix hard-coded z-index for Menu in favor of one defined from the theme
    • Fix problem with leading and trailing spaces when getting initials for the
      Avatar component
    • Suppress unnecessary re-renders of Checkbox and Radio component
Added
  • Add CSS accentColor property to style props
  • Add support for asChild in chakra factory
  • Export toastStore from toast component
  • Upgrade framer-motion to allow for skipAnimations
  • Add component namespace to reduce imports and provide better composition
  • Modal, Drawer: Add default preserveScrollBarGap
Changed

Redesign the component themes and anatomy

  • 192c6b1
    Thanks @​segunadebayo! - Add new fieldset
    component

  • 07b04b1
    Thanks @​segunadebayo! - - [NEW]: Add
    RatingGroup, SegmentControl

    • [NEW]: Add EmptyState component for empty states
    • [NEW]: Add RadioCard and CheckboxCard components for card-based
      selection
  • #​8568
    5fd993b
    Thanks @​isBatak! - Add Collapsible recipe with
    default open/close animation

  • 3fc49ca
    Thanks @​segunadebayo! - Add support for
    FormatNumber and FormatByte components

  • 3ccbbdf
    Thanks @​segunadebayo! - ### Motion Styles

    Add support for motionStyle props.

    The idea is to pair them with text styles and layer styles to create this
    three-part mixin that can make your styles a lot cleaner.

    Motion styles focus solely on animations, allowing you to orchestrate
    animation properties.

    import { defineMotionStyles } from "@&#8203;chakra-ui/react"
    
    export const motionStyles = defineMotionStyles({
      "slide-fade-in": {
        value: {
          transformOrigin: "var(--transform-origin)",
          animationDuration: "fast",
          "&[data-placement^=top]": {
            animationName: "slide-from-top, fade-in",
          },
          "&[data-placement^=bottom]": {
            animationName: "slide-from-bottom, fade-in",
          },
          "&[data-placement^=left]": {
            animationName: "slide-from-left, fade-in",
          },
          "&[data-placement^=right]": {
            animationName: "slide-from-right, fade-in",
          },
        },
      },
    })
Built-in Keyframe Animations

Chakra new provides built-in keyframe animations that you can use to create
your own motion styles.

Slide: slide-from-top, slide-from-bottom, slide-from-left,
slide-from-right, slide-to-top, slide-to-bottom, slide-to-left,
slide-to-right

Slide Full: slide-from-top-full, slide-from-bottom-full,
slide-from-left-full, slide-from-right-full, slide-to-top-full,
slide-to-bottom-full, slide-to-left-full, slide-to-right-full

Fade: fade-in, fade-out

Scale: scale-in, scale-out

You can compose these animations using the animationName property in your
motion styles to create really cool animations. No JS required.

<Box animationName="slide-from-top, fade-in" animationDuration="fast">
  Slide from top and fade in
</Box>
  • 3ccbbdf
    Thanks @​segunadebayo! - Add support for
    built-in layer styles to help prototype faster with automatic dark mode.
    Paired with colorPalette, you can create beautiful designs with little code
    that adapts to dark mode automatically.

    Fill Layer Styles: fill.muted, fill.solid, fill.surface

    <Box layerStyle="fill.muted" colorPalette="red">
      This is a subtle fill layer
    </Box>

    Border Layer Styles: outline.muted, outline.solid

    <Box layerStyle="outline.muted" colorPalette="red">
      This is a subtle outline layer
    </Box>

    Indicator Styles: indicator.top, indicator.end, indicator.bottom,
    indicator.start

    <Box layerStyle="indicator.top" colorPalette="red">
      This is a top indicator layer
    </Box>

    Disabled Styles: disabled

    <Box _disabled={{ layerStyle: "disabled" }}>Disabled Button</Box>

    You can combine these layer styles to create very complex designs with little
    code.

    <Box
      layerStyle="fill.muted"
      _hover={{ layerStyle: "outline.solid" }}
      colorPalette="red"
    >
      This is a complex layer
    </Box>
  • de9c0a0
    Thanks @​segunadebayo! - Add DataList
    component

  • e77a9b8
    Thanks @​segunadebayo! - - Add new Timeline
    component to presenting chronological information or activities.

    • Trim generated className in the DOM.
    • Add neutral status to Alert component
  • 763329e
    Thanks @​segunadebayo! - Add preset and
    preset-base entrypoints.

    • The preset entrypoint exposes the default theme and recipes for Chakra.
    • The preset-base entrypoint exposes the base utilities and conditions used
      internally.
  • 925cfd9
    Thanks @​segunadebayo! - Add ActionBar,
    Status, Rating, Pagination components

  • e9a1537
    Thanks @​segunadebayo! - BREAKING: Change
    signature of useRecipe, useSlotRecipe, createSlotRecipeContext

createSlotRecipeContext

Before:

const { withProvider, withContext } = createSlotRecipeContext("accordion")

After:

const { withProvider, withContext } = createSlotRecipeContext({
  key: "accordion",
})
useSlotRecipe

Before:

const recipe = useSlotRecipe("accordion")

After:

const recipe = useSlotRecipe({ key: "accordion" })
  • 3908155
    Thanks @​segunadebayo! - Rename
    createStyleContext to createSlotRecipeContext

  • c654ee3
    Thanks @​segunadebayo! - Improve performance
    of styled components to avoid unneeded re-renders.

  • edec8f7
    Thanks @​segunadebayo! - Add clipboard
    composition

  • 5093e18
    Thanks @​segunadebayo! - Add cursor pointer
    to button

  • 4c6838c
    Thanks @​segunadebayo! - - Rename onLabel
    and offLabel to trackLabel

    • Add support for thumbLabel prop for rendering an icon within thumb
  • #​8393
    623e558
    Thanks @​segunadebayo! - - Integrate Ark UI
    components to reduce maintenance surface.

    • Add FileUpload component
    • Remove trigger=hover in favor of HoverCard
    • Replace Tooltip, Popover and HoverCard with those from Ark UI
  • 945a777
    Thanks @​segunadebayo! - BREAKING: Integrate
    Ark v4. This mostly affects the custom select component that requires the use
    of createListCollection now.

  • c26acf0
    Thanks @​segunadebayo! - Add support for
    cursor token type

  • 55c0839
    Thanks @​segunadebayo! - Move the Prose
    component to snippets so it can be customized by the user.

  • 952647a
    Thanks @​segunadebayo! - Add CardTitle and
    CardDescription components

  • f4762bf
    Thanks @​segunadebayo! - Add support for
    merging multiple system configs into one within createSystem

    Before:

    const config = mergeConfigs(defaultConfig, customConfig)
    export const system = createSystem(config)

    After:

    const system = createSystem(defaultConfig, customConfig)
  • #​8218
    a89c598
    Thanks @​segunadebayo! - Add support for
    custom theme conditions or pseudo props via theme.conditions

    // theme.ts
    
    const theme = extendTheme({
      conditions: {
        _closed: "[data-state='closed']", // pseudo prop
      },
    })

    This allows you to use the pseudo prop in your components

    <Box data-state="closed" _closed={{ bg: "red.200" }}>
      This box is closed
    </Box>

    For TypeScript users, you need to use the Chakra CLI to generate the types
    for your custom conditions.

    pnpm chakra-cli tokens src/theme/index.ts
  • c2f45ca
    Thanks @​segunadebayo! - Rename
    Fieldset.Control to Fieldset.Content

  • 1738b90
    Thanks @​segunadebayo! - - Icon: Set
    asChild to true by default to reduce repetition

    • All components

      • Ensure consistent sizing convention (units of 4px). Smaller elements start
        at 20px, larger elements start at 40px
      • Ensure focus ring matches the colorPalette
    • Input, Textarea: Rename filled variant to subtle

    • Tags: Add new Tag.StartElement and Tag.EndElement components to allow
      for easier styling of the start and end elements

  • 3ccbbdf
    Thanks @​segunadebayo! - Redesign Stepper
    component. It's now called Steps and manages the state internally, no need
    to use useSteps anymore.

    We've also improved the accessibility of the component by leveraging the tabs
    pattern and adding the required ARIA attributes.

    <Steps.Root defaultIndex={0} count={2}>
      <Steps.List>
        <Steps.Item index={0}>
          <Steps.Trigger>
            <Steps.Title>Step 1</Steps.Title>
          </Steps.Trigger>
          <Steps.Separator />
        </Steps.Item>
    
        <Steps.Item index={1}>
          <Steps.Trigger>
            <Steps.Title>Step 2</Steps.Title>
          </Steps.Trigger>
          <Steps.Separator />
        </Steps.Item>
      </Steps.List>
    
      <Steps.Content index={0}>Step 1</Steps.Content>
      <Steps.Content index={1}>Step 2</Steps.Content>
      <Steps.CompleteContent>Complete</Steps.CompleteContent>
    </Steps.Root>

    Using the CLI, you can also scaffold an already composed stepper component

    chakra composition add steps
  • 548470d
    Thanks @​segunadebayo! - Add custom select
    from Ark UI and design recipe

  • 8b110da
    Thanks @​segunadebayo! - Support inlining
    recipe in createRecipeContext and createSlotRecipeContext for better DX
    when shipping libraries based on Chakra.

    This reduces the need for using the Chakra CLI to generate types for custom
    components.

  • 05793a2
    Thanks @​segunadebayo! - - Make gray the
    default color palette.

    • Change avatar sm size to 36px for consistency.
    • Move bg for outline component variants.
  • 43f2c7d
    Thanks @​segunadebayo! - - CheckboxCard
    [New]

    Add support for a new CheckboxCard component that can be used to render a
    card with a checkbox.

    <CheckboxCard.Root>
      <CheckboxCard.Control>
        <Stack gap="0" flex="1">
          <CheckboxCard.Label>Checkbox</CheckboxCard.Label>
          <Text>Some description</Text>
        </Stack>
    
        <CheckboxCard.HiddenInput />
        <CheckboxCard.Indicator />
      </CheckboxCard.Control>
    </CheckboxCard.Root>
    • Checkmark [New]

      Add new checkmark component for rendering a static checkmark icon with the
      checked, disabled, and indeterminate state baked in.

    <Stack>
      <Checkmark />
      <Checkmark checked />
      <Checkmark indeterminate />
      <Checkmark disabled />
      <Checkmark checked disabled />
      <Checkmark indeterminate disabled />
    </Stack>
    • EmptyState [New]

      Add new EmptyState component for rendering an empty state message with a
      title, description, and optional action button.

    <EmptyState.Root>
      <EmptyState.Content>
        <EmptyState.Indicator>
          <HiTemplate />
        </EmptyState.Indicator>
    
        <VStack textAlign="center">
          <Text fontWeight="medium">No template found</Text>
          <Text fontSize="sm" color="fg.muted">
            Try creating a new template with the button below
          </Text>
        </VStack>
    
        <Button variant="outline">
          <HiPlus /> Create Template
        </Button>
      </EmptyState.Content>
    </EmptyState.Root>
  • e119ae9
    Thanks @​segunadebayo! - Rename
    motionStyle to animationStyle for better intuitiveness

  • #​8575
    d4522d9
    Thanks @​isBatak! - Align theme recipe name with
    panda

  • 3ccbbdf
    Thanks @​segunadebayo! - Add support for
    focusRing and focusRingColor style props that allow to quickly style focus
    visible state of form controls.

    The focus ring values can be either extend or contain

    <Box asChild focusRing="extend" focusRingColor="pink.500">
      <input type="text" />
    </Box>
  • 4ff153f
    Thanks @​segunadebayo! - Speed up
    intellisence for style props, and add support for strictTokens in the CLI.

  • 47a8a9e
    Thanks @​segunadebayo! - - Add inherit to
    Spinner recipe size

    • Refactor button and link button snippets
  • b6d1d0d
    Thanks @​segunadebayo! - Simplify spinner
    component to use less custom props.

    • Removed emptyColor, prefer to use --spinner-track-color
    • Removed speed, prefer to use animationDuration
    • Removed thickness, prefer to use borderWidth
  • #​8218
    a89c598
    Thanks @​segunadebayo! - Add support for
    _open and _closed pseudo props for styling their respective selectors.

    • _open: &[data-state=open], &[open]
    • _closed: &[data-state=closed]
    • _groupOpen: [data-group][data-state=open] &
    • _groupClosed: [data-group][data-state=closed] &

    Extend the existing pseudo props to support new selectors`

    • _placeholder now supports &[data-placeholder]
    • _placeholderShow now supports &[data-placeholder-shown]
    • _fullscreen now supports &[data-fullscreen]
    • _empty now supports &[data-empty]
    • _expanded now supports &[data-state=expanded]
    • _checked now supports &[data-state-checked]
  • #​8569
    eb26857
    Thanks @​isBatak! - Fix the boxSize type to
    allow number values.

  • 47b3b5a
    Thanks @​segunadebayo! - Support array in
    conditions object. This matches the API in Panda CSS and allow users to define
    complex selectors like media hover queries.

  • e4f2df0
    Thanks @​segunadebayo! - Add Prose
    component to help style markdown content.

  • c243698
    Thanks @​segunadebayo! - - Add
    referrerPolicy to Avatar component.

    • Add CheckboxDescription, CheckboxCardDescription and RadioCardDescription
    • Swap muted and subtle color tokens
Patch Changes

v2.8.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 536beb5 to 48fe609 Compare July 13, 2022 20:35
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 638a25f to 9cdebcd Compare August 5, 2022 14:08
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 9cdebcd to 7b4aca4 Compare August 14, 2022 10:34
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 3 times, most recently from ccfb3ba to 711f09c Compare August 29, 2022 22:09
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 711f09c to 2605b1a Compare September 7, 2022 14:34
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 78df1ef to 4bb3263 Compare September 19, 2022 15:25
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 4bb3263 to 34d3ac4 Compare October 3, 2022 10:26
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 34d3ac4 to f819a14 Compare November 20, 2022 09:46
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from f819a14 to 97fc16e Compare December 31, 2022 17:34
@renovate renovate bot changed the title Update chakra-ui monorepo to v2 (major) fix(deps): update chakra-ui monorepo to v2 (major) Dec 31, 2022
@renovate renovate bot changed the title fix(deps): update chakra-ui monorepo to v2 (major) Update chakra-ui monorepo to v2 (major) Dec 31, 2022
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 81e6a55 to e40f863 Compare January 2, 2023 11:17
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 3 times, most recently from f32a035 to 9c660ef Compare January 16, 2023 16:48
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 9c660ef to 911439b Compare January 20, 2023 12:29
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from b992fc2 to 07c6821 Compare February 15, 2023 22:10
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 3 times, most recently from 5a0edd6 to 4d6e8c9 Compare March 23, 2023 14:05
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 3 times, most recently from b26ebea to 60a6b76 Compare March 30, 2023 19:39
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 60a6b76 to ddcae29 Compare April 25, 2023 11:22
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from ddcae29 to 97b9d35 Compare May 3, 2023 12:20
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 97b9d35 to d14d39e Compare May 31, 2023 11:45
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from d14d39e to 8a68611 Compare June 19, 2023 15:03
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 8a68611 to 2915aba Compare July 19, 2023 00:59
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 2915aba to 2845918 Compare September 8, 2023 23:34
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 2845918 to 25275f5 Compare October 24, 2023 04:32
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 25275f5 to 48f9d42 Compare November 9, 2023 18:11
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 48f9d42 to ef364e6 Compare April 8, 2024 07:31
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 6 times, most recently from 644d9a8 to 78acbc7 Compare October 4, 2024 21:54
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 78acbc7 to 106cfd1 Compare October 9, 2024 16:26
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from a20db59 to cf39004 Compare October 22, 2024 19:25
@renovate renovate bot changed the title Update chakra-ui monorepo to v2 (major) Update chakra-ui monorepo (major) Oct 22, 2024
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 3 times, most recently from b00134c to ce15abf Compare October 31, 2024 07:13
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 3e54f1f to 4da69f9 Compare November 9, 2024 21:03
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 49dfcf2 to 2f4755a Compare November 20, 2024 23:02
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch 2 times, most recently from 4c15a62 to 2312fd7 Compare November 30, 2024 03:30
@renovate renovate bot force-pushed the renovate/major-chakra-ui-monorepo branch from 2312fd7 to 4ff0004 Compare December 6, 2024 02:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants