@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.
- package/LICENSE +21 -0
- package/README.md +125 -0
- package/dist/components/actions/button-group.d.ts +22 -0
- package/dist/components/actions/button-group.js +255 -0
- package/dist/components/actions/button.d.ts +16 -0
- package/dist/components/actions/button.js +190 -0
- package/dist/components/actions/icon-button.d.ts +20 -0
- package/dist/components/actions/icon-button.js +187 -0
- package/dist/components/actions/link-button.d.ts +14 -0
- package/dist/components/actions/link-button.js +137 -0
- package/dist/components/actions/menu-item.d.ts +17 -0
- package/dist/components/actions/menu-item.js +137 -0
- package/dist/components/actions/menu.d.ts +22 -0
- package/dist/components/actions/menu.js +178 -0
- package/dist/components/actions/segmented-control.d.ts +27 -0
- package/dist/components/actions/segmented-control.js +273 -0
- package/dist/components/collections/card.d.ts +13 -0
- package/dist/components/collections/card.js +110 -0
- package/dist/components/collections/carousel.d.ts +40 -0
- package/dist/components/collections/carousel.js +406 -0
- package/dist/components/collections/datalist-item.d.ts +32 -0
- package/dist/components/collections/datalist-item.js +196 -0
- package/dist/components/collections/draggable-list.d.ts +33 -0
- package/dist/components/collections/draggable-list.js +306 -0
- package/dist/components/collections/grid-view.d.ts +38 -0
- package/dist/components/collections/grid-view.js +321 -0
- package/dist/components/collections/pagination.d.ts +19 -0
- package/dist/components/collections/pagination.js +147 -0
- package/dist/components/collections/tree-grid.d.ts +47 -0
- package/dist/components/collections/tree-grid.js +593 -0
- package/dist/components/collections/tree.d.ts +37 -0
- package/dist/components/collections/tree.js +526 -0
- package/dist/components/feedback/alert.d.ts +27 -0
- package/dist/components/feedback/alert.js +263 -0
- package/dist/components/feedback/badge.d.ts +12 -0
- package/dist/components/feedback/badge.js +99 -0
- package/dist/components/feedback/chip.d.ts +33 -0
- package/dist/components/feedback/chip.js +261 -0
- package/dist/components/feedback/empty-state.d.ts +19 -0
- package/dist/components/feedback/empty-state.js +137 -0
- package/dist/components/feedback/error-mask.d.ts +25 -0
- package/dist/components/feedback/error-mask.js +199 -0
- package/dist/components/feedback/help-text.d.ts +22 -0
- package/dist/components/feedback/help-text.js +176 -0
- package/dist/components/feedback/nudge.d.ts +32 -0
- package/dist/components/feedback/nudge.js +299 -0
- package/dist/components/feedback/progress-bar.d.ts +18 -0
- package/dist/components/feedback/progress-bar.js +128 -0
- package/dist/components/feedback/progress-ring.d.ts +21 -0
- package/dist/components/feedback/progress-ring.js +155 -0
- package/dist/components/feedback/progress-steps.d.ts +25 -0
- package/dist/components/feedback/progress-steps.js +276 -0
- package/dist/components/feedback/skeleton.d.ts +14 -0
- package/dist/components/feedback/skeleton.js +95 -0
- package/dist/components/feedback/spinner.d.ts +10 -0
- package/dist/components/feedback/spinner.js +80 -0
- package/dist/components/feedback/toast.d.ts +26 -0
- package/dist/components/feedback/toast.js +205 -0
- package/dist/components/files/drop-zone.d.ts +19 -0
- package/dist/components/files/drop-zone.js +169 -0
- package/dist/components/forms/calendar.d.ts +47 -0
- package/dist/components/forms/calendar.js +499 -0
- package/dist/components/forms/category-selector.d.ts +35 -0
- package/dist/components/forms/category-selector.js +269 -0
- package/dist/components/forms/checkbox-group.d.ts +31 -0
- package/dist/components/forms/checkbox-group.js +267 -0
- package/dist/components/forms/checkbox.d.ts +28 -0
- package/dist/components/forms/checkbox.js +250 -0
- package/dist/components/forms/color-picker.d.ts +34 -0
- package/dist/components/forms/color-picker.js +314 -0
- package/dist/components/forms/combobox.d.ts +37 -0
- package/dist/components/forms/combobox.js +234 -0
- package/dist/components/forms/date-field.d.ts +27 -0
- package/dist/components/forms/date-field.js +187 -0
- package/dist/components/forms/dropdown.d.ts +38 -0
- package/dist/components/forms/dropdown.js +405 -0
- package/dist/components/forms/dual-listbox.d.ts +44 -0
- package/dist/components/forms/dual-listbox.js +484 -0
- package/dist/components/forms/fieldset.d.ts +32 -0
- package/dist/components/forms/fieldset.js +168 -0
- package/dist/components/forms/multi-select.d.ts +30 -0
- package/dist/components/forms/multi-select.js +264 -0
- package/dist/components/forms/number-input.d.ts +32 -0
- package/dist/components/forms/number-input.js +245 -0
- package/dist/components/forms/pill-cloud.d.ts +35 -0
- package/dist/components/forms/pill-cloud.js +230 -0
- package/dist/components/forms/pill-selector-dropdown.d.ts +55 -0
- package/dist/components/forms/pill-selector-dropdown.js +499 -0
- package/dist/components/forms/radio-group.d.ts +32 -0
- package/dist/components/forms/radio-group.js +285 -0
- package/dist/components/forms/range-slider.d.ts +36 -0
- package/dist/components/forms/range-slider.js +294 -0
- package/dist/components/forms/rating.d.ts +31 -0
- package/dist/components/forms/rating.js +302 -0
- package/dist/components/forms/rich-text-input.d.ts +32 -0
- package/dist/components/forms/rich-text-input.js +403 -0
- package/dist/components/forms/search-field.d.ts +27 -0
- package/dist/components/forms/search-field.js +293 -0
- package/dist/components/forms/select.d.ts +30 -0
- package/dist/components/forms/select.js +198 -0
- package/dist/components/forms/slider.d.ts +31 -0
- package/dist/components/forms/slider.js +221 -0
- package/dist/components/forms/spin-button.d.ts +33 -0
- package/dist/components/forms/spin-button.js +352 -0
- package/dist/components/forms/switch.d.ts +32 -0
- package/dist/components/forms/switch.js +302 -0
- package/dist/components/forms/tag-input.d.ts +46 -0
- package/dist/components/forms/tag-input.js +420 -0
- package/dist/components/forms/text-area.d.ts +26 -0
- package/dist/components/forms/text-area.js +188 -0
- package/dist/components/forms/text-field.d.ts +24 -0
- package/dist/components/forms/text-field.js +151 -0
- package/dist/components/forms/time-field.d.ts +29 -0
- package/dist/components/forms/time-field.js +203 -0
- package/dist/components/identity/avatar.d.ts +21 -0
- package/dist/components/identity/avatar.js +191 -0
- package/dist/components/identity/contact-datalist-item.d.ts +31 -0
- package/dist/components/identity/contact-datalist-item.js +235 -0
- package/dist/components/identity/persona.d.ts +28 -0
- package/dist/components/identity/persona.js +272 -0
- package/dist/components/layout/app-shell.d.ts +26 -0
- package/dist/components/layout/app-shell.js +258 -0
- package/dist/components/layout/divider.d.ts +12 -0
- package/dist/components/layout/divider.js +119 -0
- package/dist/components/layout/nav-sidebar.d.ts +23 -0
- package/dist/components/layout/nav-sidebar.js +167 -0
- package/dist/components/layout/section.d.ts +20 -0
- package/dist/components/layout/section.js +143 -0
- package/dist/components/layout/sidebar-toggle-button.d.ts +26 -0
- package/dist/components/layout/sidebar-toggle-button.js +137 -0
- package/dist/components/layout/split-view.d.ts +19 -0
- package/dist/components/layout/split-view.js +157 -0
- package/dist/components/navigation/accordion.d.ts +25 -0
- package/dist/components/navigation/accordion.js +253 -0
- package/dist/components/navigation/tabs.d.ts +27 -0
- package/dist/components/navigation/tabs.js +289 -0
- package/dist/components/overlays/dialog.d.ts +26 -0
- package/dist/components/overlays/dialog.js +267 -0
- package/dist/components/overlays/drawer.d.ts +32 -0
- package/dist/components/overlays/drawer.js +323 -0
- package/dist/components/overlays/popover.d.ts +35 -0
- package/dist/components/overlays/popover.js +317 -0
- package/dist/components/overlays/tooltip.d.ts +26 -0
- package/dist/components/overlays/tooltip.js +204 -0
- package/dist/components/visuals/illustration.d.ts +26 -0
- package/dist/components/visuals/illustration.js +319 -0
- package/dist/core/controller.d.ts +11 -0
- package/dist/core/controller.js +23 -0
- package/dist/core/element.d.ts +22 -0
- package/dist/core/element.js +28 -0
- package/dist/core/event-emitter.d.ts +9 -0
- package/dist/core/event-emitter.js +33 -0
- package/dist/core/form-associated.d.ts +63 -0
- package/dist/core/form-associated.js +218 -0
- package/dist/core/index.d.ts +6 -0
- package/dist/core/index.js +4 -0
- package/dist/core/json-schema.d.ts +1 -0
- package/dist/core/json-schema.js +1 -0
- package/dist/foundations/a11y/focus.d.ts +17 -0
- package/dist/foundations/a11y/focus.js +94 -0
- package/dist/foundations/a11y/heading.d.ts +26 -0
- package/dist/foundations/a11y/heading.js +40 -0
- package/dist/foundations/a11y/index.d.ts +5 -0
- package/dist/foundations/a11y/index.js +3 -0
- package/dist/foundations/a11y/keyboard.d.ts +28 -0
- package/dist/foundations/a11y/keyboard.js +77 -0
- package/dist/foundations/geometry/index.d.ts +1 -0
- package/dist/foundations/geometry/index.js +1 -0
- package/dist/foundations/geometry/tokens.d.ts +123 -0
- package/dist/foundations/geometry/tokens.js +154 -0
- package/dist/foundations/icons/box-iconography.d.ts +479 -0
- package/dist/foundations/icons/box-iconography.generated.d.ts +2370 -0
- package/dist/foundations/icons/box-iconography.generated.js +4010 -0
- package/dist/foundations/icons/box-iconography.js +39 -0
- package/dist/foundations/icons/index.d.ts +1 -0
- package/dist/foundations/icons/index.js +1 -0
- package/dist/foundations/motion/index.d.ts +2 -0
- package/dist/foundations/motion/index.js +1 -0
- package/dist/foundations/motion/tokens.d.ts +39 -0
- package/dist/foundations/motion/tokens.js +43 -0
- package/dist/foundations/tokens/box-dark.d.ts +11 -0
- package/dist/foundations/tokens/box-dark.js +46 -0
- package/dist/foundations/tokens/box-defaults.d.ts +5 -0
- package/dist/foundations/tokens/box-defaults.js +52 -0
- package/dist/foundations/tokens/index.d.ts +5 -0
- package/dist/foundations/tokens/index.js +4 -0
- package/dist/foundations/tokens/interaction.d.ts +28 -0
- package/dist/foundations/tokens/interaction.js +72 -0
- package/dist/foundations/tokens/registry.d.ts +14 -0
- package/dist/foundations/tokens/registry.js +92 -0
- package/dist/foundations/tokens/types.d.ts +16 -0
- package/dist/foundations/tokens/types.js +1 -0
- package/dist/foundations/typography/index.d.ts +2 -0
- package/dist/foundations/typography/index.js +1 -0
- package/dist/foundations/typography/tokens.d.ts +76 -0
- package/dist/foundations/typography/tokens.js +27 -0
- package/dist/index.d.ts +87 -0
- package/dist/index.js +98 -0
- package/dist/patterns/content-explorer/actions/controller.d.ts +12 -0
- package/dist/patterns/content-explorer/actions/controller.js +36 -0
- package/dist/patterns/content-explorer/actions/index.d.ts +2 -0
- package/dist/patterns/content-explorer/actions/index.js +1 -0
- package/dist/patterns/content-explorer/actions/types.d.ts +13 -0
- package/dist/patterns/content-explorer/actions/types.js +1 -0
- package/dist/patterns/content-explorer/adapters/action-menu.d.ts +24 -0
- package/dist/patterns/content-explorer/adapters/action-menu.js +312 -0
- package/dist/patterns/content-explorer/adapters/breadcrumbs.d.ts +15 -0
- package/dist/patterns/content-explorer/adapters/breadcrumbs.js +161 -0
- package/dist/patterns/content-explorer/adapters/item-summary.d.ts +11 -0
- package/dist/patterns/content-explorer/adapters/item-summary.js +72 -0
- package/dist/patterns/content-explorer/adapters/items.d.ts +4 -0
- package/dist/patterns/content-explorer/adapters/items.js +12 -0
- package/dist/patterns/content-explorer/adapters/list.d.ts +28 -0
- package/dist/patterns/content-explorer/adapters/list.js +527 -0
- package/dist/patterns/content-explorer/adapters/table.d.ts +23 -0
- package/dist/patterns/content-explorer/adapters/table.js +467 -0
- package/dist/patterns/content-explorer/adapters/toolbar.d.ts +19 -0
- package/dist/patterns/content-explorer/adapters/toolbar.js +234 -0
- package/dist/patterns/content-explorer/box-transport.d.ts +44 -0
- package/dist/patterns/content-explorer/box-transport.js +229 -0
- package/dist/patterns/content-explorer/collection/controller.d.ts +17 -0
- package/dist/patterns/content-explorer/collection/controller.js +67 -0
- package/dist/patterns/content-explorer/collection/index.d.ts +2 -0
- package/dist/patterns/content-explorer/collection/index.js +1 -0
- package/dist/patterns/content-explorer/collection/types.d.ts +20 -0
- package/dist/patterns/content-explorer/collection/types.js +1 -0
- package/dist/patterns/content-explorer/content-explorer.d.ts +85 -0
- package/dist/patterns/content-explorer/content-explorer.js +745 -0
- package/dist/patterns/content-explorer/contracts.d.ts +32 -0
- package/dist/patterns/content-explorer/contracts.js +114 -0
- package/dist/patterns/content-explorer/controller.d.ts +34 -0
- package/dist/patterns/content-explorer/controller.js +399 -0
- package/dist/patterns/content-explorer/host-bindings.d.ts +50 -0
- package/dist/patterns/content-explorer/host-bindings.js +76 -0
- package/dist/patterns/content-explorer/index.d.ts +18 -0
- package/dist/patterns/content-explorer/index.js +24 -0
- package/dist/patterns/content-explorer/navigation/controller.d.ts +10 -0
- package/dist/patterns/content-explorer/navigation/controller.js +48 -0
- package/dist/patterns/content-explorer/navigation/index.d.ts +2 -0
- package/dist/patterns/content-explorer/navigation/index.js +1 -0
- package/dist/patterns/content-explorer/navigation/types.d.ts +20 -0
- package/dist/patterns/content-explorer/navigation/types.js +1 -0
- package/dist/patterns/content-explorer/schemas.d.ts +6 -0
- package/dist/patterns/content-explorer/schemas.js +120 -0
- package/dist/patterns/content-explorer/selection/controller.d.ts +12 -0
- package/dist/patterns/content-explorer/selection/controller.js +54 -0
- package/dist/patterns/content-explorer/selection/index.d.ts +2 -0
- package/dist/patterns/content-explorer/selection/index.js +1 -0
- package/dist/patterns/content-explorer/selection/types.d.ts +14 -0
- package/dist/patterns/content-explorer/selection/types.js +1 -0
- package/dist/patterns/content-explorer/types.d.ts +209 -0
- package/dist/patterns/content-explorer/types.js +10 -0
- package/dist/patterns/file-request/file-request-builder.d.ts +36 -0
- package/dist/patterns/file-request/file-request-builder.js +344 -0
- package/dist/patterns/file-request/index.d.ts +1 -0
- package/dist/patterns/file-request/index.js +1 -0
- package/dist/patterns/governance/governance-panel.d.ts +40 -0
- package/dist/patterns/governance/governance-panel.js +351 -0
- package/dist/patterns/governance/index.d.ts +1 -0
- package/dist/patterns/governance/index.js +1 -0
- package/dist/patterns/insights/bar-chart.d.ts +43 -0
- package/dist/patterns/insights/bar-chart.js +462 -0
- package/dist/patterns/insights/chart-panel.d.ts +43 -0
- package/dist/patterns/insights/chart-panel.js +436 -0
- package/dist/patterns/insights/donut-chart.d.ts +43 -0
- package/dist/patterns/insights/donut-chart.js +535 -0
- package/dist/patterns/insights/index.d.ts +5 -0
- package/dist/patterns/insights/index.js +5 -0
- package/dist/patterns/insights/line-chart.d.ts +46 -0
- package/dist/patterns/insights/line-chart.js +511 -0
- package/dist/patterns/insights/metric-card.d.ts +36 -0
- package/dist/patterns/insights/metric-card.js +278 -0
- package/dist/patterns/item/bulk-action-bar.d.ts +35 -0
- package/dist/patterns/item/bulk-action-bar.js +325 -0
- package/dist/patterns/item/index.d.ts +4 -0
- package/dist/patterns/item/index.js +4 -0
- package/dist/patterns/item/item-details-panel.d.ts +61 -0
- package/dist/patterns/item/item-details-panel.js +429 -0
- package/dist/patterns/item/item-form.d.ts +54 -0
- package/dist/patterns/item/item-form.js +485 -0
- package/dist/patterns/item/preview-header.d.ts +46 -0
- package/dist/patterns/item/preview-header.js +323 -0
- package/dist/patterns/metadata/contracts.d.ts +75 -0
- package/dist/patterns/metadata/contracts.js +91 -0
- package/dist/patterns/metadata/index.d.ts +4 -0
- package/dist/patterns/metadata/index.js +4 -0
- package/dist/patterns/metadata/metadata-filter-builder.d.ts +43 -0
- package/dist/patterns/metadata/metadata-filter-builder.js +362 -0
- package/dist/patterns/metadata/metadata-inspector.d.ts +31 -0
- package/dist/patterns/metadata/metadata-inspector.js +245 -0
- package/dist/patterns/metadata/schemas.d.ts +5 -0
- package/dist/patterns/metadata/schemas.js +66 -0
- package/dist/patterns/preview/annotation-inspector.d.ts +44 -0
- package/dist/patterns/preview/annotation-inspector.js +380 -0
- package/dist/patterns/preview/annotation-thread.d.ts +37 -0
- package/dist/patterns/preview/annotation-thread.js +338 -0
- package/dist/patterns/preview/annotation-toolbar.d.ts +42 -0
- package/dist/patterns/preview/annotation-toolbar.js +393 -0
- package/dist/patterns/preview/content-preview-adapter.d.ts +13 -0
- package/dist/patterns/preview/content-preview-adapter.js +30 -0
- package/dist/patterns/preview/index.d.ts +6 -0
- package/dist/patterns/preview/index.js +6 -0
- package/dist/patterns/preview/preview-element.d.ts +41 -0
- package/dist/patterns/preview/preview-element.js +429 -0
- package/dist/patterns/preview/provider-adapter.d.ts +36 -0
- package/dist/patterns/preview/provider-adapter.js +29 -0
- package/dist/patterns/search/filter-bar.d.ts +50 -0
- package/dist/patterns/search/filter-bar.js +379 -0
- package/dist/patterns/search/index.d.ts +3 -0
- package/dist/patterns/search/index.js +3 -0
- package/dist/patterns/search/saved-view-picker.d.ts +25 -0
- package/dist/patterns/search/saved-view-picker.js +239 -0
- package/dist/patterns/search/search-results-header.d.ts +34 -0
- package/dist/patterns/search/search-results-header.js +288 -0
- package/dist/patterns/share/access-stats.d.ts +19 -0
- package/dist/patterns/share/access-stats.js +204 -0
- package/dist/patterns/share/collaborator-avatars.d.ts +22 -0
- package/dist/patterns/share/collaborator-avatars.js +214 -0
- package/dist/patterns/share/contracts.d.ts +65 -0
- package/dist/patterns/share/contracts.js +75 -0
- package/dist/patterns/share/index.d.ts +14 -0
- package/dist/patterns/share/index.js +14 -0
- package/dist/patterns/share/invite-collaborators-contracts.d.ts +38 -0
- package/dist/patterns/share/invite-collaborators-contracts.js +1 -0
- package/dist/patterns/share/invite-collaborators-controller.d.ts +40 -0
- package/dist/patterns/share/invite-collaborators-controller.js +86 -0
- package/dist/patterns/share/invite-collaborators-modal.d.ts +46 -0
- package/dist/patterns/share/invite-collaborators-modal.js +465 -0
- package/dist/patterns/share/permission-matrix.d.ts +37 -0
- package/dist/patterns/share/permission-matrix.js +360 -0
- package/dist/patterns/share/presence-contracts.d.ts +26 -0
- package/dist/patterns/share/presence-contracts.js +1 -0
- package/dist/patterns/share/presence-controller.d.ts +31 -0
- package/dist/patterns/share/presence-controller.js +47 -0
- package/dist/patterns/share/presence.d.ts +32 -0
- package/dist/patterns/share/presence.js +255 -0
- package/dist/patterns/share/schemas.d.ts +4 -0
- package/dist/patterns/share/schemas.js +41 -0
- package/dist/patterns/share/share-panel.d.ts +75 -0
- package/dist/patterns/share/share-panel.js +565 -0
- package/dist/patterns/share/unified-share-controller.d.ts +52 -0
- package/dist/patterns/share/unified-share-controller.js +97 -0
- package/dist/patterns/share/unified-share-modal.d.ts +50 -0
- package/dist/patterns/share/unified-share-modal.js +646 -0
- package/dist/patterns/task/index.d.ts +2 -0
- package/dist/patterns/task/index.js +2 -0
- package/dist/patterns/task/review-queue-item.d.ts +45 -0
- package/dist/patterns/task/review-queue-item.js +403 -0
- package/dist/patterns/task/task-assignment-panel.d.ts +50 -0
- package/dist/patterns/task/task-assignment-panel.js +450 -0
- package/package.json +151 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Box Design Language geometry — sourced from box-ui-elements
|
|
3
|
+
* `src/styles/constants/_layout.scss`, `_buttons.scss`, and `_inputs.scss`.
|
|
4
|
+
*
|
|
5
|
+
* Prefer these over ad-hoc rem bands when styling everyday controls so the
|
|
6
|
+
* catalog tracks upstream Box chrome (4px grid, 32px controls, 4/6/8/12 radii).
|
|
7
|
+
*/
|
|
8
|
+
/** `$bdl-grid-unit` — spacing scale root (4px). */
|
|
9
|
+
export const boeSpace = {
|
|
10
|
+
unit: "4px",
|
|
11
|
+
/** 1 × grid */
|
|
12
|
+
1: "4px",
|
|
13
|
+
/** 2 × grid */
|
|
14
|
+
2: "8px",
|
|
15
|
+
/** 3 × grid */
|
|
16
|
+
3: "12px",
|
|
17
|
+
/** 4 × grid — button horizontal padding */
|
|
18
|
+
4: "16px",
|
|
19
|
+
/** 5 × grid */
|
|
20
|
+
5: "20px",
|
|
21
|
+
/** 6 × grid — overlay padding */
|
|
22
|
+
6: "24px",
|
|
23
|
+
/** 8 × grid — modal-ish pad / control height */
|
|
24
|
+
8: "32px",
|
|
25
|
+
/** 10 × grid */
|
|
26
|
+
10: "40px",
|
|
27
|
+
/** 12 × grid — menu-item trailing pad */
|
|
28
|
+
12: "48px",
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Pattern / panel shell chrome — denser BDL card surfaces (12 / 8)
|
|
32
|
+
* used by share panels, explorers, insights cards, etc.
|
|
33
|
+
*/
|
|
34
|
+
export const boePanel = {
|
|
35
|
+
padding: "12px",
|
|
36
|
+
/** Card / panel surface — Box 16px (was 8px). */
|
|
37
|
+
radius: "16px",
|
|
38
|
+
gap: "12px",
|
|
39
|
+
border: "1px solid var(--boe-token-stroke-stroke, #e8e8e8)",
|
|
40
|
+
background: "var(--boe-token-surface-surface, #ffffff)",
|
|
41
|
+
/** Content-sidebar-ish drawer width */
|
|
42
|
+
drawerWidth: "340px",
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Overlay / menu / flyout chrome — `mixins/_overlay.scss` + Menu.scss.
|
|
46
|
+
*/
|
|
47
|
+
export const boeOverlay = {
|
|
48
|
+
/** Container pad — 3 × grid */
|
|
49
|
+
padding: "12px",
|
|
50
|
+
/** Menu / popover surface — Box 20px (was 8px). */
|
|
51
|
+
radius: "20px",
|
|
52
|
+
shadow: "0 4px 12px 0 rgb(0 0 0 / 10%)",
|
|
53
|
+
border: "1px solid var(--boe-token-stroke-stroke, #e8e8e8)",
|
|
54
|
+
/** Menu item — min-height 30; item radius 12px (Box). */
|
|
55
|
+
itemPadding: "8px 48px 8px 8px",
|
|
56
|
+
itemMinHeight: "30px",
|
|
57
|
+
itemRadius: "12px",
|
|
58
|
+
/** Modal — dialog radius 24px (Box; was 12px). */
|
|
59
|
+
modalPadding: "30px",
|
|
60
|
+
modalWidth: "460px",
|
|
61
|
+
modalRadius: "24px",
|
|
62
|
+
modalShadow: "0 1px 1px 1px rgb(0 0 0 / 5%)",
|
|
63
|
+
modalTitleSize: "16px",
|
|
64
|
+
modalBackdrop: "rgba(0, 0, 0, 0.75)",
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Corner radii. box-open-elements tracks the **live Box web app** (Blueprint),
|
|
68
|
+
* which ships pill-shaped controls and larger surface radii — captured from
|
|
69
|
+
* `app.box.com` (see `docs/audits/box-webapp-reference.data.json`). This is an
|
|
70
|
+
* intentional divergence from box-ui-elements' legacy SCSS geometry (4/6/8/12);
|
|
71
|
+
* the Layer 1 audit records it as such.
|
|
72
|
+
*
|
|
73
|
+
* Role guide: `control` for buttons/inputs, `field` for search + dialogs, `nav`
|
|
74
|
+
* for nav items, `large` for cards/panels, `med` for rows/small surfaces,
|
|
75
|
+
* `size` for badges/checkboxes, `pill` for chips/toggles.
|
|
76
|
+
*/
|
|
77
|
+
export const boeRadius = {
|
|
78
|
+
/** Badges, checkboxes, tiny chips — Box ~4px. */
|
|
79
|
+
size: "4px",
|
|
80
|
+
/** Rows, small surfaces, list-item hover — Box 12px (was 6px). */
|
|
81
|
+
med: "12px",
|
|
82
|
+
/** Cards, panels — Box 16px (was 8px). */
|
|
83
|
+
large: "16px",
|
|
84
|
+
/** Controls (buttons, inputs) + menus — Box 20px (was 12px). */
|
|
85
|
+
xlarge: "20px",
|
|
86
|
+
/** Interactive controls — buttons, inputs. Box pill radius 20px. */
|
|
87
|
+
control: "20px",
|
|
88
|
+
/** Large fields (search) + dialogs/modals — Box 24px. */
|
|
89
|
+
field: "24px",
|
|
90
|
+
/** Nav items — Box 28px. */
|
|
91
|
+
nav: "28px",
|
|
92
|
+
/** True pills — chips, toggles, label-pills. */
|
|
93
|
+
pill: "999px",
|
|
94
|
+
};
|
|
95
|
+
/** `$bdl-btn-height*` + related control metrics. */
|
|
96
|
+
export const boeControl = {
|
|
97
|
+
height: "32px",
|
|
98
|
+
heightLarge: "40px",
|
|
99
|
+
paddingInline: "16px",
|
|
100
|
+
/** Pill control radius — buttons/inputs. Box 20px. */
|
|
101
|
+
radius: "20px",
|
|
102
|
+
/** Shared input pad from `@mixin box-inputs` */
|
|
103
|
+
inputPadding: "7px",
|
|
104
|
+
/** BUE select control height */
|
|
105
|
+
selectHeight: "34px",
|
|
106
|
+
/** Legacy body font used on `.btn` */
|
|
107
|
+
fontSize: "13px",
|
|
108
|
+
letterSpacing: "0.035em",
|
|
109
|
+
/** BUE disabled control opacity */
|
|
110
|
+
disabledOpacity: "0.4",
|
|
111
|
+
/** Input border — `$bdl-gray-20` / SurfaceSurfaceQuaternary */
|
|
112
|
+
inputBorder: "var(--boe-token-surface-surface-quaternary, #d3d3d3)",
|
|
113
|
+
/** Button secondary border — `$bdl-gray-30` / StrokeStrokeHover */
|
|
114
|
+
buttonBorder: "var(--boe-token-stroke-stroke-hover, #bcbcbc)",
|
|
115
|
+
/** `@mixin box-inputs` inset shadow */
|
|
116
|
+
inputInsetShadow: "inset 0 2px 4px rgb(0 0 0 / 10%)",
|
|
117
|
+
/** Overlay / menu shadow — `mixins/_overlay.scss` */
|
|
118
|
+
overlayShadow: "0 4px 12px 0 rgb(0 0 0 / 10%)",
|
|
119
|
+
/** Primary button focus inset ring */
|
|
120
|
+
primaryFocusShadow: "inset 0 0 0 1px rgb(255 255 255 / 80%), 0 1px 2px rgb(0 0 0 / 10%)",
|
|
121
|
+
};
|
|
122
|
+
/** Shared text-field / select chrome matching `@mixin box-inputs`. */
|
|
123
|
+
export const boeInputControlStyles = (selector) => `
|
|
124
|
+
${selector} {
|
|
125
|
+
box-sizing: border-box;
|
|
126
|
+
min-height: ${boeControl.height};
|
|
127
|
+
padding: ${boeControl.inputPadding};
|
|
128
|
+
color: var(--boe-token-text-text, #222222);
|
|
129
|
+
border: 1px solid ${boeControl.inputBorder};
|
|
130
|
+
border-radius: ${boeRadius.med};
|
|
131
|
+
background: var(--boe-token-surface-surface, #ffffff);
|
|
132
|
+
box-shadow: ${boeControl.inputInsetShadow};
|
|
133
|
+
transition:
|
|
134
|
+
border-color linear 0.15s,
|
|
135
|
+
box-shadow linear 0.1s;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
${selector}:hover:not(:disabled) {
|
|
139
|
+
box-shadow: ${boeControl.inputInsetShadow};
|
|
140
|
+
border-color: var(--boe-token-stroke-stroke-hover, #bcbcbc);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
${selector}:focus-visible {
|
|
144
|
+
outline: 2px solid var(--boe-token-surface-surface-brand, #0061d5);
|
|
145
|
+
outline-offset: 1px;
|
|
146
|
+
border-color: var(--boe-token-surface-surface-brand, #0061d5);
|
|
147
|
+
box-shadow: ${boeControl.inputInsetShadow};
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
${selector}:disabled {
|
|
151
|
+
opacity: ${boeControl.disabledOpacity};
|
|
152
|
+
cursor: not-allowed;
|
|
153
|
+
}
|
|
154
|
+
`;
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
import { boxGeneratedIconCounts, boxGeneratedIconMetadata, boxGeneratedIcons, boxGeneratedIconKeys } from "./box-iconography.generated.js";
|
|
2
|
+
export declare const boxIconographyAliases: {
|
|
3
|
+
[k: string]: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const boxIconography: {
|
|
6
|
+
readonly "2-chat-question": string;
|
|
7
|
+
readonly "2-chat": string;
|
|
8
|
+
readonly "2-overlay-squares": string;
|
|
9
|
+
readonly "3-overlay-squares": string;
|
|
10
|
+
readonly "3-square-circle": string;
|
|
11
|
+
readonly "3-tier": string;
|
|
12
|
+
readonly "4-squares": string;
|
|
13
|
+
readonly "4-squares-2": string;
|
|
14
|
+
readonly "6-dots": string;
|
|
15
|
+
readonly "add-small": string;
|
|
16
|
+
readonly "add-squares": string;
|
|
17
|
+
readonly "add-to-cart": string;
|
|
18
|
+
readonly aid: string;
|
|
19
|
+
readonly "app-cloud": string;
|
|
20
|
+
readonly "arrow-down": string;
|
|
21
|
+
readonly "arrow-right": string;
|
|
22
|
+
readonly attachment: string;
|
|
23
|
+
readonly audio: string;
|
|
24
|
+
readonly award: string;
|
|
25
|
+
readonly badge: string;
|
|
26
|
+
readonly bag: string;
|
|
27
|
+
readonly bank: string;
|
|
28
|
+
readonly battery: string;
|
|
29
|
+
readonly bell: string;
|
|
30
|
+
readonly binders: string;
|
|
31
|
+
readonly "bolt-bubble": string;
|
|
32
|
+
readonly bolt: string;
|
|
33
|
+
readonly brain: string;
|
|
34
|
+
readonly briefcase: string;
|
|
35
|
+
readonly broadcast: string;
|
|
36
|
+
readonly browser: string;
|
|
37
|
+
readonly brush: string;
|
|
38
|
+
readonly "calendar-added": string;
|
|
39
|
+
readonly calendar: string;
|
|
40
|
+
readonly "calendar-2": string;
|
|
41
|
+
readonly cart: string;
|
|
42
|
+
readonly "cart-2": string;
|
|
43
|
+
readonly cash: string;
|
|
44
|
+
readonly "caution-file": string;
|
|
45
|
+
readonly "caution-phone": string;
|
|
46
|
+
readonly "caution-triangle": string;
|
|
47
|
+
readonly center: string;
|
|
48
|
+
readonly "chat-bubble": string;
|
|
49
|
+
readonly "chat-question": string;
|
|
50
|
+
readonly check: string;
|
|
51
|
+
readonly checkmark: string;
|
|
52
|
+
readonly clipboard: string;
|
|
53
|
+
readonly clock1: string;
|
|
54
|
+
readonly clock2: string;
|
|
55
|
+
readonly clock3: string;
|
|
56
|
+
readonly "cloud-server": string;
|
|
57
|
+
readonly cloud: string;
|
|
58
|
+
readonly "code-browser": string;
|
|
59
|
+
readonly code: string;
|
|
60
|
+
readonly compass: string;
|
|
61
|
+
readonly "computer-badge": string;
|
|
62
|
+
readonly "computer-download": string;
|
|
63
|
+
readonly "computer-upoad": string;
|
|
64
|
+
readonly computer: string;
|
|
65
|
+
readonly "connected-dots": string;
|
|
66
|
+
readonly "connected-together": string;
|
|
67
|
+
readonly "container-lines-2": string;
|
|
68
|
+
readonly "container-lines": string;
|
|
69
|
+
readonly "cube-dot-line": string;
|
|
70
|
+
readonly "cube-line": string;
|
|
71
|
+
readonly cycle: string;
|
|
72
|
+
readonly dna: string;
|
|
73
|
+
readonly "desktop-laptop": string;
|
|
74
|
+
readonly devices: string;
|
|
75
|
+
readonly distribute: string;
|
|
76
|
+
readonly "distribute-2": string;
|
|
77
|
+
readonly "dollar-sign": string;
|
|
78
|
+
readonly "donut-coffee": string;
|
|
79
|
+
readonly download: string;
|
|
80
|
+
readonly drop: string;
|
|
81
|
+
readonly "enterprise-building": string;
|
|
82
|
+
readonly "envelope-bug": string;
|
|
83
|
+
readonly "envelope-doc": string;
|
|
84
|
+
readonly "envelope-shred": string;
|
|
85
|
+
readonly envelope: string;
|
|
86
|
+
readonly "exclamation-mark": string;
|
|
87
|
+
readonly eye: string;
|
|
88
|
+
readonly "ftp-folder": string;
|
|
89
|
+
readonly "file-approved": string;
|
|
90
|
+
readonly "file-blank": string;
|
|
91
|
+
readonly "file-check": string;
|
|
92
|
+
readonly "file-cloud": string;
|
|
93
|
+
readonly "file-copy": string;
|
|
94
|
+
readonly "file-document": string;
|
|
95
|
+
readonly "file-image": string;
|
|
96
|
+
readonly "file-infographic": string;
|
|
97
|
+
readonly "file-insights": string;
|
|
98
|
+
readonly "file-presentations": string;
|
|
99
|
+
readonly "file-speed": string;
|
|
100
|
+
readonly "file-spreadsheet": string;
|
|
101
|
+
readonly "file-text": string;
|
|
102
|
+
readonly "file-video": string;
|
|
103
|
+
readonly "file-bug": string;
|
|
104
|
+
readonly "file-move": string;
|
|
105
|
+
readonly "file-music": string;
|
|
106
|
+
readonly "file-plus": string;
|
|
107
|
+
readonly "finger-print": string;
|
|
108
|
+
readonly flight: string;
|
|
109
|
+
readonly "folder-up": string;
|
|
110
|
+
readonly "folder-upload": string;
|
|
111
|
+
readonly folder: string;
|
|
112
|
+
readonly funnel: string;
|
|
113
|
+
readonly gear: string;
|
|
114
|
+
readonly gears: string;
|
|
115
|
+
readonly "graduation-cap": string;
|
|
116
|
+
readonly "graph-increase": string;
|
|
117
|
+
readonly "graph-measure": string;
|
|
118
|
+
readonly "group-call": string;
|
|
119
|
+
readonly heart: string;
|
|
120
|
+
readonly home: string;
|
|
121
|
+
readonly image: string;
|
|
122
|
+
readonly "key-safe": string;
|
|
123
|
+
readonly "leaves-growing": string;
|
|
124
|
+
readonly light: string;
|
|
125
|
+
readonly "line-graph-v2": string;
|
|
126
|
+
readonly "line-graph": string;
|
|
127
|
+
readonly link: string;
|
|
128
|
+
readonly lock: string;
|
|
129
|
+
readonly "magnifying-glass": string;
|
|
130
|
+
readonly martini: string;
|
|
131
|
+
readonly maze: string;
|
|
132
|
+
readonly "med-tool": string;
|
|
133
|
+
readonly megaphone: string;
|
|
134
|
+
readonly metadata: string;
|
|
135
|
+
readonly microphone: string;
|
|
136
|
+
readonly minus: string;
|
|
137
|
+
readonly "mixed-media-download": string;
|
|
138
|
+
readonly "music-note": string;
|
|
139
|
+
readonly "note-pad": string;
|
|
140
|
+
readonly number0: string;
|
|
141
|
+
readonly number1: string;
|
|
142
|
+
readonly number2: string;
|
|
143
|
+
readonly number3: string;
|
|
144
|
+
readonly number4: string;
|
|
145
|
+
readonly number5: string;
|
|
146
|
+
readonly number6: string;
|
|
147
|
+
readonly number7: string;
|
|
148
|
+
readonly number8: string;
|
|
149
|
+
readonly number9: string;
|
|
150
|
+
readonly "o-maru": string;
|
|
151
|
+
readonly overlay: string;
|
|
152
|
+
readonly paper: string;
|
|
153
|
+
readonly pen: string;
|
|
154
|
+
readonly person: string;
|
|
155
|
+
readonly "phone-browser": string;
|
|
156
|
+
readonly phone: string;
|
|
157
|
+
readonly "phone-2": string;
|
|
158
|
+
readonly "pie-chart-3": string;
|
|
159
|
+
readonly "pie-chart": string;
|
|
160
|
+
readonly pin: string;
|
|
161
|
+
readonly "pin-2": string;
|
|
162
|
+
readonly plane: string;
|
|
163
|
+
readonly plus: string;
|
|
164
|
+
readonly podium: string;
|
|
165
|
+
readonly "point-center": string;
|
|
166
|
+
readonly point: string;
|
|
167
|
+
readonly "question-mark": string;
|
|
168
|
+
readonly raft: string;
|
|
169
|
+
readonly "retail-tag": string;
|
|
170
|
+
readonly "right-to-forget": string;
|
|
171
|
+
readonly ring: string;
|
|
172
|
+
readonly rocket: string;
|
|
173
|
+
readonly "smb-building": string;
|
|
174
|
+
readonly scale: string;
|
|
175
|
+
readonly "scale-2": string;
|
|
176
|
+
readonly scan: string;
|
|
177
|
+
readonly server: string;
|
|
178
|
+
readonly "shake-love": string;
|
|
179
|
+
readonly "shared-users": string;
|
|
180
|
+
readonly "shield-2-tone": string;
|
|
181
|
+
readonly "shield-check": string;
|
|
182
|
+
readonly "shield-varified": string;
|
|
183
|
+
readonly slice: string;
|
|
184
|
+
readonly slider: string;
|
|
185
|
+
readonly "solid-arrow-down": string;
|
|
186
|
+
readonly "solid-arrow-right": string;
|
|
187
|
+
readonly "solid-check": string;
|
|
188
|
+
readonly "solid-checkmark": string;
|
|
189
|
+
readonly "solid-clock1": string;
|
|
190
|
+
readonly "solid-clock2": string;
|
|
191
|
+
readonly "solid-compass": string;
|
|
192
|
+
readonly "solid-dollar-sign": string;
|
|
193
|
+
readonly "solid-exclamation-mark": string;
|
|
194
|
+
readonly "solid-minus": string;
|
|
195
|
+
readonly "solid-o-maru": string;
|
|
196
|
+
readonly "solid-play": string;
|
|
197
|
+
readonly "solid-plus": string;
|
|
198
|
+
readonly "solid-question-mark": string;
|
|
199
|
+
readonly "solid-x-batsu": string;
|
|
200
|
+
readonly "speach-bubble": string;
|
|
201
|
+
readonly spotlight: string;
|
|
202
|
+
readonly "spray-bottle": string;
|
|
203
|
+
readonly "squares-scale-top": string;
|
|
204
|
+
readonly "squares-scale": string;
|
|
205
|
+
readonly "squares-together": string;
|
|
206
|
+
readonly star: string;
|
|
207
|
+
readonly "stop-hand": string;
|
|
208
|
+
readonly "storage-cloud": string;
|
|
209
|
+
readonly "storage-key": string;
|
|
210
|
+
readonly storage: string;
|
|
211
|
+
readonly sun: string;
|
|
212
|
+
readonly target: string;
|
|
213
|
+
readonly "team-add": string;
|
|
214
|
+
readonly team: string;
|
|
215
|
+
readonly thumb: string;
|
|
216
|
+
readonly toggle: string;
|
|
217
|
+
readonly tools: string;
|
|
218
|
+
readonly trophy: string;
|
|
219
|
+
readonly truck: string;
|
|
220
|
+
readonly "two-files": string;
|
|
221
|
+
readonly "typing-now": string;
|
|
222
|
+
readonly typing: string;
|
|
223
|
+
readonly usb: string;
|
|
224
|
+
readonly "up-down": string;
|
|
225
|
+
readonly "upload-cloud": string;
|
|
226
|
+
readonly upload: string;
|
|
227
|
+
readonly "user-alert": string;
|
|
228
|
+
readonly "user-verified": string;
|
|
229
|
+
readonly "user-verified-unknown": string;
|
|
230
|
+
readonly "user-badge": string;
|
|
231
|
+
readonly "user-primary": string;
|
|
232
|
+
readonly "user-timed": string;
|
|
233
|
+
readonly "video-camera": string;
|
|
234
|
+
readonly "video-camera-2": string;
|
|
235
|
+
readonly video: string;
|
|
236
|
+
readonly writing: string;
|
|
237
|
+
readonly "x-batsu": string;
|
|
238
|
+
readonly zones: string;
|
|
239
|
+
readonly play: string;
|
|
240
|
+
readonly "2-chat-question-2": string;
|
|
241
|
+
readonly "2-chat-2": string;
|
|
242
|
+
readonly "2-overlay-squares-2": string;
|
|
243
|
+
readonly "3-overlay-squares-2": string;
|
|
244
|
+
readonly "3-square-circle-2": string;
|
|
245
|
+
readonly "3-tier-2": string;
|
|
246
|
+
readonly "4-squares-1": string;
|
|
247
|
+
readonly "4-squares-3": string;
|
|
248
|
+
readonly "6-dots-2": string;
|
|
249
|
+
readonly "add-small-2": string;
|
|
250
|
+
readonly "add-squares-2": string;
|
|
251
|
+
readonly "add-to-cart-2": string;
|
|
252
|
+
readonly "aid-2": string;
|
|
253
|
+
readonly "app-cloud-2": string;
|
|
254
|
+
readonly "arrow-down-2": string;
|
|
255
|
+
readonly "arrow-right-2": string;
|
|
256
|
+
readonly "attachment-2": string;
|
|
257
|
+
readonly "audio-2": string;
|
|
258
|
+
readonly "award-2": string;
|
|
259
|
+
readonly "badge-2": string;
|
|
260
|
+
readonly "bag-2": string;
|
|
261
|
+
readonly "bank-2": string;
|
|
262
|
+
readonly "battery-2": string;
|
|
263
|
+
readonly "bell-2": string;
|
|
264
|
+
readonly "binders-2": string;
|
|
265
|
+
readonly "bolt-bubble-2": string;
|
|
266
|
+
readonly "bolt-2": string;
|
|
267
|
+
readonly "brain-2": string;
|
|
268
|
+
readonly "briefcase-2": string;
|
|
269
|
+
readonly "broadcast-2": string;
|
|
270
|
+
readonly "browser-2": string;
|
|
271
|
+
readonly "brush-2": string;
|
|
272
|
+
readonly "calendar-1": string;
|
|
273
|
+
readonly "calendar-added-2": string;
|
|
274
|
+
readonly "calendar-3": string;
|
|
275
|
+
readonly "cart-1": string;
|
|
276
|
+
readonly "cart-3": string;
|
|
277
|
+
readonly "cash-2": string;
|
|
278
|
+
readonly "caution-file-2": string;
|
|
279
|
+
readonly "caution-phone-2": string;
|
|
280
|
+
readonly "caution-triangle-2": string;
|
|
281
|
+
readonly "center-2": string;
|
|
282
|
+
readonly "chat-bubble-2": string;
|
|
283
|
+
readonly "chat-question-2": string;
|
|
284
|
+
readonly "check-2": string;
|
|
285
|
+
readonly "checkmark-2": string;
|
|
286
|
+
readonly "clipboard-2": string;
|
|
287
|
+
readonly "clock1-2": string;
|
|
288
|
+
readonly "clock2-2": string;
|
|
289
|
+
readonly "clock3-2": string;
|
|
290
|
+
readonly "cloud-server-2": string;
|
|
291
|
+
readonly "cloud-2": string;
|
|
292
|
+
readonly "code-browser-2": string;
|
|
293
|
+
readonly "code-2": string;
|
|
294
|
+
readonly "compass-2": string;
|
|
295
|
+
readonly "computer-badge-2": string;
|
|
296
|
+
readonly "computer-download-2": string;
|
|
297
|
+
readonly "computer-upoad-2": string;
|
|
298
|
+
readonly "computer-2": string;
|
|
299
|
+
readonly "connected-dots-2": string;
|
|
300
|
+
readonly "connected-together-2": string;
|
|
301
|
+
readonly "container-lines-2-2": string;
|
|
302
|
+
readonly "container-lines-3": string;
|
|
303
|
+
readonly "cube-dot-line-2": string;
|
|
304
|
+
readonly "cube-line-2": string;
|
|
305
|
+
readonly "cycle-2": string;
|
|
306
|
+
readonly "dna-2": string;
|
|
307
|
+
readonly "desktop-laptop-2": string;
|
|
308
|
+
readonly "devices-2": string;
|
|
309
|
+
readonly "distribute-1": string;
|
|
310
|
+
readonly "distribute-3": string;
|
|
311
|
+
readonly "dollar-sign-2": string;
|
|
312
|
+
readonly "donut-coffee-2": string;
|
|
313
|
+
readonly "download-2": string;
|
|
314
|
+
readonly "drop-2": string;
|
|
315
|
+
readonly "enterprise-building-2": string;
|
|
316
|
+
readonly "envelope-bug-2": string;
|
|
317
|
+
readonly "envelope-doc-2": string;
|
|
318
|
+
readonly "envelope-shred-2": string;
|
|
319
|
+
readonly "envelope-2": string;
|
|
320
|
+
readonly "exclamation-mark-2": string;
|
|
321
|
+
readonly "eye-2": string;
|
|
322
|
+
readonly "ftp-folder-2": string;
|
|
323
|
+
readonly "file-approved-2": string;
|
|
324
|
+
readonly "file-blank-2": string;
|
|
325
|
+
readonly "file-check-2": string;
|
|
326
|
+
readonly "file-cloud-2": string;
|
|
327
|
+
readonly "file-copy-2": string;
|
|
328
|
+
readonly "file-document-2": string;
|
|
329
|
+
readonly "file-image-2": string;
|
|
330
|
+
readonly "file-infographic-2": string;
|
|
331
|
+
readonly "file-insights-2": string;
|
|
332
|
+
readonly "file-presentations-2": string;
|
|
333
|
+
readonly "file-speed-2": string;
|
|
334
|
+
readonly "file-spreadsheet-2": string;
|
|
335
|
+
readonly "file-text-2": string;
|
|
336
|
+
readonly "file-video-2": string;
|
|
337
|
+
readonly "file-bug-2": string;
|
|
338
|
+
readonly "file-move-2": string;
|
|
339
|
+
readonly "file-music-2": string;
|
|
340
|
+
readonly "file-plus-2": string;
|
|
341
|
+
readonly "finger-print-2": string;
|
|
342
|
+
readonly "flight-2": string;
|
|
343
|
+
readonly "folder-up-2": string;
|
|
344
|
+
readonly "folder-upload-2": string;
|
|
345
|
+
readonly "folder-2": string;
|
|
346
|
+
readonly "funnel-2": string;
|
|
347
|
+
readonly "gear-2": string;
|
|
348
|
+
readonly "gears-2": string;
|
|
349
|
+
readonly "graduation-cap-2": string;
|
|
350
|
+
readonly "graph-increase-2": string;
|
|
351
|
+
readonly "graph-measure-2": string;
|
|
352
|
+
readonly "group-call-2": string;
|
|
353
|
+
readonly "heart-2": string;
|
|
354
|
+
readonly "home-2": string;
|
|
355
|
+
readonly "image-2": string;
|
|
356
|
+
readonly "key-safe-2": string;
|
|
357
|
+
readonly "leaves-growing-2": string;
|
|
358
|
+
readonly "light-2": string;
|
|
359
|
+
readonly "line-graph-v2-2": string;
|
|
360
|
+
readonly "line-graph-2": string;
|
|
361
|
+
readonly "link-2": string;
|
|
362
|
+
readonly "lock-2": string;
|
|
363
|
+
readonly "magnifying-glass-2": string;
|
|
364
|
+
readonly "martini-2": string;
|
|
365
|
+
readonly "maze-2": string;
|
|
366
|
+
readonly "med-tool-2": string;
|
|
367
|
+
readonly "megaphone-2": string;
|
|
368
|
+
readonly "metadata-2": string;
|
|
369
|
+
readonly "microphone-2": string;
|
|
370
|
+
readonly "minus-2": string;
|
|
371
|
+
readonly "mixed-media-download-2": string;
|
|
372
|
+
readonly "music-note-2": string;
|
|
373
|
+
readonly "note-pad-2": string;
|
|
374
|
+
readonly "number0-2": string;
|
|
375
|
+
readonly "number1-2": string;
|
|
376
|
+
readonly "number2-2": string;
|
|
377
|
+
readonly "number3-2": string;
|
|
378
|
+
readonly "number4-2": string;
|
|
379
|
+
readonly "number5-2": string;
|
|
380
|
+
readonly "number6-2": string;
|
|
381
|
+
readonly "number7-2": string;
|
|
382
|
+
readonly "number8-2": string;
|
|
383
|
+
readonly "number9-2": string;
|
|
384
|
+
readonly "o-maru-2": string;
|
|
385
|
+
readonly "overlay-2": string;
|
|
386
|
+
readonly "paper-2": string;
|
|
387
|
+
readonly "pen-2": string;
|
|
388
|
+
readonly "person-2": string;
|
|
389
|
+
readonly "phone-1": string;
|
|
390
|
+
readonly "phone-browser-2": string;
|
|
391
|
+
readonly "phone-3": string;
|
|
392
|
+
readonly "pie-chart-3-2": string;
|
|
393
|
+
readonly "pie-chart-2": string;
|
|
394
|
+
readonly "pin-1": string;
|
|
395
|
+
readonly "pin-3": string;
|
|
396
|
+
readonly "plane-2": string;
|
|
397
|
+
readonly "plus-2": string;
|
|
398
|
+
readonly "podium-2": string;
|
|
399
|
+
readonly "point-center-2": string;
|
|
400
|
+
readonly "point-2": string;
|
|
401
|
+
readonly "question-mark-2": string;
|
|
402
|
+
readonly "raft-2": string;
|
|
403
|
+
readonly "retail-tag-2": string;
|
|
404
|
+
readonly "right-to-forget-2": string;
|
|
405
|
+
readonly "ring-2": string;
|
|
406
|
+
readonly "rocket-2": string;
|
|
407
|
+
readonly "smb-building-2": string;
|
|
408
|
+
readonly "scale-1": string;
|
|
409
|
+
readonly "scale-3": string;
|
|
410
|
+
readonly "scan-2": string;
|
|
411
|
+
readonly "server-2": string;
|
|
412
|
+
readonly "shake-love-2": string;
|
|
413
|
+
readonly "shared-users-2": string;
|
|
414
|
+
readonly "shield-2-tone-2": string;
|
|
415
|
+
readonly "shield-check-2": string;
|
|
416
|
+
readonly "shield-varified-2": string;
|
|
417
|
+
readonly "slice-2": string;
|
|
418
|
+
readonly "slider-2": string;
|
|
419
|
+
readonly "solid-arrow-down-2": string;
|
|
420
|
+
readonly "solid-arrow-right-2": string;
|
|
421
|
+
readonly "solid-check-2": string;
|
|
422
|
+
readonly "solid-checkmark-2": string;
|
|
423
|
+
readonly "solid-clock1-2": string;
|
|
424
|
+
readonly "solid-clock2-2": string;
|
|
425
|
+
readonly "solid-compass-2": string;
|
|
426
|
+
readonly "solid-dollar-sign-2": string;
|
|
427
|
+
readonly "solid-exclamation-mark-2": string;
|
|
428
|
+
readonly "solid-minus-2": string;
|
|
429
|
+
readonly "solid-o-maru-2": string;
|
|
430
|
+
readonly "solid-play-2": string;
|
|
431
|
+
readonly "solid-plus-2": string;
|
|
432
|
+
readonly "solid-question-mark-2": string;
|
|
433
|
+
readonly "solid-x-batsu-2": string;
|
|
434
|
+
readonly "speach-bubble-2": string;
|
|
435
|
+
readonly "spotlight-2": string;
|
|
436
|
+
readonly "spray-bottle-2": string;
|
|
437
|
+
readonly "squares-scale-top-2": string;
|
|
438
|
+
readonly "squares-scale-2": string;
|
|
439
|
+
readonly "squares-together-2": string;
|
|
440
|
+
readonly "star-2": string;
|
|
441
|
+
readonly "stop-hand-2": string;
|
|
442
|
+
readonly "storage-cloud-2": string;
|
|
443
|
+
readonly "storage-key-2": string;
|
|
444
|
+
readonly "storage-2": string;
|
|
445
|
+
readonly "sun-2": string;
|
|
446
|
+
readonly "target-2": string;
|
|
447
|
+
readonly "team-add-2": string;
|
|
448
|
+
readonly "team-2": string;
|
|
449
|
+
readonly "thumb-2": string;
|
|
450
|
+
readonly "toggle-2": string;
|
|
451
|
+
readonly "tools-2": string;
|
|
452
|
+
readonly "trophy-2": string;
|
|
453
|
+
readonly "truck-2": string;
|
|
454
|
+
readonly "two-files-2": string;
|
|
455
|
+
readonly "typing-now-2": string;
|
|
456
|
+
readonly "typing-2": string;
|
|
457
|
+
readonly "usb-2": string;
|
|
458
|
+
readonly "up-down-2": string;
|
|
459
|
+
readonly "upload-cloud-2": string;
|
|
460
|
+
readonly "upload-2": string;
|
|
461
|
+
readonly "user-alert-2": string;
|
|
462
|
+
readonly "user-verified-unknown-2": string;
|
|
463
|
+
readonly "user-verified-2": string;
|
|
464
|
+
readonly "user-badge-2": string;
|
|
465
|
+
readonly "user-primary-2": string;
|
|
466
|
+
readonly "user-timed-2": string;
|
|
467
|
+
readonly "video-camera-1": string;
|
|
468
|
+
readonly "video-camera-3": string;
|
|
469
|
+
readonly "video-2": string;
|
|
470
|
+
readonly "white-arrow-right": string;
|
|
471
|
+
readonly "white-check": string;
|
|
472
|
+
readonly "white-plus": string;
|
|
473
|
+
readonly "white-stop": string;
|
|
474
|
+
readonly "writing-2": string;
|
|
475
|
+
readonly "x-batsu-2": string;
|
|
476
|
+
readonly "zones-2": string;
|
|
477
|
+
readonly "play-2": string;
|
|
478
|
+
};
|
|
479
|
+
export { boxGeneratedIconCounts, boxGeneratedIconKeys, boxGeneratedIconMetadata, boxGeneratedIcons, };
|