Skip to content

Releases: razorpay/blade

@razorpay/[email protected]

20 Mar 10:36
c5c37d3
Compare
Choose a tag to compare

Patch Changes

  • 9dcc291: fix(Button): use height and width to fix sizes in Icon Only Button

@razorpay/[email protected]

19 Mar 10:05
e1498f3
Compare
Choose a tag to compare

Minor Changes

  • fd304e4: feat: add the ButtonGroup component

@razorpay/[email protected]

14 Mar 10:41
1d09fd8
Compare
Choose a tag to compare

Minor Changes

  • 524fa92: feat(Accordion): add new filled variant

    New variant can be used to build individual filled Accordions like these

    image

    [!Warning]

    Accordion has a new API and the current API will be deprecated and removed in next major version

    Migration from existing API

    We have added AccordionItemHeader and AccordionItemBody components.

    Props like icon, title, description from AccordionItem are deprecated.

    • icon on AccordionItem can be replicated with leading on AccordionItemHeader
    • title moves from AccordionItem to AccordionItemHeader
    • description from AccordionItem can be passed to AccordionItemBody as children
    Diff
    <Accordion>
      <AccordionItem
    -    icon={StarIcon}
    -    title="This is title"
    -    description="Body content of Accordion"
      />
    </Accordion>
    <Accordion>
      <AccordionItem>
    +    <AccordionItemHeader leading={<StarIcon size="large" />} title="This is title" />
    +    <AccordionItemBody>Body content of Accordion</AccordionItemBody>
      </AccordionItem>
    </Accordion>

    Checkout full documentation at https://blade.razorpay.com/?path=/docs/components-accordion--docs

@razorpay/[email protected]

12 Mar 11:35
69dbab8
Compare
Choose a tag to compare

Patch Changes

  • 2c64f18: feat: support defaultPlacement prop on DropdownOverlay
  • ef68789: fix(DropdownButton): scroll handling issues on keyboard navigations

@razorpay/[email protected]

04 Mar 15:05
edb49fa
Compare
Choose a tag to compare

Patch Changes

  • a6a5968: fix: cover more cases with codemod
  • 902e28b: fix: i18nify-js dependency updated

@razorpay/[email protected]

01 Mar 10:26
d7f2a1e
Compare
Choose a tag to compare

Patch Changes

  • af39cab: fix: add FileUpload exports
  • 26317e0: feat: add adjusted font fallbacks for Inter and TASA

@razorpay/[email protected]

01 Mar 07:15
52616ae
Compare
Choose a tag to compare

Minor Changes

  • 9ebaf98: feat: add FileUpload component

@razorpay/[email protected]

29 Feb 11:57
f37e00e
Compare
Choose a tag to compare

Minor Changes

  • bb7466e: feat(blade): add Breadcrumb component

@razorpay/[email protected]

27 Feb 06:38
f0ebc25
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • ab028b6: fix(Tag): tag truncation in Select and AutoComplete

@razorpay/[email protected]

21 Feb 11:57
f136d26
Compare
Choose a tag to compare

Patch Changes

  • 85f229d: refactor(blade): add meta attributes to Toast