@shipfox/react-ui 0.15.0 → 0.17.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/dist/components/button-group/button-group.stories.js +4 -4
- package/dist/components/card/card.d.ts +24 -0
- package/dist/components/card/card.js +56 -0
- package/dist/components/card/card.stories.js +216 -0
- package/dist/components/card/index.d.ts +2 -0
- package/dist/components/card/index.js +3 -0
- package/dist/components/dashboard/components/charts/bar-chart.d.ts +30 -0
- package/dist/components/dashboard/components/charts/bar-chart.js +150 -0
- package/dist/components/dashboard/components/charts/bar-chart.stories.js +287 -0
- package/dist/components/dashboard/components/charts/chart-tooltip.d.ts +14 -0
- package/dist/components/dashboard/components/charts/chart-tooltip.js +46 -0
- package/dist/components/dashboard/components/charts/colors.d.ts +12 -0
- package/dist/components/dashboard/components/charts/colors.js +20 -0
- package/dist/components/dashboard/components/charts/index.d.ts +6 -0
- package/dist/components/dashboard/components/charts/index.js +7 -0
- package/dist/components/dashboard/components/charts/line-chart.d.ts +28 -0
- package/dist/components/dashboard/components/charts/line-chart.js +152 -0
- package/dist/components/dashboard/components/charts/line-chart.stories.js +257 -0
- package/dist/components/dashboard/components/charts/utils.d.ts +13 -0
- package/dist/components/dashboard/components/charts/utils.js +18 -0
- package/dist/components/dashboard/components/dashboard-alert.d.ts +8 -0
- package/dist/components/dashboard/components/dashboard-alert.js +24 -0
- package/dist/components/dashboard/components/kpi-card.d.ts +15 -0
- package/dist/components/dashboard/components/kpi-card.js +77 -0
- package/dist/components/dashboard/components/mobile-sidebar.d.ts +19 -0
- package/dist/components/dashboard/components/mobile-sidebar.js +50 -0
- package/dist/components/dashboard/components/organization-selector.d.ts +24 -1
- package/dist/components/dashboard/components/organization-selector.js +93 -70
- package/dist/components/dashboard/components/sidebar.d.ts +24 -0
- package/dist/components/dashboard/components/sidebar.js +218 -0
- package/dist/components/dashboard/context/dashboard-context.d.ts +70 -0
- package/dist/components/dashboard/context/dashboard-context.js +175 -0
- package/dist/components/dashboard/context/index.d.ts +8 -0
- package/dist/components/dashboard/context/index.js +6 -0
- package/dist/components/dashboard/context/types.d.ts +50 -0
- package/dist/components/dashboard/context/types.js +7 -0
- package/dist/components/dashboard/context/utils.d.ts +28 -0
- package/dist/components/dashboard/context/utils.js +53 -0
- package/dist/components/dashboard/dashboard.d.ts +27 -1
- package/dist/components/dashboard/dashboard.js +76 -36
- package/dist/components/dashboard/filters/expression-filter-bar.d.ts +42 -0
- package/dist/components/dashboard/filters/expression-filter-bar.js +80 -0
- package/dist/components/dashboard/filters/index.d.ts +6 -0
- package/dist/components/dashboard/filters/index.js +5 -0
- package/dist/components/dashboard/index.d.ts +25 -1
- package/dist/components/dashboard/index.js +22 -1
- package/dist/components/dashboard/pages/analytics-page.d.ts +20 -0
- package/dist/components/dashboard/pages/analytics-page.js +258 -0
- package/dist/components/dashboard/pages/index.d.ts +6 -0
- package/dist/components/dashboard/pages/index.js +6 -0
- package/dist/components/dashboard/pages/jobs-page.d.ts +20 -0
- package/dist/components/dashboard/pages/jobs-page.js +56 -0
- package/dist/components/dashboard/table/index.d.ts +6 -0
- package/dist/components/dashboard/table/index.js +5 -0
- package/dist/components/dashboard/table/table-wrapper.d.ts +104 -0
- package/dist/components/dashboard/table/table-wrapper.js +93 -0
- package/dist/components/dashboard/toolbar/filter-button.d.ts +12 -0
- package/dist/components/dashboard/toolbar/filter-button.js +124 -0
- package/dist/components/dashboard/toolbar/index.d.ts +13 -0
- package/dist/components/dashboard/toolbar/index.js +10 -0
- package/dist/components/dashboard/toolbar/page-toolbar.d.ts +75 -0
- package/dist/components/dashboard/toolbar/page-toolbar.js +208 -0
- package/dist/components/dashboard/toolbar/toolbar-actions.d.ts +52 -0
- package/dist/components/dashboard/toolbar/toolbar-actions.js +51 -0
- package/dist/components/dashboard/toolbar/toolbar-search.d.ts +21 -0
- package/dist/components/dashboard/toolbar/toolbar-search.js +123 -0
- package/dist/components/dashboard/toolbar/view-dropdown.d.ts +11 -0
- package/dist/components/dashboard/toolbar/view-dropdown.js +113 -0
- package/dist/components/empty-state/empty-state.d.ts +10 -0
- package/dist/components/empty-state/empty-state.js +40 -0
- package/dist/components/empty-state/empty-state.stories.js +74 -0
- package/dist/components/empty-state/index.d.ts +2 -0
- package/dist/components/empty-state/index.js +3 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +4 -0
- package/dist/components/modal/modal.js +3 -3
- package/dist/components/search/search-inline.js +1 -1
- package/dist/components/search/search-modal.js +13 -7
- package/dist/components/select/select.d.ts +3 -1
- package/dist/components/select/select.js +2 -1
- package/dist/components/sheet/index.d.ts +2 -0
- package/dist/components/sheet/index.js +3 -0
- package/dist/components/sheet/sheet.d.ts +33 -0
- package/dist/components/sheet/sheet.js +163 -0
- package/dist/components/sheet/sheet.stories.js +368 -0
- package/dist/components/table/data-table.d.ts +19 -2
- package/dist/components/table/data-table.js +89 -72
- package/dist/components/table/table.js +1 -1
- package/dist/components/table/table.stories.components.js +6 -28
- package/dist/styles.css +1 -1
- package/package.json +12 -4
- package/.storybook/main.ts +0 -35
- package/.storybook/preview.tsx +0 -66
- package/.storybook/vitest.setup.ts +0 -4
- package/.turbo/turbo-build.log +0 -19
- package/.turbo/turbo-check.log +0 -6
- package/.turbo/turbo-type.log +0 -5
- package/CHANGELOG.md +0 -114
- package/argos.config.ts +0 -33
- package/dist/build-css-entry.js.map +0 -1
- package/dist/colors.stories.conts.d.ts.map +0 -1
- package/dist/colors.stories.conts.js.map +0 -1
- package/dist/colors.stories.js.map +0 -1
- package/dist/components/alert/alert.d.ts.map +0 -1
- package/dist/components/alert/alert.js.map +0 -1
- package/dist/components/alert/alert.stories.js.map +0 -1
- package/dist/components/alert/index.d.ts.map +0 -1
- package/dist/components/alert/index.js.map +0 -1
- package/dist/components/avatar/avatar-group.d.ts.map +0 -1
- package/dist/components/avatar/avatar-group.js.map +0 -1
- package/dist/components/avatar/avatar.d.ts.map +0 -1
- package/dist/components/avatar/avatar.js.map +0 -1
- package/dist/components/avatar/avatar.stories.js.map +0 -1
- package/dist/components/avatar/index.d.ts.map +0 -1
- package/dist/components/avatar/index.js.map +0 -1
- package/dist/components/badge/badge.d.ts.map +0 -1
- package/dist/components/badge/badge.js.map +0 -1
- package/dist/components/badge/badge.stories.js.map +0 -1
- package/dist/components/badge/icon-badge.d.ts.map +0 -1
- package/dist/components/badge/icon-badge.js.map +0 -1
- package/dist/components/badge/index.d.ts.map +0 -1
- package/dist/components/badge/index.js.map +0 -1
- package/dist/components/badge/status-badge.d.ts.map +0 -1
- package/dist/components/badge/status-badge.js.map +0 -1
- package/dist/components/badge/user-badge.d.ts.map +0 -1
- package/dist/components/badge/user-badge.js.map +0 -1
- package/dist/components/button/button-link.d.ts.map +0 -1
- package/dist/components/button/button-link.js.map +0 -1
- package/dist/components/button/button-link.stories.js.map +0 -1
- package/dist/components/button/button.d.ts.map +0 -1
- package/dist/components/button/button.js.map +0 -1
- package/dist/components/button/button.stories.js.map +0 -1
- package/dist/components/button/icon-button.d.ts.map +0 -1
- package/dist/components/button/icon-button.js.map +0 -1
- package/dist/components/button/icon-button.stories.js.map +0 -1
- package/dist/components/button/index.d.ts.map +0 -1
- package/dist/components/button/index.js.map +0 -1
- package/dist/components/button-group/button-group.d.ts.map +0 -1
- package/dist/components/button-group/button-group.js.map +0 -1
- package/dist/components/button-group/button-group.stories.js.map +0 -1
- package/dist/components/button-group/index.d.ts.map +0 -1
- package/dist/components/button-group/index.js.map +0 -1
- package/dist/components/calendar/calendar.d.ts.map +0 -1
- package/dist/components/calendar/calendar.js.map +0 -1
- package/dist/components/calendar/index.d.ts.map +0 -1
- package/dist/components/calendar/index.js.map +0 -1
- package/dist/components/checkbox/checkbox-label.d.ts.map +0 -1
- package/dist/components/checkbox/checkbox-label.js.map +0 -1
- package/dist/components/checkbox/checkbox-links.d.ts.map +0 -1
- package/dist/components/checkbox/checkbox-links.js.map +0 -1
- package/dist/components/checkbox/checkbox.d.ts.map +0 -1
- package/dist/components/checkbox/checkbox.js.map +0 -1
- package/dist/components/checkbox/checkbox.stories.js.map +0 -1
- package/dist/components/checkbox/index.d.ts.map +0 -1
- package/dist/components/checkbox/index.js.map +0 -1
- package/dist/components/code-block/code-block-footer.d.ts.map +0 -1
- package/dist/components/code-block/code-block-footer.js.map +0 -1
- package/dist/components/code-block/code-block.d.ts.map +0 -1
- package/dist/components/code-block/code-block.js.map +0 -1
- package/dist/components/code-block/code-block.stories.js.map +0 -1
- package/dist/components/code-block/code-content.d.ts.map +0 -1
- package/dist/components/code-block/code-content.js.map +0 -1
- package/dist/components/code-block/code-copy-button.d.ts.map +0 -1
- package/dist/components/code-block/code-copy-button.js.map +0 -1
- package/dist/components/code-block/code-tabs.d.ts.map +0 -1
- package/dist/components/code-block/code-tabs.js.map +0 -1
- package/dist/components/code-block/index.d.ts.map +0 -1
- package/dist/components/code-block/index.js.map +0 -1
- package/dist/components/command/command.d.ts.map +0 -1
- package/dist/components/command/command.js.map +0 -1
- package/dist/components/command/command.stories.js.map +0 -1
- package/dist/components/command/index.d.ts.map +0 -1
- package/dist/components/command/index.js.map +0 -1
- package/dist/components/confetti/confetti.d.ts.map +0 -1
- package/dist/components/confetti/confetti.js.map +0 -1
- package/dist/components/confetti/confetti.stories.js.map +0 -1
- package/dist/components/confetti/index.d.ts.map +0 -1
- package/dist/components/confetti/index.js.map +0 -1
- package/dist/components/dashboard/components/analytics-content.d.ts +0 -2
- package/dist/components/dashboard/components/analytics-content.d.ts.map +0 -1
- package/dist/components/dashboard/components/analytics-content.js +0 -180
- package/dist/components/dashboard/components/analytics-content.js.map +0 -1
- package/dist/components/dashboard/components/animated-logo.d.ts.map +0 -1
- package/dist/components/dashboard/components/animated-logo.js.map +0 -1
- package/dist/components/dashboard/components/complete-setup-button.d.ts.map +0 -1
- package/dist/components/dashboard/components/complete-setup-button.js.map +0 -1
- package/dist/components/dashboard/components/jobs-content.d.ts +0 -2
- package/dist/components/dashboard/components/jobs-content.d.ts.map +0 -1
- package/dist/components/dashboard/components/jobs-content.js +0 -69
- package/dist/components/dashboard/components/jobs-content.js.map +0 -1
- package/dist/components/dashboard/components/mobile-menu.d.ts.map +0 -1
- package/dist/components/dashboard/components/mobile-menu.js.map +0 -1
- package/dist/components/dashboard/components/organization-selector.d.ts.map +0 -1
- package/dist/components/dashboard/components/organization-selector.js.map +0 -1
- package/dist/components/dashboard/components/top-menu.d.ts.map +0 -1
- package/dist/components/dashboard/components/top-menu.js.map +0 -1
- package/dist/components/dashboard/components/topbar-button.d.ts.map +0 -1
- package/dist/components/dashboard/components/topbar-button.js.map +0 -1
- package/dist/components/dashboard/components/topbar.d.ts.map +0 -1
- package/dist/components/dashboard/components/topbar.js.map +0 -1
- package/dist/components/dashboard/components/user-profile.d.ts.map +0 -1
- package/dist/components/dashboard/components/user-profile.js.map +0 -1
- package/dist/components/dashboard/dashboard.d.ts.map +0 -1
- package/dist/components/dashboard/dashboard.js.map +0 -1
- package/dist/components/dashboard/dashboard.stories.js.map +0 -1
- package/dist/components/dashboard/index.d.ts.map +0 -1
- package/dist/components/dashboard/index.js.map +0 -1
- package/dist/components/date-picker/date-picker.d.ts.map +0 -1
- package/dist/components/date-picker/date-picker.js.map +0 -1
- package/dist/components/date-picker/date-picker.stories.js.map +0 -1
- package/dist/components/date-picker/index.d.ts.map +0 -1
- package/dist/components/date-picker/index.js.map +0 -1
- package/dist/components/date-time-range-picker/date-time-range-picker.d.ts.map +0 -1
- package/dist/components/date-time-range-picker/date-time-range-picker.js.map +0 -1
- package/dist/components/date-time-range-picker/index.d.ts.map +0 -1
- package/dist/components/date-time-range-picker/index.js.map +0 -1
- package/dist/components/dot-grid/dot-grid.d.ts.map +0 -1
- package/dist/components/dot-grid/dot-grid.js.map +0 -1
- package/dist/components/dot-grid/index.d.ts.map +0 -1
- package/dist/components/dot-grid/index.js.map +0 -1
- package/dist/components/dropdown-menu/dropdown-menu.d.ts.map +0 -1
- package/dist/components/dropdown-menu/dropdown-menu.js.map +0 -1
- package/dist/components/dropdown-menu/dropdown-menu.stories.js.map +0 -1
- package/dist/components/dropdown-menu/index.d.ts.map +0 -1
- package/dist/components/dropdown-menu/index.js.map +0 -1
- package/dist/components/dynamic-item/dynamic-item.d.ts.map +0 -1
- package/dist/components/dynamic-item/dynamic-item.js.map +0 -1
- package/dist/components/dynamic-item/dynamic-item.stories.js.map +0 -1
- package/dist/components/dynamic-item/index.d.ts.map +0 -1
- package/dist/components/dynamic-item/index.js.map +0 -1
- package/dist/components/form/form.d.ts.map +0 -1
- package/dist/components/form/form.js.map +0 -1
- package/dist/components/form/form.stories.js.map +0 -1
- package/dist/components/form/index.d.ts.map +0 -1
- package/dist/components/form/index.js.map +0 -1
- package/dist/components/icon/custom/badge.d.ts.map +0 -1
- package/dist/components/icon/custom/badge.js.map +0 -1
- package/dist/components/icon/custom/check-circle-solid.d.ts.map +0 -1
- package/dist/components/icon/custom/check-circle-solid.js.map +0 -1
- package/dist/components/icon/custom/circle-dotted-line.d.ts.map +0 -1
- package/dist/components/icon/custom/circle-dotted-line.js.map +0 -1
- package/dist/components/icon/custom/component-fill.d.ts.map +0 -1
- package/dist/components/icon/custom/component-fill.js.map +0 -1
- package/dist/components/icon/custom/component-line.d.ts.map +0 -1
- package/dist/components/icon/custom/component-line.js.map +0 -1
- package/dist/components/icon/custom/ellipse-mini-solid.d.ts.map +0 -1
- package/dist/components/icon/custom/ellipse-mini-solid.js.map +0 -1
- package/dist/components/icon/custom/index.d.ts.map +0 -1
- package/dist/components/icon/custom/index.js.map +0 -1
- package/dist/components/icon/custom/info-tooltip-fill.d.ts.map +0 -1
- package/dist/components/icon/custom/info-tooltip-fill.js.map +0 -1
- package/dist/components/icon/custom/resize.d.ts.map +0 -1
- package/dist/components/icon/custom/resize.js.map +0 -1
- package/dist/components/icon/custom/shipfox-logo.d.ts.map +0 -1
- package/dist/components/icon/custom/shipfox-logo.js.map +0 -1
- package/dist/components/icon/custom/slack-logo.d.ts.map +0 -1
- package/dist/components/icon/custom/slack-logo.js.map +0 -1
- package/dist/components/icon/custom/spinner.d.ts.map +0 -1
- package/dist/components/icon/custom/spinner.js.map +0 -1
- package/dist/components/icon/custom/stripe-logo.d.ts.map +0 -1
- package/dist/components/icon/custom/stripe-logo.js.map +0 -1
- package/dist/components/icon/custom/thunder.d.ts.map +0 -1
- package/dist/components/icon/custom/thunder.js.map +0 -1
- package/dist/components/icon/custom/x-circle-solid.d.ts.map +0 -1
- package/dist/components/icon/custom/x-circle-solid.js.map +0 -1
- package/dist/components/icon/icon.d.ts.map +0 -1
- package/dist/components/icon/icon.js.map +0 -1
- package/dist/components/icon/icon.stories.js.map +0 -1
- package/dist/components/icon/index.d.ts.map +0 -1
- package/dist/components/icon/index.js.map +0 -1
- package/dist/components/icon/remixicon-registry.d.ts.map +0 -1
- package/dist/components/icon/remixicon-registry.js.map +0 -1
- package/dist/components/index.d.ts.map +0 -1
- package/dist/components/index.js.map +0 -1
- package/dist/components/inline-tips/index.d.ts.map +0 -1
- package/dist/components/inline-tips/index.js.map +0 -1
- package/dist/components/inline-tips/inline-tips.d.ts.map +0 -1
- package/dist/components/inline-tips/inline-tips.js.map +0 -1
- package/dist/components/inline-tips/inline-tips.stories.js.map +0 -1
- package/dist/components/input/index.d.ts.map +0 -1
- package/dist/components/input/index.js.map +0 -1
- package/dist/components/input/input.d.ts.map +0 -1
- package/dist/components/input/input.js.map +0 -1
- package/dist/components/input/input.stories.js.map +0 -1
- package/dist/components/item/index.d.ts.map +0 -1
- package/dist/components/item/index.js.map +0 -1
- package/dist/components/item/item.d.ts.map +0 -1
- package/dist/components/item/item.js.map +0 -1
- package/dist/components/item/item.stories.js.map +0 -1
- package/dist/components/kbd/index.d.ts.map +0 -1
- package/dist/components/kbd/index.js.map +0 -1
- package/dist/components/kbd/kbd.d.ts.map +0 -1
- package/dist/components/kbd/kbd.js.map +0 -1
- package/dist/components/kbd/kbd.stories.js.map +0 -1
- package/dist/components/label/index.d.ts.map +0 -1
- package/dist/components/label/index.js.map +0 -1
- package/dist/components/label/label.d.ts.map +0 -1
- package/dist/components/label/label.js.map +0 -1
- package/dist/components/label/label.stories.js.map +0 -1
- package/dist/components/modal/index.d.ts.map +0 -1
- package/dist/components/modal/index.js.map +0 -1
- package/dist/components/modal/modal.d.ts.map +0 -1
- package/dist/components/modal/modal.js.map +0 -1
- package/dist/components/modal/modal.stories.js.map +0 -1
- package/dist/components/moving-border/index.d.ts.map +0 -1
- package/dist/components/moving-border/index.js.map +0 -1
- package/dist/components/moving-border/moving-border.d.ts.map +0 -1
- package/dist/components/moving-border/moving-border.js.map +0 -1
- package/dist/components/popover/index.d.ts.map +0 -1
- package/dist/components/popover/index.js.map +0 -1
- package/dist/components/popover/popover.d.ts.map +0 -1
- package/dist/components/popover/popover.js.map +0 -1
- package/dist/components/search/index.d.ts.map +0 -1
- package/dist/components/search/index.js.map +0 -1
- package/dist/components/search/search-context.d.ts.map +0 -1
- package/dist/components/search/search-context.js.map +0 -1
- package/dist/components/search/search-inline.d.ts.map +0 -1
- package/dist/components/search/search-inline.js.map +0 -1
- package/dist/components/search/search-modal.d.ts.map +0 -1
- package/dist/components/search/search-modal.js.map +0 -1
- package/dist/components/search/search-trigger.d.ts.map +0 -1
- package/dist/components/search/search-trigger.js.map +0 -1
- package/dist/components/search/search-variants.d.ts.map +0 -1
- package/dist/components/search/search-variants.js.map +0 -1
- package/dist/components/search/search.d.ts.map +0 -1
- package/dist/components/search/search.js.map +0 -1
- package/dist/components/search/search.stories.js.map +0 -1
- package/dist/components/select/index.d.ts.map +0 -1
- package/dist/components/select/index.js.map +0 -1
- package/dist/components/select/select.d.ts.map +0 -1
- package/dist/components/select/select.js.map +0 -1
- package/dist/components/select/select.stories.js.map +0 -1
- package/dist/components/shiny-text/index.d.ts.map +0 -1
- package/dist/components/shiny-text/index.js.map +0 -1
- package/dist/components/shiny-text/shiny-text.d.ts.map +0 -1
- package/dist/components/shiny-text/shiny-text.js.map +0 -1
- package/dist/components/skeleton/index.d.ts.map +0 -1
- package/dist/components/skeleton/index.js.map +0 -1
- package/dist/components/skeleton/skeleton.d.ts.map +0 -1
- package/dist/components/skeleton/skeleton.js.map +0 -1
- package/dist/components/skeleton/skeleton.stories.js.map +0 -1
- package/dist/components/table/data-table.d.ts.map +0 -1
- package/dist/components/table/data-table.js.map +0 -1
- package/dist/components/table/index.d.ts.map +0 -1
- package/dist/components/table/index.js.map +0 -1
- package/dist/components/table/table-column-header.d.ts.map +0 -1
- package/dist/components/table/table-column-header.js.map +0 -1
- package/dist/components/table/table-pagination.d.ts.map +0 -1
- package/dist/components/table/table-pagination.js.map +0 -1
- package/dist/components/table/table.d.ts.map +0 -1
- package/dist/components/table/table.js.map +0 -1
- package/dist/components/table/table.stories.columns.d.ts.map +0 -1
- package/dist/components/table/table.stories.columns.js.map +0 -1
- package/dist/components/table/table.stories.components.d.ts.map +0 -1
- package/dist/components/table/table.stories.components.js.map +0 -1
- package/dist/components/table/table.stories.data.d.ts.map +0 -1
- package/dist/components/table/table.stories.data.js.map +0 -1
- package/dist/components/table/table.stories.js.map +0 -1
- package/dist/components/tabs/index.d.ts.map +0 -1
- package/dist/components/tabs/index.js.map +0 -1
- package/dist/components/tabs/tabs.d.ts.map +0 -1
- package/dist/components/tabs/tabs.js.map +0 -1
- package/dist/components/tabs/tabs.stories.js.map +0 -1
- package/dist/components/textarea/index.d.ts.map +0 -1
- package/dist/components/textarea/index.js.map +0 -1
- package/dist/components/textarea/textarea.d.ts.map +0 -1
- package/dist/components/textarea/textarea.js.map +0 -1
- package/dist/components/textarea/textarea.stories.js.map +0 -1
- package/dist/components/theme/index.d.ts.map +0 -1
- package/dist/components/theme/index.js.map +0 -1
- package/dist/components/theme/theme-provider.d.ts.map +0 -1
- package/dist/components/theme/theme-provider.js.map +0 -1
- package/dist/components/toast/index.d.ts.map +0 -1
- package/dist/components/toast/index.js.map +0 -1
- package/dist/components/toast/toast-custom.d.ts.map +0 -1
- package/dist/components/toast/toast-custom.js.map +0 -1
- package/dist/components/toast/toast.d.ts.map +0 -1
- package/dist/components/toast/toast.js.map +0 -1
- package/dist/components/toast/toast.stories.js.map +0 -1
- package/dist/components/tooltip/index.d.ts.map +0 -1
- package/dist/components/tooltip/index.js.map +0 -1
- package/dist/components/tooltip/tooltip.d.ts.map +0 -1
- package/dist/components/tooltip/tooltip.js.map +0 -1
- package/dist/components/tooltip/tooltip.stories.js.map +0 -1
- package/dist/components/typography/code.d.ts.map +0 -1
- package/dist/components/typography/code.js.map +0 -1
- package/dist/components/typography/code.stories.js.map +0 -1
- package/dist/components/typography/header.d.ts.map +0 -1
- package/dist/components/typography/header.js.map +0 -1
- package/dist/components/typography/header.stories.js.map +0 -1
- package/dist/components/typography/index.d.ts.map +0 -1
- package/dist/components/typography/index.js.map +0 -1
- package/dist/components/typography/text.d.ts.map +0 -1
- package/dist/components/typography/text.js.map +0 -1
- package/dist/components/typography/text.stories.js.map +0 -1
- package/dist/hooks/index.d.ts.map +0 -1
- package/dist/hooks/index.js.map +0 -1
- package/dist/hooks/useCopy.d.ts.map +0 -1
- package/dist/hooks/useCopy.js.map +0 -1
- package/dist/hooks/useCopyToClipboard.d.ts.map +0 -1
- package/dist/hooks/useCopyToClipboard.js.map +0 -1
- package/dist/hooks/useMediaQuery.d.ts.map +0 -1
- package/dist/hooks/useMediaQuery.js.map +0 -1
- package/dist/hooks/useResolvedTheme.d.ts.map +0 -1
- package/dist/hooks/useResolvedTheme.js.map +0 -1
- package/dist/hooks/useShikiHighlight.d.ts.map +0 -1
- package/dist/hooks/useShikiHighlight.js.map +0 -1
- package/dist/hooks/useShikiStyleInjection.d.ts.map +0 -1
- package/dist/hooks/useShikiStyleInjection.js.map +0 -1
- package/dist/hooks/useTheme.d.ts.map +0 -1
- package/dist/hooks/useTheme.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/onboarding/sign-in.stories.js.map +0 -1
- package/dist/state/theme.d.ts.map +0 -1
- package/dist/state/theme.js.map +0 -1
- package/dist/utils/avatar.d.ts.map +0 -1
- package/dist/utils/avatar.js.map +0 -1
- package/dist/utils/clipboard.d.ts.map +0 -1
- package/dist/utils/clipboard.js.map +0 -1
- package/dist/utils/cn.d.ts.map +0 -1
- package/dist/utils/cn.js.map +0 -1
- package/dist/utils/date.d.ts.map +0 -1
- package/dist/utils/date.js.map +0 -1
- package/dist/utils/debounce.d.ts.map +0 -1
- package/dist/utils/debounce.js.map +0 -1
- package/dist/utils/format/chart.d.ts.map +0 -1
- package/dist/utils/format/chart.js.map +0 -1
- package/dist/utils/format/date.d.ts.map +0 -1
- package/dist/utils/format/date.js.map +0 -1
- package/dist/utils/format/duration.d.ts.map +0 -1
- package/dist/utils/format/duration.js.map +0 -1
- package/dist/utils/format/index.d.ts.map +0 -1
- package/dist/utils/format/index.js.map +0 -1
- package/dist/utils/format/number.d.ts.map +0 -1
- package/dist/utils/format/number.js.map +0 -1
- package/dist/utils/index.d.ts.map +0 -1
- package/dist/utils/index.js.map +0 -1
- package/index.css +0 -1018
- package/src/assets/illustration-1.svg +0 -92
- package/src/assets/illustration-2.svg +0 -14
- package/src/assets/illustration-gradient.svg +0 -7049
- package/src/build-css-entry.ts +0 -3
- package/src/colors.stories.conts.ts +0 -164
- package/src/colors.stories.tsx +0 -66
- package/src/components/alert/alert.stories.tsx +0 -178
- package/src/components/alert/alert.tsx +0 -291
- package/src/components/alert/index.ts +0 -1
- package/src/components/avatar/avatar-group.tsx +0 -186
- package/src/components/avatar/avatar.stories.tsx +0 -179
- package/src/components/avatar/avatar.tsx +0 -219
- package/src/components/avatar/index.ts +0 -2
- package/src/components/badge/badge.stories.tsx +0 -468
- package/src/components/badge/badge.tsx +0 -147
- package/src/components/badge/icon-badge.tsx +0 -43
- package/src/components/badge/index.ts +0 -4
- package/src/components/badge/status-badge.tsx +0 -43
- package/src/components/badge/user-badge.tsx +0 -34
- package/src/components/button/button-link.stories.tsx +0 -86
- package/src/components/button/button-link.tsx +0 -76
- package/src/components/button/button.stories.tsx +0 -138
- package/src/components/button/button.tsx +0 -91
- package/src/components/button/icon-button.stories.tsx +0 -228
- package/src/components/button/icon-button.tsx +0 -95
- package/src/components/button/index.ts +0 -3
- package/src/components/button-group/button-group.stories.tsx +0 -361
- package/src/components/button-group/button-group.tsx +0 -111
- package/src/components/button-group/index.ts +0 -1
- package/src/components/calendar/calendar.tsx +0 -90
- package/src/components/calendar/index.ts +0 -1
- package/src/components/checkbox/checkbox-label.tsx +0 -125
- package/src/components/checkbox/checkbox-links.tsx +0 -92
- package/src/components/checkbox/checkbox.stories.tsx +0 -391
- package/src/components/checkbox/checkbox.tsx +0 -71
- package/src/components/checkbox/index.ts +0 -3
- package/src/components/code-block/code-block-footer.tsx +0 -197
- package/src/components/code-block/code-block.stories.tsx +0 -323
- package/src/components/code-block/code-block.tsx +0 -283
- package/src/components/code-block/code-content.tsx +0 -63
- package/src/components/code-block/code-copy-button.tsx +0 -73
- package/src/components/code-block/code-tabs.tsx +0 -170
- package/src/components/code-block/index.ts +0 -3
- package/src/components/command/command.stories.tsx +0 -133
- package/src/components/command/command.tsx +0 -265
- package/src/components/command/index.ts +0 -1
- package/src/components/confetti/confetti.stories.tsx +0 -38
- package/src/components/confetti/confetti.tsx +0 -140
- package/src/components/confetti/index.ts +0 -1
- package/src/components/dashboard/components/analytics-content.tsx +0 -102
- package/src/components/dashboard/components/animated-logo.tsx +0 -25
- package/src/components/dashboard/components/complete-setup-button.tsx +0 -30
- package/src/components/dashboard/components/jobs-content.tsx +0 -51
- package/src/components/dashboard/components/mobile-menu.tsx +0 -50
- package/src/components/dashboard/components/organization-selector.tsx +0 -51
- package/src/components/dashboard/components/top-menu.tsx +0 -26
- package/src/components/dashboard/components/topbar-button.tsx +0 -27
- package/src/components/dashboard/components/topbar.tsx +0 -40
- package/src/components/dashboard/components/user-profile.tsx +0 -90
- package/src/components/dashboard/dashboard.stories.tsx +0 -25
- package/src/components/dashboard/dashboard.tsx +0 -61
- package/src/components/dashboard/index.ts +0 -1
- package/src/components/date-picker/date-picker.stories.tsx +0 -230
- package/src/components/date-picker/date-picker.tsx +0 -179
- package/src/components/date-picker/index.ts +0 -1
- package/src/components/date-time-range-picker/date-time-range-picker.tsx +0 -211
- package/src/components/date-time-range-picker/index.ts +0 -1
- package/src/components/dot-grid/dot-grid.tsx +0 -325
- package/src/components/dot-grid/index.ts +0 -1
- package/src/components/dropdown-menu/dropdown-menu.stories.tsx +0 -384
- package/src/components/dropdown-menu/dropdown-menu.tsx +0 -416
- package/src/components/dropdown-menu/index.ts +0 -1
- package/src/components/dynamic-item/dynamic-item.stories.tsx +0 -266
- package/src/components/dynamic-item/dynamic-item.tsx +0 -74
- package/src/components/dynamic-item/index.ts +0 -1
- package/src/components/form/form.stories.tsx +0 -505
- package/src/components/form/form.tsx +0 -154
- package/src/components/form/index.ts +0 -1
- package/src/components/icon/custom/badge.tsx +0 -17
- package/src/components/icon/custom/check-circle-solid.tsx +0 -24
- package/src/components/icon/custom/circle-dotted-line.tsx +0 -17
- package/src/components/icon/custom/component-fill.tsx +0 -17
- package/src/components/icon/custom/component-line.tsx +0 -17
- package/src/components/icon/custom/ellipse-mini-solid.tsx +0 -17
- package/src/components/icon/custom/index.ts +0 -14
- package/src/components/icon/custom/info-tooltip-fill.tsx +0 -21
- package/src/components/icon/custom/resize.tsx +0 -17
- package/src/components/icon/custom/shipfox-logo.tsx +0 -20
- package/src/components/icon/custom/slack-logo.tsx +0 -35
- package/src/components/icon/custom/spinner.tsx +0 -144
- package/src/components/icon/custom/stripe-logo.tsx +0 -27
- package/src/components/icon/custom/thunder.tsx +0 -17
- package/src/components/icon/custom/x-circle-solid.tsx +0 -24
- package/src/components/icon/icon.stories.tsx +0 -31
- package/src/components/icon/icon.tsx +0 -90
- package/src/components/icon/index.ts +0 -1
- package/src/components/icon/remixicon-registry.ts +0 -24
- package/src/components/index.ts +0 -36
- package/src/components/inline-tips/index.ts +0 -1
- package/src/components/inline-tips/inline-tips.stories.tsx +0 -131
- package/src/components/inline-tips/inline-tips.tsx +0 -132
- package/src/components/input/index.ts +0 -1
- package/src/components/input/input.stories.tsx +0 -138
- package/src/components/input/input.tsx +0 -43
- package/src/components/item/index.ts +0 -1
- package/src/components/item/item.stories.tsx +0 -159
- package/src/components/item/item.tsx +0 -182
- package/src/components/kbd/index.ts +0 -1
- package/src/components/kbd/kbd.stories.tsx +0 -64
- package/src/components/kbd/kbd.tsx +0 -32
- package/src/components/label/index.ts +0 -1
- package/src/components/label/label.stories.tsx +0 -67
- package/src/components/label/label.tsx +0 -15
- package/src/components/modal/index.ts +0 -1
- package/src/components/modal/modal.stories.tsx +0 -448
- package/src/components/modal/modal.tsx +0 -311
- package/src/components/moving-border/index.ts +0 -1
- package/src/components/moving-border/moving-border.tsx +0 -67
- package/src/components/popover/index.ts +0 -1
- package/src/components/popover/popover.tsx +0 -60
- package/src/components/renovate.json +0 -23
- package/src/components/search/index.ts +0 -28
- package/src/components/search/search-context.tsx +0 -78
- package/src/components/search/search-inline.tsx +0 -107
- package/src/components/search/search-modal.tsx +0 -198
- package/src/components/search/search-trigger.tsx +0 -47
- package/src/components/search/search-variants.ts +0 -88
- package/src/components/search/search.stories.tsx +0 -392
- package/src/components/search/search.tsx +0 -47
- package/src/components/select/index.ts +0 -1
- package/src/components/select/select.stories.tsx +0 -207
- package/src/components/select/select.tsx +0 -220
- package/src/components/shiny-text/index.ts +0 -1
- package/src/components/shiny-text/shiny-text.tsx +0 -21
- package/src/components/skeleton/index.ts +0 -1
- package/src/components/skeleton/skeleton.stories.tsx +0 -178
- package/src/components/skeleton/skeleton.tsx +0 -14
- package/src/components/table/data-table.tsx +0 -254
- package/src/components/table/index.ts +0 -5
- package/src/components/table/table-column-header.tsx +0 -141
- package/src/components/table/table-pagination.tsx +0 -161
- package/src/components/table/table.stories.columns.tsx +0 -198
- package/src/components/table/table.stories.components.tsx +0 -104
- package/src/components/table/table.stories.data.ts +0 -117
- package/src/components/table/table.stories.tsx +0 -256
- package/src/components/table/table.tsx +0 -95
- package/src/components/tabs/index.ts +0 -1
- package/src/components/tabs/tabs.stories.tsx +0 -100
- package/src/components/tabs/tabs.tsx +0 -380
- package/src/components/textarea/index.ts +0 -1
- package/src/components/textarea/textarea.stories.tsx +0 -196
- package/src/components/textarea/textarea.tsx +0 -42
- package/src/components/theme/index.ts +0 -1
- package/src/components/theme/theme-provider.tsx +0 -50
- package/src/components/toast/index.ts +0 -2
- package/src/components/toast/toast-custom.tsx +0 -154
- package/src/components/toast/toast.stories.tsx +0 -369
- package/src/components/toast/toast.tsx +0 -41
- package/src/components/tooltip/index.ts +0 -1
- package/src/components/tooltip/tooltip.stories.tsx +0 -284
- package/src/components/tooltip/tooltip.tsx +0 -121
- package/src/components/typography/code.stories.tsx +0 -36
- package/src/components/typography/code.tsx +0 -38
- package/src/components/typography/header.stories.tsx +0 -27
- package/src/components/typography/header.tsx +0 -41
- package/src/components/typography/index.ts +0 -3
- package/src/components/typography/text.stories.tsx +0 -67
- package/src/components/typography/text.tsx +0 -50
- package/src/hooks/index.ts +0 -6
- package/src/hooks/useCopy.ts +0 -0
- package/src/hooks/useCopyToClipboard.ts +0 -20
- package/src/hooks/useMediaQuery.ts +0 -87
- package/src/hooks/useResolvedTheme.ts +0 -34
- package/src/hooks/useShikiHighlight.ts +0 -140
- package/src/hooks/useShikiStyleInjection.ts +0 -34
- package/src/hooks/useTheme.ts +0 -10
- package/src/index.ts +0 -4
- package/src/onboarding/sign-in.stories.tsx +0 -85
- package/src/state/theme.ts +0 -15
- package/src/utils/avatar.ts +0 -27
- package/src/utils/clipboard.ts +0 -4
- package/src/utils/cn.ts +0 -6
- package/src/utils/date.test.ts +0 -119
- package/src/utils/date.ts +0 -99
- package/src/utils/debounce.ts +0 -15
- package/src/utils/format/chart.ts +0 -16
- package/src/utils/format/date.test.ts +0 -65
- package/src/utils/format/date.ts +0 -75
- package/src/utils/format/duration.test.ts +0 -58
- package/src/utils/format/duration.ts +0 -82
- package/src/utils/format/index.ts +0 -4
- package/src/utils/format/number.test.ts +0 -38
- package/src/utils/format/number.ts +0 -33
- package/src/utils/index.ts +0 -6
- package/test/global.ts +0 -3
- package/test/setup.ts +0 -9
- package/tsconfig.build.json +0 -19
- package/tsconfig.json +0 -11
- package/tsconfig.test.json +0 -12
- package/vercel.json +0 -8
- package/vite.css.config.ts +0 -30
- package/vitest.config.ts +0 -44
|
@@ -1,284 +0,0 @@
|
|
|
1
|
-
import type {Meta, StoryObj} from '@storybook/react';
|
|
2
|
-
import {Code} from 'components/typography';
|
|
3
|
-
import {Button} from '../button';
|
|
4
|
-
import {Tooltip, TooltipContent, type TooltipContentProps, TooltipTrigger} from './tooltip';
|
|
5
|
-
|
|
6
|
-
type TooltipStoryArgs = {
|
|
7
|
-
defaultOpen?: boolean;
|
|
8
|
-
delayDuration?: number;
|
|
9
|
-
variant?: TooltipContentProps['variant'];
|
|
10
|
-
size?: TooltipContentProps['size'];
|
|
11
|
-
side?: TooltipContentProps['side'];
|
|
12
|
-
align?: TooltipContentProps['align'];
|
|
13
|
-
sideOffset?: TooltipContentProps['sideOffset'];
|
|
14
|
-
animated?: TooltipContentProps['animated'];
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
const meta = {
|
|
18
|
-
title: 'Components/Tooltip',
|
|
19
|
-
component: Tooltip,
|
|
20
|
-
tags: ['autodocs'],
|
|
21
|
-
argTypes: {
|
|
22
|
-
defaultOpen: {control: 'boolean'},
|
|
23
|
-
delayDuration: {control: 'number'},
|
|
24
|
-
variant: {
|
|
25
|
-
control: 'select',
|
|
26
|
-
options: ['default', 'inverted', 'muted'],
|
|
27
|
-
},
|
|
28
|
-
size: {
|
|
29
|
-
control: 'select',
|
|
30
|
-
options: ['sm', 'md', 'lg'],
|
|
31
|
-
},
|
|
32
|
-
side: {
|
|
33
|
-
control: 'select',
|
|
34
|
-
options: ['top', 'bottom', 'left', 'right'],
|
|
35
|
-
},
|
|
36
|
-
align: {
|
|
37
|
-
control: 'select',
|
|
38
|
-
options: ['start', 'center', 'end'],
|
|
39
|
-
},
|
|
40
|
-
sideOffset: {control: 'number'},
|
|
41
|
-
animated: {control: 'boolean'},
|
|
42
|
-
},
|
|
43
|
-
args: {
|
|
44
|
-
defaultOpen: false,
|
|
45
|
-
delayDuration: 0,
|
|
46
|
-
variant: 'default',
|
|
47
|
-
size: 'md',
|
|
48
|
-
side: 'top',
|
|
49
|
-
align: 'center',
|
|
50
|
-
sideOffset: 8,
|
|
51
|
-
animated: true,
|
|
52
|
-
},
|
|
53
|
-
} satisfies Meta<TooltipStoryArgs>;
|
|
54
|
-
|
|
55
|
-
export default meta;
|
|
56
|
-
type Story = StoryObj<typeof meta>;
|
|
57
|
-
|
|
58
|
-
export const Default: Story = {
|
|
59
|
-
args: {
|
|
60
|
-
defaultOpen: false,
|
|
61
|
-
},
|
|
62
|
-
|
|
63
|
-
render: (args: TooltipStoryArgs) => {
|
|
64
|
-
const {defaultOpen, delayDuration, variant, size, side, align, sideOffset, animated} = args;
|
|
65
|
-
return (
|
|
66
|
-
<div className="flex items-center justify-center p-64">
|
|
67
|
-
<Tooltip defaultOpen={defaultOpen} delayDuration={delayDuration}>
|
|
68
|
-
<TooltipTrigger asChild>
|
|
69
|
-
<Button>Hover me</Button>
|
|
70
|
-
</TooltipTrigger>
|
|
71
|
-
<TooltipContent
|
|
72
|
-
variant={variant}
|
|
73
|
-
size={size}
|
|
74
|
-
side={side}
|
|
75
|
-
align={align}
|
|
76
|
-
sideOffset={sideOffset}
|
|
77
|
-
animated={animated}
|
|
78
|
-
>
|
|
79
|
-
Tooltip Text
|
|
80
|
-
</TooltipContent>
|
|
81
|
-
</Tooltip>
|
|
82
|
-
</div>
|
|
83
|
-
);
|
|
84
|
-
},
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
export const Types: Story = {
|
|
88
|
-
render: () => (
|
|
89
|
-
<div className="flex flex-col gap-64 p-64">
|
|
90
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
91
|
-
TYPES
|
|
92
|
-
</Code>
|
|
93
|
-
<div className="flex flex-col gap-32">
|
|
94
|
-
{/* Text Type */}
|
|
95
|
-
<div className="flex flex-col gap-16">
|
|
96
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
97
|
-
Type=Text
|
|
98
|
-
</Code>
|
|
99
|
-
<div className="flex gap-16">
|
|
100
|
-
<Tooltip>
|
|
101
|
-
<TooltipTrigger asChild>
|
|
102
|
-
<Button variant="primary">Tooltip Text</Button>
|
|
103
|
-
</TooltipTrigger>
|
|
104
|
-
<TooltipContent variant="inverted">Tooltip Text</TooltipContent>
|
|
105
|
-
</Tooltip>
|
|
106
|
-
<Tooltip>
|
|
107
|
-
<TooltipTrigger asChild>
|
|
108
|
-
<Button variant="secondary">Tooltip Text</Button>
|
|
109
|
-
</TooltipTrigger>
|
|
110
|
-
<TooltipContent>Tooltip Text</TooltipContent>
|
|
111
|
-
</Tooltip>
|
|
112
|
-
</div>
|
|
113
|
-
</div>
|
|
114
|
-
|
|
115
|
-
{/* Shortcut Type */}
|
|
116
|
-
<div className="flex flex-col gap-16">
|
|
117
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
118
|
-
Type=Shortcut
|
|
119
|
-
</Code>
|
|
120
|
-
<div className="flex gap-16">
|
|
121
|
-
<Tooltip>
|
|
122
|
-
<TooltipTrigger asChild>
|
|
123
|
-
<Button variant="primary">Tooltip Text</Button>
|
|
124
|
-
</TooltipTrigger>
|
|
125
|
-
<TooltipContent variant="inverted">
|
|
126
|
-
<div className="flex items-center gap-6">
|
|
127
|
-
<span>Tooltip Text</span>
|
|
128
|
-
<div className="flex items-center gap-4">
|
|
129
|
-
<kbd className="flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-sm text-foreground-neutral-subtle">
|
|
130
|
-
⌘
|
|
131
|
-
</kbd>
|
|
132
|
-
<kbd className="flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-sm text-foreground-neutral-subtle">
|
|
133
|
-
/
|
|
134
|
-
</kbd>
|
|
135
|
-
</div>
|
|
136
|
-
</div>
|
|
137
|
-
</TooltipContent>
|
|
138
|
-
</Tooltip>
|
|
139
|
-
<Tooltip>
|
|
140
|
-
<TooltipTrigger asChild>
|
|
141
|
-
<Button variant="secondary">Tooltip Text</Button>
|
|
142
|
-
</TooltipTrigger>
|
|
143
|
-
<TooltipContent>
|
|
144
|
-
<div className="flex items-center gap-6">
|
|
145
|
-
<span>Tooltip Text</span>
|
|
146
|
-
<div className="flex items-center gap-4">
|
|
147
|
-
<kbd className="flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-xs text-foreground-neutral-subtle">
|
|
148
|
-
⌘
|
|
149
|
-
</kbd>
|
|
150
|
-
<kbd className="flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-xs text-foreground-neutral-subtle">
|
|
151
|
-
/
|
|
152
|
-
</kbd>
|
|
153
|
-
</div>
|
|
154
|
-
</div>
|
|
155
|
-
</TooltipContent>
|
|
156
|
-
</Tooltip>
|
|
157
|
-
</div>
|
|
158
|
-
</div>
|
|
159
|
-
|
|
160
|
-
{/* Graph Type */}
|
|
161
|
-
<div className="flex flex-col gap-16">
|
|
162
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
163
|
-
Type=Graph
|
|
164
|
-
</Code>
|
|
165
|
-
<div className="flex gap-16">
|
|
166
|
-
<Tooltip>
|
|
167
|
-
<TooltipTrigger asChild>
|
|
168
|
-
<Button variant="primary">Hover for graph data</Button>
|
|
169
|
-
</TooltipTrigger>
|
|
170
|
-
<TooltipContent variant="inverted" className="w-160">
|
|
171
|
-
<div className="flex flex-col gap-4">
|
|
172
|
-
<div className="text-xs text-foreground-neutral-subtle">Jul 22, 2025</div>
|
|
173
|
-
<div className="flex flex-col gap-4">
|
|
174
|
-
<div className="flex items-center justify-between gap-12">
|
|
175
|
-
<div className="flex flex-1 items-center gap-4">
|
|
176
|
-
<div className="size-6 rounded-full bg-purple-500" />
|
|
177
|
-
<span className="text-xs">Data A</span>
|
|
178
|
-
</div>
|
|
179
|
-
<span className="text-xs">$6.14</span>
|
|
180
|
-
</div>
|
|
181
|
-
<div className="flex items-center justify-between gap-12">
|
|
182
|
-
<div className="flex flex-1 items-center gap-4">
|
|
183
|
-
<div className="size-6 rounded-full bg-green-500" />
|
|
184
|
-
<span className="text-xs">Data B</span>
|
|
185
|
-
</div>
|
|
186
|
-
<span className="text-xs">$4.37</span>
|
|
187
|
-
</div>
|
|
188
|
-
<div className="flex items-center justify-between gap-12">
|
|
189
|
-
<div className="flex flex-1 items-center gap-4">
|
|
190
|
-
<div className="size-6 rounded-full bg-orange-500" />
|
|
191
|
-
<span className="text-xs">Data C</span>
|
|
192
|
-
</div>
|
|
193
|
-
<span className="text-xs">$12.88</span>
|
|
194
|
-
</div>
|
|
195
|
-
<div className="flex items-center justify-between gap-12">
|
|
196
|
-
<div className="flex flex-1 items-center gap-4">
|
|
197
|
-
<div className="size-6 rounded-full bg-blue-500" />
|
|
198
|
-
<span className="text-xs">Data D</span>
|
|
199
|
-
</div>
|
|
200
|
-
<span className="text-xs">$2.91</span>
|
|
201
|
-
</div>
|
|
202
|
-
</div>
|
|
203
|
-
</div>
|
|
204
|
-
</TooltipContent>
|
|
205
|
-
</Tooltip>
|
|
206
|
-
<Tooltip>
|
|
207
|
-
<TooltipTrigger asChild>
|
|
208
|
-
<Button variant="secondary">Hover for graph data</Button>
|
|
209
|
-
</TooltipTrigger>
|
|
210
|
-
<TooltipContent className="w-160">
|
|
211
|
-
<div className="flex flex-col gap-4">
|
|
212
|
-
<div className="text-xs text-foreground-neutral-subtle">Jul 22, 2025</div>
|
|
213
|
-
<div className="flex flex-col gap-4">
|
|
214
|
-
<div className="flex items-center justify-between gap-12">
|
|
215
|
-
<div className="flex flex-1 items-center gap-4">
|
|
216
|
-
<div className="size-6 rounded-full bg-purple-500" />
|
|
217
|
-
<span className="text-xs">Data A</span>
|
|
218
|
-
</div>
|
|
219
|
-
<span className="text-xs">$6.14</span>
|
|
220
|
-
</div>
|
|
221
|
-
<div className="flex items-center justify-between gap-12">
|
|
222
|
-
<div className="flex flex-1 items-center gap-4">
|
|
223
|
-
<div className="size-6 rounded-full bg-green-500" />
|
|
224
|
-
<span className="text-xs">Data B</span>
|
|
225
|
-
</div>
|
|
226
|
-
<span className="text-xs">$4.37</span>
|
|
227
|
-
</div>
|
|
228
|
-
<div className="flex items-center justify-between gap-12">
|
|
229
|
-
<div className="flex flex-1 items-center gap-4">
|
|
230
|
-
<div className="size-6 rounded-full bg-orange-500" />
|
|
231
|
-
<span className="text-xs">Data C</span>
|
|
232
|
-
</div>
|
|
233
|
-
<span className="text-xs">$12.88</span>
|
|
234
|
-
</div>
|
|
235
|
-
<div className="flex items-center justify-between gap-12">
|
|
236
|
-
<div className="flex flex-1 items-center gap-4">
|
|
237
|
-
<div className="size-6 rounded-full bg-blue-500" />
|
|
238
|
-
<span className="text-xs">Data D</span>
|
|
239
|
-
</div>
|
|
240
|
-
<span className="text-xs">$2.91</span>
|
|
241
|
-
</div>
|
|
242
|
-
</div>
|
|
243
|
-
</div>
|
|
244
|
-
</TooltipContent>
|
|
245
|
-
</Tooltip>
|
|
246
|
-
</div>
|
|
247
|
-
</div>
|
|
248
|
-
|
|
249
|
-
{/* Breadcrumbs Type */}
|
|
250
|
-
<div className="flex flex-col gap-16">
|
|
251
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
252
|
-
Type=Breadcrumbs
|
|
253
|
-
</Code>
|
|
254
|
-
<div className="flex gap-16">
|
|
255
|
-
<Tooltip>
|
|
256
|
-
<TooltipTrigger asChild>
|
|
257
|
-
<Button variant="primary">Breadcrumb</Button>
|
|
258
|
-
</TooltipTrigger>
|
|
259
|
-
<TooltipContent variant="inverted">
|
|
260
|
-
<div className="flex items-center gap-6">
|
|
261
|
-
<span>Breadcrumb</span>
|
|
262
|
-
<span className="text-foreground-neutral-muted">/</span>
|
|
263
|
-
<span>Breadcrumb</span>
|
|
264
|
-
</div>
|
|
265
|
-
</TooltipContent>
|
|
266
|
-
</Tooltip>
|
|
267
|
-
<Tooltip>
|
|
268
|
-
<TooltipTrigger asChild>
|
|
269
|
-
<Button variant="secondary">Breadcrumb</Button>
|
|
270
|
-
</TooltipTrigger>
|
|
271
|
-
<TooltipContent>
|
|
272
|
-
<div className="flex items-center gap-6">
|
|
273
|
-
<span>Breadcrumb</span>
|
|
274
|
-
<span className="text-foreground-neutral-muted">/</span>
|
|
275
|
-
<span>Breadcrumb</span>
|
|
276
|
-
</div>
|
|
277
|
-
</TooltipContent>
|
|
278
|
-
</Tooltip>
|
|
279
|
-
</div>
|
|
280
|
-
</div>
|
|
281
|
-
</div>
|
|
282
|
-
</div>
|
|
283
|
-
),
|
|
284
|
-
};
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
2
|
-
import {cva, type VariantProps} from 'class-variance-authority';
|
|
3
|
-
import {motion, type Transition} from 'framer-motion';
|
|
4
|
-
import type {ComponentProps} from 'react';
|
|
5
|
-
import {cn} from 'utils/cn';
|
|
6
|
-
|
|
7
|
-
const tooltipContentVariants = cva(
|
|
8
|
-
'rounded-8 px-8 py-4 text-xs font-medium leading-20 z-50 w-fit text-balance shadow-tooltip',
|
|
9
|
-
{
|
|
10
|
-
variants: {
|
|
11
|
-
variant: {
|
|
12
|
-
default: 'bg-background-components-base text-foreground-neutral-base',
|
|
13
|
-
inverted: 'bg-background-button-inverted-default text-foreground-contrast-primary',
|
|
14
|
-
muted: 'bg-background-neutral-subtle text-foreground-neutral-muted',
|
|
15
|
-
},
|
|
16
|
-
size: {
|
|
17
|
-
sm: 'px-6 py-2 text-xs',
|
|
18
|
-
md: 'px-8 py-4 text-xs',
|
|
19
|
-
lg: 'px-10 py-6 text-sm',
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
defaultVariants: {
|
|
23
|
-
variant: 'default',
|
|
24
|
-
size: 'md',
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
);
|
|
28
|
-
|
|
29
|
-
function TooltipProvider({
|
|
30
|
-
delayDuration = 0,
|
|
31
|
-
...props
|
|
32
|
-
}: ComponentProps<typeof TooltipPrimitive.Provider>) {
|
|
33
|
-
return (
|
|
34
|
-
<TooltipPrimitive.Provider
|
|
35
|
-
data-slot="tooltip-provider"
|
|
36
|
-
delayDuration={delayDuration}
|
|
37
|
-
{...props}
|
|
38
|
-
/>
|
|
39
|
-
);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
function Tooltip({...props}: ComponentProps<typeof TooltipPrimitive.Root>) {
|
|
43
|
-
return (
|
|
44
|
-
<TooltipProvider>
|
|
45
|
-
<TooltipPrimitive.Root data-slot="tooltip" {...props} />
|
|
46
|
-
</TooltipProvider>
|
|
47
|
-
);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
function TooltipTrigger({...props}: ComponentProps<typeof TooltipPrimitive.Trigger>) {
|
|
51
|
-
return <TooltipPrimitive.Trigger data-slot="tooltip-trigger" {...props} />;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
const defaultTransition: Transition = {
|
|
55
|
-
type: 'spring',
|
|
56
|
-
stiffness: 300,
|
|
57
|
-
damping: 17,
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
type TooltipContentProps = ComponentProps<typeof TooltipPrimitive.Content> &
|
|
61
|
-
VariantProps<typeof tooltipContentVariants> & {
|
|
62
|
-
animated?: boolean;
|
|
63
|
-
transition?: Transition;
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
function TooltipContent({
|
|
67
|
-
className,
|
|
68
|
-
sideOffset = 8,
|
|
69
|
-
children,
|
|
70
|
-
variant,
|
|
71
|
-
size,
|
|
72
|
-
animated = true,
|
|
73
|
-
transition = defaultTransition,
|
|
74
|
-
...props
|
|
75
|
-
}: TooltipContentProps) {
|
|
76
|
-
if (animated) {
|
|
77
|
-
return (
|
|
78
|
-
<TooltipPrimitive.Portal>
|
|
79
|
-
<TooltipPrimitive.Content
|
|
80
|
-
data-slot="tooltip-content"
|
|
81
|
-
sideOffset={sideOffset}
|
|
82
|
-
asChild
|
|
83
|
-
{...props}
|
|
84
|
-
>
|
|
85
|
-
<motion.div
|
|
86
|
-
className={cn(tooltipContentVariants({variant, size, className}))}
|
|
87
|
-
initial={{opacity: 0, scale: 0.95}}
|
|
88
|
-
animate={{opacity: 1, scale: 1}}
|
|
89
|
-
exit={{opacity: 0, scale: 0.95}}
|
|
90
|
-
transition={transition}
|
|
91
|
-
>
|
|
92
|
-
{children}
|
|
93
|
-
</motion.div>
|
|
94
|
-
</TooltipPrimitive.Content>
|
|
95
|
-
</TooltipPrimitive.Portal>
|
|
96
|
-
);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
return (
|
|
100
|
-
<TooltipPrimitive.Portal>
|
|
101
|
-
<TooltipPrimitive.Content
|
|
102
|
-
data-slot="tooltip-content"
|
|
103
|
-
sideOffset={sideOffset}
|
|
104
|
-
className={cn(tooltipContentVariants({variant, size, className}))}
|
|
105
|
-
{...props}
|
|
106
|
-
>
|
|
107
|
-
{children}
|
|
108
|
-
</TooltipPrimitive.Content>
|
|
109
|
-
</TooltipPrimitive.Portal>
|
|
110
|
-
);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
export {
|
|
114
|
-
Tooltip,
|
|
115
|
-
TooltipTrigger,
|
|
116
|
-
TooltipContent,
|
|
117
|
-
TooltipProvider,
|
|
118
|
-
tooltipContentVariants,
|
|
119
|
-
defaultTransition,
|
|
120
|
-
};
|
|
121
|
-
export type {TooltipContentProps};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import type {Meta, StoryObj} from '@storybook/react';
|
|
2
|
-
import {Code} from './code';
|
|
3
|
-
|
|
4
|
-
const meta: Meta = {
|
|
5
|
-
title: 'Typography/Code',
|
|
6
|
-
};
|
|
7
|
-
export default meta;
|
|
8
|
-
|
|
9
|
-
type Story = StoryObj;
|
|
10
|
-
|
|
11
|
-
const variants = ['label', 'paragraph'] as const;
|
|
12
|
-
|
|
13
|
-
export const Default: Story = {
|
|
14
|
-
render: () => (
|
|
15
|
-
<div className="flex flex-col gap-16">
|
|
16
|
-
{variants.map((variant) => (
|
|
17
|
-
<div key={variant} className="grid grid-cols-2 gap-8">
|
|
18
|
-
<div className="flex flex-col gap-4">
|
|
19
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
20
|
-
{variant}
|
|
21
|
-
</Code>
|
|
22
|
-
<Code variant={variant}>The quick brown fox jumps over the lazy dog</Code>
|
|
23
|
-
</div>
|
|
24
|
-
<div className="flex flex-col gap-4">
|
|
25
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
26
|
-
{variant} - Bold
|
|
27
|
-
</Code>
|
|
28
|
-
<Code variant={variant} bold>
|
|
29
|
-
The quick brown fox jumps over the lazy dog
|
|
30
|
-
</Code>
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
))}
|
|
34
|
-
</div>
|
|
35
|
-
),
|
|
36
|
-
};
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import {cva, type VariantProps} from 'class-variance-authority';
|
|
2
|
-
import type {ElementType, HTMLAttributes, PropsWithChildren} from 'react';
|
|
3
|
-
import {cn} from 'utils';
|
|
4
|
-
|
|
5
|
-
export const codeVariants = cva('', {
|
|
6
|
-
variants: {
|
|
7
|
-
variant: {
|
|
8
|
-
label: 'text-xs',
|
|
9
|
-
paragraph: 'text-sm',
|
|
10
|
-
},
|
|
11
|
-
},
|
|
12
|
-
defaultVariants: {
|
|
13
|
-
variant: 'paragraph',
|
|
14
|
-
},
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
export type CodeProps = PropsWithChildren<HTMLAttributes<HTMLParagraphElement>> &
|
|
18
|
-
VariantProps<typeof codeVariants> & {
|
|
19
|
-
as?: ElementType;
|
|
20
|
-
bold?: boolean;
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
export function Code({children, className, variant, as, bold, ...props}: CodeProps) {
|
|
24
|
-
const Component = as ?? 'p';
|
|
25
|
-
return (
|
|
26
|
-
<Component
|
|
27
|
-
className={cn(
|
|
28
|
-
codeVariants({variant}),
|
|
29
|
-
'leading-20 font-code',
|
|
30
|
-
{'font-bold': bold},
|
|
31
|
-
className,
|
|
32
|
-
)}
|
|
33
|
-
{...props}
|
|
34
|
-
>
|
|
35
|
-
{children}
|
|
36
|
-
</Component>
|
|
37
|
-
);
|
|
38
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type {Meta, StoryObj} from '@storybook/react';
|
|
2
|
-
import {Code} from './code';
|
|
3
|
-
import {Header} from './header';
|
|
4
|
-
|
|
5
|
-
const meta: Meta = {
|
|
6
|
-
title: 'Typography/Header',
|
|
7
|
-
};
|
|
8
|
-
export default meta;
|
|
9
|
-
|
|
10
|
-
type Story = StoryObj;
|
|
11
|
-
|
|
12
|
-
const variants = ['h1', 'h2', 'h3', 'h4'] as const;
|
|
13
|
-
|
|
14
|
-
export const Default: Story = {
|
|
15
|
-
render: () => (
|
|
16
|
-
<div className="flex flex-col gap-16">
|
|
17
|
-
{variants.map((variant) => (
|
|
18
|
-
<div key={variant} className="flex flex-col gap-4">
|
|
19
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
20
|
-
{variant}
|
|
21
|
-
</Code>
|
|
22
|
-
<Header variant={variant}>The quick brown fox jumps over the lazy dog</Header>
|
|
23
|
-
</div>
|
|
24
|
-
))}
|
|
25
|
-
</div>
|
|
26
|
-
),
|
|
27
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import {cva, type VariantProps} from 'class-variance-authority';
|
|
2
|
-
import type {ElementType, HTMLAttributes, PropsWithChildren} from 'react';
|
|
3
|
-
import {cn} from 'utils';
|
|
4
|
-
|
|
5
|
-
export const headerVariants = cva('', {
|
|
6
|
-
variants: {
|
|
7
|
-
variant: {
|
|
8
|
-
h1: 'text-3xl',
|
|
9
|
-
h2: 'text-xl',
|
|
10
|
-
h3: 'text-lg',
|
|
11
|
-
h4: 'text-md',
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
defaultVariants: {
|
|
15
|
-
variant: 'h1',
|
|
16
|
-
},
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
const components = {
|
|
20
|
-
h1: 'h1',
|
|
21
|
-
h2: 'h2',
|
|
22
|
-
h3: 'h3',
|
|
23
|
-
h4: 'h4',
|
|
24
|
-
} as const;
|
|
25
|
-
|
|
26
|
-
export type HeaderProps = PropsWithChildren<HTMLAttributes<HTMLParagraphElement>> &
|
|
27
|
-
VariantProps<typeof headerVariants> & {
|
|
28
|
-
as?: ElementType;
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export function Header({children, className, variant, as, ...props}: HeaderProps) {
|
|
32
|
-
const Component = as ?? (variant ? components[variant] : 'h1');
|
|
33
|
-
return (
|
|
34
|
-
<Component
|
|
35
|
-
className={cn(headerVariants({variant}), 'font-display font-medium', className)}
|
|
36
|
-
{...props}
|
|
37
|
-
>
|
|
38
|
-
{children}
|
|
39
|
-
</Component>
|
|
40
|
-
);
|
|
41
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import type {Meta, StoryObj} from '@storybook/react';
|
|
2
|
-
import {Code} from './code';
|
|
3
|
-
import {Text} from './text';
|
|
4
|
-
|
|
5
|
-
const meta: Meta = {
|
|
6
|
-
title: 'Typography/Text',
|
|
7
|
-
};
|
|
8
|
-
export default meta;
|
|
9
|
-
|
|
10
|
-
type Story = StoryObj;
|
|
11
|
-
|
|
12
|
-
const sizes = ['xs', 'sm', 'md', 'lg', 'xl'] as const;
|
|
13
|
-
|
|
14
|
-
export const Default: Story = {
|
|
15
|
-
render: () => (
|
|
16
|
-
<div className="flex flex-col gap-16">
|
|
17
|
-
{sizes.map((size) => (
|
|
18
|
-
<div key={size} className="grid grid-cols-2 gap-8">
|
|
19
|
-
<div className="flex flex-col gap-4">
|
|
20
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
21
|
-
{size}
|
|
22
|
-
</Code>
|
|
23
|
-
<Text size={size}>The quick brown fox jumps over the lazy dog</Text>
|
|
24
|
-
</div>
|
|
25
|
-
<div className="flex flex-col gap-4">
|
|
26
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
27
|
-
{size} - Bold
|
|
28
|
-
</Code>
|
|
29
|
-
<Text size={size} bold>
|
|
30
|
-
The quick brown fox jumps over the lazy dog
|
|
31
|
-
</Text>
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
))}
|
|
35
|
-
</div>
|
|
36
|
-
),
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
const textParagraph =
|
|
40
|
-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
|
|
41
|
-
|
|
42
|
-
export const Paragraph: Story = {
|
|
43
|
-
render: () => (
|
|
44
|
-
<div className="flex flex-col gap-16">
|
|
45
|
-
{sizes.map((size) => (
|
|
46
|
-
<div key={size} className="grid grid-cols-2 gap-8">
|
|
47
|
-
<div className="flex flex-col gap-4">
|
|
48
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
49
|
-
{size} - Regular
|
|
50
|
-
</Code>
|
|
51
|
-
<Text size={size} compact={false}>
|
|
52
|
-
{textParagraph}
|
|
53
|
-
</Text>
|
|
54
|
-
</div>
|
|
55
|
-
<div className="flex flex-col gap-4">
|
|
56
|
-
<Code variant="label" className="text-foreground-neutral-subtle">
|
|
57
|
-
{size} - Compact
|
|
58
|
-
</Code>
|
|
59
|
-
<Text size={size} compact={true}>
|
|
60
|
-
{textParagraph}
|
|
61
|
-
</Text>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
))}
|
|
65
|
-
</div>
|
|
66
|
-
),
|
|
67
|
-
};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import {cva, type VariantProps} from 'class-variance-authority';
|
|
2
|
-
import type {ElementType, HTMLAttributes, PropsWithChildren} from 'react';
|
|
3
|
-
import {cn} from 'utils';
|
|
4
|
-
|
|
5
|
-
export const textVariants = cva('', {
|
|
6
|
-
variants: {
|
|
7
|
-
size: {
|
|
8
|
-
xs: 'text-xs',
|
|
9
|
-
sm: 'text-sm',
|
|
10
|
-
md: 'text-md',
|
|
11
|
-
lg: 'text-lg',
|
|
12
|
-
xl: 'text-xl',
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
defaultVariants: {
|
|
16
|
-
size: 'md',
|
|
17
|
-
},
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
export type TextProps = PropsWithChildren<HTMLAttributes<HTMLParagraphElement>> &
|
|
21
|
-
VariantProps<typeof textVariants> & {
|
|
22
|
-
as?: ElementType;
|
|
23
|
-
compact?: boolean;
|
|
24
|
-
bold?: boolean;
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
export function Text({
|
|
28
|
-
children,
|
|
29
|
-
className,
|
|
30
|
-
size,
|
|
31
|
-
as,
|
|
32
|
-
compact = true,
|
|
33
|
-
bold = false,
|
|
34
|
-
...props
|
|
35
|
-
}: TextProps) {
|
|
36
|
-
const Component = as ?? 'p';
|
|
37
|
-
return (
|
|
38
|
-
<Component
|
|
39
|
-
className={cn(
|
|
40
|
-
textVariants({size}),
|
|
41
|
-
'font-display',
|
|
42
|
-
{'leading-20': compact, 'font-medium': bold},
|
|
43
|
-
className,
|
|
44
|
-
)}
|
|
45
|
-
{...props}
|
|
46
|
-
>
|
|
47
|
-
{children}
|
|
48
|
-
</Component>
|
|
49
|
-
);
|
|
50
|
-
}
|
package/src/hooks/index.ts
DELETED
package/src/hooks/useCopy.ts
DELETED
|
File without changes
|