@dmsi/wedgekit-react 0.0.5 → 0.0.7

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 (430) hide show
  1. package/dist/{chunk-25Y2OMTD.js → chunk-6ZY524ID.js} +8 -4
  2. package/dist/{chunk-UGXT677T.js → chunk-BWRHL2AG.js} +4 -2
  3. package/dist/{chunk-VFWFORJJ.js → chunk-DKKYR6DS.js} +1 -0
  4. package/dist/{chunk-TBHTISFW.js → chunk-GTCSRHPF.js} +1 -1
  5. package/dist/chunk-I2UVVKQI.js +12 -0
  6. package/dist/{chunk-CABAANHQ.js → chunk-L4UM372R.js} +5 -1
  7. package/dist/chunk-Q3FKEKIN.js +23 -0
  8. package/dist/{chunk-YD462QK7.js → chunk-TAW5ZZ4Z.js} +4 -4
  9. package/dist/{chunk-UEN5BURK.js → chunk-TRUPPHBQ.js} +14 -11
  10. package/dist/{chunk-2B7WUAOV.js → chunk-TU55CHXU.js} +4 -2
  11. package/dist/{chunk-PMQOPIJZ.js → chunk-U42SKNR6.js} +45 -16
  12. package/dist/{chunk-SPQH4CSJ.js → chunk-XUIPGYP5.js} +11 -3
  13. package/dist/components/Checkbox.cjs +1 -0
  14. package/dist/components/Checkbox.js +1 -1
  15. package/dist/components/DataGrid.cjs +145 -17
  16. package/dist/components/DataGrid.js +138 -19
  17. package/dist/components/DataGridCell.cjs +4 -2
  18. package/dist/components/DataGridCell.js +4 -4
  19. package/dist/components/DateInput.cjs +4 -2
  20. package/dist/components/DateInput.js +1 -1
  21. package/dist/components/DateRangeInput.cjs +4 -2
  22. package/dist/components/DateRangeInput.js +1 -1
  23. package/dist/components/FilterGroup.cjs +559 -31
  24. package/dist/components/FilterGroup.js +21 -3
  25. package/dist/components/Input.cjs +4 -2
  26. package/dist/components/Input.js +1 -1
  27. package/dist/components/MainBar.cjs +2 -1
  28. package/dist/components/MainBar.js +2 -1
  29. package/dist/components/Menu.js +1 -1
  30. package/dist/components/MobileDataGrid.cjs +658 -0
  31. package/dist/components/MobileDataGrid.js +125 -0
  32. package/dist/components/Modal.cjs +147 -52
  33. package/dist/components/Modal.js +80 -30
  34. package/dist/components/ModalButtons.cjs +7 -3
  35. package/dist/components/ModalButtons.js +1 -1
  36. package/dist/components/ModalContent.cjs +25 -2
  37. package/dist/components/ModalContent.js +1 -1
  38. package/dist/components/ModalHeader.cjs +11 -3
  39. package/dist/components/ModalHeader.js +1 -1
  40. package/dist/components/ModalScrim.cjs +5 -6
  41. package/dist/components/ModalScrim.js +1 -1
  42. package/dist/components/Notification.cjs +137 -26
  43. package/dist/components/Notification.js +29 -16
  44. package/dist/components/Password.cjs +4 -2
  45. package/dist/components/Password.js +1 -1
  46. package/dist/components/Search.cjs +4 -2
  47. package/dist/components/Search.js +2 -2
  48. package/dist/components/Select.cjs +15 -7
  49. package/dist/components/Select.js +2 -2
  50. package/dist/components/SideMenuGroup.cjs +45 -16
  51. package/dist/components/SideMenuGroup.js +1 -1
  52. package/dist/components/SideMenuItem.cjs +45 -16
  53. package/dist/components/SideMenuItem.js +1 -1
  54. package/dist/components/Stack.cjs +45 -16
  55. package/dist/components/Stack.js +1 -1
  56. package/dist/components/Stepper.cjs +4 -2
  57. package/dist/components/Stepper.js +1 -1
  58. package/dist/components/Surface.cjs +4 -4
  59. package/dist/components/Surface.js +36 -3
  60. package/dist/components/Swatch.cjs +971 -22
  61. package/dist/components/Swatch.js +928 -7
  62. package/dist/components/Theme.js +3 -9
  63. package/dist/components/Time.cjs +150 -91
  64. package/dist/components/Time.js +48 -60
  65. package/dist/components/Toast.cjs +1 -1
  66. package/dist/components/Toast.js +1 -1
  67. package/dist/fonts.css +2 -0
  68. package/dist/index.css +371 -19
  69. package/package.json +1 -1
  70. package/src/brand.css +16 -1
  71. package/src/components/Checkbox.tsx +1 -0
  72. package/src/components/DataGrid.tsx +132 -3
  73. package/src/components/FilterGroup.tsx +25 -2
  74. package/src/components/Input.tsx +4 -1
  75. package/src/components/MainBar.tsx +2 -1
  76. package/src/components/Menu.tsx +11 -4
  77. package/src/components/MobileDataGrid.tsx +135 -0
  78. package/src/components/Modal.tsx +73 -13
  79. package/src/components/ModalButtons.tsx +26 -17
  80. package/src/components/ModalContent.tsx +20 -2
  81. package/src/components/ModalHeader.tsx +24 -13
  82. package/src/components/ModalScrim.tsx +4 -3
  83. package/src/components/Notification.tsx +21 -14
  84. package/src/components/Select.tsx +7 -9
  85. package/src/components/Stack.tsx +85 -20
  86. package/src/components/Surface.tsx +4 -5
  87. package/src/components/Swatch.tsx +779 -6
  88. package/src/components/Time.tsx +51 -70
  89. package/src/components/Toast.tsx +1 -1
  90. package/src/darkmode.css +18 -3
  91. package/src/fonts.css +2 -0
  92. package/src/index.css +23 -3
  93. package/dist/acc.css +0 -3
  94. package/dist/agility.css +0 -7
  95. package/dist/chunk-22YZ6LFN.js +0 -322
  96. package/dist/chunk-27OSC5OM.js +0 -68
  97. package/dist/chunk-2EHJFFX4.js +0 -124
  98. package/dist/chunk-2GC2SPSS.js +0 -130
  99. package/dist/chunk-2KLCMD2M.js +0 -106
  100. package/dist/chunk-2TLQVCQQ.js +0 -130
  101. package/dist/chunk-2Y6GPKXR.js +0 -263
  102. package/dist/chunk-322ATVWD.js +0 -298
  103. package/dist/chunk-35DCQU2F.js +0 -127
  104. package/dist/chunk-3B7FAEF7.js +0 -38
  105. package/dist/chunk-3FLOLZYP.js +0 -21
  106. package/dist/chunk-3IZWY2C7.js +0 -221
  107. package/dist/chunk-3NGYDV56.js +0 -38
  108. package/dist/chunk-3NLKVKFR.js +0 -72
  109. package/dist/chunk-3R7YVBRL.js +0 -135
  110. package/dist/chunk-3RDFNEVD.js +0 -91
  111. package/dist/chunk-3TPGMRVY.js +0 -123
  112. package/dist/chunk-42X2EOOI.js +0 -129
  113. package/dist/chunk-47GJZWOH.js +0 -103
  114. package/dist/chunk-4BUU5MTT.js +0 -263
  115. package/dist/chunk-4IZG2UCW.js +0 -31
  116. package/dist/chunk-4M7CJVTZ.js +0 -136
  117. package/dist/chunk-4NZBVXM3.js +0 -53
  118. package/dist/chunk-4S4WZ3MQ.js +0 -103
  119. package/dist/chunk-4SV7MJMP.js +0 -340
  120. package/dist/chunk-4TH2SUHQ.js +0 -145
  121. package/dist/chunk-56ORPWGF.js +0 -148
  122. package/dist/chunk-5HIUW5CM.js +0 -128
  123. package/dist/chunk-5K3U4IUW.js +0 -34
  124. package/dist/chunk-5KOZKEEM.js +0 -91
  125. package/dist/chunk-5OIRPFRD.js +0 -114
  126. package/dist/chunk-5QW5SJNW.js +0 -31
  127. package/dist/chunk-5QZO37QK.js +0 -263
  128. package/dist/chunk-5ROMJJRK.js +0 -135
  129. package/dist/chunk-5VHYVTZI.js +0 -123
  130. package/dist/chunk-6277DY3K.js +0 -437
  131. package/dist/chunk-6C5NOV6D.js +0 -263
  132. package/dist/chunk-6CDVHKTS.js +0 -103
  133. package/dist/chunk-6E4OJA7E.js +0 -263
  134. package/dist/chunk-6GBZFWQ4.js +0 -105
  135. package/dist/chunk-6GGLA6DI.js +0 -263
  136. package/dist/chunk-6HKVN4QK.js +0 -340
  137. package/dist/chunk-6HLJFPGY.js +0 -284
  138. package/dist/chunk-6KUUK27D.js +0 -31
  139. package/dist/chunk-6Q5NNY5V.js +0 -135
  140. package/dist/chunk-6VAZR5GK.js +0 -122
  141. package/dist/chunk-6XDXJ3Z3.js +0 -131
  142. package/dist/chunk-6XIXUFSA.js +0 -114
  143. package/dist/chunk-7CG4GVU7.js +0 -21
  144. package/dist/chunk-7DNCGSXK.js +0 -284
  145. package/dist/chunk-7GFGBJCU.js +0 -287
  146. package/dist/chunk-7VA3AERB.js +0 -31
  147. package/dist/chunk-7YJLGGIR.js +0 -83
  148. package/dist/chunk-7ZCBQXHR.js +0 -272
  149. package/dist/chunk-A4BGWCF6.js +0 -221
  150. package/dist/chunk-A6RDEIAN.js +0 -254
  151. package/dist/chunk-AE7SZPWF.js +0 -121
  152. package/dist/chunk-AEQYZFXI.js +0 -50
  153. package/dist/chunk-AFEIB2Y7.js +0 -213
  154. package/dist/chunk-AGQML5BM.js +0 -340
  155. package/dist/chunk-AHBE63RV.js +0 -263
  156. package/dist/chunk-AHHXD4EH.js +0 -31
  157. package/dist/chunk-AILPQXDY.js +0 -47
  158. package/dist/chunk-AKTL6JU5.js +0 -25
  159. package/dist/chunk-AMZFEIAM.js +0 -114
  160. package/dist/chunk-ANI7PKSV.js +0 -38
  161. package/dist/chunk-AO6WGDPJ.js +0 -105
  162. package/dist/chunk-ASDN5OZ3.js +0 -318
  163. package/dist/chunk-ASSOOV4N.js +0 -53
  164. package/dist/chunk-AWSUZLRR.js +0 -79
  165. package/dist/chunk-B6A3BOGW.js +0 -31
  166. package/dist/chunk-B6NMINKX.js +0 -72
  167. package/dist/chunk-B7UOXS2S.js +0 -221
  168. package/dist/chunk-BDN7SDV5.js +0 -31
  169. package/dist/chunk-BDPJYJD2.js +0 -218
  170. package/dist/chunk-BDYWCYRG.js +0 -263
  171. package/dist/chunk-BENTHNAQ.js +0 -51
  172. package/dist/chunk-BGPBLXQ5.js +0 -131
  173. package/dist/chunk-BKC5DNOX.js +0 -162
  174. package/dist/chunk-BMGYSXYW.js +0 -50
  175. package/dist/chunk-BNOE4DGB.js +0 -79
  176. package/dist/chunk-BQMI4NKT.js +0 -103
  177. package/dist/chunk-BSBXTPTA.js +0 -84
  178. package/dist/chunk-BYNATA7V.js +0 -114
  179. package/dist/chunk-BZFVPEG3.js +0 -98
  180. package/dist/chunk-C2GYWE4S.js +0 -263
  181. package/dist/chunk-C5NNFQ4B.js +0 -114
  182. package/dist/chunk-C7ALJGJG.js +0 -322
  183. package/dist/chunk-C7S6DKZ6.js +0 -31
  184. package/dist/chunk-CA4BW655.js +0 -50
  185. package/dist/chunk-CELC37U6.js +0 -38
  186. package/dist/chunk-CIWOBFZ4.js +0 -340
  187. package/dist/chunk-CKB4S3O3.js +0 -284
  188. package/dist/chunk-CL6RYGIT.js +0 -263
  189. package/dist/chunk-CLB4OQS5.js +0 -84
  190. package/dist/chunk-CMBMFSP4.js +0 -340
  191. package/dist/chunk-CTHHLBRT.js +0 -90
  192. package/dist/chunk-DDQ4KWHW.js +0 -74
  193. package/dist/chunk-DHWXCPF2.js +0 -56
  194. package/dist/chunk-DV3IMUO6.js +0 -50
  195. package/dist/chunk-DZHPNWUL.js +0 -70
  196. package/dist/chunk-DZLUR2I7.js +0 -34
  197. package/dist/chunk-E7H6GJIB.js +0 -31
  198. package/dist/chunk-EAJ37R7R.js +0 -31
  199. package/dist/chunk-EDMIKY4Q.js +0 -50
  200. package/dist/chunk-EE4GUGFX.js +0 -31
  201. package/dist/chunk-EHCD3FVZ.js +0 -50
  202. package/dist/chunk-EHOMG5B4.js +0 -31
  203. package/dist/chunk-EM7ODK2O.js +0 -53
  204. package/dist/chunk-ER3HQRPL.js +0 -105
  205. package/dist/chunk-ER6TD3DA.js +0 -30
  206. package/dist/chunk-ESK7AT3B.js +0 -38
  207. package/dist/chunk-ETWMDEUU.js +0 -114
  208. package/dist/chunk-EWX2EDF5.js +0 -236
  209. package/dist/chunk-EXJKOP3Y.js +0 -236
  210. package/dist/chunk-F2YQE6G5.js +0 -145
  211. package/dist/chunk-F3U3RHIB.js +0 -131
  212. package/dist/chunk-F433MJII.js +0 -91
  213. package/dist/chunk-F4JE6AD2.js +0 -160
  214. package/dist/chunk-FCYGYC7R.js +0 -30
  215. package/dist/chunk-FEEMBYZR.js +0 -98
  216. package/dist/chunk-FKQ63FLW.js +0 -91
  217. package/dist/chunk-FNFDOS7L.js +0 -263
  218. package/dist/chunk-FNLYAP3I.js +0 -135
  219. package/dist/chunk-FQVCRL3Z.js +0 -145
  220. package/dist/chunk-FZ6I2KRT.js +0 -263
  221. package/dist/chunk-FZLYFJ53.js +0 -26
  222. package/dist/chunk-G3AYBQ2Y.js +0 -221
  223. package/dist/chunk-G4V7WZAV.js +0 -72
  224. package/dist/chunk-GDAY5XPY.js +0 -47
  225. package/dist/chunk-GELM4Z36.js +0 -263
  226. package/dist/chunk-GGR5UY3Q.js +0 -83
  227. package/dist/chunk-GK556OXV.js +0 -263
  228. package/dist/chunk-GOB3NB3Q.js +0 -130
  229. package/dist/chunk-GPIG2QUB.js +0 -437
  230. package/dist/chunk-GV63QYC5.js +0 -130
  231. package/dist/chunk-GWNDXZUZ.js +0 -263
  232. package/dist/chunk-H3INEB6H.js +0 -296
  233. package/dist/chunk-H3VQYL46.js +0 -50
  234. package/dist/chunk-H53EBFHV.js +0 -114
  235. package/dist/chunk-HBD6NLMB.js +0 -51
  236. package/dist/chunk-HBTQFVPW.js +0 -121
  237. package/dist/chunk-HCDYAZGJ.js +0 -91
  238. package/dist/chunk-HE3XKR3P.js +0 -130
  239. package/dist/chunk-HK3NQMPY.js +0 -51
  240. package/dist/chunk-HK54SJNM.js +0 -103
  241. package/dist/chunk-HL2IYNCS.js +0 -50
  242. package/dist/chunk-I5A3SU35.js +0 -282
  243. package/dist/chunk-I5HKQSF2.js +0 -59
  244. package/dist/chunk-I7LXSGQA.js +0 -10
  245. package/dist/chunk-IDAZ53A4.js +0 -261
  246. package/dist/chunk-II6HWGH6.js +0 -295
  247. package/dist/chunk-IIDPTJCI.js +0 -31
  248. package/dist/chunk-IJ6AAL4W.js +0 -59
  249. package/dist/chunk-IKZQIIV3.js +0 -123
  250. package/dist/chunk-ISKELMPI.js +0 -67
  251. package/dist/chunk-IWUZ6NSN.js +0 -218
  252. package/dist/chunk-IYDKL3OH.js +0 -130
  253. package/dist/chunk-IZ75D7KD.js +0 -30
  254. package/dist/chunk-JCLVMFRY.js +0 -122
  255. package/dist/chunk-JDHZQIFC.js +0 -135
  256. package/dist/chunk-JFMZU3WS.js +0 -123
  257. package/dist/chunk-JI54AM6E.js +0 -105
  258. package/dist/chunk-JM4DMO5V.js +0 -91
  259. package/dist/chunk-JNLDVEK3.js +0 -221
  260. package/dist/chunk-JU3RVFK5.js +0 -114
  261. package/dist/chunk-JU4PINK3.js +0 -282
  262. package/dist/chunk-K2YPB4SV.js +0 -38
  263. package/dist/chunk-K5EXR7F7.js +0 -253
  264. package/dist/chunk-K7CWFWAA.js +0 -263
  265. package/dist/chunk-KGCFZ3ZY.js +0 -263
  266. package/dist/chunk-KJEU2OLC.js +0 -263
  267. package/dist/chunk-KNZWZVWO.js +0 -50
  268. package/dist/chunk-KVQDUSDT.js +0 -33
  269. package/dist/chunk-KXFCVFX7.js +0 -50
  270. package/dist/chunk-KXWYWY7O.js +0 -135
  271. package/dist/chunk-KYJFCVGO.js +0 -53
  272. package/dist/chunk-L4SK5HYC.js +0 -114
  273. package/dist/chunk-L5OMTPWT.js +0 -130
  274. package/dist/chunk-LBL6VQ5F.js +0 -51
  275. package/dist/chunk-LCJKAY5H.js +0 -122
  276. package/dist/chunk-LEPHUIU3.js +0 -263
  277. package/dist/chunk-LFNCUQNK.js +0 -103
  278. package/dist/chunk-LIQIMUDD.js +0 -270
  279. package/dist/chunk-LJ2W2FEG.js +0 -134
  280. package/dist/chunk-LJGUNBDS.js +0 -238
  281. package/dist/chunk-LK6UNOMX.js +0 -24
  282. package/dist/chunk-LQLPGMGP.js +0 -238
  283. package/dist/chunk-LRNZOITG.js +0 -318
  284. package/dist/chunk-LSDPH4GX.js +0 -38
  285. package/dist/chunk-LXYDGV6K.js +0 -437
  286. package/dist/chunk-MFNBBTWX.js +0 -177
  287. package/dist/chunk-MGJ3GO6Z.js +0 -284
  288. package/dist/chunk-MIMYQH75.js +0 -91
  289. package/dist/chunk-MKIVQLZW.js +0 -122
  290. package/dist/chunk-MLQQU3ZN.js +0 -31
  291. package/dist/chunk-MLTOT73W.js +0 -38
  292. package/dist/chunk-MM2YBW7A.js +0 -31
  293. package/dist/chunk-MMHTKJ7Z.js +0 -50
  294. package/dist/chunk-MNZUBPVB.js +0 -263
  295. package/dist/chunk-MRXJRTKP.js +0 -62
  296. package/dist/chunk-MSM2B2VT.js +0 -106
  297. package/dist/chunk-MTJDLHR6.js +0 -218
  298. package/dist/chunk-MU4ZBPUT.js +0 -263
  299. package/dist/chunk-MUQHKNFV.js +0 -158
  300. package/dist/chunk-N2XNU5PP.js +0 -91
  301. package/dist/chunk-N4NGR36H.js +0 -263
  302. package/dist/chunk-NA4H2JQX.js +0 -145
  303. package/dist/chunk-NBV3Y6UB.js +0 -315
  304. package/dist/chunk-NEBYCDGE.js +0 -284
  305. package/dist/chunk-NS2KPONF.js +0 -263
  306. package/dist/chunk-O2KOOPL4.js +0 -148
  307. package/dist/chunk-OEIQDS7X.js +0 -50
  308. package/dist/chunk-OJ4PX3ZG.js +0 -59
  309. package/dist/chunk-OOIM4AHV.js +0 -106
  310. package/dist/chunk-OQ2SDHRA.js +0 -267
  311. package/dist/chunk-OQAOAEH5.js +0 -114
  312. package/dist/chunk-OQWOF5CI.js +0 -322
  313. package/dist/chunk-ORW5CX24.js +0 -316
  314. package/dist/chunk-OUHI4UBN.js +0 -38
  315. package/dist/chunk-OULD24TE.js +0 -98
  316. package/dist/chunk-P66A67NV.js +0 -30
  317. package/dist/chunk-PC5JSEHD.js +0 -269
  318. package/dist/chunk-PLCJ56FF.js +0 -72
  319. package/dist/chunk-PMNRGAPH.js +0 -191
  320. package/dist/chunk-PPU6PK34.js +0 -263
  321. package/dist/chunk-PQEWSSM5.js +0 -31
  322. package/dist/chunk-PY6MF2II.js +0 -51
  323. package/dist/chunk-QBXVAKCM.js +0 -59
  324. package/dist/chunk-QDAFX66E.js +0 -55
  325. package/dist/chunk-QEXYUSGH.js +0 -201
  326. package/dist/chunk-QFEYPU44.js +0 -91
  327. package/dist/chunk-QJWVR7FR.js +0 -387
  328. package/dist/chunk-QKKRKHFR.js +0 -38
  329. package/dist/chunk-QKQ4M6UK.js +0 -263
  330. package/dist/chunk-QTKPVQAY.js +0 -66
  331. package/dist/chunk-R3IEEDQ6.js +0 -284
  332. package/dist/chunk-R4UZI5WE.js +0 -171
  333. package/dist/chunk-RBXILAST.js +0 -437
  334. package/dist/chunk-RENGWIST.js +0 -263
  335. package/dist/chunk-REZ33AJK.js +0 -172
  336. package/dist/chunk-RGI3V47F.js +0 -216
  337. package/dist/chunk-RMIQDOJV.js +0 -287
  338. package/dist/chunk-ROYYCT4A.js +0 -31
  339. package/dist/chunk-RWVJ2YAO.js +0 -131
  340. package/dist/chunk-RZLSOKZB.js +0 -123
  341. package/dist/chunk-S3POCSOH.js +0 -31
  342. package/dist/chunk-S4IHG5J6.js +0 -54
  343. package/dist/chunk-SHQVFIVR.js +0 -122
  344. package/dist/chunk-SPV52UKB.js +0 -50
  345. package/dist/chunk-SSBZHFHQ.js +0 -123
  346. package/dist/chunk-STVC6SBJ.js +0 -91
  347. package/dist/chunk-T23U4LBM.js +0 -148
  348. package/dist/chunk-TC5ACZ3X.js +0 -263
  349. package/dist/chunk-TD5JMMNX.js +0 -72
  350. package/dist/chunk-TDEEN7O7.js +0 -50
  351. package/dist/chunk-TKRAU33B.js +0 -53
  352. package/dist/chunk-TMLPJ27P.js +0 -126
  353. package/dist/chunk-TTKSTVEF.js +0 -41
  354. package/dist/chunk-TVYKK7ZX.js +0 -123
  355. package/dist/chunk-TZCA2T5D.js +0 -282
  356. package/dist/chunk-U2CMWI75.js +0 -250
  357. package/dist/chunk-UA7N4NQJ.js +0 -30
  358. package/dist/chunk-ULCNZZBV.js +0 -38
  359. package/dist/chunk-UO4T3RQ7.js +0 -62
  360. package/dist/chunk-US3SPKKB.js +0 -266
  361. package/dist/chunk-UUNHTQDU.js +0 -79
  362. package/dist/chunk-UUZXVVJY.js +0 -161
  363. package/dist/chunk-UZJMB6V7.js +0 -26
  364. package/dist/chunk-V3HXUE6V.js +0 -221
  365. package/dist/chunk-V6UMVJGA.js +0 -53
  366. package/dist/chunk-V7C6DTJ6.js +0 -72
  367. package/dist/chunk-VHWB6H64.js +0 -75
  368. package/dist/chunk-VI62SXXU.js +0 -284
  369. package/dist/chunk-VK3FB67Z.js +0 -31
  370. package/dist/chunk-VKC7QT46.js +0 -83
  371. package/dist/chunk-VVTY2NT4.js +0 -105
  372. package/dist/chunk-VWEOVI4O.js +0 -123
  373. package/dist/chunk-WOCMJF6O.js +0 -221
  374. package/dist/chunk-WPDU5H5L.js +0 -114
  375. package/dist/chunk-WQMFGEAF.js +0 -235
  376. package/dist/chunk-WTAZ6P6T.js +0 -263
  377. package/dist/chunk-WUJFEG3H.js +0 -118
  378. package/dist/chunk-WUTFZGXS.js +0 -50
  379. package/dist/chunk-X65IBJJM.js +0 -436
  380. package/dist/chunk-XATMLZOP.js +0 -263
  381. package/dist/chunk-XFCRKJRI.js +0 -261
  382. package/dist/chunk-XGKHSZ6E.js +0 -38
  383. package/dist/chunk-XJAQVF2E.js +0 -83
  384. package/dist/chunk-XQX7HSL5.js +0 -38
  385. package/dist/chunk-XTP3ODBD.js +0 -56
  386. package/dist/chunk-XWF3ZJCZ.js +0 -97
  387. package/dist/chunk-XX3GHFG5.js +0 -121
  388. package/dist/chunk-XZ6AMNDQ.js +0 -290
  389. package/dist/chunk-Y2LOHSZL.js +0 -72
  390. package/dist/chunk-Y66VCVZZ.js +0 -122
  391. package/dist/chunk-YELD6VJI.js +0 -68
  392. package/dist/chunk-YHPZ5T3W.js +0 -91
  393. package/dist/chunk-YJV7JCIC.js +0 -38
  394. package/dist/chunk-YMZUZ5HX.js +0 -263
  395. package/dist/chunk-YN7MUHAZ.js +0 -218
  396. package/dist/chunk-YOCKCBUA.js +0 -72
  397. package/dist/chunk-YPFUW2PT.js +0 -306
  398. package/dist/chunk-YRLRIQNP.js +0 -284
  399. package/dist/chunk-YRTR6KJN.js +0 -210
  400. package/dist/chunk-YSSJHCRC.js +0 -221
  401. package/dist/chunk-YWLJJNJY.js +0 -259
  402. package/dist/chunk-YYRH2SGW.js +0 -114
  403. package/dist/chunk-YZRIJ4AP.js +0 -263
  404. package/dist/chunk-Z64CLA4J.js +0 -53
  405. package/dist/chunk-ZCFOYW2U.js +0 -296
  406. package/dist/chunk-ZEYZVUG5.js +0 -53
  407. package/dist/chunk-ZHRZMJA3.js +0 -31
  408. package/dist/chunk-ZJQAMKIP.js +0 -113
  409. package/dist/chunk-ZRQZOT6X.js +0 -141
  410. package/dist/chunk-ZUTAZW53.js +0 -306
  411. package/dist/chunk-ZVJ2T3DC.js +0 -79
  412. package/dist/chunk-ZWJZHUKU.js +0 -50
  413. package/dist/chunk-ZXQKFHBO.js +0 -221
  414. package/dist/components/Calendar.cjs +0 -219
  415. package/dist/components/Calendar.js +0 -10
  416. package/dist/components/CalendarRange.stories.cjs +0 -1
  417. package/dist/components/CalendarRange.stories.js +0 -0
  418. package/dist/components/Display1.cjs +0 -223
  419. package/dist/components/Display1.js +0 -8
  420. package/dist/components/Display2.cjs +0 -220
  421. package/dist/components/Display2.js +0 -46
  422. package/dist/components/Heading1.cjs +0 -223
  423. package/dist/components/Heading1.js +0 -49
  424. package/dist/components/Heading2.cjs +0 -223
  425. package/dist/components/Heading2.js +0 -8
  426. package/dist/components/Heading3.cjs +0 -223
  427. package/dist/components/Heading3.js +0 -8
  428. package/dist/icons-light-QXLRBPC4.woff2 +0 -0
  429. package/dist/icons-normal-MJATZ73K.woff2 +0 -0
  430. package/dist/millwork.css +0 -4
@@ -1,130 +0,0 @@
1
- import {
2
- Label
3
- } from "./chunk-4C66DLIJ.js";
4
- import {
5
- Paragraph
6
- } from "./chunk-K3IKUSZW.js";
7
- import {
8
- baseTransition,
9
- componentGap,
10
- componentPadding
11
- } from "./chunk-KX3O6GJ6.js";
12
- import {
13
- __spreadProps,
14
- __spreadValues
15
- } from "./chunk-ORMEWXMH.js";
16
-
17
- // src/components/MenuOption.tsx
18
- import clsx from "clsx";
19
- import { useId, useRef } from "react";
20
- import { Fragment, jsx, jsxs } from "react/jsx-runtime";
21
- var MenuOption = ({
22
- children,
23
- disabled = false,
24
- variant = "normal",
25
- value,
26
- before,
27
- after,
28
- subMenu,
29
- onClick,
30
- selected,
31
- ref,
32
- onSubMenuHover,
33
- onSubMenuLeave,
34
- onSubMenuEnter,
35
- subMenuLevel = 1
36
- }) => {
37
- const uniqueId = useId();
38
- const internalRef = useRef(null);
39
- const actualRef = ref || internalRef;
40
- const menuId = useRef(`menu-${uniqueId}`);
41
- const handleMouseEnter = () => {
42
- if (subMenu && onSubMenuHover && !disabled) {
43
- onSubMenuHover(menuId.current, subMenuLevel);
44
- }
45
- };
46
- const handleMouseLeave = () => {
47
- if (subMenu && onSubMenuLeave && !disabled) {
48
- onSubMenuLeave(subMenuLevel);
49
- }
50
- };
51
- const handleSubMenuEnter = () => {
52
- if (onSubMenuEnter) {
53
- onSubMenuEnter();
54
- }
55
- };
56
- const additionalAttributes = {
57
- "data-selected": selected || null
58
- };
59
- const svgStyles = clsx(
60
- "[&>svg]:shrink-0 [&>svg]:fill-icon-action-primary-normal"
61
- );
62
- const textLabelStyles = clsx("w-full whitespace-nowrap !leading-6");
63
- const normalStyles = variant === "normal" && !disabled && clsx(
64
- "bg-transparent text-text-primary-normal",
65
- "hover:bg-background-action-secondary-hover",
66
- "focus:bg-background-action-secondary-hover",
67
- "data-selected:bg-background-action-secondary-hover",
68
- "active:bg-background-action-secondary-active"
69
- );
70
- const normalDisabledStyles = variant === "normal" && disabled && clsx("text-text-primary-disabled");
71
- const actionStyles = variant === "action" && !disabled && clsx(
72
- "text-action-400 bg-transparent",
73
- "hover:bg-background-action-secondary-hover hover:text-text-action-hover",
74
- "focus:bg-background-action-secondary-hover focus:text-text-action-hover",
75
- "data-selected:bg-background-action-secondary-active data-selected:text-text-action-active",
76
- "active:bg-background-action-secondary-active active:text-text-action-active"
77
- );
78
- const actionDisabledStyles = variant === "action" && disabled && clsx("text-text-action-disabled");
79
- const disabledStyles = disabled && clsx("bg-transparent cursor-default pointer-events-none");
80
- return /* @__PURE__ */ jsxs(Fragment, { children: [
81
- /* @__PURE__ */ jsxs(
82
- "div",
83
- __spreadProps(__spreadValues({
84
- ref: actualRef,
85
- className: clsx(
86
- "flex items-center cursor-pointer w-full text-left relative outline-none",
87
- svgStyles,
88
- componentGap,
89
- componentPadding,
90
- baseTransition,
91
- normalStyles,
92
- normalDisabledStyles,
93
- actionStyles,
94
- actionDisabledStyles,
95
- disabledStyles
96
- ),
97
- "data-value": value || children,
98
- onClick: () => {
99
- onClick == null ? void 0 : onClick(menuId.current, value || children);
100
- },
101
- onMouseEnter: handleMouseEnter,
102
- onMouseLeave: handleMouseLeave
103
- }, additionalAttributes), {
104
- tabIndex: -1,
105
- role: "menuitem",
106
- "aria-haspopup": subMenu ? "menu" : void 0,
107
- children: [
108
- before && /* @__PURE__ */ jsx("div", { className: "shrink-0", children: before }),
109
- variant === "action" ? /* @__PURE__ */ jsx(Label, { padded: true, className: textLabelStyles, children }) : /* @__PURE__ */ jsx(Paragraph, { padded: true, className: textLabelStyles, children }),
110
- after
111
- ]
112
- })
113
- ),
114
- subMenu && /* @__PURE__ */ jsx(
115
- "div",
116
- {
117
- onMouseEnter: handleSubMenuEnter,
118
- onMouseLeave: handleMouseLeave,
119
- "data-submenu-parent": menuId.current,
120
- "data-menu-level": subMenuLevel + 1,
121
- children: subMenu(menuId.current, actualRef)
122
- }
123
- )
124
- ] });
125
- };
126
- MenuOption.displayName = "MenuOption";
127
-
128
- export {
129
- MenuOption
130
- };
@@ -1,437 +0,0 @@
1
- import {
2
- Label
3
- } from "./chunk-BENTHNAQ.js";
4
- import {
5
- Icon
6
- } from "./chunk-IGQVA7SC.js";
7
- import {
8
- baseTransition,
9
- componentGap,
10
- componentPaddingMinusBorder,
11
- componentPaddingXUsingComponentGap,
12
- typography
13
- } from "./chunk-6XDXJ3Z3.js";
14
- import {
15
- __objRest,
16
- __spreadProps,
17
- __spreadValues
18
- } from "./chunk-ORMEWXMH.js";
19
-
20
- // src/components/Input.tsx
21
- import {
22
- useEffect,
23
- useRef,
24
- useState
25
- } from "react";
26
- import clsx from "clsx";
27
-
28
- // src/utils/formatting.tsx
29
- function getDecimalPlaceholder(decimals) {
30
- if (!decimals || decimals <= 0) {
31
- return {};
32
- }
33
- return {
34
- placeholder: `0.${"0".repeat(decimals)}`
35
- };
36
- }
37
- function formatDecimalValue(value, decimals) {
38
- if (!value || value === "") {
39
- return "";
40
- }
41
- const numValue = typeof value === "string" ? parseFloat(value) : value;
42
- if (isNaN(numValue)) {
43
- return "";
44
- }
45
- if (!decimals || decimals <= 0) {
46
- return String(Math.round(numValue));
47
- }
48
- return numValue.toFixed(decimals);
49
- }
50
- function formatCurrencyDisplay(value) {
51
- if (!value || value === "") {
52
- return "";
53
- }
54
- const parts = value.split(".");
55
- const integerPart = parts[0];
56
- const decimalPart = parts[1];
57
- const formattedInteger = integerPart.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
58
- return decimalPart !== void 0 ? `${formattedInteger}.${decimalPart}` : formattedInteger;
59
- }
60
-
61
- // src/components/Input.tsx
62
- import { jsx, jsxs } from "react/jsx-runtime";
63
- var InputBase = (_a) => {
64
- var _b = _a, {
65
- before,
66
- after,
67
- type,
68
- label,
69
- error,
70
- className,
71
- align = "left",
72
- caption,
73
- required,
74
- selectOnFocus,
75
- removeRoundness,
76
- inputContainerRef,
77
- removeBorder,
78
- wrapperClassName,
79
- focus
80
- } = _b, props = __objRest(_b, [
81
- "before",
82
- "after",
83
- "type",
84
- "label",
85
- "error",
86
- "className",
87
- "align",
88
- "caption",
89
- "required",
90
- "selectOnFocus",
91
- "removeRoundness",
92
- "inputContainerRef",
93
- "removeBorder",
94
- "wrapperClassName",
95
- "focus"
96
- ]);
97
- const attributes = {
98
- "data-error": error && !focus || null,
99
- "data-focus": focus || null
100
- };
101
- const inputRef = useRef(null);
102
- useEffect(() => {
103
- var _a2;
104
- const input = inputRef.current;
105
- const focusHandler = () => {
106
- input == null ? void 0 : input.select();
107
- };
108
- if (selectOnFocus) {
109
- (_a2 = inputRef.current) == null ? void 0 : _a2.addEventListener("focus", focusHandler);
110
- return () => {
111
- input == null ? void 0 : input.removeEventListener("focus", focusHandler);
112
- };
113
- }
114
- }, [selectOnFocus]);
115
- const inputBaseClass = clsx(
116
- "w-full",
117
- "flex flex-row items-center",
118
- "bg-background-action-secondary-normal caret-icon-on-action-secondary-normal",
119
- componentGap,
120
- baseTransition,
121
- "outline-transparent outline-2 -outline-offset-2",
122
- componentPaddingMinusBorder,
123
- !removeRoundness && "rounded-base",
124
- !removeBorder && "border border-border-primary-normal",
125
- "relative"
126
- );
127
- const inputFocusClass = clsx(
128
- "has-[[data-focus]]:border-transparent has-[[data-focus]]:outline-border-primary-focus focus-within:border-transparent focus-within:outline-border-primary-focus"
129
- );
130
- const inputDisabledClass = clsx(
131
- "has-disabled:bg-background-action-secondary-disabled"
132
- );
133
- const inputReadOnlyClass = clsx(
134
- "has-[input:not(:disabled):read-only]:outline-none has-[input:not(:disabled):read-only]:bg-transparent has-[input:not(:disabled):read-only]:border-transparent has-[input:not(:disabled):read-only]:pl-0"
135
- );
136
- const inputInvalidClass = clsx(
137
- "has-[[data-error]]:border-transparent has-[[data-error]]:not-focus-within:outline-border-primary-error has-[[data-error]]:not-focus-within:outline-1"
138
- );
139
- return /* @__PURE__ */ jsxs(
140
- "label",
141
- {
142
- ref: inputContainerRef,
143
- className: clsx(
144
- "w-full flex flex-col",
145
- "block",
146
- "text-text-primary-normal has-disabled:text-text-primary-disabled",
147
- componentGap
148
- ),
149
- style: __spreadValues({}, props.style),
150
- children: [
151
- label && /* @__PURE__ */ jsxs("div", { className: clsx("flex items-center", componentGap), children: [
152
- /* @__PURE__ */ jsx(
153
- Label,
154
- {
155
- className: clsx(
156
- props.disabled || props.readOnly ? "cursor-default" : "cursor-pointer"
157
- ),
158
- children: label
159
- }
160
- ),
161
- required && /* @__PURE__ */ jsx(
162
- "span",
163
- {
164
- className: clsx(typography.label, "text-text-critical-normal"),
165
- children: "*"
166
- }
167
- )
168
- ] }),
169
- /* @__PURE__ */ jsxs(
170
- "div",
171
- {
172
- className: clsx(
173
- inputBaseClass,
174
- !props.disabled && inputInvalidClass,
175
- inputFocusClass,
176
- inputDisabledClass,
177
- inputReadOnlyClass,
178
- wrapperClassName
179
- ),
180
- children: [
181
- before,
182
- /* @__PURE__ */ jsx(
183
- "input",
184
- __spreadProps(__spreadValues(__spreadValues({
185
- ref: (el) => {
186
- inputRef.current = el;
187
- },
188
- type,
189
- required
190
- }, props), attributes), {
191
- id: props.id,
192
- className: clsx(
193
- "flex-1 outline-none w-full max-w-full min-h-6 min-w-0",
194
- "[appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",
195
- "placeholder:text-text-secondary-normal disabled:text-text-secondary-disabled",
196
- align === "right" && "text-right",
197
- align === "center" && "text-center",
198
- componentPaddingXUsingComponentGap,
199
- typography.paragraph,
200
- className,
201
- props.readOnly && !props.disabled && "!px-0"
202
- )
203
- })
204
- ),
205
- after
206
- ]
207
- }
208
- ),
209
- caption
210
- ]
211
- }
212
- );
213
- };
214
- var Input = (_a) => {
215
- var _b = _a, {
216
- variant = "default",
217
- decimals,
218
- uom,
219
- removeSearchIcon,
220
- value: propValue,
221
- onChange,
222
- onBlur
223
- } = _b, props = __objRest(_b, [
224
- "variant",
225
- "decimals",
226
- "uom",
227
- "removeSearchIcon",
228
- "value",
229
- "onChange",
230
- "onBlur"
231
- ]);
232
- const [internalValue, setInternalValue] = useState("");
233
- const [displayValue, setDisplayValue] = useState("");
234
- useEffect(() => {
235
- var _a2;
236
- const stringValue = (_a2 = propValue == null ? void 0 : propValue.toString()) != null ? _a2 : "";
237
- if (variant === "currency") {
238
- if (propValue === void 0 || propValue === "" || typeof propValue === "number" && isNaN(propValue)) {
239
- setInternalValue("");
240
- setDisplayValue("");
241
- } else {
242
- const numValue = typeof propValue === "string" ? parseFloat(propValue) : propValue;
243
- if (!isNaN(numValue)) {
244
- const formatted = numValue.toFixed(decimals != null ? decimals : 2);
245
- setInternalValue(formatted);
246
- setDisplayValue(formatCurrencyDisplay(formatted));
247
- }
248
- }
249
- } else {
250
- setInternalValue(stringValue);
251
- setDisplayValue(stringValue);
252
- }
253
- }, [propValue, decimals, variant]);
254
- const getInputProps = () => {
255
- var _a2;
256
- const baseProps = __spreadValues(__spreadValues({}, props), getDecimalPlaceholder(decimals));
257
- switch (variant) {
258
- case "search":
259
- return __spreadProps(__spreadValues({}, baseProps), {
260
- placeholder: (_a2 = props.placeholder) != null ? _a2 : "Search",
261
- className: "!pr-6",
262
- value: displayValue
263
- });
264
- case "finder":
265
- return baseProps;
266
- case "currency":
267
- return __spreadProps(__spreadValues({}, baseProps), {
268
- align: "right",
269
- type: "text",
270
- value: displayValue
271
- });
272
- case "percentage":
273
- case "uom":
274
- return __spreadProps(__spreadValues({}, baseProps), {
275
- type: "number",
276
- align: "right"
277
- });
278
- default:
279
- return baseProps;
280
- }
281
- };
282
- const getBeforeElement = () => {
283
- if (props.before) return props.before;
284
- switch (variant) {
285
- case "search":
286
- return !removeSearchIcon ? /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "search" }) }) : null;
287
- case "currency":
288
- return /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "attach_money" }) });
289
- default:
290
- return null;
291
- }
292
- };
293
- const getAfterElement = () => {
294
- if (props.after) return props.after;
295
- switch (variant) {
296
- case "search": {
297
- const hasValue = displayValue.length > 0;
298
- return hasValue && !props.readOnly ? /* @__PURE__ */ jsx(
299
- Icon,
300
- {
301
- name: "close",
302
- onClick: handleSearchReset,
303
- className: "cursor-pointer absolute right-2 bottom-2/4 translate-y-2/4"
304
- }
305
- ) : null;
306
- }
307
- case "finder":
308
- return /* @__PURE__ */ jsx(Icon, { name: "search" });
309
- case "uom":
310
- return uom ? /* @__PURE__ */ jsx("span", { className: "text-text-secondary-normal uppercase", children: uom }) : null;
311
- case "percentage":
312
- return /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "percent" }) });
313
- default:
314
- return null;
315
- }
316
- };
317
- const handleSearchReset = () => {
318
- setInternalValue("");
319
- setDisplayValue("");
320
- if (onChange) {
321
- const syntheticEvent = {
322
- target: { value: "" }
323
- };
324
- if (typeof onChange === "function") {
325
- onChange(syntheticEvent);
326
- }
327
- }
328
- };
329
- const handleChange = (e) => {
330
- const rawValue = e.target.value;
331
- if (variant === "search") {
332
- setInternalValue(rawValue);
333
- setDisplayValue(rawValue);
334
- if (typeof onChange === "function") {
335
- onChange(e);
336
- }
337
- return;
338
- }
339
- if (variant === "currency") {
340
- const raw = rawValue.replace(/,/g, "");
341
- if (raw === "") {
342
- setInternalValue("");
343
- setDisplayValue("");
344
- if (onChange) {
345
- const syntheticEvent = __spreadProps(__spreadValues({}, e), {
346
- target: __spreadProps(__spreadValues({}, e.target), { value: "" })
347
- });
348
- onChange(syntheticEvent);
349
- }
350
- return;
351
- }
352
- const regex = /^\d*\.?\d*$/;
353
- if (!regex.test(raw)) return;
354
- const parts = raw.split(".");
355
- const currentDecimals = decimals != null ? decimals : 2;
356
- if (parts.length === 2 && parts[1].length > currentDecimals) return;
357
- setInternalValue(raw);
358
- setDisplayValue(formatCurrencyDisplay(raw));
359
- const asNumber = Number(raw);
360
- if (!isNaN(asNumber) && onChange) {
361
- const syntheticEvent = __spreadProps(__spreadValues({}, e), {
362
- target: __spreadProps(__spreadValues({}, e.target), { value: asNumber.toString() })
363
- });
364
- onChange(syntheticEvent);
365
- }
366
- return;
367
- }
368
- setInternalValue(rawValue);
369
- setDisplayValue(rawValue);
370
- if (typeof onChange === "function") {
371
- onChange(e);
372
- }
373
- };
374
- const handleBlur = (e) => {
375
- if (variant === "currency") {
376
- const formatted = formatDecimalValue(internalValue, decimals != null ? decimals : 2);
377
- setInternalValue(formatted);
378
- setDisplayValue(formatCurrencyDisplay(formatted));
379
- const asNumber = Number(formatted);
380
- if (!isNaN(asNumber) && onChange) {
381
- const syntheticEvent = __spreadProps(__spreadValues({}, e), {
382
- target: __spreadProps(__spreadValues({}, e.target), { value: asNumber.toString() })
383
- });
384
- onChange(syntheticEvent);
385
- }
386
- } else if (variant === "uom" || variant === "percentage") {
387
- const formattedValue = formatDecimalValue(e.target.value, decimals);
388
- e.target.value = formattedValue;
389
- }
390
- onBlur == null ? void 0 : onBlur(e);
391
- };
392
- const inputProps = getInputProps();
393
- return /* @__PURE__ */ jsx(
394
- InputBase,
395
- __spreadProps(__spreadValues({}, inputProps), {
396
- before: getBeforeElement(),
397
- after: getAfterElement(),
398
- onChange: handleChange,
399
- onBlur: handleBlur
400
- })
401
- );
402
- };
403
- Input.displayName = "Input";
404
- var Finder = (props) => /* @__PURE__ */ jsx(Input, __spreadProps(__spreadValues({}, props), { variant: "finder" }));
405
- var Search = (props) => /* @__PURE__ */ jsx(Input, __spreadProps(__spreadValues({}, props), { variant: "search" }));
406
- var UOM = (props) => /* @__PURE__ */ jsx(Input, __spreadProps(__spreadValues({}, props), { variant: "uom" }));
407
- var Currency = (props) => {
408
- var _a;
409
- const handleCurrencyChange = (e) => {
410
- var _a2;
411
- (_a2 = props.onChange) == null ? void 0 : _a2.call(props, e);
412
- };
413
- return /* @__PURE__ */ jsx(
414
- Input,
415
- __spreadProps(__spreadValues({}, props), {
416
- variant: "currency",
417
- decimals: (_a = props.decimals) != null ? _a : 2,
418
- onChange: handleCurrencyChange
419
- })
420
- );
421
- };
422
- var Percentage = (props) => /* @__PURE__ */ jsx(Input, __spreadProps(__spreadValues({}, props), { variant: "percentage" }));
423
- Finder.displayName = "Finder";
424
- Search.displayName = "Search";
425
- UOM.displayName = "UOM";
426
- Currency.displayName = "Currency";
427
- Percentage.displayName = "Percentage";
428
-
429
- export {
430
- InputBase,
431
- Input,
432
- Finder,
433
- Search,
434
- UOM,
435
- Currency,
436
- Percentage
437
- };
@@ -1,130 +0,0 @@
1
- import {
2
- Paragraph
3
- } from "./chunk-IJ6AAL4W.js";
4
- import {
5
- Icon
6
- } from "./chunk-IGQVA7SC.js";
7
- import {
8
- baseTransition,
9
- componentGap
10
- } from "./chunk-6XDXJ3Z3.js";
11
- import {
12
- __objRest,
13
- __spreadValues
14
- } from "./chunk-ORMEWXMH.js";
15
-
16
- // src/components/Checkbox.tsx
17
- import clsx from "clsx";
18
- import { jsx, jsxs } from "react/jsx-runtime";
19
- var Checkbox = (_a) => {
20
- var _b = _a, {
21
- label,
22
- error,
23
- disabled,
24
- readOnly,
25
- checked,
26
- onChange,
27
- indeterminate,
28
- paragraphClassName
29
- } = _b, props = __objRest(_b, [
30
- "label",
31
- "error",
32
- "disabled",
33
- "readOnly",
34
- "checked",
35
- "onChange",
36
- "indeterminate",
37
- "paragraphClassName"
38
- ]);
39
- const selected = indeterminate || checked;
40
- const normalClassName = clsx(
41
- !selected && !error && !disabled && !readOnly && "border-border-primary-normal bg-background-action-secondary-normal peer-hover:border-border-action-hover peer-hover:bg-background-action-secondary-hover peer-active:border-border-action-active peer-active:bg-background-action-secondary-active"
42
- );
43
- const normalSelectedClassName = clsx(
44
- selected && !error && !disabled && !readOnly && "bg-background-action-primary-normal border-background-action-primary-normal peer-hover:bg-background-action-primary-hover peer-hover:border-background-action-primary-hover peer-active:bg-background-action-primary-active peer-active:border-background-action-primary-active"
45
- );
46
- const errorClassName = clsx(
47
- error && !selected && "bg-background-action-critical-secondary-normal border-border-action-critical-normal peer-hover:border-border-action-critical-hover peer-hover:bg-background-action-critical-secondary-hover peer-active:border-border-action-critical-active peer-active:bg-background-action-secondary-active"
48
- );
49
- const errorSelectedClassName = clsx(
50
- error && selected && "bg-background-action-critical-primary-normal border-background-action-critical-primary-normal peer-hover:bg-background-action-critical-primary-hover peer-hover:border-background-action-critical-primary-hover peer-active:bg-background-action-critical-primary-active peer-active:border-background-action-critical-primary-active"
51
- );
52
- const disabledClassName = clsx(
53
- disabled && !readOnly && "border-border-primary-normal bg-background-action-secondary-disabled peer-checked:bg-icon-on-action-primary-disabled peer-checked:border-icon-on-action-primary-disabled"
54
- );
55
- const readOnlyClassName = clsx(
56
- readOnly && "border-transparent bg-transparent peer-checked:bg-transparent peer-checked:border-transparent"
57
- );
58
- const checkColor = clsx(
59
- selected && !disabled && !readOnly && "color-icon-on-action-primary-normal peer-hover:color-icon-on-action-primary-hover peer-active:color-icon-on-action-primary-active",
60
- selected && disabled && "color-background-action-primary-disabled"
61
- );
62
- return /* @__PURE__ */ jsxs(
63
- "label",
64
- {
65
- className: clsx(
66
- "flex items-center",
67
- componentGap,
68
- (disabled || readOnly && error || readOnly) && "cursor-default",
69
- !(readOnly && error) && !disabled && !readOnly && "cursor-pointer"
70
- ),
71
- children: [
72
- /* @__PURE__ */ jsxs("div", { className: "relative", children: [
73
- /* @__PURE__ */ jsx(
74
- "input",
75
- __spreadValues({
76
- type: "checkbox",
77
- className: "sr-only peer",
78
- disabled,
79
- checked: selected,
80
- onChange: handleOnChange,
81
- id: props.id,
82
- "data-indeterminate": indeterminate
83
- }, props)
84
- ),
85
- error && (readOnly || disabled) ? /* @__PURE__ */ jsx("div", { className: clsx("size-6", "flex items-center justify-center"), children: selected ? indeterminate ? /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "question_mark" }) }) : readOnly ? /* @__PURE__ */ jsx("span", { className: "text-success-400 contents", children: /* @__PURE__ */ jsx(Icon, { name: "check" }) }) : /* @__PURE__ */ jsx("span", { className: "text-icon-on-action-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "check", className: "pointer-events-none" }) }) : readOnly && /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "close" }) }) }) : /* @__PURE__ */ jsx(
86
- "div",
87
- {
88
- className: clsx(
89
- "size-6 border rounded-base",
90
- "flex items-center justify-center",
91
- baseTransition,
92
- normalClassName,
93
- normalSelectedClassName,
94
- errorClassName,
95
- errorSelectedClassName,
96
- disabledClassName,
97
- readOnlyClassName,
98
- checkColor
99
- ),
100
- children: selected ? indeterminate ? readOnly ? /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "question_mark" }) }) : /* @__PURE__ */ jsx("span", { className: "text-icon-on-action-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "remove", className: "pointer-events-none" }) }) : readOnly ? /* @__PURE__ */ jsx("span", { className: "text-success-400 contents", children: /* @__PURE__ */ jsx(Icon, { name: "check" }) }) : /* @__PURE__ */ jsx("span", { className: "text-icon-on-action-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "check", className: "pointer-events-none" }) }) : readOnly && /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(Icon, { name: "close" }) })
101
- }
102
- )
103
- ] }),
104
- label && /* @__PURE__ */ jsx(
105
- Paragraph,
106
- {
107
- padded: true,
108
- className: clsx(
109
- disabled && !error && "!text-text-primary-disabled",
110
- error && !disabled && !readOnly && "!text-text-primary-error",
111
- paragraphClassName
112
- ),
113
- children: label
114
- }
115
- )
116
- ]
117
- }
118
- );
119
- function handleOnChange(e) {
120
- if (disabled || readOnly || readOnly && error || !onChange) {
121
- return;
122
- }
123
- onChange(e);
124
- }
125
- };
126
- Checkbox.displayName = "Checkbox";
127
-
128
- export {
129
- Checkbox
130
- };