@x-plat/design-system 0.3.2 → 0.3.4
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/{colors-BgzpjYfN.d.cts → colors-B2QFkaH-.d.cts} +12 -34
- package/dist/{colors-BgzpjYfN.d.ts → colors-B2QFkaH-.d.ts} +12 -34
- package/dist/components/Accordion/index.css +3 -0
- package/dist/components/Avatar/index.d.cts +1 -1
- package/dist/components/Avatar/index.d.ts +1 -1
- package/dist/components/Badge/index.d.cts +1 -1
- package/dist/components/Badge/index.d.ts +1 -1
- package/dist/components/Button/index.d.cts +1 -1
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/CheckBox/index.d.cts +1 -1
- package/dist/components/CheckBox/index.d.ts +1 -1
- package/dist/components/Chip/index.d.cts +1 -1
- package/dist/components/Chip/index.d.ts +1 -1
- package/dist/components/DatePicker/index.d.cts +1 -1
- package/dist/components/DatePicker/index.d.ts +1 -1
- package/dist/components/Pagination/index.d.cts +1 -1
- package/dist/components/Pagination/index.d.ts +1 -1
- package/dist/components/Progress/index.d.cts +1 -1
- package/dist/components/Progress/index.d.ts +1 -1
- package/dist/components/Radio/index.d.cts +1 -1
- package/dist/components/Radio/index.d.ts +1 -1
- package/dist/components/Spinner/index.d.cts +1 -1
- package/dist/components/Spinner/index.d.ts +1 -1
- package/dist/components/Steps/index.d.cts +1 -1
- package/dist/components/Steps/index.d.ts +1 -1
- package/dist/components/Switch/index.d.cts +1 -1
- package/dist/components/Switch/index.d.ts +1 -1
- package/dist/components/Table/index.d.cts +1 -1
- package/dist/components/Table/index.d.ts +1 -1
- package/dist/components/Tag/index.d.cts +1 -1
- package/dist/components/Tag/index.d.ts +1 -1
- package/dist/components/Tooltip/index.d.cts +1 -1
- package/dist/components/Tooltip/index.d.ts +1 -1
- package/dist/components/index.css +3 -0
- package/dist/components/index.d.cts +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/index.css +3 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/tokens/index.d.cts +1 -1
- package/dist/tokens/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -121,43 +121,21 @@ declare const colors: {
|
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
/**
|
|
125
|
-
* 브랜드 토큰 패키지에서 확장 가능한 인터페이스.
|
|
126
|
-
* declare module "@x-plat/design-system" 로 머지하면 됨.
|
|
127
|
-
*
|
|
128
|
-
* @example
|
|
129
|
-
* // @x-plat/tokens-cbio/types.d.ts
|
|
130
|
-
* declare module "@x-plat/design-system" {
|
|
131
|
-
* interface CustomNamespaces {
|
|
132
|
-
* cbio: {
|
|
133
|
-
* green: { 500: string; 600: string };
|
|
134
|
-
* primitive: { 500: string };
|
|
135
|
-
* };
|
|
136
|
-
* }
|
|
137
|
-
* interface CustomColors {
|
|
138
|
-
* textColor: { 500: string };
|
|
139
|
-
* }
|
|
140
|
-
* }
|
|
141
|
-
*/
|
|
142
|
-
interface CustomColors {
|
|
143
|
-
}
|
|
144
|
-
interface CustomNamespaces {
|
|
145
|
-
}
|
|
146
124
|
type DefaultColors = typeof colors;
|
|
147
|
-
type
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
type
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
125
|
+
type BuildDefaultTokens<N extends keyof DefaultColors> = {
|
|
126
|
+
[C in keyof DefaultColors[N]]: DefaultColors[N][C] extends string ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${keyof DefaultColors[N][C] & (string | number)}`;
|
|
127
|
+
}[keyof DefaultColors[N]];
|
|
128
|
+
type DefaultColorToken = {
|
|
129
|
+
[N in keyof DefaultColors]: BuildDefaultTokens<N>;
|
|
130
|
+
}[keyof DefaultColors];
|
|
131
|
+
/** 브랜드 토큰 확장 포인트. declare module "@x-plat/design-system" 로 머지. */
|
|
132
|
+
interface ColorTokenRegistry {
|
|
133
|
+
}
|
|
134
|
+
type ExternalColorTokens = ColorTokenRegistry extends Record<string, infer T> ? T extends string ? T : never : never;
|
|
135
|
+
type ColorToken = DefaultColorToken | ExternalColorTokens;
|
|
158
136
|
interface ColorProps {
|
|
159
137
|
/** "xplat-blue-500" 형태로 지정 (자동완성 지원) */
|
|
160
138
|
color?: ColorToken;
|
|
161
139
|
}
|
|
162
140
|
|
|
163
|
-
export { type
|
|
141
|
+
export { type ColorTokenRegistry as C, type ColorToken as a, type ColorProps as b, colors as c };
|
|
@@ -121,43 +121,21 @@ declare const colors: {
|
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
/**
|
|
125
|
-
* 브랜드 토큰 패키지에서 확장 가능한 인터페이스.
|
|
126
|
-
* declare module "@x-plat/design-system" 로 머지하면 됨.
|
|
127
|
-
*
|
|
128
|
-
* @example
|
|
129
|
-
* // @x-plat/tokens-cbio/types.d.ts
|
|
130
|
-
* declare module "@x-plat/design-system" {
|
|
131
|
-
* interface CustomNamespaces {
|
|
132
|
-
* cbio: {
|
|
133
|
-
* green: { 500: string; 600: string };
|
|
134
|
-
* primitive: { 500: string };
|
|
135
|
-
* };
|
|
136
|
-
* }
|
|
137
|
-
* interface CustomColors {
|
|
138
|
-
* textColor: { 500: string };
|
|
139
|
-
* }
|
|
140
|
-
* }
|
|
141
|
-
*/
|
|
142
|
-
interface CustomColors {
|
|
143
|
-
}
|
|
144
|
-
interface CustomNamespaces {
|
|
145
|
-
}
|
|
146
124
|
type DefaultColors = typeof colors;
|
|
147
|
-
type
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
type
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
125
|
+
type BuildDefaultTokens<N extends keyof DefaultColors> = {
|
|
126
|
+
[C in keyof DefaultColors[N]]: DefaultColors[N][C] extends string ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${keyof DefaultColors[N][C] & (string | number)}`;
|
|
127
|
+
}[keyof DefaultColors[N]];
|
|
128
|
+
type DefaultColorToken = {
|
|
129
|
+
[N in keyof DefaultColors]: BuildDefaultTokens<N>;
|
|
130
|
+
}[keyof DefaultColors];
|
|
131
|
+
/** 브랜드 토큰 확장 포인트. declare module "@x-plat/design-system" 로 머지. */
|
|
132
|
+
interface ColorTokenRegistry {
|
|
133
|
+
}
|
|
134
|
+
type ExternalColorTokens = ColorTokenRegistry extends Record<string, infer T> ? T extends string ? T : never : never;
|
|
135
|
+
type ColorToken = DefaultColorToken | ExternalColorTokens;
|
|
158
136
|
interface ColorProps {
|
|
159
137
|
/** "xplat-blue-500" 형태로 지정 (자동완성 지원) */
|
|
160
138
|
color?: ColorToken;
|
|
161
139
|
}
|
|
162
140
|
|
|
163
|
-
export { type
|
|
141
|
+
export { type ColorTokenRegistry as C, type ColorToken as a, type ColorProps as b, colors as c };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
|
|
5
5
|
type BadgeSize = "sm" | "md" | "lg";
|
|
6
6
|
interface BadgeProps extends ColorProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
|
|
5
5
|
type BadgeSize = "sm" | "md" | "lg";
|
|
6
6
|
interface BadgeProps extends ColorProps {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { B as ButtonAttributes } from '../../attributes-DJIWir_0.cjs';
|
|
4
|
-
import {
|
|
4
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
5
5
|
|
|
6
6
|
type ButtonType = "primary" | "secondary";
|
|
7
7
|
type ButtonSize = "sm" | "md" | "lg";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { B as ButtonAttributes } from '../../attributes-DJIWir_0.js';
|
|
4
|
-
import {
|
|
4
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
5
5
|
|
|
6
6
|
type ButtonType = "primary" | "secondary";
|
|
7
7
|
type ButtonSize = "sm" | "md" | "lg";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { I as InputAttributes } from '../../attributes-DJIWir_0.cjs';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
import 'react';
|
|
5
5
|
|
|
6
6
|
type CheckBoxSize = "sm" | "md" | "lg";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { I as InputAttributes } from '../../attributes-DJIWir_0.js';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
|
|
6
6
|
type CheckBoxSize = "sm" | "md" | "lg";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
|
|
5
5
|
type ChipType = "primary" | "secondary";
|
|
6
6
|
type ChipSize = "sm" | "md" | "lg";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
|
|
5
5
|
type ChipType = "primary" | "secondary";
|
|
6
6
|
type ChipSize = "sm" | "md" | "lg";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
3
3
|
|
|
4
4
|
type PaginationSize = "sm" | "md" | "lg";
|
|
5
5
|
interface PaginationProps extends ColorProps {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
3
3
|
|
|
4
4
|
type PaginationSize = "sm" | "md" | "lg";
|
|
5
5
|
interface PaginationProps extends ColorProps {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
3
3
|
|
|
4
4
|
type ProgressSize = "sm" | "md" | "lg";
|
|
5
5
|
interface ProgressProps extends ColorProps {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
3
3
|
|
|
4
4
|
type ProgressSize = "sm" | "md" | "lg";
|
|
5
5
|
interface ProgressProps extends ColorProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { I as InputAttributes } from '../../attributes-DJIWir_0.cjs';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
|
|
6
6
|
type RadioSize = "sm" | "md" | "lg";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { I as InputAttributes } from '../../attributes-DJIWir_0.js';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
|
|
6
6
|
type RadioSize = "sm" | "md" | "lg";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
3
3
|
|
|
4
4
|
type SpinnerSize = "sm" | "md" | "lg";
|
|
5
5
|
interface SpinnerProps extends ColorProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
|
|
5
5
|
type TagSize = "sm" | "md" | "lg";
|
|
6
6
|
interface TagProps extends ColorProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
|
|
5
5
|
type TagSize = "sm" | "md" | "lg";
|
|
6
6
|
interface TagProps extends ColorProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
|
|
4
4
|
|
|
5
5
|
interface TooltipProps extends ColorProps {
|
|
6
6
|
type?: "primary" | "secondary";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { b as ColorProps } from '../../colors-B2QFkaH-.js';
|
|
4
4
|
|
|
5
5
|
interface TooltipProps extends ColorProps {
|
|
6
6
|
type?: "primary" | "secondary";
|
|
@@ -38,5 +38,5 @@ export { Tooltip } from './Tooltip/index.cjs';
|
|
|
38
38
|
export { Video, VideoProps } from './Video/index.cjs';
|
|
39
39
|
import 'react';
|
|
40
40
|
import 'react/jsx-runtime';
|
|
41
|
-
import '../colors-
|
|
41
|
+
import '../colors-B2QFkaH-.cjs';
|
|
42
42
|
import '../attributes-DJIWir_0.cjs';
|
package/dist/index.css
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -43,7 +43,7 @@ export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig
|
|
|
43
43
|
export { Header } from './layout/Header/index.cjs';
|
|
44
44
|
export { Layout } from './layout/Layout/index.cjs';
|
|
45
45
|
export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.cjs';
|
|
46
|
-
export {
|
|
46
|
+
export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from './colors-B2QFkaH-.cjs';
|
|
47
47
|
export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.cjs';
|
|
48
48
|
import 'react';
|
|
49
49
|
import 'react/jsx-runtime';
|
package/dist/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig
|
|
|
43
43
|
export { Header } from './layout/Header/index.js';
|
|
44
44
|
export { Layout } from './layout/Layout/index.js';
|
|
45
45
|
export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.js';
|
|
46
|
-
export {
|
|
46
|
+
export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from './colors-B2QFkaH-.js';
|
|
47
47
|
export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.js';
|
|
48
48
|
import 'react';
|
|
49
49
|
import 'react/jsx-runtime';
|
package/dist/tokens/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig, G as GridSpanFor, c as breakpoints, g as gridColumns } from '../breakpoints-DsXkJgdl.cjs';
|
|
2
|
-
export {
|
|
2
|
+
export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from '../colors-B2QFkaH-.cjs';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
|
|
5
5
|
declare const CopyIcon: React.FC;
|
package/dist/tokens/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig, G as GridSpanFor, c as breakpoints, g as gridColumns } from '../breakpoints-DsXkJgdl.js';
|
|
2
|
-
export {
|
|
2
|
+
export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from '../colors-B2QFkaH-.js';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
|
|
5
5
|
declare const CopyIcon: React.FC;
|