@hanzo/ui 0.5.23 → 0.6.15
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
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
|
|
3
|
-
import React, { useEffect, useRef } from 'react'
|
|
4
|
-
import { type MiniChartProps } from './mini-chart-props'
|
|
5
|
-
|
|
6
|
-
const MiniChart: React.FC<MiniChartProps> = ({
|
|
7
|
-
widgetProps,
|
|
8
|
-
containerStyles = {}
|
|
9
|
-
}) => {
|
|
10
|
-
|
|
11
|
-
const {
|
|
12
|
-
symbol,
|
|
13
|
-
exchange,
|
|
14
|
-
lineColor,
|
|
15
|
-
topGradientColor,
|
|
16
|
-
bottomGradientColor,
|
|
17
|
-
width,
|
|
18
|
-
height,
|
|
19
|
-
autosize,
|
|
20
|
-
locale,
|
|
21
|
-
...rest
|
|
22
|
-
} = widgetProps
|
|
23
|
-
|
|
24
|
-
const symbolString = (exchange) ? `${exchange}:${symbol}` : symbol
|
|
25
|
-
|
|
26
|
-
const containerRef = useRef<HTMLDivElement | null>(null)
|
|
27
|
-
|
|
28
|
-
useEffect(() => {
|
|
29
|
-
if (!containerRef.current) {
|
|
30
|
-
return
|
|
31
|
-
}
|
|
32
|
-
const script = document.createElement('script')
|
|
33
|
-
script.type = 'text/javascript'
|
|
34
|
-
script.src = 'https://s3.tradingview.com/external-embedding/embed-widget-mini-symbol-overview.js'
|
|
35
|
-
script.async = true
|
|
36
|
-
script.onload = async () => {
|
|
37
|
-
const iframe = containerRef.current?.querySelector('iframe')
|
|
38
|
-
if (iframe && iframe instanceof Element) iframe.style.colorScheme = 'normal'
|
|
39
|
-
|
|
40
|
-
const copyDiv = document.querySelector('.tradingview-widget-copyright')
|
|
41
|
-
if (copyDiv) {
|
|
42
|
-
setTimeout(() => {
|
|
43
|
-
copyDiv.classList.remove('invisible')
|
|
44
|
-
}, 1200) // from experimentation
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
const config = JSON.stringify({
|
|
48
|
-
symbol: symbolString,
|
|
49
|
-
width: autosize ? '100%' : (width || 350),
|
|
50
|
-
height: autosize ? '100%' : (height || 220),
|
|
51
|
-
locale: locale ?? 'en',
|
|
52
|
-
isTransparent: 'true',
|
|
53
|
-
trendLineColor: lineColor || 'rgba(41, 98, 255, 1)',
|
|
54
|
-
underLineColor: topGradientColor || 'rgba(41, 98, 255, 0.3)',
|
|
55
|
-
underLineBottomColor: bottomGradientColor || 'rgba(41, 98, 255, 0)',
|
|
56
|
-
...rest,
|
|
57
|
-
})
|
|
58
|
-
script.innerHTML = config
|
|
59
|
-
containerRef.current.appendChild(script)
|
|
60
|
-
return () => {
|
|
61
|
-
while (containerRef.current?.firstChild) {
|
|
62
|
-
containerRef.current.removeChild(containerRef.current.firstChild)
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}, [ JSON.stringify(widgetProps) ])
|
|
66
|
-
|
|
67
|
-
return (<>
|
|
68
|
-
<div style={containerStyles} className='tradingview-widget-container h-[150px]' ref={containerRef} />
|
|
69
|
-
<div className='tradingview-widget-copyright border-t w-full invisible'>
|
|
70
|
-
<a href={`https://www.tradingview.com/symbols/${symbol}${exchange ? `/?exchange=${exchange}` : '' }`} rel="noopener" target="_blank">
|
|
71
|
-
<span className="text-[--secondary-2]">{symbol} quotes</span></a> by TradingView
|
|
72
|
-
</div>
|
|
73
|
-
</>)
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
export default MiniChart
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
|
|
3
|
-
import BaseChart from './mini-chart'
|
|
4
|
-
|
|
5
|
-
const Wrapper: React.FC<{
|
|
6
|
-
symbol: string,
|
|
7
|
-
exchange?: string
|
|
8
|
-
}> = ({
|
|
9
|
-
symbol,
|
|
10
|
-
exchange
|
|
11
|
-
}) => (
|
|
12
|
-
<BaseChart widgetProps ={{
|
|
13
|
-
symbol,
|
|
14
|
-
exchange,
|
|
15
|
-
autosize: true,
|
|
16
|
-
colorTheme: 'dark',
|
|
17
|
-
lineColor: "rgb(114, 27, 228)",
|
|
18
|
-
bottomGradientColor: "rgba(255, 255, 255, 0.1)",
|
|
19
|
-
dateRange: '60M',
|
|
20
|
-
}}/>
|
|
21
|
-
)
|
|
22
|
-
|
|
23
|
-
export default Wrapper
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as ThemeProvider } from './theme-provider'
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import React from "react"
|
|
4
|
-
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
5
|
-
import { type ThemeProviderProps } from "next-themes/dist/types"
|
|
6
|
-
|
|
7
|
-
const ThemeProvider: React.FC<ThemeProviderProps> = ({ children, ...props }) => (
|
|
8
|
-
<NextThemesProvider
|
|
9
|
-
attribute="class"
|
|
10
|
-
{...props}
|
|
11
|
-
value={{
|
|
12
|
-
light: 'lux-light-theme',
|
|
13
|
-
dark: 'lux-dark-theme'
|
|
14
|
-
}}
|
|
15
|
-
>
|
|
16
|
-
{children}
|
|
17
|
-
</NextThemesProvider>
|
|
18
|
-
)
|
|
19
|
-
|
|
20
|
-
export default ThemeProvider
|
package/next/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Next related Lux helpers
|
|
2
|
-
|
|
3
|
-
### no `index.ts` file, and `load-and-return-lux-next-fonts-on-import.ts`
|
|
4
|
-
|
|
5
|
-
Next font loading requires the fonts to be assigned to const's in module scope (ie, loaded when the module is evaluated, exactly once).
|
|
6
|
-
|
|
7
|
-
If there was an `index.ts` "barrel file", and the client code imported anything from this package, it would have resulted in evaluting all the packages imported including the that loaded the fonts. Without the index, the client code knows what modules import it and thus when it happens.
|
|
8
|
-
|
|
9
|
-
tl;dr: See [this article from Vercel](https://vercel.com/blog/how-we-optimized-package-imports-in-next-js) about this issue.
|
|
10
|
-
|
|
11
|
-
(Previously, not having this safegaurd caused a serious bug becuase the fonts were loaded far too early.)
|
package/next/analytics/fpixel.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
fbq: Function;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export const FB_PIXEL_ID = process.env.NEXT_PUBLIC_FACEBOOK_PIXEL_ID
|
|
8
|
-
|
|
9
|
-
export const pageview = () => {
|
|
10
|
-
window.fbq('track', 'PageView')
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// https://developers.facebook.com/docs/facebook-pixel/advanced/
|
|
14
|
-
export const event = (name: string, options = {}) => {
|
|
15
|
-
window.fbq('track', name, options)
|
|
16
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
|
|
3
|
-
import { usePathname } from 'next/navigation'
|
|
4
|
-
import Script from 'next/script'
|
|
5
|
-
import { useEffect, useState } from 'react'
|
|
6
|
-
import * as fbq from './fpixel'
|
|
7
|
-
|
|
8
|
-
const FacebookPixelHead = () => {
|
|
9
|
-
return (
|
|
10
|
-
<noscript>
|
|
11
|
-
<img
|
|
12
|
-
height='1'
|
|
13
|
-
width='1'
|
|
14
|
-
style={{ display: 'none' }}
|
|
15
|
-
src={`https://www.facebook.com/tr?id=${fbq.FB_PIXEL_ID}&ev=PageView&noscript=1`}
|
|
16
|
-
/>
|
|
17
|
-
</noscript>
|
|
18
|
-
)
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const FacebookPixel = () => {
|
|
22
|
-
const [loaded, setLoaded] = useState(false)
|
|
23
|
-
const pathname = usePathname()
|
|
24
|
-
|
|
25
|
-
useEffect(() => {
|
|
26
|
-
if (!loaded) return
|
|
27
|
-
|
|
28
|
-
fbq.pageview()
|
|
29
|
-
}, [pathname, loaded])
|
|
30
|
-
|
|
31
|
-
return (
|
|
32
|
-
<div>
|
|
33
|
-
<Script
|
|
34
|
-
id='fb-pixel'
|
|
35
|
-
strategy='afterInteractive'
|
|
36
|
-
onLoad={() => setLoaded(true)}
|
|
37
|
-
dangerouslySetInnerHTML={{
|
|
38
|
-
__html: `
|
|
39
|
-
!function(f,b,e,v,n,t,s)
|
|
40
|
-
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
|
|
41
|
-
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
|
|
42
|
-
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
|
|
43
|
-
n.queue=[];t=b.createElement(e);t.async=!0;
|
|
44
|
-
t.src=v;s=b.getElementsByTagName(e)[0];
|
|
45
|
-
s.parentNode.insertBefore(t,s)}(window, document,'script',
|
|
46
|
-
'https://connect.facebook.net/en_US/fbevents.js');
|
|
47
|
-
fbq('init', ${fbq.FB_PIXEL_ID});
|
|
48
|
-
`,
|
|
49
|
-
}}
|
|
50
|
-
/>
|
|
51
|
-
</div>
|
|
52
|
-
)
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export {FacebookPixelHead, FacebookPixel}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NextRequest, NextResponse, userAgent } from 'next/server'
|
|
2
|
-
import { getSelectorsByUserAgent } from 'react-device-detect'
|
|
3
|
-
|
|
4
|
-
// writed this way so they can be chained :)
|
|
5
|
-
const determineDeviceMiddleware = async (request: NextRequest) => {
|
|
6
|
-
|
|
7
|
-
const ua = userAgent(request)
|
|
8
|
-
const { isMobileOnly, isTablet, isDesktop } = getSelectorsByUserAgent(ua.ua)
|
|
9
|
-
const agent = isMobileOnly ? 'phone' : (isTablet ? 'tablet' : (isDesktop ? 'desktop' : 'unknown'))
|
|
10
|
-
const { nextUrl: url } = request
|
|
11
|
-
//console.log(`\n=== from ${url.href} on a *${agent && agent.toUpperCase()}* device. ===\n`)
|
|
12
|
-
url.searchParams.set('agent', agent)
|
|
13
|
-
return NextResponse.rewrite(url)
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export default determineDeviceMiddleware
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import nextFonts from './load-and-return-lux-next-fonts-on-import'
|
|
2
|
-
import type NextFontDesc from './next-font-desc'
|
|
3
|
-
|
|
4
|
-
// These will be injected for <body> in app router app that uses our RootLayout
|
|
5
|
-
|
|
6
|
-
// First is assumed to be mapped to the default font and is injected into <body>
|
|
7
|
-
// as a normal tw font family class.
|
|
8
|
-
export default () => (
|
|
9
|
-
nextFonts.map(
|
|
10
|
-
(desc: NextFontDesc) => (desc.nextFont!.variable)
|
|
11
|
-
).join(' ') + ` font-${nextFonts[0].twName}`
|
|
12
|
-
)
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import { Inter } from 'next/font/google'
|
|
2
|
-
import localFont from 'next/font/local'
|
|
3
|
-
|
|
4
|
-
import type NextFontDesc from './next-font-desc'
|
|
5
|
-
import type TwFontDesc from '../tailwind/tw-font-desc'
|
|
6
|
-
|
|
7
|
-
import twFonts from '../tailwind/lux-tw-fonts'
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
Creating NextFontDesc's and TwFontDesc's has to be seperated because they are needed
|
|
11
|
-
at different times during the next compile / build. Otherwise a nasty
|
|
12
|
-
race condition happens!
|
|
13
|
-
|
|
14
|
-
Also, requires that "Font loaders must be called and assigned to a const in the module scope"
|
|
15
|
-
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
const drukTextWide = localFont({
|
|
19
|
-
src: [
|
|
20
|
-
{
|
|
21
|
-
path: './fonts/DrukTextWide-Medium-Trial.otf',
|
|
22
|
-
weight: '500',
|
|
23
|
-
style: 'normal'
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
path: './fonts/DrukTextWide-Bold-Trial.otf',
|
|
27
|
-
weight: '700',
|
|
28
|
-
style: 'normal'
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
path: './fonts/DrukTextWide-Heavy-Trial.otf',
|
|
32
|
-
weight: '800',
|
|
33
|
-
style: 'normal',
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
display: 'swap',
|
|
37
|
-
variable: '--font-druk-text-wide' ,
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
const drukWide = localFont({
|
|
41
|
-
src: [
|
|
42
|
-
{
|
|
43
|
-
path: './fonts/DrukWide-Medium-Trial.otf',
|
|
44
|
-
weight: '500',
|
|
45
|
-
style: 'normal'
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
path: './fonts/DrukWide-Bold-Trial.otf',
|
|
49
|
-
weight: '700',
|
|
50
|
-
style: 'normal'
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
path: './fonts/DrukWide-Heavy-Trial.otf',
|
|
54
|
-
weight: '500',
|
|
55
|
-
style: 'normal',
|
|
56
|
-
},
|
|
57
|
-
],
|
|
58
|
-
display: 'swap',
|
|
59
|
-
variable: '--font-druk-wide' ,
|
|
60
|
-
})
|
|
61
|
-
|
|
62
|
-
const inter = Inter({
|
|
63
|
-
subsets: ["latin"],
|
|
64
|
-
variable: "--font-inter",
|
|
65
|
-
})
|
|
66
|
-
|
|
67
|
-
export default [
|
|
68
|
-
{
|
|
69
|
-
font: inter,
|
|
70
|
-
twName: 'sans'
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
font: drukTextWide,
|
|
74
|
-
twName: 'nav'
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
font: drukWide,
|
|
78
|
-
twName: 'heading'
|
|
79
|
-
}
|
|
80
|
-
].map (
|
|
81
|
-
(el) => {
|
|
82
|
-
const twFont: TwFontDesc | undefined = twFonts.find((twf: TwFontDesc) => (el.twName === twf.twName))
|
|
83
|
-
if (!twFont) {
|
|
84
|
-
throw new Error('lux-next-fonts: Next font is not paired to a TW font!')
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
return ({
|
|
88
|
-
...twFont,
|
|
89
|
-
nextFont: el.font,
|
|
90
|
-
})
|
|
91
|
-
}
|
|
92
|
-
) as NextFontDesc[]
|
|
93
|
-
|
|
94
|
-
|
package/next/next-font-desc.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type TwFontDesc from '../tailwind/tw-font-desc'
|
|
2
|
-
|
|
3
|
-
// from next repo
|
|
4
|
-
type NextFont = {
|
|
5
|
-
className: string
|
|
6
|
-
style: { fontFamily: string; fontWeight?: number; fontStyle?: string }
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
// from next repo
|
|
10
|
-
type NextFontWithVariable = NextFont & {
|
|
11
|
-
variable: string
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
/*
|
|
16
|
-
NextFontDesc and TwFontDesc have to be seperate because they are needed
|
|
17
|
-
at different times during the next compile / build. Otherwise a nasty
|
|
18
|
-
race condition happens! That's why they are in different files.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
interface NextFontDesc extends TwFontDesc {
|
|
22
|
-
nextFont: NextFontWithVariable
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export {
|
|
26
|
-
type NextFontDesc as default,
|
|
27
|
-
type NextFontWithVariable,
|
|
28
|
-
}
|
package/next/not-found.tsx
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
|
|
3
|
-
import Main from '../primitives/main'
|
|
4
|
-
import Footer from '../common/footer'
|
|
5
|
-
import { ApplyTypography } from '../primitives'
|
|
6
|
-
|
|
7
|
-
import NotFoundMDX from './not-found-content.mdx'
|
|
8
|
-
import type { SiteDef } from '../types'
|
|
9
|
-
|
|
10
|
-
const NotFound: React.FC<{
|
|
11
|
-
siteDef: SiteDef
|
|
12
|
-
}> = ({
|
|
13
|
-
siteDef
|
|
14
|
-
}) => (<>
|
|
15
|
-
<Main className='h-[700px]'>
|
|
16
|
-
<ApplyTypography className='mt-[200px] flex flex-col md:gap-8 '>
|
|
17
|
-
<NotFoundMDX />
|
|
18
|
-
</ApplyTypography>
|
|
19
|
-
</Main>
|
|
20
|
-
<Footer siteDef={siteDef}/>
|
|
21
|
-
</>)
|
|
22
|
-
|
|
23
|
-
export default NotFound
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import nextFonts from './load-and-return-lux-next-fonts-on-import'
|
|
3
|
-
import type NextFontDesc from './next-font-desc'
|
|
4
|
-
|
|
5
|
-
const PagesRouterFontVars: React.FC = () => {
|
|
6
|
-
|
|
7
|
-
const fontVars = nextFonts.map((fd: NextFontDesc) => (
|
|
8
|
-
`${fd.cssVar}: ${fd.nextFont.style.fontFamily};`
|
|
9
|
-
)).join('\n')
|
|
10
|
-
|
|
11
|
-
return <style jsx global>{`
|
|
12
|
-
html {
|
|
13
|
-
${fontVars}
|
|
14
|
-
}
|
|
15
|
-
`}</style>
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export default PagesRouterFontVars
|
package/next/root-layout.tsx
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import React, { type PropsWithChildren } from 'react'
|
|
2
|
-
|
|
3
|
-
import Header from '../common/header'
|
|
4
|
-
import type { SiteDef } from '../types'
|
|
5
|
-
import getAppRouterBodyFontClasses from './get-app-router-font-classes'
|
|
6
|
-
import { FacebookPixelHead, FacebookPixel } from './analytics/pixel-analytics'
|
|
7
|
-
import { GoogleAnalytics } from '@next/third-parties/google'
|
|
8
|
-
|
|
9
|
-
// Next 14: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#use-viewport-export
|
|
10
|
-
const viewport = {
|
|
11
|
-
themeColor: [
|
|
12
|
-
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
|
13
|
-
{ media: '(prefers-color-scheme: dark)', color: 'black' },
|
|
14
|
-
],
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/*
|
|
18
|
-
These '.variable' fields are actually autogenerate css classnames that *define* the actual
|
|
19
|
-
css variables ('--<ugly-name>') that one asks for in the tailwind classes.
|
|
20
|
-
They are what make them available in the global scope. So this MUST
|
|
21
|
-
be done like this for the tailwind font classes to work.
|
|
22
|
-
|
|
23
|
-
(...not to be confused with the css var itself. This field should be named something else!)
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
re body: overflow-y-hidden overflow-x-hidden, h-full
|
|
28
|
-
We cannot have these on body tag for scroll-snap to work on iOS!
|
|
29
|
-
*/
|
|
30
|
-
const bodyClasses =
|
|
31
|
-
'bg-background text-foreground flex flex-col min-h-full ' +
|
|
32
|
-
getAppRouterBodyFontClasses()
|
|
33
|
-
|
|
34
|
-
const RootLayout: React.FC<PropsWithChildren & {
|
|
35
|
-
siteDef: SiteDef
|
|
36
|
-
header?: boolean
|
|
37
|
-
}> = ({
|
|
38
|
-
header = true,
|
|
39
|
-
siteDef,
|
|
40
|
-
children,
|
|
41
|
-
}) => (
|
|
42
|
-
<html lang='en' suppressHydrationWarning className='lux-dark-theme'>
|
|
43
|
-
<head >
|
|
44
|
-
{/* https://stackoverflow.com/a/75716588/11645689 */ }
|
|
45
|
-
<base target='_blank' />
|
|
46
|
-
<FacebookPixelHead/>
|
|
47
|
-
</head>
|
|
48
|
-
<body className={bodyClasses}>
|
|
49
|
-
<FacebookPixel />
|
|
50
|
-
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GA_MEASUREMENT_ID ?? ''} />
|
|
51
|
-
{header && <Header siteDef={siteDef}/>}
|
|
52
|
-
{children}
|
|
53
|
-
</body>
|
|
54
|
-
</html>
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
export {
|
|
58
|
-
RootLayout as default,
|
|
59
|
-
viewport
|
|
60
|
-
}
|
package/primitives/accordion.tsx
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
// @ts-nocheck
|
|
2
|
-
"use client"
|
|
3
|
-
|
|
4
|
-
import * as React from "react"
|
|
5
|
-
import * as AccordionPrimitive from "@radix-ui/react-accordion"
|
|
6
|
-
import { ChevronDown } from "lucide-react"
|
|
7
|
-
|
|
8
|
-
import { cn } from "../util"
|
|
9
|
-
|
|
10
|
-
const Accordion = AccordionPrimitive.Root
|
|
11
|
-
|
|
12
|
-
const AccordionItem = React.forwardRef<
|
|
13
|
-
React.ElementRef<typeof AccordionPrimitive.Item>,
|
|
14
|
-
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item>
|
|
15
|
-
>(({ className, ...props }, ref) => (
|
|
16
|
-
<AccordionPrimitive.Item
|
|
17
|
-
ref={ref}
|
|
18
|
-
className={cn("border-b", className)}
|
|
19
|
-
{...props}
|
|
20
|
-
/>
|
|
21
|
-
))
|
|
22
|
-
AccordionItem.displayName = "AccordionItem"
|
|
23
|
-
|
|
24
|
-
const AccordionTrigger = React.forwardRef<
|
|
25
|
-
React.ElementRef<typeof AccordionPrimitive.Trigger>,
|
|
26
|
-
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger>
|
|
27
|
-
>(({ className, children, ...props }, ref) => (
|
|
28
|
-
<AccordionPrimitive.Header className="flex">
|
|
29
|
-
<AccordionPrimitive.Trigger
|
|
30
|
-
ref={ref}
|
|
31
|
-
className={cn(
|
|
32
|
-
"flex flex-1 items-center justify-between py-4 font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180",
|
|
33
|
-
className
|
|
34
|
-
)}
|
|
35
|
-
{...props}
|
|
36
|
-
>
|
|
37
|
-
{children}
|
|
38
|
-
<ChevronDown className="h-4 w-4 shrink-0 transition-transform duration-200" />
|
|
39
|
-
</AccordionPrimitive.Trigger>
|
|
40
|
-
</AccordionPrimitive.Header>
|
|
41
|
-
))
|
|
42
|
-
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName
|
|
43
|
-
|
|
44
|
-
const AccordionContent = React.forwardRef<
|
|
45
|
-
React.ElementRef<typeof AccordionPrimitive.Content>,
|
|
46
|
-
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content>
|
|
47
|
-
>(({ className, children, ...props }, ref) => (
|
|
48
|
-
<AccordionPrimitive.Content
|
|
49
|
-
ref={ref}
|
|
50
|
-
className={cn(
|
|
51
|
-
"overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
|
|
52
|
-
className
|
|
53
|
-
)}
|
|
54
|
-
{...props}
|
|
55
|
-
>
|
|
56
|
-
{children}
|
|
57
|
-
</AccordionPrimitive.Content>
|
|
58
|
-
))
|
|
59
|
-
AccordionContent.displayName = AccordionPrimitive.Content.displayName
|
|
60
|
-
|
|
61
|
-
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import dynamic from 'next/dynamic'
|
|
3
|
-
|
|
4
|
-
import { cn } from '../util'
|
|
5
|
-
|
|
6
|
-
import type { ButtonDef, ButtonModalDef } from '../types'
|
|
7
|
-
import type { ButtonSizes } from './button'
|
|
8
|
-
|
|
9
|
-
// The DVC must be rendered client-side since it accesses the DOM directly.
|
|
10
|
-
// There is no need for a loading UI since the dialog only opens
|
|
11
|
-
// once it's been rendered and the user is already waiting.
|
|
12
|
-
// https://nextjs.org/docs/app/building-your-application/optimizing/lazy-loading
|
|
13
|
-
const DynamicDVC = dynamic(() => (import('./dialog-video-controller')), {ssr: false})
|
|
14
|
-
|
|
15
|
-
const ActionButton: React.FC<{
|
|
16
|
-
def: ButtonDef
|
|
17
|
-
size?: ButtonSizes
|
|
18
|
-
className?: string
|
|
19
|
-
}> = ({
|
|
20
|
-
def,
|
|
21
|
-
size, // no default. overrides!
|
|
22
|
-
className=''
|
|
23
|
-
}) => {
|
|
24
|
-
if (def.action.type === 'modal') {
|
|
25
|
-
const m = def.action.def as ButtonModalDef
|
|
26
|
-
const Modal = m.Comp
|
|
27
|
-
const sizeToSpread = size ? {size} : {}
|
|
28
|
-
return (
|
|
29
|
-
<DynamicDVC>
|
|
30
|
-
<Modal
|
|
31
|
-
title={m.title}
|
|
32
|
-
byline={m.byline}
|
|
33
|
-
buttonText={def.text}
|
|
34
|
-
buttonProps={{...def.props, ...sizeToSpread, className: cn((def.props?.className ?? ''), className)}}
|
|
35
|
-
action={m.action}
|
|
36
|
-
actionEnclosure={m.actionEnclosure}
|
|
37
|
-
{...m.props}
|
|
38
|
-
/>
|
|
39
|
-
</DynamicDVC>
|
|
40
|
-
)
|
|
41
|
-
}
|
|
42
|
-
// no other types supported yet
|
|
43
|
-
return <></>
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export default ActionButton
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import React, { type PropsWithChildren } from 'react'
|
|
2
|
-
|
|
3
|
-
import { cn } from '../util'
|
|
4
|
-
|
|
5
|
-
type TypographySize = 'responsive' | 'sm' | 'base' | 'lg' | 'xl' // if t-shirt size, do *not* be responsive
|
|
6
|
-
|
|
7
|
-
const ApplyTypography: React.FC<
|
|
8
|
-
PropsWithChildren & {
|
|
9
|
-
className?: string,
|
|
10
|
-
asTag?: 'div' | 'section' | 'nav' | 'main' | 'article',
|
|
11
|
-
size?: TypographySize
|
|
12
|
-
}
|
|
13
|
-
> = ({
|
|
14
|
-
children,
|
|
15
|
-
className='',
|
|
16
|
-
asTag='div',
|
|
17
|
-
size='responsive'
|
|
18
|
-
}) => {
|
|
19
|
-
|
|
20
|
-
// responsive version by default
|
|
21
|
-
let typoClasses =
|
|
22
|
-
'typography gap-3 ' +
|
|
23
|
-
'xs:typography-sm ' +
|
|
24
|
-
'sm:typography sm:gap-4 ' +
|
|
25
|
-
'lg:typography-lg lg:gap-5 ' +
|
|
26
|
-
'xl:typography-xl xl:gap-6 ' +
|
|
27
|
-
'typography-headings:font-heading ' // only effects h1-h3 (in plugin)
|
|
28
|
-
|
|
29
|
-
switch (size) {
|
|
30
|
-
case 'sm': {
|
|
31
|
-
typoClasses = 'typography typography-sm gap-3 typography-headings:font-heading typography-p:text-sm '
|
|
32
|
-
} break
|
|
33
|
-
case 'base': {
|
|
34
|
-
typoClasses = 'typography gap-4 typography-headings:font-heading '
|
|
35
|
-
} break
|
|
36
|
-
case 'lg': {
|
|
37
|
-
typoClasses = 'typography typography-lg gap-5 typography-headings:font-heading typography-p:text-lg '
|
|
38
|
-
} break
|
|
39
|
-
case 'xl': {
|
|
40
|
-
typoClasses = 'typography typography-xl gap-6 typography-headings:font-heading typography-p:text-lg '
|
|
41
|
-
} break
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
const Tag = asTag
|
|
45
|
-
return (
|
|
46
|
-
<Tag className={cn(typoClasses, className)}>
|
|
47
|
-
{children}
|
|
48
|
-
</Tag>
|
|
49
|
-
)
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export {
|
|
53
|
-
type TypographySize,
|
|
54
|
-
ApplyTypography as default
|
|
55
|
-
}
|