@unofficialbox/box-open-elements 0.1.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 (351) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +125 -0
  3. package/dist/components/actions/button-group.d.ts +22 -0
  4. package/dist/components/actions/button-group.js +255 -0
  5. package/dist/components/actions/button.d.ts +16 -0
  6. package/dist/components/actions/button.js +190 -0
  7. package/dist/components/actions/icon-button.d.ts +20 -0
  8. package/dist/components/actions/icon-button.js +187 -0
  9. package/dist/components/actions/link-button.d.ts +14 -0
  10. package/dist/components/actions/link-button.js +137 -0
  11. package/dist/components/actions/menu-item.d.ts +17 -0
  12. package/dist/components/actions/menu-item.js +137 -0
  13. package/dist/components/actions/menu.d.ts +22 -0
  14. package/dist/components/actions/menu.js +178 -0
  15. package/dist/components/actions/segmented-control.d.ts +27 -0
  16. package/dist/components/actions/segmented-control.js +273 -0
  17. package/dist/components/collections/card.d.ts +13 -0
  18. package/dist/components/collections/card.js +110 -0
  19. package/dist/components/collections/carousel.d.ts +40 -0
  20. package/dist/components/collections/carousel.js +406 -0
  21. package/dist/components/collections/datalist-item.d.ts +32 -0
  22. package/dist/components/collections/datalist-item.js +196 -0
  23. package/dist/components/collections/draggable-list.d.ts +33 -0
  24. package/dist/components/collections/draggable-list.js +306 -0
  25. package/dist/components/collections/grid-view.d.ts +38 -0
  26. package/dist/components/collections/grid-view.js +321 -0
  27. package/dist/components/collections/pagination.d.ts +19 -0
  28. package/dist/components/collections/pagination.js +147 -0
  29. package/dist/components/collections/tree-grid.d.ts +47 -0
  30. package/dist/components/collections/tree-grid.js +593 -0
  31. package/dist/components/collections/tree.d.ts +37 -0
  32. package/dist/components/collections/tree.js +526 -0
  33. package/dist/components/feedback/alert.d.ts +27 -0
  34. package/dist/components/feedback/alert.js +263 -0
  35. package/dist/components/feedback/badge.d.ts +12 -0
  36. package/dist/components/feedback/badge.js +99 -0
  37. package/dist/components/feedback/chip.d.ts +33 -0
  38. package/dist/components/feedback/chip.js +261 -0
  39. package/dist/components/feedback/empty-state.d.ts +19 -0
  40. package/dist/components/feedback/empty-state.js +137 -0
  41. package/dist/components/feedback/error-mask.d.ts +25 -0
  42. package/dist/components/feedback/error-mask.js +199 -0
  43. package/dist/components/feedback/help-text.d.ts +22 -0
  44. package/dist/components/feedback/help-text.js +176 -0
  45. package/dist/components/feedback/nudge.d.ts +32 -0
  46. package/dist/components/feedback/nudge.js +299 -0
  47. package/dist/components/feedback/progress-bar.d.ts +18 -0
  48. package/dist/components/feedback/progress-bar.js +128 -0
  49. package/dist/components/feedback/progress-ring.d.ts +21 -0
  50. package/dist/components/feedback/progress-ring.js +155 -0
  51. package/dist/components/feedback/progress-steps.d.ts +25 -0
  52. package/dist/components/feedback/progress-steps.js +276 -0
  53. package/dist/components/feedback/skeleton.d.ts +14 -0
  54. package/dist/components/feedback/skeleton.js +95 -0
  55. package/dist/components/feedback/spinner.d.ts +10 -0
  56. package/dist/components/feedback/spinner.js +80 -0
  57. package/dist/components/feedback/toast.d.ts +26 -0
  58. package/dist/components/feedback/toast.js +205 -0
  59. package/dist/components/files/drop-zone.d.ts +19 -0
  60. package/dist/components/files/drop-zone.js +169 -0
  61. package/dist/components/forms/calendar.d.ts +47 -0
  62. package/dist/components/forms/calendar.js +499 -0
  63. package/dist/components/forms/category-selector.d.ts +35 -0
  64. package/dist/components/forms/category-selector.js +269 -0
  65. package/dist/components/forms/checkbox-group.d.ts +31 -0
  66. package/dist/components/forms/checkbox-group.js +267 -0
  67. package/dist/components/forms/checkbox.d.ts +28 -0
  68. package/dist/components/forms/checkbox.js +250 -0
  69. package/dist/components/forms/color-picker.d.ts +34 -0
  70. package/dist/components/forms/color-picker.js +314 -0
  71. package/dist/components/forms/combobox.d.ts +37 -0
  72. package/dist/components/forms/combobox.js +234 -0
  73. package/dist/components/forms/date-field.d.ts +27 -0
  74. package/dist/components/forms/date-field.js +187 -0
  75. package/dist/components/forms/dropdown.d.ts +38 -0
  76. package/dist/components/forms/dropdown.js +405 -0
  77. package/dist/components/forms/dual-listbox.d.ts +44 -0
  78. package/dist/components/forms/dual-listbox.js +484 -0
  79. package/dist/components/forms/fieldset.d.ts +32 -0
  80. package/dist/components/forms/fieldset.js +168 -0
  81. package/dist/components/forms/multi-select.d.ts +30 -0
  82. package/dist/components/forms/multi-select.js +264 -0
  83. package/dist/components/forms/number-input.d.ts +32 -0
  84. package/dist/components/forms/number-input.js +245 -0
  85. package/dist/components/forms/pill-cloud.d.ts +35 -0
  86. package/dist/components/forms/pill-cloud.js +230 -0
  87. package/dist/components/forms/pill-selector-dropdown.d.ts +55 -0
  88. package/dist/components/forms/pill-selector-dropdown.js +499 -0
  89. package/dist/components/forms/radio-group.d.ts +32 -0
  90. package/dist/components/forms/radio-group.js +285 -0
  91. package/dist/components/forms/range-slider.d.ts +36 -0
  92. package/dist/components/forms/range-slider.js +294 -0
  93. package/dist/components/forms/rating.d.ts +31 -0
  94. package/dist/components/forms/rating.js +302 -0
  95. package/dist/components/forms/rich-text-input.d.ts +32 -0
  96. package/dist/components/forms/rich-text-input.js +403 -0
  97. package/dist/components/forms/search-field.d.ts +27 -0
  98. package/dist/components/forms/search-field.js +293 -0
  99. package/dist/components/forms/select.d.ts +30 -0
  100. package/dist/components/forms/select.js +198 -0
  101. package/dist/components/forms/slider.d.ts +31 -0
  102. package/dist/components/forms/slider.js +221 -0
  103. package/dist/components/forms/spin-button.d.ts +33 -0
  104. package/dist/components/forms/spin-button.js +352 -0
  105. package/dist/components/forms/switch.d.ts +32 -0
  106. package/dist/components/forms/switch.js +302 -0
  107. package/dist/components/forms/tag-input.d.ts +46 -0
  108. package/dist/components/forms/tag-input.js +420 -0
  109. package/dist/components/forms/text-area.d.ts +26 -0
  110. package/dist/components/forms/text-area.js +188 -0
  111. package/dist/components/forms/text-field.d.ts +24 -0
  112. package/dist/components/forms/text-field.js +151 -0
  113. package/dist/components/forms/time-field.d.ts +29 -0
  114. package/dist/components/forms/time-field.js +203 -0
  115. package/dist/components/identity/avatar.d.ts +21 -0
  116. package/dist/components/identity/avatar.js +191 -0
  117. package/dist/components/identity/contact-datalist-item.d.ts +31 -0
  118. package/dist/components/identity/contact-datalist-item.js +235 -0
  119. package/dist/components/identity/persona.d.ts +28 -0
  120. package/dist/components/identity/persona.js +272 -0
  121. package/dist/components/layout/app-shell.d.ts +26 -0
  122. package/dist/components/layout/app-shell.js +258 -0
  123. package/dist/components/layout/divider.d.ts +12 -0
  124. package/dist/components/layout/divider.js +119 -0
  125. package/dist/components/layout/nav-sidebar.d.ts +23 -0
  126. package/dist/components/layout/nav-sidebar.js +167 -0
  127. package/dist/components/layout/section.d.ts +20 -0
  128. package/dist/components/layout/section.js +143 -0
  129. package/dist/components/layout/sidebar-toggle-button.d.ts +26 -0
  130. package/dist/components/layout/sidebar-toggle-button.js +137 -0
  131. package/dist/components/layout/split-view.d.ts +19 -0
  132. package/dist/components/layout/split-view.js +157 -0
  133. package/dist/components/navigation/accordion.d.ts +25 -0
  134. package/dist/components/navigation/accordion.js +253 -0
  135. package/dist/components/navigation/tabs.d.ts +27 -0
  136. package/dist/components/navigation/tabs.js +289 -0
  137. package/dist/components/overlays/dialog.d.ts +26 -0
  138. package/dist/components/overlays/dialog.js +267 -0
  139. package/dist/components/overlays/drawer.d.ts +32 -0
  140. package/dist/components/overlays/drawer.js +323 -0
  141. package/dist/components/overlays/popover.d.ts +35 -0
  142. package/dist/components/overlays/popover.js +317 -0
  143. package/dist/components/overlays/tooltip.d.ts +26 -0
  144. package/dist/components/overlays/tooltip.js +204 -0
  145. package/dist/components/visuals/illustration.d.ts +26 -0
  146. package/dist/components/visuals/illustration.js +319 -0
  147. package/dist/core/controller.d.ts +11 -0
  148. package/dist/core/controller.js +23 -0
  149. package/dist/core/element.d.ts +22 -0
  150. package/dist/core/element.js +28 -0
  151. package/dist/core/event-emitter.d.ts +9 -0
  152. package/dist/core/event-emitter.js +33 -0
  153. package/dist/core/form-associated.d.ts +63 -0
  154. package/dist/core/form-associated.js +218 -0
  155. package/dist/core/index.d.ts +6 -0
  156. package/dist/core/index.js +4 -0
  157. package/dist/core/json-schema.d.ts +1 -0
  158. package/dist/core/json-schema.js +1 -0
  159. package/dist/foundations/a11y/focus.d.ts +17 -0
  160. package/dist/foundations/a11y/focus.js +94 -0
  161. package/dist/foundations/a11y/heading.d.ts +26 -0
  162. package/dist/foundations/a11y/heading.js +40 -0
  163. package/dist/foundations/a11y/index.d.ts +5 -0
  164. package/dist/foundations/a11y/index.js +3 -0
  165. package/dist/foundations/a11y/keyboard.d.ts +28 -0
  166. package/dist/foundations/a11y/keyboard.js +77 -0
  167. package/dist/foundations/geometry/index.d.ts +1 -0
  168. package/dist/foundations/geometry/index.js +1 -0
  169. package/dist/foundations/geometry/tokens.d.ts +123 -0
  170. package/dist/foundations/geometry/tokens.js +154 -0
  171. package/dist/foundations/icons/box-iconography.d.ts +479 -0
  172. package/dist/foundations/icons/box-iconography.generated.d.ts +2370 -0
  173. package/dist/foundations/icons/box-iconography.generated.js +4010 -0
  174. package/dist/foundations/icons/box-iconography.js +39 -0
  175. package/dist/foundations/icons/index.d.ts +1 -0
  176. package/dist/foundations/icons/index.js +1 -0
  177. package/dist/foundations/motion/index.d.ts +2 -0
  178. package/dist/foundations/motion/index.js +1 -0
  179. package/dist/foundations/motion/tokens.d.ts +39 -0
  180. package/dist/foundations/motion/tokens.js +43 -0
  181. package/dist/foundations/tokens/box-dark.d.ts +11 -0
  182. package/dist/foundations/tokens/box-dark.js +46 -0
  183. package/dist/foundations/tokens/box-defaults.d.ts +5 -0
  184. package/dist/foundations/tokens/box-defaults.js +52 -0
  185. package/dist/foundations/tokens/index.d.ts +5 -0
  186. package/dist/foundations/tokens/index.js +4 -0
  187. package/dist/foundations/tokens/interaction.d.ts +28 -0
  188. package/dist/foundations/tokens/interaction.js +72 -0
  189. package/dist/foundations/tokens/registry.d.ts +14 -0
  190. package/dist/foundations/tokens/registry.js +92 -0
  191. package/dist/foundations/tokens/types.d.ts +16 -0
  192. package/dist/foundations/tokens/types.js +1 -0
  193. package/dist/foundations/typography/index.d.ts +2 -0
  194. package/dist/foundations/typography/index.js +1 -0
  195. package/dist/foundations/typography/tokens.d.ts +76 -0
  196. package/dist/foundations/typography/tokens.js +27 -0
  197. package/dist/index.d.ts +87 -0
  198. package/dist/index.js +98 -0
  199. package/dist/patterns/content-explorer/actions/controller.d.ts +12 -0
  200. package/dist/patterns/content-explorer/actions/controller.js +36 -0
  201. package/dist/patterns/content-explorer/actions/index.d.ts +2 -0
  202. package/dist/patterns/content-explorer/actions/index.js +1 -0
  203. package/dist/patterns/content-explorer/actions/types.d.ts +13 -0
  204. package/dist/patterns/content-explorer/actions/types.js +1 -0
  205. package/dist/patterns/content-explorer/adapters/action-menu.d.ts +24 -0
  206. package/dist/patterns/content-explorer/adapters/action-menu.js +312 -0
  207. package/dist/patterns/content-explorer/adapters/breadcrumbs.d.ts +15 -0
  208. package/dist/patterns/content-explorer/adapters/breadcrumbs.js +161 -0
  209. package/dist/patterns/content-explorer/adapters/item-summary.d.ts +11 -0
  210. package/dist/patterns/content-explorer/adapters/item-summary.js +72 -0
  211. package/dist/patterns/content-explorer/adapters/items.d.ts +4 -0
  212. package/dist/patterns/content-explorer/adapters/items.js +12 -0
  213. package/dist/patterns/content-explorer/adapters/list.d.ts +28 -0
  214. package/dist/patterns/content-explorer/adapters/list.js +527 -0
  215. package/dist/patterns/content-explorer/adapters/table.d.ts +23 -0
  216. package/dist/patterns/content-explorer/adapters/table.js +467 -0
  217. package/dist/patterns/content-explorer/adapters/toolbar.d.ts +19 -0
  218. package/dist/patterns/content-explorer/adapters/toolbar.js +234 -0
  219. package/dist/patterns/content-explorer/box-transport.d.ts +44 -0
  220. package/dist/patterns/content-explorer/box-transport.js +229 -0
  221. package/dist/patterns/content-explorer/collection/controller.d.ts +17 -0
  222. package/dist/patterns/content-explorer/collection/controller.js +67 -0
  223. package/dist/patterns/content-explorer/collection/index.d.ts +2 -0
  224. package/dist/patterns/content-explorer/collection/index.js +1 -0
  225. package/dist/patterns/content-explorer/collection/types.d.ts +20 -0
  226. package/dist/patterns/content-explorer/collection/types.js +1 -0
  227. package/dist/patterns/content-explorer/content-explorer.d.ts +85 -0
  228. package/dist/patterns/content-explorer/content-explorer.js +745 -0
  229. package/dist/patterns/content-explorer/contracts.d.ts +32 -0
  230. package/dist/patterns/content-explorer/contracts.js +114 -0
  231. package/dist/patterns/content-explorer/controller.d.ts +34 -0
  232. package/dist/patterns/content-explorer/controller.js +399 -0
  233. package/dist/patterns/content-explorer/host-bindings.d.ts +50 -0
  234. package/dist/patterns/content-explorer/host-bindings.js +76 -0
  235. package/dist/patterns/content-explorer/index.d.ts +18 -0
  236. package/dist/patterns/content-explorer/index.js +24 -0
  237. package/dist/patterns/content-explorer/navigation/controller.d.ts +10 -0
  238. package/dist/patterns/content-explorer/navigation/controller.js +48 -0
  239. package/dist/patterns/content-explorer/navigation/index.d.ts +2 -0
  240. package/dist/patterns/content-explorer/navigation/index.js +1 -0
  241. package/dist/patterns/content-explorer/navigation/types.d.ts +20 -0
  242. package/dist/patterns/content-explorer/navigation/types.js +1 -0
  243. package/dist/patterns/content-explorer/schemas.d.ts +6 -0
  244. package/dist/patterns/content-explorer/schemas.js +120 -0
  245. package/dist/patterns/content-explorer/selection/controller.d.ts +12 -0
  246. package/dist/patterns/content-explorer/selection/controller.js +54 -0
  247. package/dist/patterns/content-explorer/selection/index.d.ts +2 -0
  248. package/dist/patterns/content-explorer/selection/index.js +1 -0
  249. package/dist/patterns/content-explorer/selection/types.d.ts +14 -0
  250. package/dist/patterns/content-explorer/selection/types.js +1 -0
  251. package/dist/patterns/content-explorer/types.d.ts +209 -0
  252. package/dist/patterns/content-explorer/types.js +10 -0
  253. package/dist/patterns/file-request/file-request-builder.d.ts +36 -0
  254. package/dist/patterns/file-request/file-request-builder.js +344 -0
  255. package/dist/patterns/file-request/index.d.ts +1 -0
  256. package/dist/patterns/file-request/index.js +1 -0
  257. package/dist/patterns/governance/governance-panel.d.ts +40 -0
  258. package/dist/patterns/governance/governance-panel.js +351 -0
  259. package/dist/patterns/governance/index.d.ts +1 -0
  260. package/dist/patterns/governance/index.js +1 -0
  261. package/dist/patterns/insights/bar-chart.d.ts +43 -0
  262. package/dist/patterns/insights/bar-chart.js +462 -0
  263. package/dist/patterns/insights/chart-panel.d.ts +43 -0
  264. package/dist/patterns/insights/chart-panel.js +436 -0
  265. package/dist/patterns/insights/donut-chart.d.ts +43 -0
  266. package/dist/patterns/insights/donut-chart.js +535 -0
  267. package/dist/patterns/insights/index.d.ts +5 -0
  268. package/dist/patterns/insights/index.js +5 -0
  269. package/dist/patterns/insights/line-chart.d.ts +46 -0
  270. package/dist/patterns/insights/line-chart.js +511 -0
  271. package/dist/patterns/insights/metric-card.d.ts +36 -0
  272. package/dist/patterns/insights/metric-card.js +278 -0
  273. package/dist/patterns/item/bulk-action-bar.d.ts +35 -0
  274. package/dist/patterns/item/bulk-action-bar.js +325 -0
  275. package/dist/patterns/item/index.d.ts +4 -0
  276. package/dist/patterns/item/index.js +4 -0
  277. package/dist/patterns/item/item-details-panel.d.ts +61 -0
  278. package/dist/patterns/item/item-details-panel.js +429 -0
  279. package/dist/patterns/item/item-form.d.ts +54 -0
  280. package/dist/patterns/item/item-form.js +485 -0
  281. package/dist/patterns/item/preview-header.d.ts +46 -0
  282. package/dist/patterns/item/preview-header.js +323 -0
  283. package/dist/patterns/metadata/contracts.d.ts +75 -0
  284. package/dist/patterns/metadata/contracts.js +91 -0
  285. package/dist/patterns/metadata/index.d.ts +4 -0
  286. package/dist/patterns/metadata/index.js +4 -0
  287. package/dist/patterns/metadata/metadata-filter-builder.d.ts +43 -0
  288. package/dist/patterns/metadata/metadata-filter-builder.js +362 -0
  289. package/dist/patterns/metadata/metadata-inspector.d.ts +31 -0
  290. package/dist/patterns/metadata/metadata-inspector.js +245 -0
  291. package/dist/patterns/metadata/schemas.d.ts +5 -0
  292. package/dist/patterns/metadata/schemas.js +66 -0
  293. package/dist/patterns/preview/annotation-inspector.d.ts +44 -0
  294. package/dist/patterns/preview/annotation-inspector.js +380 -0
  295. package/dist/patterns/preview/annotation-thread.d.ts +37 -0
  296. package/dist/patterns/preview/annotation-thread.js +338 -0
  297. package/dist/patterns/preview/annotation-toolbar.d.ts +42 -0
  298. package/dist/patterns/preview/annotation-toolbar.js +393 -0
  299. package/dist/patterns/preview/content-preview-adapter.d.ts +13 -0
  300. package/dist/patterns/preview/content-preview-adapter.js +30 -0
  301. package/dist/patterns/preview/index.d.ts +6 -0
  302. package/dist/patterns/preview/index.js +6 -0
  303. package/dist/patterns/preview/preview-element.d.ts +41 -0
  304. package/dist/patterns/preview/preview-element.js +429 -0
  305. package/dist/patterns/preview/provider-adapter.d.ts +36 -0
  306. package/dist/patterns/preview/provider-adapter.js +29 -0
  307. package/dist/patterns/search/filter-bar.d.ts +50 -0
  308. package/dist/patterns/search/filter-bar.js +379 -0
  309. package/dist/patterns/search/index.d.ts +3 -0
  310. package/dist/patterns/search/index.js +3 -0
  311. package/dist/patterns/search/saved-view-picker.d.ts +25 -0
  312. package/dist/patterns/search/saved-view-picker.js +239 -0
  313. package/dist/patterns/search/search-results-header.d.ts +34 -0
  314. package/dist/patterns/search/search-results-header.js +288 -0
  315. package/dist/patterns/share/access-stats.d.ts +19 -0
  316. package/dist/patterns/share/access-stats.js +204 -0
  317. package/dist/patterns/share/collaborator-avatars.d.ts +22 -0
  318. package/dist/patterns/share/collaborator-avatars.js +214 -0
  319. package/dist/patterns/share/contracts.d.ts +65 -0
  320. package/dist/patterns/share/contracts.js +75 -0
  321. package/dist/patterns/share/index.d.ts +14 -0
  322. package/dist/patterns/share/index.js +14 -0
  323. package/dist/patterns/share/invite-collaborators-contracts.d.ts +38 -0
  324. package/dist/patterns/share/invite-collaborators-contracts.js +1 -0
  325. package/dist/patterns/share/invite-collaborators-controller.d.ts +40 -0
  326. package/dist/patterns/share/invite-collaborators-controller.js +86 -0
  327. package/dist/patterns/share/invite-collaborators-modal.d.ts +46 -0
  328. package/dist/patterns/share/invite-collaborators-modal.js +465 -0
  329. package/dist/patterns/share/permission-matrix.d.ts +37 -0
  330. package/dist/patterns/share/permission-matrix.js +360 -0
  331. package/dist/patterns/share/presence-contracts.d.ts +26 -0
  332. package/dist/patterns/share/presence-contracts.js +1 -0
  333. package/dist/patterns/share/presence-controller.d.ts +31 -0
  334. package/dist/patterns/share/presence-controller.js +47 -0
  335. package/dist/patterns/share/presence.d.ts +32 -0
  336. package/dist/patterns/share/presence.js +255 -0
  337. package/dist/patterns/share/schemas.d.ts +4 -0
  338. package/dist/patterns/share/schemas.js +41 -0
  339. package/dist/patterns/share/share-panel.d.ts +75 -0
  340. package/dist/patterns/share/share-panel.js +565 -0
  341. package/dist/patterns/share/unified-share-controller.d.ts +52 -0
  342. package/dist/patterns/share/unified-share-controller.js +97 -0
  343. package/dist/patterns/share/unified-share-modal.d.ts +50 -0
  344. package/dist/patterns/share/unified-share-modal.js +646 -0
  345. package/dist/patterns/task/index.d.ts +2 -0
  346. package/dist/patterns/task/index.js +2 -0
  347. package/dist/patterns/task/review-queue-item.d.ts +45 -0
  348. package/dist/patterns/task/review-queue-item.js +403 -0
  349. package/dist/patterns/task/task-assignment-panel.d.ts +50 -0
  350. package/dist/patterns/task/task-assignment-panel.js +450 -0
  351. package/package.json +151 -0
@@ -0,0 +1,465 @@
1
+ import { InviteCollaboratorsController } from "./invite-collaborators-controller.js";
2
+ import { BaseElement } from "../../core/index.js";
3
+ import { FocusRestore, trapTabKey } from "../../foundations/a11y/index.js";
4
+ import { boePanel, boeRadius } from "../../foundations/geometry/index.js";
5
+ import { boeBrandInteractiveStyles, boeFocusVisibleStyles, boeNeutralInteractiveStyles, } from "../../foundations/tokens/index.js";
6
+ const DEFAULT_TAG_NAME = "box-invite-collaborators-modal";
7
+ const elementStyles = `
8
+ :host { display: contents; color: inherit; font: inherit; }
9
+
10
+ [part="backdrop"] {
11
+ position: fixed;
12
+ inset: 0;
13
+ display: grid;
14
+ place-items: center;
15
+ padding: 0.75rem;
16
+ background: rgba(15, 23, 42, 0.45);
17
+ z-index: 1000;
18
+ }
19
+
20
+ [part="dialog"] {
21
+ inline-size: min(30rem, 100%);
22
+ max-block-size: calc(100vh - 2rem);
23
+ overflow: auto;
24
+ display: grid;
25
+ gap: ${boePanel.gap};
26
+ padding: 0.75rem;
27
+ border-radius: ${boeRadius.field};
28
+ background: var(--boe-token-surface-surface, #ffffff);
29
+ color: var(--boe-token-text-text, #222222);
30
+ box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
31
+ }
32
+
33
+ [part="title"] { margin: 0; font-size: 1.1rem; font-weight: 700; }
34
+
35
+ [part="field"] { display: grid; gap: 0.35rem; }
36
+
37
+ [part="label"] {
38
+ font-size: 0.78rem;
39
+ font-weight: 700;
40
+ letter-spacing: 0.06em;
41
+ text-transform: uppercase;
42
+ color: var(--boe-token-text-text-secondary, #6f6f6f);
43
+ }
44
+
45
+ [part="recipients"] {
46
+ display: flex;
47
+ flex-wrap: wrap;
48
+ gap: 0.35rem;
49
+ padding: 0.4rem;
50
+ border: 1px solid color-mix(in srgb, var(--boe-token-stroke-stroke, #e8e8e8) 82%, transparent);
51
+ border-radius: ${boeRadius.control};
52
+ }
53
+
54
+ [part="pill"] {
55
+ display: inline-flex;
56
+ align-items: center;
57
+ gap: 0.3rem;
58
+ padding: 0.2rem 0.3rem 0.2rem 0.55rem;
59
+ border-radius: 999px;
60
+ background: color-mix(in srgb, var(--boe-token-surface-surface-secondary, #fbfbfb) 70%, var(--boe-token-surface-surface, #ffffff) 30%);
61
+ border: 1px solid color-mix(in srgb, var(--boe-token-stroke-stroke, #e8e8e8) 82%, transparent);
62
+ font-size: 0.8rem;
63
+ font-weight: 600;
64
+ }
65
+
66
+ [part="pill-remove"] {
67
+ appearance: none;
68
+ inline-size: 1.05rem;
69
+ block-size: 1.05rem;
70
+ display: inline-grid;
71
+ place-items: center;
72
+ padding: 0;
73
+ border: 0;
74
+ border-radius: 999px;
75
+ background: transparent;
76
+ color: var(--boe-token-text-text-secondary, #6f6f6f);
77
+ cursor: pointer;
78
+ }
79
+
80
+ [part="pill-remove"] svg { inline-size: 0.6rem; block-size: 0.6rem; }
81
+
82
+ [part="recipient-input"] {
83
+ flex: 1 1 8rem;
84
+ min-inline-size: 8rem;
85
+ border: 0;
86
+ outline: none;
87
+ background: transparent;
88
+ font: inherit;
89
+ color: inherit;
90
+ }
91
+
92
+ [part="role"],
93
+ [part="message"] {
94
+ inline-size: 100%;
95
+ box-sizing: border-box;
96
+ padding: 0.55rem 0.65rem;
97
+ border: 1px solid color-mix(in srgb, var(--boe-token-stroke-stroke, #e8e8e8) 82%, transparent);
98
+ border-radius: ${boeRadius.control};
99
+ background: var(--boe-token-surface-surface, #ffffff);
100
+ font: inherit;
101
+ color: inherit;
102
+ }
103
+
104
+ [part="message"] { min-block-size: 4rem; resize: vertical; }
105
+
106
+ [part="error"] {
107
+ margin: 0;
108
+ color: var(--boe-token-text-text-danger, #b3261e);
109
+ font-size: 0.85rem;
110
+ }
111
+
112
+ [part="error"][hidden] { display: none; }
113
+
114
+ [part="actions"] {
115
+ display: flex;
116
+ justify-content: flex-end;
117
+ gap: 0.5rem;
118
+ margin-block-start: 0.25rem;
119
+ }
120
+
121
+ [part="cancel"],
122
+ [part="submit"] {
123
+ appearance: none;
124
+ border-radius: 999px;
125
+ font: inherit;
126
+ font-weight: 600;
127
+ padding: 0.4rem 0.7rem;
128
+ cursor: pointer;
129
+ }
130
+
131
+ [part="cancel"] {
132
+ border: 1px solid color-mix(in srgb, var(--boe-token-stroke-stroke, #e8e8e8) 82%, transparent);
133
+ background: var(--boe-token-surface-surface, #ffffff);
134
+ color: inherit;
135
+ }
136
+
137
+ [part="submit"] {
138
+ border: 1px solid transparent;
139
+ background: var(--boe-token-surface-surface-brand, #0061d5);
140
+ color: var(--boe-token-text-text-on-brand, #ffffff);
141
+ }
142
+
143
+ ${boeNeutralInteractiveStyles('[part="cancel"]')}
144
+ ${boeNeutralInteractiveStyles('[part="pill-remove"]')}
145
+ ${boeNeutralInteractiveStyles('[part="role"]')}
146
+ ${boeNeutralInteractiveStyles('[part="message"]')}
147
+ ${boeFocusVisibleStyles('[part="recipient-input"]')}
148
+ ${boeBrandInteractiveStyles('[part="submit"]')}
149
+ `;
150
+ const escapeHtml = (value) => value
151
+ .replaceAll("&", "&")
152
+ .replaceAll("<", "&lt;")
153
+ .replaceAll(">", "&gt;")
154
+ .replaceAll('"', "&quot;")
155
+ .replaceAll("'", "&#39;");
156
+ const DEFAULT_ROLES = [
157
+ { value: "co-owner", label: "Co-owner" },
158
+ { value: "editor", label: "Editor" },
159
+ { value: "viewer", label: "Viewer" },
160
+ ];
161
+ /**
162
+ * The invite-collaborators workflow surface: a modal that collects recipient
163
+ * emails (as removable pills), a role, and an optional message, then submits via
164
+ * an `InviteCollaboratorsController` it owns (created from the injected
165
+ * `transport` + `item-id`). Emits `submitted` on success and `cancel` on
166
+ * dismissal, closing itself in both cases. Structure is built once per open so
167
+ * the live inputs keep focus while only the pills/status update.
168
+ */
169
+ export class BoxInviteCollaboratorsModalElement extends BaseElement {
170
+ static get observedAttributes() {
171
+ return ["heading", "item-id", "open", "submit-label"];
172
+ }
173
+ controller = null;
174
+ controllerUnsubscribe = null;
175
+ transportValue = null;
176
+ rolesValue = DEFAULT_ROLES;
177
+ rolesSignature = "";
178
+ focusRestore = new FocusRestore();
179
+ wasOpen = false;
180
+ get open() {
181
+ return this.hasAttribute("open");
182
+ }
183
+ set open(value) {
184
+ this.toggleAttribute("open", value);
185
+ }
186
+ get itemId() {
187
+ return this.getAttribute("item-id") ?? "";
188
+ }
189
+ set itemId(value) {
190
+ this.setAttribute("item-id", value);
191
+ }
192
+ get heading() {
193
+ return this.getAttribute("heading") ?? "Invite collaborators";
194
+ }
195
+ set heading(value) {
196
+ this.setAttribute("heading", value);
197
+ }
198
+ get submitLabel() {
199
+ return this.getAttribute("submit-label") ?? "Send invites";
200
+ }
201
+ set submitLabel(value) {
202
+ this.setAttribute("submit-label", value);
203
+ }
204
+ get transport() {
205
+ return this.transportValue;
206
+ }
207
+ set transport(value) {
208
+ this.transportValue = value;
209
+ this.ensureController(true);
210
+ this.refresh();
211
+ }
212
+ get roles() {
213
+ return this.rolesValue;
214
+ }
215
+ set roles(value) {
216
+ this.rolesValue = value.length ? value : DEFAULT_ROLES;
217
+ this.refresh();
218
+ }
219
+ connectedCallback() {
220
+ super.connectedCallback();
221
+ this.ensureController(false);
222
+ this.refresh();
223
+ }
224
+ disconnectedCallback() {
225
+ this.teardownController();
226
+ }
227
+ attributeChangedCallback(name) {
228
+ if (name === "item-id") {
229
+ this.ensureController(true);
230
+ }
231
+ this.refresh();
232
+ }
233
+ ensureController(recreate) {
234
+ if (recreate) {
235
+ this.teardownController();
236
+ }
237
+ if (this.controller || !this.transportValue || !this.itemId) {
238
+ return;
239
+ }
240
+ this.controller = new InviteCollaboratorsController({
241
+ itemId: this.itemId,
242
+ transport: this.transportValue,
243
+ role: this.rolesValue[0]?.value,
244
+ });
245
+ this.controllerUnsubscribe = this.controller.subscribe("stateChanged", () => this.updateDynamic());
246
+ }
247
+ teardownController() {
248
+ this.controllerUnsubscribe?.();
249
+ this.controllerUnsubscribe = null;
250
+ this.controller?.destroy();
251
+ this.controller = null;
252
+ }
253
+ refresh() {
254
+ if (this.isRendered) {
255
+ this.update();
256
+ }
257
+ }
258
+ renderTemplate() {
259
+ if (!this.shadowRoot) {
260
+ return;
261
+ }
262
+ // Styles and open content are owned by update()/buildStructure so closed
263
+ // state can clear the dialog without dropping the BaseElement lifecycle.
264
+ this.shadowRoot.innerHTML = "";
265
+ }
266
+ update() {
267
+ if (!this.shadowRoot) {
268
+ return;
269
+ }
270
+ if (!this.open) {
271
+ const wasOpen = this.wasOpen;
272
+ this.shadowRoot.innerHTML = "";
273
+ this.rolesSignature = "";
274
+ this.wasOpen = false;
275
+ if (wasOpen) {
276
+ this.focusRestore.restore();
277
+ }
278
+ return;
279
+ }
280
+ const justOpened = !this.wasOpen;
281
+ this.wasOpen = true;
282
+ if (justOpened) {
283
+ this.focusRestore.capture();
284
+ }
285
+ const built = this.shadowRoot.querySelector('[part="dialog"]');
286
+ if (!built) {
287
+ this.buildStructure();
288
+ // Focus the recipients field so keyboard users land in the form.
289
+ this.shadowRoot.querySelector('[part="recipient-input"]')?.focus();
290
+ }
291
+ this.updateDynamic();
292
+ }
293
+ buildStructure() {
294
+ if (!this.shadowRoot) {
295
+ return;
296
+ }
297
+ const roleOptions = this.rolesValue
298
+ .map(role => `<option value="${escapeHtml(role.value)}">${escapeHtml(role.label)}</option>`)
299
+ .join("");
300
+ this.shadowRoot.innerHTML = `
301
+ <style>${elementStyles}</style>
302
+ <div part="backdrop">
303
+ <section part="dialog" role="dialog" aria-modal="true" aria-labelledby="invite-title">
304
+ <h2 part="title" id="invite-title">${escapeHtml(this.heading)}</h2>
305
+ <div part="field">
306
+ <span part="label">People</span>
307
+ <div part="recipients">
308
+ <span part="pills"></span>
309
+ <input part="recipient-input" type="email" placeholder="Add email and press Enter" aria-label="Add collaborator email" />
310
+ </div>
311
+ </div>
312
+ <div part="field">
313
+ <label part="label" for="invite-role">Role</label>
314
+ <select part="role" id="invite-role">${roleOptions}</select>
315
+ </div>
316
+ <div part="field">
317
+ <label part="label" for="invite-message">Message</label>
318
+ <textarea part="message" id="invite-message" placeholder="Add an optional note"></textarea>
319
+ </div>
320
+ <p part="error" role="alert" hidden></p>
321
+ <div part="actions">
322
+ <button type="button" part="cancel">Cancel</button>
323
+ <button type="button" part="submit">${escapeHtml(this.submitLabel)}</button>
324
+ </div>
325
+ </section>
326
+ </div>
327
+ `;
328
+ this.rolesSignature = JSON.stringify(this.rolesValue);
329
+ this.attachListeners();
330
+ }
331
+ attachListeners() {
332
+ if (!this.shadowRoot) {
333
+ return;
334
+ }
335
+ const input = this.shadowRoot.querySelector('[part="recipient-input"]');
336
+ input?.addEventListener("keydown", event => {
337
+ const keyboardEvent = event;
338
+ if (keyboardEvent.key === "Enter" || keyboardEvent.key === ",") {
339
+ keyboardEvent.preventDefault();
340
+ if (this.controller?.addRecipient(input.value)) {
341
+ input.value = "";
342
+ }
343
+ }
344
+ });
345
+ this.shadowRoot.querySelector('[part="role"]')?.addEventListener("change", event => {
346
+ this.controller?.setRole(event.currentTarget.value);
347
+ });
348
+ this.shadowRoot.querySelector('[part="message"]')?.addEventListener("input", event => {
349
+ this.controller?.setMessage(event.currentTarget.value);
350
+ });
351
+ this.shadowRoot.querySelector('[part="cancel"]')?.addEventListener("click", () => this.close("cancel"));
352
+ this.shadowRoot.querySelector('[part="backdrop"]')?.addEventListener("click", event => {
353
+ if (event.target === event.currentTarget) {
354
+ this.close("cancel");
355
+ }
356
+ });
357
+ this.shadowRoot.querySelector('[part="submit"]')?.addEventListener("click", () => {
358
+ void this.submit();
359
+ });
360
+ this.shadowRoot.querySelectorAll('[part="pill-remove"]').forEach(button => {
361
+ button.addEventListener("click", () => {
362
+ this.controller?.removeRecipient(button.dataset.value ?? "");
363
+ });
364
+ });
365
+ this.shadowRoot.querySelector('[part="dialog"]')?.addEventListener("keydown", event => {
366
+ const keyboardEvent = event;
367
+ if (keyboardEvent.key === "Escape") {
368
+ keyboardEvent.stopPropagation();
369
+ this.close("cancel");
370
+ return;
371
+ }
372
+ if (keyboardEvent.key === "Tab") {
373
+ const dialog = this.shadowRoot?.querySelector('[part="dialog"]');
374
+ if (dialog) {
375
+ trapTabKey(keyboardEvent, dialog);
376
+ }
377
+ }
378
+ });
379
+ }
380
+ async submit() {
381
+ if (!this.controller) {
382
+ return;
383
+ }
384
+ const ok = await this.controller.submit();
385
+ if (ok) {
386
+ const result = this.controller.getState().result;
387
+ this.dispatchEvent(new CustomEvent("submitted", { bubbles: true, composed: true, detail: { result } }));
388
+ this.open = false;
389
+ }
390
+ }
391
+ close(reason) {
392
+ this.dispatchEvent(new CustomEvent(reason, { bubbles: true, composed: true }));
393
+ this.open = false;
394
+ }
395
+ updateDynamic() {
396
+ if (!this.shadowRoot || !this.open) {
397
+ return;
398
+ }
399
+ const state = this.controller?.getState();
400
+ const pills = this.shadowRoot.querySelector('[part="pills"]');
401
+ const error = this.shadowRoot.querySelector('[part="error"]');
402
+ const submit = this.shadowRoot.querySelector('[part="submit"]');
403
+ const role = this.shadowRoot.querySelector('[part="role"]');
404
+ if (!pills || !error || !submit) {
405
+ return;
406
+ }
407
+ const recipients = state?.recipients ?? [];
408
+ pills.innerHTML = recipients
409
+ .map(recipient => `
410
+ <span part="pill">
411
+ <span>${escapeHtml(recipient)}</span>
412
+ <button type="button" part="pill-remove" data-value="${escapeHtml(recipient)}" aria-label="Remove ${escapeHtml(recipient)}">
413
+ <svg viewBox="0 0 16 16" aria-hidden="true" focusable="false"><path d="M4 4l8 8M12 4l-8 8" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round"/></svg>
414
+ </button>
415
+ </span>
416
+ `)
417
+ .join("");
418
+ // Re-bind the freshly rendered remove buttons.
419
+ pills.querySelectorAll('[part="pill-remove"]').forEach(button => {
420
+ button.addEventListener("click", () => {
421
+ this.controller?.removeRecipient(button.dataset.value ?? "");
422
+ });
423
+ });
424
+ if (role) {
425
+ const nextRolesSignature = JSON.stringify(this.rolesValue);
426
+ if (nextRolesSignature !== this.rolesSignature) {
427
+ const previousValue = role.value;
428
+ role.innerHTML = this.rolesValue
429
+ .map(entry => `<option value="${escapeHtml(entry.value)}">${escapeHtml(entry.label)}</option>`)
430
+ .join("");
431
+ this.rolesSignature = nextRolesSignature;
432
+ const preferred = state?.role || previousValue;
433
+ if (preferred && this.rolesValue.some(entry => entry.value === preferred)) {
434
+ role.value = preferred;
435
+ }
436
+ else if (this.rolesValue[0]) {
437
+ role.value = this.rolesValue[0].value;
438
+ this.controller?.setRole(this.rolesValue[0].value);
439
+ }
440
+ }
441
+ else if (state) {
442
+ role.value = state.role;
443
+ }
444
+ }
445
+ const submitting = state?.status === "submitting";
446
+ submit.disabled = submitting || recipients.length === 0;
447
+ submit.textContent = submitting ? "Sending…" : this.submitLabel;
448
+ if (state?.error) {
449
+ error.textContent = state.error;
450
+ error.hidden = false;
451
+ }
452
+ else {
453
+ error.textContent = "";
454
+ error.hidden = true;
455
+ }
456
+ }
457
+ }
458
+ export const defineBoxInviteCollaboratorsModalElement = (tagName = DEFAULT_TAG_NAME) => {
459
+ const existingElement = customElements.get(tagName);
460
+ if (existingElement) {
461
+ return existingElement;
462
+ }
463
+ customElements.define(tagName, BoxInviteCollaboratorsModalElement);
464
+ return BoxInviteCollaboratorsModalElement;
465
+ };
@@ -0,0 +1,37 @@
1
+ import { BaseElement } from "../../core/index.js";
2
+ type PermissionMatrixOption = {
3
+ label: string;
4
+ value: string;
5
+ };
6
+ type PermissionMatrixSubject = {
7
+ description?: string;
8
+ id: string;
9
+ name: string;
10
+ type?: string;
11
+ };
12
+ type PermissionMatrixValue = Record<string, string>;
13
+ export declare class BoxPermissionMatrixElement extends BaseElement {
14
+ static get observedAttributes(): string[];
15
+ private labelEl;
16
+ private tbodyEl;
17
+ private structureSignature;
18
+ private syncingFromUi;
19
+ get label(): string;
20
+ set label(value: string);
21
+ get options(): PermissionMatrixOption[];
22
+ set options(value: PermissionMatrixOption[]);
23
+ get subjects(): PermissionMatrixSubject[];
24
+ set subjects(value: PermissionMatrixSubject[]);
25
+ get value(): PermissionMatrixValue;
26
+ set value(value: PermissionMatrixValue);
27
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
28
+ private parseJsonAttribute;
29
+ private updateSubjectRole;
30
+ private structureKey;
31
+ private renderRows;
32
+ protected renderTemplate(): void;
33
+ protected setupListeners(): void;
34
+ protected update(): void;
35
+ }
36
+ export declare const defineBoxPermissionMatrixElement: (tagName?: string) => typeof BoxPermissionMatrixElement;
37
+ export {};