@juspay/blend-design-system 0.0.35 → 0.0.36-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/README.md +5 -5
  2. package/dist/components/Charts/chart.tokens.d.ts +1 -1
  3. package/dist/components/Charts/renderChart.d.ts +1 -1
  4. package/dist/components/Charts/types.d.ts +5 -0
  5. package/dist/components/ChartsV2/ChartContainerV2.d.ts +6 -0
  6. package/dist/components/ChartsV2/ChartHeaderV2.d.ts +6 -0
  7. package/dist/components/ChartsV2/ChartV2.d.ts +3 -0
  8. package/dist/components/ChartsV2/ChartV2Fullscreen.d.ts +14 -0
  9. package/dist/components/ChartsV2/ChartV2Legend.d.ts +6 -0
  10. package/dist/components/ChartsV2/ChartV2NoData.d.ts +6 -0
  11. package/dist/components/ChartsV2/ChartV2Skeleton.d.ts +10 -0
  12. package/dist/components/ChartsV2/chartV2.dark.tokens.d.ts +3 -0
  13. package/dist/components/ChartsV2/chartV2.light.tokens.d.ts +3 -0
  14. package/dist/components/ChartsV2/chartV2.sankey.d.ts +1 -0
  15. package/dist/components/ChartsV2/chartV2.tokens.d.ts +102 -0
  16. package/dist/components/ChartsV2/chartV2.types.d.ts +72 -0
  17. package/dist/components/ChartsV2/index.d.ts +9 -0
  18. package/dist/components/ChartsV2/useChartLegend.d.ts +9 -0
  19. package/dist/components/ChartsV2/useChartLegendHover.d.ts +7 -0
  20. package/dist/components/ChartsV2/useChartRefs.d.ts +6 -0
  21. package/dist/components/ChartsV2/utils.d.ts +3 -0
  22. package/dist/components/ChatInput/ChatInput.d.ts +1 -0
  23. package/dist/components/ChatInput/MobileChatInput.d.ts +1 -0
  24. package/dist/components/ChatInput/chatInput.tokens.d.ts +8 -6
  25. package/dist/components/ChatInput/types.d.ts +1 -0
  26. package/dist/components/DataTable/TableBody/types.d.ts +2 -0
  27. package/dist/components/DataTable/TableHeader/types.d.ts +4 -0
  28. package/dist/components/DataTable/TableHeader/utils.d.ts +4 -2
  29. package/dist/components/DateRangePicker/CalendarGrid.d.ts +1 -0
  30. package/dist/components/DateRangePicker/types.d.ts +3 -0
  31. package/dist/components/DateRangePicker/utils.d.ts +2 -2
  32. package/dist/components/MultiSelect/types.d.ts +1 -1
  33. package/dist/components/SelectorV2/CheckboxV2/CheckboxV2.d.ts +19 -0
  34. package/dist/components/SelectorV2/CheckboxV2/StyledCheckboxV2.d.ts +11 -0
  35. package/dist/components/SelectorV2/CheckboxV2/checkboxV2.animations.d.ts +2 -0
  36. package/dist/components/SelectorV2/CheckboxV2/checkboxV2.dark.tokens.d.ts +3 -0
  37. package/dist/components/SelectorV2/CheckboxV2/checkboxV2.light.tokens.d.ts +3 -0
  38. package/dist/components/SelectorV2/CheckboxV2/checkboxV2.tokens.d.ts +94 -0
  39. package/dist/components/SelectorV2/CheckboxV2/checkboxV2.types.d.ts +64 -0
  40. package/dist/components/SelectorV2/CheckboxV2/index.d.ts +3 -0
  41. package/dist/components/SelectorV2/CheckboxV2/utils.d.ts +67 -0
  42. package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/SwitchV2.d.ts +3 -3
  43. package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/switchV2.dark.tokens.d.ts +1 -1
  44. package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/switchV2.light.tokens.d.ts +1 -1
  45. package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/switchV2.tokens.d.ts +16 -15
  46. package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/switchV2.types.d.ts +5 -8
  47. package/dist/components/SelectorV2/selectorV2.types.d.ts +12 -0
  48. package/dist/components/SelectorsContent/SelectorsContent.types.d.ts +5 -2
  49. package/dist/components/SelectorsContent/SelectorsLabel.d.ts +1 -1
  50. package/dist/components/SelectorsContent/SelectorsSubLabel.d.ts +1 -1
  51. package/dist/components/Timeline/Timeline.d.ts +41 -0
  52. package/dist/components/Timeline/TimelineHeader.d.ts +10 -0
  53. package/dist/components/Timeline/TimelineLabel.d.ts +3 -0
  54. package/dist/components/Timeline/TimelineNode.d.ts +17 -0
  55. package/dist/components/Timeline/TimelineShowMore.d.ts +3 -0
  56. package/dist/components/Timeline/TimelineSubstep.d.ts +11 -0
  57. package/dist/components/Timeline/index.d.ts +8 -0
  58. package/dist/components/Timeline/timeline.dark.token.d.ts +8 -0
  59. package/dist/components/Timeline/timeline.light.token.d.ts +8 -0
  60. package/dist/components/Timeline/timeline.token.d.ts +132 -0
  61. package/dist/components/Timeline/types.d.ts +104 -0
  62. package/dist/components/Timeline/utils.d.ts +6 -0
  63. package/dist/components/common/Seperator.d.ts +4 -3
  64. package/dist/context/ThemeContext.d.ts +7 -1
  65. package/dist/context/useComponentToken.d.ts +5 -2
  66. package/dist/main.d.ts +2 -0
  67. package/dist/main.js +36601 -32999
  68. package/package.json +2 -2
  69. /package/dist/components/{SwitchV2 → SelectorV2/SwitchV2}/index.d.ts +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@juspay/blend-design-system",
3
3
  "private": false,
4
- "version": "0.0.35",
4
+ "version": "0.0.36-beta.1",
5
5
  "description": "A comprehensive React component library and design system by Juspay",
6
6
  "type": "module",
7
7
  "main": "./dist/main.js",
@@ -110,7 +110,7 @@
110
110
  ],
111
111
  "author": "Juspay",
112
112
  "license": "MIT",
113
- "homepage": "https://juspay.design/",
113
+ "homepage": "https://blend.juspay.design/",
114
114
  "repository": {
115
115
  "type": "git",
116
116
  "url": "https://github.com/juspay/blend-design-system.git"