@automattic/plans-grid-next 1.0.2 → 1.0.3

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 (298) hide show
  1. package/CHANGELOG.md +4 -1
  2. package/dist/cjs/_shared.scss +4 -3
  3. package/dist/cjs/components/comparison-grid/index.js +99 -92
  4. package/dist/cjs/components/comparison-grid/index.js.map +1 -1
  5. package/dist/cjs/components/comparison-grid/style.scss +10 -2
  6. package/dist/cjs/components/features-grid/client-logo-list/client-list.js +0 -12
  7. package/dist/cjs/components/features-grid/client-logo-list/client-list.js.map +1 -1
  8. package/dist/cjs/components/features-grid/index.js +9 -6
  9. package/dist/cjs/components/features-grid/index.js.map +1 -1
  10. package/dist/cjs/components/features-grid/plan-features-list.js +10 -3
  11. package/dist/cjs/components/features-grid/plan-features-list.js.map +1 -1
  12. package/dist/cjs/components/features-grid/plan-headers.js +2 -2
  13. package/dist/cjs/components/features-grid/plan-headers.js.map +1 -1
  14. package/dist/cjs/components/features-grid/plan-tagline.js +1 -1
  15. package/dist/cjs/components/features-grid/plan-tagline.js.map +1 -1
  16. package/dist/cjs/components/features-grid/style.scss +107 -19
  17. package/dist/cjs/components/features-grid/table.js +1 -1
  18. package/dist/cjs/components/features-grid/table.js.map +1 -1
  19. package/dist/cjs/components/features.js +43 -4
  20. package/dist/cjs/components/features.js.map +1 -1
  21. package/dist/cjs/components/item.js +1 -1
  22. package/dist/cjs/components/item.js.map +1 -1
  23. package/dist/cjs/components/plan-button/index.js +5 -3
  24. package/dist/cjs/components/plan-button/index.js.map +1 -1
  25. package/dist/cjs/components/plan-button/style.scss +75 -51
  26. package/dist/cjs/components/plan-div-td-container.js +4 -1
  27. package/dist/cjs/components/plan-div-td-container.js.map +1 -1
  28. package/dist/cjs/components/plan-logo.js +6 -3
  29. package/dist/cjs/components/plan-logo.js.map +1 -1
  30. package/dist/cjs/components/plan-type-selector/components/interval-type-dropdown.js +12 -1
  31. package/dist/cjs/components/plan-type-selector/components/interval-type-dropdown.js.map +1 -1
  32. package/dist/cjs/components/plan-type-selector/hooks/use-max-discount.js +4 -33
  33. package/dist/cjs/components/plan-type-selector/hooks/use-max-discount.js.map +1 -1
  34. package/dist/cjs/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.js +11 -13
  35. package/dist/cjs/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.js.map +1 -1
  36. package/dist/cjs/components/plans-2023-tooltip.js +16 -5
  37. package/dist/cjs/components/plans-2023-tooltip.js.map +1 -1
  38. package/dist/cjs/components/shared/action-button/index.js +22 -7
  39. package/dist/cjs/components/shared/action-button/index.js.map +1 -1
  40. package/dist/cjs/components/shared/action-button/style.scss +4 -0
  41. package/dist/cjs/components/shared/billing-timeframe/index.js +8 -4
  42. package/dist/cjs/components/shared/billing-timeframe/index.js.map +1 -1
  43. package/dist/cjs/components/shared/header-price/index.js +60 -15
  44. package/dist/cjs/components/shared/header-price/index.js.map +1 -1
  45. package/dist/cjs/components/shared/header-price/style.scss +9 -3
  46. package/dist/cjs/components/shared/storage/components/plan-storage.js +2 -2
  47. package/dist/cjs/components/shared/storage/components/plan-storage.js.map +1 -1
  48. package/dist/cjs/components/shared/storage/components/storage-dropdown.js +29 -6
  49. package/dist/cjs/components/shared/storage/components/storage-dropdown.js.map +1 -1
  50. package/dist/cjs/components/shared/storage/components/storage-feature-label.js +2 -1
  51. package/dist/cjs/components/shared/storage/components/storage-feature-label.js.map +1 -1
  52. package/dist/cjs/components/shared/storage/hooks/use-plan-storage.js +2 -0
  53. package/dist/cjs/components/shared/storage/hooks/use-plan-storage.js.map +1 -1
  54. package/dist/cjs/fixtures/sites-purchases.js +2 -4
  55. package/dist/cjs/fixtures/sites-purchases.js.map +1 -1
  56. package/dist/cjs/grid-context.js +4 -1
  57. package/dist/cjs/grid-context.js.map +1 -1
  58. package/dist/cjs/hooks/data-store/get-renewal-pricing-text.js +50 -0
  59. package/dist/cjs/hooks/data-store/get-renewal-pricing-text.js.map +1 -0
  60. package/dist/cjs/hooks/data-store/use-grid-plans-for-comparison-grid.js +6 -1
  61. package/dist/cjs/hooks/data-store/use-grid-plans-for-comparison-grid.js.map +1 -1
  62. package/dist/cjs/hooks/data-store/use-grid-plans-for-features-grid.js +6 -1
  63. package/dist/cjs/hooks/data-store/use-grid-plans-for-features-grid.js.map +1 -1
  64. package/dist/cjs/hooks/data-store/use-grid-plans.js +175 -21
  65. package/dist/cjs/hooks/data-store/use-grid-plans.js.map +1 -1
  66. package/dist/cjs/hooks/data-store/use-highlight-labels.js +13 -4
  67. package/dist/cjs/hooks/data-store/use-highlight-labels.js.map +1 -1
  68. package/dist/cjs/hooks/data-store/use-plan-billing-description.js +68 -13
  69. package/dist/cjs/hooks/data-store/use-plan-billing-description.js.map +1 -1
  70. package/dist/cjs/hooks/data-store/use-plan-features-for-grid-plans.js +76 -2
  71. package/dist/cjs/hooks/data-store/use-plan-features-for-grid-plans.js.map +1 -1
  72. package/dist/cjs/hooks/data-store/use-restructured-plan-features-for-comparison-grid.js +60 -12
  73. package/dist/cjs/hooks/data-store/use-restructured-plan-features-for-comparison-grid.js.map +1 -1
  74. package/dist/cjs/hooks/data-store/use-title-badges.js +19 -0
  75. package/dist/cjs/hooks/data-store/use-title-badges.js.map +1 -0
  76. package/dist/cjs/hooks/use-is-large-currency.js +2 -2
  77. package/dist/cjs/hooks/use-is-large-currency.js.map +1 -1
  78. package/dist/cjs/hooks/use-visible-grid-plans.js +70 -0
  79. package/dist/cjs/hooks/use-visible-grid-plans.js.map +1 -0
  80. package/dist/cjs/index.js +6 -1
  81. package/dist/cjs/index.js.map +1 -1
  82. package/dist/cjs/lib/get-plan-features-object.js +15 -2
  83. package/dist/cjs/lib/get-plan-features-object.js.map +1 -1
  84. package/dist/cjs/lib/plan-pricing-utils.js +135 -0
  85. package/dist/cjs/lib/plan-pricing-utils.js.map +1 -0
  86. package/dist/esm/_shared.scss +4 -3
  87. package/dist/esm/components/comparison-grid/index.js +100 -93
  88. package/dist/esm/components/comparison-grid/index.js.map +1 -1
  89. package/dist/esm/components/comparison-grid/style.scss +10 -2
  90. package/dist/esm/components/features-grid/client-logo-list/client-list.js +0 -12
  91. package/dist/esm/components/features-grid/client-logo-list/client-list.js.map +1 -1
  92. package/dist/esm/components/features-grid/index.js +9 -6
  93. package/dist/esm/components/features-grid/index.js.map +1 -1
  94. package/dist/esm/components/features-grid/plan-features-list.js +10 -3
  95. package/dist/esm/components/features-grid/plan-features-list.js.map +1 -1
  96. package/dist/esm/components/features-grid/plan-headers.js +3 -3
  97. package/dist/esm/components/features-grid/plan-headers.js.map +1 -1
  98. package/dist/esm/components/features-grid/plan-tagline.js +1 -1
  99. package/dist/esm/components/features-grid/plan-tagline.js.map +1 -1
  100. package/dist/esm/components/features-grid/style.scss +107 -19
  101. package/dist/esm/components/features-grid/table.js +1 -1
  102. package/dist/esm/components/features-grid/table.js.map +1 -1
  103. package/dist/esm/components/features.js +44 -5
  104. package/dist/esm/components/features.js.map +1 -1
  105. package/dist/esm/components/item.js +1 -1
  106. package/dist/esm/components/item.js.map +1 -1
  107. package/dist/esm/components/plan-button/index.js +5 -3
  108. package/dist/esm/components/plan-button/index.js.map +1 -1
  109. package/dist/esm/components/plan-button/style.scss +75 -51
  110. package/dist/esm/components/plan-div-td-container.js +4 -1
  111. package/dist/esm/components/plan-div-td-container.js.map +1 -1
  112. package/dist/esm/components/plan-logo.js +7 -4
  113. package/dist/esm/components/plan-logo.js.map +1 -1
  114. package/dist/esm/components/plan-type-selector/components/interval-type-dropdown.js +12 -1
  115. package/dist/esm/components/plan-type-selector/components/interval-type-dropdown.js.map +1 -1
  116. package/dist/esm/components/plan-type-selector/hooks/use-max-discount.js +3 -33
  117. package/dist/esm/components/plan-type-selector/hooks/use-max-discount.js.map +1 -1
  118. package/dist/esm/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.js +11 -13
  119. package/dist/esm/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.js.map +1 -1
  120. package/dist/esm/components/plans-2023-tooltip.js +16 -5
  121. package/dist/esm/components/plans-2023-tooltip.js.map +1 -1
  122. package/dist/esm/components/shared/action-button/index.js +22 -7
  123. package/dist/esm/components/shared/action-button/index.js.map +1 -1
  124. package/dist/esm/components/shared/action-button/style.scss +4 -0
  125. package/dist/esm/components/shared/billing-timeframe/index.js +8 -4
  126. package/dist/esm/components/shared/billing-timeframe/index.js.map +1 -1
  127. package/dist/esm/components/shared/header-price/index.js +60 -15
  128. package/dist/esm/components/shared/header-price/index.js.map +1 -1
  129. package/dist/esm/components/shared/header-price/style.scss +9 -3
  130. package/dist/esm/components/shared/storage/components/plan-storage.js +2 -2
  131. package/dist/esm/components/shared/storage/components/plan-storage.js.map +1 -1
  132. package/dist/esm/components/shared/storage/components/storage-dropdown.js +30 -7
  133. package/dist/esm/components/shared/storage/components/storage-dropdown.js.map +1 -1
  134. package/dist/esm/components/shared/storage/components/storage-feature-label.js +2 -1
  135. package/dist/esm/components/shared/storage/components/storage-feature-label.js.map +1 -1
  136. package/dist/esm/components/shared/storage/hooks/use-plan-storage.js +3 -1
  137. package/dist/esm/components/shared/storage/hooks/use-plan-storage.js.map +1 -1
  138. package/dist/esm/fixtures/sites-purchases.js +2 -4
  139. package/dist/esm/fixtures/sites-purchases.js.map +1 -1
  140. package/dist/esm/grid-context.js +4 -1
  141. package/dist/esm/grid-context.js.map +1 -1
  142. package/dist/esm/hooks/data-store/get-renewal-pricing-text.js +47 -0
  143. package/dist/esm/hooks/data-store/get-renewal-pricing-text.js.map +1 -0
  144. package/dist/esm/hooks/data-store/use-grid-plans-for-comparison-grid.js +6 -1
  145. package/dist/esm/hooks/data-store/use-grid-plans-for-comparison-grid.js.map +1 -1
  146. package/dist/esm/hooks/data-store/use-grid-plans-for-features-grid.js +6 -1
  147. package/dist/esm/hooks/data-store/use-grid-plans-for-features-grid.js.map +1 -1
  148. package/dist/esm/hooks/data-store/use-grid-plans.js +176 -22
  149. package/dist/esm/hooks/data-store/use-grid-plans.js.map +1 -1
  150. package/dist/esm/hooks/data-store/use-highlight-labels.js +14 -5
  151. package/dist/esm/hooks/data-store/use-highlight-labels.js.map +1 -1
  152. package/dist/esm/hooks/data-store/use-plan-billing-description.js +66 -11
  153. package/dist/esm/hooks/data-store/use-plan-billing-description.js.map +1 -1
  154. package/dist/esm/hooks/data-store/use-plan-features-for-grid-plans.js +77 -3
  155. package/dist/esm/hooks/data-store/use-plan-features-for-grid-plans.js.map +1 -1
  156. package/dist/esm/hooks/data-store/use-restructured-plan-features-for-comparison-grid.js +59 -11
  157. package/dist/esm/hooks/data-store/use-restructured-plan-features-for-comparison-grid.js.map +1 -1
  158. package/dist/esm/hooks/data-store/use-title-badges.js +17 -0
  159. package/dist/esm/hooks/data-store/use-title-badges.js.map +1 -0
  160. package/dist/esm/hooks/use-is-large-currency.js +1 -1
  161. package/dist/esm/hooks/use-is-large-currency.js.map +1 -1
  162. package/dist/esm/hooks/use-visible-grid-plans.js +66 -0
  163. package/dist/esm/hooks/use-visible-grid-plans.js.map +1 -0
  164. package/dist/esm/index.js +2 -0
  165. package/dist/esm/index.js.map +1 -1
  166. package/dist/esm/lib/get-plan-features-object.js +15 -2
  167. package/dist/esm/lib/get-plan-features-object.js.map +1 -1
  168. package/dist/esm/lib/plan-pricing-utils.js +129 -0
  169. package/dist/esm/lib/plan-pricing-utils.js.map +1 -0
  170. package/dist/tsconfig-cjs.tsbuildinfo +1 -1
  171. package/dist/tsconfig.tsbuildinfo +1 -1
  172. package/dist/types/components/comparison-grid/index.d.ts +1 -1
  173. package/dist/types/components/comparison-grid/index.d.ts.map +1 -1
  174. package/dist/types/components/features-grid/client-logo-list/client-list.d.ts.map +1 -1
  175. package/dist/types/components/features-grid/index.d.ts.map +1 -1
  176. package/dist/types/components/features-grid/plan-features-list.d.ts.map +1 -1
  177. package/dist/types/components/features-grid/plan-headers.d.ts +2 -0
  178. package/dist/types/components/features-grid/plan-headers.d.ts.map +1 -1
  179. package/dist/types/components/features-grid/table.d.ts.map +1 -1
  180. package/dist/types/components/features.d.ts.map +1 -1
  181. package/dist/types/components/item.d.ts +2 -1
  182. package/dist/types/components/item.d.ts.map +1 -1
  183. package/dist/types/components/plan-button/index.d.ts +2 -1
  184. package/dist/types/components/plan-button/index.d.ts.map +1 -1
  185. package/dist/types/components/plan-div-td-container.d.ts +2 -0
  186. package/dist/types/components/plan-div-td-container.d.ts.map +1 -1
  187. package/dist/types/components/plan-logo.d.ts.map +1 -1
  188. package/dist/types/components/plan-type-selector/components/interval-type-dropdown.d.ts.map +1 -1
  189. package/dist/types/components/plan-type-selector/hooks/use-max-discount.d.ts.map +1 -1
  190. package/dist/types/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.d.ts.map +1 -1
  191. package/dist/types/components/plans-2023-tooltip.d.ts.map +1 -1
  192. package/dist/types/components/shared/action-button/index.d.ts +2 -1
  193. package/dist/types/components/shared/action-button/index.d.ts.map +1 -1
  194. package/dist/types/components/shared/billing-timeframe/index.d.ts.map +1 -1
  195. package/dist/types/components/shared/header-price/index.d.ts.map +1 -1
  196. package/dist/types/components/shared/storage/components/storage-dropdown.d.ts.map +1 -1
  197. package/dist/types/components/shared/storage/components/storage-feature-label.d.ts.map +1 -1
  198. package/dist/types/components/shared/storage/hooks/use-plan-storage.d.ts +1 -1
  199. package/dist/types/components/shared/storage/hooks/use-plan-storage.d.ts.map +1 -1
  200. package/dist/types/fixtures/sites-purchases.d.ts +2 -4
  201. package/dist/types/fixtures/sites-purchases.d.ts.map +1 -1
  202. package/dist/types/grid-context.d.ts +4 -1
  203. package/dist/types/grid-context.d.ts.map +1 -1
  204. package/dist/types/hooks/data-store/get-renewal-pricing-text.d.ts +14 -0
  205. package/dist/types/hooks/data-store/get-renewal-pricing-text.d.ts.map +1 -0
  206. package/dist/types/hooks/data-store/types.d.ts +21 -0
  207. package/dist/types/hooks/data-store/types.d.ts.map +1 -1
  208. package/dist/types/hooks/data-store/use-grid-plans-for-comparison-grid.d.ts +1 -1
  209. package/dist/types/hooks/data-store/use-grid-plans-for-comparison-grid.d.ts.map +1 -1
  210. package/dist/types/hooks/data-store/use-grid-plans-for-features-grid.d.ts +1 -1
  211. package/dist/types/hooks/data-store/use-grid-plans-for-features-grid.d.ts.map +1 -1
  212. package/dist/types/hooks/data-store/use-grid-plans.d.ts.map +1 -1
  213. package/dist/types/hooks/data-store/use-highlight-labels.d.ts.map +1 -1
  214. package/dist/types/hooks/data-store/use-plan-billing-description.d.ts.map +1 -1
  215. package/dist/types/hooks/data-store/use-plan-features-for-grid-plans.d.ts +4 -1
  216. package/dist/types/hooks/data-store/use-plan-features-for-grid-plans.d.ts.map +1 -1
  217. package/dist/types/hooks/data-store/use-restructured-plan-features-for-comparison-grid.d.ts +4 -1
  218. package/dist/types/hooks/data-store/use-restructured-plan-features-for-comparison-grid.d.ts.map +1 -1
  219. package/dist/types/hooks/data-store/use-title-badges.d.ts +9 -0
  220. package/dist/types/hooks/data-store/use-title-badges.d.ts.map +1 -0
  221. package/dist/types/hooks/use-visible-grid-plans.d.ts +14 -0
  222. package/dist/types/hooks/use-visible-grid-plans.d.ts.map +1 -0
  223. package/dist/types/index.d.ts +7 -0
  224. package/dist/types/index.d.ts.map +1 -1
  225. package/dist/types/lib/get-plan-features-object.d.ts +1 -1
  226. package/dist/types/lib/get-plan-features-object.d.ts.map +1 -1
  227. package/dist/types/lib/plan-pricing-utils.d.ts +105 -0
  228. package/dist/types/lib/plan-pricing-utils.d.ts.map +1 -0
  229. package/dist/types/types.d.ts +29 -2
  230. package/dist/types/types.d.ts.map +1 -1
  231. package/package.json +38 -28
  232. package/src/_shared.scss +4 -3
  233. package/src/components/comparison-grid/index.tsx +258 -181
  234. package/src/components/comparison-grid/style.scss +10 -2
  235. package/src/components/features-grid/client-logo-list/client-list.tsx +0 -25
  236. package/src/components/features-grid/index.tsx +35 -18
  237. package/src/components/features-grid/plan-features-list.tsx +15 -4
  238. package/src/components/features-grid/plan-headers.tsx +10 -3
  239. package/src/components/features-grid/plan-tagline.tsx +1 -1
  240. package/src/components/features-grid/style.scss +107 -19
  241. package/src/components/features-grid/table.tsx +4 -2
  242. package/src/components/features.tsx +66 -6
  243. package/src/components/item.tsx +6 -3
  244. package/src/components/plan-button/index.tsx +7 -1
  245. package/src/components/plan-button/style.scss +75 -51
  246. package/src/components/plan-div-td-container.tsx +6 -2
  247. package/src/components/plan-logo.tsx +16 -9
  248. package/src/components/plan-type-selector/components/interval-type-dropdown.tsx +14 -1
  249. package/src/components/plan-type-selector/hooks/use-max-discount.ts +8 -47
  250. package/src/components/plan-type-selector/hooks/use-max-discounts-for-plan-terms.ts +19 -17
  251. package/src/components/plans-2023-tooltip.tsx +17 -5
  252. package/src/components/shared/action-button/index.tsx +46 -5
  253. package/src/components/shared/action-button/style.scss +4 -0
  254. package/src/components/shared/billing-timeframe/index.tsx +12 -7
  255. package/src/components/shared/header-price/index.tsx +129 -27
  256. package/src/components/shared/header-price/style.scss +9 -3
  257. package/src/components/shared/storage/components/plan-storage.tsx +2 -2
  258. package/src/components/shared/storage/components/storage-dropdown.tsx +36 -15
  259. package/src/components/shared/storage/components/storage-feature-label.tsx +2 -1
  260. package/src/components/shared/storage/hooks/use-plan-storage.ts +3 -0
  261. package/src/components/test/actions-button.tsx +5 -0
  262. package/src/components/test/billing-timeframe.tsx +1 -1
  263. package/src/components/test/header-price.tsx +342 -4
  264. package/src/fixtures/sites-purchases.ts +2 -4
  265. package/src/grid-context.tsx +9 -0
  266. package/src/hooks/data-store/get-renewal-pricing-text.ts +73 -0
  267. package/src/hooks/data-store/types.ts +21 -0
  268. package/src/hooks/data-store/use-grid-plans-for-comparison-grid.ts +10 -0
  269. package/src/hooks/data-store/use-grid-plans-for-features-grid.ts +10 -0
  270. package/src/hooks/data-store/use-grid-plans.tsx +189 -23
  271. package/src/hooks/data-store/use-highlight-labels.ts +12 -3
  272. package/src/hooks/data-store/use-plan-billing-description.tsx +80 -15
  273. package/src/hooks/data-store/use-plan-features-for-grid-plans.ts +135 -1
  274. package/src/hooks/data-store/use-restructured-plan-features-for-comparison-grid.ts +93 -20
  275. package/src/hooks/data-store/use-title-badges.ts +31 -0
  276. package/src/hooks/test/use-visible-grid-plans.tsx +116 -0
  277. package/src/hooks/use-is-large-currency.ts +1 -1
  278. package/src/hooks/use-visible-grid-plans.tsx +102 -0
  279. package/src/index.tsx +18 -0
  280. package/src/lib/get-plan-features-object.ts +23 -2
  281. package/src/lib/plan-pricing-utils.ts +211 -0
  282. package/src/lib/test/plan-pricing-utils.ts +594 -0
  283. package/src/style-imports.d.ts +3 -0
  284. package/src/types.ts +41 -0
  285. package/dist/cjs/components/features-grid/mobile-free-domain.js +0 -25
  286. package/dist/cjs/components/features-grid/mobile-free-domain.js.map +0 -1
  287. package/dist/cjs/lib/get-plan-pricing-info-from-grid-plans.js +0 -15
  288. package/dist/cjs/lib/get-plan-pricing-info-from-grid-plans.js.map +0 -1
  289. package/dist/esm/components/features-grid/mobile-free-domain.js +0 -23
  290. package/dist/esm/components/features-grid/mobile-free-domain.js.map +0 -1
  291. package/dist/esm/lib/get-plan-pricing-info-from-grid-plans.js +0 -12
  292. package/dist/esm/lib/get-plan-pricing-info-from-grid-plans.js.map +0 -1
  293. package/dist/types/components/features-grid/mobile-free-domain.d.ts +0 -8
  294. package/dist/types/components/features-grid/mobile-free-domain.d.ts.map +0 -1
  295. package/dist/types/lib/get-plan-pricing-info-from-grid-plans.d.ts +0 -9
  296. package/dist/types/lib/get-plan-pricing-info-from-grid-plans.d.ts.map +0 -1
  297. package/src/components/features-grid/mobile-free-domain.tsx +0 -51
  298. package/src/lib/get-plan-pricing-info-from-grid-plans.ts +0 -31
@@ -0,0 +1,105 @@
1
+ import { Plans } from '@automattic/data-stores';
2
+ /**
3
+ * Intermediate structure that normalizes plan pricing from different sources
4
+ * (PricingMetaForGridPlan, WPCOMProductVariant) into a common shape suitable
5
+ * for discount calculations.
6
+ *
7
+ * All prices are in the smallest currency unit (e.g. cents).
8
+ */
9
+ export interface PlanPriceInfo {
10
+ /** Billing period length in months (1, 12, 24, 36) */
11
+ termMonths: number;
12
+ /** Regular price per month — no intro offer, no site-level discount */
13
+ regularPricePerMonth: number;
14
+ /** Site-level discounted price per month (currency conversion / proration credit), if any */
15
+ discountedPricePerMonth?: number;
16
+ introOffer?: {
17
+ /** Monthly-equivalent price during the intro period */
18
+ pricePerMonth: number;
19
+ /** How many months the intro offer lasts */
20
+ durationMonths: number;
21
+ /** False once the offer has already been used by this user */
22
+ isActive: boolean;
23
+ };
24
+ }
25
+ /**
26
+ * Calculates the total cost of a plan over `durationMonths` months.
27
+ *
28
+ * Handles partial billing periods via pro-ration (e.g. a yearly plan priced at
29
+ * $200/year costs $100 for 6 months).
30
+ *
31
+ * When `useIntroOffer` is true (default) and an active intro offer exists, the
32
+ * intro price is applied for the first `introOffer.durationMonths` months, and
33
+ * the regular (or discounted) price for the remainder.
34
+ *
35
+ * @example
36
+ * // Monthly plan: $10 intro for 1 month, then $20/month; cost for 6 months:
37
+ * // 1×$10 + 5×$20 = $110 (in cents: 1100 + 10000 = 11000)
38
+ * getPlanPriceForDuration( info, 6, { useIntroOffer: true } ) // 11000
39
+ *
40
+ * @example
41
+ * // Yearly plan: $100/yr intro, $200/yr regular; cost for 6 months:
42
+ * // useIntroOffer=true → 6×($100/12) = $50 (5000 cents)
43
+ * // useIntroOffer=false → 6×($200/12) = $100 (10000 cents)
44
+ */
45
+ export declare function getPlanPriceForDuration(info: PlanPriceInfo, durationMonths: number, { useIntroOffer }?: {
46
+ useIntroOffer?: boolean;
47
+ }): number;
48
+ /**
49
+ * Calculates the percentage discount between a reference price and a cheaper price.
50
+ *
51
+ * Always uses Math.floor — conservative, never overstates savings.
52
+ *
53
+ * Returns `undefined` (not 0) when there is no saving, allowing callers to
54
+ * distinguish "no discount" from a computed "0% discount".
55
+ */
56
+ export declare function calculateDiscountPercentage(referencePrice: number, cheaperPrice: number): number | undefined;
57
+ /**
58
+ * Converts a `PricingMetaForGridPlan` (from @automattic/data-stores Plans hooks)
59
+ * into a `PlanPriceInfo` suitable for use with `getPlanPriceForDuration` and
60
+ * `calculateDiscountPercentage`.
61
+ *
62
+ * Returns null when required pricing data is absent (e.g. free/enterprise plans
63
+ * that have no monthly price, or plans whose billing period is unknown).
64
+ */
65
+ export declare function fromPricingMetaForGridPlan(meta: Plans.PricingMetaForGridPlan): PlanPriceInfo | null;
66
+ /**
67
+ * Minimal structural type describing the pricing fields needed from a product
68
+ * variant. `WPCOMProductVariant` (defined in checkout) satisfies this interface
69
+ * structurally, so it can be passed directly without importing the checkout type
70
+ * into this package.
71
+ *
72
+ * Key invariants:
73
+ * - `priceBeforeDiscounts` is always the full-term cost at the regular rate.
74
+ * - `priceInteger` is the actual amount charged, which embeds both intro and
75
+ * non-intro portions when an intro offer spans only part of the term
76
+ * (e.g. a 1-year intro on a 2-year plan).
77
+ * - When `priceInteger < priceBeforeDiscounts`, the intro price portion is
78
+ * derived by subtracting the non-intro months at the regular rate.
79
+ */
80
+ export interface VariantPriceData {
81
+ introductoryInterval: number;
82
+ /** 'month' | 'year' */
83
+ introductoryTerm: string;
84
+ /** Full-term price at the regular (non-intro) rate */
85
+ priceBeforeDiscounts: number;
86
+ /** Actual price charged for the full term (may embed an intro offer) */
87
+ priceInteger: number;
88
+ termIntervalInMonths: number;
89
+ }
90
+ /**
91
+ * Converts a variant price data object (structurally compatible with
92
+ * `WPCOMProductVariant`) into a `PlanPriceInfo`.
93
+ *
94
+ * `discountedPricePerMonth` is intentionally not set: `WPCOMProductVariant`
95
+ * does not separate site-level discounts from the intro price. Coupon discounts
96
+ * in checkout are tracked separately via `product.coupon_savings_integer`.
97
+ *
98
+ * Per-month values are derived by dividing full-term prices (integers in the
99
+ * smallest currency unit) by the number of months. The result is rounded to the
100
+ * nearest integer (Math.round) so that all fields in the returned `PlanPriceInfo`
101
+ * remain whole-cent values safe for use with currency formatters. The rounding
102
+ * error is at most 0.5¢ per month and is negligible for percentage comparisons.
103
+ */
104
+ export declare function fromVariantPriceData(variant: VariantPriceData): PlanPriceInfo;
105
+ //# sourceMappingURL=plan-pricing-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plan-pricing-utils.d.ts","sourceRoot":"","sources":["../../../src/lib/plan-pricing-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAEhD;;;;;;GAMG;AACH,MAAM,WAAW,aAAa;IAC7B,sDAAsD;IACtD,UAAU,EAAE,MAAM,CAAC;IACnB,uEAAuE;IACvE,oBAAoB,EAAE,MAAM,CAAC;IAC7B,6FAA6F;IAC7F,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,UAAU,CAAC,EAAE;QACZ,uDAAuD;QACvD,aAAa,EAAE,MAAM,CAAC;QACtB,4CAA4C;QAC5C,cAAc,EAAE,MAAM,CAAC;QACvB,8DAA8D;QAC9D,QAAQ,EAAE,OAAO,CAAC;KAClB,CAAC;CACF;AAiBD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,uBAAuB,CACtC,IAAI,EAAE,aAAa,EACnB,cAAc,EAAE,MAAM,EACtB,EAAE,aAAoB,EAAE,GAAE;IAAE,aAAa,CAAC,EAAE,OAAO,CAAA;CAAO,GACxD,MAAM,CAUR;AAED;;;;;;;GAOG;AACH,wBAAgB,2BAA2B,CAC1C,cAAc,EAAE,MAAM,EACtB,YAAY,EAAE,MAAM,GAClB,MAAM,GAAG,SAAS,CAKpB;AAED;;;;;;;GAOG;AACH,wBAAgB,0BAA0B,CACzC,IAAI,EAAE,KAAK,CAAC,sBAAsB,GAChC,aAAa,GAAG,IAAI,CA0BtB;AAED;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,gBAAgB;IAChC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uBAAuB;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,sDAAsD;IACtD,oBAAoB,EAAE,MAAM,CAAC;IAC7B,wEAAwE;IACxE,YAAY,EAAE,MAAM,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;CAC7B;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,oBAAoB,CAAE,OAAO,EAAE,gBAAgB,GAAI,aAAa,CAsC/E"}
@@ -9,6 +9,14 @@ export type TransformedFeatureObject = FeatureObject & {
9
9
  availableForCurrentPlan: boolean;
10
10
  availableOnlyForAnnualPlans: boolean;
11
11
  isHighlighted?: boolean;
12
+ /**
13
+ * When true, extra bottom margin on the last feature row for pricing experiment variants.
14
+ */
15
+ isExperimentLastFeature?: boolean;
16
+ /**
17
+ * Badge text to display after the feature title (e.g. pricing differentiators pills).
18
+ */
19
+ badgeText?: TranslateResult;
12
20
  };
13
21
  export interface PlanFeaturesForGridPlan {
14
22
  wpcomFeatures: TransformedFeatureObject[];
@@ -33,12 +41,13 @@ export interface GridPlan {
33
41
  product_slug: string;
34
42
  } | null;
35
43
  highlightLabel?: React.ReactNode | null;
44
+ titleBadge?: React.ReactNode | null;
36
45
  }
37
46
  /***********************
38
47
  * Grid Component Types:
39
48
  ***********************/
40
49
  export type GridSize = 'small' | 'smedium' | 'medium' | 'large' | 'xlarge';
41
- export type PlansIntent = 'plans-affiliate' | 'plans-blog-onboarding' | 'plans-newsletter' | 'plans-new-hosted-site' | 'plans-new-hosted-site-business-only' | 'plans-plugins' | 'plans-jetpack-app' | 'plans-jetpack-app-site-creation' | 'plans-import' | 'plans-woocommerce' | 'plans-p2' | 'plans-default-wpcom' | 'plans-business-trial' | 'plans-videopress' | 'plans-guided-segment-developer-or-agency' | 'plans-guided-segment-merchant' | 'plans-guided-segment-blogger' | 'plans-guided-segment-nonprofit' | 'plans-guided-segment-consumer-or-business' | 'plans-site-selected-legacy' | 'default';
50
+ export type PlansIntent = 'plans-affiliate' | 'plans-ai-assembler-free-trial' | 'plans-blog-onboarding' | 'plans-newsletter' | 'plans-new-hosted-site' | 'plans-new-hosted-site-business-only' | 'plans-plugins' | 'plans-jetpack-app' | 'plans-jetpack-app-site-creation' | 'plans-import' | 'plans-woocommerce' | 'plans-p2' | 'plans-default-wpcom' | 'plans-business-trial' | 'plans-videopress' | 'plans-guided-segment-developer-or-agency' | 'plans-guided-segment-merchant' | 'plans-guided-segment-blogger' | 'plans-guided-segment-nonprofit' | 'plans-guided-segment-consumer-or-business' | 'plans-site-selected-legacy' | 'plans-playground' | 'plans-playground-premium' | 'plans-upgrade' | 'plans-upgrade-or-downgrade' | 'plans-wordpress-hosting' | 'plans-website-builder' | 'plans-woo-hosted' | 'plans-woo-hosting-solutions' | 'plans-migration' | 'default';
42
51
  export interface PlanActionOverrides {
43
52
  loggedInFreePlan?: {
44
53
  text?: TranslateResult;
@@ -90,6 +99,8 @@ export interface FeaturesGridProps extends CommonGridProps {
90
99
  export interface ComparisonGridProps extends CommonGridProps {
91
100
  selectedPlan?: string;
92
101
  intervalType: SupportedUrlFriendlyTermType;
102
+ /** Called when the number of visible plans in the grid changes (e.g. for narrowing the container). */
103
+ onVisiblePlansCountChange?: (count: number) => void;
93
104
  }
94
105
  export type UseActionCallback = ({ planSlug, cartItemForPlan, selectedStorageAddOn, availableForPurchase, }: {
95
106
  planSlug: PlanSlug;
@@ -100,13 +111,14 @@ export type UseActionCallback = ({ planSlug, cartItemForPlan, selectedStorageAdd
100
111
  export interface GridAction {
101
112
  primary: {
102
113
  text: TranslateResult;
114
+ ariaLabel?: TranslateResult;
103
115
  callback: () => Promise<void> | void;
104
116
  status?: 'disabled' | 'blocked' | 'enabled';
105
117
  variant?: 'primary' | 'secondary';
106
118
  };
107
119
  postButtonText?: TranslateResult;
108
120
  }
109
- export type UseAction = ({ availableForPurchase, billingPeriod, cartItemForPlan, currentPlanBillingPeriod, isFreeTrialAction, isLargeCurrency, isStuck, planSlug, planTitle, priceString, selectedStorageAddOn, }: {
121
+ export type UseAction = ({ availableForPurchase, billingPeriod, cartItemForPlan, currentPlanBillingPeriod, isFreeTrialAction, isLargeCurrency, isStuck, planSlug, planTitle, priceString, selectedStorageAddOn, pricing, isMonthlyPlan, }: {
110
122
  availableForPurchase?: boolean;
111
123
  billingPeriod?: PlanPricing['billPeriod'];
112
124
  cartItemForPlan?: MinimalRequestCartProduct | null;
@@ -118,6 +130,8 @@ export type UseAction = ({ availableForPurchase, billingPeriod, cartItemForPlan,
118
130
  planTitle?: TranslateResult;
119
131
  priceString?: string;
120
132
  selectedStorageAddOn?: AddOns.AddOnMeta | null;
133
+ pricing?: Plans.PricingMetaForGridPlan | null;
134
+ isMonthlyPlan?: boolean;
121
135
  }) => GridAction;
122
136
  export type GridContextProps = {
123
137
  gridPlans: GridPlan[];
@@ -165,6 +179,19 @@ export type GridContextProps = {
165
179
  * calculating prices.
166
180
  */
167
181
  reflectStorageSelectionInPlanPrices?: boolean;
182
+ /**
183
+ * Enable simplified billing description
184
+ */
185
+ showSimplifiedBillingDescription?: boolean;
186
+ /**
187
+ * If, and how to present increased renewal pricing (null or the assigned variant name)
188
+ */
189
+ showBillingDescriptionForIncreasedRenewalPrice?: string | null;
190
+ /**
191
+ * When true, the user is in the rolled-out pricing differentiation cohort.
192
+ * Used to display cohort-specific feature titles in the comparison grid.
193
+ */
194
+ isExperimentVariant?: boolean;
168
195
  };
169
196
  export type ComparisonGridExternalProps = Omit<GridContextProps, 'children' | 'enableCategorisedFeatures'> & Omit<ComparisonGridProps, 'onUpgradeClick' | 'gridContainerRef' | 'gridSize'> & {
170
197
  className?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/plans-grid-next",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "WordPress.com plans UI grid components and helpers.",
5
5
  "homepage": "https://github.com/Automattic/wp-calypso",
6
6
  "license": "GPL-2.0-or-later",
@@ -8,6 +8,17 @@
8
8
  "main": "dist/cjs/index.js",
9
9
  "module": "dist/esm/index.js",
10
10
  "calypso:src": "src/index.tsx",
11
+ "exports": {
12
+ ".": {
13
+ "calypso:src": "./src/index.tsx",
14
+ "types": "./dist/types/index.d.ts",
15
+ "import": "./dist/esm/index.js",
16
+ "require": "./dist/cjs/index.js"
17
+ },
18
+ "./src/*": {
19
+ "calypso:src": "./src/*"
20
+ }
21
+ },
11
22
  "sideEffects": [
12
23
  "*.css",
13
24
  "*.scss"
@@ -32,51 +43,50 @@
32
43
  "prepare": "yarn run build",
33
44
  "prepack": "yarn run clean && yarn run build",
34
45
  "watch": "tsc --build ./tsconfig.json --watch",
35
- "storybook": "yarn msw init && sb dev"
46
+ "storybook:start": "yarn msw init && storybook dev"
36
47
  },
37
48
  "dependencies": {
38
- "@automattic/calypso-products": "^1.2.1",
39
- "@automattic/components": "^2.2.1",
40
- "@automattic/data-stores": "^3.1.1",
41
- "@automattic/onboarding": "^1.0.0",
49
+ "@automattic/calypso-products": "^1.2.3",
50
+ "@automattic/components": "^3.0.4",
51
+ "@automattic/data-stores": "^3.2.1",
52
+ "@automattic/number-formatters": "^1.2.0",
53
+ "@automattic/onboarding": "^1.0.1",
42
54
  "@automattic/typography": "^1.0.0",
43
55
  "@emotion/react": "11.11.1",
44
56
  "@emotion/styled": "^11.11.0",
45
- "@wordpress/data": "^10.20.0",
46
- "@wordpress/element": "^6.20.0",
47
- "@wordpress/icons": "^10.20.0",
48
- "@wordpress/primitives": "^4.20.0",
49
- "@wordpress/url": "^4.20.0",
50
- "@wordpress/warning": "^3.20.0",
57
+ "@wordpress/data": "^10.48.0",
58
+ "@wordpress/element": "^8.0.0",
59
+ "@wordpress/icons": "^13.3.0",
60
+ "@wordpress/primitives": "^4.48.0",
61
+ "@wordpress/url": "^4.48.0",
62
+ "@wordpress/warning": "^3.48.0",
51
63
  "clsx": "^2.1.1",
52
- "i18n-calypso": "^7.4.0",
64
+ "i18n-calypso": "^7.4.1",
53
65
  "react-intersection-observer": "^9.4.3",
54
66
  "react-transition-group": "^4.3.0"
55
67
  },
56
68
  "peerDependencies": {
57
- "@wordpress/i18n": "^5.20.0",
69
+ "@wordpress/i18n": "^6.21.0",
58
70
  "postcss": "^8.5.3",
59
- "react": "^18.3.1",
60
- "react-dom": "^18.3.1"
71
+ "react": "^18.3.1 || ^19.0.0",
72
+ "react-dom": "^18.3.1 || ^19.0.0"
61
73
  },
62
74
  "devDependencies": {
63
- "@automattic/calypso-build": "^10.0.0",
75
+ "@automattic/calypso-build": "^11.0.0",
64
76
  "@automattic/calypso-color-schemes": "^4.0.0",
65
- "@automattic/calypso-storybook": "^1.0.0",
77
+ "@automattic/calypso-storybook": "^1.0.1",
66
78
  "@automattic/calypso-typescript-config": "^1.0.0",
67
- "@automattic/shopping-cart": "^2.0.1",
68
- "@storybook/addon-actions": "^7.6.20",
69
- "@storybook/cli": "^7.6.20",
70
- "@storybook/react": "^7.6.20",
71
- "@testing-library/dom": "^10.4.0",
72
- "@testing-library/jest-dom": "^6.6.3",
73
- "@testing-library/react": "^16.2.0",
79
+ "@automattic/shopping-cart": "^2.0.2",
80
+ "@testing-library/dom": "^10.4.1",
81
+ "@testing-library/jest-dom": "^6.9.1",
82
+ "@testing-library/react": "^16.3.2",
74
83
  "@testing-library/user-event": "^14.6.1",
75
84
  "msw": "^2.2.14",
76
- "msw-storybook-addon": "^2.0.4",
85
+ "msw-storybook-addon": "^2.0.7",
77
86
  "resize-observer-polyfill": "^1.5.1",
78
- "typescript": "^5.8.2",
79
- "webpack": "^5.97.1"
87
+ "storybook": "^9.1.20",
88
+ "typescript": "^6.0.3",
89
+ "webpack": "^5.99.8"
80
90
  },
81
91
  "msw": {
82
92
  "workerDirectory": "static"
package/src/_shared.scss CHANGED
@@ -47,10 +47,11 @@ $mobile-card-max-width: 440px;
47
47
  }
48
48
 
49
49
  .plans-grid-next-storage-dropdown__option {
50
- display: inline-block;
50
+ display: flex;
51
+ align-items: center;
52
+ flex-wrap: wrap;
51
53
  line-height: 20px;
52
54
  min-height: 30px;
53
- padding-top: 5px;
54
55
  font-size: 0.75rem;
55
56
  text-align: start;
56
57
  }
@@ -130,7 +131,7 @@ $storage-feature-label-y-padding: 4px;
130
131
  font-size: 0.75rem;
131
132
 
132
133
  /**************
133
- * 1. General *
134
+ * 1. General *
134
135
  **************/
135
136
 
136
137
  .components-custom-select-control__label {