@sanity/ui 3.0.0-static.15 → 3.0.0-static.17
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/README.md +6 -6
- package/bin/{ui.js → sanity-ui.cjs} +1 -1
- package/dist/_chunks-cjs/{_visual-editing.js → _visual-editing.cjs} +67 -77
- package/dist/_chunks-cjs/_visual-editing.cjs.map +1 -0
- package/dist/_chunks-cjs/{buildCommand.js → buildCommand.cjs} +26 -10
- package/dist/_chunks-cjs/buildCommand.cjs.map +1 -0
- package/dist/_chunks-cjs/{refractor.js → refractor.cjs} +1 -1
- package/dist/_chunks-cjs/refractor.cjs.map +1 -0
- package/dist/_chunks-es/{_visual-editing.mjs → _visual-editing.js} +68 -78
- package/dist/_chunks-es/_visual-editing.js.map +1 -0
- package/dist/_chunks-es/{refractor.mjs → refractor.js} +1 -1
- package/dist/_chunks-es/refractor.js.map +1 -0
- package/dist/_visual-editing.cjs +30 -0
- package/dist/_visual-editing.cjs.map +1 -0
- package/dist/{_visual-editing.d.mts → _visual-editing.d.cts} +5 -15
- package/dist/_visual-editing.d.ts +5 -15
- package/dist/_visual-editing.js +29 -30
- package/dist/_visual-editing.js.map +1 -1
- package/dist/{cli.js → cli.cjs} +4 -4
- package/dist/cli.cjs.map +1 -0
- package/dist/{css.mjs → css.cjs} +809 -923
- package/dist/css.cjs.map +1 -0
- package/dist/{css.d.mts → css.d.cts} +31 -24
- package/dist/css.d.ts +31 -24
- package/dist/css.js +809 -921
- package/dist/css.js.map +1 -1
- package/dist/{index.mjs → index.cjs} +373 -406
- package/dist/index.cjs.map +1 -0
- package/dist/{index.d.mts → index.d.cts} +10 -20
- package/dist/index.d.ts +10 -20
- package/dist/index.js +371 -406
- package/dist/index.js.map +1 -1
- package/dist/{theme.mjs → theme.cjs} +219 -196
- package/dist/theme.cjs.map +1 -0
- package/dist/{theme.d.mts → theme.d.cts} +2 -0
- package/dist/theme.d.ts +2 -0
- package/dist/theme.js +218 -195
- package/dist/theme.js.map +1 -1
- package/dist/{sanity-palette.css → ui-palette.css} +1 -1
- package/dist/ui-palette.min.css +1 -0
- package/dist/{system.css → ui-system.css} +1135 -245
- package/dist/ui-system.min.css +1 -0
- package/dist/{sanity-theme.css → ui-theme.css} +199 -199
- package/dist/ui-theme.min.css +1 -0
- package/dist/ui.css +29152 -0
- package/dist/ui.min.css +1 -0
- package/exports/_visual-editing.ts +27 -27
- package/exports/index.ts +1 -1
- package/package.json +24 -24
- package/src/cli/buildCommand.ts +55 -20
- package/src/cli/index.ts +2 -14
- package/src/{ui → core}/StyleTags.tsx +4 -4
- package/src/{ui → core}/_compat/index.ts +0 -1
- package/src/{ui → core}/_compat/theme/themeProvider.tsx +3 -3
- package/src/{ui → core}/components/autocomplete/__workshop__/async.tsx +2 -2
- package/src/{ui → core}/components/autocomplete/__workshop__/custom.tsx +2 -2
- package/src/{ui → core}/components/autocomplete/__workshop__/focusAndBlur.tsx +3 -3
- package/src/{ui → core}/components/tab/tabList.tsx +19 -4
- package/src/{ui → core}/index.ts +0 -1
- package/src/{ui → core}/primitives/box/box.tsx +3 -0
- package/src/core/primitives/button/__workshop__/custom.tsx +27 -0
- package/src/{ui → core}/primitives/button/button.tsx +3 -1
- package/src/{ui → core}/primitives/card/__workshop__/asButton.tsx +0 -9
- package/src/{ui → core}/primitives/card/__workshop__/interactive.tsx +0 -1
- package/src/{ui → core}/primitives/card/__workshop__/props.tsx +0 -3
- package/src/{ui → core}/primitives/card/__workshop__/selected.tsx +6 -37
- package/src/{ui → core}/primitives/card/card.tsx +15 -21
- package/src/core/primitives/card/cardProvider.tsx +27 -0
- package/src/{ui → core}/primitives/card/types.ts +5 -4
- package/src/{ui → core}/primitives/heading/__workshop__/opticalAlignment.tsx +1 -1
- package/src/{ui → core}/primitives/heading/__workshop__/plain.tsx +1 -8
- package/src/{ui → core}/primitives/label/__workshop__/plain.tsx +1 -9
- package/src/{ui → core}/primitives/popover/popover.tsx +1 -1
- package/src/{ui → core}/primitives/text/__workshop__/example.tsx +1 -9
- package/src/{ui → core}/primitives/tooltip/tooltip.tsx +1 -1
- package/src/{ui/utils/portal/portal.ts → core/utils/portal/portal.tsx} +8 -10
- package/src/css/{compilePalette.ts → _compilePalette.ts} +2 -2
- package/src/css/{compileSystem.ts → _compileSystem.ts} +1 -1
- package/src/css/{compileTheme.ts → _compileTheme.ts} +3 -3
- package/src/css/{compileTheme_v3.ts → _compileTheme_v3.ts} +7 -1
- package/src/css/_mergeStyles.ts +0 -7
- package/src/css/_system.style.ts +3 -0
- package/src/css/aspects/font/font.style.ts +0 -21
- package/src/css/aspects/font/font.ts +1 -6
- package/src/css/aspects/font/types.ts +0 -4
- package/src/css/aspects/index.ts +1 -0
- package/src/css/aspects/textAlign/index.ts +2 -0
- package/src/css/aspects/textAlign/textAlign.style.ts +26 -0
- package/src/css/aspects/textAlign/textAlign.ts +8 -0
- package/src/css/aspects/textAlign/types.ts +7 -0
- package/src/css/index.ts +3 -3
- package/src/css/primitives/_input/_input.style.ts +9 -11
- package/src/css/primitives/box/box.style.ts +5 -1
- package/src/css/primitives/box/box.ts +2 -0
- package/src/css/primitives/box/types.ts +2 -0
- package/src/css/primitives/button/button.style.ts +23 -9
- package/src/css/primitives/button/button.ts +1 -12
- package/src/css/primitives/button/types.ts +1 -6
- package/src/css/primitives/card/card.style.ts +12 -21
- package/src/css/primitives/heading/heading.ts +2 -1
- package/src/css/primitives/heading/types.ts +2 -1
- package/src/css/primitives/kbd/kbd.style.ts +3 -6
- package/src/css/primitives/label/label.ts +2 -1
- package/src/css/primitives/label/types.ts +2 -1
- package/src/css/primitives/text/text.style.ts +0 -5
- package/src/css/primitives/text/text.ts +2 -1
- package/src/css/primitives/text/types.ts +2 -1
- package/src/css/primitives/textInput/textInput.style.ts +1 -120
- package/src/css/types.ts +9 -9
- package/src/theme/v3/color/buildColor_v3.ts +53 -25
- package/src/theme/v3/color/card.ts +0 -42
- package/src/theme/v3/color/renderColor.test.ts +1 -0
- package/src/theme/v3/color/renderColor.ts +9 -2
- package/src/theme/v3/color/token.ts +1 -0
- package/src/theme/v3/defaultTokens.ts +7 -2
- package/dist/_chunks-cjs/_visual-editing.js.map +0 -1
- package/dist/_chunks-cjs/buildCommand.js.map +0 -1
- package/dist/_chunks-cjs/refractor.js.map +0 -1
- package/dist/_chunks-es/_visual-editing.mjs.map +0 -1
- package/dist/_chunks-es/refractor.mjs.map +0 -1
- package/dist/_visual-editing.mjs +0 -31
- package/dist/_visual-editing.mjs.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/css.mjs.map +0 -1
- package/dist/index.mjs.map +0 -1
- package/dist/sanity-palette.min.css +0 -1
- package/dist/sanity-theme.min.css +0 -1
- package/dist/system.min.css +0 -1
- package/dist/theme.mjs.map +0 -1
- package/src/css/primitives/button/_constants.ts +0 -17
- package/src/ui/RootClassNames.tsx +0 -44
- package/src/ui/_compat/studioTheme.ts +0 -7
- package/src/ui/primitives/button/__workshop__/custom.tsx +0 -50
- package/src/ui/primitives/card/cardProvider.tsx +0 -21
- /package/dist/{cli.d.ts → cli.d.cts} +0 -0
- /package/src/{ui → core}/_compat/helpers.ts +0 -0
- /package/src/{ui → core}/_compat/styles/_responsive.ts +0 -0
- /package/src/{ui → core}/_compat/styles/index.ts +0 -0
- /package/src/{ui → core}/_compat/theme/index.ts +0 -0
- /package/src/{ui → core}/_compat/theme/theme.test.tsx +0 -0
- /package/src/{ui → core}/_compat/theme/themeColorProvider.tsx +0 -0
- /package/src/{ui → core}/_compat/theme/themeContext.ts +0 -0
- /package/src/{ui → core}/_compat/theme/types.ts +0 -0
- /package/src/{ui → core}/_compat/theme/useRootTheme.ts +0 -0
- /package/src/{ui → core}/_compat/theme/useTheme.ts +0 -0
- /package/src/{ui → core}/_compat/types.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/__mocks__/apiStore.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/__mocks__/countries.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/__workshop__/constrainedHeight.tsx +0 -0
- /package/src/{ui → core}/components/autocomplete/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/components/autocomplete/__workshop__/fullscreen.tsx +0 -0
- /package/src/{ui → core}/components/autocomplete/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/__workshop__/types.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/autocomplete.tsx +0 -0
- /package/src/{ui → core}/components/autocomplete/autocompleteOption.tsx +0 -0
- /package/src/{ui → core}/components/autocomplete/autocompleteReducer.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/constants.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/index.ts +0 -0
- /package/src/{ui → core}/components/autocomplete/types.ts +0 -0
- /package/src/{ui → core}/components/breadcrumbs/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/components/breadcrumbs/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/breadcrumbs/breadcrumbs.tsx +0 -0
- /package/src/{ui → core}/components/breadcrumbs/index.ts +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/activate.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/autoFocus.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/layering.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/nested.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/onScroll.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/panes.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/position.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/provider.tsx +0 -0
- /package/src/{ui → core}/components/dialog/__workshop__/wrapped.tsx +0 -0
- /package/src/{ui → core}/components/dialog/dialog.tsx +0 -0
- /package/src/{ui → core}/components/dialog/dialogCard.tsx +0 -0
- /package/src/{ui → core}/components/dialog/dialogContext.ts +0 -0
- /package/src/{ui → core}/components/dialog/dialogProvider.tsx +0 -0
- /package/src/{ui → core}/components/dialog/index.ts +0 -0
- /package/src/{ui → core}/components/dialog/isTargetWithinScope.ts +0 -0
- /package/src/{ui → core}/components/dialog/useDialog.ts +0 -0
- /package/src/{ui → core}/components/hotkeys/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/hotkeys/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/components/hotkeys/hotkeys.tsx +0 -0
- /package/src/{ui → core}/components/hotkeys/index.ts +0 -0
- /package/src/{ui → core}/components/index.ts +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/asComponent.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/avatarMenu.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/closableMenuButton.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/constrainedInBoundary.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/customMenuItem.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/customSelectedState.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/disableFocusOnClose.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/groups.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/menuButton.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/menuGroupRight.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/nestedMenu.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/onCloseMenuButton.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/selectedItem.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/shouldFocus.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/tones.tsx +0 -0
- /package/src/{ui → core}/components/menu/__workshop__/withoutArrow.tsx +0 -0
- /package/src/{ui → core}/components/menu/helpers.ts +0 -0
- /package/src/{ui → core}/components/menu/index.ts +0 -0
- /package/src/{ui → core}/components/menu/menu.test.tsx +0 -0
- /package/src/{ui → core}/components/menu/menu.tsx +0 -0
- /package/src/{ui → core}/components/menu/menuButton.tsx +0 -0
- /package/src/{ui → core}/components/menu/menuContext.ts +0 -0
- /package/src/{ui → core}/components/menu/menuDivider.tsx +0 -0
- /package/src/{ui → core}/components/menu/menuGroup.tsx +0 -0
- /package/src/{ui → core}/components/menu/menuItem.tsx +0 -0
- /package/src/{ui → core}/components/menu/useMenu.ts +0 -0
- /package/src/{ui → core}/components/menu/useMenuController.ts +0 -0
- /package/src/{ui → core}/components/skeleton/__workshop__/delay.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/skeleton/__workshop__/skeleton.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/codeSkeleton.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/headingSkeleton.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/index.ts +0 -0
- /package/src/{ui → core}/components/skeleton/labelSkeleton.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/skeleton.tsx +0 -0
- /package/src/{ui → core}/components/skeleton/textSkeleton.tsx +0 -0
- /package/src/{ui → core}/components/tab/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/components/tab/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/tab/index.ts +0 -0
- /package/src/{ui → core}/components/tab/tab.tsx +0 -0
- /package/src/{ui → core}/components/tab/tabPanel.tsx +0 -0
- /package/src/{ui → core}/components/toast/__workshop__/hook.tsx +0 -0
- /package/src/{ui → core}/components/toast/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/toast/__workshop__/toast.tsx +0 -0
- /package/src/{ui → core}/components/toast/index.ts +0 -0
- /package/src/{ui → core}/components/toast/toast.test.tsx +0 -0
- /package/src/{ui → core}/components/toast/toast.tsx +0 -0
- /package/src/{ui → core}/components/toast/toastContext.ts +0 -0
- /package/src/{ui → core}/components/toast/toastLayer.tsx +0 -0
- /package/src/{ui → core}/components/toast/toastProvider.tsx +0 -0
- /package/src/{ui → core}/components/toast/toastState.ts +0 -0
- /package/src/{ui → core}/components/toast/types.ts +0 -0
- /package/src/{ui → core}/components/toast/useToast.ts +0 -0
- /package/src/{ui → core}/components/tree/__workshop__/basic.perf.ts +0 -0
- /package/src/{ui → core}/components/tree/__workshop__/basic.tsx +0 -0
- /package/src/{ui → core}/components/tree/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/components/tree/__workshop__/tabFromElement.tsx +0 -0
- /package/src/{ui → core}/components/tree/helpers.ts +0 -0
- /package/src/{ui → core}/components/tree/index.ts +0 -0
- /package/src/{ui → core}/components/tree/tree.tsx +0 -0
- /package/src/{ui → core}/components/tree/treeContext.ts +0 -0
- /package/src/{ui → core}/components/tree/treeGroup.tsx +0 -0
- /package/src/{ui → core}/components/tree/treeItem.tsx +0 -0
- /package/src/{ui → core}/components/tree/types.ts +0 -0
- /package/src/{ui → core}/components/tree/useTree.ts +0 -0
- /package/src/{ui → core}/constants.ts +0 -0
- /package/src/{ui → core}/global.ts +0 -0
- /package/src/{ui → core}/helpers/animation.ts +0 -0
- /package/src/{ui → core}/helpers/element.ts +0 -0
- /package/src/{ui → core}/helpers/focus.ts +0 -0
- /package/src/{ui → core}/helpers/index.ts +0 -0
- /package/src/{ui → core}/helpers/props.ts +0 -0
- /package/src/{ui → core}/helpers/scroll.ts +0 -0
- /package/src/{ui → core}/hooks/index.ts +0 -0
- /package/src/{ui → core}/hooks/useArrayProp.ts +0 -0
- /package/src/{ui → core}/hooks/useClickOutside.test.tsx +0 -0
- /package/src/{ui → core}/hooks/useClickOutside.ts +0 -0
- /package/src/{ui → core}/hooks/useClickOutsideEvent.test.tsx +0 -0
- /package/src/{ui → core}/hooks/useClickOutsideEvent.ts +0 -0
- /package/src/{ui → core}/hooks/useCustomValidity.ts +0 -0
- /package/src/{ui → core}/hooks/useDelayed.test.ts +0 -0
- /package/src/{ui → core}/hooks/useDelayedState.ts +0 -0
- /package/src/{ui → core}/hooks/useElementRect/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/hooks/useElementRect/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/hooks/useElementRect/index.ts +0 -0
- /package/src/{ui → core}/hooks/useElementRect/useElementRect.ts +0 -0
- /package/src/{ui → core}/hooks/useElementSize.ts +0 -0
- /package/src/{ui → core}/hooks/useForwardedRef.ts +0 -0
- /package/src/{ui → core}/hooks/useGlobalKeyDown.ts +0 -0
- /package/src/{ui → core}/hooks/useIsomorphicEffect.ts +0 -0
- /package/src/{ui → core}/hooks/useMatchMedia.ts +0 -0
- /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/hooks/useMediaIndex/__workshop__/test.tsx +0 -0
- /package/src/{ui → core}/hooks/useMediaIndex/index.ts +0 -0
- /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.test.tsx +0 -0
- /package/src/{ui → core}/hooks/useMediaIndex/useMediaIndex.ts +0 -0
- /package/src/{ui → core}/hooks/useMounted.ts +0 -0
- /package/src/{ui → core}/hooks/usePrefersDark.hydration.test.tsx +0 -0
- /package/src/{ui → core}/hooks/usePrefersDark.test.tsx +0 -0
- /package/src/{ui → core}/hooks/usePrefersDark.ts +0 -0
- /package/src/{ui → core}/hooks/usePrefersReducedMotion.hydration.test.tsx +0 -0
- /package/src/{ui → core}/hooks/usePrefersReducedMotion.test.tsx +0 -0
- /package/src/{ui → core}/hooks/usePrefersReducedMotion.ts +0 -0
- /package/src/{ui → core}/lib/createGlobalScopedContext.ts +0 -0
- /package/src/{ui → core}/lib/globalScope.ts +0 -0
- /package/src/{ui → core}/lib/isRecord.ts +0 -0
- /package/src/{ui → core}/middleware/origin.ts +0 -0
- /package/src/{ui → core}/observers/elementSizeObserver.ts +0 -0
- /package/src/{ui → core}/observers/index.ts +0 -0
- /package/src/{ui → core}/observers/resizeObserver.ts +0 -0
- /package/src/{ui → core}/primitives/_selectable/index.ts +0 -0
- /package/src/{ui → core}/primitives/_selectable/selectable.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/__workshop__/asButton.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/avatar/__workshop__/stack.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/__workshop__/withinButton.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/__workshop__/withinMenuItem.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/avatar.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/avatarCounter.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/avatarStack.tsx +0 -0
- /package/src/{ui → core}/primitives/avatar/index.ts +0 -0
- /package/src/{ui → core}/primitives/avatar/types.ts +0 -0
- /package/src/{ui → core}/primitives/badge/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/badge/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/badge/__workshop__/tones.tsx +0 -0
- /package/src/{ui → core}/primitives/badge/badge.test.tsx +0 -0
- /package/src/{ui → core}/primitives/badge/badge.tsx +0 -0
- /package/src/{ui → core}/primitives/badge/index.ts +0 -0
- /package/src/{ui → core}/primitives/badge/types.ts +0 -0
- /package/src/{ui → core}/primitives/box/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/box/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/box/__workshop__/responsive.tsx +0 -0
- /package/src/{ui → core}/primitives/box/index.ts +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/customIcons.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/disabled.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/mixedChildren.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/sanityUploadButton.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/stacked.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/styled1.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/styled2.tsx +0 -0
- /package/src/{ui → core}/primitives/button/__workshop__/uploadButton.tsx +0 -0
- /package/src/{ui → core}/primitives/button/button.test.tsx +0 -0
- /package/src/{ui → core}/primitives/button/index.ts +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/allTones.tsx +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/asComponent.tsx +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/checkered.tsx +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/listNavigation.tsx +0 -0
- /package/src/{ui → core}/primitives/card/__workshop__/styled.tsx +0 -0
- /package/src/{ui → core}/primitives/card/cardContext.ts +0 -0
- /package/src/{ui → core}/primitives/card/index.ts +0 -0
- /package/src/{ui → core}/primitives/card/useCard.ts +0 -0
- /package/src/{ui → core}/primitives/checkbox/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/primitives/checkbox/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/checkbox/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/checkbox/__workshop__/readOnly.tsx +0 -0
- /package/src/{ui → core}/primitives/checkbox/__workshop__/tones.tsx +0 -0
- /package/src/{ui → core}/primitives/checkbox/checkbox.tsx +0 -0
- /package/src/{ui → core}/primitives/checkbox/index.ts +0 -0
- /package/src/{ui → core}/primitives/code/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/code/__workshop__/opticalAlignment.tsx +0 -0
- /package/src/{ui → core}/primitives/code/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/code/code.tsx +0 -0
- /package/src/{ui → core}/primitives/code/index.ts +0 -0
- /package/src/{ui → core}/primitives/code/refractor.tsx +0 -0
- /package/src/{ui → core}/primitives/container/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/primitives/container/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/container/container.tsx +0 -0
- /package/src/{ui → core}/primitives/container/index.ts +0 -0
- /package/src/{ui → core}/primitives/container/types.ts +0 -0
- /package/src/{ui → core}/primitives/flex/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/primitives/flex/__workshop__/gap.tsx +0 -0
- /package/src/{ui → core}/primitives/flex/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/flex/flex.tsx +0 -0
- /package/src/{ui → core}/primitives/flex/index.ts +0 -0
- /package/src/{ui → core}/primitives/grid/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/grid/__workshop__/responsive.tsx +0 -0
- /package/src/{ui → core}/primitives/grid/grid.tsx +0 -0
- /package/src/{ui → core}/primitives/grid/index.ts +0 -0
- /package/src/{ui → core}/primitives/heading/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/heading/heading.tsx +0 -0
- /package/src/{ui → core}/primitives/heading/index.ts +0 -0
- /package/src/{ui → core}/primitives/index.ts +0 -0
- /package/src/{ui → core}/primitives/inline/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/inline/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/inline/index.ts +0 -0
- /package/src/{ui → core}/primitives/inline/inline.tsx +0 -0
- /package/src/{ui → core}/primitives/inline/types.ts +0 -0
- /package/src/{ui → core}/primitives/kbd/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/kbd/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/kbd/index.ts +0 -0
- /package/src/{ui → core}/primitives/kbd/kbd.tsx +0 -0
- /package/src/{ui → core}/primitives/label/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/label/__workshop__/opticalAlignment.tsx +0 -0
- /package/src/{ui → core}/primitives/label/index.ts +0 -0
- /package/src/{ui → core}/primitives/label/label.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/AlignedStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/MarginsStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/MatchReferenceWidthStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/OpenOnMountStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/PlainStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/RecursiveStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/SidePanelStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/TestStory.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/popover/constants.ts +0 -0
- /package/src/{ui → core}/primitives/popover/floating-ui/size.ts +0 -0
- /package/src/{ui → core}/primitives/popover/helpers.ts +0 -0
- /package/src/{ui → core}/primitives/popover/index.ts +0 -0
- /package/src/{ui → core}/primitives/popover/popoverLayer.tsx +0 -0
- /package/src/{ui → core}/primitives/popover/types.ts +0 -0
- /package/src/{ui → core}/primitives/radio/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/primitives/radio/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/radio/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/radio/index.ts +0 -0
- /package/src/{ui → core}/primitives/radio/radio.tsx +0 -0
- /package/src/{ui → core}/primitives/select/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/select/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/select/__workshop__/readOnly.tsx +0 -0
- /package/src/{ui → core}/primitives/select/index.ts +0 -0
- /package/src/{ui → core}/primitives/select/select.tsx +0 -0
- /package/src/{ui → core}/primitives/spinner/__workshop__/Props.tsx +0 -0
- /package/src/{ui → core}/primitives/spinner/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/spinner/animatedSpinnerIcon.tsx +0 -0
- /package/src/{ui → core}/primitives/spinner/index.ts +0 -0
- /package/src/{ui → core}/primitives/spinner/spinner.tsx +0 -0
- /package/src/{ui → core}/primitives/stack/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/stack/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/stack/index.ts +0 -0
- /package/src/{ui → core}/primitives/stack/stack.tsx +0 -0
- /package/src/{ui → core}/primitives/switch/__workshop__/example.tsx +0 -0
- /package/src/{ui → core}/primitives/switch/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/switch/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/switch/index.ts +0 -0
- /package/src/{ui → core}/primitives/switch/switch.tsx +0 -0
- /package/src/{ui → core}/primitives/text/__workshop__/colored.tsx +0 -0
- /package/src/{ui → core}/primitives/text/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/text/__workshop__/opticalAlignment.tsx +0 -0
- /package/src/{ui → core}/primitives/text/index.ts +0 -0
- /package/src/{ui → core}/primitives/text/text.tsx +0 -0
- /package/src/{ui → core}/primitives/textArea/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/textArea/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/textArea/index.ts +0 -0
- /package/src/{ui → core}/primitives/textArea/textArea.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/clearButton.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/customValidity.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/readOnly.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/states.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/tones.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/__workshop__/typed.tsx +0 -0
- /package/src/{ui → core}/primitives/textInput/index.ts +0 -0
- /package/src/{ui → core}/primitives/textInput/textInput.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/__workshop__/customPortal.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/__workshop__/overflowingBoundary.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/__workshop__/props.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/__workshop__/resizableBoundary.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/constants.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/index.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltip.test.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/index.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupContext.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/types.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipDelayGroup/useTooltipDelayGroup.ts +0 -0
- /package/src/{ui → core}/primitives/tooltip/tooltipLayer.tsx +0 -0
- /package/src/{ui → core}/primitives/types.ts +0 -0
- /package/src/{ui → core}/types/avatar.ts +0 -0
- /package/src/{ui → core}/types/badge.ts +0 -0
- /package/src/{ui → core}/types/box.ts +0 -0
- /package/src/{ui → core}/types/button.ts +0 -0
- /package/src/{ui → core}/types/card.ts +0 -0
- /package/src/{ui → core}/types/dialog.ts +0 -0
- /package/src/{ui → core}/types/flex.ts +0 -0
- /package/src/{ui → core}/types/grid.ts +0 -0
- /package/src/{ui → core}/types/gridItem.ts +0 -0
- /package/src/{ui → core}/types/index.ts +0 -0
- /package/src/{ui → core}/types/placement.ts +0 -0
- /package/src/{ui → core}/types/popover.ts +0 -0
- /package/src/{ui → core}/types/props.ts +0 -0
- /package/src/{ui → core}/types/radius.ts +0 -0
- /package/src/{ui → core}/types/selectable.ts +0 -0
- /package/src/{ui → core}/types/text.ts +0 -0
- /package/src/{ui → core}/utils/arrow/arrow.tsx +0 -0
- /package/src/{ui → core}/utils/arrow/cmds.ts +0 -0
- /package/src/{ui → core}/utils/arrow/index.ts +0 -0
- /package/src/{ui → core}/utils/boundaryElement/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/utils/boundaryElement/__workshop__/plain.tsx +0 -0
- /package/src/{ui → core}/utils/boundaryElement/boundaryElement.test.tsx +0 -0
- /package/src/{ui → core}/utils/boundaryElement/boundaryElementContext.ts +0 -0
- /package/src/{ui → core}/utils/boundaryElement/boundaryElementProvider.tsx +0 -0
- /package/src/{ui → core}/utils/boundaryElement/index.ts +0 -0
- /package/src/{ui → core}/utils/boundaryElement/types.ts +0 -0
- /package/src/{ui → core}/utils/boundaryElement/useBoundaryElement.ts +0 -0
- /package/src/{ui → core}/utils/elementQuery/__workshop__/customMedia.tsx +0 -0
- /package/src/{ui → core}/utils/elementQuery/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/utils/elementQuery/elementQuery.tsx +0 -0
- /package/src/{ui → core}/utils/elementQuery/helpers.ts +0 -0
- /package/src/{ui → core}/utils/elementQuery/index.ts +0 -0
- /package/src/{ui → core}/utils/errorBoundary.tsx +0 -0
- /package/src/{ui → core}/utils/getElementRef.ts +0 -0
- /package/src/{ui → core}/utils/index.ts +0 -0
- /package/src/{ui → core}/utils/layer/__workshop__/_debug.tsx +0 -0
- /package/src/{ui → core}/utils/layer/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/utils/layer/__workshop__/multipleRoots.tsx +0 -0
- /package/src/{ui → core}/utils/layer/__workshop__/nested.tsx +0 -0
- /package/src/{ui → core}/utils/layer/__workshop__/responsiveZOffset.tsx +0 -0
- /package/src/{ui → core}/utils/layer/getLayerContext.test.ts +0 -0
- /package/src/{ui → core}/utils/layer/getLayerContext.ts +0 -0
- /package/src/{ui → core}/utils/layer/index.ts +0 -0
- /package/src/{ui → core}/utils/layer/layer.test.tsx +0 -0
- /package/src/{ui → core}/utils/layer/layer.tsx +0 -0
- /package/src/{ui → core}/utils/layer/layerCard.tsx +0 -0
- /package/src/{ui → core}/utils/layer/layerContext.ts +0 -0
- /package/src/{ui → core}/utils/layer/layerProvider.tsx +0 -0
- /package/src/{ui → core}/utils/layer/types.ts +0 -0
- /package/src/{ui → core}/utils/layer/useLayer.ts +0 -0
- /package/src/{ui → core}/utils/portal/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/utils/portal/__workshop__/named.tsx +0 -0
- /package/src/{ui → core}/utils/portal/index.ts +0 -0
- /package/src/{ui → core}/utils/portal/portal.test.tsx +0 -0
- /package/src/{ui → core}/utils/portal/portalContext.ts +0 -0
- /package/src/{ui → core}/utils/portal/portalProvider.tsx +0 -0
- /package/src/{ui → core}/utils/portal/types.ts +0 -0
- /package/src/{ui → core}/utils/portal/usePortal.ts +0 -0
- /package/src/{ui → core}/utils/spanWithTextOverflow.tsx +0 -0
- /package/src/{ui → core}/utils/srOnly/index.ts +0 -0
- /package/src/{ui → core}/utils/srOnly/srOnly.tsx +0 -0
- /package/src/{ui → core}/utils/virtualList/__workshop__/changingProps.tsx +0 -0
- /package/src/{ui → core}/utils/virtualList/__workshop__/elementScroll.tsx +0 -0
- /package/src/{ui → core}/utils/virtualList/__workshop__/index.ts +0 -0
- /package/src/{ui → core}/utils/virtualList/__workshop__/infiniteList.tsx +0 -0
- /package/src/{ui → core}/utils/virtualList/__workshop__/windowScrolll.tsx +0 -0
- /package/src/{ui → core}/utils/virtualList/index.ts +0 -0
- /package/src/{ui → core}/utils/virtualList/virtualList.tsx +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: !0 });
|
|
3
|
+
var color = require("@sanity/color");
|
|
2
4
|
const AVATAR_SIZE = [0, 1, 2, 3], CONTAINER = [0, 1, 2, 3, 4, 5, "auto"], RADIUS = [0, 1, 2, 3, 4, 5, 6, "full"], SPACE = [0, 0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9], FONT_CODE_SIZE = [0, 1, 2, 3, 4], FONT_HEADING_SIZE = [0, 1, 2, 3, 4, 5], FONT_LABEL_SIZE = [0, 1, 2, 3, 4, 5], FONT_TEXT_SIZE = [0, 1, 2, 3, 4], SHADOW = [0, 1, 2, 3, 4, 5];
|
|
3
5
|
function createSelectableTones(opts, base, dark, solid, muted) {
|
|
4
6
|
return {
|
|
@@ -506,13 +508,13 @@ const black = "hsl(0, 0%, 0%)", white = "hsl(0, 0%, 100%)", colors = {
|
|
|
506
508
|
state,
|
|
507
509
|
tone
|
|
508
510
|
}) => {
|
|
509
|
-
const
|
|
511
|
+
const color2 = colors[tone];
|
|
510
512
|
return state === "hovered" ? {
|
|
511
|
-
bg: dark ?
|
|
512
|
-
bg2: dark ?
|
|
513
|
-
border: dark ?
|
|
514
|
-
fg: dark ?
|
|
515
|
-
icon: dark ?
|
|
513
|
+
bg: dark ? color2.light : color2.dark,
|
|
514
|
+
bg2: dark ? color2.light : color2.dark,
|
|
515
|
+
border: dark ? color2.lighter : color2.darker,
|
|
516
|
+
fg: dark ? color2.darkest : color2.lightest,
|
|
517
|
+
icon: dark ? color2.darkest : color2.lightest,
|
|
516
518
|
muted: {
|
|
517
519
|
fg: black
|
|
518
520
|
},
|
|
@@ -528,11 +530,11 @@ const black = "hsl(0, 0%, 0%)", white = "hsl(0, 0%, 100%)", colors = {
|
|
|
528
530
|
},
|
|
529
531
|
skeleton: base.skeleton
|
|
530
532
|
} : {
|
|
531
|
-
bg:
|
|
532
|
-
bg2:
|
|
533
|
-
border: dark ?
|
|
534
|
-
fg: dark ?
|
|
535
|
-
icon: dark ?
|
|
533
|
+
bg: color2.base,
|
|
534
|
+
bg2: color2.base,
|
|
535
|
+
border: dark ? color2.light : color2.dark,
|
|
536
|
+
fg: dark ? color2.darkest : color2.lightest,
|
|
537
|
+
icon: dark ? color2.darkest : color2.lightest,
|
|
536
538
|
muted: {
|
|
537
539
|
fg: black
|
|
538
540
|
},
|
|
@@ -555,13 +557,13 @@ const black = "hsl(0, 0%, 0%)", white = "hsl(0, 0%, 100%)", colors = {
|
|
|
555
557
|
state,
|
|
556
558
|
tone
|
|
557
559
|
}) => {
|
|
558
|
-
const
|
|
560
|
+
const color2 = colors[tone];
|
|
559
561
|
return state === "hovered" ? {
|
|
560
|
-
bg: dark ?
|
|
561
|
-
bg2: dark ?
|
|
562
|
-
border: dark ?
|
|
563
|
-
fg: dark ?
|
|
564
|
-
icon: dark ?
|
|
562
|
+
bg: dark ? color2.darker : color2.lighter,
|
|
563
|
+
bg2: dark ? color2.darker : color2.lighter,
|
|
564
|
+
border: dark ? color2.lighter : color2.darker,
|
|
565
|
+
fg: dark ? color2.lightest : color2.darkest,
|
|
566
|
+
icon: dark ? color2.lightest : color2.darkest,
|
|
565
567
|
muted: {
|
|
566
568
|
fg: black
|
|
567
569
|
},
|
|
@@ -577,11 +579,11 @@ const black = "hsl(0, 0%, 0%)", white = "hsl(0, 0%, 100%)", colors = {
|
|
|
577
579
|
},
|
|
578
580
|
skeleton: base.skeleton
|
|
579
581
|
} : {
|
|
580
|
-
bg: dark ?
|
|
581
|
-
bg2: dark ?
|
|
582
|
-
border: dark ?
|
|
583
|
-
fg: dark ?
|
|
584
|
-
icon: dark ?
|
|
582
|
+
bg: dark ? color2.darkest : color2.lightest,
|
|
583
|
+
bg2: dark ? color2.darkest : color2.lightest,
|
|
584
|
+
border: dark ? color2.darker : color2.lighter,
|
|
585
|
+
fg: dark ? color2.lighter : color2.darker,
|
|
586
|
+
icon: dark ? color2.lighter : color2.darker,
|
|
585
587
|
muted: {
|
|
586
588
|
fg: black
|
|
587
589
|
},
|
|
@@ -1452,15 +1454,15 @@ const defaultThemeConfig = {
|
|
|
1452
1454
|
"positive",
|
|
1453
1455
|
"caution",
|
|
1454
1456
|
"critical"
|
|
1455
|
-
], THEME_COLOR_STATES = ["enabled", "hovered", "pressed", "selected", "disabled"], THEME_COLOR_BUTTON_MODES = ["default", "ghost", "bleed"], THEME_COLOR_INPUT_MODES = ["default", "invalid"], THEME_COLOR_INPUT_STATES = ["enabled", "hovered", "readOnly", "disabled"], THEME_COLOR_AVATAR_COLORS = COLOR_HUES;
|
|
1457
|
+
], THEME_COLOR_STATES = ["enabled", "hovered", "pressed", "selected", "disabled"], THEME_COLOR_BUTTON_MODES = ["default", "ghost", "bleed"], THEME_COLOR_INPUT_MODES = ["default", "invalid"], THEME_COLOR_INPUT_STATES = ["enabled", "hovered", "readOnly", "disabled"], THEME_COLOR_AVATAR_COLORS = color.COLOR_HUES;
|
|
1456
1458
|
function isColorBlendModeValue(str) {
|
|
1457
1459
|
return THEME_COLOR_BLEND_MODES.includes(str);
|
|
1458
1460
|
}
|
|
1459
1461
|
function isColorHueKey(str) {
|
|
1460
|
-
return COLOR_HUES.includes(str);
|
|
1462
|
+
return color.COLOR_HUES.includes(str);
|
|
1461
1463
|
}
|
|
1462
1464
|
function isColorTintKey(str) {
|
|
1463
|
-
return COLOR_TINTS.includes(str);
|
|
1465
|
+
return color.COLOR_TINTS.includes(str);
|
|
1464
1466
|
}
|
|
1465
1467
|
function isColorButtonMode(str) {
|
|
1466
1468
|
return THEME_COLOR_BUTTON_MODES.includes(str);
|
|
@@ -1468,12 +1470,12 @@ function isColorButtonMode(str) {
|
|
|
1468
1470
|
const HUES = ["gray", "blue", "purple", "magenta", "red", "orange", "yellow", "green", "cyan"], TINTS = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950], RE_PERCENTAGE = /^([0-9]+)%/, RE_OPACITY = /^(1|0\.[0-9]+)?/;
|
|
1469
1471
|
function parseColor$1(str) {
|
|
1470
1472
|
let cursor = 0;
|
|
1471
|
-
const
|
|
1472
|
-
if (!
|
|
1473
|
+
const color2 = getColor();
|
|
1474
|
+
if (!color2)
|
|
1473
1475
|
throw new Error(`Invalid color: ${str}`);
|
|
1474
1476
|
const opacity = getOpacity(), mix2 = getMixPercentage();
|
|
1475
1477
|
return {
|
|
1476
|
-
color,
|
|
1478
|
+
color: color2,
|
|
1477
1479
|
mix: mix2,
|
|
1478
1480
|
opacity
|
|
1479
1481
|
};
|
|
@@ -1543,10 +1545,14 @@ function parseColor$1(str) {
|
|
|
1543
1545
|
}
|
|
1544
1546
|
function renderColor(token, context) {
|
|
1545
1547
|
const {
|
|
1548
|
+
bgValue,
|
|
1546
1549
|
bgVar,
|
|
1547
1550
|
hue,
|
|
1548
1551
|
scheme
|
|
1549
|
-
} = context,
|
|
1552
|
+
} = context, t = token[scheme === "dark" ? 0 : 1];
|
|
1553
|
+
if (t === "inherit")
|
|
1554
|
+
return bgValue;
|
|
1555
|
+
const result = parseColor$1(t), colorVar = result.color.type === "hue" ? `--${result.color.hue ?? hue}-${result.color.tint}` : `--${result.color.type}`;
|
|
1550
1556
|
return result.mix !== void 0 ? `color-mix(in srgb, var(${bgVar}), var(${colorVar}) ${result.mix}%)` : result.opacity !== void 0 ? `color-mix(in srgb, transparent, var(${colorVar}) ${result.opacity * 100}%)` : `var(${colorVar})`;
|
|
1551
1557
|
}
|
|
1552
1558
|
function buildColor_v3(tokens) {
|
|
@@ -1573,21 +1579,27 @@ function buildColorCard_v3(tokens, options) {
|
|
|
1573
1579
|
const {
|
|
1574
1580
|
scheme
|
|
1575
1581
|
} = options, context = {
|
|
1576
|
-
bgVar: "--color-bg
|
|
1582
|
+
bgVar: "--color-bg",
|
|
1583
|
+
bgValue: "transparent",
|
|
1577
1584
|
hue: tokens._hue,
|
|
1578
1585
|
scheme
|
|
1579
|
-
}
|
|
1586
|
+
}, tintedDefaultVariant = buildColorElement_v3(tokens.variant.tinted.default, {
|
|
1587
|
+
bgValue: "transparent",
|
|
1588
|
+
scheme
|
|
1589
|
+
}), bgValue = tintedDefaultVariant.bg[0];
|
|
1580
1590
|
return {
|
|
1581
1591
|
_hue: tokens._hue ?? "gray",
|
|
1582
1592
|
avatar: THEME_COLOR_AVATAR_COLORS.reduce((acc, hue) => {
|
|
1583
1593
|
const avatarTokens = tokens.avatar[hue];
|
|
1584
1594
|
return acc[hue] = {
|
|
1585
1595
|
bg: renderColor(avatarTokens.bg, {
|
|
1596
|
+
bgValue,
|
|
1586
1597
|
bgVar: "--color-bg-1",
|
|
1587
1598
|
hue: avatarTokens._hue,
|
|
1588
1599
|
scheme
|
|
1589
1600
|
}),
|
|
1590
1601
|
fg: renderColor(avatarTokens.fg, {
|
|
1602
|
+
bgValue,
|
|
1591
1603
|
bgVar: "--color-bg-1",
|
|
1592
1604
|
hue: avatarTokens._hue,
|
|
1593
1605
|
scheme
|
|
@@ -1650,29 +1662,27 @@ function buildColorCard_v3(tokens, options) {
|
|
|
1650
1662
|
},
|
|
1651
1663
|
variant: {
|
|
1652
1664
|
solid: {
|
|
1653
|
-
...THEME_COLOR_STATE_TONES.reduce((acc, tone) => ({
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
})
|
|
1658
|
-
}), {})
|
|
1665
|
+
...THEME_COLOR_STATE_TONES.reduce((acc, tone) => (acc[tone] = buildColorElement_v3(tokens.variant.solid[tone], {
|
|
1666
|
+
bgValue,
|
|
1667
|
+
scheme
|
|
1668
|
+
}), acc), {})
|
|
1659
1669
|
},
|
|
1660
1670
|
tinted: {
|
|
1661
|
-
...THEME_COLOR_STATE_TONES.reduce((acc, tone) => ({
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
})
|
|
1666
|
-
}), {})
|
|
1671
|
+
...THEME_COLOR_STATE_TONES.reduce((acc, tone) => (tone === "default" ? acc[tone] = tintedDefaultVariant : acc[tone] = buildColorElement_v3(tokens.variant.tinted[tone], {
|
|
1672
|
+
bgValue,
|
|
1673
|
+
scheme
|
|
1674
|
+
}), acc), {})
|
|
1667
1675
|
}
|
|
1668
1676
|
}
|
|
1669
1677
|
};
|
|
1670
1678
|
}
|
|
1671
1679
|
function buildColorElement_v3(tokens, options) {
|
|
1672
1680
|
const {
|
|
1681
|
+
bgValue,
|
|
1673
1682
|
scheme
|
|
1674
1683
|
} = options, context = {
|
|
1675
|
-
|
|
1684
|
+
bgValue,
|
|
1685
|
+
bgVar: "--color-bg",
|
|
1676
1686
|
hue: tokens._hue,
|
|
1677
1687
|
scheme
|
|
1678
1688
|
};
|
|
@@ -1764,19 +1774,34 @@ const defaultTokens = {
|
|
|
1764
1774
|
}
|
|
1765
1775
|
},
|
|
1766
1776
|
primary: {
|
|
1767
|
-
_hue: "blue"
|
|
1777
|
+
_hue: "blue",
|
|
1778
|
+
bg: {
|
|
1779
|
+
0: ["inherit", "inherit"]
|
|
1780
|
+
}
|
|
1768
1781
|
},
|
|
1769
1782
|
suggest: {
|
|
1770
|
-
_hue: "purple"
|
|
1783
|
+
_hue: "purple",
|
|
1784
|
+
bg: {
|
|
1785
|
+
0: ["inherit", "inherit"]
|
|
1786
|
+
}
|
|
1771
1787
|
},
|
|
1772
1788
|
positive: {
|
|
1773
|
-
_hue: "green"
|
|
1789
|
+
_hue: "green",
|
|
1790
|
+
bg: {
|
|
1791
|
+
0: ["inherit", "inherit"]
|
|
1792
|
+
}
|
|
1774
1793
|
},
|
|
1775
1794
|
caution: {
|
|
1776
|
-
_hue: "yellow"
|
|
1795
|
+
_hue: "yellow",
|
|
1796
|
+
bg: {
|
|
1797
|
+
0: ["inherit", "inherit"]
|
|
1798
|
+
}
|
|
1777
1799
|
},
|
|
1778
1800
|
critical: {
|
|
1779
|
-
_hue: "red"
|
|
1801
|
+
_hue: "red",
|
|
1802
|
+
bg: {
|
|
1803
|
+
0: ["inherit", "inherit"]
|
|
1804
|
+
}
|
|
1780
1805
|
}
|
|
1781
1806
|
},
|
|
1782
1807
|
solid: {
|
|
@@ -1791,7 +1816,7 @@ const defaultTokens = {
|
|
|
1791
1816
|
},
|
|
1792
1817
|
fg: {
|
|
1793
1818
|
0: ["black", "white"],
|
|
1794
|
-
4: ["
|
|
1819
|
+
4: ["700", "200"]
|
|
1795
1820
|
}
|
|
1796
1821
|
},
|
|
1797
1822
|
default: {
|
|
@@ -1852,7 +1877,7 @@ const defaultTokens = {
|
|
|
1852
1877
|
},
|
|
1853
1878
|
border: {
|
|
1854
1879
|
0: ["800", "100"],
|
|
1855
|
-
4: ["600", "
|
|
1880
|
+
4: ["600", "400"]
|
|
1856
1881
|
},
|
|
1857
1882
|
fg: {
|
|
1858
1883
|
0: ["white", "black"],
|
|
@@ -2093,7 +2118,7 @@ function v2_v0(v2, v3) {
|
|
|
2093
2118
|
const {
|
|
2094
2119
|
avatar,
|
|
2095
2120
|
button,
|
|
2096
|
-
color,
|
|
2121
|
+
color: color2,
|
|
2097
2122
|
container,
|
|
2098
2123
|
font: fonts,
|
|
2099
2124
|
input,
|
|
@@ -2110,20 +2135,20 @@ function v2_v0(v2, v3) {
|
|
|
2110
2135
|
container,
|
|
2111
2136
|
color: {
|
|
2112
2137
|
light: {
|
|
2113
|
-
transparent: themeColor_v2_v0(
|
|
2114
|
-
default: themeColor_v2_v0(
|
|
2115
|
-
primary: themeColor_v2_v0(
|
|
2116
|
-
positive: themeColor_v2_v0(
|
|
2117
|
-
caution: themeColor_v2_v0(
|
|
2118
|
-
critical: themeColor_v2_v0(
|
|
2138
|
+
transparent: themeColor_v2_v0(color2.light.transparent),
|
|
2139
|
+
default: themeColor_v2_v0(color2.light.default),
|
|
2140
|
+
primary: themeColor_v2_v0(color2.light.primary),
|
|
2141
|
+
positive: themeColor_v2_v0(color2.light.positive),
|
|
2142
|
+
caution: themeColor_v2_v0(color2.light.caution),
|
|
2143
|
+
critical: themeColor_v2_v0(color2.light.critical)
|
|
2119
2144
|
},
|
|
2120
2145
|
dark: {
|
|
2121
|
-
transparent: themeColor_v2_v0(
|
|
2122
|
-
default: themeColor_v2_v0(
|
|
2123
|
-
primary: themeColor_v2_v0(
|
|
2124
|
-
positive: themeColor_v2_v0(
|
|
2125
|
-
caution: themeColor_v2_v0(
|
|
2126
|
-
critical: themeColor_v2_v0(
|
|
2146
|
+
transparent: themeColor_v2_v0(color2.dark.transparent),
|
|
2147
|
+
default: themeColor_v2_v0(color2.dark.default),
|
|
2148
|
+
primary: themeColor_v2_v0(color2.dark.primary),
|
|
2149
|
+
positive: themeColor_v2_v0(color2.dark.positive),
|
|
2150
|
+
caution: themeColor_v2_v0(color2.dark.caution),
|
|
2151
|
+
critical: themeColor_v2_v0(color2.dark.critical)
|
|
2127
2152
|
}
|
|
2128
2153
|
},
|
|
2129
2154
|
focusRing: input.text.focusRing,
|
|
@@ -2196,36 +2221,36 @@ function inputStateThemeColor_v2_v0(t) {
|
|
|
2196
2221
|
}
|
|
2197
2222
|
function themeColor_v3_v2(options) {
|
|
2198
2223
|
const {
|
|
2199
|
-
color,
|
|
2224
|
+
color: color2,
|
|
2200
2225
|
dark
|
|
2201
2226
|
} = options;
|
|
2202
2227
|
return {
|
|
2203
2228
|
_blend: "screen",
|
|
2204
2229
|
_dark: dark,
|
|
2205
2230
|
...buildColorState({
|
|
2206
|
-
cardColor:
|
|
2231
|
+
cardColor: color2,
|
|
2207
2232
|
state: "enabled",
|
|
2208
2233
|
tone: "default",
|
|
2209
2234
|
variant: "tinted"
|
|
2210
2235
|
}),
|
|
2211
|
-
backdrop:
|
|
2236
|
+
backdrop: color2.backdrop,
|
|
2212
2237
|
button: THEME_COLOR_BUTTON_MODES.reduce((modes, mode) => (modes[mode] = THEME_COLOR_STATE_TONES.reduce((tones2, tone) => (tones2[tone] = THEME_COLOR_STATES.reduce((states, state) => (states[state] = buildColorState({
|
|
2213
|
-
cardColor:
|
|
2238
|
+
cardColor: color2,
|
|
2214
2239
|
state,
|
|
2215
2240
|
tone,
|
|
2216
2241
|
variant: mode === "default" ? "solid" : "tinted"
|
|
2217
2242
|
}), mode === "bleed" && (states[state].border = "transparent"), states), {}), tones2), {}), modes), {}),
|
|
2218
|
-
focusRing:
|
|
2219
|
-
input: THEME_COLOR_INPUT_MODES.reduce((modes, mode) => (modes[mode] = THEME_COLOR_INPUT_STATES.reduce((states, state) => (states[state] = buildInputState(
|
|
2243
|
+
focusRing: color2.focusRing,
|
|
2244
|
+
input: THEME_COLOR_INPUT_MODES.reduce((modes, mode) => (modes[mode] = THEME_COLOR_INPUT_STATES.reduce((states, state) => (states[state] = buildInputState(color2.variant.tinted.default), states), {}), modes), {}),
|
|
2220
2245
|
selectable: THEME_COLOR_STATE_TONES.reduce((tones2, tone) => (tones2[tone] = THEME_COLOR_STATES.reduce((states, state) => (states[state] = buildColorState({
|
|
2221
|
-
cardColor:
|
|
2246
|
+
cardColor: color2,
|
|
2222
2247
|
// cardVars: vars,
|
|
2223
2248
|
state,
|
|
2224
2249
|
tone,
|
|
2225
2250
|
variant: "tinted"
|
|
2226
2251
|
}), states), {}), tones2), {}),
|
|
2227
|
-
shadow:
|
|
2228
|
-
syntax:
|
|
2252
|
+
shadow: color2.shadow,
|
|
2253
|
+
syntax: color2.code.token
|
|
2229
2254
|
};
|
|
2230
2255
|
}
|
|
2231
2256
|
const stateShades = {
|
|
@@ -2264,37 +2289,37 @@ function buildColorState(options) {
|
|
|
2264
2289
|
state,
|
|
2265
2290
|
tone,
|
|
2266
2291
|
variant
|
|
2267
|
-
} = options,
|
|
2292
|
+
} = options, color2 = cardColor.variant[variant][tone], shades = stateShades[state];
|
|
2268
2293
|
return {
|
|
2269
2294
|
accent: {
|
|
2270
|
-
fg:
|
|
2295
|
+
fg: color2.fg[4]
|
|
2271
2296
|
},
|
|
2272
2297
|
avatar: cardColor.avatar,
|
|
2273
2298
|
badge: THEME_COLOR_STATE_TONES.reduce((tones2, tone2) => (tones2[tone2] = {
|
|
2274
|
-
bg: mix$1(
|
|
2275
|
-
fg: mix$1(
|
|
2276
|
-
dot: mix$1(
|
|
2277
|
-
icon: mix$1(
|
|
2299
|
+
bg: mix$1(color2.bg, 1),
|
|
2300
|
+
fg: mix$1(color2.fg, 1),
|
|
2301
|
+
dot: mix$1(color2.fg, 3),
|
|
2302
|
+
icon: mix$1(color2.fg, 3)
|
|
2278
2303
|
}, tones2), {}),
|
|
2279
|
-
bg: mix$1(
|
|
2280
|
-
border: mix$1(
|
|
2281
|
-
fg: mix$1(
|
|
2304
|
+
bg: mix$1(color2.bg, shades.bg[0]),
|
|
2305
|
+
border: mix$1(color2.border, shades.border[0]),
|
|
2306
|
+
fg: mix$1(color2.fg, shades.fg[0]),
|
|
2282
2307
|
code: {
|
|
2283
|
-
bg: mix$1(
|
|
2284
|
-
fg: mix$1(
|
|
2308
|
+
bg: mix$1(color2.bg, shades.bg[1]),
|
|
2309
|
+
fg: mix$1(color2.fg, shades.fg[2])
|
|
2285
2310
|
},
|
|
2286
|
-
icon: mix$1(
|
|
2311
|
+
icon: mix$1(color2.fg, shades.fg[2]),
|
|
2287
2312
|
kbd: {
|
|
2288
|
-
bg: mix$1(
|
|
2289
|
-
fg: mix$1(
|
|
2290
|
-
border: mix$1(
|
|
2313
|
+
bg: mix$1(color2.bg, 0),
|
|
2314
|
+
fg: mix$1(color2.fg, 0),
|
|
2315
|
+
border: mix$1(color2.bg, 0)
|
|
2291
2316
|
},
|
|
2292
2317
|
link: {
|
|
2293
|
-
fg: mix$1(
|
|
2318
|
+
fg: mix$1(color2.fg, shades.fg[2])
|
|
2294
2319
|
},
|
|
2295
2320
|
muted: {
|
|
2296
|
-
bg: mix$1(
|
|
2297
|
-
fg: mix$1(
|
|
2321
|
+
bg: mix$1(color2.bg, shades.bg[1]),
|
|
2322
|
+
fg: mix$1(color2.fg, shades.fg[2])
|
|
2298
2323
|
},
|
|
2299
2324
|
skeleton: cardColor.skeleton
|
|
2300
2325
|
};
|
|
@@ -2479,9 +2504,9 @@ function rgbaToRGBA(rgba2) {
|
|
|
2479
2504
|
a: parseFloat(values[3])
|
|
2480
2505
|
};
|
|
2481
2506
|
}
|
|
2482
|
-
function rgbToHex(
|
|
2483
|
-
const r = round(clamp(Math.round(
|
|
2484
|
-
return "a" in
|
|
2507
|
+
function rgbToHex(color2) {
|
|
2508
|
+
const r = round(clamp(Math.round(color2.r), 0, 255)), g = round(clamp(Math.round(color2.g), 0, 255)), b = round(clamp(Math.round(color2.b), 0, 255));
|
|
2509
|
+
return "a" in color2 ? `rgba(${r},${g},${b},${color2.a})` : "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
|
|
2485
2510
|
}
|
|
2486
2511
|
function rgbToHsl({
|
|
2487
2512
|
r,
|
|
@@ -2526,21 +2551,21 @@ function parseHsl(str) {
|
|
|
2526
2551
|
l: parseFloat(res[5])
|
|
2527
2552
|
};
|
|
2528
2553
|
}
|
|
2529
|
-
function parseColor(
|
|
2530
|
-
if (!
|
|
2554
|
+
function parseColor(color2) {
|
|
2555
|
+
if (!color2) return {
|
|
2531
2556
|
r: 0,
|
|
2532
2557
|
g: 0,
|
|
2533
2558
|
b: 0
|
|
2534
2559
|
};
|
|
2535
|
-
if (typeof
|
|
2560
|
+
if (typeof color2 != "string")
|
|
2536
2561
|
throw new Error("parseColor: expected a string");
|
|
2537
|
-
if (isHex(
|
|
2538
|
-
return hexToRgb(
|
|
2539
|
-
if (
|
|
2540
|
-
return hslToRgb(parseHsl(
|
|
2541
|
-
if (
|
|
2542
|
-
return rgbaToRGBA(
|
|
2543
|
-
throw new Error(`parseColor: unexpected color format: "${
|
|
2562
|
+
if (isHex(color2))
|
|
2563
|
+
return hexToRgb(color2);
|
|
2564
|
+
if (color2.startsWith("hsl("))
|
|
2565
|
+
return hslToRgb(parseHsl(color2));
|
|
2566
|
+
if (color2.startsWith("rgba("))
|
|
2567
|
+
return rgbaToRGBA(color2);
|
|
2568
|
+
throw new Error(`parseColor: unexpected color format: "${color2}"`);
|
|
2544
2569
|
}
|
|
2545
2570
|
function getContrastRatio(bg, fg) {
|
|
2546
2571
|
const rgb1 = parseColor(bg), rgb2 = parseColor(fg), c1 = rgb_lrgb(rgb1), c2 = rgb_lrgb(rgb2), l1 = lrgb_luminance(c1), l2 = lrgb_luminance(c2);
|
|
@@ -2559,10 +2584,10 @@ function rgb_lrgb1(v) {
|
|
|
2559
2584
|
function lrgb_luminance([r, g, b]) {
|
|
2560
2585
|
return 0.2126 * r + 0.7152 * g + 0.0722 * b;
|
|
2561
2586
|
}
|
|
2562
|
-
function rgba(
|
|
2563
|
-
if (typeof
|
|
2564
|
-
return `color-mix(in srgb, transparent, ${
|
|
2565
|
-
const rgb = parseColor(
|
|
2587
|
+
function rgba(color2, a) {
|
|
2588
|
+
if (typeof color2 == "string" && color2.startsWith("var("))
|
|
2589
|
+
return `color-mix(in srgb, transparent, ${color2} ${a * 100}%)`;
|
|
2590
|
+
const rgb = parseColor(color2);
|
|
2566
2591
|
return `rgba(${rgb.r},${rgb.g},${rgb.b},${a})`;
|
|
2567
2592
|
}
|
|
2568
2593
|
const COLOR_CONFIG_STATE_KEYS = ["_hue", "bg", "fg", "border", "focusRing", "muted/fg", "accent/fg", "link/fg", "code/bg", "code/fg", "skeleton/from", "skeleton/to", "status/dot", "status/icon"], COLOR_CONFIG_CARD_KEYS = [...COLOR_CONFIG_STATE_KEYS, "_hue", "bg", "fg", "border", "focusRing", "shadow/outline", "shadow/umbra", "shadow/penumbra", "shadow/ambient"], COLOR_CONFIG_BLEND_KEYS = ["_blend"], COLOR_CONFIG_AVATAR_COLORS = ["*", ...THEME_COLOR_AVATAR_COLORS], COLOR_CONFIG_CARD_TONES = ["*", ...THEME_COLOR_CARD_TONES], COLOR_CONFIG_STATE_TONES = ["*", ...THEME_COLOR_STATE_TONES], COLOR_CONFIG_STATES = ["*", ...THEME_COLOR_STATES], COLOR_CONFIG_INPUT_MODES = ["*", ...THEME_COLOR_INPUT_MODES], COLOR_CONFIG_INPUT_STATES = ["*", ...THEME_COLOR_INPUT_STATES];
|
|
@@ -2728,10 +2753,10 @@ function isColorOpacityValue(str) {
|
|
|
2728
2753
|
function is_v2(themeProp) {
|
|
2729
2754
|
return themeProp._version === 2;
|
|
2730
2755
|
}
|
|
2731
|
-
function themeColor_v0_v2_9(
|
|
2732
|
-
if ("neutral" in
|
|
2733
|
-
return
|
|
2734
|
-
const colors2 =
|
|
2756
|
+
function themeColor_v0_v2_9(color2) {
|
|
2757
|
+
if ("neutral" in color2.badge)
|
|
2758
|
+
return color2;
|
|
2759
|
+
const colors2 = color2;
|
|
2735
2760
|
return {
|
|
2736
2761
|
...colors2,
|
|
2737
2762
|
badge: {
|
|
@@ -2985,7 +3010,7 @@ function v0_v2(v0) {
|
|
|
2985
3010
|
const {
|
|
2986
3011
|
avatar,
|
|
2987
3012
|
button,
|
|
2988
|
-
color,
|
|
3013
|
+
color: color2,
|
|
2989
3014
|
container,
|
|
2990
3015
|
fonts: font,
|
|
2991
3016
|
input,
|
|
@@ -3008,24 +3033,24 @@ function v0_v2(v0) {
|
|
|
3008
3033
|
card: defaultThemeConfig.card,
|
|
3009
3034
|
color: {
|
|
3010
3035
|
light: {
|
|
3011
|
-
transparent: themeColor_v0_v2(
|
|
3012
|
-
default: themeColor_v0_v2(
|
|
3013
|
-
neutral: themeColor_v0_v2(
|
|
3014
|
-
primary: themeColor_v0_v2(
|
|
3015
|
-
suggest: themeColor_v0_v2(
|
|
3016
|
-
positive: themeColor_v0_v2(
|
|
3017
|
-
caution: themeColor_v0_v2(
|
|
3018
|
-
critical: themeColor_v0_v2(
|
|
3036
|
+
transparent: themeColor_v0_v2(color2.light.transparent),
|
|
3037
|
+
default: themeColor_v0_v2(color2.light.default),
|
|
3038
|
+
neutral: themeColor_v0_v2(color2.light.transparent),
|
|
3039
|
+
primary: themeColor_v0_v2(color2.light.primary),
|
|
3040
|
+
suggest: themeColor_v0_v2(color2.light.primary),
|
|
3041
|
+
positive: themeColor_v0_v2(color2.light.positive),
|
|
3042
|
+
caution: themeColor_v0_v2(color2.light.caution),
|
|
3043
|
+
critical: themeColor_v0_v2(color2.light.critical)
|
|
3019
3044
|
},
|
|
3020
3045
|
dark: {
|
|
3021
|
-
transparent: themeColor_v0_v2(
|
|
3022
|
-
default: themeColor_v0_v2(
|
|
3023
|
-
neutral: themeColor_v0_v2(
|
|
3024
|
-
primary: themeColor_v0_v2(
|
|
3025
|
-
suggest: themeColor_v0_v2(
|
|
3026
|
-
positive: themeColor_v0_v2(
|
|
3027
|
-
caution: themeColor_v0_v2(
|
|
3028
|
-
critical: themeColor_v0_v2(
|
|
3046
|
+
transparent: themeColor_v0_v2(color2.dark.transparent),
|
|
3047
|
+
default: themeColor_v0_v2(color2.dark.default),
|
|
3048
|
+
neutral: themeColor_v0_v2(color2.dark.transparent),
|
|
3049
|
+
primary: themeColor_v0_v2(color2.dark.primary),
|
|
3050
|
+
suggest: themeColor_v0_v2(color2.dark.primary),
|
|
3051
|
+
positive: themeColor_v0_v2(color2.dark.positive),
|
|
3052
|
+
caution: themeColor_v0_v2(color2.dark.caution),
|
|
3053
|
+
critical: themeColor_v0_v2(color2.dark.critical)
|
|
3029
3054
|
}
|
|
3030
3055
|
},
|
|
3031
3056
|
container,
|
|
@@ -3131,69 +3156,67 @@ function getTheme_v2(theme) {
|
|
|
3131
3156
|
};
|
|
3132
3157
|
return cache.set(theme, v2), v2;
|
|
3133
3158
|
}
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
};
|
|
3199
|
-
//# sourceMappingURL=theme.mjs.map
|
|
3159
|
+
exports.AVATAR_SIZE = AVATAR_SIZE;
|
|
3160
|
+
exports.COLOR_CONFIG_AVATAR_COLORS = COLOR_CONFIG_AVATAR_COLORS;
|
|
3161
|
+
exports.COLOR_CONFIG_BLEND_KEYS = COLOR_CONFIG_BLEND_KEYS;
|
|
3162
|
+
exports.COLOR_CONFIG_CARD_KEYS = COLOR_CONFIG_CARD_KEYS;
|
|
3163
|
+
exports.COLOR_CONFIG_CARD_TONES = COLOR_CONFIG_CARD_TONES;
|
|
3164
|
+
exports.COLOR_CONFIG_INPUT_MODES = COLOR_CONFIG_INPUT_MODES;
|
|
3165
|
+
exports.COLOR_CONFIG_INPUT_STATES = COLOR_CONFIG_INPUT_STATES;
|
|
3166
|
+
exports.COLOR_CONFIG_STATES = COLOR_CONFIG_STATES;
|
|
3167
|
+
exports.COLOR_CONFIG_STATE_KEYS = COLOR_CONFIG_STATE_KEYS;
|
|
3168
|
+
exports.COLOR_CONFIG_STATE_TONES = COLOR_CONFIG_STATE_TONES;
|
|
3169
|
+
exports.CONTAINER = CONTAINER;
|
|
3170
|
+
exports.FONT_CODE_SIZE = FONT_CODE_SIZE;
|
|
3171
|
+
exports.FONT_HEADING_SIZE = FONT_HEADING_SIZE;
|
|
3172
|
+
exports.FONT_LABEL_SIZE = FONT_LABEL_SIZE;
|
|
3173
|
+
exports.FONT_TEXT_SIZE = FONT_TEXT_SIZE;
|
|
3174
|
+
exports.HUES = HUES;
|
|
3175
|
+
exports.RADIUS = RADIUS;
|
|
3176
|
+
exports.SHADOW = SHADOW;
|
|
3177
|
+
exports.SPACE = SPACE;
|
|
3178
|
+
exports.THEME_COLOR_AVATAR_COLORS = THEME_COLOR_AVATAR_COLORS;
|
|
3179
|
+
exports.THEME_COLOR_BLEND_MODES = THEME_COLOR_BLEND_MODES;
|
|
3180
|
+
exports.THEME_COLOR_BUTTON_MODES = THEME_COLOR_BUTTON_MODES;
|
|
3181
|
+
exports.THEME_COLOR_CARD_TONES = THEME_COLOR_CARD_TONES;
|
|
3182
|
+
exports.THEME_COLOR_INPUT_MODES = THEME_COLOR_INPUT_MODES;
|
|
3183
|
+
exports.THEME_COLOR_INPUT_STATES = THEME_COLOR_INPUT_STATES;
|
|
3184
|
+
exports.THEME_COLOR_SCHEMES = THEME_COLOR_SCHEMES;
|
|
3185
|
+
exports.THEME_COLOR_STATES = THEME_COLOR_STATES;
|
|
3186
|
+
exports.THEME_COLOR_STATE_TONES = THEME_COLOR_STATE_TONES;
|
|
3187
|
+
exports.TINTS = TINTS;
|
|
3188
|
+
exports.buildColor_v3 = buildColor_v3;
|
|
3189
|
+
exports.buildTheme = buildTheme;
|
|
3190
|
+
exports.buildTheme_v3 = buildTheme_v3;
|
|
3191
|
+
exports.createColorTheme = createColorTheme;
|
|
3192
|
+
exports.defaultTokens = defaultTokens;
|
|
3193
|
+
exports.getContrastRatio = getContrastRatio;
|
|
3194
|
+
exports.getScopedTheme = getScopedTheme;
|
|
3195
|
+
exports.getTheme_v2 = getTheme_v2;
|
|
3196
|
+
exports.hexToRgb = hexToRgb;
|
|
3197
|
+
exports.hslToRgb = hslToRgb;
|
|
3198
|
+
exports.isColorBlendModeValue = isColorBlendModeValue;
|
|
3199
|
+
exports.isColorButtonMode = isColorButtonMode;
|
|
3200
|
+
exports.isColorConfigBaseKey = isColorConfigBaseKey;
|
|
3201
|
+
exports.isColorConfigBaseTone = isColorConfigBaseTone;
|
|
3202
|
+
exports.isColorConfigBlendKey = isColorConfigBlendKey;
|
|
3203
|
+
exports.isColorConfigStateKey = isColorConfigStateKey;
|
|
3204
|
+
exports.isColorConfigStateTone = isColorConfigStateTone;
|
|
3205
|
+
exports.isColorHueKey = isColorHueKey;
|
|
3206
|
+
exports.isColorOpacityValue = isColorOpacityValue;
|
|
3207
|
+
exports.isColorTintKey = isColorTintKey;
|
|
3208
|
+
exports.isColorTokenValue = isColorTokenValue;
|
|
3209
|
+
exports.isColorValue = isColorValue;
|
|
3210
|
+
exports.mix = mix;
|
|
3211
|
+
exports.multiply = multiply;
|
|
3212
|
+
exports.parseColor = parseColor;
|
|
3213
|
+
exports.parseTokenKey = parseTokenKey;
|
|
3214
|
+
exports.parseTokenValue = parseTokenValue;
|
|
3215
|
+
exports.renderColor = renderColor;
|
|
3216
|
+
exports.resolveTokens = resolveTokens;
|
|
3217
|
+
exports.rgbToHex = rgbToHex;
|
|
3218
|
+
exports.rgbToHsl = rgbToHsl;
|
|
3219
|
+
exports.rgba = rgba;
|
|
3220
|
+
exports.rgbaToRGBA = rgbaToRGBA;
|
|
3221
|
+
exports.screen = screen;
|
|
3222
|
+
//# sourceMappingURL=theme.cjs.map
|