@k8o/arte-odyssey 10.7.0 → 10.8.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.
@@ -3,7 +3,7 @@ declare const CheckboxGroup: import("react").FC<{
3
3
  invalid?: boolean;
4
4
  required?: boolean;
5
5
  name: string;
6
- } & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "className" | "style" | "defaultValue" | "onChange" | "name"> & {
6
+ } & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "className" | "style" | "name" | "defaultValue" | "onChange"> & {
7
7
  children?: import("react").ReactNode | undefined;
8
8
  } & ({
9
9
  value: string[];
@@ -18,7 +18,7 @@ declare const CheckboxGroup: import("react").FC<{
18
18
  invalid?: boolean;
19
19
  required?: boolean;
20
20
  name: string;
21
- } & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "className" | "style" | "defaultValue" | "onChange" | "name"> & {
21
+ } & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "className" | "style" | "name" | "defaultValue" | "onChange"> & {
22
22
  children?: import("react").ReactNode | undefined;
23
23
  } & ({
24
24
  value: string[];
@@ -33,7 +33,7 @@ declare const CheckboxGroup: import("react").FC<{
33
33
  Item: import("react").FC<{
34
34
  itemValue?: string;
35
35
  label: string;
36
- } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "className" | "style" | "defaultChecked" | "children" | "onChange" | "type" | "value" | "checked"> & ({
36
+ } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "value" | "type" | "className" | "style" | "checked" | "defaultChecked" | "children" | "onChange"> & ({
37
37
  value: boolean;
38
38
  onChange: (checked: boolean, event: import("react").ChangeEvent<HTMLInputElement>) => void;
39
39
  defaultChecked?: never;
@@ -0,0 +1,7 @@
1
+ import { BaseIconProps } from "./base.mjs";
2
+ import { FC } from "react";
3
+
4
+ //#region src/components/icons/color-scale.d.ts
5
+ declare const ColorScaleIcon: FC<Partial<BaseIconProps>>;
6
+ //#endregion
7
+ export { ColorScaleIcon };
@@ -0,0 +1,43 @@
1
+ import { BaseIcon } from "./base.mjs";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region src/components/icons/color-scale.tsx
4
+ const ColorScale = ({ className }) => /* @__PURE__ */ jsxs("svg", {
5
+ className,
6
+ fill: "none",
7
+ stroke: "currentColor",
8
+ strokeLinecap: "round",
9
+ strokeLinejoin: "round",
10
+ strokeWidth: "2",
11
+ viewBox: "0 0 24 24",
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ children: [
14
+ /* @__PURE__ */ jsx("rect", {
15
+ height: "6",
16
+ rx: "1.5",
17
+ width: "7",
18
+ x: "3",
19
+ y: "3"
20
+ }),
21
+ /* @__PURE__ */ jsx("rect", {
22
+ height: "6",
23
+ rx: "1.5",
24
+ width: "7",
25
+ x: "8.5",
26
+ y: "9"
27
+ }),
28
+ /* @__PURE__ */ jsx("rect", {
29
+ fill: "currentColor",
30
+ height: "6",
31
+ rx: "1.5",
32
+ width: "7",
33
+ x: "14",
34
+ y: "15"
35
+ })
36
+ ]
37
+ });
38
+ const ColorScaleIcon = ({ size = "md" }) => /* @__PURE__ */ jsx(BaseIcon, {
39
+ renderItem: (props) => /* @__PURE__ */ jsx(ColorScale, { ...props }),
40
+ size
41
+ });
42
+ //#endregion
43
+ export { ColorScaleIcon };
@@ -1,8 +1,9 @@
1
1
  import { ArteOdyssey } from "./arte-odyssey.mjs";
2
+ import { ColorScaleIcon } from "./color-scale.mjs";
2
3
  import { GitHubIcon } from "./github-mark.mjs";
3
4
  import { Logo, LogoIcon } from "./logo.mjs";
4
5
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./lucide.mjs";
5
6
  import { QiitaIcon } from "./qiita.mjs";
6
7
  import { TwitterIcon } from "./twitter.mjs";
7
8
  import { VerticalWritingIcon } from "./vertical-writing.mjs";
8
- export { AIIcon, AccessibilityIcon, AlertIcon, ArteOdyssey, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, QiitaIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon };
9
+ export { AIIcon, AccessibilityIcon, AlertIcon, ArteOdyssey, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, QiitaIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon };
@@ -1,8 +1,9 @@
1
1
  import { ArteOdyssey } from "./arte-odyssey.mjs";
2
+ import { ColorScaleIcon } from "./color-scale.mjs";
2
3
  import { GitHubIcon } from "./github-mark.mjs";
3
4
  import { Logo, LogoIcon } from "./logo.mjs";
4
5
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./lucide.mjs";
5
6
  import { QiitaIcon } from "./qiita.mjs";
6
7
  import { TwitterIcon } from "./twitter.mjs";
7
8
  import { VerticalWritingIcon } from "./vertical-writing.mjs";
8
- export { AIIcon, AccessibilityIcon, AlertIcon, ArteOdyssey, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, QiitaIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon };
9
+ export { AIIcon, AccessibilityIcon, AlertIcon, ArteOdyssey, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, QiitaIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon };
@@ -32,6 +32,7 @@ import { Switch } from "./form/switch/switch.mjs";
32
32
  import { TextField } from "./form/text-field/text-field.mjs";
33
33
  import { Textarea } from "./form/textarea/textarea.mjs";
34
34
  import { ArteOdyssey } from "./icons/arte-odyssey.mjs";
35
+ import { ColorScaleIcon } from "./icons/color-scale.mjs";
35
36
  import { GitHubIcon } from "./icons/github-mark.mjs";
36
37
  import { Logo, LogoIcon } from "./icons/logo.mjs";
37
38
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./icons/lucide.mjs";
@@ -55,4 +56,4 @@ import { useOpenContext } from "./overlays/popover/hooks.mjs";
55
56
  import { Popover } from "./overlays/popover/popover.mjs";
56
57
  import { ArteOdysseyProvider } from "./providers/arte-odyssey-provider.mjs";
57
58
  import { PortalRootProvider, usePortalRoot } from "./providers/portal-root.mjs";
58
- export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, type GridProps, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, type StackProps, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, useOpenContext, usePortalRoot, useToast };
59
+ export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, type GridProps, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, type StackProps, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, useOpenContext, usePortalRoot, useToast };
@@ -5,6 +5,7 @@ import { Popover } from "./overlays/popover/popover.mjs";
5
5
  import { Tooltip } from "./overlays/tooltip/tooltip.mjs";
6
6
  import { IconButton } from "./buttons/icon-button/icon-button.mjs";
7
7
  import { ArteOdyssey } from "./icons/arte-odyssey.mjs";
8
+ import { ColorScaleIcon } from "./icons/color-scale.mjs";
8
9
  import { GitHubIcon } from "./icons/github-mark.mjs";
9
10
  import { Logo, LogoIcon } from "./icons/logo.mjs";
10
11
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./icons/lucide.mjs";
@@ -55,4 +56,4 @@ import { Modal } from "./overlays/modal/modal.mjs";
55
56
  import { Drawer } from "./overlays/drawer/drawer.mjs";
56
57
  import { DropdownMenu } from "./overlays/dropdown-menu/dropdown-menu.mjs";
57
58
  import { ListBox } from "./overlays/list-box/list-box.mjs";
58
- export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, useOpenContext, usePortalRoot, useToast };
59
+ export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, useOpenContext, usePortalRoot, useToast };
package/dist/index.d.mts CHANGED
@@ -33,6 +33,7 @@ import { Switch } from "./components/form/switch/switch.mjs";
33
33
  import { TextField } from "./components/form/text-field/text-field.mjs";
34
34
  import { Textarea } from "./components/form/textarea/textarea.mjs";
35
35
  import { ArteOdyssey } from "./components/icons/arte-odyssey.mjs";
36
+ import { ColorScaleIcon } from "./components/icons/color-scale.mjs";
36
37
  import { GitHubIcon } from "./components/icons/github-mark.mjs";
37
38
  import { Logo, LogoIcon } from "./components/icons/logo.mjs";
38
39
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./components/icons/lucide.mjs";
@@ -84,4 +85,4 @@ import { useTimeout } from "./hooks/timeout/index.mjs";
84
85
  import { useWindowResize } from "./hooks/window-resize/index.mjs";
85
86
  import { useWindowSize } from "./hooks/window-size/index.mjs";
86
87
  import { WritingMode, useWritingMode } from "./hooks/writing-mode/index.mjs";
87
- export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, type DebouncedAction, Dialog, DifficultIcon, type Direction, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, type GridProps, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, type Option, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, type StackProps, type Status, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, type WritingMode, chain, cn, createSafeContext, mergeProps, mergeRefs, useBreakpoint, useClickAway, useClient, useClipboard, useControllableState, useDebouncedTransition, useDeferredDebounce, useDisclosure, useHash, useHover, useInView, useIntersectionObserver, useInterval, useLocalStorage, useOpenContext, usePortalRoot, useResize, useScrollDirection, useScrollLock, useSessionStorage, useStep, useTimeout, useToast, useWindowResize, useWindowSize, useWritingMode };
88
+ export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, type DebouncedAction, Dialog, DifficultIcon, type Direction, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, type GridProps, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, type Option, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, type StackProps, type Status, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, type WritingMode, chain, cn, createSafeContext, mergeProps, mergeRefs, useBreakpoint, useClickAway, useClient, useClipboard, useControllableState, useDebouncedTransition, useDeferredDebounce, useDisclosure, useHash, useHover, useInView, useIntersectionObserver, useInterval, useLocalStorage, useOpenContext, usePortalRoot, useResize, useScrollDirection, useScrollLock, useSessionStorage, useStep, useTimeout, useToast, useWindowResize, useWindowSize, useWritingMode };
package/dist/index.mjs CHANGED
@@ -33,6 +33,7 @@ import { Popover } from "./components/overlays/popover/popover.mjs";
33
33
  import { Tooltip } from "./components/overlays/tooltip/tooltip.mjs";
34
34
  import { IconButton } from "./components/buttons/icon-button/icon-button.mjs";
35
35
  import { ArteOdyssey } from "./components/icons/arte-odyssey.mjs";
36
+ import { ColorScaleIcon } from "./components/icons/color-scale.mjs";
36
37
  import { GitHubIcon } from "./components/icons/github-mark.mjs";
37
38
  import { Logo, LogoIcon } from "./components/icons/logo.mjs";
38
39
  import { AIIcon, AccessibilityIcon, AlertIcon, AssistantIcon, AtomIcon, BadIcon, BlogIcon, BoringIcon, CheckIcon, ChevronIcon, CloseIcon, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, DifficultIcon, EasyIcon, ExternalLinkIcon, FlaskIcon, ForkIcon, FormIcon, FullscreenIcon, GoodIcon, HistoryIcon, HorizontalWritingIcon, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListIcon, LocationIcon, LockIcon, LockOpenIcon, MailIcon, MinusIcon, MixedColorIcon, NavigationMenuIcon, NewsIcon, PackageIcon, PaletteIcon, PlusIcon, PrepareIcon, PublishDateIcon, RSSIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./components/icons/lucide.mjs";
@@ -83,4 +84,4 @@ import { Modal } from "./components/overlays/modal/modal.mjs";
83
84
  import { Drawer } from "./components/overlays/drawer/drawer.mjs";
84
85
  import { DropdownMenu } from "./components/overlays/dropdown-menu/dropdown-menu.mjs";
85
86
  import { ListBox } from "./components/overlays/list-box/list-box.mjs";
86
- export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, chain, cn, createSafeContext, mergeProps, mergeRefs, useBreakpoint, useClickAway, useClient, useClipboard, useControllableState, useDebouncedTransition, useDeferredDebounce, useDisclosure, useHash, useHover, useInView, useIntersectionObserver, useInterval, useLocalStorage, useOpenContext, usePortalRoot, useResize, useScrollDirection, useScrollLock, useSessionStorage, useStep, useTimeout, useToast, useWindowResize, useWindowSize, useWritingMode };
87
+ export { AIIcon, AccessibilityIcon, Accordion, Alert, AlertIcon, Anchor, ArteOdyssey, ArteOdysseyProvider, AssistantIcon, AtomIcon, Autocomplete, Avatar, BadIcon, Badge, BaselineStatus, BlogIcon, BoringIcon, Breadcrumb, Button, Card, CheckIcon, Checkbox, CheckboxCard, CheckboxGroup, ChevronIcon, CloseIcon, Code, CodeXmlIcon, ColorContrastIcon, ColorInfoIcon, ColorScaleIcon, CopyIcon, DarkModeIcon, Dialog, DifficultIcon, Drawer, DropdownMenu, EasyIcon, ExternalLinkIcon, FileField, FlaskIcon, ForkIcon, Form, FormControl, FormIcon, FullscreenIcon, GitHubIcon, GoodIcon, Grid, Heading, HistoryIcon, HorizontalWritingIcon, IconButton, InformativeIcon, InterestingIcon, LightModeIcon, LinkIcon, ListBox, ListIcon, LocationIcon, LockIcon, LockOpenIcon, Logo, LogoIcon, MailIcon, MinusIcon, MixedColorIcon, Modal, NavigationMenuIcon, NewsIcon, NumberField, PackageIcon, Pagination, PaletteIcon, PasswordInput, PlusIcon, Popover, PortalRootProvider, PrepareIcon, Progress, PublishDateIcon, QiitaIcon, RSSIcon, Radio, RadioCard, ScrollLinked, Select, SendIcon, Separator, ShallowIcon, ShieldCheckIcon, Skeleton, SlideIcon, Slider, SparklesIcon, Spinner, SquircleIcon, Stack, SubscribeIcon, Switch, Table, TableIcon, Tabs, TagIcon, TextField, Textarea, ToastProvider, Tooltip, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon, chain, cn, createSafeContext, mergeProps, mergeRefs, useBreakpoint, useClickAway, useClient, useClipboard, useControllableState, useDebouncedTransition, useDeferredDebounce, useDisclosure, useHash, useHover, useInView, useIntersectionObserver, useInterval, useLocalStorage, useOpenContext, usePortalRoot, useResize, useScrollDirection, useScrollLock, useSessionStorage, useStep, useTimeout, useToast, useWindowResize, useWindowSize, useWritingMode };
@@ -39,10 +39,10 @@ declare const buttonProps: z.ZodObject<{
39
39
  href: z.ZodOptional<z.ZodString>;
40
40
  }, z.core.$strip>;
41
41
  declare const iconName: z.ZodEnum<{
42
- form: "form";
43
- list: "list";
44
42
  link: "link";
45
43
  check: "check";
44
+ form: "form";
45
+ list: "list";
46
46
  plus: "plus";
47
47
  minus: "minus";
48
48
  close: "close";
@@ -94,10 +94,10 @@ declare const iconName: z.ZodEnum<{
94
94
  }>;
95
95
  declare const iconProps: z.ZodObject<{
96
96
  name: z.ZodEnum<{
97
- form: "form";
98
- list: "list";
99
97
  link: "link";
100
98
  check: "check";
99
+ form: "form";
100
+ list: "list";
101
101
  plus: "plus";
102
102
  minus: "minus";
103
103
  close: "close";
@@ -155,10 +155,10 @@ declare const iconProps: z.ZodObject<{
155
155
  }, z.core.$strip>;
156
156
  declare const iconButtonProps: z.ZodObject<{
157
157
  icon: z.ZodEnum<{
158
- form: "form";
159
- list: "list";
160
158
  link: "link";
161
159
  check: "check";
160
+ form: "form";
161
+ list: "list";
162
162
  plus: "plus";
163
163
  minus: "minus";
164
164
  close: "close";
@@ -215,18 +215,18 @@ declare const iconButtonProps: z.ZodObject<{
215
215
  lg: "lg";
216
216
  }>>;
217
217
  color: z.ZodOptional<z.ZodEnum<{
218
- transparent: "transparent";
219
218
  primary: "primary";
220
219
  secondary: "secondary";
220
+ transparent: "transparent";
221
221
  base: "base";
222
222
  }>>;
223
223
  }, z.core.$strip>;
224
224
  declare const chevronIconProps: z.ZodObject<{
225
225
  direction: z.ZodEnum<{
226
- left: "left";
227
- right: "right";
228
226
  up: "up";
229
227
  down: "down";
228
+ right: "right";
229
+ left: "left";
230
230
  }>;
231
231
  size: z.ZodOptional<z.ZodEnum<{
232
232
  sm: "sm";
@@ -237,9 +237,9 @@ declare const chevronIconProps: z.ZodObject<{
237
237
  declare const statusIconProps: z.ZodObject<{
238
238
  status: z.ZodEnum<{
239
239
  success: "success";
240
+ error: "error";
240
241
  info: "info";
241
242
  warning: "warning";
242
- error: "error";
243
243
  }>;
244
244
  size: z.ZodOptional<z.ZodEnum<{
245
245
  sm: "sm";
@@ -251,9 +251,9 @@ declare const badgeProps: z.ZodObject<{
251
251
  text: z.ZodString;
252
252
  tone: z.ZodOptional<z.ZodEnum<{
253
253
  success: "success";
254
+ error: "error";
254
255
  info: "info";
255
256
  warning: "warning";
256
- error: "error";
257
257
  neutral: "neutral";
258
258
  }>>;
259
259
  variant: z.ZodOptional<z.ZodEnum<{
@@ -304,8 +304,8 @@ declare const tableProps: z.ZodObject<{
304
304
  columns: z.ZodArray<z.ZodObject<{
305
305
  label: z.ZodString;
306
306
  align: z.ZodOptional<z.ZodEnum<{
307
- left: "left";
308
307
  right: "right";
308
+ left: "left";
309
309
  center: "center";
310
310
  }>>;
311
311
  }, z.core.$strip>>;
@@ -330,9 +330,9 @@ declare const cardProps: z.ZodObject<{
330
330
  declare const alertProps: z.ZodObject<{
331
331
  tone: z.ZodEnum<{
332
332
  success: "success";
333
+ error: "error";
333
334
  info: "info";
334
335
  warning: "warning";
335
- error: "error";
336
336
  }>;
337
337
  message: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
338
338
  }, z.core.$strip>;
@@ -366,16 +366,16 @@ declare const toastProps: z.ZodObject<{
366
366
  triggerLabel: z.ZodString;
367
367
  tone: z.ZodEnum<{
368
368
  success: "success";
369
+ error: "error";
369
370
  info: "info";
370
371
  warning: "warning";
371
- error: "error";
372
372
  }>;
373
373
  message: z.ZodString;
374
374
  }, z.core.$strip>;
375
375
  declare const separatorProps: z.ZodObject<{
376
376
  orientation: z.ZodOptional<z.ZodEnum<{
377
- vertical: "vertical";
378
377
  horizontal: "horizontal";
378
+ vertical: "vertical";
379
379
  }>>;
380
380
  color: z.ZodOptional<z.ZodEnum<{
381
381
  base: "base";
@@ -616,10 +616,10 @@ declare const modalProps: z.ZodObject<{
616
616
  triggerLabel: z.ZodString;
617
617
  title: z.ZodString;
618
618
  type: z.ZodOptional<z.ZodEnum<{
619
- bottom: "bottom";
620
- left: "left";
621
619
  right: "right";
620
+ left: "left";
622
621
  center: "center";
622
+ bottom: "bottom";
623
623
  }>>;
624
624
  }, z.core.$strip>;
625
625
  declare const dialogProps: z.ZodObject<{
@@ -630,8 +630,8 @@ declare const drawerProps: z.ZodObject<{
630
630
  triggerLabel: z.ZodString;
631
631
  title: z.ZodString;
632
632
  side: z.ZodOptional<z.ZodEnum<{
633
- left: "left";
634
633
  right: "right";
634
+ left: "left";
635
635
  }>>;
636
636
  }, z.core.$strip>;
637
637
  declare const popoverProps: z.ZodObject<{
@@ -134,9 +134,9 @@ declare const catalog: import("@json-render/core").Catalog<{
134
134
  text: z.ZodString;
135
135
  tone: z.ZodOptional<z.ZodEnum<{
136
136
  success: "success";
137
+ error: "error";
137
138
  info: "info";
138
139
  warning: "warning";
139
- error: "error";
140
140
  neutral: "neutral";
141
141
  }>>;
142
142
  variant: z.ZodOptional<z.ZodEnum<{
@@ -170,9 +170,9 @@ declare const catalog: import("@json-render/core").Catalog<{
170
170
  props: z.ZodObject<{
171
171
  tone: z.ZodEnum<{
172
172
  success: "success";
173
+ error: "error";
173
174
  info: "info";
174
175
  warning: "warning";
175
- error: "error";
176
176
  }>;
177
177
  message: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
178
178
  }, z.core.$strip>;
@@ -192,8 +192,8 @@ declare const catalog: import("@json-render/core").Catalog<{
192
192
  Separator: {
193
193
  props: z.ZodObject<{
194
194
  orientation: z.ZodOptional<z.ZodEnum<{
195
- vertical: "vertical";
196
195
  horizontal: "horizontal";
196
+ vertical: "vertical";
197
197
  }>>;
198
198
  color: z.ZodOptional<z.ZodEnum<{
199
199
  base: "base";
@@ -288,8 +288,8 @@ declare const catalog: import("@json-render/core").Catalog<{
288
288
  columns: z.ZodArray<z.ZodObject<{
289
289
  label: z.ZodString;
290
290
  align: z.ZodOptional<z.ZodEnum<{
291
- left: "left";
292
291
  right: "right";
292
+ left: "left";
293
293
  center: "center";
294
294
  }>>;
295
295
  }, z.core.$strip>>;
@@ -352,10 +352,10 @@ declare const catalog: import("@json-render/core").Catalog<{
352
352
  Icon: {
353
353
  props: z.ZodObject<{
354
354
  name: z.ZodEnum<{
355
- form: "form";
356
- list: "list";
357
355
  link: "link";
358
356
  check: "check";
357
+ form: "form";
358
+ list: "list";
359
359
  plus: "plus";
360
360
  minus: "minus";
361
361
  close: "close";
@@ -416,10 +416,10 @@ declare const catalog: import("@json-render/core").Catalog<{
416
416
  ChevronIcon: {
417
417
  props: z.ZodObject<{
418
418
  direction: z.ZodEnum<{
419
- left: "left";
420
- right: "right";
421
419
  up: "up";
422
420
  down: "down";
421
+ right: "right";
422
+ left: "left";
423
423
  }>;
424
424
  size: z.ZodOptional<z.ZodEnum<{
425
425
  sm: "sm";
@@ -433,9 +433,9 @@ declare const catalog: import("@json-render/core").Catalog<{
433
433
  props: z.ZodObject<{
434
434
  status: z.ZodEnum<{
435
435
  success: "success";
436
+ error: "error";
436
437
  info: "info";
437
438
  warning: "warning";
438
- error: "error";
439
439
  }>;
440
440
  size: z.ZodOptional<z.ZodEnum<{
441
441
  sm: "sm";
@@ -448,10 +448,10 @@ declare const catalog: import("@json-render/core").Catalog<{
448
448
  IconButton: {
449
449
  props: z.ZodObject<{
450
450
  icon: z.ZodEnum<{
451
- form: "form";
452
- list: "list";
453
451
  link: "link";
454
452
  check: "check";
453
+ form: "form";
454
+ list: "list";
455
455
  plus: "plus";
456
456
  minus: "minus";
457
457
  close: "close";
@@ -508,9 +508,9 @@ declare const catalog: import("@json-render/core").Catalog<{
508
508
  lg: "lg";
509
509
  }>>;
510
510
  color: z.ZodOptional<z.ZodEnum<{
511
- transparent: "transparent";
512
511
  primary: "primary";
513
512
  secondary: "secondary";
513
+ transparent: "transparent";
514
514
  base: "base";
515
515
  }>>;
516
516
  }, z.core.$strip>;
@@ -628,10 +628,10 @@ declare const catalog: import("@json-render/core").Catalog<{
628
628
  triggerLabel: z.ZodString;
629
629
  title: z.ZodString;
630
630
  type: z.ZodOptional<z.ZodEnum<{
631
- bottom: "bottom";
632
- left: "left";
633
631
  right: "right";
632
+ left: "left";
634
633
  center: "center";
634
+ bottom: "bottom";
635
635
  }>>;
636
636
  }, z.core.$strip>;
637
637
  slots: string[];
@@ -650,8 +650,8 @@ declare const catalog: import("@json-render/core").Catalog<{
650
650
  triggerLabel: z.ZodString;
651
651
  title: z.ZodString;
652
652
  side: z.ZodOptional<z.ZodEnum<{
653
- left: "left";
654
653
  right: "right";
654
+ left: "left";
655
655
  }>>;
656
656
  }, z.core.$strip>;
657
657
  slots: string[];
@@ -685,9 +685,9 @@ declare const catalog: import("@json-render/core").Catalog<{
685
685
  triggerLabel: z.ZodString;
686
686
  tone: z.ZodEnum<{
687
687
  success: "success";
688
+ error: "error";
688
689
  info: "info";
689
690
  warning: "warning";
690
- error: "error";
691
691
  }>;
692
692
  message: z.ZodString;
693
693
  }, z.core.$strip>;
@@ -23,99 +23,13 @@ type ContainerRenderProps<P> = ComponentRenderProps<P & {
23
23
  typeName: string;
24
24
  }>;
25
25
  }>;
26
- declare const library: import("@openuidev/lang-core").Library<(({
27
- props,
28
- renderNode
29
- }: ContainerRenderProps<StackProps>) => ReactNode) | (({
30
- props,
31
- renderNode
32
- }: ContainerRenderProps<GridProps>) => ReactNode) | (({
33
- props,
34
- renderNode
35
- }: ContainerRenderProps<CardProps>) => ReactNode) | (({
36
- props,
37
- renderNode
38
- }: ContainerRenderProps<FormProps>) => ReactNode) | (({
39
- props,
40
- renderNode
41
- }: ContainerRenderProps<ModalProps>) => import("react/jsx-runtime").JSX.Element) | (({
42
- props,
43
- renderNode
44
- }: ContainerRenderProps<DialogProps>) => import("react/jsx-runtime").JSX.Element) | (({
45
- props,
46
- renderNode
47
- }: ContainerRenderProps<DrawerProps>) => import("react/jsx-runtime").JSX.Element) | (({
48
- props,
49
- renderNode
50
- }: ContainerRenderProps<PopoverProps>) => ReactNode) | (({
51
- props
52
- }: ComponentRenderProps<TooltipProps>) => ReactNode) | (({
53
- props
54
- }: ComponentRenderProps<DropdownMenuProps>) => ReactNode) | (({
55
- props
56
- }: ComponentRenderProps<ToastProps>) => import("react/jsx-runtime").JSX.Element) | (({
57
- props
58
- }: ComponentRenderProps<ButtonProps>) => ReactNode) | (({
59
- props
60
- }: ComponentRenderProps<IconButtonProps>) => ReactNode) | (({
61
- props
62
- }: ComponentRenderProps<BadgeProps>) => ReactNode) | (({
63
- props
64
- }: ComponentRenderProps<HeadingProps>) => ReactNode) | (({
65
- props
66
- }: ComponentRenderProps<AnchorProps>) => ReactNode) | (({
67
- props
68
- }: ComponentRenderProps<AvatarProps>) => ReactNode) | (({
69
- props
70
- }: ComponentRenderProps<CodeProps>) => ReactNode) | (({
71
- props
72
- }: ComponentRenderProps<IconProps>) => ReactNode) | (({
73
- props
74
- }: ComponentRenderProps<ChevronIconProps>) => ReactNode) | (({
75
- props
76
- }: ComponentRenderProps<StatusIconProps>) => ReactNode) | (({
77
- props
78
- }: ComponentRenderProps<AlertProps>) => ReactNode) | (({
79
- props
80
- }: ComponentRenderProps<SpinnerProps>) => ReactNode) | (({
81
- props
82
- }: ComponentRenderProps<ProgressProps>) => ReactNode) | (({
83
- props
84
- }: ComponentRenderProps<SkeletonProps>) => ReactNode) | (({
85
- props
86
- }: ComponentRenderProps<SeparatorProps>) => ReactNode) | (({
87
- props
88
- }: ComponentRenderProps<ScrollLinkedProps>) => ReactNode) | (({
89
- props
90
- }: ComponentRenderProps<BaselineStatusProps>) => ReactNode) | (({
91
- props
92
- }: ComponentRenderProps<TabsProps>) => ReactNode) | (({
93
- props
94
- }: ComponentRenderProps<AccordionProps>) => ReactNode) | (({
95
- props
96
- }: ComponentRenderProps<BreadcrumbProps>) => ReactNode) | (({
97
- props
98
- }: ComponentRenderProps<TableProps>) => ReactNode) | import("react").FC<ComponentRenderProps<{
26
+ declare const library: import("@openuidev/lang-core").Library<import("react").FC<ComponentRenderProps<{
99
27
  name: string;
100
28
  placeholder?: string | undefined;
101
29
  defaultValue?: string | undefined;
102
30
  invalid?: boolean | undefined;
103
31
  disabled?: boolean | undefined;
104
32
  readOnly?: boolean | undefined;
105
- }>> | import("react").FC<ComponentRenderProps<{
106
- name: string;
107
- placeholder?: string | undefined;
108
- defaultValue?: string | undefined;
109
- invalid?: boolean | undefined;
110
- disabled?: boolean | undefined;
111
- }>> | import("react").FC<ComponentRenderProps<{
112
- name: string;
113
- defaultValue?: number | undefined;
114
- min?: number | undefined;
115
- max?: number | undefined;
116
- step?: number | undefined;
117
- invalid?: boolean | undefined;
118
- disabled?: boolean | undefined;
119
33
  }>> | import("react").FC<ComponentRenderProps<{
120
34
  name: string;
121
35
  label: string;
@@ -137,6 +51,20 @@ declare const library: import("@openuidev/lang-core").Library<(({
137
51
  defaultValue?: string | undefined;
138
52
  invalid?: boolean | undefined;
139
53
  disabled?: boolean | undefined;
54
+ }>> | import("react").FC<ComponentRenderProps<{
55
+ name: string;
56
+ placeholder?: string | undefined;
57
+ defaultValue?: string | undefined;
58
+ invalid?: boolean | undefined;
59
+ disabled?: boolean | undefined;
60
+ }>> | import("react").FC<ComponentRenderProps<{
61
+ name: string;
62
+ defaultValue?: number | undefined;
63
+ min?: number | undefined;
64
+ max?: number | undefined;
65
+ step?: number | undefined;
66
+ invalid?: boolean | undefined;
67
+ disabled?: boolean | undefined;
140
68
  }>> | import("react").FC<ComponentRenderProps<{
141
69
  name: string;
142
70
  label: string;
@@ -200,6 +128,78 @@ declare const library: import("@openuidev/lang-core").Library<(({
200
128
  invalid?: boolean | undefined;
201
129
  disabled?: boolean | undefined;
202
130
  }>> | (({
131
+ props,
132
+ renderNode
133
+ }: ContainerRenderProps<StackProps>) => ReactNode) | (({
134
+ props,
135
+ renderNode
136
+ }: ContainerRenderProps<GridProps>) => ReactNode) | (({
137
+ props,
138
+ renderNode
139
+ }: ContainerRenderProps<CardProps>) => ReactNode) | (({
140
+ props,
141
+ renderNode
142
+ }: ContainerRenderProps<FormProps>) => ReactNode) | (({
143
+ props,
144
+ renderNode
145
+ }: ContainerRenderProps<ModalProps>) => import("react/jsx-runtime").JSX.Element) | (({
146
+ props,
147
+ renderNode
148
+ }: ContainerRenderProps<DialogProps>) => import("react/jsx-runtime").JSX.Element) | (({
149
+ props,
150
+ renderNode
151
+ }: ContainerRenderProps<DrawerProps>) => import("react/jsx-runtime").JSX.Element) | (({
152
+ props,
153
+ renderNode
154
+ }: ContainerRenderProps<PopoverProps>) => ReactNode) | (({
155
+ props
156
+ }: ComponentRenderProps<TooltipProps>) => ReactNode) | (({
157
+ props
158
+ }: ComponentRenderProps<DropdownMenuProps>) => ReactNode) | (({
159
+ props
160
+ }: ComponentRenderProps<ToastProps>) => import("react/jsx-runtime").JSX.Element) | (({
161
+ props
162
+ }: ComponentRenderProps<ButtonProps>) => ReactNode) | (({
163
+ props
164
+ }: ComponentRenderProps<IconButtonProps>) => ReactNode) | (({
165
+ props
166
+ }: ComponentRenderProps<BadgeProps>) => ReactNode) | (({
167
+ props
168
+ }: ComponentRenderProps<HeadingProps>) => ReactNode) | (({
169
+ props
170
+ }: ComponentRenderProps<AnchorProps>) => ReactNode) | (({
171
+ props
172
+ }: ComponentRenderProps<AvatarProps>) => ReactNode) | (({
173
+ props
174
+ }: ComponentRenderProps<CodeProps>) => ReactNode) | (({
175
+ props
176
+ }: ComponentRenderProps<IconProps>) => ReactNode) | (({
177
+ props
178
+ }: ComponentRenderProps<ChevronIconProps>) => ReactNode) | (({
179
+ props
180
+ }: ComponentRenderProps<StatusIconProps>) => ReactNode) | (({
181
+ props
182
+ }: ComponentRenderProps<AlertProps>) => ReactNode) | (({
183
+ props
184
+ }: ComponentRenderProps<SpinnerProps>) => ReactNode) | (({
185
+ props
186
+ }: ComponentRenderProps<ProgressProps>) => ReactNode) | (({
187
+ props
188
+ }: ComponentRenderProps<SkeletonProps>) => ReactNode) | (({
189
+ props
190
+ }: ComponentRenderProps<SeparatorProps>) => ReactNode) | (({
191
+ props
192
+ }: ComponentRenderProps<ScrollLinkedProps>) => ReactNode) | (({
193
+ props
194
+ }: ComponentRenderProps<BaselineStatusProps>) => ReactNode) | (({
195
+ props
196
+ }: ComponentRenderProps<TabsProps>) => ReactNode) | (({
197
+ props
198
+ }: ComponentRenderProps<AccordionProps>) => ReactNode) | (({
199
+ props
200
+ }: ComponentRenderProps<BreadcrumbProps>) => ReactNode) | (({
201
+ props
202
+ }: ComponentRenderProps<TableProps>) => ReactNode) | (({
203
203
  props
204
204
  }: ComponentRenderProps<FileFieldProps>) => import("react/jsx-runtime").JSX.Element) | (({
205
205
  props
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k8o/arte-odyssey",
3
- "version": "10.7.0",
3
+ "version": "10.8.0",
4
4
  "description": "k8o's React UI library with built-in generative UI adapters (json-render & OpenUI) for LLM-driven, on-brand interfaces",
5
5
  "keywords": [
6
6
  "ai",