Skip to content

Releases: razorpay/blade

@razorpay/blade@11.17.0

10 May 12:17
7a27810
Compare
Choose a tag to compare

Minor Changes

  • 64108d7: feat(blade): add new icons and add figma icon importer script

@razorpay/blade@11.16.1

09 May 09:11
61e3fb9
Compare
Choose a tag to compare

Patch Changes

  • 51c04c8: feat(Table): add compact rowDensity & update existing densities
  • 906e7f4: fix(DropdownOverlay): Fix DropdownOverlay getting cropped in Sticky Table Column

@razorpay/blade@11.16.0

07 May 15:11
a31db64
Compare
Choose a tag to compare

Minor Changes

  • afddbf2: feat: add label & validation related props to ChipGroup

Patch Changes

  • ef0fb05: feat(tokens): update dark mode tokens

@razorpay/blade@11.15.2

06 May 12:36
8e3191f
Compare
Choose a tag to compare

Patch Changes

  • 102dc87: fix: i18nify-react version upgraded to resolve duplicate i18nify-js copies

@razorpay/blade@11.15.1

03 May 08:23
ceb8131
Compare
Choose a tag to compare

Patch Changes

  • 989172a: fix(blade): tab item button type

@razorpay/blade@11.15.0

30 Apr 06:52
954d92a
Compare
Choose a tag to compare

Minor Changes

@razorpay/blade@11.14.0

25 Apr 07:33
c4e9b36
Compare
Choose a tag to compare

Minor Changes

  • 23a8364: feat(blade): add leading prop in Alert

@razorpay/blade@11.13.1

22 Apr 11:00
2d20c0c
Compare
Choose a tag to compare

Patch Changes

  • 2f0d96f: fix(blade): phone number input dropdown not opening

@razorpay/blade@11.13.0

18 Apr 09:23
f3ff19a
Compare
Choose a tag to compare

Minor Changes

  • 410cfb5: feat: add circular variant for the ProgressBar component

    Changes

    • The "meter" & "progress" values for the variant prop are deprecated in favor of the new type?: "meter" | "progress" prop.

    • The variant prop now accepts "linear" & "circular" values.

    • Usage:

        <ProgressBar variant="circular" value={20}> label="Label" />

    Migration with Codemod

    • The codemod will automatically update the ProgressBar component. Execute the codemod on the file/directory that needs to be migrated for the page via the following command:

      Need help? Check out jscodeshift docs for CLI usage tips.

      npx jscodeshift ./PATH_TO_YOUR_DIR --extensions=tsx,ts,jsx,js -t ./node_modules/@razorpay/blade/codemods/migrate-progressbar/transformers/index.ts --ignore-pattern="**/node_modules/**"
    • There might be some situations where the codemod falls short, If you encounter errors, refer the following examples to migrate the component manually:

      - <ProgressBar value={20}> label="Label" />
      + <ProgressBar type="progress" value={20}> label="Label" />
      
      - <ProgressBar variant="progress" value={20}> label="Label" />
      + <ProgressBar type="progress" variant="linear" value={20}> label="Label" />
      
      - <ProgressBar variant="meter" value={20}> label="Label" />
      + <ProgressBar type="meter" variant="linear" value={20}> label="Label" />

@razorpay/blade@11.12.0

18 Apr 06:59
2aec1b4
Compare
Choose a tag to compare

Minor Changes

  • c5f24ea: feat(TextArea, TextInput): Support Tagged Inputs with tags and isTaggedInput prop
    feat(Tag): max-width is removed from Tag component