@innovaccer/design-system 2.28.3 → 2.30.0

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 (84) hide show
  1. package/CHANGELOG.md +87 -0
  2. package/css/dist/index.css +287 -0
  3. package/css/dist/index.css.map +1 -1
  4. package/css/src/components/avatarSelection.css +111 -0
  5. package/css/src/components/calendar.css +4 -0
  6. package/css/src/components/grid.css +6 -0
  7. package/css/src/components/listbox.css +4 -0
  8. package/css/src/components/menu.css +27 -0
  9. package/css/src/components/select.css +127 -0
  10. package/dist/.lib/tsconfig.type.tsbuildinfo +858 -34
  11. package/dist/core/common.type.d.ts +7 -0
  12. package/dist/core/components/atoms/_text/index.d.ts +2 -4
  13. package/dist/core/components/atoms/avatar/Avatar.d.ts +1 -0
  14. package/dist/core/components/atoms/avatar/avatarIcon/AvatarIcon.d.ts +0 -4
  15. package/dist/core/components/atoms/avatarSelection/AvatarSelection.d.ts +59 -0
  16. package/dist/core/components/atoms/avatarSelection/AvatarSelectionContext.d.ts +19 -0
  17. package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.d.ts +8 -0
  18. package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.d.ts +3 -0
  19. package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.d.ts +20 -0
  20. package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.d.ts +15 -0
  21. package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.d.ts +15 -0
  22. package/dist/core/components/atoms/avatarSelection/avatarPopover/index.d.ts +5 -0
  23. package/dist/core/components/atoms/avatarSelection/avatarPopover/utils.d.ts +3 -0
  24. package/dist/core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.d.ts +13 -0
  25. package/dist/core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.d.ts +15 -0
  26. package/dist/core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.d.ts +15 -0
  27. package/dist/core/components/atoms/avatarSelection/avatarsSelection/index.d.ts +2 -0
  28. package/dist/core/components/atoms/avatarSelection/avatarsSelection/utils.d.ts +3 -0
  29. package/dist/core/components/atoms/avatarSelection/index.d.ts +2 -0
  30. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +23 -19
  31. package/dist/core/components/atoms/text/Text.d.ts +3 -10
  32. package/dist/core/components/molecules/popover/Popover.d.ts +6 -1
  33. package/dist/core/components/molecules/tooltip/Tooltip.d.ts +10 -0
  34. package/dist/core/components/organisms/calendar/Calendar.d.ts +1 -0
  35. package/dist/core/components/organisms/combobox/Combobox.d.ts +45 -0
  36. package/dist/core/components/organisms/combobox/ComboboxContext.d.ts +23 -0
  37. package/dist/core/components/organisms/combobox/ComboboxList.d.ts +20 -0
  38. package/dist/core/components/organisms/combobox/ComboboxOption.d.ts +18 -0
  39. package/dist/core/components/organisms/combobox/index.d.ts +2 -0
  40. package/dist/core/components/organisms/combobox/trigger/ChipInputBox.d.ts +3 -0
  41. package/dist/core/components/organisms/combobox/trigger/ComboboxTrigger.d.ts +20 -0
  42. package/dist/core/components/organisms/combobox/trigger/InputBox.d.ts +3 -0
  43. package/dist/core/components/organisms/combobox/trigger/MultiselectTrigger.d.ts +40 -0
  44. package/dist/core/components/organisms/combobox/trigger/index.d.ts +1 -0
  45. package/dist/core/components/organisms/combobox/trigger/utils.d.ts +3 -0
  46. package/dist/core/components/organisms/combobox/utils.d.ts +2 -0
  47. package/dist/core/components/organisms/list/List.d.ts +1 -0
  48. package/dist/core/components/organisms/listbox/Listbox.d.ts +2 -2
  49. package/dist/core/components/organisms/listbox/listboxItem/ListBody.d.ts +4 -1
  50. package/dist/core/components/organisms/listbox/listboxItem/ListboxItem.d.ts +5 -4
  51. package/dist/core/components/organisms/menu/Menu.d.ts +49 -0
  52. package/dist/core/components/organisms/menu/MenuContext.d.ts +13 -0
  53. package/dist/core/components/organisms/menu/MenuGroup.d.ts +14 -0
  54. package/dist/core/components/organisms/menu/MenuItem.d.ts +17 -0
  55. package/dist/core/components/organisms/menu/MenuList.d.ts +19 -0
  56. package/dist/core/components/organisms/menu/SubMenu.d.ts +6 -0
  57. package/dist/core/components/organisms/menu/SubMenuContext.d.ts +10 -0
  58. package/dist/core/components/organisms/menu/index.d.ts +2 -0
  59. package/dist/core/components/organisms/menu/trigger/MenuTrigger.d.ts +6 -0
  60. package/dist/core/components/organisms/menu/trigger/utils.d.ts +3 -0
  61. package/dist/core/components/organisms/menu/utils.d.ts +2 -0
  62. package/dist/core/components/organisms/select/SearchInput.d.ts +8 -0
  63. package/dist/core/components/organisms/select/Select.d.ts +35 -0
  64. package/dist/core/components/organisms/select/SelectContext.d.ts +24 -0
  65. package/dist/core/components/organisms/select/SelectEmptyTemplate.d.ts +9 -0
  66. package/dist/core/components/organisms/select/SelectFooter.d.ts +7 -0
  67. package/dist/core/components/organisms/select/SelectList.d.ts +20 -0
  68. package/dist/core/components/organisms/select/SelectOption.d.ts +19 -0
  69. package/dist/core/components/organisms/select/SelectTrigger.d.ts +24 -0
  70. package/dist/core/components/organisms/select/__test__/Select.test.d.ts +1 -0
  71. package/dist/core/components/organisms/select/__test__/utils.test.d.ts +1 -0
  72. package/dist/core/components/organisms/select/index.d.ts +2 -0
  73. package/dist/core/components/organisms/select/utils.d.ts +12 -0
  74. package/dist/core/components/organisms/table/Header.d.ts +2 -0
  75. package/dist/core/components/organisms/table/Table.d.ts +3 -0
  76. package/dist/core/index.d.ts +4 -0
  77. package/dist/core/index.type.d.ts +6 -0
  78. package/dist/index.esm.js +2779 -152
  79. package/dist/index.js +2627 -52
  80. package/dist/index.js.map +1 -1
  81. package/dist/index.umd.js +1 -1
  82. package/dist/index.umd.js.br +0 -0
  83. package/dist/index.umd.js.gz +0 -0
  84. package/package.json +1 -1
@@ -267,8 +267,8 @@
267
267
  "affectsGlobalScope": false
268
268
  },
269
269
  "../../core/components/atoms/avatar/avatarIcon/AvatarIcon.tsx": {
270
- "version": "835bcbb0c47958bf04ae4c9aeb53f82f9ffcc998e5e9427ecad32440106b24ff",
271
- "signature": "5c960e254cc94b625b434e3857c551eec43290de2829070450f3653673a7a6e2",
270
+ "version": "d6ebd7e73eb758cfbcc47900c516edaaa0c54a00d12a9bea3821aa0428d446d5",
271
+ "signature": "c4486b618ba49d17683c2dceb2ef3fd7305379cbd1b3b8d97d7355eb056f0608",
272
272
  "affectsGlobalScope": false
273
273
  },
274
274
  "../../core/components/atoms/avatar/avatarIcon/index.tsx": {
@@ -287,8 +287,8 @@
287
287
  "affectsGlobalScope": false
288
288
  },
289
289
  "../../core/components/atoms/avatar/Avatar.tsx": {
290
- "version": "66b10fc5028726ceb2a8e5a48b50a7fa8082336901dfb6210973000ef22d64af",
291
- "signature": "c057a5e30a8496a407cd5b866594866f473ac335a314bc9d189c1ecb002f9564",
290
+ "version": "0a3fbf41f7832698e541364eb36e6deb5c7520b70b414a345043fc1d10013d0d",
291
+ "signature": "72d77c2f585068d5789e58184d196850ffcc447c738c3fb701beb9a117595a04",
292
292
  "affectsGlobalScope": false
293
293
  },
294
294
  "../../core/components/atoms/avatar/index.tsx": {
@@ -397,8 +397,8 @@
397
397
  "affectsGlobalScope": false
398
398
  },
399
399
  "../../core/components/organisms/calendar/Calendar.tsx": {
400
- "version": "c8d32fe11e264047b15f879838072bbfca4ce87760c9dfa61ac8ca05a39f3821",
401
- "signature": "bd837ccd1ca55becef710a181dd2030665fc6a9d889f420e743d9bca9358e48e",
400
+ "version": "eeada31776853060ec69ff96408fef4e044f7a8c1a4d1009575ced26e2e4345e",
401
+ "signature": "42e29631094e5b2585592839b195f516ed4f292451cce8e13d59d616021df2f9",
402
402
  "affectsGlobalScope": false
403
403
  },
404
404
  "../../core/components/organisms/calendar/index.tsx": {
@@ -457,13 +457,13 @@
457
457
  "affectsGlobalScope": false
458
458
  },
459
459
  "../../core/components/atoms/_text/index.tsx": {
460
- "version": "7179b6d4be30b5e85c9a19df92cec84205399c9aade0db6d307aeecd37f09da2",
461
- "signature": "4495e76d274921d4b59766b405656acdd13655150397c91fa331a2a724d3d837",
460
+ "version": "17ab8f54bf4d29c2f534143564c78ad54ce443eb91b8581e208689f1e86fef27",
461
+ "signature": "067bea0b287c6807ef8ae7e38111212df322437bb17fd65086bb191e786a9a27",
462
462
  "affectsGlobalScope": false
463
463
  },
464
464
  "../../core/components/atoms/text/Text.tsx": {
465
- "version": "860b8fa09c7965a8a619ccb74aeb9f87b8504f9e49ecca2a816a50316d54a915",
466
- "signature": "bee3b29528852ef0c1fcf2e2470da2e43488664145cb66f773d32920c967ba84",
465
+ "version": "40eac51883a75acee87555974503516140495515db17ab46aa72e206f802ffde",
466
+ "signature": "888d4347007d0671484d508734bf2db92cc3efb1daf778b899656acc3a61fc49",
467
467
  "affectsGlobalScope": false
468
468
  },
469
469
  "../../core/components/atoms/text/index.tsx": {
@@ -1002,8 +1002,8 @@
1002
1002
  "affectsGlobalScope": false
1003
1003
  },
1004
1004
  "../../core/components/molecules/tooltip/Tooltip.tsx": {
1005
- "version": "082cb28ff3f392accbfffe28db1cb144d4067fee3810360c5910e807e3c32313",
1006
- "signature": "d2bee07437956ae5217d3c601e80ff8d61935c71f0a5a88fe993d3df5dab7915",
1005
+ "version": "74cb70b549c4db23e2cb566a8b8878828f75a260d698577b58bd9d8ce94f0e6c",
1006
+ "signature": "18a703cc805327b35dedf03be1340d605b0e5cf382298e25d31b6de5a89e0216",
1007
1007
  "affectsGlobalScope": false
1008
1008
  },
1009
1009
  "../../core/components/molecules/tooltip/index.tsx": {
@@ -1202,8 +1202,8 @@
1202
1202
  "affectsGlobalScope": false
1203
1203
  },
1204
1204
  "../../core/components/atoms/popperWrapper/PopperWrapper.tsx": {
1205
- "version": "e3c046534f85b470978f22f70ddfa4e33b7f0050ca153938cc5b166591f086c7",
1206
- "signature": "d3a1dcb83226bbb67f2a55e75d8024e63960ec04dbff72fef6e01a684ef16b0b",
1205
+ "version": "c70b75757beb9e6f1efaae8d5b19fdbb3bbd60afa0a5c078434429270255ea85",
1206
+ "signature": "b1bb25f70becbb32d1ae7744c81ce02bb296971b6a4058dd814b578a756a0d0b",
1207
1207
  "affectsGlobalScope": false
1208
1208
  },
1209
1209
  "../../core/components/atoms/popperWrapper/index.tsx": {
@@ -1212,8 +1212,8 @@
1212
1212
  "affectsGlobalScope": false
1213
1213
  },
1214
1214
  "../../core/components/molecules/popover/Popover.tsx": {
1215
- "version": "72747826a0633fc69fe82b76db839f3aace4b43511fd3d12407a0c01be4ae18f",
1216
- "signature": "f2623c1eac3216921aa350bd5a73bbcd88892e394c6c229c47f55a785db0e336",
1215
+ "version": "e96b9a9b31621ea75d8599f955db2345cb0a54a3d535a2dad488244ad38256e8",
1216
+ "signature": "e04a21f672c57406bc22c6e8ecd371ffb50c8dc53aff443fb456394b7c015921",
1217
1217
  "affectsGlobalScope": false
1218
1218
  },
1219
1219
  "../../core/components/molecules/popover/index.tsx": {
@@ -1262,7 +1262,7 @@
1262
1262
  "affectsGlobalScope": false
1263
1263
  },
1264
1264
  "../../core/components/organisms/dateRangePicker/DateRangePicker.tsx": {
1265
- "version": "3a4f78c1ac8d6df9af2e07a98f5e0885771dc7c3629b1a248a730dc9e08d39d4",
1265
+ "version": "ca076c00ba52e2c290fbf28a8c6e5c2342dd872536624168d7dda48e4c5c26df",
1266
1266
  "signature": "051ddfe71109196a0b344f0010dc22e485bc318528f2f24329d5f62740f58eef",
1267
1267
  "affectsGlobalScope": false
1268
1268
  },
@@ -1442,13 +1442,13 @@
1442
1442
  "affectsGlobalScope": false
1443
1443
  },
1444
1444
  "../../core/components/organisms/table/Header.tsx": {
1445
- "version": "155ab486d3fd0454dabf488e0490295052ba2bf7d6d04275a9467852721a0551",
1446
- "signature": "a06c0e95559ca2c338477f2047f4d88168f3821e1ada9accc69da4a2f33af522",
1445
+ "version": "4ca3627953a3b609d3e9acce56b528452a3ecd73caa3996e2013c62a7c4575ff",
1446
+ "signature": "313fe10290a0d84dbd5b25edb1829b22c68a7c14f036a1540f94a826ece62688",
1447
1447
  "affectsGlobalScope": false
1448
1448
  },
1449
1449
  "../../core/components/organisms/table/Table.tsx": {
1450
- "version": "1ff019274d2e6008aa65272bdb08fff888d1b50f1675cd6aff1ff02e884e46cc",
1451
- "signature": "4b3dd8a0a3daee2fc4a0ec207dcd33ff8a559d7394730b36e2119d1a76a5a7fd",
1450
+ "version": "ddc606030d484f09735dc44a215d34d71ee861df12277a13c5fd8bf81f41ff81",
1451
+ "signature": "30f7e42f75e052c2854cc6c8e4316b8aabea6fc8960f4051a3171d4dfd467296",
1452
1452
  "affectsGlobalScope": false
1453
1453
  },
1454
1454
  "../../core/components/organisms/table/index.tsx": {
@@ -1458,7 +1458,7 @@
1458
1458
  },
1459
1459
  "../../core/components/organisms/list/List.tsx": {
1460
1460
  "version": "80b3521aaf5f9cab2366e56e6accf19db1fd12e302c95455d19f48f0cac5d16c",
1461
- "signature": "bd2c70711be8127d84658b2107e9d2167f084e278d5e2847a6e6221f6617398d",
1461
+ "signature": "38f25a1d0f8b4730a94a8f62ed7b105fcd9cd13498733b94cdfe2299f3f48c62",
1462
1462
  "affectsGlobalScope": false
1463
1463
  },
1464
1464
  "../../core/components/organisms/list/index.tsx": {
@@ -1642,8 +1642,8 @@
1642
1642
  "affectsGlobalScope": false
1643
1643
  },
1644
1644
  "../../core/components/organisms/listbox/listboxItem/ListBody.tsx": {
1645
- "version": "2fa5b28691cd663e9985ad75418b8fdab2c4ad5512b2f29c9b376bb61ffeb871",
1646
- "signature": "afb9c434bfe68c0d0f31cece64f801009c305e6c5176d6b4caf14c82801484a4",
1645
+ "version": "4b757022d6508310bacdc5adb7df8f68b81fe9d7c0eecaba71736ba78e890b38",
1646
+ "signature": "149ff5177462d0787fd5c18871e2cb7909ba94c10aa1455fb706fa548849b53a",
1647
1647
  "affectsGlobalScope": false
1648
1648
  },
1649
1649
  "../../core/components/organisms/listbox/nestedList/Animation.tsx": {
@@ -1662,8 +1662,8 @@
1662
1662
  "affectsGlobalScope": false
1663
1663
  },
1664
1664
  "../../core/components/organisms/listbox/listboxItem/ListboxItem.tsx": {
1665
- "version": "3bc342c637a7ab189c0ff3de00fe697a5c8d2f3a8d9cf59175e40b84f4e6985e",
1666
- "signature": "174c0e10235dba75b5117b7bf8ddb148b2a9aa508771f7a2c5c108eede0c9584",
1665
+ "version": "58285e3f3c0c3b3fb6fce64cff734faee677da475590aa2645ac8bcb3a3cc38d",
1666
+ "signature": "99522572f068205b9ca4f8d7d40a6ecbd6141b38b40538b5137a5138c6d39bbb",
1667
1667
  "affectsGlobalScope": false
1668
1668
  },
1669
1669
  "../../core/components/organisms/listbox/listboxItem/index.tsx": {
@@ -1672,8 +1672,8 @@
1672
1672
  "affectsGlobalScope": false
1673
1673
  },
1674
1674
  "../../core/components/organisms/listbox/Listbox.tsx": {
1675
- "version": "b36aaa382a63adc0b8672f55eab42069939b62daf3d5aff63c1d47b363410100",
1676
- "signature": "81b1adae8427e6b6d849c8bf96b9f0d3cf2ae1f2f005e0efd5a68ef63b068a98",
1675
+ "version": "24a59fce8e29af545bc2c2ef5002a7479f948111f8ffcabdea868ef48713232a",
1676
+ "signature": "ac00cbc543a88e68a55fa93a52f3f7d95b29e293141950037dc592bfe2108dc1",
1677
1677
  "affectsGlobalScope": false
1678
1678
  },
1679
1679
  "../../core/components/organisms/listbox/index.tsx": {
@@ -1706,9 +1706,244 @@
1706
1706
  "signature": "535bc9a715cb8f2cb636b2e4489ec527545dc35abe9a035f409e2433a2de1888",
1707
1707
  "affectsGlobalScope": false
1708
1708
  },
1709
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.tsx": {
1710
+ "version": "fb8a4ffbff51d654c7a50ad099e31cf1e633b49f712662eee2573482c911bfd4",
1711
+ "signature": "e0f84806f3e16ee9c43b5b9b58740fa1aa231fd308b4df5d205d5b5b35f8ba66",
1712
+ "affectsGlobalScope": false
1713
+ },
1714
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx": {
1715
+ "version": "24a72736d98a2c34c37cfb4105abab62d6b1df3ba475c52e4481b9dc8d2cd152",
1716
+ "signature": "e14755c939bd4fe8c2747caa81c22eb568cea45c14ec2ac2c22a1d1a5c51322d",
1717
+ "affectsGlobalScope": false
1718
+ },
1719
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx": {
1720
+ "version": "64e9eec85395988ddc892aff699474c5d06682372656104406ff0e576ec39434",
1721
+ "signature": "7e8462156f28d2c256811c2b799a1fff4a7ed86e3b4ce3172edc207b95aa9e39",
1722
+ "affectsGlobalScope": false
1723
+ },
1724
+ "../../core/components/atoms/avatarSelection/avatarsSelection/utils.tsx": {
1725
+ "version": "5121e7f588fb690eef3d29bf0be6ebbe1d6aa769e6d629ed5cb0055801ffd21f",
1726
+ "signature": "1123fd8190aab4899394dd6e38caef09fcf511307b187ecef2a256c2496408f5",
1727
+ "affectsGlobalScope": false
1728
+ },
1729
+ "../../core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.tsx": {
1730
+ "version": "5c90c88507766643fb995aee711cd342375a2919c3b9e80a1c7d2d4ee573e646",
1731
+ "signature": "6c444534437668874ac59ea08a7854b06b6594247b7f46f21e41ac5f3a66d47f",
1732
+ "affectsGlobalScope": false
1733
+ },
1734
+ "../../core/components/atoms/avatarSelection/avatarsSelection/index.tsx": {
1735
+ "version": "5e9a6d95f7cc3e5caf101bb1825963edbb460438702d7d14bc3714cd36a3e1da",
1736
+ "signature": "9d734a2169357fd9f8b92506bf201b625aa44f5503b6aa0e709382be676ea9ee",
1737
+ "affectsGlobalScope": false
1738
+ },
1739
+ "../../core/components/atoms/avatarSelection/avatarPopover/utils.tsx": {
1740
+ "version": "0d837121da23a25322138aab41622f677f8b43091b4bf1909483120ead9ce61e",
1741
+ "signature": "a730963b4b8baaa22cb1ebc646e0e79a493d18dbee4da46db054ce4f1b64345d",
1742
+ "affectsGlobalScope": false
1743
+ },
1744
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.tsx": {
1745
+ "version": "795e43974d9e04c6a93f2479d7543e7fed6f25bb50d2c4eb407b6b9620d4bd9c",
1746
+ "signature": "0449b61a874f0a4a152c616f86262c8ccbd6ba0f3feec6b547b0a56f3ae4c1b2",
1747
+ "affectsGlobalScope": false
1748
+ },
1749
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.tsx": {
1750
+ "version": "d3859e828cdfd0b2f28cb9401850319fef99b47fc899e426633926d4cc27ca0e",
1751
+ "signature": "4aeb57ab5503bc6d722d2ab399894903f7c817d3f0ab2cb65397d5289f64677a",
1752
+ "affectsGlobalScope": false
1753
+ },
1754
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx": {
1755
+ "version": "73dfbda526151f8cb24faf9f5d858f69414e01d43d6884940dfcef280056228a",
1756
+ "signature": "cf14d30d897a00b19bc936b0db2a711ec0bd4c26f236e0dc5cb31636e2b51002",
1757
+ "affectsGlobalScope": false
1758
+ },
1759
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx": {
1760
+ "version": "edff9b76b8fa5e14afde1019caf9367a5e7420f61a3b2cccbd8010ec1e4279ee",
1761
+ "signature": "5ee209e0de307cf0e81f3d6c74036216ed3ce4ce1e29dba048df17e2be91d229",
1762
+ "affectsGlobalScope": false
1763
+ },
1764
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.tsx": {
1765
+ "version": "e73ea88805d306ca0490bd1fbeaebefd74687dc501177cdd944d61938458fce8",
1766
+ "signature": "09fa6315494df1357b840c3c6088908fb1094cb5c09c1515dd3ef8f26caf0595",
1767
+ "affectsGlobalScope": false
1768
+ },
1769
+ "../../core/components/atoms/avatarSelection/avatarPopover/index.tsx": {
1770
+ "version": "c741cf05fae98d2a3159aa0e71e6900b5775931cf116be6e4e615ce69fbccc58",
1771
+ "signature": "124dfb4b6b02a50524b847cd72ae1e4012e9bdf55831970d8c5756398dd2171c",
1772
+ "affectsGlobalScope": false
1773
+ },
1774
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx": {
1775
+ "version": "f5abc419e5db58ca8a440d9641b3c8b4fc7a59809766d34cced0d22597c969e2",
1776
+ "signature": "7a49c2ab20c7207f4d26e61026fad7a459ad8efd6e8a39dc83992653eef23048",
1777
+ "affectsGlobalScope": false
1778
+ },
1779
+ "../../core/components/atoms/avatarSelection/index.tsx": {
1780
+ "version": "4a202d6e59d1a40adb97f6faab37b4e64539cb56057238243ceb0c7597c3b7f7",
1781
+ "signature": "9bd20db7d3378c1d78d4a38acbcc844b905490782762f818bc04892d9cf4a234",
1782
+ "affectsGlobalScope": false
1783
+ },
1784
+ "../../core/components/organisms/combobox/ComboboxList.tsx": {
1785
+ "version": "11cd74b7bf6dc0641f879741b874afd25bd590dc9744542b3b63efa38d41f985",
1786
+ "signature": "967e4d9be73a46ba28abefb8eb2748e6862f23b48d37f2bb3473cb00686a14c4",
1787
+ "affectsGlobalScope": false
1788
+ },
1789
+ "../../core/components/organisms/combobox/ComboboxContext.tsx": {
1790
+ "version": "beef849489ea16656acd58af0aecce65af11731042db857b8508466ebe068584",
1791
+ "signature": "369f79e060b7865f95e6d31ad7a3d625667b0557a7d91aaad93e3a939417784b",
1792
+ "affectsGlobalScope": false
1793
+ },
1794
+ "../../core/components/organisms/combobox/utils.tsx": {
1795
+ "version": "6a47a1f7ea5d27aa155ab6e69b3ac0e66cb76313fb5947c8bd84859183f5a117",
1796
+ "signature": "077e3dd6c5798d0c56a5e5b0ef3cca51e590fa5cf32ea7c6854d1ea74b613a6e",
1797
+ "affectsGlobalScope": false
1798
+ },
1799
+ "../../core/components/organisms/combobox/ComboboxOption.tsx": {
1800
+ "version": "e902b6389bb3a3cf05face55ca1cbc287ce221164b11219d00fcb06cb93717d2",
1801
+ "signature": "315de4aa4f1967c61105709d39b60bdd8ade66848bff0a52c53dceb2d2ee59bd",
1802
+ "affectsGlobalScope": false
1803
+ },
1804
+ "../../core/components/organisms/combobox/trigger/utils.tsx": {
1805
+ "version": "b482e183c41d43084f681e66caa635382dfe84db2205094395b6f271616caeba",
1806
+ "signature": "69eb9407f7e637c4bff6d402a595fec19695d27d67978e5317521b9d76e095ad",
1807
+ "affectsGlobalScope": false
1808
+ },
1809
+ "../../core/components/organisms/combobox/trigger/InputBox.tsx": {
1810
+ "version": "08f6474d000ecd0d8e3f281c693f92d479554e93e02f5480ad056a48bb21ec66",
1811
+ "signature": "dfca50dc2fa446590901ae9da769a28664c493ef49bed19ccaceb08dc03defde",
1812
+ "affectsGlobalScope": false
1813
+ },
1814
+ "../../core/components/organisms/combobox/trigger/MultiselectTrigger.tsx": {
1815
+ "version": "f5f6cec6c603fadb6f20d2a94298240867ffa098fc207046314681756dcb0f87",
1816
+ "signature": "a5aed0ecee8f303b50df8babf7ebfd60682636fc5a7c29a93a7c9ee3d46ebf56",
1817
+ "affectsGlobalScope": false
1818
+ },
1819
+ "../../core/components/organisms/combobox/trigger/ChipInputBox.tsx": {
1820
+ "version": "1da0f41d7a4cfd1624d271083482d7e5ea0bd2d2aead0fb3911fa9dbff1ec927",
1821
+ "signature": "4593087d4208f4ad20c318d6cac3945b2457483b31345c920eb633355b109886",
1822
+ "affectsGlobalScope": false
1823
+ },
1824
+ "../../core/components/organisms/combobox/trigger/ComboboxTrigger.tsx": {
1825
+ "version": "463b872729195dfb62f731b9fa3aef441d780c4223431713ad59d16b95209a95",
1826
+ "signature": "1426593383e10af553a86c3036fa229f8b85babcc2c698c0846bb9e9d6d8b7bf",
1827
+ "affectsGlobalScope": false
1828
+ },
1829
+ "../../core/components/organisms/combobox/Combobox.tsx": {
1830
+ "version": "b554b5133648dc4a92f68c48034ac2c25474c51f5bb048f6e178b169be4bda33",
1831
+ "signature": "867c15a9cee7de5e1d53570f7bf341ee8559c3aa3219cbc5896176fef68397e9",
1832
+ "affectsGlobalScope": false
1833
+ },
1834
+ "../../core/components/organisms/combobox/index.tsx": {
1835
+ "version": "2e932b853bdc5f1342753b1bbd7a16465d77aff859a74b94f60987ec8e320b7e",
1836
+ "signature": "11699c336e26c2c34470daf036dcfdaf7b165a0d8c919b832d6d8fe196e620dd",
1837
+ "affectsGlobalScope": false
1838
+ },
1839
+ "../../core/components/organisms/select/SelectContext.tsx": {
1840
+ "version": "770303673ccb10036f10ceb83a16cddcc1caa325c74a6325a85db3467466d38d",
1841
+ "signature": "085fadc11486d1d26a4d7803f063f53a32ec6e65a1fe3f7998a5ee41e08b546b",
1842
+ "affectsGlobalScope": false
1843
+ },
1844
+ "../../core/components/organisms/select/SelectList.tsx": {
1845
+ "version": "f6cf3332561442f1ec3985de356ac3f1e68fa228f45e44e5c24b68d617cfa74c",
1846
+ "signature": "ad1ca3815815b95f19165cb5fe5d85b888c1ac0f6fa01dfeb40fe7b5b7e95638",
1847
+ "affectsGlobalScope": false
1848
+ },
1849
+ "../../core/components/organisms/select/utils.tsx": {
1850
+ "version": "2bcbc9a65cfbfa43779c439d8906cd1fd95999bd1bb4d2024307dab0e52e64a2",
1851
+ "signature": "9901a08865a2d9990f41e0bc237ee7ecf0a06fc9525c7d94098eab93b1f45ccb",
1852
+ "affectsGlobalScope": false
1853
+ },
1854
+ "../../core/components/organisms/select/SelectOption.tsx": {
1855
+ "version": "4c983d89b9d779881b72b1c3c723b32d09145861f1d34858cfe5a11c27bcf865",
1856
+ "signature": "b7da301dbe1169580de986f62c87077f76890064d925c1e648221ee58b03fe07",
1857
+ "affectsGlobalScope": false
1858
+ },
1859
+ "../../core/components/organisms/select/SelectTrigger.tsx": {
1860
+ "version": "a5a53391496bdea65d7bde300ee0162343edb3c552c5ed29018b50a320dc2052",
1861
+ "signature": "342e41566380c2b501da61c4a9eb07c72385c14f64bb177d4d5744e1e6217919",
1862
+ "affectsGlobalScope": false
1863
+ },
1864
+ "../../core/components/organisms/select/SearchInput.tsx": {
1865
+ "version": "f29723058f63146e06e3087a9be5aa7915932f8d2d1034d56b9ada1f00f2e255",
1866
+ "signature": "23e833d128dc88651bd593f00806d51c074283658b7c844a8dd5f4c0198f6601",
1867
+ "affectsGlobalScope": false
1868
+ },
1869
+ "../../core/components/organisms/select/SelectEmptyTemplate.tsx": {
1870
+ "version": "249ad4ba02ac0921c4672cfe95d3d690c4adc330583b99b6b8a2fb90cd17ecaa",
1871
+ "signature": "8b178f35724e96726150cb894398a7710abcf52f3812cdf724ebb03b0335eec5",
1872
+ "affectsGlobalScope": false
1873
+ },
1874
+ "../../core/components/organisms/select/SelectFooter.tsx": {
1875
+ "version": "ac90f516fae747301560408de14706c332187b8b9acd8b3f130431beb8e78e35",
1876
+ "signature": "5686f3bb3acf4466c6794f124cd98575b897436b182bce621b0c51cc38ee54af",
1877
+ "affectsGlobalScope": false
1878
+ },
1879
+ "../../core/components/organisms/select/Select.tsx": {
1880
+ "version": "7a089aa857dfed86a8e1646effd94b867712e00cb1241c07fffc8b20e12bad48",
1881
+ "signature": "a310c882f903b62c07d5199c3ce6af1ef34d25482d6646441508867bcf148b72",
1882
+ "affectsGlobalScope": false
1883
+ },
1884
+ "../../core/components/organisms/select/index.tsx": {
1885
+ "version": "b96c1af8922bf56031d0b30669e4c5906e5168351a4cff105430084229a99948",
1886
+ "signature": "1b9d6e612f34172e88641c1d608c40a69c3cbb1acf45595c0fc9833678209895",
1887
+ "affectsGlobalScope": false
1888
+ },
1889
+ "../../core/components/organisms/menu/MenuGroup.tsx": {
1890
+ "version": "73a4575a0920481c58d04bad81301de12531f57995e44f838c53acd7e8a24f2c",
1891
+ "signature": "311c8d53301828675098fc7791e91dbbc488e26be4db9c9cb422e01169901368",
1892
+ "affectsGlobalScope": false
1893
+ },
1894
+ "../../core/components/organisms/menu/MenuContext.tsx": {
1895
+ "version": "330bc4f9d78254f91b74f790c8d95042611195e01d44ca8a70cc77deb48e9587",
1896
+ "signature": "f24235f2567474d4686d11c3e166113a8116635b77715719ca02ca03559e58f1",
1897
+ "affectsGlobalScope": false
1898
+ },
1899
+ "../../core/components/organisms/menu/utils.tsx": {
1900
+ "version": "89a2448786559ea6424ee942f7a899a6efa9166bf81ad95d54df16429a04aae0",
1901
+ "signature": "3514f5f705f345d978809d54ab7c63a34c6bc650a2cd0afc296de7f7fcbbc037",
1902
+ "affectsGlobalScope": false
1903
+ },
1904
+ "../../core/components/organisms/menu/SubMenuContext.tsx": {
1905
+ "version": "c2d903d96389f9021b2b0ce33eec849226c43e1c646c207fa7e6a463776953d2",
1906
+ "signature": "a01b89fab9636ad8124602b067f0c9093bbb89781e50200a0d056e30b3a57bb1",
1907
+ "affectsGlobalScope": false
1908
+ },
1909
+ "../../core/components/organisms/menu/MenuItem.tsx": {
1910
+ "version": "1a682c20b2bad42db7327c8400d37504c65504213c2af696eab27d3a04114fe1",
1911
+ "signature": "7262a36e4d325c33dedfb2a96327817979a89a0550efe40da3c82c3d8306c63e",
1912
+ "affectsGlobalScope": false
1913
+ },
1914
+ "../../core/components/organisms/menu/MenuList.tsx": {
1915
+ "version": "bd00383a4e23a139516e32bd1184e73f76b2babb2fe2a9c0ee13ef9e8aee2a60",
1916
+ "signature": "540f402ac98c4f12278f48b0fdbca850e275b754fcca6d4d9bcc77cf43af6854",
1917
+ "affectsGlobalScope": false
1918
+ },
1919
+ "../../core/components/organisms/menu/trigger/utils.tsx": {
1920
+ "version": "e9aa585e5787428de81c48f5f00415af9d637fcaac87c0b0f305b8be8b5e0a35",
1921
+ "signature": "f0c45743a6469fcd5b8963b61d840e4f41552aa64c69ece4c293aa7f3b09d9d0",
1922
+ "affectsGlobalScope": false
1923
+ },
1924
+ "../../core/components/organisms/menu/trigger/MenuTrigger.tsx": {
1925
+ "version": "6d151f1f10dadb7b40369ecc67e5a539046500f79d4d806e6deabf5d8be0105e",
1926
+ "signature": "c78c8fbb15ee998e44216e12a21846f5759c5e76843ca6a767e6213ac3794a7a",
1927
+ "affectsGlobalScope": false
1928
+ },
1929
+ "../../core/components/organisms/menu/SubMenu.tsx": {
1930
+ "version": "988481507abc8e59ddf36154f02a2734a142d4626a6a35710e54d1324c2494a0",
1931
+ "signature": "9c6286aa3bbdd7abc72d9cff12dd45e4f0f33a72f3853df01781607aecbc040c",
1932
+ "affectsGlobalScope": false
1933
+ },
1934
+ "../../core/components/organisms/menu/Menu.tsx": {
1935
+ "version": "fe6754049233b20dc8fc1a6e57b57365c623d189eba976498dd781fde13deb17",
1936
+ "signature": "036b135b292e1b42dd46e305fabf875f1982d4f3232844eb916629bc173f480f",
1937
+ "affectsGlobalScope": false
1938
+ },
1939
+ "../../core/components/organisms/menu/index.tsx": {
1940
+ "version": "dfc1c0cfdcdc9d4919b12bac38478cd01562f74d98db59ced8c4c4e20c7a201d",
1941
+ "signature": "0d16db700f15ab222541abedddc40fca479899f6a7bf665a57cd4a63cf99cf02",
1942
+ "affectsGlobalScope": false
1943
+ },
1709
1944
  "../../core/index.type.tsx": {
1710
- "version": "70c5a7142965056cd60b6194499b2bc80a5d90b7a6bf00be540d5aed8472a367",
1711
- "signature": "284d6724063eee3d3e1de65ffd9f233bb94e64a0f507733b89b31d4c9de0fb06",
1945
+ "version": "808f72e4bc36fbb8f3d0304a12f30903bece81ac106976892b6cbfdea9173892",
1946
+ "signature": "d154cb3aee04dee7a104aae5af6e1784af86f6465ff54c33842057c3e9b5a750",
1712
1947
  "affectsGlobalScope": false
1713
1948
  },
1714
1949
  "../../core/components/organisms/timePicker/TimePickerWithInput.tsx": {
@@ -1737,8 +1972,8 @@
1737
1972
  "affectsGlobalScope": false
1738
1973
  },
1739
1974
  "../../core/index.tsx": {
1740
- "version": "2635bd5d0b5b1f9dd676602851b043b4e55dcde28ef1b1c6acb1ae6272da2b9e",
1741
- "signature": "4fe759eee49c57c4e879d0a424f598bf2568455cc5ed006502f049b14fb8d1b7",
1975
+ "version": "ee817489bfd05cf90e9dfbe360f2ac74dc2a416d93ce8738303f0376531a8294",
1976
+ "signature": "31a64696c235100cf7da80187a145ed12e295be9afa06e2b4174975f54948d77",
1742
1977
  "affectsGlobalScope": false
1743
1978
  },
1744
1979
  "../../core/components/molecules/overlayFooter/OverlayFooter.tsx": {
@@ -1752,8 +1987,8 @@
1752
1987
  "affectsGlobalScope": false
1753
1988
  },
1754
1989
  "../../core/common.type.tsx": {
1755
- "version": "6a0b5cea6e6f34ef002f1de547407cf2bfcb3a0b2d5e58c590018793f7adca26",
1756
- "signature": "e7bb809f66394d9532c72477519acf0e8ea603e3ec409c80aaae82fdf5709b9f",
1990
+ "version": "0126ddc01b7456ffa12842d18033c805a3eb90012b1f3323263aece7fe4601f5",
1991
+ "signature": "3785c1ad25ab06d88a19dee228c8cf3d046a1b61328f18a0c02d806dd0c0e772",
1757
1992
  "affectsGlobalScope": false
1758
1993
  },
1759
1994
  "../../core/global.d.ts": {
@@ -1921,6 +2156,21 @@
1921
2156
  "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
1922
2157
  "affectsGlobalScope": false
1923
2158
  },
2159
+ "../../core/components/organisms/combobox/trigger/index.tsx": {
2160
+ "version": "5d41aa8d2e99bcf48e6dbed6c936fc9779ceb117b148ca5df8f360ddc1b0d95b",
2161
+ "signature": "bfb7f1c9a5612091021689bc548b97d649a9a47f89eab39cfb701b8034394c9e",
2162
+ "affectsGlobalScope": false
2163
+ },
2164
+ "../../core/components/organisms/select/__test__/Select.test.tsx": {
2165
+ "version": "fb39a55ed7f3f9134cc9ba698c596140c82fac1420b72ab268c5a07abbcc1de6",
2166
+ "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
2167
+ "affectsGlobalScope": false
2168
+ },
2169
+ "../../core/components/organisms/select/__test__/utils.test.tsx": {
2170
+ "version": "0de9ba67678d1670154f07844331f9f2307a4c3062d815c2c4e40abc67094df0",
2171
+ "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
2172
+ "affectsGlobalScope": false
2173
+ },
1924
2174
  "../../node_modules/jest-diff/build/types.d.ts": {
1925
2175
  "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
1926
2176
  "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
@@ -4863,6 +5113,156 @@
4863
5113
  "*",
4864
5114
  "*",
4865
5115
  "*",
5116
+ "*",
5117
+ "*",
5118
+ "*",
5119
+ "*",
5120
+ "*",
5121
+ "*",
5122
+ "*",
5123
+ "*",
5124
+ "*",
5125
+ "*",
5126
+ "*",
5127
+ "*",
5128
+ "*",
5129
+ "*",
5130
+ "*",
5131
+ "*",
5132
+ "*",
5133
+ "*",
5134
+ "*",
5135
+ "*",
5136
+ "*",
5137
+ "*",
5138
+ "*",
5139
+ "*",
5140
+ "*",
5141
+ "*",
5142
+ "*",
5143
+ "*",
5144
+ "*",
5145
+ "*",
5146
+ "*",
5147
+ "*",
5148
+ "*",
5149
+ "*",
5150
+ "*",
5151
+ "*",
5152
+ "*",
5153
+ "*",
5154
+ "*",
5155
+ "*",
5156
+ "*",
5157
+ "*",
5158
+ "*",
5159
+ "*",
5160
+ "*",
5161
+ "*",
5162
+ "*",
5163
+ "*",
5164
+ "*",
5165
+ "*",
5166
+ "*",
5167
+ "*",
5168
+ "*",
5169
+ "*",
5170
+ "*",
5171
+ "*",
5172
+ "*",
5173
+ "*",
5174
+ "*",
5175
+ "*",
5176
+ "*",
5177
+ "*",
5178
+ "*",
5179
+ "*",
5180
+ "*",
5181
+ "*",
5182
+ "*",
5183
+ "*",
5184
+ "*",
5185
+ "*",
5186
+ "*",
5187
+ "*",
5188
+ "*",
5189
+ "*",
5190
+ "*",
5191
+ "*",
5192
+ "*",
5193
+ "*",
5194
+ "*",
5195
+ "*",
5196
+ "*",
5197
+ "*",
5198
+ "*",
5199
+ "*",
5200
+ "*",
5201
+ "*",
5202
+ "*",
5203
+ "*",
5204
+ "*",
5205
+ "*",
5206
+ "*",
5207
+ "*",
5208
+ "*",
5209
+ "*",
5210
+ "*",
5211
+ "*",
5212
+ "*",
5213
+ "*",
5214
+ "*",
5215
+ "*",
5216
+ "*",
5217
+ "*",
5218
+ "*",
5219
+ "*",
5220
+ "*",
5221
+ "*",
5222
+ "*",
5223
+ "*",
5224
+ "*",
5225
+ "*",
5226
+ "*",
5227
+ "*",
5228
+ "*",
5229
+ "*",
5230
+ "*",
5231
+ "*",
5232
+ "*",
5233
+ "*",
5234
+ "*",
5235
+ "*",
5236
+ "*",
5237
+ "*",
5238
+ "*",
5239
+ "*",
5240
+ "*",
5241
+ "*",
5242
+ "*",
5243
+ "*",
5244
+ "*",
5245
+ "*",
5246
+ "*",
5247
+ "*",
5248
+ "*",
5249
+ "*",
5250
+ "*",
5251
+ "*",
5252
+ "*",
5253
+ "*",
5254
+ "*",
5255
+ "*",
5256
+ "*",
5257
+ "*",
5258
+ "*",
5259
+ "*",
5260
+ "*",
5261
+ "*",
5262
+ "*",
5263
+ "*",
5264
+ "*",
5265
+ "*",
4866
5266
  "*"
4867
5267
  ]
4868
5268
  },
@@ -5014,6 +5414,118 @@
5014
5414
  "../../core/components/atoms/avatarGroup/AvatarGroup.tsx",
5015
5415
  "../../node_modules/@types/node/util.d.ts"
5016
5416
  ],
5417
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx": [
5418
+ "../../core/common.type.tsx",
5419
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5420
+ "../../core/components/atoms/avatarSelection/avatarPopover/index.tsx",
5421
+ "../../core/components/atoms/avatarSelection/avatarsSelection/index.tsx",
5422
+ "../../core/components/atoms/avatarSelection/avatarsSelection/utils.tsx",
5423
+ "../../core/index.tsx",
5424
+ "../../core/index.type.tsx",
5425
+ "../../core/utils/types.tsx",
5426
+ "../../core/utils/uidGenerator.tsx",
5427
+ "../../node_modules/@types/node/util.d.ts",
5428
+ "../../node_modules/@types/react/index.d.ts",
5429
+ "../../node_modules/classnames/index.d.ts"
5430
+ ],
5431
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx": [
5432
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5433
+ "../../node_modules/@types/node/util.d.ts",
5434
+ "../../node_modules/@types/react/index.d.ts"
5435
+ ],
5436
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx": [
5437
+ "../../core/index.tsx",
5438
+ "../../node_modules/@types/node/util.d.ts",
5439
+ "../../node_modules/@types/react/index.d.ts"
5440
+ ],
5441
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.tsx": [
5442
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5443
+ "../../core/components/atoms/avatarSelection/avatarPopover/utils.tsx",
5444
+ "../../core/index.tsx",
5445
+ "../../core/index.type.tsx",
5446
+ "../../node_modules/@types/node/util.d.ts",
5447
+ "../../node_modules/@types/react/index.d.ts"
5448
+ ],
5449
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.tsx": [
5450
+ "../../core/common.type.tsx",
5451
+ "../../core/index.tsx",
5452
+ "../../core/utils/types.tsx",
5453
+ "../../node_modules/@types/node/util.d.ts",
5454
+ "../../node_modules/@types/react/index.d.ts"
5455
+ ],
5456
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx": [
5457
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5458
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5459
+ "../../core/components/atoms/avatarSelection/avatarPopover/utils.tsx",
5460
+ "../../core/index.tsx",
5461
+ "../../core/utils/types.tsx",
5462
+ "../../node_modules/@types/node/util.d.ts",
5463
+ "../../node_modules/@types/react/index.d.ts"
5464
+ ],
5465
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.tsx": [
5466
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5467
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5468
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx",
5469
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.tsx",
5470
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.tsx",
5471
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx",
5472
+ "../../core/index.tsx",
5473
+ "../../node_modules/@types/node/util.d.ts",
5474
+ "../../node_modules/@types/react/index.d.ts",
5475
+ "../../node_modules/classnames/index.d.ts"
5476
+ ],
5477
+ "../../core/components/atoms/avatarSelection/avatarPopover/index.tsx": [
5478
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx",
5479
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.tsx",
5480
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.tsx",
5481
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx",
5482
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.tsx",
5483
+ "../../node_modules/@types/node/util.d.ts"
5484
+ ],
5485
+ "../../core/components/atoms/avatarSelection/avatarPopover/utils.tsx": [
5486
+ "../../node_modules/@types/node/util.d.ts",
5487
+ "../../node_modules/@types/react/index.d.ts"
5488
+ ],
5489
+ "../../core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.tsx": [
5490
+ "../../core/common.type.tsx",
5491
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5492
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5493
+ "../../core/components/atoms/avatarSelection/avatarsSelection/utils.tsx",
5494
+ "../../core/index.tsx",
5495
+ "../../node_modules/@types/node/util.d.ts",
5496
+ "../../node_modules/@types/react/index.d.ts",
5497
+ "../../node_modules/classnames/index.d.ts"
5498
+ ],
5499
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.tsx": [
5500
+ "../../core/common.type.tsx",
5501
+ "../../core/index.tsx",
5502
+ "../../core/index.type.tsx",
5503
+ "../../node_modules/@types/node/util.d.ts",
5504
+ "../../node_modules/@types/react/index.d.ts"
5505
+ ],
5506
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx": [
5507
+ "../../core/common.type.tsx",
5508
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5509
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
5510
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.tsx",
5511
+ "../../core/index.type.tsx",
5512
+ "../../node_modules/@types/node/util.d.ts",
5513
+ "../../node_modules/@types/react/index.d.ts",
5514
+ "../../node_modules/classnames/index.d.ts"
5515
+ ],
5516
+ "../../core/components/atoms/avatarSelection/avatarsSelection/index.tsx": [
5517
+ "../../core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.tsx",
5518
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx",
5519
+ "../../node_modules/@types/node/util.d.ts"
5520
+ ],
5521
+ "../../core/components/atoms/avatarSelection/avatarsSelection/utils.tsx": [
5522
+ "../../node_modules/@types/node/util.d.ts",
5523
+ "../../node_modules/@types/react/index.d.ts"
5524
+ ],
5525
+ "../../core/components/atoms/avatarSelection/index.tsx": [
5526
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
5527
+ "../../node_modules/@types/node/util.d.ts"
5528
+ ],
5017
5529
  "../../core/components/atoms/backdrop/Backdrop.tsx": [
5018
5530
  "../../core/utils/types.tsx",
5019
5531
  "../../node_modules/@types/node/util.d.ts",
@@ -5528,6 +6040,7 @@
5528
6040
  "../../node_modules/@types/node/util.d.ts"
5529
6041
  ],
5530
6042
  "../../core/components/atoms/popperWrapper/PopperWrapper.tsx": [
6043
+ "../../core/common.type.tsx",
5531
6044
  "../../core/index.tsx",
5532
6045
  "../../node_modules/@types/node/util.d.ts",
5533
6046
  "../../node_modules/@types/react-dom/index.d.ts",
@@ -6135,6 +6648,7 @@
6135
6648
  "../../node_modules/@types/node/util.d.ts"
6136
6649
  ],
6137
6650
  "../../core/components/molecules/popover/Popover.tsx": [
6651
+ "../../core/common.type.tsx",
6138
6652
  "../../core/components/atoms/popperWrapper/index.tsx",
6139
6653
  "../../core/utils/types.tsx",
6140
6654
  "../../node_modules/@types/node/util.d.ts",
@@ -6270,6 +6784,90 @@
6270
6784
  "../../core/components/organisms/choiceList/ChoiceList.tsx",
6271
6785
  "../../node_modules/@types/node/util.d.ts"
6272
6786
  ],
6787
+ "../../core/components/organisms/combobox/Combobox.tsx": [
6788
+ "../../core/common.type.tsx",
6789
+ "../../core/components/organisms/combobox/ComboboxContext.tsx",
6790
+ "../../core/components/organisms/combobox/ComboboxList.tsx",
6791
+ "../../core/components/organisms/combobox/ComboboxOption.tsx",
6792
+ "../../core/components/organisms/combobox/trigger/ComboboxTrigger.tsx",
6793
+ "../../core/components/organisms/combobox/trigger/utils.tsx",
6794
+ "../../core/index.tsx",
6795
+ "../../core/index.type.tsx",
6796
+ "../../core/utils/types.tsx",
6797
+ "../../core/utils/uidGenerator.tsx",
6798
+ "../../node_modules/@types/node/util.d.ts",
6799
+ "../../node_modules/@types/react/index.d.ts"
6800
+ ],
6801
+ "../../core/components/organisms/combobox/ComboboxContext.tsx": [
6802
+ "../../core/common.type.tsx",
6803
+ "../../node_modules/@types/node/util.d.ts",
6804
+ "../../node_modules/@types/react/index.d.ts"
6805
+ ],
6806
+ "../../core/components/organisms/combobox/ComboboxList.tsx": [
6807
+ "../../core/common.type.tsx",
6808
+ "../../core/index.tsx",
6809
+ "../../core/utils/types.tsx",
6810
+ "../../node_modules/@types/node/util.d.ts",
6811
+ "../../node_modules/@types/react/index.d.ts"
6812
+ ],
6813
+ "../../core/components/organisms/combobox/ComboboxOption.tsx": [
6814
+ "../../core/common.type.tsx",
6815
+ "../../core/components/organisms/combobox/ComboboxContext.tsx",
6816
+ "../../core/components/organisms/combobox/utils.tsx",
6817
+ "../../core/index.tsx",
6818
+ "../../core/utils/types.tsx",
6819
+ "../../node_modules/@types/node/util.d.ts",
6820
+ "../../node_modules/@types/react/index.d.ts"
6821
+ ],
6822
+ "../../core/components/organisms/combobox/index.tsx": [
6823
+ "../../core/components/organisms/combobox/Combobox.tsx",
6824
+ "../../node_modules/@types/node/util.d.ts"
6825
+ ],
6826
+ "../../core/components/organisms/combobox/trigger/ChipInputBox.tsx": [
6827
+ "../../core/common.type.tsx",
6828
+ "../../core/components/organisms/combobox/ComboboxContext.tsx",
6829
+ "../../core/components/organisms/combobox/trigger/MultiselectTrigger.tsx",
6830
+ "../../core/components/organisms/combobox/trigger/utils.tsx",
6831
+ "../../node_modules/@types/node/util.d.ts",
6832
+ "../../node_modules/@types/react/index.d.ts"
6833
+ ],
6834
+ "../../core/components/organisms/combobox/trigger/ComboboxTrigger.tsx": [
6835
+ "../../core/common.type.tsx",
6836
+ "../../core/components/organisms/combobox/Combobox.tsx",
6837
+ "../../core/components/organisms/combobox/trigger/ChipInputBox.tsx",
6838
+ "../../core/components/organisms/combobox/trigger/InputBox.tsx",
6839
+ "../../node_modules/@types/node/util.d.ts",
6840
+ "../../node_modules/@types/react/index.d.ts"
6841
+ ],
6842
+ "../../core/components/organisms/combobox/trigger/InputBox.tsx": [
6843
+ "../../core/components/organisms/combobox/ComboboxContext.tsx",
6844
+ "../../core/components/organisms/combobox/trigger/utils.tsx",
6845
+ "../../core/index.tsx",
6846
+ "../../core/index.type.tsx",
6847
+ "../../node_modules/@types/node/util.d.ts",
6848
+ "../../node_modules/@types/react/index.d.ts"
6849
+ ],
6850
+ "../../core/components/organisms/combobox/trigger/MultiselectTrigger.tsx": [
6851
+ "../../core/common.type.tsx",
6852
+ "../../core/index.tsx",
6853
+ "../../core/index.type.tsx",
6854
+ "../../core/utils/types.tsx",
6855
+ "../../node_modules/@types/node/util.d.ts",
6856
+ "../../node_modules/@types/react/index.d.ts",
6857
+ "../../node_modules/classnames/index.d.ts"
6858
+ ],
6859
+ "../../core/components/organisms/combobox/trigger/index.tsx": [
6860
+ "../../core/components/organisms/combobox/trigger/ComboboxTrigger.tsx",
6861
+ "../../node_modules/@types/node/util.d.ts"
6862
+ ],
6863
+ "../../core/components/organisms/combobox/trigger/utils.tsx": [
6864
+ "../../node_modules/@types/node/util.d.ts",
6865
+ "../../node_modules/@types/react/index.d.ts"
6866
+ ],
6867
+ "../../core/components/organisms/combobox/utils.tsx": [
6868
+ "../../node_modules/@types/node/util.d.ts",
6869
+ "../../node_modules/@types/react/index.d.ts"
6870
+ ],
6273
6871
  "../../core/components/organisms/datePicker/DatePicker.tsx": [
6274
6872
  "../../core/components/organisms/calendar/Calendar.tsx",
6275
6873
  "../../core/components/organisms/calendar/config.ts",
@@ -6467,6 +7065,7 @@
6467
7065
  "../../node_modules/@types/node/util.d.ts"
6468
7066
  ],
6469
7067
  "../../core/components/organisms/listbox/Listbox.tsx": [
7068
+ "../../core/common.type.tsx",
6470
7069
  "../../core/components/organisms/listbox/listboxItem/index.tsx",
6471
7070
  "../../core/components/organisms/listbox/reorderList/index.tsx",
6472
7071
  "../../core/utils/types.tsx",
@@ -6543,6 +7142,82 @@
6543
7142
  "../../core/components/organisms/listbox/utils.ts": [
6544
7143
  "../../node_modules/@types/node/util.d.ts"
6545
7144
  ],
7145
+ "../../core/components/organisms/menu/Menu.tsx": [
7146
+ "../../core/components/organisms/menu/MenuContext.tsx",
7147
+ "../../core/components/organisms/menu/MenuGroup.tsx",
7148
+ "../../core/components/organisms/menu/MenuItem.tsx",
7149
+ "../../core/components/organisms/menu/MenuList.tsx",
7150
+ "../../core/components/organisms/menu/SubMenu.tsx",
7151
+ "../../core/components/organisms/menu/SubMenuContext.tsx",
7152
+ "../../core/components/organisms/menu/trigger/MenuTrigger.tsx",
7153
+ "../../core/components/organisms/menu/trigger/utils.tsx",
7154
+ "../../core/index.tsx",
7155
+ "../../core/index.type.tsx",
7156
+ "../../core/utils/types.tsx",
7157
+ "../../node_modules/@types/node/util.d.ts",
7158
+ "../../node_modules/@types/react/index.d.ts",
7159
+ "../../node_modules/classnames/index.d.ts"
7160
+ ],
7161
+ "../../core/components/organisms/menu/MenuContext.tsx": [
7162
+ "../../node_modules/@types/node/util.d.ts",
7163
+ "../../node_modules/@types/react/index.d.ts"
7164
+ ],
7165
+ "../../core/components/organisms/menu/MenuGroup.tsx": [
7166
+ "../../core/index.tsx",
7167
+ "../../core/utils/types.tsx",
7168
+ "../../node_modules/@types/node/util.d.ts",
7169
+ "../../node_modules/@types/react/index.d.ts"
7170
+ ],
7171
+ "../../core/components/organisms/menu/MenuItem.tsx": [
7172
+ "../../core/components/organisms/menu/MenuContext.tsx",
7173
+ "../../core/components/organisms/menu/SubMenuContext.tsx",
7174
+ "../../core/components/organisms/menu/utils.tsx",
7175
+ "../../core/index.tsx",
7176
+ "../../core/utils/types.tsx",
7177
+ "../../node_modules/@types/node/util.d.ts",
7178
+ "../../node_modules/@types/react/index.d.ts",
7179
+ "../../node_modules/classnames/index.d.ts"
7180
+ ],
7181
+ "../../core/components/organisms/menu/MenuList.tsx": [
7182
+ "../../core/common.type.tsx",
7183
+ "../../core/index.tsx",
7184
+ "../../core/utils/types.tsx",
7185
+ "../../node_modules/@types/node/util.d.ts",
7186
+ "../../node_modules/@types/react/index.d.ts"
7187
+ ],
7188
+ "../../core/components/organisms/menu/SubMenu.tsx": [
7189
+ "../../core/components/organisms/menu/MenuContext.tsx",
7190
+ "../../core/components/organisms/menu/SubMenuContext.tsx",
7191
+ "../../core/components/organisms/menu/utils.tsx",
7192
+ "../../core/utils/uidGenerator.tsx",
7193
+ "../../node_modules/@types/node/util.d.ts",
7194
+ "../../node_modules/@types/react/index.d.ts"
7195
+ ],
7196
+ "../../core/components/organisms/menu/SubMenuContext.tsx": [
7197
+ "../../node_modules/@types/node/util.d.ts",
7198
+ "../../node_modules/@types/react/index.d.ts"
7199
+ ],
7200
+ "../../core/components/organisms/menu/index.tsx": [
7201
+ "../../core/components/organisms/menu/Menu.tsx",
7202
+ "../../node_modules/@types/node/util.d.ts"
7203
+ ],
7204
+ "../../core/components/organisms/menu/trigger/MenuTrigger.tsx": [
7205
+ "../../core/components/organisms/menu/MenuContext.tsx",
7206
+ "../../core/components/organisms/menu/trigger/utils.tsx",
7207
+ "../../core/index.tsx",
7208
+ "../../core/utils/types.tsx",
7209
+ "../../node_modules/@types/node/util.d.ts",
7210
+ "../../node_modules/@types/react/index.d.ts",
7211
+ "../../node_modules/classnames/index.d.ts"
7212
+ ],
7213
+ "../../core/components/organisms/menu/trigger/utils.tsx": [
7214
+ "../../node_modules/@types/node/util.d.ts",
7215
+ "../../node_modules/@types/react/index.d.ts"
7216
+ ],
7217
+ "../../core/components/organisms/menu/utils.tsx": [
7218
+ "../../node_modules/@types/node/util.d.ts",
7219
+ "../../node_modules/@types/react/index.d.ts"
7220
+ ],
6546
7221
  "../../core/components/organisms/navigation/Navigation.tsx": [
6547
7222
  "../../core/components/organisms/navigation/VerticalNavigation.tsx",
6548
7223
  "../../core/index.tsx",
@@ -6581,6 +7256,95 @@
6581
7256
  "../../node_modules/@types/react/index.d.ts",
6582
7257
  "../../node_modules/classnames/index.d.ts"
6583
7258
  ],
7259
+ "../../core/components/organisms/select/SearchInput.tsx": [
7260
+ "../../core/components/organisms/select/SelectContext.tsx",
7261
+ "../../core/components/organisms/select/utils.tsx",
7262
+ "../../core/index.tsx",
7263
+ "../../core/utils/types.tsx",
7264
+ "../../node_modules/@types/node/util.d.ts",
7265
+ "../../node_modules/@types/react/index.d.ts"
7266
+ ],
7267
+ "../../core/components/organisms/select/Select.tsx": [
7268
+ "../../core/common.type.tsx",
7269
+ "../../core/components/organisms/select/SearchInput.tsx",
7270
+ "../../core/components/organisms/select/SelectContext.tsx",
7271
+ "../../core/components/organisms/select/SelectEmptyTemplate.tsx",
7272
+ "../../core/components/organisms/select/SelectFooter.tsx",
7273
+ "../../core/components/organisms/select/SelectList.tsx",
7274
+ "../../core/components/organisms/select/SelectOption.tsx",
7275
+ "../../core/components/organisms/select/SelectTrigger.tsx",
7276
+ "../../core/components/organisms/select/utils.tsx",
7277
+ "../../core/index.tsx",
7278
+ "../../core/utils/types.tsx",
7279
+ "../../node_modules/@types/node/util.d.ts",
7280
+ "../../node_modules/@types/react/index.d.ts"
7281
+ ],
7282
+ "../../core/components/organisms/select/SelectContext.tsx": [
7283
+ "../../core/common.type.tsx",
7284
+ "../../node_modules/@types/node/util.d.ts",
7285
+ "../../node_modules/@types/react/index.d.ts"
7286
+ ],
7287
+ "../../core/components/organisms/select/SelectEmptyTemplate.tsx": [
7288
+ "../../core/components/organisms/select/SelectContext.tsx",
7289
+ "../../core/index.tsx",
7290
+ "../../core/utils/types.tsx",
7291
+ "../../node_modules/@types/node/util.d.ts",
7292
+ "../../node_modules/@types/react/index.d.ts"
7293
+ ],
7294
+ "../../core/components/organisms/select/SelectFooter.tsx": [
7295
+ "../../core/utils/types.tsx",
7296
+ "../../node_modules/@types/node/util.d.ts",
7297
+ "../../node_modules/@types/react/index.d.ts"
7298
+ ],
7299
+ "../../core/components/organisms/select/SelectList.tsx": [
7300
+ "../../core/common.type.tsx",
7301
+ "../../core/components/organisms/select/SelectContext.tsx",
7302
+ "../../core/index.tsx",
7303
+ "../../core/utils/types.tsx",
7304
+ "../../node_modules/@types/node/util.d.ts",
7305
+ "../../node_modules/@types/react/index.d.ts"
7306
+ ],
7307
+ "../../core/components/organisms/select/SelectOption.tsx": [
7308
+ "../../core/common.type.tsx",
7309
+ "../../core/components/organisms/select/SelectContext.tsx",
7310
+ "../../core/components/organisms/select/utils.tsx",
7311
+ "../../core/index.tsx",
7312
+ "../../core/utils/types.tsx",
7313
+ "../../node_modules/@types/node/util.d.ts",
7314
+ "../../node_modules/@types/react/index.d.ts"
7315
+ ],
7316
+ "../../core/components/organisms/select/SelectTrigger.tsx": [
7317
+ "../../core/common.type.tsx",
7318
+ "../../core/components/organisms/select/SelectContext.tsx",
7319
+ "../../core/components/organisms/select/utils.tsx",
7320
+ "../../core/index.tsx",
7321
+ "../../core/utils/types.tsx",
7322
+ "../../node_modules/@types/node/util.d.ts",
7323
+ "../../node_modules/@types/react/index.d.ts",
7324
+ "../../node_modules/classnames/index.d.ts"
7325
+ ],
7326
+ "../../core/components/organisms/select/__test__/Select.test.tsx": [
7327
+ "../../core/index.tsx",
7328
+ "../../core/index.type.tsx",
7329
+ "../../core/utils/testHelper.ts",
7330
+ "../../node_modules/@testing-library/react/types/index.d.ts",
7331
+ "../../node_modules/@types/node/util.d.ts",
7332
+ "../../node_modules/@types/react/index.d.ts"
7333
+ ],
7334
+ "../../core/components/organisms/select/__test__/utils.test.tsx": [
7335
+ "../../core/common.type.tsx",
7336
+ "../../core/components/organisms/select/utils.tsx",
7337
+ "../../node_modules/@types/node/util.d.ts"
7338
+ ],
7339
+ "../../core/components/organisms/select/index.tsx": [
7340
+ "../../core/components/organisms/select/Select.tsx",
7341
+ "../../node_modules/@types/node/util.d.ts"
7342
+ ],
7343
+ "../../core/components/organisms/select/utils.tsx": [
7344
+ "../../core/common.type.tsx",
7345
+ "../../node_modules/@types/node/util.d.ts",
7346
+ "../../node_modules/@types/react/index.d.ts"
7347
+ ],
6584
7348
  "../../core/components/organisms/table/DraggableDropdown.tsx": [
6585
7349
  "../../core/components/organisms/grid/utility.tsx",
6586
7350
  "../../core/index.tsx",
@@ -6724,6 +7488,7 @@
6724
7488
  "../../core/components/atoms/actionCard/index.tsx",
6725
7489
  "../../core/components/atoms/avatar/index.tsx",
6726
7490
  "../../core/components/atoms/avatarGroup/index.tsx",
7491
+ "../../core/components/atoms/avatarSelection/index.tsx",
6727
7492
  "../../core/components/atoms/backdrop/index.tsx",
6728
7493
  "../../core/components/atoms/badge/index.tsx",
6729
7494
  "../../core/components/atoms/breadcrumbs/index.tsx",
@@ -6796,6 +7561,7 @@
6796
7561
  "../../core/components/molecules/verificationCodeInput/index.tsx",
6797
7562
  "../../core/components/organisms/calendar/index.tsx",
6798
7563
  "../../core/components/organisms/choiceList/index.tsx",
7564
+ "../../core/components/organisms/combobox/index.tsx",
6799
7565
  "../../core/components/organisms/datePicker/index.tsx",
6800
7566
  "../../core/components/organisms/dateRangePicker/index.tsx",
6801
7567
  "../../core/components/organisms/grid/GridCell.tsx",
@@ -6804,8 +7570,10 @@
6804
7570
  "../../core/components/organisms/inlineMessage/index.tsx",
6805
7571
  "../../core/components/organisms/list/index.tsx",
6806
7572
  "../../core/components/organisms/listbox/index.tsx",
7573
+ "../../core/components/organisms/menu/index.tsx",
6807
7574
  "../../core/components/organisms/navigation/index.tsx",
6808
7575
  "../../core/components/organisms/pageHeader/index.tsx",
7576
+ "../../core/components/organisms/select/index.tsx",
6809
7577
  "../../core/components/organisms/table/index.tsx",
6810
7578
  "../../core/components/organisms/textField/index.tsx",
6811
7579
  "../../core/components/organisms/timePicker/index.tsx",
@@ -6816,8 +7584,11 @@
6816
7584
  ],
6817
7585
  "../../core/index.type.tsx": [
6818
7586
  "../../core/components/atoms/actionCard/index.tsx",
7587
+ "../../core/components/atoms/avatar/avatarIcon/index.tsx",
7588
+ "../../core/components/atoms/avatar/avatarImage/index.tsx",
6819
7589
  "../../core/components/atoms/avatar/index.tsx",
6820
7590
  "../../core/components/atoms/avatarGroup/index.tsx",
7591
+ "../../core/components/atoms/avatarSelection/index.tsx",
6821
7592
  "../../core/components/atoms/backdrop/index.tsx",
6822
7593
  "../../core/components/atoms/badge/index.tsx",
6823
7594
  "../../core/components/atoms/breadcrumbs/index.tsx",
@@ -6888,6 +7659,7 @@
6888
7659
  "../../core/components/molecules/verificationCodeInput/index.tsx",
6889
7660
  "../../core/components/organisms/calendar/index.tsx",
6890
7661
  "../../core/components/organisms/choiceList/index.tsx",
7662
+ "../../core/components/organisms/combobox/index.tsx",
6891
7663
  "../../core/components/organisms/datePicker/index.tsx",
6892
7664
  "../../core/components/organisms/dateRangePicker/index.tsx",
6893
7665
  "../../core/components/organisms/grid/GridCell.tsx",
@@ -6896,8 +7668,10 @@
6896
7668
  "../../core/components/organisms/inlineMessage/index.tsx",
6897
7669
  "../../core/components/organisms/list/index.tsx",
6898
7670
  "../../core/components/organisms/listbox/index.tsx",
7671
+ "../../core/components/organisms/menu/index.tsx",
6899
7672
  "../../core/components/organisms/navigation/index.tsx",
6900
7673
  "../../core/components/organisms/pageHeader/index.tsx",
7674
+ "../../core/components/organisms/select/index.tsx",
6901
7675
  "../../core/components/organisms/table/index.tsx",
6902
7676
  "../../core/components/organisms/textField/index.tsx",
6903
7677
  "../../core/components/organisms/timePicker/index.tsx",
@@ -12089,6 +12863,21 @@
12089
12863
  "../../core/components/atoms/avatarGroup/AvatarPopperBody.tsx",
12090
12864
  "../../core/components/atoms/avatarGroup/Avatars.tsx",
12091
12865
  "../../core/components/atoms/avatarGroup/index.tsx",
12866
+ "../../core/components/atoms/avatarSelection/AvatarSelection.tsx",
12867
+ "../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx",
12868
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx",
12869
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.tsx",
12870
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.tsx",
12871
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx",
12872
+ "../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.tsx",
12873
+ "../../core/components/atoms/avatarSelection/avatarPopover/index.tsx",
12874
+ "../../core/components/atoms/avatarSelection/avatarPopover/utils.tsx",
12875
+ "../../core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.tsx",
12876
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.tsx",
12877
+ "../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx",
12878
+ "../../core/components/atoms/avatarSelection/avatarsSelection/index.tsx",
12879
+ "../../core/components/atoms/avatarSelection/avatarsSelection/utils.tsx",
12880
+ "../../core/components/atoms/avatarSelection/index.tsx",
12092
12881
  "../../core/components/atoms/backdrop/Backdrop.tsx",
12093
12882
  "../../core/components/atoms/backdrop/index.tsx",
12094
12883
  "../../core/components/atoms/badge/Badge.tsx",
@@ -12297,6 +13086,18 @@
12297
13086
  "../../core/components/organisms/calendar/utility.ts",
12298
13087
  "../../core/components/organisms/choiceList/ChoiceList.tsx",
12299
13088
  "../../core/components/organisms/choiceList/index.tsx",
13089
+ "../../core/components/organisms/combobox/Combobox.tsx",
13090
+ "../../core/components/organisms/combobox/ComboboxContext.tsx",
13091
+ "../../core/components/organisms/combobox/ComboboxList.tsx",
13092
+ "../../core/components/organisms/combobox/ComboboxOption.tsx",
13093
+ "../../core/components/organisms/combobox/index.tsx",
13094
+ "../../core/components/organisms/combobox/trigger/ChipInputBox.tsx",
13095
+ "../../core/components/organisms/combobox/trigger/ComboboxTrigger.tsx",
13096
+ "../../core/components/organisms/combobox/trigger/InputBox.tsx",
13097
+ "../../core/components/organisms/combobox/trigger/MultiselectTrigger.tsx",
13098
+ "../../core/components/organisms/combobox/trigger/index.tsx",
13099
+ "../../core/components/organisms/combobox/trigger/utils.tsx",
13100
+ "../../core/components/organisms/combobox/utils.tsx",
12300
13101
  "../../core/components/organisms/datePicker/DatePicker.tsx",
12301
13102
  "../../core/components/organisms/datePicker/Trigger.tsx",
12302
13103
  "../../core/components/organisms/datePicker/index.tsx",
@@ -12338,12 +13139,35 @@
12338
13139
  "../../core/components/organisms/listbox/reorderList/types.ts",
12339
13140
  "../../core/components/organisms/listbox/reorderList/utils.ts",
12340
13141
  "../../core/components/organisms/listbox/utils.ts",
13142
+ "../../core/components/organisms/menu/Menu.tsx",
13143
+ "../../core/components/organisms/menu/MenuContext.tsx",
13144
+ "../../core/components/organisms/menu/MenuGroup.tsx",
13145
+ "../../core/components/organisms/menu/MenuItem.tsx",
13146
+ "../../core/components/organisms/menu/MenuList.tsx",
13147
+ "../../core/components/organisms/menu/SubMenu.tsx",
13148
+ "../../core/components/organisms/menu/SubMenuContext.tsx",
13149
+ "../../core/components/organisms/menu/index.tsx",
13150
+ "../../core/components/organisms/menu/trigger/MenuTrigger.tsx",
13151
+ "../../core/components/organisms/menu/trigger/utils.tsx",
13152
+ "../../core/components/organisms/menu/utils.tsx",
12341
13153
  "../../core/components/organisms/navigation/Navigation.tsx",
12342
13154
  "../../core/components/organisms/navigation/VerticalNavigation.tsx",
12343
13155
  "../../core/components/organisms/navigation/index.tsx",
12344
13156
  "../../core/components/organisms/pageHeader/PageHeader.tsx",
12345
13157
  "../../core/components/organisms/pageHeader/index.tsx",
12346
13158
  "../../core/components/organisms/pageHeader/utils.tsx",
13159
+ "../../core/components/organisms/select/SearchInput.tsx",
13160
+ "../../core/components/organisms/select/Select.tsx",
13161
+ "../../core/components/organisms/select/SelectContext.tsx",
13162
+ "../../core/components/organisms/select/SelectEmptyTemplate.tsx",
13163
+ "../../core/components/organisms/select/SelectFooter.tsx",
13164
+ "../../core/components/organisms/select/SelectList.tsx",
13165
+ "../../core/components/organisms/select/SelectOption.tsx",
13166
+ "../../core/components/organisms/select/SelectTrigger.tsx",
13167
+ "../../core/components/organisms/select/__test__/Select.test.tsx",
13168
+ "../../core/components/organisms/select/__test__/utils.test.tsx",
13169
+ "../../core/components/organisms/select/index.tsx",
13170
+ "../../core/components/organisms/select/utils.tsx",
12347
13171
  "../../core/components/organisms/table/DraggableDropdown.tsx",
12348
13172
  "../../core/components/organisms/table/Header.tsx",
12349
13173
  "../../core/components/organisms/table/Table.tsx",