@k8o/arte-odyssey 10.7.0 → 10.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/form/checkbox-group/index.d.mts +3 -3
- package/dist/components/icons/color-scale.d.mts +7 -0
- package/dist/components/icons/color-scale.mjs +43 -0
- package/dist/components/icons/index.d.mts +3 -2
- package/dist/components/icons/index.mjs +3 -2
- package/dist/components/icons/lucide-imports.d.mts +2 -1
- package/dist/components/icons/lucide-imports.mjs +2 -1
- package/dist/components/icons/lucide.d.mts +2 -1
- package/dist/components/icons/lucide.mjs +6 -2
- package/dist/components/index.d.mts +3 -2
- package/dist/components/index.mjs +3 -2
- package/dist/index.d.mts +3 -2
- package/dist/index.mjs +3 -2
- package/dist/integrations/_shared/schemas.d.mts +12 -12
- package/dist/integrations/json-render/catalog.d.mts +10 -10
- package/dist/integrations/openui/library.d.mts +87 -87
- package/package.json +1 -1
|
@@ -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>, "
|
|
6
|
+
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "defaultValue" | "onChange" | "className" | "style" | "name"> & {
|
|
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>, "
|
|
21
|
+
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "defaultValue" | "onChange" | "className" | "style" | "name"> & {
|
|
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>, "
|
|
36
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type" | "className" | "style" | "checked" | "defaultChecked" | "children"> & ({
|
|
37
37
|
value: boolean;
|
|
38
38
|
onChange: (checked: boolean, event: import("react").ChangeEvent<HTMLInputElement>) => void;
|
|
39
39
|
defaultChecked?: never;
|
|
@@ -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
|
-
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
|
+
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, RefreshIcon, 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, RefreshIcon, 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
|
-
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
|
+
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, RefreshIcon, 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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, TwitterIcon, UpdateDateIcon, VerticalWritingIcon, ViewIcon, ViewOffIcon };
|
|
@@ -46,6 +46,7 @@ import PaintBucket from "lucide-react/dist/esm/icons/paint-bucket.mjs";
|
|
|
46
46
|
import Palette from "lucide-react/dist/esm/icons/palette.mjs";
|
|
47
47
|
import Plus from "lucide-react/dist/esm/icons/plus.mjs";
|
|
48
48
|
import Presentation from "lucide-react/dist/esm/icons/presentation.mjs";
|
|
49
|
+
import RefreshCw from "lucide-react/dist/esm/icons/refresh-cw.mjs";
|
|
49
50
|
import Rocket from "lucide-react/dist/esm/icons/rocket.mjs";
|
|
50
51
|
import Rss from "lucide-react/dist/esm/icons/rss.mjs";
|
|
51
52
|
import Send from "lucide-react/dist/esm/icons/send.mjs";
|
|
@@ -61,4 +62,4 @@ import ThumbsDown from "lucide-react/dist/esm/icons/thumbs-down.mjs";
|
|
|
61
62
|
import ThumbsUp from "lucide-react/dist/esm/icons/thumbs-up.mjs";
|
|
62
63
|
import TriangleAlert from "lucide-react/dist/esm/icons/triangle-alert.mjs";
|
|
63
64
|
import X from "lucide-react/dist/esm/icons/x.mjs";
|
|
64
|
-
export { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X };
|
|
65
|
+
export { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, RefreshCw, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X };
|
|
@@ -46,6 +46,7 @@ import PaintBucket from "lucide-react/dist/esm/icons/paint-bucket.mjs";
|
|
|
46
46
|
import Palette from "lucide-react/dist/esm/icons/palette.mjs";
|
|
47
47
|
import Plus from "lucide-react/dist/esm/icons/plus.mjs";
|
|
48
48
|
import Presentation from "lucide-react/dist/esm/icons/presentation.mjs";
|
|
49
|
+
import RefreshCw from "lucide-react/dist/esm/icons/refresh-cw.mjs";
|
|
49
50
|
import Rocket from "lucide-react/dist/esm/icons/rocket.mjs";
|
|
50
51
|
import Rss from "lucide-react/dist/esm/icons/rss.mjs";
|
|
51
52
|
import Send from "lucide-react/dist/esm/icons/send.mjs";
|
|
@@ -61,4 +62,4 @@ import ThumbsDown from "lucide-react/dist/esm/icons/thumbs-down.mjs";
|
|
|
61
62
|
import ThumbsUp from "lucide-react/dist/esm/icons/thumbs-up.mjs";
|
|
62
63
|
import TriangleAlert from "lucide-react/dist/esm/icons/triangle-alert.mjs";
|
|
63
64
|
import X from "lucide-react/dist/esm/icons/x.mjs";
|
|
64
|
-
export { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X };
|
|
65
|
+
export { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, RefreshCw, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X };
|
|
@@ -42,6 +42,7 @@ declare const AIIcon: FC<IconProps>;
|
|
|
42
42
|
declare const AssistantIcon: FC<IconProps>;
|
|
43
43
|
declare const RSSIcon: FC<IconProps>;
|
|
44
44
|
declare const HistoryIcon: FC<IconProps>;
|
|
45
|
+
declare const RefreshIcon: FC<IconProps>;
|
|
45
46
|
declare const ListIcon: FC<IconProps>;
|
|
46
47
|
declare const NavigationMenuIcon: FC<IconProps>;
|
|
47
48
|
declare const GoodIcon: FC<IconProps>;
|
|
@@ -66,4 +67,4 @@ declare const FullscreenIcon: FC<IconProps>;
|
|
|
66
67
|
declare const LockIcon: FC<IconProps>;
|
|
67
68
|
declare const LockOpenIcon: FC<IconProps>;
|
|
68
69
|
//#endregion
|
|
69
|
-
export { 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 };
|
|
70
|
+
export { 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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseIcon } from "./base.mjs";
|
|
2
|
-
import { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X } from "./lucide-imports.mjs";
|
|
2
|
+
import { Accessibility, AlignRight, Angry, Annoyed, Atom, Bell, Blend, BookOpenText, BookText, Bookmark, Bot, BotMessageSquare, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleAlert, CircleCheck, ClipboardPenLine, Clock, CodeXml, Contrast, Droplets, ExternalLink, Eye, EyeOff, FlaskConical, GitFork, History, Info, Laugh, Lightbulb, Link, List, ListMinus, Lock, LockOpen, Mail, MapPin, Maximize, Minus, MoonStar, Package, PaintBucket, Palette, Plus, Presentation, RefreshCw, Rocket, Rss, Send, ShieldCheck, Smile, Sparkles, Squircle, Sun, Table2, Tag, ThumbsDown, ThumbsUp, TriangleAlert, X } from "./lucide-imports.mjs";
|
|
3
3
|
import { jsx } from "react/jsx-runtime";
|
|
4
4
|
//#region src/components/icons/lucide.tsx
|
|
5
5
|
const CHEVRON_BY_DIRECTION = {
|
|
@@ -156,6 +156,10 @@ const HistoryIcon = ({ size = "md" }) => /* @__PURE__ */ jsx(BaseIcon, {
|
|
|
156
156
|
renderItem: (props) => /* @__PURE__ */ jsx(History, { ...props }),
|
|
157
157
|
size
|
|
158
158
|
});
|
|
159
|
+
const RefreshIcon = ({ size = "md" }) => /* @__PURE__ */ jsx(BaseIcon, {
|
|
160
|
+
renderItem: (props) => /* @__PURE__ */ jsx(RefreshCw, { ...props }),
|
|
161
|
+
size
|
|
162
|
+
});
|
|
159
163
|
const ListIcon = ({ size = "md" }) => /* @__PURE__ */ jsx(BaseIcon, {
|
|
160
164
|
renderItem: (props) => /* @__PURE__ */ jsx(List, { ...props }),
|
|
161
165
|
size
|
|
@@ -249,4 +253,4 @@ const LockOpenIcon = ({ size = "md" }) => /* @__PURE__ */ jsx(BaseIcon, {
|
|
|
249
253
|
size
|
|
250
254
|
});
|
|
251
255
|
//#endregion
|
|
252
|
-
export { 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 };
|
|
256
|
+
export { 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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon };
|
|
@@ -32,9 +32,10 @@ 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
|
-
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";
|
|
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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./icons/lucide.mjs";
|
|
38
39
|
import { QiitaIcon } from "./icons/qiita.mjs";
|
|
39
40
|
import { TwitterIcon } from "./icons/twitter.mjs";
|
|
40
41
|
import { VerticalWritingIcon } from "./icons/vertical-writing.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, RefreshIcon, 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,9 +5,10 @@ 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
|
-
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";
|
|
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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./icons/lucide.mjs";
|
|
11
12
|
import { QiitaIcon } from "./icons/qiita.mjs";
|
|
12
13
|
import { TwitterIcon } from "./icons/twitter.mjs";
|
|
13
14
|
import { VerticalWritingIcon } from "./icons/vertical-writing.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, RefreshIcon, 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,9 +33,10 @@ 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
|
-
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";
|
|
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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./components/icons/lucide.mjs";
|
|
39
40
|
import { QiitaIcon } from "./components/icons/qiita.mjs";
|
|
40
41
|
import { TwitterIcon } from "./components/icons/twitter.mjs";
|
|
41
42
|
import { VerticalWritingIcon } from "./components/icons/vertical-writing.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, RefreshIcon, 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,9 +33,10 @@ 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
|
-
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";
|
|
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, RefreshIcon, SendIcon, ShallowIcon, ShieldCheckIcon, SlideIcon, SparklesIcon, SquircleIcon, SubscribeIcon, TableIcon, TagIcon, UpdateDateIcon, ViewIcon, ViewOffIcon } from "./components/icons/lucide.mjs";
|
|
39
40
|
import { QiitaIcon } from "./components/icons/qiita.mjs";
|
|
40
41
|
import { TwitterIcon } from "./components/icons/twitter.mjs";
|
|
41
42
|
import { VerticalWritingIcon } from "./components/icons/vertical-writing.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, RefreshIcon, 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,9 +215,9 @@ 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>;
|
|
@@ -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<{
|
|
@@ -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";
|
|
@@ -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";
|
|
@@ -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";
|
|
@@ -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>;
|
|
@@ -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