@sanity/ui 3.1.13 → 4.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +7 -9
- package/dist/_chunks-es/Syntax.js +23 -0
- package/dist/_chunks-es/Syntax.js.map +1 -0
- package/dist/css/index.css +1 -0
- package/dist/css.d.ts +11 -0
- package/dist/css.js +7 -0
- package/dist/css.js.map +1 -0
- package/dist/index.d.ts +1352 -1848
- package/dist/index.js +4621 -1827
- package/dist/index.js.map +1 -1
- package/dist/tokens.d.ts +4 -0
- package/dist/tokens.js +2 -0
- package/dist/tokens.js.map +1 -0
- package/exports/css/index.css +1 -0
- package/exports/css.ts +2 -0
- package/exports/index.ts +117 -1
- package/exports/tokens.ts +2 -0
- package/package.json +86 -172
- package/src/components/autocomplete/Autocomplete.tsx +665 -0
- package/src/components/autocomplete/AutocompleteOption.tsx +42 -0
- package/src/components/autocomplete/__workshop__/Async.tsx +162 -0
- package/src/components/autocomplete/__workshop__/ConstrainedHeight.tsx +121 -0
- package/src/components/autocomplete/__workshop__/Custom.tsx +91 -0
- package/src/components/autocomplete/__workshop__/Example.tsx +71 -0
- package/src/components/autocomplete/__workshop__/FocusAndBlur.tsx +39 -0
- package/src/components/autocomplete/__workshop__/Fullscreen.tsx +307 -0
- package/src/components/autocomplete/__workshop__/index.ts +41 -0
- package/src/components/autocomplete/__workshop__/mock/apiStore.ts +49 -0
- package/src/components/autocomplete/__workshop__/mock/countries.ts +245 -0
- package/src/components/autocomplete/autocompleteReducer.ts +47 -0
- package/src/components/autocomplete/constants.ts +28 -0
- package/src/components/autocomplete/types.ts +103 -0
- package/src/components/breadcrumbs/Breadcrumbs.tsx +163 -0
- package/src/components/breadcrumbs/__workshop__/Example.tsx +49 -0
- package/src/components/breadcrumbs/__workshop__/index.ts +16 -0
- package/src/components/dialog/Dialog.tsx +230 -0
- package/src/components/dialog/DialogCard.tsx +233 -0
- package/src/components/dialog/DialogContext.ts +21 -0
- package/src/components/dialog/DialogProvider.tsx +34 -0
- package/src/components/dialog/__workshop__/Activate.tsx +141 -0
- package/src/components/dialog/__workshop__/AutoFocus.tsx +29 -0
- package/src/components/dialog/__workshop__/Layering.tsx +41 -0
- package/src/components/dialog/__workshop__/Nested.tsx +71 -0
- package/src/components/dialog/__workshop__/OnScroll.tsx +51 -0
- package/src/components/dialog/__workshop__/Panes.tsx +75 -0
- package/src/components/dialog/__workshop__/Position.tsx +30 -0
- package/src/components/dialog/__workshop__/Props.tsx +84 -0
- package/src/components/dialog/__workshop__/Provider.tsx +11 -0
- package/src/components/dialog/__workshop__/Wrapped.tsx +76 -0
- package/src/components/dialog/__workshop__/index.ts +21 -0
- package/src/components/dialog/isTargetWithinScope.ts +14 -0
- package/src/components/dialog/types.ts +2 -0
- package/src/components/dialog/useDialog.ts +11 -0
- package/src/components/hotkeys/Hotkeys.tsx +70 -0
- package/src/components/hotkeys/__workshop__/Plain.tsx +9 -0
- package/src/components/hotkeys/__workshop__/index.ts +16 -0
- package/src/components/menu/Menu.test.tsx +125 -0
- package/src/components/menu/Menu.tsx +174 -0
- package/src/components/menu/MenuButton.tsx +231 -0
- package/src/components/menu/MenuContext.ts +19 -0
- package/src/components/menu/MenuDivider.tsx +32 -0
- package/src/components/menu/MenuGroup.tsx +240 -0
- package/src/components/menu/MenuItem.tsx +153 -0
- package/src/components/menu/__workshop__/AsComponent.tsx +45 -0
- package/src/components/menu/__workshop__/AvatarMenu.tsx +36 -0
- package/src/components/menu/__workshop__/ClosableMenuButton.tsx +47 -0
- package/src/components/menu/__workshop__/ConstrainedInBoundary.tsx +133 -0
- package/src/components/menu/__workshop__/CustomMenuItem.tsx +47 -0
- package/src/components/menu/__workshop__/CustomSelectedState.tsx +35 -0
- package/src/components/menu/__workshop__/DataProps.tsx +28 -0
- package/src/components/menu/__workshop__/DisableFocusOnClose.tsx +40 -0
- package/src/components/menu/__workshop__/Groups.tsx +164 -0
- package/src/components/menu/__workshop__/MenuButton.tsx +79 -0
- package/src/components/menu/__workshop__/MenuGroupRight.tsx +73 -0
- package/src/components/menu/__workshop__/NestedMenu.tsx +22 -0
- package/src/components/menu/__workshop__/OnCloseMenuButton.tsx +50 -0
- package/src/components/menu/__workshop__/SelectedItem.tsx +69 -0
- package/src/components/menu/__workshop__/ShouldFocus.tsx +42 -0
- package/src/components/menu/__workshop__/Tones.tsx +20 -0
- package/src/components/menu/__workshop__/index.ts +91 -0
- package/src/components/menu/helpers.ts +82 -0
- package/src/components/menu/useMenu.ts +21 -0
- package/src/components/menu/useMenuController.ts +245 -0
- package/src/components/tab/Tab.tsx +135 -0
- package/src/components/tab/TabList.tsx +157 -0
- package/src/components/tab/TabListContext.ts +10 -0
- package/src/components/tab/TabPanel.tsx +94 -0
- package/src/components/tab/__workshop__/Example.tsx +135 -0
- package/src/components/tab/__workshop__/index.ts +16 -0
- package/src/components/tab/types.ts +11 -0
- package/src/components/toast/Toast.test.tsx +103 -0
- package/src/components/toast/Toast.tsx +191 -0
- package/src/components/toast/ToastContext.ts +7 -0
- package/src/components/toast/ToastLayer.tsx +54 -0
- package/src/components/toast/ToastProvider.tsx +127 -0
- package/src/components/toast/__workshop__/Hook.tsx +71 -0
- package/src/components/toast/__workshop__/Toast.tsx +26 -0
- package/src/components/toast/__workshop__/index.ts +21 -0
- package/src/components/toast/types.ts +24 -0
- package/src/components/toast/useToast.ts +23 -0
- package/src/components/tree/Tree.tsx +248 -0
- package/src/components/tree/TreeContext.ts +10 -0
- package/src/components/tree/TreeGroup.tsx +46 -0
- package/src/components/tree/TreeItem.tsx +236 -0
- package/src/components/tree/__workshop__/Basic.tsx +109 -0
- package/src/components/tree/__workshop__/TabFromElement.tsx +84 -0
- package/src/components/tree/__workshop__/basic.perf.ts +19 -0
- package/src/components/tree/__workshop__/index.ts +23 -0
- package/src/components/tree/helpers.ts +105 -0
- package/src/components/tree/types.ts +24 -0
- package/src/components/tree/useTree.ts +17 -0
- package/src/components/virtualList/VirtualList.tsx +254 -0
- package/src/components/virtualList/__workshop__/ChangingProps.tsx +41 -0
- package/src/components/virtualList/__workshop__/ElementScroll.tsx +43 -0
- package/src/components/virtualList/__workshop__/InfiniteList.tsx +40 -0
- package/src/components/virtualList/__workshop__/WindowScrolll.tsx +23 -0
- package/src/components/virtualList/__workshop__/index.ts +31 -0
- package/src/core/_keys.ts +26 -0
- package/src/core/constants.ts +4 -16
- package/src/core/getElementRef.ts +29 -0
- package/src/core/helpers/animation.ts +4 -5
- package/src/core/helpers/focus.ts +0 -8
- package/src/core/helpers/props.ts +51 -0
- package/src/core/lib/createGlobalScopedContext.ts +7 -4
- package/src/core/lib/globalScope.ts +1 -1
- package/src/core/lib/isArray.ts +3 -0
- package/src/core/types.ts +57 -0
- package/src/hooks/useClickOutsideEvent.test.tsx +114 -0
- package/src/hooks/useClickOutsideEvent.ts +66 -0
- package/src/hooks/useElementSize.ts +19 -0
- package/src/hooks/useGlobalKeyDown.ts +23 -0
- package/src/hooks/useMatchMedia.ts +28 -0
- package/src/hooks/useMediaIndex/__workshop__/Test.tsx +14 -0
- package/src/hooks/useMediaIndex/__workshop__/index.ts +16 -0
- package/src/hooks/useMediaIndex/useMediaIndex.test.tsx +21 -0
- package/src/hooks/useMediaIndex/useMediaIndex.ts +111 -0
- package/src/hooks/usePrefersDark.hydration.test.tsx +56 -0
- package/src/hooks/usePrefersDark.test.tsx +20 -0
- package/src/hooks/usePrefersDark.ts +16 -0
- package/src/hooks/usePrefersReducedMotion.hydration.test.tsx +56 -0
- package/src/hooks/usePrefersReducedMotion.test.tsx +20 -0
- package/src/hooks/usePrefersReducedMotion.ts +16 -0
- package/src/hooks/useResponsiveProp.ts +14 -0
- package/src/hooks/useUnique.ts +54 -0
- package/src/middleware/origin.ts +47 -0
- package/src/observers/elementSize.ts +114 -0
- package/src/primitives/_syntax/LazySyntax.tsx +4 -0
- package/src/primitives/_syntax/Syntax.tsx +26 -0
- package/src/primitives/avatar/Avatar.tsx +145 -0
- package/src/primitives/avatar/AvatarCounter.tsx +69 -0
- package/src/primitives/avatar/AvatarStack.tsx +77 -0
- package/src/primitives/avatar/__workshop__/AsButton.tsx +13 -0
- package/src/primitives/avatar/__workshop__/PropsStory.tsx +25 -0
- package/src/primitives/avatar/__workshop__/Stack.tsx +28 -0
- package/src/primitives/avatar/__workshop__/WithinButton.tsx +51 -0
- package/src/primitives/avatar/__workshop__/WithinMenuItem.tsx +52 -0
- package/src/primitives/avatar/__workshop__/index.ts +36 -0
- package/src/primitives/avatar/types.ts +2 -0
- package/src/primitives/badge/Badge.test.tsx +16 -0
- package/src/primitives/badge/Badge.tsx +53 -0
- package/src/primitives/badge/__workshop__/Props.tsx +28 -0
- package/src/primitives/badge/__workshop__/Tones.tsx +16 -0
- package/src/primitives/badge/__workshop__/index.ts +26 -0
- package/src/primitives/badge/__workshop__/within-button.tsx +36 -0
- package/src/primitives/box/Box.tsx +73 -0
- package/src/primitives/box/__workshop__/Props.tsx +26 -0
- package/src/primitives/box/__workshop__/Responsive.tsx +20 -0
- package/src/primitives/box/__workshop__/index.ts +21 -0
- package/src/primitives/button/Button.test.tsx +30 -0
- package/src/primitives/button/Button.tsx +145 -0
- package/src/primitives/button/__workshop__/Custom.tsx +29 -0
- package/src/primitives/button/__workshop__/CustomIcons.tsx +38 -0
- package/src/primitives/button/__workshop__/DataProps.tsx +19 -0
- package/src/primitives/button/__workshop__/Disabled.tsx +43 -0
- package/src/primitives/button/__workshop__/MixedChildren.tsx +12 -0
- package/src/primitives/button/__workshop__/Props.tsx +60 -0
- package/src/primitives/button/__workshop__/Stacked.tsx +51 -0
- package/src/primitives/button/__workshop__/Styled1.css.ts +7 -0
- package/src/primitives/button/__workshop__/Styled1.tsx +11 -0
- package/src/primitives/button/__workshop__/TextOverflow.tsx +17 -0
- package/src/primitives/button/__workshop__/UploadButton.tsx +28 -0
- package/src/primitives/button/__workshop__/index.ts +61 -0
- package/src/primitives/button/types.ts +2 -0
- package/src/primitives/card/Card.tsx +124 -0
- package/src/primitives/card/CardContext.ts +10 -0
- package/src/primitives/card/CardInternalContext.ts +10 -0
- package/src/primitives/card/CardInternalProvider.tsx +15 -0
- package/src/primitives/card/CardProvider.tsx +16 -0
- package/src/primitives/card/__workshop__/AsButton.tsx +104 -0
- package/src/primitives/card/__workshop__/AsComponent.tsx +25 -0
- package/src/primitives/card/__workshop__/Checkered.tsx +26 -0
- package/src/primitives/card/__workshop__/DataProps.tsx +25 -0
- package/src/primitives/card/__workshop__/Interactive.tsx +29 -0
- package/src/primitives/card/__workshop__/ListNavigation.tsx +78 -0
- package/src/primitives/card/__workshop__/Props.tsx +49 -0
- package/src/primitives/card/__workshop__/Selected.tsx +62 -0
- package/src/primitives/card/__workshop__/Styled.tsx +11 -0
- package/src/primitives/card/__workshop__/Tones.tsx +27 -0
- package/src/primitives/card/__workshop__/index.ts +21 -0
- package/src/primitives/card/types.ts +21 -0
- package/src/primitives/card/useCard.ts +20 -0
- package/src/primitives/checkbox/Checkbox.tsx +80 -0
- package/src/primitives/checkbox/__workshop__/Example.tsx +25 -0
- package/src/primitives/checkbox/__workshop__/Props.tsx +35 -0
- package/src/primitives/checkbox/__workshop__/ReadOnly.tsx +16 -0
- package/src/primitives/checkbox/__workshop__/Tones.tsx +27 -0
- package/src/primitives/checkbox/__workshop__/index.ts +15 -0
- package/src/primitives/code/Code.tsx +47 -0
- package/src/primitives/code/__workshop__/OpticalAlignment.tsx +26 -0
- package/src/primitives/code/__workshop__/Props.tsx +19 -0
- package/src/primitives/code/__workshop__/index.ts +21 -0
- package/src/primitives/container/Container.tsx +43 -0
- package/src/primitives/container/__workshop__/Example.tsx +17 -0
- package/src/primitives/container/__workshop__/index.ts +16 -0
- package/src/primitives/flex/Flex.tsx +38 -0
- package/src/primitives/flex/__workshop__/Example.tsx +26 -0
- package/src/primitives/flex/__workshop__/Gap.tsx +25 -0
- package/src/primitives/flex/__workshop__/index.ts +13 -0
- package/src/primitives/flex/__workshop__/styles.css.ts +12 -0
- package/src/primitives/grid/Grid.tsx +38 -0
- package/src/primitives/grid/__workshop__/Responsive.tsx +54 -0
- package/src/primitives/grid/__workshop__/index.ts +12 -0
- package/src/primitives/heading/Heading.tsx +68 -0
- package/src/primitives/heading/__workshop__/OpticalAlignment.tsx +28 -0
- package/src/primitives/heading/__workshop__/Plain.tsx +26 -0
- package/src/primitives/heading/__workshop__/index.ts +21 -0
- package/src/primitives/inline/Inline.tsx +37 -0
- package/src/primitives/inline/__workshop__/Plain.tsx +23 -0
- package/src/primitives/inline/__workshop__/index.ts +10 -0
- package/src/primitives/kbd/Kbd.tsx +36 -0
- package/src/primitives/kbd/__workshop__/Plain.tsx +9 -0
- package/src/primitives/kbd/__workshop__/index.ts +10 -0
- package/src/primitives/label/Label.tsx +67 -0
- package/src/primitives/label/__workshop__/OpticalAlignment.tsx +28 -0
- package/src/primitives/label/__workshop__/Plain.tsx +28 -0
- package/src/primitives/label/__workshop__/index.ts +21 -0
- package/src/primitives/layer/Layer.test.tsx +110 -0
- package/src/primitives/layer/Layer.tsx +35 -0
- package/src/primitives/layer/LayerCard.tsx +90 -0
- package/src/primitives/layer/LayerContext.ts +7 -0
- package/src/primitives/layer/LayerProvider.tsx +106 -0
- package/src/primitives/layer/__workshop__/MultipleRoots.tsx +49 -0
- package/src/primitives/layer/__workshop__/Nested.tsx +107 -0
- package/src/primitives/layer/__workshop__/ResponsiveZOffset.tsx +17 -0
- package/src/primitives/layer/__workshop__/_debug.tsx +17 -0
- package/src/primitives/layer/__workshop__/index.ts +26 -0
- package/src/primitives/layer/getLayerContext.test.ts +32 -0
- package/src/primitives/layer/getLayerContext.ts +21 -0
- package/src/primitives/layer/useLayer.ts +24 -0
- package/src/primitives/popover/Popover.tsx +291 -0
- package/src/primitives/popover/PopoverLayer.tsx +101 -0
- package/src/primitives/popover/__workshop__/AlignedStory.tsx +76 -0
- package/src/primitives/popover/__workshop__/MarginsStory.tsx +31 -0
- package/src/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +32 -0
- package/src/primitives/popover/__workshop__/OpenOnMountStory.tsx +11 -0
- package/src/primitives/popover/__workshop__/PlainStory.tsx +68 -0
- package/src/primitives/popover/__workshop__/RecursiveStory.tsx +71 -0
- package/src/primitives/popover/__workshop__/SidePanelStory.tsx +94 -0
- package/src/primitives/popover/__workshop__/TestStory.tsx +97 -0
- package/src/primitives/popover/__workshop__/index.ts +56 -0
- package/src/primitives/popover/__workshop__/portal-inheritance.tsx +15 -0
- package/src/primitives/popover/constants.ts +20 -0
- package/src/primitives/popover/floating-ui/size.ts +75 -0
- package/src/primitives/popover/types.ts +12 -0
- package/src/primitives/popover/useMiddleware.ts +126 -0
- package/src/primitives/radio/Radio.tsx +64 -0
- package/src/primitives/radio/__workshop__/Example.tsx +63 -0
- package/src/primitives/radio/__workshop__/Plain.tsx +28 -0
- package/src/primitives/radio/__workshop__/index.ts +13 -0
- package/src/primitives/select/Select.tsx +76 -0
- package/src/primitives/select/__workshop__/Plain.tsx +38 -0
- package/src/primitives/select/__workshop__/ReadOnly.tsx +23 -0
- package/src/primitives/select/__workshop__/index.ts +13 -0
- package/src/primitives/selectable/Selectable.tsx +48 -0
- package/src/primitives/selectable/__workshop__/DataProps.tsx +24 -0
- package/src/primitives/selectable/__workshop__/as-link.tsx +13 -0
- package/src/primitives/selectable/__workshop__/index.ts +19 -0
- package/src/primitives/skeleton/CodeSkeleton.tsx +49 -0
- package/src/primitives/skeleton/HeadingSkeleton.tsx +48 -0
- package/src/primitives/skeleton/LabelSkeleton.tsx +47 -0
- package/src/primitives/skeleton/Skeleton.tsx +70 -0
- package/src/primitives/skeleton/TextSkeleton.tsx +49 -0
- package/src/primitives/skeleton/__workshop__/Delay.tsx +69 -0
- package/src/primitives/skeleton/__workshop__/Skeleton.tsx +63 -0
- package/src/primitives/skeleton/__workshop__/index.ts +13 -0
- package/src/primitives/spinner/Spinner.tsx +45 -0
- package/src/primitives/spinner/SpinnerAnimatedIcon.tsx +14 -0
- package/src/primitives/spinner/__workshop__/Props.tsx +14 -0
- package/src/primitives/spinner/__workshop__/index.ts +16 -0
- package/src/primitives/srOnly/SrOnly.tsx +33 -0
- package/src/primitives/stack/Stack.tsx +38 -0
- package/src/primitives/stack/__workshop__/Plain.tsx +31 -0
- package/src/primitives/stack/__workshop__/index.ts +16 -0
- package/src/primitives/switch/Switch.tsx +76 -0
- package/src/primitives/switch/__workshop__/Example.tsx +25 -0
- package/src/primitives/switch/__workshop__/Props.tsx +23 -0
- package/src/primitives/switch/__workshop__/index.ts +13 -0
- package/src/primitives/text/InlineCode.tsx +25 -0
- package/src/primitives/text/Text.tsx +68 -0
- package/src/primitives/text/__workshop__/Example.tsx +27 -0
- package/src/primitives/text/__workshop__/OpticalAlignment.tsx +28 -0
- package/src/primitives/text/__workshop__/index.ts +26 -0
- package/src/primitives/text/__workshop__/inline-code.tsx +13 -0
- package/src/primitives/textArea/TextArea.tsx +97 -0
- package/src/primitives/textArea/__workshop__/Plain.tsx +47 -0
- package/src/primitives/textArea/__workshop__/index.ts +16 -0
- package/src/primitives/textInput/TextInput.tsx +279 -0
- package/src/primitives/textInput/__workshop__/ClearButton.tsx +32 -0
- package/src/primitives/textInput/__workshop__/CustomValidity.tsx +17 -0
- package/src/primitives/textInput/__workshop__/Plain.tsx +103 -0
- package/src/primitives/textInput/__workshop__/ReadOnly.tsx +14 -0
- package/src/primitives/textInput/__workshop__/States.tsx +53 -0
- package/src/primitives/textInput/__workshop__/Tones.tsx +41 -0
- package/src/primitives/textInput/__workshop__/Typed.tsx +23 -0
- package/src/primitives/textInput/__workshop__/index.ts +46 -0
- package/src/primitives/tooltip/Tooltip.test.tsx +496 -0
- package/src/primitives/tooltip/Tooltip.tsx +546 -0
- package/src/primitives/tooltip/TooltipLayer.tsx +72 -0
- package/src/primitives/tooltip/__workshop__/CustomPortal.tsx +102 -0
- package/src/primitives/tooltip/__workshop__/OverflowingBoundary.tsx +74 -0
- package/src/primitives/tooltip/__workshop__/Props.tsx +99 -0
- package/src/primitives/tooltip/__workshop__/ResizableBoundary.tsx +91 -0
- package/src/primitives/tooltip/__workshop__/index.ts +31 -0
- package/src/primitives/tooltip/constants.ts +24 -0
- package/src/primitives/tooltip/tooltipDelayGroup/TooltipDelayGroupContext.tsx +13 -0
- package/src/primitives/tooltip/tooltipDelayGroup/TooltipDelayGroupProvider.tsx +96 -0
- package/src/primitives/tooltip/tooltipDelayGroup/types.ts +7 -0
- package/src/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +13 -0
- package/src/root/Root.tsx +93 -0
- package/src/root/RootProvider.tsx +37 -0
- package/src/root/__workshop__/Boundary.tsx +43 -0
- package/src/root/__workshop__/index.ts +24 -0
- package/src/root/__workshop__/primitives.tsx +49 -0
- package/src/root/__workshop__/tone-inheritance.tsx +65 -0
- package/src/utils/ErrorBoundary.tsx +50 -0
- package/src/utils/boundaryElement/BoundaryElementContext.ts +7 -0
- package/src/utils/boundaryElement/BoundaryElementProvider.tsx +16 -0
- package/src/utils/boundaryElement/__workshop__/Plain.tsx +49 -0
- package/src/utils/boundaryElement/__workshop__/index.ts +16 -0
- package/src/utils/boundaryElement/types.ts +2 -0
- package/src/utils/boundaryElement/useBoundaryElement.ts +12 -0
- package/src/utils/elementQuery/ElementQuery.tsx +75 -0
- package/src/utils/elementQuery/__workshop__/CustomMedia.tsx +19 -0
- package/src/utils/elementQuery/__workshop__/index.ts +16 -0
- package/src/utils/elementQuery/__workshop__/styles.css.ts +31 -0
- package/src/utils/portal/Portal.test.tsx +105 -0
- package/src/utils/portal/Portal.tsx +42 -0
- package/src/utils/portal/PortalContext.ts +37 -0
- package/src/utils/portal/PortalProvider.tsx +38 -0
- package/src/utils/portal/__workshop__/Named.tsx +69 -0
- package/src/utils/portal/__workshop__/index.ts +16 -0
- package/src/utils/portal/types.ts +7 -0
- package/src/utils/portal/usePortal.ts +30 -0
- package/dist/_chunks-cjs/_visual-editing.js +0 -5864
- package/dist/_chunks-cjs/_visual-editing.js.map +0 -1
- package/dist/_chunks-cjs/refractor.js +0 -23
- package/dist/_chunks-cjs/refractor.js.map +0 -1
- package/dist/_chunks-es/_visual-editing.mjs +0 -5870
- package/dist/_chunks-es/_visual-editing.mjs.map +0 -1
- package/dist/_chunks-es/refractor.mjs +0 -26
- package/dist/_chunks-es/refractor.mjs.map +0 -1
- package/dist/_visual-editing.d.mts +0 -1007
- package/dist/_visual-editing.d.ts +0 -1007
- package/dist/_visual-editing.js +0 -31
- package/dist/_visual-editing.js.map +0 -1
- package/dist/_visual-editing.mjs +0 -31
- package/dist/_visual-editing.mjs.map +0 -1
- package/dist/index.d.mts +0 -2972
- package/dist/index.mjs +0 -2041
- package/dist/index.mjs.map +0 -1
- package/dist/theme.d.mts +0 -1500
- package/dist/theme.d.ts +0 -1500
- package/dist/theme.js +0 -4127
- package/dist/theme.js.map +0 -1
- package/dist/theme.mjs +0 -4127
- package/dist/theme.mjs.map +0 -1
- package/exports/_visual-editing.ts +0 -31
- package/exports/theme.ts +0 -1
- package/src/core/__workshop__/constants.ts +0 -293
- package/src/core/_compat.ts +0 -264
- package/src/core/components/autocomplete/__mocks__/apiStore.ts +0 -49
- package/src/core/components/autocomplete/__mocks__/countries.ts +0 -245
- package/src/core/components/autocomplete/__workshop__/async.tsx +0 -156
- package/src/core/components/autocomplete/__workshop__/constrainedHeight.tsx +0 -137
- package/src/core/components/autocomplete/__workshop__/custom.tsx +0 -89
- package/src/core/components/autocomplete/__workshop__/example.tsx +0 -79
- package/src/core/components/autocomplete/__workshop__/focusAndBlur.tsx +0 -36
- package/src/core/components/autocomplete/__workshop__/fullscreen.tsx +0 -294
- package/src/core/components/autocomplete/__workshop__/index.ts +0 -39
- package/src/core/components/autocomplete/autocomplete.styles.tsx +0 -39
- package/src/core/components/autocomplete/autocomplete.tsx +0 -767
- package/src/core/components/autocomplete/autocompleteOption.tsx +0 -45
- package/src/core/components/autocomplete/autocompleteReducer.ts +0 -47
- package/src/core/components/autocomplete/constants.ts +0 -28
- package/src/core/components/autocomplete/index.ts +0 -2
- package/src/core/components/autocomplete/types.ts +0 -108
- package/src/core/components/breadcrumbs/__workshop__/example.tsx +0 -62
- package/src/core/components/breadcrumbs/__workshop__/index.ts +0 -14
- package/src/core/components/breadcrumbs/breadcrumbs.styles.ts +0 -18
- package/src/core/components/breadcrumbs/breadcrumbs.tsx +0 -129
- package/src/core/components/breadcrumbs/index.ts +0 -1
- package/src/core/components/dialog/__workshop__/activate.tsx +0 -134
- package/src/core/components/dialog/__workshop__/autoFocus.tsx +0 -29
- package/src/core/components/dialog/__workshop__/index.ts +0 -19
- package/src/core/components/dialog/__workshop__/layering.tsx +0 -41
- package/src/core/components/dialog/__workshop__/nested.tsx +0 -72
- package/src/core/components/dialog/__workshop__/onScroll.tsx +0 -39
- package/src/core/components/dialog/__workshop__/panes.tsx +0 -82
- package/src/core/components/dialog/__workshop__/position.tsx +0 -30
- package/src/core/components/dialog/__workshop__/props.tsx +0 -75
- package/src/core/components/dialog/__workshop__/provider.tsx +0 -11
- package/src/core/components/dialog/__workshop__/wrapped.tsx +0 -76
- package/src/core/components/dialog/dialog.tsx +0 -430
- package/src/core/components/dialog/dialogContext.ts +0 -20
- package/src/core/components/dialog/dialogProvider.tsx +0 -35
- package/src/core/components/dialog/index.ts +0 -4
- package/src/core/components/dialog/styles.ts +0 -77
- package/src/core/components/dialog/useDialog.ts +0 -11
- package/src/core/components/hotkeys/__workshop__/index.ts +0 -14
- package/src/core/components/hotkeys/__workshop__/plain.tsx +0 -9
- package/src/core/components/hotkeys/hotkeys.tsx +0 -62
- package/src/core/components/hotkeys/index.ts +0 -1
- package/src/core/components/index.ts +0 -9
- package/src/core/components/menu/__workshop__/asComponent.tsx +0 -45
- package/src/core/components/menu/__workshop__/avatarMenu.tsx +0 -51
- package/src/core/components/menu/__workshop__/closableMenuButton.tsx +0 -46
- package/src/core/components/menu/__workshop__/constrainedInBoundary.tsx +0 -134
- package/src/core/components/menu/__workshop__/customMenuItem.tsx +0 -45
- package/src/core/components/menu/__workshop__/customSelectedState.tsx +0 -39
- package/src/core/components/menu/__workshop__/disableFocusOnClose.tsx +0 -40
- package/src/core/components/menu/__workshop__/groups.tsx +0 -156
- package/src/core/components/menu/__workshop__/index.ts +0 -89
- package/src/core/components/menu/__workshop__/menuButton.tsx +0 -80
- package/src/core/components/menu/__workshop__/menuGroupRight.tsx +0 -65
- package/src/core/components/menu/__workshop__/nestedMenu.tsx +0 -22
- package/src/core/components/menu/__workshop__/onCloseMenuButton.tsx +0 -41
- package/src/core/components/menu/__workshop__/selectedItem.tsx +0 -69
- package/src/core/components/menu/__workshop__/shouldFocus.tsx +0 -47
- package/src/core/components/menu/__workshop__/tones.tsx +0 -25
- package/src/core/components/menu/__workshop__/withoutArrow.tsx +0 -32
- package/src/core/components/menu/helpers.ts +0 -82
- package/src/core/components/menu/index.ts +0 -5
- package/src/core/components/menu/menu.test.tsx +0 -125
- package/src/core/components/menu/menu.tsx +0 -172
- package/src/core/components/menu/menuButton.tsx +0 -268
- package/src/core/components/menu/menuContext.ts +0 -18
- package/src/core/components/menu/menuDivider.ts +0 -12
- package/src/core/components/menu/menuGroup.tsx +0 -219
- package/src/core/components/menu/menuItem.tsx +0 -180
- package/src/core/components/menu/useMenu.ts +0 -21
- package/src/core/components/menu/useMenuController.ts +0 -231
- package/src/core/components/skeleton/__workshop__/delay.tsx +0 -70
- package/src/core/components/skeleton/__workshop__/index.ts +0 -11
- package/src/core/components/skeleton/__workshop__/skeleton.tsx +0 -64
- package/src/core/components/skeleton/index.ts +0 -2
- package/src/core/components/skeleton/skeleton.tsx +0 -57
- package/src/core/components/skeleton/styles.ts +0 -50
- package/src/core/components/skeleton/textSkeleton.tsx +0 -122
- package/src/core/components/tab/__workshop__/example.tsx +0 -79
- package/src/core/components/tab/__workshop__/index.ts +0 -14
- package/src/core/components/tab/index.ts +0 -3
- package/src/core/components/tab/tab.tsx +0 -101
- package/src/core/components/tab/tabList.tsx +0 -70
- package/src/core/components/tab/tabPanel.tsx +0 -39
- package/src/core/components/toast/__workshop__/hook.tsx +0 -71
- package/src/core/components/toast/__workshop__/index.ts +0 -19
- package/src/core/components/toast/__workshop__/toast.tsx +0 -26
- package/src/core/components/toast/index.ts +0 -4
- package/src/core/components/toast/styles.ts +0 -77
- package/src/core/components/toast/toast.test.tsx +0 -101
- package/src/core/components/toast/toast.tsx +0 -198
- package/src/core/components/toast/toastContext.ts +0 -7
- package/src/core/components/toast/toastLayer.tsx +0 -51
- package/src/core/components/toast/toastProvider.tsx +0 -113
- package/src/core/components/toast/types.ts +0 -26
- package/src/core/components/toast/useToast.ts +0 -25
- package/src/core/components/tree/__workshop__/basic.perf.ts +0 -19
- package/src/core/components/tree/__workshop__/basic.tsx +0 -105
- package/src/core/components/tree/__workshop__/index.ts +0 -21
- package/src/core/components/tree/__workshop__/tabFromElement.tsx +0 -84
- package/src/core/components/tree/helpers.ts +0 -105
- package/src/core/components/tree/index.ts +0 -4
- package/src/core/components/tree/style.ts +0 -105
- package/src/core/components/tree/tree.tsx +0 -231
- package/src/core/components/tree/treeContext.ts +0 -10
- package/src/core/components/tree/treeGroup.tsx +0 -28
- package/src/core/components/tree/treeItem.tsx +0 -217
- package/src/core/components/tree/types.ts +0 -21
- package/src/core/components/tree/useTree.ts +0 -17
- package/src/core/helpers/index.ts +0 -4
- package/src/core/hooks/index.ts +0 -12
- package/src/core/hooks/useArrayProp.ts +0 -17
- package/src/core/hooks/useClickOutside.test.tsx +0 -482
- package/src/core/hooks/useClickOutside.ts +0 -118
- package/src/core/hooks/useClickOutsideEvent.test.tsx +0 -115
- package/src/core/hooks/useClickOutsideEvent.ts +0 -73
- package/src/core/hooks/useDelayed.test.ts +0 -68
- package/src/core/hooks/useDelayedState.ts +0 -28
- package/src/core/hooks/useElementRect/__workshop__/example.tsx +0 -32
- package/src/core/hooks/useElementRect/__workshop__/index.ts +0 -14
- package/src/core/hooks/useElementRect/index.ts +0 -1
- package/src/core/hooks/useElementRect/useElementRect.ts +0 -13
- package/src/core/hooks/useElementSize.ts +0 -19
- package/src/core/hooks/useForwardedRef.ts +0 -19
- package/src/core/hooks/useGlobalKeyDown.ts +0 -24
- package/src/core/hooks/useIsomorphicEffect.ts +0 -7
- package/src/core/hooks/useMatchMedia.ts +0 -28
- package/src/core/hooks/useMediaIndex/__workshop__/index.ts +0 -14
- package/src/core/hooks/useMediaIndex/__workshop__/test.tsx +0 -14
- package/src/core/hooks/useMediaIndex/index.ts +0 -1
- package/src/core/hooks/useMediaIndex/useMediaIndex.test.tsx +0 -36
- package/src/core/hooks/useMediaIndex/useMediaIndex.ts +0 -102
- package/src/core/hooks/usePrefersDark.hydration.test.tsx +0 -56
- package/src/core/hooks/usePrefersDark.test.tsx +0 -19
- package/src/core/hooks/usePrefersDark.ts +0 -16
- package/src/core/hooks/usePrefersReducedMotion.hydration.test.tsx +0 -56
- package/src/core/hooks/usePrefersReducedMotion.test.tsx +0 -19
- package/src/core/hooks/usePrefersReducedMotion.ts +0 -16
- package/src/core/index.ts +0 -10
- package/src/core/middleware/origin.ts +0 -47
- package/src/core/observers/elementSizeObserver.ts +0 -116
- package/src/core/observers/index.ts +0 -2
- package/src/core/observers/resizeObserver.ts +0 -9
- package/src/core/primitives/_selectable/index.ts +0 -1
- package/src/core/primitives/_selectable/selectable.tsx +0 -15
- package/src/core/primitives/_selectable/style.ts +0 -115
- package/src/core/primitives/avatar/__workshop__/asButton.tsx +0 -14
- package/src/core/primitives/avatar/__workshop__/index.ts +0 -29
- package/src/core/primitives/avatar/__workshop__/stack.tsx +0 -25
- package/src/core/primitives/avatar/__workshop__/withinButton.tsx +0 -63
- package/src/core/primitives/avatar/__workshop__/withinMenuItem.tsx +0 -70
- package/src/core/primitives/avatar/avatar.tsx +0 -192
- package/src/core/primitives/avatar/avatarCounter.tsx +0 -91
- package/src/core/primitives/avatar/avatarStack.tsx +0 -100
- package/src/core/primitives/avatar/index.ts +0 -4
- package/src/core/primitives/avatar/styles.ts +0 -167
- package/src/core/primitives/avatar/types.ts +0 -17
- package/src/core/primitives/badge/__workshop__/index.ts +0 -19
- package/src/core/primitives/badge/__workshop__/props.tsx +0 -30
- package/src/core/primitives/badge/__workshop__/tones.tsx +0 -21
- package/src/core/primitives/badge/badge.test.tsx +0 -16
- package/src/core/primitives/badge/badge.tsx +0 -62
- package/src/core/primitives/badge/index.ts +0 -1
- package/src/core/primitives/badge/styles.ts +0 -20
- package/src/core/primitives/badge/types.ts +0 -8
- package/src/core/primitives/box/__workshop__/index.ts +0 -19
- package/src/core/primitives/box/__workshop__/props.tsx +0 -20
- package/src/core/primitives/box/__workshop__/responsive.tsx +0 -20
- package/src/core/primitives/box/box.tsx +0 -131
- package/src/core/primitives/box/index.ts +0 -1
- package/src/core/primitives/button/__workshop__/custom.tsx +0 -51
- package/src/core/primitives/button/__workshop__/customIcons.tsx +0 -30
- package/src/core/primitives/button/__workshop__/disabled.tsx +0 -74
- package/src/core/primitives/button/__workshop__/index.ts +0 -59
- package/src/core/primitives/button/__workshop__/mixedChildren.tsx +0 -12
- package/src/core/primitives/button/__workshop__/props.tsx +0 -55
- package/src/core/primitives/button/__workshop__/sanityUploadButton.tsx +0 -36
- package/src/core/primitives/button/__workshop__/stacked.tsx +0 -58
- package/src/core/primitives/button/__workshop__/styled1.tsx +0 -17
- package/src/core/primitives/button/__workshop__/styled2.tsx +0 -19
- package/src/core/primitives/button/__workshop__/uploadButton.tsx +0 -28
- package/src/core/primitives/button/button.test.tsx +0 -44
- package/src/core/primitives/button/button.tsx +0 -186
- package/src/core/primitives/button/index.ts +0 -1
- package/src/core/primitives/button/styles.ts +0 -117
- package/src/core/primitives/card/__workshop__/allTones.tsx +0 -25
- package/src/core/primitives/card/__workshop__/asButton.tsx +0 -107
- package/src/core/primitives/card/__workshop__/asComponent.tsx +0 -27
- package/src/core/primitives/card/__workshop__/checkered.tsx +0 -26
- package/src/core/primitives/card/__workshop__/index.ts +0 -18
- package/src/core/primitives/card/__workshop__/interactive.tsx +0 -30
- package/src/core/primitives/card/__workshop__/listNavigation.tsx +0 -80
- package/src/core/primitives/card/__workshop__/props.tsx +0 -53
- package/src/core/primitives/card/__workshop__/selected.tsx +0 -94
- package/src/core/primitives/card/__workshop__/styled.tsx +0 -14
- package/src/core/primitives/card/card.tsx +0 -117
- package/src/core/primitives/card/index.ts +0 -2
- package/src/core/primitives/card/styles.ts +0 -147
- package/src/core/primitives/card/types.ts +0 -11
- package/src/core/primitives/checkbox/__workshop__/example.tsx +0 -25
- package/src/core/primitives/checkbox/__workshop__/index.ts +0 -13
- package/src/core/primitives/checkbox/__workshop__/props.tsx +0 -33
- package/src/core/primitives/checkbox/__workshop__/readOnly.tsx +0 -16
- package/src/core/primitives/checkbox/__workshop__/tones.tsx +0 -28
- package/src/core/primitives/checkbox/checkbox.tsx +0 -73
- package/src/core/primitives/checkbox/index.ts +0 -1
- package/src/core/primitives/checkbox/styles.ts +0 -128
- package/src/core/primitives/code/__workshop__/index.ts +0 -19
- package/src/core/primitives/code/__workshop__/opticalAlignment.tsx +0 -48
- package/src/core/primitives/code/__workshop__/props.tsx +0 -21
- package/src/core/primitives/code/code.tsx +0 -46
- package/src/core/primitives/code/index.ts +0 -1
- package/src/core/primitives/code/refractor.tsx +0 -20
- package/src/core/primitives/code/styles.ts +0 -77
- package/src/core/primitives/container/__workshop__/example.tsx +0 -20
- package/src/core/primitives/container/__workshop__/index.ts +0 -8
- package/src/core/primitives/container/container.tsx +0 -41
- package/src/core/primitives/container/index.ts +0 -2
- package/src/core/primitives/container/styles.ts +0 -23
- package/src/core/primitives/flex/__workshop__/example.tsx +0 -34
- package/src/core/primitives/flex/__workshop__/gap.tsx +0 -25
- package/src/core/primitives/flex/__workshop__/index.ts +0 -11
- package/src/core/primitives/flex/flex.tsx +0 -54
- package/src/core/primitives/flex/index.ts +0 -1
- package/src/core/primitives/grid/__workshop__/index.ts +0 -10
- package/src/core/primitives/grid/__workshop__/responsive.tsx +0 -54
- package/src/core/primitives/grid/grid.tsx +0 -48
- package/src/core/primitives/grid/index.ts +0 -1
- package/src/core/primitives/heading/__workshop__/index.ts +0 -19
- package/src/core/primitives/heading/__workshop__/opticalAlignment.tsx +0 -54
- package/src/core/primitives/heading/__workshop__/plain.tsx +0 -32
- package/src/core/primitives/heading/heading.tsx +0 -80
- package/src/core/primitives/heading/index.ts +0 -1
- package/src/core/primitives/heading/styles.ts +0 -64
- package/src/core/primitives/heading/types.ts +0 -7
- package/src/core/primitives/index.ts +0 -27
- package/src/core/primitives/inline/__workshop__/index.ts +0 -8
- package/src/core/primitives/inline/__workshop__/plain.tsx +0 -27
- package/src/core/primitives/inline/index.ts +0 -1
- package/src/core/primitives/inline/inline.tsx +0 -47
- package/src/core/primitives/inline/styles.ts +0 -32
- package/src/core/primitives/inline/types.ts +0 -6
- package/src/core/primitives/kbd/__workshop__/index.ts +0 -8
- package/src/core/primitives/kbd/__workshop__/plain.tsx +0 -9
- package/src/core/primitives/kbd/index.ts +0 -1
- package/src/core/primitives/kbd/kbd.tsx +0 -61
- package/src/core/primitives/label/__workshop__/index.ts +0 -19
- package/src/core/primitives/label/__workshop__/opticalAlignment.tsx +0 -48
- package/src/core/primitives/label/__workshop__/plain.tsx +0 -24
- package/src/core/primitives/label/index.ts +0 -1
- package/src/core/primitives/label/label.tsx +0 -79
- package/src/core/primitives/label/styles.ts +0 -45
- package/src/core/primitives/popover/__workshop__/AlignedStory.tsx +0 -77
- package/src/core/primitives/popover/__workshop__/MarginsStory.tsx +0 -31
- package/src/core/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +0 -32
- package/src/core/primitives/popover/__workshop__/OpenOnMountStory.tsx +0 -11
- package/src/core/primitives/popover/__workshop__/PlainStory.tsx +0 -71
- package/src/core/primitives/popover/__workshop__/RecursiveStory.tsx +0 -71
- package/src/core/primitives/popover/__workshop__/SidePanelStory.tsx +0 -89
- package/src/core/primitives/popover/__workshop__/TestStory.tsx +0 -97
- package/src/core/primitives/popover/__workshop__/index.ts +0 -49
- package/src/core/primitives/popover/constants.ts +0 -22
- package/src/core/primitives/popover/floating-ui/size.ts +0 -99
- package/src/core/primitives/popover/helpers.ts +0 -31
- package/src/core/primitives/popover/index.ts +0 -2
- package/src/core/primitives/popover/popover.tsx +0 -511
- package/src/core/primitives/popover/popoverCard.tsx +0 -166
- package/src/core/primitives/popover/types.ts +0 -7
- package/src/core/primitives/radio/__workshop__/example.tsx +0 -63
- package/src/core/primitives/radio/__workshop__/index.ts +0 -11
- package/src/core/primitives/radio/__workshop__/plain.tsx +0 -28
- package/src/core/primitives/radio/index.ts +0 -1
- package/src/core/primitives/radio/radio.tsx +0 -51
- package/src/core/primitives/radio/styles.ts +0 -117
- package/src/core/primitives/select/__workshop__/index.ts +0 -11
- package/src/core/primitives/select/__workshop__/plain.tsx +0 -27
- package/src/core/primitives/select/__workshop__/readOnly.tsx +0 -23
- package/src/core/primitives/select/index.ts +0 -1
- package/src/core/primitives/select/select.tsx +0 -88
- package/src/core/primitives/select/styles.ts +0 -166
- package/src/core/primitives/spinner/__workshop__/Props.tsx +0 -15
- package/src/core/primitives/spinner/__workshop__/index.ts +0 -14
- package/src/core/primitives/spinner/index.ts +0 -1
- package/src/core/primitives/spinner/spinner.tsx +0 -46
- package/src/core/primitives/stack/__workshop__/index.ts +0 -14
- package/src/core/primitives/stack/__workshop__/plain.tsx +0 -32
- package/src/core/primitives/stack/index.ts +0 -1
- package/src/core/primitives/stack/stack.tsx +0 -43
- package/src/core/primitives/stack/styles.ts +0 -32
- package/src/core/primitives/switch/__workshop__/example.tsx +0 -23
- package/src/core/primitives/switch/__workshop__/index.ts +0 -11
- package/src/core/primitives/switch/__workshop__/props.tsx +0 -21
- package/src/core/primitives/switch/index.ts +0 -1
- package/src/core/primitives/switch/styles.ts +0 -173
- package/src/core/primitives/switch/switch.tsx +0 -68
- package/src/core/primitives/text/__workshop__/colored.tsx +0 -30
- package/src/core/primitives/text/__workshop__/example.tsx +0 -39
- package/src/core/primitives/text/__workshop__/index.ts +0 -24
- package/src/core/primitives/text/__workshop__/opticalAlignment.tsx +0 -48
- package/src/core/primitives/text/index.ts +0 -1
- package/src/core/primitives/text/styles.ts +0 -74
- package/src/core/primitives/text/text.tsx +0 -81
- package/src/core/primitives/textArea/__workshop__/index.ts +0 -14
- package/src/core/primitives/textArea/__workshop__/plain.tsx +0 -50
- package/src/core/primitives/textArea/index.ts +0 -1
- package/src/core/primitives/textArea/textArea.tsx +0 -120
- package/src/core/primitives/textInput/__workshop__/clearButton.tsx +0 -30
- package/src/core/primitives/textInput/__workshop__/customValidity.tsx +0 -17
- package/src/core/primitives/textInput/__workshop__/index.ts +0 -44
- package/src/core/primitives/textInput/__workshop__/plain.tsx +0 -98
- package/src/core/primitives/textInput/__workshop__/readOnly.tsx +0 -9
- package/src/core/primitives/textInput/__workshop__/states.tsx +0 -53
- package/src/core/primitives/textInput/__workshop__/tones.tsx +0 -277
- package/src/core/primitives/textInput/__workshop__/typed.tsx +0 -23
- package/src/core/primitives/textInput/index.ts +0 -1
- package/src/core/primitives/textInput/textInput.tsx +0 -390
- package/src/core/primitives/tooltip/__workshop__/customPortal.tsx +0 -102
- package/src/core/primitives/tooltip/__workshop__/index.ts +0 -29
- package/src/core/primitives/tooltip/__workshop__/overflowingBoundary.tsx +0 -74
- package/src/core/primitives/tooltip/__workshop__/props.tsx +0 -107
- package/src/core/primitives/tooltip/__workshop__/resizableBoundary.tsx +0 -86
- package/src/core/primitives/tooltip/constants.ts +0 -23
- package/src/core/primitives/tooltip/index.ts +0 -2
- package/src/core/primitives/tooltip/tooltip.test.tsx +0 -452
- package/src/core/primitives/tooltip/tooltip.tsx +0 -495
- package/src/core/primitives/tooltip/tooltipCard.tsx +0 -109
- package/src/core/primitives/tooltip/tooltipDelayGroup/index.ts +0 -4
- package/src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +0 -11
- package/src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +0 -57
- package/src/core/primitives/tooltip/tooltipDelayGroup/types.ts +0 -10
- package/src/core/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +0 -13
- package/src/core/primitives/types.ts +0 -146
- package/src/core/styles/border/borderStyle.ts +0 -56
- package/src/core/styles/border/index.ts +0 -2
- package/src/core/styles/border/types.ts +0 -10
- package/src/core/styles/box/boxStyle.ts +0 -69
- package/src/core/styles/box/index.ts +0 -2
- package/src/core/styles/box/types.ts +0 -11
- package/src/core/styles/card/_cardColorStyle.ts +0 -108
- package/src/core/styles/card/index.ts +0 -1
- package/src/core/styles/flex/flexItemStyle.ts +0 -27
- package/src/core/styles/flex/flexStyle.ts +0 -70
- package/src/core/styles/flex/index.ts +0 -3
- package/src/core/styles/flex/types.ts +0 -25
- package/src/core/styles/focusRing/index.ts +0 -25
- package/src/core/styles/font/codeFontStyle.ts +0 -13
- package/src/core/styles/font/headingFontStyle.ts +0 -13
- package/src/core/styles/font/index.ts +0 -6
- package/src/core/styles/font/labelFontStyle.ts +0 -13
- package/src/core/styles/font/responsiveFont.ts +0 -103
- package/src/core/styles/font/textAlignStyle.ts +0 -19
- package/src/core/styles/font/textFontStyle.ts +0 -13
- package/src/core/styles/font/types.ts +0 -35
- package/src/core/styles/grid/gridItemStyle.ts +0 -82
- package/src/core/styles/grid/gridStyle.ts +0 -108
- package/src/core/styles/grid/index.ts +0 -3
- package/src/core/styles/grid/types.ts +0 -37
- package/src/core/styles/helpers.ts +0 -72
- package/src/core/styles/index.ts +0 -5
- package/src/core/styles/input/index.ts +0 -2
- package/src/core/styles/input/responsiveInputPaddingStyle.ts +0 -78
- package/src/core/styles/input/textInputStyle.ts +0 -263
- package/src/core/styles/internal.ts +0 -12
- package/src/core/styles/margin/index.ts +0 -2
- package/src/core/styles/margin/marginStyle.ts +0 -21
- package/src/core/styles/margin/marginsStyle.test.ts +0 -33
- package/src/core/styles/margin/types.ts +0 -9
- package/src/core/styles/padding/index.ts +0 -2
- package/src/core/styles/padding/paddingStyle.test.ts +0 -33
- package/src/core/styles/padding/paddingStyle.ts +0 -21
- package/src/core/styles/padding/types.ts +0 -12
- package/src/core/styles/radius/index.ts +0 -2
- package/src/core/styles/radius/radiusStyle.ts +0 -23
- package/src/core/styles/radius/types.ts +0 -8
- package/src/core/styles/shadow/index.ts +0 -2
- package/src/core/styles/shadow/shadowStyle.ts +0 -29
- package/src/core/styles/shadow/types.ts +0 -6
- package/src/core/styles/types.ts +0 -8
- package/src/core/theme/__workshop__/build/Root.tsx +0 -367
- package/src/core/theme/__workshop__/build/helpers.ts +0 -46
- package/src/core/theme/__workshop__/build/story.tsx +0 -465
- package/src/core/theme/__workshop__/canvas.tsx +0 -352
- package/src/core/theme/__workshop__/color.tsx +0 -62
- package/src/core/theme/__workshop__/debug/story.tsx +0 -408
- package/src/core/theme/__workshop__/index.ts +0 -39
- package/src/core/theme/__workshop__/layer.tsx +0 -78
- package/src/core/theme/__workshop__/nestedProvider.tsx +0 -15
- package/src/core/theme/index.ts +0 -5
- package/src/core/theme/theme.test.tsx +0 -73
- package/src/core/theme/themeColorProvider.tsx +0 -29
- package/src/core/theme/themeContext.ts +0 -10
- package/src/core/theme/themeProvider.tsx +0 -62
- package/src/core/theme/types.ts +0 -12
- package/src/core/theme/useRootTheme.ts +0 -17
- package/src/core/theme/useTheme.ts +0 -16
- package/src/core/types/avatar.ts +0 -14
- package/src/core/types/badge.ts +0 -12
- package/src/core/types/box.ts +0 -19
- package/src/core/types/button.ts +0 -21
- package/src/core/types/card.ts +0 -6
- package/src/core/types/dialog.ts +0 -4
- package/src/core/types/flex.ts +0 -30
- package/src/core/types/grid.ts +0 -14
- package/src/core/types/gridItem.ts +0 -29
- package/src/core/types/index.ts +0 -14
- package/src/core/types/placement.ts +0 -18
- package/src/core/types/popover.ts +0 -4
- package/src/core/types/radius.ts +0 -4
- package/src/core/types/selectable.ts +0 -6
- package/src/core/types/text.ts +0 -4
- package/src/core/utils/arrow/arrow.tsx +0 -123
- package/src/core/utils/arrow/cmds.ts +0 -91
- package/src/core/utils/arrow/index.ts +0 -1
- package/src/core/utils/boundaryElement/__workshop__/index.ts +0 -14
- package/src/core/utils/boundaryElement/__workshop__/plain.tsx +0 -19
- package/src/core/utils/boundaryElement/boundaryElement.test.tsx +0 -100
- package/src/core/utils/boundaryElement/boundaryElementContext.ts +0 -7
- package/src/core/utils/boundaryElement/boundaryElementProvider.tsx +0 -24
- package/src/core/utils/boundaryElement/index.ts +0 -3
- package/src/core/utils/boundaryElement/types.ts +0 -7
- package/src/core/utils/boundaryElement/useBoundaryElement.ts +0 -26
- package/src/core/utils/conditionalWrapper/conditionalWrapper.tsx +0 -21
- package/src/core/utils/conditionalWrapper/index.ts +0 -1
- package/src/core/utils/elementQuery/__workshop__/customMedia.tsx +0 -30
- package/src/core/utils/elementQuery/__workshop__/index.ts +0 -14
- package/src/core/utils/elementQuery/elementQuery.tsx +0 -53
- package/src/core/utils/elementQuery/index.ts +0 -1
- package/src/core/utils/errorBoundary.tsx +0 -48
- package/src/core/utils/getElementRef.ts +0 -26
- package/src/core/utils/index.ts +0 -9
- package/src/core/utils/layer/__workshop__/_debug.tsx +0 -17
- package/src/core/utils/layer/__workshop__/index.ts +0 -24
- package/src/core/utils/layer/__workshop__/multipleRoots.tsx +0 -49
- package/src/core/utils/layer/__workshop__/nested.tsx +0 -98
- package/src/core/utils/layer/__workshop__/responsiveZOffset.tsx +0 -13
- package/src/core/utils/layer/getLayerContext.test.ts +0 -30
- package/src/core/utils/layer/getLayerContext.ts +0 -21
- package/src/core/utils/layer/index.ts +0 -4
- package/src/core/utils/layer/layer.test.tsx +0 -108
- package/src/core/utils/layer/layer.tsx +0 -98
- package/src/core/utils/layer/layerContext.ts +0 -7
- package/src/core/utils/layer/layerProvider.tsx +0 -111
- package/src/core/utils/layer/useLayer.ts +0 -26
- package/src/core/utils/portal/__workshop__/index.ts +0 -14
- package/src/core/utils/portal/__workshop__/named.tsx +0 -63
- package/src/core/utils/portal/index.ts +0 -4
- package/src/core/utils/portal/portal.test.tsx +0 -103
- package/src/core/utils/portal/portal.ts +0 -32
- package/src/core/utils/portal/portalContext.ts +0 -31
- package/src/core/utils/portal/portalProvider.tsx +0 -47
- package/src/core/utils/portal/types.ts +0 -9
- package/src/core/utils/portal/usePortal.ts +0 -25
- package/src/core/utils/spanWithTextOverflow.tsx +0 -10
- package/src/core/utils/srOnly/index.ts +0 -1
- package/src/core/utils/srOnly/srOnly.tsx +0 -36
- package/src/core/utils/virtualList/__workshop__/changingProps.tsx +0 -36
- package/src/core/utils/virtualList/__workshop__/elementScroll.tsx +0 -24
- package/src/core/utils/virtualList/__workshop__/index.ts +0 -29
- package/src/core/utils/virtualList/__workshop__/infiniteList.tsx +0 -48
- package/src/core/utils/virtualList/__workshop__/windowScrolll.tsx +0 -22
- package/src/core/utils/virtualList/index.ts +0 -1
- package/src/core/utils/virtualList/virtualList.tsx +0 -200
- package/src/theme/build/_deprecated/color/_selectable/createSelectableTones.ts +0 -76
- package/src/theme/build/_deprecated/color/_solid/createSolidTones.ts +0 -54
- package/src/theme/build/_deprecated/color/button/createButtonModes.ts +0 -22
- package/src/theme/build/_deprecated/color/button/createButtonTones.ts +0 -55
- package/src/theme/build/_deprecated/color/card/createCardStates.ts +0 -60
- package/src/theme/build/_deprecated/color/color.test.ts +0 -63
- package/src/theme/build/_deprecated/color/defaults.ts +0 -390
- package/src/theme/build/_deprecated/color/factory.ts +0 -142
- package/src/theme/build/_deprecated/color/index.ts +0 -1
- package/src/theme/build/_deprecated/color/input/createInputModes.ts +0 -81
- package/src/theme/build/_deprecated/color/muted/createMuted.ts +0 -54
- package/src/theme/build/_deprecated/color/spot/createSpot.ts +0 -20
- package/src/theme/build/buildColorTheme.test.ts +0 -183
- package/src/theme/build/buildColorTheme.ts +0 -499
- package/src/theme/build/buildTheme.test.ts +0 -87
- package/src/theme/build/buildTheme.ts +0 -36
- package/src/theme/build/colorToken/colorToken.ts +0 -19
- package/src/theme/build/colorToken/compileColorToken.ts +0 -21
- package/src/theme/build/colorToken/index.ts +0 -2
- package/src/theme/build/colorToken/types.ts +0 -6
- package/src/theme/build/index.ts +0 -3
- package/src/theme/build/lib/color-fns/blend/index.ts +0 -3
- package/src/theme/build/lib/color-fns/blend/mix.ts +0 -21
- package/src/theme/build/lib/color-fns/blend/multiply.ts +0 -18
- package/src/theme/build/lib/color-fns/blend/screen.ts +0 -18
- package/src/theme/build/lib/color-fns/color-fns.test.ts +0 -68
- package/src/theme/build/lib/color-fns/contrastRatio.ts +0 -31
- package/src/theme/build/lib/color-fns/convert.ts +0 -150
- package/src/theme/build/lib/color-fns/index.ts +0 -6
- package/src/theme/build/lib/color-fns/parse.ts +0 -60
- package/src/theme/build/lib/color-fns/rgba.ts +0 -10
- package/src/theme/build/lib/color-fns/types.ts +0 -28
- package/src/theme/build/lib/isRecord.ts +0 -3
- package/src/theme/build/lib/lazy.ts +0 -30
- package/src/theme/build/lib/utils.ts +0 -19
- package/src/theme/build/merge.ts +0 -26
- package/src/theme/build/mixThemeColor.test.ts +0 -21
- package/src/theme/build/mixThemeColor.ts +0 -53
- package/src/theme/build/renderColorTheme.ts +0 -532
- package/src/theme/build/renderColorValue.ts +0 -85
- package/src/theme/build/resolveColorTokens.ts +0 -268
- package/src/theme/build/theme.test.ts +0 -27
- package/src/theme/config/helpers.ts +0 -55
- package/src/theme/config/index.ts +0 -4
- package/src/theme/config/system.ts +0 -115
- package/src/theme/config/tokens/color/index.ts +0 -1
- package/src/theme/config/tokens/color/types.ts +0 -133
- package/src/theme/config/tokens/index.ts +0 -4
- package/src/theme/config/tokens/parseTokenKey.test.ts +0 -64
- package/src/theme/config/tokens/parseTokenKey.ts +0 -67
- package/src/theme/config/tokens/parseTokenValue.test.ts +0 -42
- package/src/theme/config/tokens/parseTokenValue.ts +0 -133
- package/src/theme/config/tokens/types.ts +0 -53
- package/src/theme/config/types.ts +0 -46
- package/src/theme/defaults/colorPalette.ts +0 -5
- package/src/theme/defaults/colorTokens.ts +0 -648
- package/src/theme/defaults/config.ts +0 -84
- package/src/theme/defaults/fonts.ts +0 -227
- package/src/theme/getScopedTheme.ts +0 -98
- package/src/theme/index.ts +0 -5
- package/src/theme/system/avatar.ts +0 -14
- package/src/theme/system/color/_constants.ts +0 -45
- package/src/theme/system/color/_helpers.ts +0 -24
- package/src/theme/system/color/_system.ts +0 -40
- package/src/theme/system/color/avatar.ts +0 -15
- package/src/theme/system/color/badge.ts +0 -16
- package/src/theme/system/color/button.ts +0 -17
- package/src/theme/system/color/color.ts +0 -34
- package/src/theme/system/color/index.ts +0 -13
- package/src/theme/system/color/input.ts +0 -25
- package/src/theme/system/color/kbd.ts +0 -8
- package/src/theme/system/color/selectable.ts +0 -12
- package/src/theme/system/color/shadow.ts +0 -7
- package/src/theme/system/color/state.ts +0 -43
- package/src/theme/system/color/syntax.ts +0 -41
- package/src/theme/system/css.ts +0 -8
- package/src/theme/system/focusRing.ts +0 -7
- package/src/theme/system/font.ts +0 -52
- package/src/theme/system/index.ts +0 -11
- package/src/theme/system/input.ts +0 -33
- package/src/theme/system/layer.ts +0 -8
- package/src/theme/system/shadow.ts +0 -19
- package/src/theme/system/styles.ts +0 -13
- package/src/theme/system/theme.ts +0 -138
- package/src/theme/system/v0/avatar.ts +0 -10
- package/src/theme/system/v0/color/_generic.ts +0 -35
- package/src/theme/system/v0/color/_system.ts +0 -17
- package/src/theme/system/v0/color/base.ts +0 -21
- package/src/theme/system/v0/color/button.ts +0 -42
- package/src/theme/system/v0/color/card.ts +0 -19
- package/src/theme/system/v0/color/color.ts +0 -40
- package/src/theme/system/v0/color/index.ts +0 -11
- package/src/theme/system/v0/color/input.ts +0 -34
- package/src/theme/system/v0/color/muted.ts +0 -26
- package/src/theme/system/v0/color/selectable.ts +0 -31
- package/src/theme/system/v0/color/solid.ts +0 -26
- package/src/theme/system/v0/color/spot.ts +0 -13
- package/src/theme/system/v0/index.ts +0 -3
- package/src/theme/system/v0/input.ts +0 -23
- package/src/theme/versioning/getTheme_v2.ts +0 -57
- package/src/theme/versioning/index.ts +0 -5
- package/src/theme/versioning/is_v0.ts +0 -6
- package/src/theme/versioning/is_v2.ts +0 -6
- package/src/theme/versioning/themeColor_v0_v2.ts +0 -243
- package/src/theme/versioning/themeColor_v2_v2_9.ts +0 -49
- package/src/theme/versioning/v0_v2.ts +0 -94
- package/src/theme/versioning/v2_v0.ts +0 -135
- /package/src/{core/components → components}/autocomplete/__workshop__/types.ts +0 -0
- /package/src/{core/components → components}/toast/toastState.ts +0 -0
- /package/src/{core/hooks → hooks}/useCustomValidity.ts +0 -0
- /package/src/{core/hooks → hooks}/useMounted.ts +0 -0
- /package/src/{core/primitives → primitives}/container/types.ts +0 -0
- /package/src/{core/utils → primitives}/layer/types.ts +0 -0
- /package/src/{core/utils → utils}/elementQuery/helpers.ts +0 -0
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
import {CloseIcon, SearchIcon} from '@sanity/icons'
|
|
2
|
+
import {
|
|
3
|
+
Autocomplete,
|
|
4
|
+
Badge,
|
|
5
|
+
type BaseAutocompleteOption,
|
|
6
|
+
Box,
|
|
7
|
+
Button,
|
|
8
|
+
Card,
|
|
9
|
+
Flex,
|
|
10
|
+
Layer,
|
|
11
|
+
Portal,
|
|
12
|
+
PortalProvider,
|
|
13
|
+
Selectable,
|
|
14
|
+
Stack,
|
|
15
|
+
Text,
|
|
16
|
+
TextSkeleton,
|
|
17
|
+
Tooltip,
|
|
18
|
+
useToast,
|
|
19
|
+
} from '@sanity/ui'
|
|
20
|
+
import {useBoolean} from '@sanity/ui-workshop'
|
|
21
|
+
import {startTransition, useCallback, useEffect, useMemo, useRef, useState} from 'react'
|
|
22
|
+
|
|
23
|
+
import {countriesStore} from './mock/apiStore'
|
|
24
|
+
|
|
25
|
+
export default function FullscreenStory(): React.JSX.Element {
|
|
26
|
+
const error = useBoolean('Error', false)
|
|
27
|
+
|
|
28
|
+
const {push: pushToast} = useToast()
|
|
29
|
+
const [portalElement, setPortalElement] = useState<HTMLDivElement | null>(null)
|
|
30
|
+
const [closeSearchButtonElement, setCloseSearchButtonElement] =
|
|
31
|
+
useState<HTMLButtonElement | null>(null)
|
|
32
|
+
const [options, setOptions] = useState<BaseAutocompleteOption[]>([])
|
|
33
|
+
const searchRef = useRef<{cancel: () => void} | null>(null)
|
|
34
|
+
const fetchRef = useRef<{cancel: () => void} | null>(null)
|
|
35
|
+
const openSearchButtonElementRef = useRef<HTMLButtonElement | null>(null)
|
|
36
|
+
const [loading, setLoading] = useState(false)
|
|
37
|
+
const [loadingCurrentRef, setLoadingCurrentRef] = useState(false)
|
|
38
|
+
const [open, setOpen] = useState(false)
|
|
39
|
+
const [optionTitle, setOptionTitle] = useState<string | null>(null)
|
|
40
|
+
const inputRef = useRef<HTMLInputElement>(null)
|
|
41
|
+
const [query, setQuery] = useState<string | null>(null)
|
|
42
|
+
const [value, setValue] = useState<string>('')
|
|
43
|
+
|
|
44
|
+
const relatedElements = useMemo(
|
|
45
|
+
() => [closeSearchButtonElement].filter(Boolean) as HTMLElement[],
|
|
46
|
+
[closeSearchButtonElement],
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
const search = useCallback((query: string | null) => {
|
|
50
|
+
if (searchRef.current) searchRef.current.cancel()
|
|
51
|
+
searchRef.current = countriesStore.search(query || '', setOptions, setLoading)
|
|
52
|
+
}, [])
|
|
53
|
+
|
|
54
|
+
const filterOption = useCallback(() => true, [])
|
|
55
|
+
|
|
56
|
+
const handleClose = useCallback(() => setOpen(false), [])
|
|
57
|
+
|
|
58
|
+
const handleQueryChange = useCallback(
|
|
59
|
+
(query: string | null) => {
|
|
60
|
+
if (query !== null) search(query)
|
|
61
|
+
setQuery(query)
|
|
62
|
+
},
|
|
63
|
+
[search],
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
const handleOpen = useCallback(() => {
|
|
67
|
+
setValue('')
|
|
68
|
+
setOpen(true)
|
|
69
|
+
}, [])
|
|
70
|
+
|
|
71
|
+
const handleSelect = useCallback(
|
|
72
|
+
(v: string) => {
|
|
73
|
+
setOpen(false)
|
|
74
|
+
setValue(v)
|
|
75
|
+
pushToast({status: 'info', title: `Selected “${v}”`})
|
|
76
|
+
},
|
|
77
|
+
[pushToast],
|
|
78
|
+
)
|
|
79
|
+
|
|
80
|
+
const renderOption = useCallback((option: BaseAutocompleteOption) => {
|
|
81
|
+
return <AsyncOption documentId={option.value} />
|
|
82
|
+
}, [])
|
|
83
|
+
|
|
84
|
+
const renderPopover = useCallback(
|
|
85
|
+
(
|
|
86
|
+
props: {
|
|
87
|
+
content: React.ReactNode
|
|
88
|
+
hidden: boolean
|
|
89
|
+
onMouseEnter: () => void
|
|
90
|
+
onMouseLeave: () => void
|
|
91
|
+
},
|
|
92
|
+
ref: React.Ref<HTMLDivElement>,
|
|
93
|
+
) => {
|
|
94
|
+
if (!props.hidden && error) {
|
|
95
|
+
return (
|
|
96
|
+
<Portal>
|
|
97
|
+
<Card
|
|
98
|
+
inset={0}
|
|
99
|
+
padding={4}
|
|
100
|
+
position="absolute"
|
|
101
|
+
tone="critical"
|
|
102
|
+
onMouseEnter={props.onMouseEnter}
|
|
103
|
+
onMouseLeave={props.onMouseLeave}
|
|
104
|
+
>
|
|
105
|
+
<Flex align="center" height="fill" justify="center">
|
|
106
|
+
<Text align="center" muted>
|
|
107
|
+
Something went wrong while searching
|
|
108
|
+
</Text>
|
|
109
|
+
</Flex>
|
|
110
|
+
</Card>
|
|
111
|
+
</Portal>
|
|
112
|
+
)
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (!props.hidden && query && !loading && options.length === 0) {
|
|
116
|
+
return (
|
|
117
|
+
<Portal>
|
|
118
|
+
<Card
|
|
119
|
+
inset={0}
|
|
120
|
+
padding={4}
|
|
121
|
+
position="absolute"
|
|
122
|
+
// shadow={1}
|
|
123
|
+
tone="default"
|
|
124
|
+
// style={{position: 'absolute', inset: '0 0 0 0'}}
|
|
125
|
+
onMouseEnter={props.onMouseEnter}
|
|
126
|
+
onMouseLeave={props.onMouseLeave}
|
|
127
|
+
>
|
|
128
|
+
<Flex align="center" height="fill" justify="center">
|
|
129
|
+
<Text align="center" muted size={1}>
|
|
130
|
+
No results for <strong>‘{query}’</strong>
|
|
131
|
+
</Text>
|
|
132
|
+
</Flex>
|
|
133
|
+
</Card>
|
|
134
|
+
</Portal>
|
|
135
|
+
)
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return (
|
|
139
|
+
<Portal>
|
|
140
|
+
<Card
|
|
141
|
+
ref={ref}
|
|
142
|
+
hidden={props.hidden}
|
|
143
|
+
tone="default"
|
|
144
|
+
onMouseEnter={props.onMouseEnter}
|
|
145
|
+
onMouseLeave={props.onMouseLeave}
|
|
146
|
+
>
|
|
147
|
+
{props.content}
|
|
148
|
+
</Card>
|
|
149
|
+
</Portal>
|
|
150
|
+
)
|
|
151
|
+
},
|
|
152
|
+
[error, loading, options, query],
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
const renderValue = useCallback(() => {
|
|
156
|
+
if (loadingCurrentRef) {
|
|
157
|
+
return 'Loading…'
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
return optionTitle || ''
|
|
161
|
+
}, [loadingCurrentRef, optionTitle])
|
|
162
|
+
|
|
163
|
+
useEffect(() => {
|
|
164
|
+
if (open) inputRef.current?.focus()
|
|
165
|
+
if (!open) openSearchButtonElementRef.current?.focus()
|
|
166
|
+
}, [open])
|
|
167
|
+
|
|
168
|
+
useEffect(() => {
|
|
169
|
+
if (fetchRef.current) fetchRef.current.cancel()
|
|
170
|
+
|
|
171
|
+
if (value) {
|
|
172
|
+
fetchRef.current = countriesStore.fetchDocument(
|
|
173
|
+
value,
|
|
174
|
+
(data) => setOptionTitle(data?.title || null),
|
|
175
|
+
setLoadingCurrentRef,
|
|
176
|
+
)
|
|
177
|
+
} else {
|
|
178
|
+
startTransition(() => {
|
|
179
|
+
setOptionTitle(null)
|
|
180
|
+
setLoadingCurrentRef(false)
|
|
181
|
+
})
|
|
182
|
+
}
|
|
183
|
+
}, [value])
|
|
184
|
+
|
|
185
|
+
return (
|
|
186
|
+
<Card display="flex" flexDirection="column" minHeight="full">
|
|
187
|
+
<PortalProvider element={portalElement}>
|
|
188
|
+
<Card hidden={open} padding={2}>
|
|
189
|
+
<Flex align="center">
|
|
190
|
+
<Box flex={1} />
|
|
191
|
+
<Tooltip placement="bottom" text="Open search">
|
|
192
|
+
<Button
|
|
193
|
+
ref={openSearchButtonElementRef}
|
|
194
|
+
aria-label="Open search"
|
|
195
|
+
icon={SearchIcon}
|
|
196
|
+
mode="bleed"
|
|
197
|
+
onClick={handleOpen}
|
|
198
|
+
/>
|
|
199
|
+
</Tooltip>
|
|
200
|
+
</Flex>
|
|
201
|
+
</Card>
|
|
202
|
+
<Layer hidden={!open} style={{position: 'sticky', top: 0}}>
|
|
203
|
+
<Card display="flex" gap={2} padding={2} shadow={1}>
|
|
204
|
+
<Autocomplete
|
|
205
|
+
ref={inputRef}
|
|
206
|
+
border={false}
|
|
207
|
+
filterOption={filterOption}
|
|
208
|
+
flex={1}
|
|
209
|
+
fontSize={1}
|
|
210
|
+
icon={SearchIcon}
|
|
211
|
+
id="fullsceen-example"
|
|
212
|
+
listBox={{padding: 2}}
|
|
213
|
+
loading={loading}
|
|
214
|
+
options={options}
|
|
215
|
+
placeholder="Search"
|
|
216
|
+
radius={2}
|
|
217
|
+
relatedElements={relatedElements}
|
|
218
|
+
renderOption={renderOption}
|
|
219
|
+
renderPopover={renderPopover}
|
|
220
|
+
renderValue={renderValue}
|
|
221
|
+
value={value}
|
|
222
|
+
onQueryChange={handleQueryChange}
|
|
223
|
+
onSelect={handleSelect}
|
|
224
|
+
/>
|
|
225
|
+
|
|
226
|
+
<Tooltip placement="bottom" text="Close search">
|
|
227
|
+
<Button
|
|
228
|
+
ref={setCloseSearchButtonElement}
|
|
229
|
+
aria-label="Close search"
|
|
230
|
+
flex="none"
|
|
231
|
+
icon={CloseIcon}
|
|
232
|
+
mode="bleed"
|
|
233
|
+
onClick={handleClose}
|
|
234
|
+
/>
|
|
235
|
+
</Tooltip>
|
|
236
|
+
</Card>
|
|
237
|
+
</Layer>
|
|
238
|
+
<Card ref={setPortalElement} flex={1} hidden={!open} position="relative" />
|
|
239
|
+
<Box flex={1} hidden={open} padding={4}>
|
|
240
|
+
<Text size={1} weight="medium">
|
|
241
|
+
Welcome to this app
|
|
242
|
+
</Text>
|
|
243
|
+
</Box>
|
|
244
|
+
</PortalProvider>
|
|
245
|
+
</Card>
|
|
246
|
+
)
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
function AsyncOption(props: {
|
|
250
|
+
documentId: string
|
|
251
|
+
disabled?: boolean
|
|
252
|
+
selected?: boolean
|
|
253
|
+
tabIndex?: number
|
|
254
|
+
}) {
|
|
255
|
+
const {documentId, disabled, selected, tabIndex} = props
|
|
256
|
+
const [data, setData] = useState<{code: string; title: string} | null>(null)
|
|
257
|
+
const [loading, setLoading] = useState(false)
|
|
258
|
+
const ref = useRef<{cancel: () => void} | null>(null)
|
|
259
|
+
|
|
260
|
+
useEffect(() => {
|
|
261
|
+
if (ref.current) ref.current.cancel()
|
|
262
|
+
ref.current = countriesStore.fetchDocument(documentId, setData, setLoading)
|
|
263
|
+
}, [documentId])
|
|
264
|
+
|
|
265
|
+
return (
|
|
266
|
+
<Selectable
|
|
267
|
+
aria-label={data?.title}
|
|
268
|
+
as="button"
|
|
269
|
+
disabled={disabled}
|
|
270
|
+
padding={2}
|
|
271
|
+
radius={3}
|
|
272
|
+
selected={selected}
|
|
273
|
+
style={{lineHeight: 0}}
|
|
274
|
+
tabIndex={tabIndex}
|
|
275
|
+
>
|
|
276
|
+
<Flex align="center">
|
|
277
|
+
<Box muted radius={2} style={{width: 35, height: 35}} />
|
|
278
|
+
<Box flex={1} marginLeft={3}>
|
|
279
|
+
<Stack gap={2}>
|
|
280
|
+
{loading && (
|
|
281
|
+
<>
|
|
282
|
+
<TextSkeleton style={{maxWidth: 200}} />
|
|
283
|
+
<TextSkeleton size={1} style={{maxWidth: 120}} />
|
|
284
|
+
</>
|
|
285
|
+
)}
|
|
286
|
+
{!loading && (
|
|
287
|
+
<>
|
|
288
|
+
<Text muted={!data} size={1} textOverflow="ellipsis" weight="medium">
|
|
289
|
+
{data ? data.title : <>Untitled</>}
|
|
290
|
+
</Text>
|
|
291
|
+
<Text muted size={1}>
|
|
292
|
+
{data?.code}
|
|
293
|
+
</Text>
|
|
294
|
+
</>
|
|
295
|
+
)}
|
|
296
|
+
</Stack>
|
|
297
|
+
</Box>
|
|
298
|
+
<Box paddingX={1}>
|
|
299
|
+
{/* <Label muted size={0}>
|
|
300
|
+
Country
|
|
301
|
+
</Label> */}
|
|
302
|
+
<Badge>Country</Badge>
|
|
303
|
+
</Box>
|
|
304
|
+
</Flex>
|
|
305
|
+
</Selectable>
|
|
306
|
+
)
|
|
307
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type {WorkshopScope} from '@sanity/ui-workshop'
|
|
2
|
+
import {lazy} from 'react'
|
|
3
|
+
|
|
4
|
+
const scope: WorkshopScope = {
|
|
5
|
+
name: 'components/autocomplete',
|
|
6
|
+
title: 'Autocomplete',
|
|
7
|
+
stories: [
|
|
8
|
+
{
|
|
9
|
+
name: 'example',
|
|
10
|
+
title: 'Example',
|
|
11
|
+
component: lazy(() => import('./Example')),
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'custom',
|
|
15
|
+
title: 'Custom',
|
|
16
|
+
component: lazy(() => import('./Custom')),
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'async',
|
|
20
|
+
title: 'Async',
|
|
21
|
+
component: lazy(() => import('./Async')),
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: 'constrained-height',
|
|
25
|
+
title: 'Constrained height',
|
|
26
|
+
component: lazy(() => import('./ConstrainedHeight')),
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'focus-and-blur',
|
|
30
|
+
title: 'Focus and blur',
|
|
31
|
+
component: lazy(() => import('./FocusAndBlur')),
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: 'fullscreen',
|
|
35
|
+
title: 'Fullscreen',
|
|
36
|
+
component: lazy(() => import('./Fullscreen')),
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export default scope
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import {countries} from './countries'
|
|
2
|
+
|
|
3
|
+
export const countriesStore = {
|
|
4
|
+
search(
|
|
5
|
+
query: string,
|
|
6
|
+
onResults: (results: {value: string}[]) => void,
|
|
7
|
+
onLoading: (flag: boolean) => void,
|
|
8
|
+
): {cancel: () => void} {
|
|
9
|
+
const fakeDelay = 350 + Math.random() * 800
|
|
10
|
+
|
|
11
|
+
onLoading(true)
|
|
12
|
+
|
|
13
|
+
const timeout = setTimeout(() => {
|
|
14
|
+
const results: {value: string}[] = countries
|
|
15
|
+
.filter((d) => d.name.toLowerCase().includes(query.toLowerCase()))
|
|
16
|
+
.map((d) => ({value: d.code}))
|
|
17
|
+
|
|
18
|
+
onResults(results)
|
|
19
|
+
onLoading(false)
|
|
20
|
+
}, fakeDelay)
|
|
21
|
+
|
|
22
|
+
return {
|
|
23
|
+
cancel: () => clearTimeout(timeout),
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
fetchDocument(
|
|
28
|
+
id: string,
|
|
29
|
+
onResult: (value: {code: string; title: string} | null) => void,
|
|
30
|
+
onLoading: (flag: boolean) => void,
|
|
31
|
+
): {cancel: () => void} {
|
|
32
|
+
const fakeDelay = 50 + Math.random() * 400
|
|
33
|
+
|
|
34
|
+
onLoading(true)
|
|
35
|
+
|
|
36
|
+
const timeout = setTimeout(() => {
|
|
37
|
+
const rec = countries.find((c) => c.code === id)
|
|
38
|
+
|
|
39
|
+
const doc = rec && {code: rec.code, title: rec.name}
|
|
40
|
+
|
|
41
|
+
onResult(doc || null)
|
|
42
|
+
onLoading(false)
|
|
43
|
+
}, fakeDelay)
|
|
44
|
+
|
|
45
|
+
return {
|
|
46
|
+
cancel: () => clearTimeout(timeout),
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
}
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
export const countries: {name: string; code: string}[] = [
|
|
2
|
+
{name: 'Afghanistan', code: 'AF'},
|
|
3
|
+
{name: 'Åland Islands', code: 'AX'},
|
|
4
|
+
{name: 'Albania', code: 'AL'},
|
|
5
|
+
{name: 'Algeria', code: 'DZ'},
|
|
6
|
+
{name: 'American Samoa', code: 'AS'},
|
|
7
|
+
{name: 'Andorra', code: 'AD'},
|
|
8
|
+
{name: 'Angola', code: 'AO'},
|
|
9
|
+
{name: 'Anguilla', code: 'AI'},
|
|
10
|
+
{name: 'Antarctica', code: 'AQ'},
|
|
11
|
+
{name: 'Antigua and Barbuda', code: 'AG'},
|
|
12
|
+
{name: 'Argentina', code: 'AR'},
|
|
13
|
+
{name: 'Armenia', code: 'AM'},
|
|
14
|
+
{name: 'Aruba', code: 'AW'},
|
|
15
|
+
{name: 'Australia', code: 'AU'},
|
|
16
|
+
{name: 'Austria', code: 'AT'},
|
|
17
|
+
{name: 'Azerbaijan', code: 'AZ'},
|
|
18
|
+
{name: 'Bahamas', code: 'BS'},
|
|
19
|
+
{name: 'Bahrain', code: 'BH'},
|
|
20
|
+
{name: 'Bangladesh', code: 'BD'},
|
|
21
|
+
{name: 'Barbados', code: 'BB'},
|
|
22
|
+
{name: 'Belarus', code: 'BY'},
|
|
23
|
+
{name: 'Belgium', code: 'BE'},
|
|
24
|
+
{name: 'Belize', code: 'BZ'},
|
|
25
|
+
{name: 'Benin', code: 'BJ'},
|
|
26
|
+
{name: 'Bermuda', code: 'BM'},
|
|
27
|
+
{name: 'Bhutan', code: 'BT'},
|
|
28
|
+
{name: 'Bolivia', code: 'BO'},
|
|
29
|
+
{name: 'Bosnia and Herzegovina', code: 'BA'},
|
|
30
|
+
{name: 'Botswana', code: 'BW'},
|
|
31
|
+
{name: 'Bouvet Island', code: 'BV'},
|
|
32
|
+
{name: 'Brazil', code: 'BR'},
|
|
33
|
+
{name: 'British Indian Ocean Territory', code: 'IO'},
|
|
34
|
+
{name: 'Brunei Darussalam', code: 'BN'},
|
|
35
|
+
{name: 'Bulgaria', code: 'BG'},
|
|
36
|
+
{name: 'Burkina Faso', code: 'BF'},
|
|
37
|
+
{name: 'Burundi', code: 'BI'},
|
|
38
|
+
{name: 'Cambodia', code: 'KH'},
|
|
39
|
+
{name: 'Cameroon', code: 'CM'},
|
|
40
|
+
{name: 'Canada', code: 'CA'},
|
|
41
|
+
{name: 'Cape Verde', code: 'CV'},
|
|
42
|
+
{name: 'Cayman Islands', code: 'KY'},
|
|
43
|
+
{name: 'Central African Republic', code: 'CF'},
|
|
44
|
+
{name: 'Chad', code: 'TD'},
|
|
45
|
+
{name: 'Chile', code: 'CL'},
|
|
46
|
+
{name: 'China', code: 'CN'},
|
|
47
|
+
{name: 'Christmas Island', code: 'CX'},
|
|
48
|
+
{name: 'Cocos (Keeling) Islands', code: 'CC'},
|
|
49
|
+
{name: 'Colombia', code: 'CO'},
|
|
50
|
+
{name: 'Comoros', code: 'KM'},
|
|
51
|
+
{name: 'Congo', code: 'CG'},
|
|
52
|
+
{name: 'Congo, The Democratic Republic of the', code: 'CD'},
|
|
53
|
+
{name: 'Cook Islands', code: 'CK'},
|
|
54
|
+
{name: 'Costa Rica', code: 'CR'},
|
|
55
|
+
{name: "Cote D'Ivoire", code: 'CI'},
|
|
56
|
+
{name: 'Croatia', code: 'HR'},
|
|
57
|
+
{name: 'Cuba', code: 'CU'},
|
|
58
|
+
{name: 'Cyprus', code: 'CY'},
|
|
59
|
+
{name: 'Czech Republic', code: 'CZ'},
|
|
60
|
+
{name: 'Denmark', code: 'DK'},
|
|
61
|
+
{name: 'Djibouti', code: 'DJ'},
|
|
62
|
+
{name: 'Dominica', code: 'DM'},
|
|
63
|
+
{name: 'Dominican Republic', code: 'DO'},
|
|
64
|
+
{name: 'Ecuador', code: 'EC'},
|
|
65
|
+
{name: 'Egypt', code: 'EG'},
|
|
66
|
+
{name: 'El Salvador', code: 'SV'},
|
|
67
|
+
{name: 'Equatorial Guinea', code: 'GQ'},
|
|
68
|
+
{name: 'Eritrea', code: 'ER'},
|
|
69
|
+
{name: 'Estonia', code: 'EE'},
|
|
70
|
+
{name: 'Ethiopia', code: 'ET'},
|
|
71
|
+
{name: 'Falkland Islands (Malvinas)', code: 'FK'},
|
|
72
|
+
{name: 'Faroe Islands', code: 'FO'},
|
|
73
|
+
{name: 'Fiji', code: 'FJ'},
|
|
74
|
+
{name: 'Finland', code: 'FI'},
|
|
75
|
+
{name: 'France', code: 'FR'},
|
|
76
|
+
{name: 'French Guiana', code: 'GF'},
|
|
77
|
+
{name: 'French Polynesia', code: 'PF'},
|
|
78
|
+
{name: 'French Southern Territories', code: 'TF'},
|
|
79
|
+
{name: 'Gabon', code: 'GA'},
|
|
80
|
+
{name: 'Gambia', code: 'GM'},
|
|
81
|
+
{name: 'Georgia', code: 'GE'},
|
|
82
|
+
{name: 'Germany', code: 'DE'},
|
|
83
|
+
{name: 'Ghana', code: 'GH'},
|
|
84
|
+
{name: 'Gibraltar', code: 'GI'},
|
|
85
|
+
{name: 'Greece', code: 'GR'},
|
|
86
|
+
{name: 'Greenland', code: 'GL'},
|
|
87
|
+
{name: 'Grenada', code: 'GD'},
|
|
88
|
+
{name: 'Guadeloupe', code: 'GP'},
|
|
89
|
+
{name: 'Guam', code: 'GU'},
|
|
90
|
+
{name: 'Guatemala', code: 'GT'},
|
|
91
|
+
{name: 'Guernsey', code: 'GG'},
|
|
92
|
+
{name: 'Guinea', code: 'GN'},
|
|
93
|
+
{name: 'Guinea-Bissau', code: 'GW'},
|
|
94
|
+
{name: 'Guyana', code: 'GY'},
|
|
95
|
+
{name: 'Haiti', code: 'HT'},
|
|
96
|
+
{name: 'Heard Island and Mcdonald Islands', code: 'HM'},
|
|
97
|
+
{name: 'Holy See (Vatican City State)', code: 'VA'},
|
|
98
|
+
{name: 'Honduras', code: 'HN'},
|
|
99
|
+
{name: 'Hong Kong', code: 'HK'},
|
|
100
|
+
{name: 'Hungary', code: 'HU'},
|
|
101
|
+
{name: 'Iceland', code: 'IS'},
|
|
102
|
+
{name: 'India', code: 'IN'},
|
|
103
|
+
{name: 'Indonesia', code: 'ID'},
|
|
104
|
+
{name: 'Iran, Islamic Republic Of', code: 'IR'},
|
|
105
|
+
{name: 'Iraq', code: 'IQ'},
|
|
106
|
+
{name: 'Ireland', code: 'IE'},
|
|
107
|
+
{name: 'Isle of Man', code: 'IM'},
|
|
108
|
+
{name: 'Israel', code: 'IL'},
|
|
109
|
+
{name: 'Italy', code: 'IT'},
|
|
110
|
+
{name: 'Jamaica', code: 'JM'},
|
|
111
|
+
{name: 'Japan', code: 'JP'},
|
|
112
|
+
{name: 'Jersey', code: 'JE'},
|
|
113
|
+
{name: 'Jordan', code: 'JO'},
|
|
114
|
+
{name: 'Kazakhstan', code: 'KZ'},
|
|
115
|
+
{name: 'Kenya', code: 'KE'},
|
|
116
|
+
{name: 'Kiribati', code: 'KI'},
|
|
117
|
+
{name: "Korea, Democratic People'S Republic of", code: 'KP'},
|
|
118
|
+
{name: 'Korea, Republic of', code: 'KR'},
|
|
119
|
+
{name: 'Kuwait', code: 'KW'},
|
|
120
|
+
{name: 'Kyrgyzstan', code: 'KG'},
|
|
121
|
+
{name: "Lao People'S Democratic Republic", code: 'LA'},
|
|
122
|
+
{name: 'Latvia', code: 'LV'},
|
|
123
|
+
{name: 'Lebanon', code: 'LB'},
|
|
124
|
+
{name: 'Lesotho', code: 'LS'},
|
|
125
|
+
{name: 'Liberia', code: 'LR'},
|
|
126
|
+
{name: 'Libyan Arab Jamahiriya', code: 'LY'},
|
|
127
|
+
{name: 'Liechtenstein', code: 'LI'},
|
|
128
|
+
{name: 'Lithuania', code: 'LT'},
|
|
129
|
+
{name: 'Luxembourg', code: 'LU'},
|
|
130
|
+
{name: 'Macao', code: 'MO'},
|
|
131
|
+
{name: 'Macedonia, The Former Yugoslav Republic of', code: 'MK'},
|
|
132
|
+
{name: 'Madagascar', code: 'MG'},
|
|
133
|
+
{name: 'Malawi', code: 'MW'},
|
|
134
|
+
{name: 'Malaysia', code: 'MY'},
|
|
135
|
+
{name: 'Maldives', code: 'MV'},
|
|
136
|
+
{name: 'Mali', code: 'ML'},
|
|
137
|
+
{name: 'Malta', code: 'MT'},
|
|
138
|
+
{name: 'Marshall Islands', code: 'MH'},
|
|
139
|
+
{name: 'Martinique', code: 'MQ'},
|
|
140
|
+
{name: 'Mauritania', code: 'MR'},
|
|
141
|
+
{name: 'Mauritius', code: 'MU'},
|
|
142
|
+
{name: 'Mayotte', code: 'YT'},
|
|
143
|
+
{name: 'Mexico', code: 'MX'},
|
|
144
|
+
{name: 'Micronesia, Federated States of', code: 'FM'},
|
|
145
|
+
{name: 'Moldova, Republic of', code: 'MD'},
|
|
146
|
+
{name: 'Monaco', code: 'MC'},
|
|
147
|
+
{name: 'Mongolia', code: 'MN'},
|
|
148
|
+
{name: 'Montserrat', code: 'MS'},
|
|
149
|
+
{name: 'Morocco', code: 'MA'},
|
|
150
|
+
{name: 'Mozambique', code: 'MZ'},
|
|
151
|
+
{name: 'Myanmar', code: 'MM'},
|
|
152
|
+
{name: 'Namibia', code: 'NA'},
|
|
153
|
+
{name: 'Nauru', code: 'NR'},
|
|
154
|
+
{name: 'Nepal', code: 'NP'},
|
|
155
|
+
{name: 'Netherlands', code: 'NL'},
|
|
156
|
+
{name: 'Netherlands Antilles', code: 'AN'},
|
|
157
|
+
{name: 'New Caledonia', code: 'NC'},
|
|
158
|
+
{name: 'New Zealand', code: 'NZ'},
|
|
159
|
+
{name: 'Nicaragua', code: 'NI'},
|
|
160
|
+
{name: 'Niger', code: 'NE'},
|
|
161
|
+
{name: 'Nigeria', code: 'NG'},
|
|
162
|
+
{name: 'Niue', code: 'NU'},
|
|
163
|
+
{name: 'Norfolk Island', code: 'NF'},
|
|
164
|
+
{name: 'Northern Mariana Islands', code: 'MP'},
|
|
165
|
+
{name: 'Norway', code: 'NO'},
|
|
166
|
+
{name: 'Oman', code: 'OM'},
|
|
167
|
+
{name: 'Pakistan', code: 'PK'},
|
|
168
|
+
{name: 'Palau', code: 'PW'},
|
|
169
|
+
{name: 'Palestinian Territory, Occupied', code: 'PS'},
|
|
170
|
+
{name: 'Panama', code: 'PA'},
|
|
171
|
+
{name: 'Papua New Guinea', code: 'PG'},
|
|
172
|
+
{name: 'Paraguay', code: 'PY'},
|
|
173
|
+
{name: 'Peru', code: 'PE'},
|
|
174
|
+
{name: 'Philippines', code: 'PH'},
|
|
175
|
+
{name: 'Pitcairn', code: 'PN'},
|
|
176
|
+
{name: 'Poland', code: 'PL'},
|
|
177
|
+
{name: 'Portugal', code: 'PT'},
|
|
178
|
+
{name: 'Puerto Rico', code: 'PR'},
|
|
179
|
+
{name: 'Qatar', code: 'QA'},
|
|
180
|
+
{name: 'Reunion', code: 'RE'},
|
|
181
|
+
{name: 'Romania', code: 'RO'},
|
|
182
|
+
{name: 'Russian Federation', code: 'RU'},
|
|
183
|
+
{name: 'RWANDA', code: 'RW'},
|
|
184
|
+
{name: 'Saint Helena', code: 'SH'},
|
|
185
|
+
{name: 'Saint Kitts and Nevis', code: 'KN'},
|
|
186
|
+
{name: 'Saint Lucia', code: 'LC'},
|
|
187
|
+
{name: 'Saint Pierre and Miquelon', code: 'PM'},
|
|
188
|
+
{name: 'Saint Vincent and the Grenadines', code: 'VC'},
|
|
189
|
+
{name: 'Samoa', code: 'WS'},
|
|
190
|
+
{name: 'San Marino', code: 'SM'},
|
|
191
|
+
{name: 'Sao Tome and Principe', code: 'ST'},
|
|
192
|
+
{name: 'Saudi Arabia', code: 'SA'},
|
|
193
|
+
{name: 'Senegal', code: 'SN'},
|
|
194
|
+
{name: 'Serbia and Montenegro', code: 'CS'},
|
|
195
|
+
{name: 'Seychelles', code: 'SC'},
|
|
196
|
+
{name: 'Sierra Leone', code: 'SL'},
|
|
197
|
+
{name: 'Singapore', code: 'SG'},
|
|
198
|
+
{name: 'Slovakia', code: 'SK'},
|
|
199
|
+
{name: 'Slovenia', code: 'SI'},
|
|
200
|
+
{name: 'Solomon Islands', code: 'SB'},
|
|
201
|
+
{name: 'Somalia', code: 'SO'},
|
|
202
|
+
{name: 'South Africa', code: 'ZA'},
|
|
203
|
+
{name: 'South Georgia and the South Sandwich Islands', code: 'GS'},
|
|
204
|
+
{name: 'Spain', code: 'ES'},
|
|
205
|
+
{name: 'Sri Lanka', code: 'LK'},
|
|
206
|
+
{name: 'Sudan', code: 'SD'},
|
|
207
|
+
{name: 'Suriname', code: 'SR'},
|
|
208
|
+
{name: 'Svalbard and Jan Mayen', code: 'SJ'},
|
|
209
|
+
{name: 'Swaziland', code: 'SZ'},
|
|
210
|
+
{name: 'Sweden', code: 'SE'},
|
|
211
|
+
{name: 'Switzerland', code: 'CH'},
|
|
212
|
+
{name: 'Syrian Arab Republic', code: 'SY'},
|
|
213
|
+
{name: 'Taiwan, Province of China', code: 'TW'},
|
|
214
|
+
{name: 'Tajikistan', code: 'TJ'},
|
|
215
|
+
{name: 'Tanzania, United Republic of', code: 'TZ'},
|
|
216
|
+
{name: 'Thailand', code: 'TH'},
|
|
217
|
+
{name: 'Timor-Leste', code: 'TL'},
|
|
218
|
+
{name: 'Togo', code: 'TG'},
|
|
219
|
+
{name: 'Tokelau', code: 'TK'},
|
|
220
|
+
{name: 'Tonga', code: 'TO'},
|
|
221
|
+
{name: 'Trinidad and Tobago', code: 'TT'},
|
|
222
|
+
{name: 'Tunisia', code: 'TN'},
|
|
223
|
+
{name: 'Turkey', code: 'TR'},
|
|
224
|
+
{name: 'Turkmenistan', code: 'TM'},
|
|
225
|
+
{name: 'Turks and Caicos Islands', code: 'TC'},
|
|
226
|
+
{name: 'Tuvalu', code: 'TV'},
|
|
227
|
+
{name: 'Uganda', code: 'UG'},
|
|
228
|
+
{name: 'Ukraine', code: 'UA'},
|
|
229
|
+
{name: 'United Arab Emirates', code: 'AE'},
|
|
230
|
+
{name: 'United Kingdom', code: 'GB'},
|
|
231
|
+
{name: 'United States', code: 'US'},
|
|
232
|
+
{name: 'United States Minor Outlying Islands', code: 'UM'},
|
|
233
|
+
{name: 'Uruguay', code: 'UY'},
|
|
234
|
+
{name: 'Uzbekistan', code: 'UZ'},
|
|
235
|
+
{name: 'Vanuatu', code: 'VU'},
|
|
236
|
+
{name: 'Venezuela', code: 'VE'},
|
|
237
|
+
{name: 'Viet Nam', code: 'VN'},
|
|
238
|
+
{name: 'Virgin Islands, British', code: 'VG'},
|
|
239
|
+
{name: 'Virgin Islands, U.S.', code: 'VI'},
|
|
240
|
+
{name: 'Wallis and Futuna', code: 'WF'},
|
|
241
|
+
{name: 'Western Sahara', code: 'EH'},
|
|
242
|
+
{name: 'Yemen', code: 'YE'},
|
|
243
|
+
{name: 'Zambia', code: 'ZM'},
|
|
244
|
+
{name: 'Zimbabwe', code: 'ZW'},
|
|
245
|
+
]
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type {AutocompleteMsg, AutocompleteState} from './types'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export function autocompleteReducer(
|
|
7
|
+
state: AutocompleteState,
|
|
8
|
+
msg: AutocompleteMsg,
|
|
9
|
+
): AutocompleteState {
|
|
10
|
+
if (msg.type === 'input/change') {
|
|
11
|
+
return {...state, activeValue: null, focused: true, query: msg.query}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
if (msg.type === 'input/focus') {
|
|
15
|
+
return {...state, focused: true}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (msg.type === 'root/blur') {
|
|
19
|
+
return {...state, focused: false, query: null}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
if (msg.type === 'root/clear') {
|
|
23
|
+
return {...state, activeValue: null, query: null, value: null}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
if (msg.type === 'root/escape') {
|
|
27
|
+
return {...state, focused: false, query: null}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if (msg.type === 'root/open') {
|
|
31
|
+
return {...state, query: state.query || msg.query}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (msg.type === 'root/setActiveValue') {
|
|
35
|
+
return {...state, activeValue: msg.value, listFocused: msg.listFocused || state.listFocused}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
if (msg.type === 'root/setListFocused') {
|
|
39
|
+
return {...state, listFocused: msg.listFocused}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (msg.type === 'value/change') {
|
|
43
|
+
return {...state, activeValue: msg.value, query: null, value: msg.value}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return state
|
|
47
|
+
}
|