@hanzo/ui 0.5.24 → 0.6.16
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/.eslintrc.js +4 -0
- package/.prettierrc +22 -0
- package/.rush/temp/chunked-rush-logs/ui._phase_build.chunks.jsonl +2 -0
- package/.rush/temp/chunked-rush-logs/ui._phase_validate.chunks.jsonl +11 -0
- package/.rush/temp/hcengineering+ui-_phase_build-16380278e5d28b32a6666092bd103ddbd2c66a56.tar.log +12 -0
- package/.rush/temp/hcengineering+ui-_phase_build-16380278e5d28b32a6666092bd103ddbd2c66a56.untar.log +10 -0
- package/.rush/temp/hcengineering+ui-_phase_validate-8f047ca66e6a4a177eee65782e723a7dc128d73e.tar.log +65 -0
- package/.rush/temp/hcengineering+ui-_phase_validate-8f047ca66e6a4a177eee65782e723a7dc128d73e.untar.log +10 -0
- package/.rush/temp/operation/_phase_build/all.log +2 -0
- package/.rush/temp/operation/_phase_build/log-chunks.jsonl +2 -0
- package/.rush/temp/operation/_phase_build/state.json +3 -0
- package/.rush/temp/operation/_phase_validate/all.log +11 -0
- package/.rush/temp/operation/_phase_validate/log-chunks.jsonl +11 -0
- package/.rush/temp/operation/_phase_validate/state.json +3 -0
- package/.rush/temp/shrinkwrap-deps.json +585 -0
- package/.validate/tsBuildInfoFile.info +1 -0
- package/.validate/validate-err.log +0 -0
- package/.validate/validate.log +0 -0
- package/CHANGELOG.json +17 -0
- package/CHANGELOG.md +9 -0
- package/config/rig.json +5 -0
- package/jest.config.js +5 -0
- package/lang/cs.json +119 -0
- package/lang/de.json +119 -0
- package/lang/en.json +120 -0
- package/lang/es.json +120 -0
- package/lang/fr.json +120 -0
- package/lang/it.json +120 -0
- package/lang/pt.json +120 -0
- package/lang/ru.json +120 -0
- package/lang/zh.json +120 -0
- package/package.json +52 -100
- package/postcss.config.js +5 -0
- package/rush-logs/ui._phase_build.cache.log +4 -0
- package/rush-logs/ui._phase_build.log +2 -0
- package/rush-logs/ui._phase_validate.cache.log +4 -0
- package/rush-logs/ui._phase_validate.log +11 -0
- package/src/__test__/location.test.ts +12 -0
- package/src/colors.ts +552 -0
- package/src/components/AccordionItem.svelte +132 -0
- package/src/components/ActionIcon.svelte +88 -0
- package/src/components/BarDashboard.svelte +47 -0
- package/src/components/BooleanIcon.svelte +31 -0
- package/src/components/Breadcrumb.svelte +102 -0
- package/src/components/Breadcrumbs.svelte +73 -0
- package/src/components/Button.svelte +196 -0
- package/src/components/ButtonBase.svelte +117 -0
- package/src/components/ButtonGroup.svelte +48 -0
- package/src/components/ButtonIcon.svelte +63 -0
- package/src/components/ButtonMenu.svelte +103 -0
- package/src/components/ButtonWithDropdown.svelte +120 -0
- package/src/components/CheckBox.svelte +239 -0
- package/src/components/CheckBoxList.svelte.txt +88 -0
- package/src/components/CheckBoxWithLabel.svelte.txt +147 -0
- package/src/components/Chevron.svelte +85 -0
- package/src/components/Chip.svelte +109 -0
- package/src/components/CircleButton.svelte +165 -0
- package/src/components/CodeForm.svelte +164 -0
- package/src/components/CodeInput.svelte +86 -0
- package/src/components/ColorPopup.svelte +119 -0
- package/src/components/Component.svelte +152 -0
- package/src/components/Dialog.svelte +105 -0
- package/src/components/Dock.svelte +53 -0
- package/src/components/Dropdown.svelte +91 -0
- package/src/components/DropdownLabels.svelte +156 -0
- package/src/components/DropdownLabelsIntl.svelte +108 -0
- package/src/components/DropdownLabelsPopup.svelte +148 -0
- package/src/components/DropdownLabelsPopupIntl.svelte +72 -0
- package/src/components/DropdownPopup.svelte +146 -0
- package/src/components/DropdownRecord.svelte +50 -0
- package/src/components/DropdownRecordPopup.svelte +82 -0
- package/src/components/EditBox.svelte +211 -0
- package/src/components/EditWithIcon.svelte +130 -0
- package/src/components/EmbeddedPDF.svelte +88 -0
- package/src/components/ErrorPopup.svelte +27 -0
- package/src/components/ErrorPresenter.svelte +32 -0
- package/src/components/ExpandCollapse.svelte +42 -0
- package/src/components/Expandable.svelte +90 -0
- package/src/components/FocusHandler.svelte +21 -0
- package/src/components/Fold.svelte +52 -0
- package/src/components/Grid.svelte +39 -0
- package/src/components/Header.svelte +260 -0
- package/src/components/HlsVideo.svelte +170 -0
- package/src/components/Hotkey.svelte +50 -0
- package/src/components/HotkeyGroup.svelte +25 -0
- package/src/components/Html.svelte +24 -0
- package/src/components/Icon.svelte +45 -0
- package/src/components/IconWithEmoji.svelte +74 -0
- package/src/components/Image.svelte +71 -0
- package/src/components/Label.svelte +38 -0
- package/src/components/Lazy.svelte +29 -0
- package/src/components/Like.svelte +73 -0
- package/src/components/Link.svelte +75 -0
- package/src/components/LinkWrapper.svelte +35 -0
- package/src/components/ListView.svelte +153 -0
- package/src/components/ListViewItem.svelte +84 -0
- package/src/components/Loading.svelte +88 -0
- package/src/components/Menu.svelte +205 -0
- package/src/components/MiniToggle.svelte +125 -0
- package/src/components/Modal.svelte +117 -0
- package/src/components/ModeSelector.svelte +37 -0
- package/src/components/ModernButton.svelte +61 -0
- package/src/components/ModernCheckbox.svelte +123 -0
- package/src/components/ModernDialog.svelte +258 -0
- package/src/components/ModernEditbox.svelte +256 -0
- package/src/components/ModernPopup.svelte +105 -0
- package/src/components/ModernRadioButton.svelte +111 -0
- package/src/components/ModernTab.svelte +184 -0
- package/src/components/ModernToggle.svelte +153 -0
- package/src/components/MouseSpeedTracker.svelte +74 -0
- package/src/components/MultiProgress.svelte +97 -0
- package/src/components/NavGroup.svelte +160 -0
- package/src/components/NavItem.svelte +346 -0
- package/src/components/NestedDropdown.svelte +62 -0
- package/src/components/NestedMenu.svelte +119 -0
- package/src/components/NotificationToast.svelte +112 -0
- package/src/components/NumberInput.svelte +200 -0
- package/src/components/Panel.svelte +324 -0
- package/src/components/PanelInstance.svelte +254 -0
- package/src/components/PlainTextEditor.svelte +100 -0
- package/src/components/Popup.svelte +50 -0
- package/src/components/PopupInstance.svelte +390 -0
- package/src/components/PopupMenu.svelte +120 -0
- package/src/components/Progress.svelte +124 -0
- package/src/components/ProgressCircle.svelte +71 -0
- package/src/components/RadioButton.svelte +69 -0
- package/src/components/RadioGroup.svelte +42 -0
- package/src/components/RootStatusComponent.svelte +65 -0
- package/src/components/Row.svelte +25 -0
- package/src/components/ScrollBox.svelte +98 -0
- package/src/components/Scroller.svelte +1063 -0
- package/src/components/ScrollerBar.svelte +181 -0
- package/src/components/SearchEdit.svelte +46 -0
- package/src/components/SearchInput.svelte +213 -0
- package/src/components/SearchPicker.svelte +114 -0
- package/src/components/Section.svelte +49 -0
- package/src/components/SectionEmpty.svelte +38 -0
- package/src/components/SelectBox.svelte +76 -0
- package/src/components/SelectPopup.svelte +217 -0
- package/src/components/Separator.svelte +736 -0
- package/src/components/ShowMore.svelte +99 -0
- package/src/components/Spinner.svelte +72 -0
- package/src/components/SplitButton.svelte +100 -0
- package/src/components/StateTag.svelte +79 -0
- package/src/components/Status.svelte +33 -0
- package/src/components/StepsDialog.svelte +290 -0
- package/src/components/StylishEdit.svelte +127 -0
- package/src/components/Submenu.svelte +68 -0
- package/src/components/Switcher.svelte +55 -0
- package/src/components/SwitcherBase.svelte +116 -0
- package/src/components/TabList.svelte +290 -0
- package/src/components/Tabs.svelte +45 -0
- package/src/components/TabsControl.svelte +113 -0
- package/src/components/TextArea.svelte +110 -0
- package/src/components/TextAreaEditor.svelte +78 -0
- package/src/components/TimeLeft.svelte +66 -0
- package/src/components/TimeShiftPicker.svelte +84 -0
- package/src/components/TimeShiftPopup.svelte +64 -0
- package/src/components/TimeShiftPresenter.svelte +59 -0
- package/src/components/TimeSince.svelte +86 -0
- package/src/components/TimeZonesPopup.svelte +185 -0
- package/src/components/Timeline.svelte +754 -0
- package/src/components/Toggle.svelte +116 -0
- package/src/components/ToggleButton.svelte +176 -0
- package/src/components/ToggleWithLabel.svelte +58 -0
- package/src/components/TooltipInstance.svelte +613 -0
- package/src/components/Video.svelte +40 -0
- package/src/components/calendar/DateInputBox.svelte +430 -0
- package/src/components/calendar/DatePicker.svelte +46 -0
- package/src/components/calendar/DatePopup.svelte +274 -0
- package/src/components/calendar/DatePresenter.svelte +392 -0
- package/src/components/calendar/DateRangePicker.svelte +50 -0
- package/src/components/calendar/DateRangePopup.svelte +76 -0
- package/src/components/calendar/DateRangePresenter.svelte +779 -0
- package/src/components/calendar/DateTimePresenter.svelte +23 -0
- package/src/components/calendar/DateTimeRangePresenter.svelte +28 -0
- package/src/components/calendar/DueDatePopup.svelte +93 -0
- package/src/components/calendar/DueDatePresenter.svelte +83 -0
- package/src/components/calendar/Month.svelte +243 -0
- package/src/components/calendar/MonthCalendar.svelte +138 -0
- package/src/components/calendar/MonthSquare.svelte +315 -0
- package/src/components/calendar/RangeDatePopup.svelte +231 -0
- package/src/components/calendar/Shifts.svelte +114 -0
- package/src/components/calendar/SimpleDatePopup.svelte +42 -0
- package/src/components/calendar/SimpleTimePopup.svelte +41 -0
- package/src/components/calendar/TimeInputBox.svelte +282 -0
- package/src/components/calendar/TimePopup.svelte +62 -0
- package/src/components/calendar/WeekCalendar.svelte +116 -0
- package/src/components/calendar/YearCalendar.svelte +67 -0
- package/src/components/calendar/icons/DPCalendar.svelte +12 -0
- package/src/components/calendar/icons/DPCalendarOver.svelte +15 -0
- package/src/components/calendar/icons/DPClock.svelte +13 -0
- package/src/components/calendar/icons/DPClockBold.svelte +10 -0
- package/src/components/calendar/icons/DPEnd.svelte +13 -0
- package/src/components/calendar/icons/DPSetCalendar.svelte +10 -0
- package/src/components/calendar/icons/DPStart.svelte +13 -0
- package/src/components/calendar/internal/DateUtils.ts +186 -0
- package/src/components/emoji/ActionsPopup.svelte +116 -0
- package/src/components/emoji/EmojiButton.svelte +146 -0
- package/src/components/emoji/EmojiGroup.svelte +105 -0
- package/src/components/emoji/EmojiGroupPalette.svelte +58 -0
- package/src/components/emoji/EmojiPopup.svelte +430 -0
- package/src/components/emoji/SkinTonePopup.svelte +40 -0
- package/src/components/emoji/SkinToneTooltip.svelte +36 -0
- package/src/components/emoji/icons/Activities.svelte +20 -0
- package/src/components/emoji/icons/AnimalsAndNature.svelte +16 -0
- package/src/components/emoji/icons/Flags.svelte +14 -0
- package/src/components/emoji/icons/FoodAndDrink.svelte +20 -0
- package/src/components/emoji/icons/FrequentlyUsed.svelte +17 -0
- package/src/components/emoji/icons/GettingWorkDone.svelte +14 -0
- package/src/components/emoji/icons/Objects.svelte +15 -0
- package/src/components/emoji/icons/Search.svelte +14 -0
- package/src/components/emoji/icons/SmileysAndPeople.svelte +23 -0
- package/src/components/emoji/icons/Symbols.svelte +23 -0
- package/src/components/emoji/icons/TravelAndPlaces.svelte +17 -0
- package/src/components/emoji/index.ts +97 -0
- package/src/components/emoji/store.ts +44 -0
- package/src/components/emoji/types.ts +34 -0
- package/src/components/emoji/utils.ts +182 -0
- package/src/components/icons/Activity.svelte +16 -0
- package/src/components/icons/ActivityEdit.svelte +25 -0
- package/src/components/icons/Add.svelte +10 -0
- package/src/components/icons/ArrowLeft.svelte +25 -0
- package/src/components/icons/ArrowRight.svelte +25 -0
- package/src/components/icons/Attachment.svelte +29 -0
- package/src/components/icons/Back.svelte +32 -0
- package/src/components/icons/BlueCheck.svelte +11 -0
- package/src/components/icons/Calendar.svelte +10 -0
- package/src/components/icons/Check.svelte +12 -0
- package/src/components/icons/CheckAll.svelte +27 -0
- package/src/components/icons/CheckCircle.svelte +12 -0
- package/src/components/icons/Checkmark.svelte +26 -0
- package/src/components/icons/ChevronDown.svelte +27 -0
- package/src/components/icons/ChevronLeft.svelte +22 -0
- package/src/components/icons/ChevronRight.svelte +22 -0
- package/src/components/icons/CircleAdd.svelte +13 -0
- package/src/components/icons/Circles.svelte +43 -0
- package/src/components/icons/Close.svelte +10 -0
- package/src/components/icons/ColStar.svelte +31 -0
- package/src/components/icons/CollapseArrow.svelte +8 -0
- package/src/components/icons/Copy.svelte +10 -0
- package/src/components/icons/Delete.svelte +18 -0
- package/src/components/icons/Description.svelte +31 -0
- package/src/components/icons/Details.svelte +36 -0
- package/src/components/icons/DetailsFilled.svelte +27 -0
- package/src/components/icons/Down.svelte +8 -0
- package/src/components/icons/DownOutline.svelte +8 -0
- package/src/components/icons/Dropdown.svelte +8 -0
- package/src/components/icons/DropdownDown.svelte +24 -0
- package/src/components/icons/DropdownRight.svelte +24 -0
- package/src/components/icons/Edit.svelte +26 -0
- package/src/components/icons/Emoji.svelte +10 -0
- package/src/components/icons/Error.svelte +27 -0
- package/src/components/icons/Expand.svelte +10 -0
- package/src/components/icons/File.svelte +25 -0
- package/src/components/icons/Filter.svelte +26 -0
- package/src/components/icons/Folder.svelte +13 -0
- package/src/components/icons/FolderCollapsed.svelte +34 -0
- package/src/components/icons/FolderExpanded.svelte +34 -0
- package/src/components/icons/Forward.svelte +8 -0
- package/src/components/icons/HalfUpDown.svelte +7 -0
- package/src/components/icons/History.svelte +10 -0
- package/src/components/icons/Info.svelte +26 -0
- package/src/components/icons/KeyCommand.svelte +12 -0
- package/src/components/icons/KeyOption.svelte +8 -0
- package/src/components/icons/KeyShift.svelte +8 -0
- package/src/components/icons/Left.svelte +10 -0
- package/src/components/icons/Like.svelte +25 -0
- package/src/components/icons/Link.svelte +10 -0
- package/src/components/icons/MaxWidth.svelte +27 -0
- package/src/components/icons/Maximize.svelte +25 -0
- package/src/components/icons/MenuClose.svelte +28 -0
- package/src/components/icons/MenuOpen.svelte +26 -0
- package/src/components/icons/MinWidth.svelte +27 -0
- package/src/components/icons/Minimize.svelte +28 -0
- package/src/components/icons/Mixin.svelte +38 -0
- package/src/components/icons/MoreH.svelte +16 -0
- package/src/components/icons/MoreV.svelte +16 -0
- package/src/components/icons/MoreV2.svelte +29 -0
- package/src/components/icons/NavNext.svelte +10 -0
- package/src/components/icons/NavPrev.svelte +10 -0
- package/src/components/icons/Open.svelte +11 -0
- package/src/components/icons/OpenedArrow.svelte +26 -0
- package/src/components/icons/Options.svelte +12 -0
- package/src/components/icons/Redo.svelte +10 -0
- package/src/components/icons/Right.svelte +26 -0
- package/src/components/icons/Scale.svelte +13 -0
- package/src/components/icons/ScaleFull.svelte +13 -0
- package/src/components/icons/Scribble.svelte +10 -0
- package/src/components/icons/Search.svelte +12 -0
- package/src/components/icons/Send.svelte +10 -0
- package/src/components/icons/Settings.svelte +13 -0
- package/src/components/icons/Share.svelte +13 -0
- package/src/components/icons/SquareExpand.svelte +13 -0
- package/src/components/icons/Start.svelte +10 -0
- package/src/components/icons/Stop.svelte +8 -0
- package/src/components/icons/TableOfContents.svelte +35 -0
- package/src/components/icons/Thread.svelte +29 -0
- package/src/components/icons/ToDetails.svelte +28 -0
- package/src/components/icons/Undo.svelte +10 -0
- package/src/components/icons/Up.svelte +8 -0
- package/src/components/icons/UpOutline.svelte +8 -0
- package/src/components/internal/Clock.svelte +42 -0
- package/src/components/internal/ClockFace.svelte +148 -0
- package/src/components/internal/ClockPopup.svelte +91 -0
- package/src/components/internal/ErrorBoundary.ts +33 -0
- package/src/components/internal/ErrorComponent.svelte +37 -0
- package/src/components/internal/Root.svelte +323 -0
- package/src/components/internal/RootBarExtension.svelte +32 -0
- package/src/components/internal/Settings.svelte +39 -0
- package/src/components/internal/SettingsPopup.svelte +196 -0
- package/src/components/internal/ThemeButton.svelte +151 -0
- package/src/components/internal/icons/CheckCircled.svelte +11 -0
- package/src/components/internal/icons/Computer.svelte +15 -0
- package/src/components/internal/icons/FontSize.svelte +13 -0
- package/src/components/internal/icons/Language.svelte +17 -0
- package/src/components/internal/icons/Phone.svelte +18 -0
- package/src/components/internal/icons/Search.svelte +12 -0
- package/src/components/internal/icons/Settings.svelte +13 -0
- package/src/components/internal/icons/Theme.svelte +9 -0
- package/src/components/internal/icons/WiFi.svelte +21 -0
- package/src/components/notifications/Notification.svelte +34 -0
- package/src/components/notifications/Notification.ts +16 -0
- package/src/components/notifications/NotificationPosition.ts +6 -0
- package/src/components/notifications/NotificationSeverity.ts +6 -0
- package/src/components/notifications/Notifications.svelte +53 -0
- package/src/components/notifications/actions.ts +42 -0
- package/src/components/notifications/store.ts +16 -0
- package/src/components/wizard/ModernWizardBar.svelte +105 -0
- package/src/components/wizard/ModernWizardDialog.svelte +144 -0
- package/src/components/wizard/Wizard.svelte +59 -0
- package/src/components/wizard/WizardStep.svelte +144 -0
- package/src/focus.ts +139 -0
- package/src/index.ts +338 -0
- package/src/lazy.ts +93 -0
- package/src/location.ts +259 -0
- package/src/modals.ts +5 -0
- package/src/panelup.ts +70 -0
- package/src/plugin.ts +156 -0
- package/src/popups.ts +486 -0
- package/src/resize.ts +179 -0
- package/src/svg.d.ts +4 -0
- package/src/tooltips.ts +152 -0
- package/src/types.ts +545 -0
- package/src/utils.ts +420 -0
- package/svelte.config.js +5 -0
- package/tsconfig.json +9 -0
- package/types/__test__/location.test.d.ts +2 -0
- package/types/__test__/location.test.d.ts.map +1 -0
- package/types/colors.d.ts +163 -0
- package/types/colors.d.ts.map +1 -0
- package/types/components/calendar/internal/DateUtils.d.ts +34 -0
- package/types/components/calendar/internal/DateUtils.d.ts.map +1 -0
- package/types/components/emoji/index.d.ts +11 -0
- package/types/components/emoji/index.d.ts.map +1 -0
- package/types/components/emoji/store.d.ts +12 -0
- package/types/components/emoji/store.d.ts.map +1 -0
- package/types/components/emoji/types.d.ts +20 -0
- package/types/components/emoji/types.d.ts.map +1 -0
- package/types/components/emoji/utils.d.ts +17 -0
- package/types/components/emoji/utils.d.ts.map +1 -0
- package/types/components/internal/ErrorBoundary.d.ts +5 -0
- package/types/components/internal/ErrorBoundary.d.ts.map +1 -0
- package/types/components/notifications/Notification.d.ts +16 -0
- package/types/components/notifications/Notification.d.ts.map +1 -0
- package/types/components/notifications/NotificationPosition.d.ts +7 -0
- package/types/components/notifications/NotificationPosition.d.ts.map +1 -0
- package/types/components/notifications/NotificationSeverity.d.ts +7 -0
- package/types/components/notifications/NotificationSeverity.d.ts.map +1 -0
- package/types/components/notifications/actions.d.ts +6 -0
- package/types/components/notifications/actions.d.ts.map +1 -0
- package/types/components/notifications/store.d.ts +9 -0
- package/types/components/notifications/store.d.ts.map +1 -0
- package/types/focus.d.ts +32 -0
- package/types/focus.d.ts.map +1 -0
- package/types/index.d.ts +254 -0
- package/types/index.d.ts.map +1 -0
- package/types/lazy.d.ts +6 -0
- package/types/lazy.d.ts.map +1 -0
- package/types/location.d.ts +38 -0
- package/types/location.d.ts.map +1 -0
- package/types/modals.d.ts +5 -0
- package/types/modals.d.ts.map +1 -0
- package/types/panelup.d.ts +17 -0
- package/types/panelup.d.ts.map +1 -0
- package/types/plugin.d.ts +135 -0
- package/types/plugin.d.ts.map +1 -0
- package/types/popups.d.ts +65 -0
- package/types/popups.d.ts.map +1 -0
- package/types/resize.d.ts +32 -0
- package/types/resize.d.ts.map +1 -0
- package/types/tooltips.d.ts +8 -0
- package/types/tooltips.d.ts.map +1 -0
- package/types/types.d.ts +373 -0
- package/types/types.d.ts.map +1 -0
- package/types/utils.d.ts +125 -0
- package/types/utils.d.ts.map +1 -0
- package/assets/lux-site-icons/android-chrome-192x192.png +0 -0
- package/assets/lux-site-icons/android-chrome-512x512.png +0 -0
- package/assets/lux-site-icons/apple-touch-icon.png +0 -0
- package/assets/lux-site-icons/favicon-16x16.png +0 -0
- package/assets/lux-site-icons/favicon-32x32.png +0 -0
- package/assets/lux-site-icons/favicon.ico +0 -0
- package/assets/standard-docs/LUX-NFT-Terms-and-Conditions.pdf +0 -0
- package/assets/standard-docs/LUX-Privacy-Policy.pdf +0 -0
- package/blocks/components/accordian-block.tsx +0 -48
- package/blocks/components/block-component-props.ts +0 -11
- package/blocks/components/bullet-cards-block.tsx +0 -45
- package/blocks/components/card-block.tsx +0 -213
- package/blocks/components/carte-blanche-block/index.tsx +0 -127
- package/blocks/components/carte-blanche-block/variant-content-left.tsx +0 -49
- package/blocks/components/content.tsx +0 -70
- package/blocks/components/cta-block.tsx +0 -98
- package/blocks/components/enh-heading-block.tsx +0 -205
- package/blocks/components/grid-block/grid-block-mutator.ts +0 -12
- package/blocks/components/grid-block/index.tsx +0 -83
- package/blocks/components/grid-block/mutator-registry.ts +0 -10
- package/blocks/components/grid-block/table-borders.mutator.ts +0 -47
- package/blocks/components/group-block.tsx +0 -83
- package/blocks/components/heading-block.tsx +0 -88
- package/blocks/components/image-block.tsx +0 -108
- package/blocks/components/index.ts +0 -30
- package/blocks/components/screenful-block/content.tsx +0 -120
- package/blocks/components/screenful-block/index.tsx +0 -79
- package/blocks/components/screenful-block/poster-background.tsx +0 -34
- package/blocks/components/screenful-block/video-background.tsx +0 -45
- package/blocks/components/space-block.tsx +0 -66
- package/blocks/components/video-block.tsx +0 -137
- package/blocks/def/accordian-block.ts +0 -14
- package/blocks/def/block.ts +0 -7
- package/blocks/def/bullet-cards-block.ts +0 -21
- package/blocks/def/card-block.ts +0 -24
- package/blocks/def/carte-blanche-block.ts +0 -21
- package/blocks/def/cta-block.ts +0 -19
- package/blocks/def/element-block.ts +0 -11
- package/blocks/def/enh-heading-block.ts +0 -45
- package/blocks/def/grid-block.ts +0 -16
- package/blocks/def/group-block.ts +0 -11
- package/blocks/def/heading-block.ts +0 -15
- package/blocks/def/image-block.ts +0 -31
- package/blocks/def/index.ts +0 -35
- package/blocks/def/screenful-block.ts +0 -54
- package/blocks/def/space-block.ts +0 -64
- package/blocks/def/video-block.ts +0 -28
- package/blocks/index.ts +0 -2
- package/common/chat-widget.tsx +0 -75
- package/common/contact-dialog/contact-form.tsx +0 -111
- package/common/contact-dialog/disclaimer.tsx +0 -13
- package/common/contact-dialog/index.tsx +0 -48
- package/common/copyright.tsx +0 -21
- package/common/drawer-menu.tsx +0 -51
- package/common/footer.tsx +0 -77
- package/common/head-metadata/from-next/metadata-types.ts +0 -158
- package/common/head-metadata/from-next/opengraph-types.ts +0 -267
- package/common/head-metadata/from-next/twitter-types.ts +0 -92
- package/common/head-metadata/index.tsx +0 -208
- package/common/header/index.tsx +0 -57
- package/common/header/mobile-nav.tsx +0 -72
- package/common/header/theme-toggle.tsx +0 -26
- package/common/icons/github.tsx +0 -14
- package/common/icons/index.tsx +0 -34
- package/common/icons/lux-logo.tsx +0 -10
- package/common/icons/secure-delivery.tsx +0 -13
- package/common/icons/social-icon.tsx +0 -35
- package/common/icons/youtube-logo.tsx +0 -59
- package/common/index.ts +0 -14
- package/common/logo.tsx +0 -71
- package/common/mini-chart/index.tsx +0 -8
- package/common/mini-chart/mini-chart-props.ts +0 -44
- package/common/mini-chart/mini-chart.tsx +0 -76
- package/common/mini-chart/wrapper.tsx +0 -23
- package/context-providers/index.ts +0 -1
- package/context-providers/theme-provider.tsx +0 -20
- package/next/README.md +0 -11
- package/next/analytics/fpixel.ts +0 -16
- package/next/analytics/pixel-analytics.tsx +0 -55
- package/next/determine-device-middleware.ts +0 -16
- package/next/fonts/DrukTextWide-Bold-Trial.otf +0 -0
- package/next/fonts/DrukTextWide-Heavy-Trial.otf +0 -0
- package/next/fonts/DrukTextWide-Medium-Trial.otf +0 -0
- package/next/fonts/DrukWide-Bold-Trial.otf +0 -0
- package/next/fonts/DrukWide-Heavy-Trial.otf +0 -0
- package/next/fonts/DrukWide-Medium-Trial.otf +0 -0
- package/next/get-app-router-font-classes.ts +0 -12
- package/next/load-and-return-lux-next-fonts-on-import.ts +0 -94
- package/next/next-font-desc.ts +0 -28
- package/next/not-found-content.mdx +0 -4
- package/next/not-found.tsx +0 -23
- package/next/pages-router-font-vars.tsx +0 -18
- package/next/root-layout.tsx +0 -60
- package/primitives/accordion.tsx +0 -61
- package/primitives/action-button.tsx +0 -46
- package/primitives/apply-typography.tsx +0 -55
- package/primitives/avatar.tsx +0 -49
- package/primitives/badge.tsx +0 -36
- package/primitives/button.tsx +0 -73
- package/primitives/calendar.tsx +0 -72
- package/primitives/card.tsx +0 -83
- package/primitives/checkbox.tsx +0 -32
- package/primitives/command.tsx +0 -155
- package/primitives/dialog-video-controller.tsx +0 -38
- package/primitives/dialog.tsx +0 -152
- package/primitives/form.tsx +0 -179
- package/primitives/index.ts +0 -144
- package/primitives/inline-icon.tsx +0 -37
- package/primitives/input.tsx +0 -30
- package/primitives/label.tsx +0 -28
- package/primitives/link-element.tsx +0 -104
- package/primitives/main.tsx +0 -17
- package/primitives/mdx-link.tsx +0 -22
- package/primitives/nav-items.tsx +0 -48
- package/primitives/popover.tsx +0 -35
- package/primitives/progress.tsx +0 -27
- package/primitives/scroll-area.tsx +0 -47
- package/primitives/select.tsx +0 -169
- package/primitives/separator.tsx +0 -29
- package/primitives/sheet.tsx +0 -175
- package/primitives/skeleton.tsx +0 -15
- package/primitives/switch.tsx +0 -33
- package/primitives/table.tsx +0 -117
- package/primitives/tabs.tsx +0 -60
- package/primitives/tailwind-indicator.tsx +0 -19
- package/primitives/text-area.tsx +0 -26
- package/primitives/toast.tsx +0 -129
- package/primitives/toaster.tsx +0 -37
- package/primitives/use-toast.ts +0 -192
- package/primitives/video-player.tsx +0 -26
- package/primitives/youtube-embed.tsx +0 -83
- package/siteDef/footer/community.tsx +0 -67
- package/siteDef/footer/company.ts +0 -37
- package/siteDef/footer/ecosystem.ts +0 -37
- package/siteDef/footer/index.tsx +0 -26
- package/siteDef/footer/legal.ts +0 -28
- package/siteDef/footer/network.ts +0 -33
- package/siteDef/footer/svg/warpcast-logo.svg +0 -12
- package/siteDef/main-nav.ts +0 -35
- package/style/globals.css +0 -13
- package/style/hanzo-common.css +0 -32
- package/style/hanzo-default-colors.css +0 -79
- package/style/social-svg.css +0 -3
- package/tailwind/colors.tailwind.js +0 -46
- package/tailwind/fonts.tailwind.ts +0 -31
- package/tailwind/index.ts +0 -18
- package/tailwind/lux-tw-fonts.ts +0 -37
- package/tailwind/safelist.tailwind.js +0 -26
- package/tailwind/screens.tailwind.js +0 -8
- package/tailwind/spacing.tailwind.js +0 -65
- package/tailwind/tailwind.config.base.js +0 -906
- package/tailwind/tw-font-desc.ts +0 -15
- package/tailwind/typo-plugin/get-plugin-styles.js +0 -676
- package/tailwind/typo-plugin/index.d.ts +0 -9
- package/tailwind/typo-plugin/index.js +0 -141
- package/tailwind/typo-plugin/utils.js +0 -60
- package/tailwind/typography-test.mdx +0 -36
- package/types/breakpoints.ts +0 -11
- package/types/bullet-item.ts +0 -10
- package/types/button-def.ts +0 -39
- package/types/contact-info.ts +0 -11
- package/types/dimensions.ts +0 -20
- package/types/grid-def.ts +0 -56
- package/types/icon.ts +0 -10
- package/types/image-def.ts +0 -28
- package/types/index.ts +0 -29
- package/types/link-def.ts +0 -59
- package/types/site-def.ts +0 -34
- package/types/t-shirt-size.ts +0 -5
- package/util/index.ts +0 -81
- package/util/specifier.ts +0 -43
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
// Copyright © 2020 Hanzo <dev@hanzo.ai>.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License. You may
|
|
6
|
+
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
7
|
+
//
|
|
8
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
//
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
-->
|
|
15
|
+
<script lang="ts">
|
|
16
|
+
import { afterUpdate, onDestroy } from 'svelte'
|
|
17
|
+
import { resizeObserver } from '../resize'
|
|
18
|
+
import { closeTooltip, tooltipstore as tooltip } from '../tooltips'
|
|
19
|
+
import { modalStore as modals } from '../modals'
|
|
20
|
+
import type { TooltipAlignment } from '../types'
|
|
21
|
+
import Component from './Component.svelte'
|
|
22
|
+
import Label from './Label.svelte'
|
|
23
|
+
import { capitalizeFirstLetter, formatKey } from '../utils'
|
|
24
|
+
|
|
25
|
+
let tooltipHTML: HTMLElement
|
|
26
|
+
let nubHTML: HTMLElement
|
|
27
|
+
let dir: TooltipAlignment
|
|
28
|
+
let rect: DOMRect | undefined
|
|
29
|
+
let rectAnchor: DOMRect
|
|
30
|
+
let tooltipSW: boolean // tooltipSW = true - Label; false - Component
|
|
31
|
+
let nubDirection: 'top' | 'bottom' | 'left' | 'right' | undefined = undefined
|
|
32
|
+
let clWidth: number
|
|
33
|
+
let docWidth: number
|
|
34
|
+
let docHeight: number
|
|
35
|
+
let shown: boolean = false
|
|
36
|
+
|
|
37
|
+
$: tooltipSW = !$tooltip.component && $tooltip.kind !== 'submenu'
|
|
38
|
+
$: onUpdate = $tooltip.onUpdate
|
|
39
|
+
$: kind = $tooltip.kind
|
|
40
|
+
|
|
41
|
+
interface TooltipOptions {
|
|
42
|
+
top: string
|
|
43
|
+
bottom: string
|
|
44
|
+
left: string
|
|
45
|
+
right: string
|
|
46
|
+
width: string
|
|
47
|
+
height: string
|
|
48
|
+
maxWidth: string
|
|
49
|
+
transform: string
|
|
50
|
+
visibility: string
|
|
51
|
+
classList: string
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
let options: TooltipOptions = {
|
|
55
|
+
top: '',
|
|
56
|
+
bottom: '',
|
|
57
|
+
left: '',
|
|
58
|
+
right: '',
|
|
59
|
+
width: '',
|
|
60
|
+
height: '',
|
|
61
|
+
maxWidth: '',
|
|
62
|
+
transform: '',
|
|
63
|
+
visibility: 'hidden',
|
|
64
|
+
classList: ''
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const clearStyles = (): void => {
|
|
68
|
+
shown = false
|
|
69
|
+
options = {
|
|
70
|
+
top: '',
|
|
71
|
+
bottom: '',
|
|
72
|
+
left: '',
|
|
73
|
+
right: '',
|
|
74
|
+
width: '',
|
|
75
|
+
height: '',
|
|
76
|
+
maxWidth: '',
|
|
77
|
+
transform: '',
|
|
78
|
+
visibility: 'hidden',
|
|
79
|
+
classList: ''
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const fitTooltip = (tooltipHTMLToCheck: HTMLElement, clWidth?: number): TooltipOptions => {
|
|
84
|
+
const options: TooltipOptions = {
|
|
85
|
+
top: '',
|
|
86
|
+
bottom: '',
|
|
87
|
+
left: '',
|
|
88
|
+
right: '',
|
|
89
|
+
width: '',
|
|
90
|
+
height: '',
|
|
91
|
+
transform: '',
|
|
92
|
+
maxWidth: '',
|
|
93
|
+
visibility: 'visible',
|
|
94
|
+
classList: ''
|
|
95
|
+
}
|
|
96
|
+
if (($tooltip.label || $tooltip.component) && tooltipHTML && tooltipHTMLToCheck) {
|
|
97
|
+
if (clWidth === undefined) {
|
|
98
|
+
clWidth = tooltipHTML.clientWidth
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
let isElementInvalidTarget = false
|
|
102
|
+
|
|
103
|
+
if ($tooltip.element) {
|
|
104
|
+
rect = $tooltip.element.getBoundingClientRect()
|
|
105
|
+
rectAnchor = $tooltip.anchor
|
|
106
|
+
? $tooltip.anchor.getBoundingClientRect()
|
|
107
|
+
: $tooltip.element.getBoundingClientRect()
|
|
108
|
+
|
|
109
|
+
if (rect.x === 0 && rect.y === 0 && rect.width === 0 && rect.height === 0) {
|
|
110
|
+
isElementInvalidTarget = true
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if ($tooltip.component) {
|
|
114
|
+
clearStyles()
|
|
115
|
+
if (rect.bottom + tooltipHTMLToCheck.clientHeight + 28 < docHeight) {
|
|
116
|
+
options.top = `calc(${rect.bottom}px + 5px + .25rem)`
|
|
117
|
+
dir = 'bottom'
|
|
118
|
+
} else if (rect.top > docHeight - rect.bottom) {
|
|
119
|
+
options.bottom = `calc(${docHeight - rect.y}px + 5px + .25rem)`
|
|
120
|
+
if (tooltipHTML.clientHeight > rect.top - 28) {
|
|
121
|
+
options.top = '1rem'
|
|
122
|
+
options.height = `calc(${rect.top}px - 5px - 1.25rem)`
|
|
123
|
+
}
|
|
124
|
+
dir = 'top'
|
|
125
|
+
} else {
|
|
126
|
+
options.top = `calc(${rect.bottom}px + 5px + .25rem)`
|
|
127
|
+
if (tooltipHTMLToCheck.clientHeight > docHeight - rect.bottom - 28) {
|
|
128
|
+
options.bottom = '1rem'
|
|
129
|
+
options.height = `calc(${docHeight - rect.bottom}px - 5px - 1.25rem)`
|
|
130
|
+
}
|
|
131
|
+
dir = 'bottom'
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const tempLeft = rect.width / 2 + rect.left - clWidth / 2
|
|
135
|
+
if (tempLeft + clWidth > docWidth - 8) options.right = '.5rem'
|
|
136
|
+
else if (tempLeft < 8) options.left = '.5rem'
|
|
137
|
+
else options.left = `${tempLeft}px`
|
|
138
|
+
|
|
139
|
+
if (nubHTML) {
|
|
140
|
+
nubHTML.style.top = rect.top + 'px'
|
|
141
|
+
nubHTML.style.left = rect.left + 'px'
|
|
142
|
+
nubHTML.style.width = rect.width + 'px'
|
|
143
|
+
nubHTML.style.height = rect.height + 'px'
|
|
144
|
+
nubDirection = dir
|
|
145
|
+
}
|
|
146
|
+
} else {
|
|
147
|
+
if (!$tooltip.direction) {
|
|
148
|
+
if (rectAnchor.right < docWidth / 5) dir = 'right'
|
|
149
|
+
else if (rectAnchor.left > docWidth - docWidth / 5) dir = 'left'
|
|
150
|
+
else if (rectAnchor.top < tooltipHTMLToCheck.clientHeight) dir = 'bottom'
|
|
151
|
+
else dir = 'top'
|
|
152
|
+
} else dir = $tooltip.direction
|
|
153
|
+
|
|
154
|
+
if (dir === 'right') {
|
|
155
|
+
const maxWidth = Math.min(docWidth / 2, docWidth - rectAnchor.right)
|
|
156
|
+
options.top = rectAnchor.y + rectAnchor.height / 2 + 'px'
|
|
157
|
+
options.left = `calc(${rectAnchor.right}px + .75rem)`
|
|
158
|
+
options.maxWidth = `calc(${maxWidth}px - 1.5rem)`
|
|
159
|
+
options.transform = 'translateY(-50%)'
|
|
160
|
+
} else if (dir === 'left') {
|
|
161
|
+
const maxWidth = Math.min(docWidth / 2, rectAnchor.x)
|
|
162
|
+
options.top = rectAnchor.y + rectAnchor.height / 2 + 'px'
|
|
163
|
+
options.right = `calc(${docWidth - rectAnchor.x}px + .75rem)`
|
|
164
|
+
options.maxWidth = `calc(${maxWidth}px - 1.5rem)`
|
|
165
|
+
options.transform = 'translateY(-50%)'
|
|
166
|
+
} else if (dir === 'bottom') {
|
|
167
|
+
const left = rectAnchor.x + rectAnchor.width / 2
|
|
168
|
+
const maxWidth = Math.min(left, docWidth - left)
|
|
169
|
+
|
|
170
|
+
options.top = `calc(${rectAnchor.bottom}px + .5rem)`
|
|
171
|
+
options.left = rectAnchor.x + rectAnchor.width / 2 + 'px'
|
|
172
|
+
options.maxWidth = `calc(${maxWidth * 2}px - 1.5rem)`
|
|
173
|
+
options.transform = 'translateX(-50%)'
|
|
174
|
+
} else if (dir === 'top') {
|
|
175
|
+
const left = rectAnchor.x + rectAnchor.width / 2
|
|
176
|
+
const maxWidth = Math.min(left, docWidth - left)
|
|
177
|
+
|
|
178
|
+
options.bottom = `calc(${docHeight - rectAnchor.y}px + .75rem)`
|
|
179
|
+
options.left = rectAnchor.x + rectAnchor.width / 2 + 'px'
|
|
180
|
+
options.maxWidth = `calc(${maxWidth * 2}px - 1.5rem)`
|
|
181
|
+
options.transform = 'translateX(-50%)'
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
} else {
|
|
185
|
+
options.top = '50%'
|
|
186
|
+
options.left = '50%'
|
|
187
|
+
options.width = 'min-content'
|
|
188
|
+
options.height = 'min-content'
|
|
189
|
+
options.transform = 'translate(-50%, -50%)'
|
|
190
|
+
options.classList = 'no-arrow'
|
|
191
|
+
}
|
|
192
|
+
if (isElementInvalidTarget) {
|
|
193
|
+
options.visibility = 'hidden'
|
|
194
|
+
shown = false
|
|
195
|
+
} else {
|
|
196
|
+
options.visibility = 'visible'
|
|
197
|
+
shown = true
|
|
198
|
+
}
|
|
199
|
+
} else if (tooltipHTML) {
|
|
200
|
+
shown = false
|
|
201
|
+
options.visibility = 'hidden'
|
|
202
|
+
}
|
|
203
|
+
return options
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
const fitSubmenu = (): TooltipOptions => {
|
|
207
|
+
const options: TooltipOptions = {
|
|
208
|
+
top: '',
|
|
209
|
+
bottom: '',
|
|
210
|
+
left: '',
|
|
211
|
+
right: '',
|
|
212
|
+
width: '',
|
|
213
|
+
height: '',
|
|
214
|
+
maxWidth: '',
|
|
215
|
+
visibility: 'visible',
|
|
216
|
+
transform: '',
|
|
217
|
+
classList: ''
|
|
218
|
+
}
|
|
219
|
+
if (($tooltip.label || $tooltip.component) && tooltipHTML) {
|
|
220
|
+
if ($tooltip.element) {
|
|
221
|
+
rect = $tooltip.element.getBoundingClientRect()
|
|
222
|
+
const rectP = tooltipHTML.getBoundingClientRect()
|
|
223
|
+
const dirH =
|
|
224
|
+
docWidth - rect.right - rectP.width - 16 > 0 ? 'right' : rect.left > docWidth - rect.right ? 'left' : 'right'
|
|
225
|
+
const dirV =
|
|
226
|
+
docHeight - rect.top - rectP.height - 16 > 0
|
|
227
|
+
? 'bottom'
|
|
228
|
+
: rect.bottom > docHeight - rect.top
|
|
229
|
+
? 'top'
|
|
230
|
+
: 'bottom'
|
|
231
|
+
if (dirH === 'right') {
|
|
232
|
+
options.left = rect.right - 4 + 'px'
|
|
233
|
+
} else {
|
|
234
|
+
options.right = docWidth - rect.left - 4 + 'px'
|
|
235
|
+
}
|
|
236
|
+
if (dirV === 'bottom') {
|
|
237
|
+
options.top = rect.top - 4 + 'px'
|
|
238
|
+
} else {
|
|
239
|
+
options.bottom = docHeight - rect.bottom - 4 + 'px'
|
|
240
|
+
}
|
|
241
|
+
options.visibility = 'visible'
|
|
242
|
+
}
|
|
243
|
+
} else if (tooltipHTML) {
|
|
244
|
+
options.visibility = 'hidden'
|
|
245
|
+
}
|
|
246
|
+
return options
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
const hideTooltip = (): void => {
|
|
250
|
+
if (tooltipHTML) options.visibility = 'hidden'
|
|
251
|
+
closeTooltip()
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
$: shownTooltip = $tooltip.element && tooltipHTML
|
|
255
|
+
|
|
256
|
+
const whileShow = (ev: MouseEvent): void => {
|
|
257
|
+
if (!$tooltip.element) return
|
|
258
|
+
const rectP = tooltipHTML.getBoundingClientRect()
|
|
259
|
+
rect = $tooltip.element.getBoundingClientRect()
|
|
260
|
+
const dT: number = dir === 'bottom' && $tooltip.kind !== 'submenu' ? 12 : 0
|
|
261
|
+
const dB: number = dir === 'top' && $tooltip.kind !== 'submenu' ? 12 : 0
|
|
262
|
+
const inTrigger: boolean = ev.x >= rect.left && ev.x <= rect.right && ev.y >= rect.top && ev.y <= rect.bottom
|
|
263
|
+
const inPopup: boolean =
|
|
264
|
+
ev.x >= rectP.left && ev.x <= rectP.right && ev.y >= rectP.top - dT && ev.y <= rectP.bottom + dB
|
|
265
|
+
|
|
266
|
+
if ($tooltip.kind !== 'popup') {
|
|
267
|
+
if ((tooltipSW && !inTrigger) || !(inTrigger || inPopup)) hideTooltip()
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
$: if (kind === 'submenu') {
|
|
272
|
+
options = fitSubmenu()
|
|
273
|
+
} else {
|
|
274
|
+
options = fitTooltip(tooltipHTML, clWidth)
|
|
275
|
+
}
|
|
276
|
+
afterUpdate(() => {
|
|
277
|
+
if (kind === 'submenu') {
|
|
278
|
+
options = fitSubmenu()
|
|
279
|
+
} else {
|
|
280
|
+
options = fitTooltip(tooltipHTML, clWidth)
|
|
281
|
+
}
|
|
282
|
+
})
|
|
283
|
+
onDestroy(() => {
|
|
284
|
+
hideTooltip()
|
|
285
|
+
})
|
|
286
|
+
</script>
|
|
287
|
+
|
|
288
|
+
{#if $tooltip.kind === 'popup'}
|
|
289
|
+
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
290
|
+
<div
|
|
291
|
+
class="modal-overlay antiOverlay"
|
|
292
|
+
style:z-index={($modals.findIndex((t) => t.type === 'tooltip') ?? 1) + 10000}
|
|
293
|
+
on:click|stopPropagation|preventDefault={() => {
|
|
294
|
+
closeTooltip()
|
|
295
|
+
}}
|
|
296
|
+
on:keydown|stopPropagation|preventDefault={() => {}}
|
|
297
|
+
/>
|
|
298
|
+
{/if}
|
|
299
|
+
|
|
300
|
+
<svelte:window
|
|
301
|
+
bind:innerWidth={docWidth}
|
|
302
|
+
bind:innerHeight={docHeight}
|
|
303
|
+
on:resize={() => {
|
|
304
|
+
if ($tooltip.kind !== 'popup') {
|
|
305
|
+
hideTooltip()
|
|
306
|
+
}
|
|
307
|
+
}}
|
|
308
|
+
on:mousemove={(ev) => {
|
|
309
|
+
if (shownTooltip) whileShow(ev)
|
|
310
|
+
}}
|
|
311
|
+
on:keydown={(evt) => {
|
|
312
|
+
if (($tooltip.component || $tooltip.label) && evt.key === 'Escape' && $tooltip.kind !== 'popup') {
|
|
313
|
+
evt.preventDefault()
|
|
314
|
+
evt.stopImmediatePropagation()
|
|
315
|
+
hideTooltip()
|
|
316
|
+
}
|
|
317
|
+
}}
|
|
318
|
+
/>
|
|
319
|
+
{#if $tooltip.component && $tooltip.kind !== 'submenu'}
|
|
320
|
+
<div
|
|
321
|
+
class="popup-tooltip {options.classList}"
|
|
322
|
+
class:shown
|
|
323
|
+
class:doublePadding={$tooltip.label}
|
|
324
|
+
use:resizeObserver={(element) => {
|
|
325
|
+
clWidth = element.clientWidth
|
|
326
|
+
options = fitTooltip(tooltipHTML, clWidth)
|
|
327
|
+
}}
|
|
328
|
+
style:top={options.top}
|
|
329
|
+
style:bottom={options.bottom}
|
|
330
|
+
style:left={options.left}
|
|
331
|
+
style:right={options.right}
|
|
332
|
+
style:width={options.width}
|
|
333
|
+
style:height={options.height}
|
|
334
|
+
style:transform={options.transform}
|
|
335
|
+
style:z-index={($modals.findIndex((t) => t.type === 'tooltip') ?? 1) + 10000}
|
|
336
|
+
bind:this={tooltipHTML}
|
|
337
|
+
>
|
|
338
|
+
{#if $tooltip.label}
|
|
339
|
+
<div class="fs-title mb-4">
|
|
340
|
+
<Label label={$tooltip.label} params={$tooltip.props ?? {}} />
|
|
341
|
+
</div>
|
|
342
|
+
{/if}
|
|
343
|
+
{#if typeof $tooltip.component === 'string'}
|
|
344
|
+
<Component
|
|
345
|
+
is={$tooltip.component}
|
|
346
|
+
props={$tooltip.props}
|
|
347
|
+
on:update={onUpdate !== undefined ? onUpdate : async () => {}}
|
|
348
|
+
/>
|
|
349
|
+
{:else}
|
|
350
|
+
<svelte:component
|
|
351
|
+
this={$tooltip.component}
|
|
352
|
+
{...$tooltip.props}
|
|
353
|
+
on:tooltip={(evt) => {
|
|
354
|
+
$modals = [...$modals.filter((t) => t.type !== 'tooltip'), { ...$tooltip, ...evt.detail }]
|
|
355
|
+
}}
|
|
356
|
+
on:update={onUpdate !== undefined ? onUpdate : async () => {}}
|
|
357
|
+
/>
|
|
358
|
+
{/if}
|
|
359
|
+
</div>
|
|
360
|
+
<svg class="svg-mask">
|
|
361
|
+
<clipPath id="nub-bg">
|
|
362
|
+
<path
|
|
363
|
+
d="M7.3.6 4.2 4.3C2.9 5.4 1.5 6 0 6v1h18V6c-1.5 0-2.9-.6-4.2-1.7L10.7.6C9.9-.1 8.5-.2 7.5.4c0 .1-.1.1-.2.2z"
|
|
364
|
+
/>
|
|
365
|
+
</clipPath>
|
|
366
|
+
<clipPath id="nub-border">
|
|
367
|
+
<path
|
|
368
|
+
d="M4.8 5.1 8 1.3s.1 0 .1-.1c.5-.3 1.4-.3 1.9.1L13.1 5l.1.1 1.2.9H18c-1.5 0-2.9-.6-4.2-1.7L10.7.6C9.9-.1 8.5-.2 7.5.4c0 .1-.1.1-.2.2L4.2 4.3C2.9 5.4 1.5 6 0 6h3.6l1.2-.9z"
|
|
369
|
+
/>
|
|
370
|
+
</clipPath>
|
|
371
|
+
</svg>
|
|
372
|
+
<div
|
|
373
|
+
bind:this={nubHTML}
|
|
374
|
+
style:z-index={($modals.findIndex((t) => t.type === 'tooltip') ?? 1) + 10000}
|
|
375
|
+
class="nub {nubDirection ?? ''}"
|
|
376
|
+
class:shown
|
|
377
|
+
/>
|
|
378
|
+
{:else if $tooltip.label && $tooltip.kind !== 'submenu'}
|
|
379
|
+
<div
|
|
380
|
+
class="tooltip {dir ?? ''} {options.classList}"
|
|
381
|
+
bind:this={tooltipHTML}
|
|
382
|
+
style:top={options.top}
|
|
383
|
+
style:bottom={options.bottom}
|
|
384
|
+
style:left={options.left}
|
|
385
|
+
style:right={options.right}
|
|
386
|
+
style:width={options.width}
|
|
387
|
+
style:height={options.height}
|
|
388
|
+
style:max-width={options.maxWidth}
|
|
389
|
+
style:transform={options.transform}
|
|
390
|
+
style:visibility={options.visibility}
|
|
391
|
+
style:z-index={($modals.findIndex((t) => t.type === 'tooltip') ?? 1) + 10000}
|
|
392
|
+
>
|
|
393
|
+
<span class="label">
|
|
394
|
+
<Label label={$tooltip.label} params={$tooltip.props ?? {}} />
|
|
395
|
+
</span>
|
|
396
|
+
{#if $tooltip.keys !== undefined}
|
|
397
|
+
<div class="keys">
|
|
398
|
+
{#each $tooltip.keys as key, i}
|
|
399
|
+
{#if i !== 0}
|
|
400
|
+
<div class="mr-1 ml-1">/</div>
|
|
401
|
+
{/if}
|
|
402
|
+
{#each formatKey(key) as k, jj}
|
|
403
|
+
<div class="key">
|
|
404
|
+
{#each k as kk, j}
|
|
405
|
+
{#if j !== 0}
|
|
406
|
+
+
|
|
407
|
+
{/if}
|
|
408
|
+
{capitalizeFirstLetter(kk.trim())}
|
|
409
|
+
{/each}
|
|
410
|
+
</div>
|
|
411
|
+
{/each}
|
|
412
|
+
{/each}
|
|
413
|
+
</div>
|
|
414
|
+
{/if}
|
|
415
|
+
</div>
|
|
416
|
+
{:else if $tooltip.kind === 'submenu'}
|
|
417
|
+
<div
|
|
418
|
+
class="submenu-container {dir ?? ''} {options.classList}"
|
|
419
|
+
use:resizeObserver={(element) => {
|
|
420
|
+
clWidth = element.clientWidth
|
|
421
|
+
}}
|
|
422
|
+
style:top={options.top}
|
|
423
|
+
style:bottom={options.bottom}
|
|
424
|
+
style:left={options.left}
|
|
425
|
+
style:right={options.right}
|
|
426
|
+
style:width={options.width}
|
|
427
|
+
style:height={options.height}
|
|
428
|
+
style:transform={options.transform}
|
|
429
|
+
style:z-index={($modals.findIndex((t) => t.type === 'tooltip') ?? 1) + 10000}
|
|
430
|
+
bind:this={tooltipHTML}
|
|
431
|
+
>
|
|
432
|
+
{#if typeof $tooltip.component === 'string'}
|
|
433
|
+
<Component
|
|
434
|
+
is={$tooltip.component}
|
|
435
|
+
props={$tooltip.props}
|
|
436
|
+
on:update={onUpdate !== undefined ? onUpdate : async () => {}}
|
|
437
|
+
/>
|
|
438
|
+
{:else}
|
|
439
|
+
<svelte:component
|
|
440
|
+
this={$tooltip.component}
|
|
441
|
+
{...$tooltip.props}
|
|
442
|
+
on:update={onUpdate !== undefined ? onUpdate : async () => {}}
|
|
443
|
+
/>
|
|
444
|
+
{/if}
|
|
445
|
+
</div>
|
|
446
|
+
{/if}
|
|
447
|
+
|
|
448
|
+
<style lang="scss">
|
|
449
|
+
.submenu-container {
|
|
450
|
+
position: fixed;
|
|
451
|
+
width: auto;
|
|
452
|
+
height: auto;
|
|
453
|
+
border-radius: 0.5rem;
|
|
454
|
+
}
|
|
455
|
+
.popup-tooltip {
|
|
456
|
+
overflow: hidden;
|
|
457
|
+
position: fixed;
|
|
458
|
+
display: flex;
|
|
459
|
+
flex-direction: column;
|
|
460
|
+
padding: 0.5rem;
|
|
461
|
+
max-width: 60vw;
|
|
462
|
+
color: var(--theme-content-color);
|
|
463
|
+
background-color: var(--theme-popup-color);
|
|
464
|
+
border: 1px solid var(--theme-popup-divider);
|
|
465
|
+
border-radius: 0.75rem;
|
|
466
|
+
box-shadow: var(--theme-popup-shadow);
|
|
467
|
+
user-select: none;
|
|
468
|
+
opacity: 0;
|
|
469
|
+
|
|
470
|
+
&.doublePadding {
|
|
471
|
+
padding: 1rem;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.nub {
|
|
476
|
+
position: fixed;
|
|
477
|
+
// background-color: rgba(255, 255, 0, .5);
|
|
478
|
+
user-select: none;
|
|
479
|
+
pointer-events: none;
|
|
480
|
+
opacity: 0;
|
|
481
|
+
|
|
482
|
+
&::after,
|
|
483
|
+
&::before {
|
|
484
|
+
position: absolute;
|
|
485
|
+
width: 18px;
|
|
486
|
+
height: 7px;
|
|
487
|
+
}
|
|
488
|
+
&::before {
|
|
489
|
+
background-color: var(--theme-popup-color);
|
|
490
|
+
clip-path: url('#nub-bg');
|
|
491
|
+
z-index: 1;
|
|
492
|
+
}
|
|
493
|
+
&::after {
|
|
494
|
+
background-color: var(--theme-popup-divider);
|
|
495
|
+
clip-path: url('#nub-border');
|
|
496
|
+
z-index: 2;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
&.top::after,
|
|
500
|
+
&.bottom::after,
|
|
501
|
+
&.top::before,
|
|
502
|
+
&.bottom::before,
|
|
503
|
+
&.right::after,
|
|
504
|
+
&.left::after,
|
|
505
|
+
&.right::before,
|
|
506
|
+
&.left::before {
|
|
507
|
+
content: '';
|
|
508
|
+
}
|
|
509
|
+
&.top::after,
|
|
510
|
+
&.bottom::after,
|
|
511
|
+
&.top::before,
|
|
512
|
+
&.bottom::before {
|
|
513
|
+
left: 50%;
|
|
514
|
+
margin-left: -9px;
|
|
515
|
+
}
|
|
516
|
+
&.top::after,
|
|
517
|
+
&.top::before {
|
|
518
|
+
top: calc(-7px - 0.25rem);
|
|
519
|
+
transform: rotate(180deg);
|
|
520
|
+
}
|
|
521
|
+
&.bottom::after,
|
|
522
|
+
&.bottom::before {
|
|
523
|
+
bottom: calc(-7px - 0.25rem);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
&.right::after,
|
|
527
|
+
&.left::after,
|
|
528
|
+
&.right::before,
|
|
529
|
+
&.left::before {
|
|
530
|
+
top: 50%;
|
|
531
|
+
margin-top: -9px;
|
|
532
|
+
}
|
|
533
|
+
&.left::after,
|
|
534
|
+
&.left::before {
|
|
535
|
+
transform-origin: left top;
|
|
536
|
+
left: -0.25rem;
|
|
537
|
+
transform: rotate(90deg);
|
|
538
|
+
}
|
|
539
|
+
&.right::after,
|
|
540
|
+
&.right::before {
|
|
541
|
+
transform-origin: right top;
|
|
542
|
+
right: -0.25rem;
|
|
543
|
+
transform: rotate(-90deg);
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
.shown {
|
|
547
|
+
transition: opacity 0.1s ease-in-out 0.15s;
|
|
548
|
+
opacity: 1;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.keys {
|
|
552
|
+
margin-left: 0.5rem;
|
|
553
|
+
display: flex;
|
|
554
|
+
flex-shrink: 0;
|
|
555
|
+
align-items: center;
|
|
556
|
+
gap: 0.125rem;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.key {
|
|
560
|
+
border-radius: 0.125rem;
|
|
561
|
+
font-size: 0.75rem;
|
|
562
|
+
min-width: 1.5rem;
|
|
563
|
+
padding: 0.25rem;
|
|
564
|
+
background-color: var(--theme-tooltip-key-bg);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.tooltip {
|
|
568
|
+
position: fixed;
|
|
569
|
+
padding: 0.5rem;
|
|
570
|
+
text-align: center;
|
|
571
|
+
font-size: 0.75rem;
|
|
572
|
+
color: var(--theme-tooltip-color);
|
|
573
|
+
background-color: var(--theme-tooltip-bg);
|
|
574
|
+
border: 1px solid var(--theme-popup-divider);
|
|
575
|
+
border-radius: 0.25rem;
|
|
576
|
+
box-shadow: var(--theme-popup-shadow);
|
|
577
|
+
user-select: none;
|
|
578
|
+
display: flex;
|
|
579
|
+
align-items: center;
|
|
580
|
+
|
|
581
|
+
&::before {
|
|
582
|
+
background-color: var(--theme-popup-color);
|
|
583
|
+
clip-path: url('#nub-bg');
|
|
584
|
+
z-index: 1;
|
|
585
|
+
}
|
|
586
|
+
&::after {
|
|
587
|
+
background-color: var(--theme-popup-divider);
|
|
588
|
+
clip-path: url('#nub-border');
|
|
589
|
+
z-index: 2;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
&:not(:has(.key, .keys)) span.label {
|
|
593
|
+
width: 100%;
|
|
594
|
+
word-wrap: break-word;
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
.no-arrow {
|
|
598
|
+
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75);
|
|
599
|
+
&::after,
|
|
600
|
+
&::before {
|
|
601
|
+
content: none;
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
.modal-overlay {
|
|
605
|
+
position: fixed;
|
|
606
|
+
top: 0;
|
|
607
|
+
left: 0;
|
|
608
|
+
width: 100%;
|
|
609
|
+
height: 100vh;
|
|
610
|
+
pointer-events: all;
|
|
611
|
+
touch-action: none;
|
|
612
|
+
}
|
|
613
|
+
</style>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
// Copyright © 2025 Hardcore Engineering Inc.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License. You may
|
|
6
|
+
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
7
|
+
//
|
|
8
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
//
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
-->
|
|
15
|
+
<script lang="ts">
|
|
16
|
+
export let src: string
|
|
17
|
+
export let name: string | undefined = undefined
|
|
18
|
+
export let preload = true
|
|
19
|
+
|
|
20
|
+
let video: HTMLVideoElement
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<video bind:this={video} {src} width="100%" height="100%" preload={preload ? 'auto' : 'none'} controls>
|
|
24
|
+
<track kind="captions" label={name ?? ''} />
|
|
25
|
+
</video>
|
|
26
|
+
|
|
27
|
+
<style lang="scss">
|
|
28
|
+
video {
|
|
29
|
+
border-radius: inherit;
|
|
30
|
+
object-fit: contain;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
video::-webkit-media-controls {
|
|
34
|
+
visibility: hidden;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
video::-webkit-media-controls-enclosure {
|
|
38
|
+
visibility: visible;
|
|
39
|
+
}
|
|
40
|
+
</style>
|