@kaizen/components 0.0.0-canary-introduce-next-entrypoint-20250225031042 → 0.0.0-canary-react-19-peer-20250303022312

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 (99) hide show
  1. package/bin/codemod.sh +2 -0
  2. package/codemods/README.md +46 -0
  3. package/codemods/upgradeV1Buttons/index.ts +19 -0
  4. package/codemods/upgradeV1Buttons/transformV1ButtonAttributes.spec.ts +210 -0
  5. package/codemods/upgradeV1Buttons/transformV1ButtonAttributes.ts +146 -0
  6. package/codemods/upgradeV1Buttons/upgradeV1Buttons.spec.ts +658 -0
  7. package/codemods/upgradeV1Buttons/upgradeV1Buttons.ts +93 -0
  8. package/codemods/utils/createJsxElementWithChildren.spec.ts +119 -0
  9. package/codemods/utils/createJsxElementWithChildren.ts +55 -0
  10. package/codemods/utils/createProp.spec.ts +75 -19
  11. package/codemods/utils/createProp.ts +8 -1
  12. package/codemods/utils/getKaioTagName.ts +13 -5
  13. package/codemods/utils/index.ts +1 -0
  14. package/dist/cjs/Calendar/CalendarPopover/CalendarPopover.cjs +38 -25
  15. package/dist/cjs/Focusable/Focusable.module.scss.cjs +6 -0
  16. package/dist/cjs/Link/Link.cjs +45 -0
  17. package/dist/cjs/Link/Link.module.css.cjs +20 -0
  18. package/dist/cjs/Link/subcomponents/LinkContent.cjs +34 -0
  19. package/dist/cjs/future.cjs +1 -1
  20. package/dist/cjs/index.cjs +4 -0
  21. package/dist/cjs/next.cjs +1 -1
  22. package/dist/cjs/overlaysV3.cjs +0 -2
  23. package/dist/cjs/utilitiesV3.cjs +4 -0
  24. package/dist/esm/Calendar/CalendarPopover/CalendarPopover.mjs +39 -26
  25. package/dist/esm/Focusable/Focusable.module.scss.mjs +4 -0
  26. package/dist/esm/Link/Link.mjs +40 -0
  27. package/dist/esm/Link/Link.module.css.mjs +18 -0
  28. package/dist/esm/Link/subcomponents/LinkContent.mjs +26 -0
  29. package/dist/esm/future.mjs +1 -1
  30. package/dist/esm/index.mjs +2 -0
  31. package/dist/esm/next.mjs +1 -1
  32. package/dist/esm/overlaysV3.mjs +0 -1
  33. package/dist/esm/utilitiesV3.mjs +2 -0
  34. package/dist/styles.css +8905 -8782
  35. package/dist/types/Link/Link.d.ts +39 -0
  36. package/dist/types/Link/index.d.ts +1 -0
  37. package/dist/types/Link/subcomponents/LinkContent.d.ts +8 -0
  38. package/dist/types/__next__/Tooltip/index.d.ts +0 -1
  39. package/dist/types/__next__/index.d.ts +1 -0
  40. package/dist/types/index.d.ts +2 -0
  41. package/package.json +3 -3
  42. package/src/Calendar/CalendarPopover/CalendarPopover.module.scss +8 -0
  43. package/src/Calendar/CalendarPopover/CalendarPopover.tsx +13 -2
  44. package/src/Calendar/CalendarPopover/_docs/CalendarPopover.stickersheet.stories.tsx +1 -55
  45. package/src/Calendar/CalendarRange/_docs/CalendarRange.stickersheet.stories.tsx +1 -1
  46. package/src/Calendar/CalendarRange/_docs/CalendarRange.stories.tsx +1 -1
  47. package/src/Calendar/CalendarSingle/_docs/CalendarSingle.stickersheet.stories.tsx +1 -1
  48. package/src/Calendar/CalendarSingle/_docs/CalendarSingle.stories.tsx +1 -1
  49. package/src/DatePicker/_docs/DatePicker.stickersheet.stories.tsx +1 -1
  50. package/src/DatePicker/_docs/DatePicker.stories.tsx +1 -1
  51. package/src/DatePicker/_docs/getLocale.stickersheet.stories.tsx +1 -1
  52. package/src/DateRangePicker/_docs/DateRangePicker.stickersheet.stories.tsx +1 -1
  53. package/src/DateRangePicker/_docs/DateRangePicker.stories.tsx +1 -1
  54. package/src/{__next__/Tooltip/subcomponents/Focusable → Focusable}/_docs/ApiSpecification.mdx +3 -3
  55. package/src/{__next__/Tooltip/subcomponents/Focusable → Focusable}/_docs/Focusable.stories.tsx +1 -1
  56. package/src/Icon/_docs/Icon.docs.stories.tsx +1 -1
  57. package/src/Icon/_docs/Icon.mdx +1 -1
  58. package/src/Icon/_docs/Icon.stickersheet.stories.tsx +1 -1
  59. package/src/Link/Link.module.css +119 -0
  60. package/src/Link/Link.tsx +90 -0
  61. package/src/Link/_docs/Link--api-specification.mdx +133 -0
  62. package/src/Link/_docs/Link--api-usage-guidelines.mdx +107 -0
  63. package/src/Link/_docs/Link.doc.stories.tsx +238 -0
  64. package/src/Link/_docs/Link.stickersheet.stories.tsx +191 -0
  65. package/src/Link/index.ts +1 -0
  66. package/src/Link/subcomponents/LinkContent.tsx +31 -0
  67. package/src/LinkButton/_docs/LinkButton--api-specification.mdx +1 -57
  68. package/src/Modal/GenericModal/_docs/GenericModal.spec.stories.tsx +1 -1
  69. package/src/Modal/GenericModal/_docs/GenericModal.stories.tsx +1 -1
  70. package/src/Tile/subcomponents/GenericTile/GenericTile.spec.stories.tsx +1 -1
  71. package/src/Tile/subcomponents/GenericTile/_docs/GenericTile.stickersheet.stories.tsx +1 -1
  72. package/src/TitleBlockZen/TitleBlockZen.module.scss +1 -6
  73. package/src/__next__/Button/_docs/Button--migration-guide.mdx +81 -0
  74. package/src/__next__/Icon/_docs/Icon--api-specification.mdx +1 -1
  75. package/src/__next__/Icon/_docs/Icon--usage-guidelines.mdx +1 -1
  76. package/src/__next__/Menu/_docs/Menu--api-specification.mdx +1 -1
  77. package/src/__next__/Menu/_docs/Menu--usage-guidelines.mdx +1 -1
  78. package/src/__next__/Select/_docs/Select.mdx +2 -2
  79. package/src/__next__/Select/_docs/Select.stickersheet.stories.tsx +1 -1
  80. package/src/__next__/Select/_docs/Select.stories.tsx +1 -1
  81. package/src/__next__/Tabs/_docs/Tabs--api-specification.mdx +1 -1
  82. package/src/__next__/Tag/RemovableTag/_docs/RemovableTag.mdx +1 -1
  83. package/src/__next__/Tooltip/_docs/ApiSpecification.mdx +1 -1
  84. package/src/__next__/Tooltip/_docs/Tooltip.docs.stories.tsx +2 -1
  85. package/src/__next__/Tooltip/_docs/Tooltip.mdx +1 -1
  86. package/src/__next__/Tooltip/_docs/Tooltip.spec.stories.tsx +2 -1
  87. package/src/__next__/Tooltip/_docs/Tooltip.stories.tsx +2 -1
  88. package/src/__next__/Tooltip/index.ts +0 -1
  89. package/src/__next__/index.ts +4 -0
  90. package/src/index.ts +2 -0
  91. package/dist/cjs/__next__/Tooltip/subcomponents/Focusable/Focusable.module.scss.cjs +0 -6
  92. package/dist/esm/__next__/Tooltip/subcomponents/Focusable/Focusable.module.scss.mjs +0 -4
  93. /package/dist/cjs/{__next__/Tooltip/subcomponents/Focusable → Focusable}/Focusable.cjs +0 -0
  94. /package/dist/esm/{__next__/Tooltip/subcomponents/Focusable → Focusable}/Focusable.mjs +0 -0
  95. /package/dist/types/{__next__/Tooltip/subcomponents/Focusable → Focusable}/Focusable.d.ts +0 -0
  96. /package/dist/types/{__next__/Tooltip/subcomponents/Focusable → Focusable}/index.d.ts +0 -0
  97. /package/src/{__next__/Tooltip/subcomponents/Focusable → Focusable}/Focusable.module.scss +0 -0
  98. /package/src/{__next__/Tooltip/subcomponents/Focusable → Focusable}/Focusable.tsx +0 -0
  99. /package/src/{__next__/Tooltip/subcomponents/Focusable → Focusable}/index.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.