@sudobility/design-components 1.0.11 → 2.0.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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../node_modules/react/cjs/react-jsx-runtime.production.js","../node_modules/react/cjs/react-jsx-runtime.development.js","../node_modules/react/jsx-runtime.js","../src/aurora-background.tsx","../src/badge-designer.tsx","../src/color-picker-advanced.tsx","../src/color-picker.tsx","../src/color-swatch.tsx","../src/gradient-banner.tsx","../src/neumorphic-button.tsx","../src/theme-switcher.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cn } from '@sudobility/components';\n\n/**\n * UauroraUbackground Component\n *\n * A reusable UauroraUbackground component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UauroraUbackground className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/aurora-background}\n */\n\nexport interface UauroraUbackgroundProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UauroraUbackground = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UauroraUbackgroundProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UauroraUbackground'\n >\n {children || 'UauroraUbackground Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UbadgeUdesigner Component\n *\n * A reusable UbadgeUdesigner component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UbadgeUdesigner className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/badge-designer}\n */\n\nexport interface UbadgeUdesignerProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UbadgeUdesigner = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UbadgeUdesignerProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UbadgeUdesigner'\n >\n {children || 'UbadgeUdesigner Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\nexport interface ColorPickerAdvancedProps {\n value: string;\n onChange: (color: string) => void;\n presets?: string[];\n className?: string;\n}\n\nexport const ColorPickerAdvanced = ({\n value,\n onChange,\n presets,\n className,\n}: ColorPickerAdvancedProps) => {\n const defaultPresets = [\n '#000000',\n '#ffffff',\n '#ff0000',\n '#00ff00',\n '#0000ff',\n '#ffff00',\n '#ff00ff',\n '#00ffff',\n ];\n const colors = presets || defaultPresets;\n\n return (\n <div className={cn('space-y-3', className)}>\n <input\n type='color'\n value={value}\n onChange={e => onChange(e.target.value)}\n className='w-full h-12 rounded cursor-pointer'\n />\n <div className='grid grid-cols-8 gap-2'>\n {colors.map(color => (\n <button\n key={color}\n onClick={() => onChange(color)}\n className={cn(\n 'w-8 h-8 rounded border-2',\n value === color ? 'border-blue-500' : 'border-transparent'\n )}\n style={{ backgroundColor: color }}\n />\n ))}\n </div>\n </div>\n );\n};\n","import React, { useState } from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface ColorPickerProps {\n /** Selected color (hex format) */\n value: string;\n /** Change handler */\n onChange: (color: string) => void;\n /** Preset colors */\n presets?: string[];\n /** Show input field */\n showInput?: boolean;\n /** Show opacity slider */\n showOpacity?: boolean;\n /** Additional className */\n className?: string;\n}\n\n/**\n * ColorPicker Component\n *\n * Color picker with preset colors and custom input.\n * Supports hex colors and opacity.\n *\n * @example\n * ```tsx\n * <ColorPicker\n * value={color}\n * onChange={setColor}\n * showInput\n * />\n * ```\n *\n * @example\n * ```tsx\n * <ColorPicker\n * value={brandColor}\n * onChange={handleColorChange}\n * presets={['#FF6B6B', '#4ECDC4', '#45B7D1', '#FFA07A']}\n * showOpacity\n * />\n * ```\n */\nexport const ColorPicker: React.FC<ColorPickerProps> = ({\n value,\n onChange,\n presets = [\n '#000000',\n '#FFFFFF',\n '#FF6B6B',\n '#4ECDC4',\n '#45B7D1',\n '#FFA07A',\n '#F7DC6F',\n '#BB8FCE',\n '#85C1E2',\n '#F8B500',\n '#52B788',\n '#E63946',\n '#1D3557',\n '#457B9D',\n '#A8DADC',\n '#F4A261',\n '#264653',\n '#2A9D8F',\n ],\n showInput = true,\n showOpacity = false,\n className,\n}) => {\n const [inputValue, setInputValue] = useState(value);\n const [opacity, setOpacity] = useState(100);\n\n const handleColorClick = (color: string) => {\n onChange(color);\n setInputValue(color);\n };\n\n const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n const newValue = e.target.value;\n setInputValue(newValue);\n\n // Validate hex color\n if (/^#[0-9A-F]{6}$/i.test(newValue)) {\n onChange(newValue);\n }\n };\n\n const handleOpacityChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n setOpacity(Number(e.target.value));\n };\n\n const hexToRgba = (hex: string, alpha: number) => {\n const r = parseInt(hex.slice(1, 3), 16);\n const g = parseInt(hex.slice(3, 5), 16);\n const b = parseInt(hex.slice(5, 7), 16);\n return `rgba(${r}, ${g}, ${b}, ${alpha / 100})`;\n };\n\n const displayColor = showOpacity ? hexToRgba(value, opacity) : value;\n\n return (\n <div className={cn('bg-white dark:bg-gray-900 rounded-lg p-4', className)}>\n {/* Current color preview */}\n <div className='mb-4'>\n <div className='flex items-center gap-3'>\n <div\n className='w-16 h-16 rounded-lg border-2 border-gray-200 dark:border-gray-700 shadow-sm'\n style={{ backgroundColor: displayColor }}\n />\n <div className='flex-1'>\n <p className='text-sm font-medium text-gray-900 dark:text-white'>\n Selected Color\n </p>\n <p className='text-xs text-gray-600 dark:text-gray-400 mt-1 font-mono'>\n {value}\n {showOpacity && ` (${opacity}%)`}\n </p>\n </div>\n </div>\n </div>\n\n {/* Preset colors */}\n <div className='mb-4'>\n <p className='text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Preset Colors\n </p>\n <div className='grid grid-cols-6 gap-2'>\n {presets.map(preset => (\n <button\n key={preset}\n onClick={() => handleColorClick(preset)}\n className={cn(\n 'w-full aspect-square rounded-md border-2 transition-all hover:scale-110',\n preset === value\n ? 'border-blue-500 dark:border-blue-400 ring-2 ring-blue-200 dark:ring-blue-800'\n : 'border-gray-200 dark:border-gray-700'\n )}\n style={{ backgroundColor: preset }}\n aria-label={`Select color ${preset}`}\n />\n ))}\n </div>\n </div>\n\n {/* Custom color input */}\n {showInput && (\n <div className='mb-4'>\n <label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Custom Color (Hex)\n </label>\n <div className='flex gap-2'>\n <input\n type='text'\n value={inputValue}\n onChange={handleInputChange}\n placeholder='#000000'\n className='flex-1 px-3 py-2 text-sm font-mono bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-400'\n />\n <input\n type='color'\n value={value}\n onChange={e => handleColorClick(e.target.value)}\n className='w-12 h-10 rounded-md cursor-pointer'\n />\n </div>\n </div>\n )}\n\n {/* Opacity slider */}\n {showOpacity && (\n <div>\n <label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Opacity: {opacity}%\n </label>\n <input\n type='range'\n min='0'\n max='100'\n value={opacity}\n onChange={handleOpacityChange}\n className='w-full h-2 bg-gray-200 dark:bg-gray-700 rounded-lg appearance-none cursor-pointer'\n />\n </div>\n )}\n </div>\n );\n};\n","import React, { useState } from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface Color {\n /** Color hex value */\n hex: string;\n /** Color name */\n name?: string;\n}\n\nexport interface ColorSwatchProps {\n /** Colors to display */\n colors: Color[] | string[];\n /** Selected color */\n selectedColor?: string;\n /** Color change handler */\n onColorSelect?: (color: string) => void;\n /** Swatch size */\n size?: 'sm' | 'md' | 'lg';\n /** Show color names */\n showNames?: boolean;\n /** Show copy button */\n showCopy?: boolean;\n /** Additional className */\n className?: string;\n}\n\n/**\n * ColorSwatch Component\n *\n * Color palette display with selection and copy functionality.\n * Useful for color pickers and design systems.\n *\n * @example\n * ```tsx\n * <ColorSwatch\n * colors={['#FF0000', '#00FF00', '#0000FF']}\n * selectedColor={activeColor}\n * onColorSelect={setActiveColor}\n * showCopy\n * />\n * ```\n */\nexport const ColorSwatch: React.FC<ColorSwatchProps> = ({\n colors,\n selectedColor,\n onColorSelect,\n size = 'md',\n showNames = false,\n showCopy = false,\n className,\n}) => {\n const [copiedColor, setCopiedColor] = useState<string | null>(null);\n\n const sizeClasses = {\n sm: 'w-8 h-8',\n md: 'w-12 h-12',\n lg: 'w-16 h-16',\n };\n\n const normalizeColors = (): Color[] => {\n return colors.map(color =>\n typeof color === 'string' ? { hex: color } : color\n );\n };\n\n const handleCopy = async (hex: string, e: React.MouseEvent) => {\n e.stopPropagation();\n await navigator.clipboard.writeText(hex);\n setCopiedColor(hex);\n setTimeout(() => setCopiedColor(null), 2000);\n };\n\n const normalizedColors = normalizeColors();\n\n return (\n <div className={cn('flex flex-wrap gap-3', className)}>\n {normalizedColors.map((color, index) => {\n const isSelected = selectedColor === color.hex;\n const isCopied = copiedColor === color.hex;\n\n return (\n <div key={index} className='flex flex-col items-center gap-2'>\n <button\n onClick={() => onColorSelect?.(color.hex)}\n className={cn(\n 'rounded-lg transition-all relative group',\n sizeClasses[size],\n isSelected &&\n 'ring-2 ring-blue-500 ring-offset-2 dark:ring-offset-gray-900',\n !isSelected && 'hover:scale-110'\n )}\n style={{ backgroundColor: color.hex }}\n aria-label={color.name || color.hex}\n >\n {showCopy && (\n <div\n className='absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity bg-black/50 rounded-lg'\n onClick={e => handleCopy(color.hex, e)}\n >\n {isCopied ? (\n <svg\n className='w-4 h-4 text-white'\n fill='none'\n stroke='currentColor'\n viewBox='0 0 24 24'\n >\n <path\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M5 13l4 4L19 7'\n />\n </svg>\n ) : (\n <svg\n className='w-4 h-4 text-white'\n fill='none'\n stroke='currentColor'\n viewBox='0 0 24 24'\n >\n <path\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z'\n />\n </svg>\n )}\n </div>\n )}\n </button>\n\n {showNames && (\n <div className='text-center'>\n {color.name && (\n <p className='text-xs font-medium text-gray-900 dark:text-white'>\n {color.name}\n </p>\n )}\n <p className='text-xs text-gray-600 dark:text-gray-400 font-mono'>\n {color.hex}\n </p>\n </div>\n )}\n </div>\n );\n })}\n </div>\n );\n};\n","import React from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface GradientBannerProps {\n /** Main content of the banner */\n children: React.ReactNode;\n /** Gradient color variant */\n variant?:\n | 'blue-purple'\n | 'green-blue'\n | 'orange-red'\n | 'gray'\n | 'light'\n | 'custom';\n /** Custom gradient classes (when variant is 'custom') */\n gradientClasses?: string;\n /** Size/padding variant */\n size?: 'sm' | 'md' | 'lg';\n /** Border radius */\n rounded?: 'md' | 'lg' | 'xl' | '2xl';\n /** Show border */\n bordered?: boolean;\n /** Border color classes (when bordered is true) */\n borderClasses?: string;\n /** Additional className for the container */\n className?: string;\n}\n\n/**\n * GradientBanner Component\n *\n * A versatile banner component with gradient backgrounds for highlighting\n * important content, CTAs, or feature sections.\n *\n * @example\n * ```tsx\n * <GradientBanner variant=\"blue-purple\" size=\"lg\">\n * <h3 className={textVariants.heading.h3()}>Special Offer</h3>\n * <p>Get started with Web3 Email today!</p>\n * </GradientBanner>\n * ```\n *\n * @example\n * ```tsx\n * // Light variant with border\n * <GradientBanner\n * variant=\"light\"\n * bordered\n * borderClasses=\"border-2 border-blue-200\"\n * >\n * <Alert variant=\"info\">Important information</Alert>\n * </GradientBanner>\n * ```\n */\nexport const GradientBanner: React.FC<GradientBannerProps> = ({\n children,\n variant = 'blue-purple',\n gradientClasses,\n size = 'md',\n rounded = '2xl',\n bordered = false,\n borderClasses = 'border border-white/20',\n className,\n}) => {\n // Gradient color variants\n const gradientVariants = {\n 'blue-purple': 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n 'green-blue': 'bg-gradient-to-r from-green-600 to-blue-600 text-white',\n 'orange-red': 'bg-gradient-to-r from-orange-600 to-red-600 text-white',\n gray: 'bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white',\n light:\n 'bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100',\n custom:\n gradientClasses ||\n 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n };\n\n // Size/padding configurations\n const sizeClasses = {\n sm: 'p-4',\n md: 'p-6',\n lg: 'p-8',\n };\n\n // Border radius configurations\n const roundedClasses = {\n md: 'rounded-md',\n lg: 'rounded-lg',\n xl: 'rounded-xl',\n '2xl': 'rounded-2xl',\n };\n\n return (\n <div\n className={cn(\n gradientVariants[variant],\n sizeClasses[size],\n roundedClasses[rounded],\n bordered && borderClasses,\n className\n )}\n >\n {children}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UneumorphicUbutton Component\n *\n * A reusable UneumorphicUbutton component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UneumorphicUbutton className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/neumorphic-button}\n */\n\nexport interface UneumorphicUbuttonProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UneumorphicUbutton = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UneumorphicUbuttonProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UneumorphicUbutton'\n >\n {children || 'UneumorphicUbutton Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UthemeUswitcher Component\n *\n * A reusable UthemeUswitcher component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UthemeUswitcher className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/theme-switcher}\n */\n\nexport interface UthemeUswitcherProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UthemeUswitcher = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UthemeUswitcherProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UthemeUswitcher'\n >\n {children || 'UthemeUswitcher Component'}\n </div>\n );\n};\n"],"names":["REACT_ELEMENT_TYPE","REACT_FRAGMENT_TYPE","jsxProd","type","config","maybeKey","key","propName","reactJsxRuntime_production","getComponentNameFromType","REACT_CLIENT_REFERENCE","REACT_PROFILER_TYPE","REACT_STRICT_MODE_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_ACTIVITY_TYPE","REACT_PORTAL_TYPE","REACT_CONTEXT_TYPE","REACT_CONSUMER_TYPE","REACT_FORWARD_REF_TYPE","innerType","REACT_MEMO_TYPE","REACT_LAZY_TYPE","testStringCoercion","value","checkKeyStringCoercion","JSCompiler_inline_result","JSCompiler_temp_const","JSCompiler_inline_result$jscomp$0","getTaskName","name","getOwner","dispatcher","ReactSharedInternals","UnknownOwner","hasValidKey","hasOwnProperty","getter","defineKeyPropWarningGetter","props","displayName","warnAboutAccessingKey","specialPropKeyWarningShown","elementRefGetterWithDeprecationWarning","componentName","didWarnAboutElementRef","ReactElement","owner","debugStack","debugTask","refProp","jsxDEVImpl","isStaticChildren","children","isArrayImpl","validateChildKeys","keys","k","didWarnAboutKeySpread","node","isValidElement","object","React","require$$0","createTask","callStackForError","unknownOwnerDebugStack","unknownOwnerDebugTask","reactJsxRuntime_development","trackActualOwner","jsxRuntimeModule","require$$1","UauroraUbackground","className","disabled","onClick","jsx","cn","UbadgeUdesigner","ColorPickerAdvanced","onChange","presets","colors","e","color","ColorPicker","showInput","showOpacity","inputValue","setInputValue","useState","opacity","setOpacity","handleColorClick","handleInputChange","newValue","handleOpacityChange","displayColor","hex","alpha","r","g","b","jsxs","preset","ColorSwatch","selectedColor","onColorSelect","size","showNames","showCopy","copiedColor","setCopiedColor","sizeClasses","normalizeColors","handleCopy","normalizedColors","index","isSelected","isCopied","GradientBanner","variant","gradientClasses","rounded","bordered","borderClasses","gradientVariants","roundedClasses","UneumorphicUbutton","UthemeUswitcher"],"mappings":"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","x_google_ignoreList":[0,1,2]}
1
+ {"version":3,"file":"index.esm.js","sources":["../node_modules/react/cjs/react-jsx-runtime.production.js","../node_modules/react/cjs/react-jsx-runtime.development.js","../node_modules/react/jsx-runtime.js","../src/aurora-background.tsx","../src/gradient-banner.tsx","../src/neumorphic-button.tsx","../src/theme-switcher.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cn } from '@sudobility/components';\n\n/**\n * UauroraUbackground Component\n *\n * A reusable UauroraUbackground component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UauroraUbackground className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/aurora-background}\n */\n\nexport interface UauroraUbackgroundProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UauroraUbackground = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UauroraUbackgroundProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UauroraUbackground'\n >\n {children || 'UauroraUbackground Component'}\n </div>\n );\n};\n","import React from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface GradientBannerProps {\n /** Main content of the banner */\n children: React.ReactNode;\n /** Gradient color variant */\n variant?:\n | 'blue-purple'\n | 'green-blue'\n | 'orange-red'\n | 'gray'\n | 'light'\n | 'custom';\n /** Custom gradient classes (when variant is 'custom') */\n gradientClasses?: string;\n /** Size/padding variant */\n size?: 'sm' | 'md' | 'lg';\n /** Border radius */\n rounded?: 'md' | 'lg' | 'xl' | '2xl';\n /** Show border */\n bordered?: boolean;\n /** Border color classes (when bordered is true) */\n borderClasses?: string;\n /** Additional className for the container */\n className?: string;\n}\n\n/**\n * GradientBanner Component\n *\n * A versatile banner component with gradient backgrounds for highlighting\n * important content, CTAs, or feature sections.\n *\n * @example\n * ```tsx\n * <GradientBanner variant=\"blue-purple\" size=\"lg\">\n * <h3 className={textVariants.heading.h3()}>Special Offer</h3>\n * <p>Get started with Web3 Email today!</p>\n * </GradientBanner>\n * ```\n *\n * @example\n * ```tsx\n * // Light variant with border\n * <GradientBanner\n * variant=\"light\"\n * bordered\n * borderClasses=\"border-2 border-blue-200\"\n * >\n * <Alert variant=\"info\">Important information</Alert>\n * </GradientBanner>\n * ```\n */\nexport const GradientBanner: React.FC<GradientBannerProps> = ({\n children,\n variant = 'blue-purple',\n gradientClasses,\n size = 'md',\n rounded = '2xl',\n bordered = false,\n borderClasses = 'border border-white/20',\n className,\n}) => {\n // Gradient color variants\n const gradientVariants = {\n 'blue-purple': 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n 'green-blue': 'bg-gradient-to-r from-green-600 to-blue-600 text-white',\n 'orange-red': 'bg-gradient-to-r from-orange-600 to-red-600 text-white',\n gray: 'bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white',\n light:\n 'bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100',\n custom:\n gradientClasses ||\n 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n };\n\n // Size/padding configurations\n const sizeClasses = {\n sm: 'p-4',\n md: 'p-6',\n lg: 'p-8',\n };\n\n // Border radius configurations\n const roundedClasses = {\n md: 'rounded-md',\n lg: 'rounded-lg',\n xl: 'rounded-xl',\n '2xl': 'rounded-2xl',\n };\n\n return (\n <div\n className={cn(\n gradientVariants[variant],\n sizeClasses[size],\n roundedClasses[rounded],\n bordered && borderClasses,\n className\n )}\n >\n {children}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UneumorphicUbutton Component\n *\n * A reusable UneumorphicUbutton component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UneumorphicUbutton className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/neumorphic-button}\n */\n\nexport interface UneumorphicUbuttonProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UneumorphicUbutton = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UneumorphicUbuttonProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UneumorphicUbutton'\n >\n {children || 'UneumorphicUbutton Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UthemeUswitcher Component\n *\n * A reusable UthemeUswitcher component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UthemeUswitcher className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/theme-switcher}\n */\n\nexport interface UthemeUswitcherProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UthemeUswitcher = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UthemeUswitcherProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UthemeUswitcher'\n >\n {children || 'UthemeUswitcher Component'}\n </div>\n );\n};\n"],"names":["REACT_ELEMENT_TYPE","REACT_FRAGMENT_TYPE","jsxProd","type","config","maybeKey","key","propName","reactJsxRuntime_production","getComponentNameFromType","REACT_CLIENT_REFERENCE","REACT_PROFILER_TYPE","REACT_STRICT_MODE_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_ACTIVITY_TYPE","REACT_PORTAL_TYPE","REACT_CONTEXT_TYPE","REACT_CONSUMER_TYPE","REACT_FORWARD_REF_TYPE","innerType","REACT_MEMO_TYPE","REACT_LAZY_TYPE","testStringCoercion","value","checkKeyStringCoercion","JSCompiler_inline_result","JSCompiler_temp_const","JSCompiler_inline_result$jscomp$0","getTaskName","name","getOwner","dispatcher","ReactSharedInternals","UnknownOwner","hasValidKey","hasOwnProperty","getter","defineKeyPropWarningGetter","props","displayName","warnAboutAccessingKey","specialPropKeyWarningShown","elementRefGetterWithDeprecationWarning","componentName","didWarnAboutElementRef","ReactElement","owner","debugStack","debugTask","refProp","jsxDEVImpl","isStaticChildren","children","isArrayImpl","validateChildKeys","keys","k","didWarnAboutKeySpread","node","isValidElement","object","React","require$$0","createTask","callStackForError","unknownOwnerDebugStack","unknownOwnerDebugTask","reactJsxRuntime_development","trackActualOwner","jsxRuntimeModule","require$$1","UauroraUbackground","className","disabled","onClick","jsx","cn","GradientBanner","variant","gradientClasses","size","rounded","bordered","borderClasses","gradientVariants","sizeClasses","roundedClasses","UneumorphicUbutton","UthemeUswitcher"],"mappings":"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","x_google_ignoreList":[0,1,2]}
package/dist/index.umd.js CHANGED
@@ -1,7 +1,7 @@
1
- (function(b,v){typeof exports=="object"&&typeof module<"u"?v(exports,require("react"),require("@sudobility/components")):typeof define=="function"&&define.amd?define(["exports","react","@sudobility/components"],v):(b=typeof globalThis<"u"?globalThis:b||self,v(b["design-components"]={},b.React,b.SudobilityComponents))})(this,(function(b,v,p){"use strict";var S={exports:{}},R={};var L;function q(){if(L)return R;L=1;var a=Symbol.for("react.transitional.element"),l=Symbol.for("react.fragment");function n(c,d,g){var m=null;if(g!==void 0&&(m=""+g),d.key!==void 0&&(m=""+d.key),"key"in d){g={};for(var h in d)h!=="key"&&(g[h]=d[h])}else g=d;return d=g.ref,{$$typeof:a,type:c,key:m,ref:d!==void 0?d:null,props:g}}return R.Fragment=l,R.jsx=n,R.jsxs=n,R}var N={};var $;function X(){return $||($=1,process.env.NODE_ENV!=="production"&&(function(){function a(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===ue?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case y:return"Fragment";case P:return"Profiler";case T:return"StrictMode";case le:return"Suspense";case ie:return"SuspenseList";case de:return"Activity"}if(typeof e=="object")switch(typeof e.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case s:return"Portal";case oe:return e.displayName||"Context";case O:return(e._context.displayName||"Context")+".Consumer";case se:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case ce:return t=e.displayName||null,t!==null?t:a(e.type)||"Memo";case U:t=e._payload,e=e._init;try{return a(e(t))}catch{}}return null}function l(e){return""+e}function n(e){try{l(e);var t=!1}catch{t=!0}if(t){t=console;var i=t.error,u=typeof Symbol=="function"&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object";return i.call(t,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",u),l(e)}}function c(e){if(e===y)return"<>";if(typeof e=="object"&&e!==null&&e.$$typeof===U)return"<...>";try{var t=a(e);return t?"<"+t+">":"<...>"}catch{return"<...>"}}function d(){var e=F.A;return e===null?null:e.getOwner()}function g(){return Error("react-stack-top-frame")}function m(e){if(M.call(e,"key")){var t=Object.getOwnPropertyDescriptor(e,"key").get;if(t&&t.isReactWarning)return!1}return e.key!==void 0}function h(e,t){function i(){V||(V=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",t))}i.isReactWarning=!0,Object.defineProperty(e,"key",{get:i,configurable:!0})}function x(){var e=a(this.type);return W[e]||(W[e]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),e=this.props.ref,e!==void 0?e:null}function E(e,t,i,u,A,I){var f=i.ref;return e={$$typeof:w,type:e,key:t,props:i,_owner:u},(f!==void 0?f:null)!==null?Object.defineProperty(e,"ref",{enumerable:!1,get:x}):Object.defineProperty(e,"ref",{enumerable:!1,value:null}),e._store={},Object.defineProperty(e._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(e,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(e,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:A}),Object.defineProperty(e,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:I}),Object.freeze&&(Object.freeze(e.props),Object.freeze(e)),e}function k(e,t,i,u,A,I){var f=t.children;if(f!==void 0)if(u)if(fe(f)){for(u=0;u<f.length;u++)j(f[u]);Object.freeze&&Object.freeze(f)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else j(f);if(M.call(t,"key")){f=a(e);var C=Object.keys(t).filter(function(ge){return ge!=="key"});u=0<C.length?"{key: someKey, "+C.join(": ..., ")+": ...}":"{key: someKey}",J[f+u]||(C=0<C.length?"{"+C.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
1
+ (function(d,g){typeof exports=="object"&&typeof module<"u"?g(exports,require("react"),require("@sudobility/components")):typeof define=="function"&&define.amd?define(["exports","react","@sudobility/components"],g):(d=typeof globalThis<"u"?globalThis:d||self,g(d["design-components"]={},d.React,d.SudobilityComponents))})(this,(function(d,g,_){"use strict";var E={exports:{}},p={};var U;function V(){if(U)return p;U=1;var l=Symbol.for("react.transitional.element"),i=Symbol.for("react.fragment");function a(u,s,c){var f=null;if(c!==void 0&&(f=""+c),s.key!==void 0&&(f=""+s.key),"key"in s){c={};for(var b in s)b!=="key"&&(c[b]=s[b])}else c=s;return s=c.ref,{$$typeof:l,type:u,key:f,ref:s!==void 0?s:null,props:c}}return p.Fragment=i,p.jsx=a,p.jsxs=a,p}var v={};var N;function z(){return N||(N=1,process.env.NODE_ENV!=="production"&&(function(){function l(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===ue?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case x:return"Fragment";case K:return"Profiler";case Q:return"StrictMode";case oe:return"Suspense";case ne:return"SuspenseList";case le:return"Activity"}if(typeof e=="object")switch(typeof e.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case Z:return"Portal";case re:return e.displayName||"Context";case ee:return(e._context.displayName||"Context")+".Consumer";case te:var r=e.render;return e=e.displayName,e||(e=r.displayName||r.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case ae:return r=e.displayName||null,r!==null?r:l(e.type)||"Memo";case O:r=e._payload,e=e._init;try{return l(e(r))}catch{}}return null}function i(e){return""+e}function a(e){try{i(e);var r=!1}catch{r=!0}if(r){r=console;var t=r.error,o=typeof Symbol=="function"&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object";return t.call(r,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",o),i(e)}}function u(e){if(e===x)return"<>";if(typeof e=="object"&&e!==null&&e.$$typeof===O)return"<...>";try{var r=l(e);return r?"<"+r+">":"<...>"}catch{return"<...>"}}function s(){var e=S.A;return e===null?null:e.getOwner()}function c(){return Error("react-stack-top-frame")}function f(e){if(F.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return e.key!==void 0}function b(e,r){function t(){D||(D=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",r))}t.isReactWarning=!0,Object.defineProperty(e,"key",{get:t,configurable:!0})}function T(){var e=l(this.type);return M[e]||(M[e]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),e=this.props.ref,e!==void 0?e:null}function w(e,r,t,o,R,A){var n=t.ref;return e={$$typeof:$,type:e,key:r,props:t,_owner:o},(n!==void 0?n:null)!==null?Object.defineProperty(e,"ref",{enumerable:!1,get:T}):Object.defineProperty(e,"ref",{enumerable:!1,value:null}),e._store={},Object.defineProperty(e._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(e,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(e,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:R}),Object.defineProperty(e,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:A}),Object.freeze&&(Object.freeze(e.props),Object.freeze(e)),e}function k(e,r,t,o,R,A){var n=r.children;if(n!==void 0)if(o)if(se(n)){for(o=0;o<n.length;o++)Y(n[o]);Object.freeze&&Object.freeze(n)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else Y(n);if(F.call(r,"key")){n=l(e);var m=Object.keys(r).filter(function(ie){return ie!=="key"});o=0<m.length?"{key: someKey, "+m.join(": ..., ")+": ...}":"{key: someKey}",q[n+o]||(m=0<m.length?"{"+m.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
2
2
  let props = %s;
3
3
  <%s {...props} />
4
4
  React keys must be passed directly to JSX without using spread:
5
5
  let props = %s;
6
- <%s key={someKey} {...props} />`,u,f,C,f),J[f+u]=!0)}if(f=null,i!==void 0&&(n(i),f=""+i),m(t)&&(n(t.key),f=""+t.key),"key"in t){i={};for(var Y in t)Y!=="key"&&(i[Y]=t[Y])}else i=t;return f&&h(i,typeof e=="function"?e.displayName||e.name||"Unknown":e),E(e,f,i,d(),A,I)}function j(e){_(e)?e._store&&(e._store.validated=1):typeof e=="object"&&e!==null&&e.$$typeof===U&&(e._payload.status==="fulfilled"?_(e._payload.value)&&e._payload.value._store&&(e._payload.value._store.validated=1):e._store&&(e._store.validated=1))}function _(e){return typeof e=="object"&&e!==null&&e.$$typeof===w}var o=v,w=Symbol.for("react.transitional.element"),s=Symbol.for("react.portal"),y=Symbol.for("react.fragment"),T=Symbol.for("react.strict_mode"),P=Symbol.for("react.profiler"),O=Symbol.for("react.consumer"),oe=Symbol.for("react.context"),se=Symbol.for("react.forward_ref"),le=Symbol.for("react.suspense"),ie=Symbol.for("react.suspense_list"),ce=Symbol.for("react.memo"),U=Symbol.for("react.lazy"),de=Symbol.for("react.activity"),ue=Symbol.for("react.client.reference"),F=o.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,M=Object.prototype.hasOwnProperty,fe=Array.isArray,D=console.createTask?console.createTask:function(){return null};o={react_stack_bottom_frame:function(e){return e()}};var V,W={},z=o.react_stack_bottom_frame.bind(o,g)(),G=D(c(g)),J={};N.Fragment=y,N.jsx=function(e,t,i){var u=1e4>F.recentlyCreatedOwnerStacks++;return k(e,t,i,!1,u?Error("react-stack-top-frame"):z,u?D(c(e)):G)},N.jsxs=function(e,t,i){var u=1e4>F.recentlyCreatedOwnerStacks++;return k(e,t,i,!0,u?Error("react-stack-top-frame"):z,u?D(c(e)):G)}})()),N}var B;function H(){return B||(B=1,process.env.NODE_ENV==="production"?S.exports=q():S.exports=X()),S.exports}var r=H();const Z=({className:a,children:l,disabled:n=!1,onClick:c})=>r.jsx("div",{className:p.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",n&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",a),onClick:n?void 0:c,role:"region","aria-label":"UauroraUbackground",children:l||"UauroraUbackground Component"}),Q=({className:a,children:l,disabled:n=!1,onClick:c})=>r.jsx("div",{className:p.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",n&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",a),onClick:n?void 0:c,role:"region","aria-label":"UbadgeUdesigner",children:l||"UbadgeUdesigner Component"}),K=({value:a,onChange:l,presets:n,className:c})=>{const g=n||["#000000","#ffffff","#ff0000","#00ff00","#0000ff","#ffff00","#ff00ff","#00ffff"];return r.jsxs("div",{className:p.cn("space-y-3",c),children:[r.jsx("input",{type:"color",value:a,onChange:m=>l(m.target.value),className:"w-full h-12 rounded cursor-pointer"}),r.jsx("div",{className:"grid grid-cols-8 gap-2",children:g.map(m=>r.jsx("button",{onClick:()=>l(m),className:p.cn("w-8 h-8 rounded border-2",a===m?"border-blue-500":"border-transparent"),style:{backgroundColor:m}},m))})]})},ee=({value:a,onChange:l,presets:n=["#000000","#FFFFFF","#FF6B6B","#4ECDC4","#45B7D1","#FFA07A","#F7DC6F","#BB8FCE","#85C1E2","#F8B500","#52B788","#E63946","#1D3557","#457B9D","#A8DADC","#F4A261","#264653","#2A9D8F"],showInput:c=!0,showOpacity:d=!1,className:g})=>{const[m,h]=v.useState(a),[x,E]=v.useState(100),k=s=>{l(s),h(s)},j=s=>{const y=s.target.value;h(y),/^#[0-9A-F]{6}$/i.test(y)&&l(y)},_=s=>{E(Number(s.target.value))},w=d?((s,y)=>{const T=parseInt(s.slice(1,3),16),P=parseInt(s.slice(3,5),16),O=parseInt(s.slice(5,7),16);return`rgba(${T}, ${P}, ${O}, ${y/100})`})(a,x):a;return r.jsxs("div",{className:p.cn("bg-white dark:bg-gray-900 rounded-lg p-4",g),children:[r.jsx("div",{className:"mb-4",children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-16 h-16 rounded-lg border-2 border-gray-200 dark:border-gray-700 shadow-sm",style:{backgroundColor:w}}),r.jsxs("div",{className:"flex-1",children:[r.jsx("p",{className:"text-sm font-medium text-gray-900 dark:text-white",children:"Selected Color"}),r.jsxs("p",{className:"text-xs text-gray-600 dark:text-gray-400 mt-1 font-mono",children:[a,d&&` (${x}%)`]})]})]})}),r.jsxs("div",{className:"mb-4",children:[r.jsx("p",{className:"text-sm font-medium text-gray-700 dark:text-gray-300 mb-2",children:"Preset Colors"}),r.jsx("div",{className:"grid grid-cols-6 gap-2",children:n.map(s=>r.jsx("button",{onClick:()=>k(s),className:p.cn("w-full aspect-square rounded-md border-2 transition-all hover:scale-110",s===a?"border-blue-500 dark:border-blue-400 ring-2 ring-blue-200 dark:ring-blue-800":"border-gray-200 dark:border-gray-700"),style:{backgroundColor:s},"aria-label":`Select color ${s}`},s))})]}),c&&r.jsxs("div",{className:"mb-4",children:[r.jsx("label",{className:"block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2",children:"Custom Color (Hex)"}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx("input",{type:"text",value:m,onChange:j,placeholder:"#000000",className:"flex-1 px-3 py-2 text-sm font-mono bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-400"}),r.jsx("input",{type:"color",value:a,onChange:s=>k(s.target.value),className:"w-12 h-10 rounded-md cursor-pointer"})]})]}),d&&r.jsxs("div",{children:[r.jsxs("label",{className:"block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2",children:["Opacity: ",x,"%"]}),r.jsx("input",{type:"range",min:"0",max:"100",value:x,onChange:_,className:"w-full h-2 bg-gray-200 dark:bg-gray-700 rounded-lg appearance-none cursor-pointer"})]})]})},re=({colors:a,selectedColor:l,onColorSelect:n,size:c="md",showNames:d=!1,showCopy:g=!1,className:m})=>{const[h,x]=v.useState(null),E={sm:"w-8 h-8",md:"w-12 h-12",lg:"w-16 h-16"},k=()=>a.map(o=>typeof o=="string"?{hex:o}:o),j=async(o,w)=>{w.stopPropagation(),await navigator.clipboard.writeText(o),x(o),setTimeout(()=>x(null),2e3)},_=k();return r.jsx("div",{className:p.cn("flex flex-wrap gap-3",m),children:_.map((o,w)=>{const s=l===o.hex,y=h===o.hex;return r.jsxs("div",{className:"flex flex-col items-center gap-2",children:[r.jsx("button",{onClick:()=>n?.(o.hex),className:p.cn("rounded-lg transition-all relative group",E[c],s&&"ring-2 ring-blue-500 ring-offset-2 dark:ring-offset-gray-900",!s&&"hover:scale-110"),style:{backgroundColor:o.hex},"aria-label":o.name||o.hex,children:g&&r.jsx("div",{className:"absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity bg-black/50 rounded-lg",onClick:T=>j(o.hex,T),children:y?r.jsx("svg",{className:"w-4 h-4 text-white",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:r.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M5 13l4 4L19 7"})}):r.jsx("svg",{className:"w-4 h-4 text-white",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:r.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"})})})}),d&&r.jsxs("div",{className:"text-center",children:[o.name&&r.jsx("p",{className:"text-xs font-medium text-gray-900 dark:text-white",children:o.name}),r.jsx("p",{className:"text-xs text-gray-600 dark:text-gray-400 font-mono",children:o.hex})]})]},w)})})},te=({children:a,variant:l="blue-purple",gradientClasses:n,size:c="md",rounded:d="2xl",bordered:g=!1,borderClasses:m="border border-white/20",className:h})=>{const x={"blue-purple":"bg-gradient-to-r from-blue-600 to-purple-600 text-white","green-blue":"bg-gradient-to-r from-green-600 to-blue-600 text-white","orange-red":"bg-gradient-to-r from-orange-600 to-red-600 text-white",gray:"bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white",light:"bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100",custom:n||"bg-gradient-to-r from-blue-600 to-purple-600 text-white"},E={sm:"p-4",md:"p-6",lg:"p-8"},k={md:"rounded-md",lg:"rounded-lg",xl:"rounded-xl","2xl":"rounded-2xl"};return r.jsx("div",{className:p.cn(x[l],E[c],k[d],g&&m,h),children:a})},ae=({className:a,children:l,disabled:n=!1,onClick:c})=>r.jsx("div",{className:p.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",n&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",a),onClick:n?void 0:c,role:"region","aria-label":"UneumorphicUbutton",children:l||"UneumorphicUbutton Component"}),ne=({className:a,children:l,disabled:n=!1,onClick:c})=>r.jsx("div",{className:p.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",n&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",a),onClick:n?void 0:c,role:"region","aria-label":"UthemeUswitcher",children:l||"UthemeUswitcher Component"});b.ColorPicker=ee,b.ColorPickerAdvanced=K,b.ColorSwatch=re,b.GradientBanner=te,b.UauroraUbackground=Z,b.UbadgeUdesigner=Q,b.UneumorphicUbutton=ae,b.UthemeUswitcher=ne,Object.defineProperty(b,Symbol.toStringTag,{value:"Module"})}));
6
+ <%s key={someKey} {...props} />`,o,n,m,n),q[n+o]=!0)}if(n=null,t!==void 0&&(a(t),n=""+t),f(r)&&(a(r.key),n=""+r.key),"key"in r){t={};for(var P in r)P!=="key"&&(t[P]=r[P])}else t=r;return n&&b(t,typeof e=="function"?e.displayName||e.name||"Unknown":e),w(e,n,t,s(),R,A)}function Y(e){I(e)?e._store&&(e._store.validated=1):typeof e=="object"&&e!==null&&e.$$typeof===O&&(e._payload.status==="fulfilled"?I(e._payload.value)&&e._payload.value._store&&(e._payload.value._store.validated=1):e._store&&(e._store.validated=1))}function I(e){return typeof e=="object"&&e!==null&&e.$$typeof===$}var h=g,$=Symbol.for("react.transitional.element"),Z=Symbol.for("react.portal"),x=Symbol.for("react.fragment"),Q=Symbol.for("react.strict_mode"),K=Symbol.for("react.profiler"),ee=Symbol.for("react.consumer"),re=Symbol.for("react.context"),te=Symbol.for("react.forward_ref"),oe=Symbol.for("react.suspense"),ne=Symbol.for("react.suspense_list"),ae=Symbol.for("react.memo"),O=Symbol.for("react.lazy"),le=Symbol.for("react.activity"),ue=Symbol.for("react.client.reference"),S=h.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,F=Object.prototype.hasOwnProperty,se=Array.isArray,j=console.createTask?console.createTask:function(){return null};h={react_stack_bottom_frame:function(e){return e()}};var D,M={},L=h.react_stack_bottom_frame.bind(h,c)(),W=j(u(c)),q={};v.Fragment=x,v.jsx=function(e,r,t){var o=1e4>S.recentlyCreatedOwnerStacks++;return k(e,r,t,!1,o?Error("react-stack-top-frame"):L,o?j(u(e)):W)},v.jsxs=function(e,r,t){var o=1e4>S.recentlyCreatedOwnerStacks++;return k(e,r,t,!0,o?Error("react-stack-top-frame"):L,o?j(u(e)):W)}})()),v}var C;function G(){return C||(C=1,process.env.NODE_ENV==="production"?E.exports=V():E.exports=z()),E.exports}var y=G();const J=({className:l,children:i,disabled:a=!1,onClick:u})=>y.jsx("div",{className:_.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",a&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",l),onClick:a?void 0:u,role:"region","aria-label":"UauroraUbackground",children:i||"UauroraUbackground Component"}),X=({children:l,variant:i="blue-purple",gradientClasses:a,size:u="md",rounded:s="2xl",bordered:c=!1,borderClasses:f="border border-white/20",className:b})=>{const T={"blue-purple":"bg-gradient-to-r from-blue-600 to-purple-600 text-white","green-blue":"bg-gradient-to-r from-green-600 to-blue-600 text-white","orange-red":"bg-gradient-to-r from-orange-600 to-red-600 text-white",gray:"bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white",light:"bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100",custom:a||"bg-gradient-to-r from-blue-600 to-purple-600 text-white"},w={sm:"p-4",md:"p-6",lg:"p-8"},k={md:"rounded-md",lg:"rounded-lg",xl:"rounded-xl","2xl":"rounded-2xl"};return y.jsx("div",{className:_.cn(T[i],w[u],k[s],c&&f,b),children:l})},B=({className:l,children:i,disabled:a=!1,onClick:u})=>y.jsx("div",{className:_.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",a&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",l),onClick:a?void 0:u,role:"region","aria-label":"UneumorphicUbutton",children:i||"UneumorphicUbutton Component"}),H=({className:l,children:i,disabled:a=!1,onClick:u})=>y.jsx("div",{className:_.cn("p-4 rounded-lg border transition-colors","bg-white dark:bg-gray-900","border-gray-200 dark:border-gray-700","text-gray-900 dark:text-white",a&&"opacity-50 cursor-not-allowed","hover:bg-gray-50 dark:hover:bg-gray-800",l),onClick:a?void 0:u,role:"region","aria-label":"UthemeUswitcher",children:i||"UthemeUswitcher Component"});d.GradientBanner=X,d.UauroraUbackground=J,d.UneumorphicUbutton=B,d.UthemeUswitcher=H,Object.defineProperty(d,Symbol.toStringTag,{value:"Module"})}));
7
7
  //# sourceMappingURL=index.umd.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.umd.js","sources":["../node_modules/react/cjs/react-jsx-runtime.production.js","../node_modules/react/cjs/react-jsx-runtime.development.js","../node_modules/react/jsx-runtime.js","../src/aurora-background.tsx","../src/badge-designer.tsx","../src/color-picker-advanced.tsx","../src/color-picker.tsx","../src/color-swatch.tsx","../src/gradient-banner.tsx","../src/neumorphic-button.tsx","../src/theme-switcher.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cn } from '@sudobility/components';\n\n/**\n * UauroraUbackground Component\n *\n * A reusable UauroraUbackground component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UauroraUbackground className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/aurora-background}\n */\n\nexport interface UauroraUbackgroundProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UauroraUbackground = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UauroraUbackgroundProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UauroraUbackground'\n >\n {children || 'UauroraUbackground Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UbadgeUdesigner Component\n *\n * A reusable UbadgeUdesigner component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UbadgeUdesigner className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/badge-designer}\n */\n\nexport interface UbadgeUdesignerProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UbadgeUdesigner = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UbadgeUdesignerProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UbadgeUdesigner'\n >\n {children || 'UbadgeUdesigner Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\nexport interface ColorPickerAdvancedProps {\n value: string;\n onChange: (color: string) => void;\n presets?: string[];\n className?: string;\n}\n\nexport const ColorPickerAdvanced = ({\n value,\n onChange,\n presets,\n className,\n}: ColorPickerAdvancedProps) => {\n const defaultPresets = [\n '#000000',\n '#ffffff',\n '#ff0000',\n '#00ff00',\n '#0000ff',\n '#ffff00',\n '#ff00ff',\n '#00ffff',\n ];\n const colors = presets || defaultPresets;\n\n return (\n <div className={cn('space-y-3', className)}>\n <input\n type='color'\n value={value}\n onChange={e => onChange(e.target.value)}\n className='w-full h-12 rounded cursor-pointer'\n />\n <div className='grid grid-cols-8 gap-2'>\n {colors.map(color => (\n <button\n key={color}\n onClick={() => onChange(color)}\n className={cn(\n 'w-8 h-8 rounded border-2',\n value === color ? 'border-blue-500' : 'border-transparent'\n )}\n style={{ backgroundColor: color }}\n />\n ))}\n </div>\n </div>\n );\n};\n","import React, { useState } from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface ColorPickerProps {\n /** Selected color (hex format) */\n value: string;\n /** Change handler */\n onChange: (color: string) => void;\n /** Preset colors */\n presets?: string[];\n /** Show input field */\n showInput?: boolean;\n /** Show opacity slider */\n showOpacity?: boolean;\n /** Additional className */\n className?: string;\n}\n\n/**\n * ColorPicker Component\n *\n * Color picker with preset colors and custom input.\n * Supports hex colors and opacity.\n *\n * @example\n * ```tsx\n * <ColorPicker\n * value={color}\n * onChange={setColor}\n * showInput\n * />\n * ```\n *\n * @example\n * ```tsx\n * <ColorPicker\n * value={brandColor}\n * onChange={handleColorChange}\n * presets={['#FF6B6B', '#4ECDC4', '#45B7D1', '#FFA07A']}\n * showOpacity\n * />\n * ```\n */\nexport const ColorPicker: React.FC<ColorPickerProps> = ({\n value,\n onChange,\n presets = [\n '#000000',\n '#FFFFFF',\n '#FF6B6B',\n '#4ECDC4',\n '#45B7D1',\n '#FFA07A',\n '#F7DC6F',\n '#BB8FCE',\n '#85C1E2',\n '#F8B500',\n '#52B788',\n '#E63946',\n '#1D3557',\n '#457B9D',\n '#A8DADC',\n '#F4A261',\n '#264653',\n '#2A9D8F',\n ],\n showInput = true,\n showOpacity = false,\n className,\n}) => {\n const [inputValue, setInputValue] = useState(value);\n const [opacity, setOpacity] = useState(100);\n\n const handleColorClick = (color: string) => {\n onChange(color);\n setInputValue(color);\n };\n\n const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n const newValue = e.target.value;\n setInputValue(newValue);\n\n // Validate hex color\n if (/^#[0-9A-F]{6}$/i.test(newValue)) {\n onChange(newValue);\n }\n };\n\n const handleOpacityChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n setOpacity(Number(e.target.value));\n };\n\n const hexToRgba = (hex: string, alpha: number) => {\n const r = parseInt(hex.slice(1, 3), 16);\n const g = parseInt(hex.slice(3, 5), 16);\n const b = parseInt(hex.slice(5, 7), 16);\n return `rgba(${r}, ${g}, ${b}, ${alpha / 100})`;\n };\n\n const displayColor = showOpacity ? hexToRgba(value, opacity) : value;\n\n return (\n <div className={cn('bg-white dark:bg-gray-900 rounded-lg p-4', className)}>\n {/* Current color preview */}\n <div className='mb-4'>\n <div className='flex items-center gap-3'>\n <div\n className='w-16 h-16 rounded-lg border-2 border-gray-200 dark:border-gray-700 shadow-sm'\n style={{ backgroundColor: displayColor }}\n />\n <div className='flex-1'>\n <p className='text-sm font-medium text-gray-900 dark:text-white'>\n Selected Color\n </p>\n <p className='text-xs text-gray-600 dark:text-gray-400 mt-1 font-mono'>\n {value}\n {showOpacity && ` (${opacity}%)`}\n </p>\n </div>\n </div>\n </div>\n\n {/* Preset colors */}\n <div className='mb-4'>\n <p className='text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Preset Colors\n </p>\n <div className='grid grid-cols-6 gap-2'>\n {presets.map(preset => (\n <button\n key={preset}\n onClick={() => handleColorClick(preset)}\n className={cn(\n 'w-full aspect-square rounded-md border-2 transition-all hover:scale-110',\n preset === value\n ? 'border-blue-500 dark:border-blue-400 ring-2 ring-blue-200 dark:ring-blue-800'\n : 'border-gray-200 dark:border-gray-700'\n )}\n style={{ backgroundColor: preset }}\n aria-label={`Select color ${preset}`}\n />\n ))}\n </div>\n </div>\n\n {/* Custom color input */}\n {showInput && (\n <div className='mb-4'>\n <label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Custom Color (Hex)\n </label>\n <div className='flex gap-2'>\n <input\n type='text'\n value={inputValue}\n onChange={handleInputChange}\n placeholder='#000000'\n className='flex-1 px-3 py-2 text-sm font-mono bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-400'\n />\n <input\n type='color'\n value={value}\n onChange={e => handleColorClick(e.target.value)}\n className='w-12 h-10 rounded-md cursor-pointer'\n />\n </div>\n </div>\n )}\n\n {/* Opacity slider */}\n {showOpacity && (\n <div>\n <label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>\n Opacity: {opacity}%\n </label>\n <input\n type='range'\n min='0'\n max='100'\n value={opacity}\n onChange={handleOpacityChange}\n className='w-full h-2 bg-gray-200 dark:bg-gray-700 rounded-lg appearance-none cursor-pointer'\n />\n </div>\n )}\n </div>\n );\n};\n","import React, { useState } from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface Color {\n /** Color hex value */\n hex: string;\n /** Color name */\n name?: string;\n}\n\nexport interface ColorSwatchProps {\n /** Colors to display */\n colors: Color[] | string[];\n /** Selected color */\n selectedColor?: string;\n /** Color change handler */\n onColorSelect?: (color: string) => void;\n /** Swatch size */\n size?: 'sm' | 'md' | 'lg';\n /** Show color names */\n showNames?: boolean;\n /** Show copy button */\n showCopy?: boolean;\n /** Additional className */\n className?: string;\n}\n\n/**\n * ColorSwatch Component\n *\n * Color palette display with selection and copy functionality.\n * Useful for color pickers and design systems.\n *\n * @example\n * ```tsx\n * <ColorSwatch\n * colors={['#FF0000', '#00FF00', '#0000FF']}\n * selectedColor={activeColor}\n * onColorSelect={setActiveColor}\n * showCopy\n * />\n * ```\n */\nexport const ColorSwatch: React.FC<ColorSwatchProps> = ({\n colors,\n selectedColor,\n onColorSelect,\n size = 'md',\n showNames = false,\n showCopy = false,\n className,\n}) => {\n const [copiedColor, setCopiedColor] = useState<string | null>(null);\n\n const sizeClasses = {\n sm: 'w-8 h-8',\n md: 'w-12 h-12',\n lg: 'w-16 h-16',\n };\n\n const normalizeColors = (): Color[] => {\n return colors.map(color =>\n typeof color === 'string' ? { hex: color } : color\n );\n };\n\n const handleCopy = async (hex: string, e: React.MouseEvent) => {\n e.stopPropagation();\n await navigator.clipboard.writeText(hex);\n setCopiedColor(hex);\n setTimeout(() => setCopiedColor(null), 2000);\n };\n\n const normalizedColors = normalizeColors();\n\n return (\n <div className={cn('flex flex-wrap gap-3', className)}>\n {normalizedColors.map((color, index) => {\n const isSelected = selectedColor === color.hex;\n const isCopied = copiedColor === color.hex;\n\n return (\n <div key={index} className='flex flex-col items-center gap-2'>\n <button\n onClick={() => onColorSelect?.(color.hex)}\n className={cn(\n 'rounded-lg transition-all relative group',\n sizeClasses[size],\n isSelected &&\n 'ring-2 ring-blue-500 ring-offset-2 dark:ring-offset-gray-900',\n !isSelected && 'hover:scale-110'\n )}\n style={{ backgroundColor: color.hex }}\n aria-label={color.name || color.hex}\n >\n {showCopy && (\n <div\n className='absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity bg-black/50 rounded-lg'\n onClick={e => handleCopy(color.hex, e)}\n >\n {isCopied ? (\n <svg\n className='w-4 h-4 text-white'\n fill='none'\n stroke='currentColor'\n viewBox='0 0 24 24'\n >\n <path\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M5 13l4 4L19 7'\n />\n </svg>\n ) : (\n <svg\n className='w-4 h-4 text-white'\n fill='none'\n stroke='currentColor'\n viewBox='0 0 24 24'\n >\n <path\n strokeLinecap='round'\n strokeLinejoin='round'\n strokeWidth={2}\n d='M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z'\n />\n </svg>\n )}\n </div>\n )}\n </button>\n\n {showNames && (\n <div className='text-center'>\n {color.name && (\n <p className='text-xs font-medium text-gray-900 dark:text-white'>\n {color.name}\n </p>\n )}\n <p className='text-xs text-gray-600 dark:text-gray-400 font-mono'>\n {color.hex}\n </p>\n </div>\n )}\n </div>\n );\n })}\n </div>\n );\n};\n","import React from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface GradientBannerProps {\n /** Main content of the banner */\n children: React.ReactNode;\n /** Gradient color variant */\n variant?:\n | 'blue-purple'\n | 'green-blue'\n | 'orange-red'\n | 'gray'\n | 'light'\n | 'custom';\n /** Custom gradient classes (when variant is 'custom') */\n gradientClasses?: string;\n /** Size/padding variant */\n size?: 'sm' | 'md' | 'lg';\n /** Border radius */\n rounded?: 'md' | 'lg' | 'xl' | '2xl';\n /** Show border */\n bordered?: boolean;\n /** Border color classes (when bordered is true) */\n borderClasses?: string;\n /** Additional className for the container */\n className?: string;\n}\n\n/**\n * GradientBanner Component\n *\n * A versatile banner component with gradient backgrounds for highlighting\n * important content, CTAs, or feature sections.\n *\n * @example\n * ```tsx\n * <GradientBanner variant=\"blue-purple\" size=\"lg\">\n * <h3 className={textVariants.heading.h3()}>Special Offer</h3>\n * <p>Get started with Web3 Email today!</p>\n * </GradientBanner>\n * ```\n *\n * @example\n * ```tsx\n * // Light variant with border\n * <GradientBanner\n * variant=\"light\"\n * bordered\n * borderClasses=\"border-2 border-blue-200\"\n * >\n * <Alert variant=\"info\">Important information</Alert>\n * </GradientBanner>\n * ```\n */\nexport const GradientBanner: React.FC<GradientBannerProps> = ({\n children,\n variant = 'blue-purple',\n gradientClasses,\n size = 'md',\n rounded = '2xl',\n bordered = false,\n borderClasses = 'border border-white/20',\n className,\n}) => {\n // Gradient color variants\n const gradientVariants = {\n 'blue-purple': 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n 'green-blue': 'bg-gradient-to-r from-green-600 to-blue-600 text-white',\n 'orange-red': 'bg-gradient-to-r from-orange-600 to-red-600 text-white',\n gray: 'bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white',\n light:\n 'bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100',\n custom:\n gradientClasses ||\n 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n };\n\n // Size/padding configurations\n const sizeClasses = {\n sm: 'p-4',\n md: 'p-6',\n lg: 'p-8',\n };\n\n // Border radius configurations\n const roundedClasses = {\n md: 'rounded-md',\n lg: 'rounded-lg',\n xl: 'rounded-xl',\n '2xl': 'rounded-2xl',\n };\n\n return (\n <div\n className={cn(\n gradientVariants[variant],\n sizeClasses[size],\n roundedClasses[rounded],\n bordered && borderClasses,\n className\n )}\n >\n {children}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UneumorphicUbutton Component\n *\n * A reusable UneumorphicUbutton component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UneumorphicUbutton className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/neumorphic-button}\n */\n\nexport interface UneumorphicUbuttonProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UneumorphicUbutton = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UneumorphicUbuttonProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UneumorphicUbutton'\n >\n {children || 'UneumorphicUbutton Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UthemeUswitcher Component\n *\n * A reusable UthemeUswitcher component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UthemeUswitcher className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/theme-switcher}\n */\n\nexport interface UthemeUswitcherProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UthemeUswitcher = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UthemeUswitcherProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UthemeUswitcher'\n >\n {children || 'UthemeUswitcher Component'}\n </div>\n );\n};\n"],"names":["REACT_ELEMENT_TYPE","REACT_FRAGMENT_TYPE","jsxProd","type","config","maybeKey","key","propName","reactJsxRuntime_production","getComponentNameFromType","REACT_CLIENT_REFERENCE","REACT_PROFILER_TYPE","REACT_STRICT_MODE_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_ACTIVITY_TYPE","REACT_PORTAL_TYPE","REACT_CONTEXT_TYPE","REACT_CONSUMER_TYPE","REACT_FORWARD_REF_TYPE","innerType","REACT_MEMO_TYPE","REACT_LAZY_TYPE","testStringCoercion","value","checkKeyStringCoercion","JSCompiler_inline_result","JSCompiler_temp_const","JSCompiler_inline_result$jscomp$0","getTaskName","name","getOwner","dispatcher","ReactSharedInternals","UnknownOwner","hasValidKey","hasOwnProperty","getter","defineKeyPropWarningGetter","props","displayName","warnAboutAccessingKey","specialPropKeyWarningShown","elementRefGetterWithDeprecationWarning","componentName","didWarnAboutElementRef","ReactElement","owner","debugStack","debugTask","refProp","jsxDEVImpl","isStaticChildren","children","isArrayImpl","validateChildKeys","keys","k","didWarnAboutKeySpread","node","isValidElement","object","React","require$$0","createTask","callStackForError","unknownOwnerDebugStack","unknownOwnerDebugTask","reactJsxRuntime_development","trackActualOwner","jsxRuntimeModule","require$$1","UauroraUbackground","className","disabled","onClick","jsx","cn","UbadgeUdesigner","ColorPickerAdvanced","onChange","presets","colors","e","color","ColorPicker","showInput","showOpacity","inputValue","setInputValue","useState","opacity","setOpacity","handleColorClick","handleInputChange","newValue","handleOpacityChange","displayColor","hex","alpha","r","g","b","jsxs","preset","ColorSwatch","selectedColor","onColorSelect","size","showNames","showCopy","copiedColor","setCopiedColor","sizeClasses","normalizeColors","handleCopy","normalizedColors","index","isSelected","isCopied","GradientBanner","variant","gradientClasses","rounded","bordered","borderClasses","gradientVariants","roundedClasses","UneumorphicUbutton","UthemeUswitcher"],"mappings":"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","x_google_ignoreList":[0,1,2]}
1
+ {"version":3,"file":"index.umd.js","sources":["../node_modules/react/cjs/react-jsx-runtime.production.js","../node_modules/react/cjs/react-jsx-runtime.development.js","../node_modules/react/jsx-runtime.js","../src/aurora-background.tsx","../src/gradient-banner.tsx","../src/neumorphic-button.tsx","../src/theme-switcher.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cn } from '@sudobility/components';\n\n/**\n * UauroraUbackground Component\n *\n * A reusable UauroraUbackground component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UauroraUbackground className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/aurora-background}\n */\n\nexport interface UauroraUbackgroundProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UauroraUbackground = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UauroraUbackgroundProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UauroraUbackground'\n >\n {children || 'UauroraUbackground Component'}\n </div>\n );\n};\n","import React from 'react';\nimport { cn } from '@sudobility/components';\n\nexport interface GradientBannerProps {\n /** Main content of the banner */\n children: React.ReactNode;\n /** Gradient color variant */\n variant?:\n | 'blue-purple'\n | 'green-blue'\n | 'orange-red'\n | 'gray'\n | 'light'\n | 'custom';\n /** Custom gradient classes (when variant is 'custom') */\n gradientClasses?: string;\n /** Size/padding variant */\n size?: 'sm' | 'md' | 'lg';\n /** Border radius */\n rounded?: 'md' | 'lg' | 'xl' | '2xl';\n /** Show border */\n bordered?: boolean;\n /** Border color classes (when bordered is true) */\n borderClasses?: string;\n /** Additional className for the container */\n className?: string;\n}\n\n/**\n * GradientBanner Component\n *\n * A versatile banner component with gradient backgrounds for highlighting\n * important content, CTAs, or feature sections.\n *\n * @example\n * ```tsx\n * <GradientBanner variant=\"blue-purple\" size=\"lg\">\n * <h3 className={textVariants.heading.h3()}>Special Offer</h3>\n * <p>Get started with Web3 Email today!</p>\n * </GradientBanner>\n * ```\n *\n * @example\n * ```tsx\n * // Light variant with border\n * <GradientBanner\n * variant=\"light\"\n * bordered\n * borderClasses=\"border-2 border-blue-200\"\n * >\n * <Alert variant=\"info\">Important information</Alert>\n * </GradientBanner>\n * ```\n */\nexport const GradientBanner: React.FC<GradientBannerProps> = ({\n children,\n variant = 'blue-purple',\n gradientClasses,\n size = 'md',\n rounded = '2xl',\n bordered = false,\n borderClasses = 'border border-white/20',\n className,\n}) => {\n // Gradient color variants\n const gradientVariants = {\n 'blue-purple': 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n 'green-blue': 'bg-gradient-to-r from-green-600 to-blue-600 text-white',\n 'orange-red': 'bg-gradient-to-r from-orange-600 to-red-600 text-white',\n gray: 'bg-gradient-to-r from-gray-600 to-gray-800 dark:from-gray-700 dark:to-gray-900 text-white',\n light:\n 'bg-gradient-to-r from-blue-50 to-purple-50 dark:from-blue-900/20 dark:to-purple-900/20 text-gray-900 dark:text-gray-100',\n custom:\n gradientClasses ||\n 'bg-gradient-to-r from-blue-600 to-purple-600 text-white',\n };\n\n // Size/padding configurations\n const sizeClasses = {\n sm: 'p-4',\n md: 'p-6',\n lg: 'p-8',\n };\n\n // Border radius configurations\n const roundedClasses = {\n md: 'rounded-md',\n lg: 'rounded-lg',\n xl: 'rounded-xl',\n '2xl': 'rounded-2xl',\n };\n\n return (\n <div\n className={cn(\n gradientVariants[variant],\n sizeClasses[size],\n roundedClasses[rounded],\n bordered && borderClasses,\n className\n )}\n >\n {children}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UneumorphicUbutton Component\n *\n * A reusable UneumorphicUbutton component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UneumorphicUbutton className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/neumorphic-button}\n */\n\nexport interface UneumorphicUbuttonProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UneumorphicUbutton = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UneumorphicUbuttonProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UneumorphicUbutton'\n >\n {children || 'UneumorphicUbutton Component'}\n </div>\n );\n};\n","import { cn } from '@sudobility/components';\n\n/**\n * UthemeUswitcher Component\n *\n * A reusable UthemeUswitcher component with full dark mode support.\n * Optimized for accessibility and AI-assisted development.\n *\n * @component\n * @example\n * ```tsx\n * <UthemeUswitcher className=\"custom-class\" />\n * ```\n *\n * @remarks\n * This component supports:\n * - Light and dark themes automatically\n * - Responsive design\n * - Accessibility features\n * - TypeScript type safety\n *\n * @see {@link https://docs.example.com/components/theme-switcher}\n */\n\nexport interface UthemeUswitcherProps {\n /** Additional CSS classes */\n className?: string;\n /** Component children */\n children?: React.ReactNode;\n /** Disabled state */\n disabled?: boolean;\n /** Callback when component is interacted with */\n onClick?: () => void;\n}\n\nexport const UthemeUswitcher = ({\n className,\n children,\n disabled = false,\n onClick,\n}: UthemeUswitcherProps) => {\n return (\n <div\n className={cn(\n 'p-4 rounded-lg border transition-colors',\n 'bg-white dark:bg-gray-900',\n 'border-gray-200 dark:border-gray-700',\n 'text-gray-900 dark:text-white',\n disabled && 'opacity-50 cursor-not-allowed',\n 'hover:bg-gray-50 dark:hover:bg-gray-800',\n className\n )}\n onClick={disabled ? undefined : onClick}\n role='region'\n aria-label='UthemeUswitcher'\n >\n {children || 'UthemeUswitcher Component'}\n </div>\n );\n};\n"],"names":["REACT_ELEMENT_TYPE","REACT_FRAGMENT_TYPE","jsxProd","type","config","maybeKey","key","propName","reactJsxRuntime_production","getComponentNameFromType","REACT_CLIENT_REFERENCE","REACT_PROFILER_TYPE","REACT_STRICT_MODE_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_ACTIVITY_TYPE","REACT_PORTAL_TYPE","REACT_CONTEXT_TYPE","REACT_CONSUMER_TYPE","REACT_FORWARD_REF_TYPE","innerType","REACT_MEMO_TYPE","REACT_LAZY_TYPE","testStringCoercion","value","checkKeyStringCoercion","JSCompiler_inline_result","JSCompiler_temp_const","JSCompiler_inline_result$jscomp$0","getTaskName","name","getOwner","dispatcher","ReactSharedInternals","UnknownOwner","hasValidKey","hasOwnProperty","getter","defineKeyPropWarningGetter","props","displayName","warnAboutAccessingKey","specialPropKeyWarningShown","elementRefGetterWithDeprecationWarning","componentName","didWarnAboutElementRef","ReactElement","owner","debugStack","debugTask","refProp","jsxDEVImpl","isStaticChildren","children","isArrayImpl","validateChildKeys","keys","k","didWarnAboutKeySpread","node","isValidElement","object","React","require$$0","createTask","callStackForError","unknownOwnerDebugStack","unknownOwnerDebugTask","reactJsxRuntime_development","trackActualOwner","jsxRuntimeModule","require$$1","UauroraUbackground","className","disabled","onClick","jsx","cn","GradientBanner","variant","gradientClasses","size","rounded","bordered","borderClasses","gradientVariants","sizeClasses","roundedClasses","UneumorphicUbutton","UthemeUswitcher"],"mappings":"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","x_google_ignoreList":[0,1,2]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sudobility/design-components",
3
- "version": "1.0.11",
3
+ "version": "2.0.0",
4
4
  "description": "Design and theming components for color pickers, swatches, and visual design tools",
5
5
  "main": "./dist/index.umd.js",
6
6
  "module": "./dist/index.esm.js",
package/src/index.ts CHANGED
@@ -7,10 +7,6 @@
7
7
  */
8
8
 
9
9
  export * from './aurora-background';
10
- export * from './badge-designer';
11
- export * from './color-picker-advanced';
12
- export * from './color-picker';
13
- export * from './color-swatch';
14
10
  export * from './gradient-banner';
15
11
  export * from './neumorphic-button';
16
12
  export * from './theme-switcher';
@@ -1,33 +0,0 @@
1
- /**
2
- * UbadgeUdesigner Component
3
- *
4
- * A reusable UbadgeUdesigner component with full dark mode support.
5
- * Optimized for accessibility and AI-assisted development.
6
- *
7
- * @component
8
- * @example
9
- * ```tsx
10
- * <UbadgeUdesigner className="custom-class" />
11
- * ```
12
- *
13
- * @remarks
14
- * This component supports:
15
- * - Light and dark themes automatically
16
- * - Responsive design
17
- * - Accessibility features
18
- * - TypeScript type safety
19
- *
20
- * @see {@link https://docs.example.com/components/badge-designer}
21
- */
22
- export interface UbadgeUdesignerProps {
23
- /** Additional CSS classes */
24
- className?: string;
25
- /** Component children */
26
- children?: React.ReactNode;
27
- /** Disabled state */
28
- disabled?: boolean;
29
- /** Callback when component is interacted with */
30
- onClick?: () => void;
31
- }
32
- export declare const UbadgeUdesigner: ({ className, children, disabled, onClick, }: UbadgeUdesignerProps) => import("react/jsx-runtime").JSX.Element;
33
- //# sourceMappingURL=badge-designer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"badge-designer.d.ts","sourceRoot":"","sources":["../src/badge-designer.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,oBAAoB;IACnC,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,eAAe,GAAI,6CAK7B,oBAAoB,4CAmBtB,CAAC"}
@@ -1,8 +0,0 @@
1
- export interface ColorPickerAdvancedProps {
2
- value: string;
3
- onChange: (color: string) => void;
4
- presets?: string[];
5
- className?: string;
6
- }
7
- export declare const ColorPickerAdvanced: ({ value, onChange, presets, className, }: ColorPickerAdvancedProps) => import("react/jsx-runtime").JSX.Element;
8
- //# sourceMappingURL=color-picker-advanced.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"color-picker-advanced.d.ts","sourceRoot":"","sources":["../src/color-picker-advanced.tsx"],"names":[],"mappings":"AAEA,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,mBAAmB,GAAI,0CAKjC,wBAAwB,4CAoC1B,CAAC"}