@liner-fe/prism 1.1.21 → 1.3.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/lib/assets/ai.d.ts +7 -0
- package/lib/assets/balance.d.ts +7 -0
- package/lib/assets/books.d.ts +6 -0
- package/lib/assets/chart-bar.d.ts +6 -0
- package/lib/assets/chart-line-uptrend.d.ts +7 -0
- package/lib/assets/check-mark.d.ts +6 -0
- package/lib/assets/close.d.ts +7 -0
- package/lib/assets/document.d.ts +7 -0
- package/lib/assets/exclamationmark.d.ts +7 -0
- package/lib/assets/folder.d.ts +6 -0
- package/lib/assets/globe.d.ts +7 -0
- package/lib/assets/graduationcap.d.ts +6 -0
- package/lib/assets/history.d.ts +7 -0
- package/lib/assets/index.d.ts +28 -0
- package/lib/assets/lock.d.ts +6 -0
- package/lib/assets/memo.d.ts +7 -0
- package/lib/assets/move.d.ts +7 -0
- package/lib/assets/new-thread.d.ts +7 -0
- package/lib/assets/palette.d.ts +7 -0
- package/lib/assets/paperclip.d.ts +6 -0
- package/lib/assets/person-add.d.ts +7 -0
- package/lib/assets/person.d.ts +7 -0
- package/lib/assets/plus.d.ts +7 -0
- package/lib/assets/search.d.ts +7 -0
- package/lib/assets/send.d.ts +7 -0
- package/lib/assets/share.d.ts +7 -0
- package/lib/assets/stack.d.ts +7 -0
- package/lib/assets/start.d.ts +7 -0
- package/lib/assets/trash.d.ts +6 -0
- package/lib/components/DropDown/index.d.ts +1 -0
- package/lib/components/Popover/index.d.ts +37 -0
- package/lib/components/Popover/index.stories.d.ts +36 -0
- package/lib/components/Toast/hooks/useToast.d.ts +4 -0
- package/lib/components/Toast/index.stories.d.ts +6 -0
- package/lib/components/Toast/inedx.d.ts +8 -0
- package/lib/components/Tooltip/index.d.ts +17 -0
- package/lib/components/Tooltip/index.stories.d.ts +13 -0
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export { ICPaperclip } from './paperclip';
|
|
2
|
+
export { ICFolder } from './folder';
|
|
3
|
+
export { ICTrash } from './trash';
|
|
4
|
+
export { ICBooks } from './books';
|
|
5
|
+
export { ICChartBar } from './chart-bar';
|
|
6
|
+
export { ICLock } from './lock';
|
|
7
|
+
export { ICCheckMark } from './check-mark';
|
|
8
|
+
export { ICGraduationcap } from './graduationcap';
|
|
9
|
+
export { ICMove } from './move';
|
|
10
|
+
export { ICNewThread } from './new-thread';
|
|
11
|
+
export { ICPalette } from './palette';
|
|
12
|
+
export { ICMemo } from './memo';
|
|
13
|
+
export { ICSearch } from './search';
|
|
14
|
+
export { ICStart } from './start';
|
|
15
|
+
export { ICHistory } from './history';
|
|
16
|
+
export { ICChartLineUptrend } from './chart-line-uptrend';
|
|
17
|
+
export { ICGlobe } from './globe';
|
|
18
|
+
export { ICShare } from './share';
|
|
19
|
+
export { ICStack } from './stack';
|
|
20
|
+
export { ICPlus } from './plus';
|
|
21
|
+
export { ICBalance } from './balance';
|
|
22
|
+
export { ICExclamationmark } from './exclamationmark';
|
|
23
|
+
export { ICSend } from './send';
|
|
24
|
+
export { ICPersonAdd } from './person-add';
|
|
25
|
+
export { ICAi } from './ai';
|
|
26
|
+
export { ICPerson } from './person';
|
|
27
|
+
export { ICClose } from './close';
|
|
28
|
+
export { ICDocument } from './document';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DropDown: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
3
|
+
import { ReactNode } from 'react';
|
|
4
|
+
/**
|
|
5
|
+
* PopoverRoot
|
|
6
|
+
*/
|
|
7
|
+
interface PopoverRootProps {
|
|
8
|
+
isOpen?: boolean;
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
onChange?: (isOpen: boolean) => void;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* PopoverTrigger
|
|
14
|
+
*/
|
|
15
|
+
interface PopoverTriggerProps {
|
|
16
|
+
by?: ReactNode;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* PopoverContent
|
|
20
|
+
*/
|
|
21
|
+
export interface PopoverContentProps {
|
|
22
|
+
level?: 'primary' | 'secondary';
|
|
23
|
+
tag?: string;
|
|
24
|
+
title?: string;
|
|
25
|
+
subTitle?: string;
|
|
26
|
+
position?: 'top' | 'right' | 'bottom' | 'left';
|
|
27
|
+
align?: 'start' | 'center' | 'end';
|
|
28
|
+
confirmText?: string;
|
|
29
|
+
onConfirm?: () => void;
|
|
30
|
+
}
|
|
31
|
+
export declare const Popover: (({ isOpen, children, onChange }: PopoverRootProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
32
|
+
Trigger: ({ by }: PopoverTriggerProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
Content: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
Arrow: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>>;
|
|
35
|
+
Close: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
36
|
+
};
|
|
37
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { Popover } from '.';
|
|
3
|
+
declare const meta: Meta<typeof Popover.Content>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
/**
|
|
7
|
+
* 기본 팝오버
|
|
8
|
+
*/
|
|
9
|
+
export declare const Default: Story;
|
|
10
|
+
/**
|
|
11
|
+
* 팝오버 - level 종류
|
|
12
|
+
*/
|
|
13
|
+
export declare const Level: Story;
|
|
14
|
+
/**
|
|
15
|
+
* 팝오버 - tag 여부
|
|
16
|
+
*/
|
|
17
|
+
export declare const Tag: Story;
|
|
18
|
+
/**
|
|
19
|
+
* 팝오버 - subTitle 여부
|
|
20
|
+
*/
|
|
21
|
+
export declare const SubTitle: Story;
|
|
22
|
+
/**
|
|
23
|
+
* 팝오버 - position & align 종류
|
|
24
|
+
*/
|
|
25
|
+
export declare const PosititonAlign: Story;
|
|
26
|
+
/**
|
|
27
|
+
* 팝오버 - onConfirm 여부
|
|
28
|
+
*/
|
|
29
|
+
export declare const Confirm: Story;
|
|
30
|
+
/**
|
|
31
|
+
* 팝오버 - isOpen Controlled 여부
|
|
32
|
+
*/
|
|
33
|
+
export declare const Controlled: Story;
|
|
34
|
+
/**
|
|
35
|
+
* TODO: 팝오버 - icon 여부
|
|
36
|
+
*/
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ToastProps } from '@radix-ui/react-toast';
|
|
2
|
+
import './style.css';
|
|
3
|
+
import { RefAttributes } from 'react';
|
|
4
|
+
interface IProps extends ToastProps, RefAttributes<HTMLLIElement> {
|
|
5
|
+
message: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const Toast: (props: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
2
|
+
import React, { ReactNode } from 'react';
|
|
3
|
+
interface TooltipContentProps {
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
description?: string;
|
|
6
|
+
position?: 'top' | 'right' | 'bottom' | 'left';
|
|
7
|
+
}
|
|
8
|
+
export declare const Tooltip: (({ children }: {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element) & {
|
|
11
|
+
Provider: React.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
12
|
+
Trigger: ({ by }: {
|
|
13
|
+
by: ReactNode;
|
|
14
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
Content: React.ForwardRefExoticComponent<TooltipContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
};
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { Tooltip } from '.';
|
|
3
|
+
declare const meta: Meta<typeof Tooltip.Content>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
/**
|
|
7
|
+
* 기본 툴팁
|
|
8
|
+
*/
|
|
9
|
+
export declare const Default: Story;
|
|
10
|
+
/**
|
|
11
|
+
* 방향별 툴팁
|
|
12
|
+
*/
|
|
13
|
+
export declare const Position: Story;
|
package/lib/index.mjs
CHANGED
package/lib/index.mjs.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/utils/object.ts", "../src/components/Button/index.tsx", "../src/components/Button/style.module.scss"],
|
|
4
|
-
"sourcesContent": ["export const objectToArray = <T extends Record<string, any>>(obj: T) => {\n return Object.entries(obj);\n};\n", "import { ButtonHTMLAttributes, forwardRef } from 'react';\n\nimport style from './style.module.scss';\nimport { VariantProps, cva } from 'class-variance-authority';\nimport { Slot } from '@radix-ui/react-slot';\nimport clsx from 'clsx';\n\nconst defaultButtonVariants = cva([style.button, style.default], {\n variants: {\n level: {\n primary: style.primary,\n secondary: style.secondary,\n tertiary: style.tertiary,\n quaternary: style.quaternary,\n quinary: style.quinary,\n negative: style.negative,\n inverse: style.inverse,\n },\n align: {\n center: style['align-center'],\n spaceBetween: style['align-space-between'],\n },\n size: {\n cta: style.cta,\n l: style.l,\n m: style.
|
|
5
|
-
"mappings": ";;;;AAAO,IAAM,gBAAgB,wBAAgC,QAAW;AACtE,SAAO,OAAO,QAAQ,GAAG;AAC3B,GAF6B;;;ACA7B,SAA+B,kBAAkB;;;ACAU,IAAO,uBAAQ;AAAA,EACxE,UAAU;AAAA,EACV,WAAW;AAAA,EACX,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,WAAW;AAAA,EACX,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,cAAc;AAAA,EACd,WAAW;AAAA,EACX,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,OAAO;AAAA,EACP,KAAK;AAAA,EACL,KAAK;AAAA,EACL,KAAK;AAAA,EACL,gBAAgB;AAAA,EAChB,uBAAuB;AAAA,EACvB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,0BAA0B;AAC5B;;;ADlBA,SAAuB,WAAW;AAClC,SAAS,YAAY;AACrB,OAAO,UAAU;
|
|
4
|
+
"sourcesContent": ["export const objectToArray = <T extends Record<string, any>>(obj: T) => {\n return Object.entries(obj);\n};\n", "import { ButtonHTMLAttributes, forwardRef } from 'react';\n\nimport style from './style.module.scss';\nimport { VariantProps, cva } from 'class-variance-authority';\nimport { Slot } from '@radix-ui/react-slot';\nimport clsx from 'clsx';\n\nconst defaultButtonVariants = cva([style.button, style.default], {\n variants: {\n level: {\n primary: style.primary,\n secondary: style.secondary,\n tertiary: style.tertiary,\n quaternary: style.quaternary,\n quinary: style.quinary,\n negative: style.negative,\n inverse: style.inverse,\n },\n align: {\n center: style['align-center'],\n spaceBetween: style['align-space-between'],\n },\n size: {\n cta: style.cta,\n l: style.l,\n m: style.m,\n s: style.s,\n },\n },\n});\n\nconst textButtonVariants = cva([style.button, style.text], {\n variants: {\n level: {\n inversePrimary: style['inverse-primary'],\n neutralPrimary: style['neutral-primary'],\n inverseStaticPrimary: style['inverse-static-primary'],\n },\n },\n});\nconst iconButtonVariants = cva([style.button, style.icon], {\n variants: {\n level: {\n primary: style.primary,\n secondary: style.secondary,\n tertiary: style.tertiary,\n quaternary: style.quaternary,\n quinary: style.quinary,\n negative: style.negative,\n },\n weight: {\n //\n },\n },\n});\n\ninterface CommonButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {\n as?: 'default' | 'text' | 'icon';\n asChild?: boolean;\n}\nexport interface DefaultButtonProps extends CommonButtonProps, VariantProps<typeof defaultButtonVariants> {\n as?: 'default';\n asChild?: boolean;\n level?: 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'quinary' | 'negative' | 'inverse';\n size?: 'cta' | 'l' | 'm' | 's';\n align?: 'center' | 'spaceBetween';\n // isLoading?: boolean;\n // leftIcon?: ReactNode;\n // rightIcon?: ReactNode;\n}\nexport interface TextButtonProps extends CommonButtonProps, VariantProps<typeof textButtonVariants> {\n as: 'text';\n asChild?: boolean;\n level?: 'inversePrimary' | 'neutralPrimary' | 'inverseStaticPrimary';\n}\nexport interface IconButtonProps extends CommonButtonProps, VariantProps<typeof iconButtonVariants> {\n as: 'icon';\n asChild?: boolean;\n // weight\n}\nexport type ButtonProps = DefaultButtonProps | TextButtonProps | IconButtonProps;\n\n/**\n * \uBC84\uD2BC \uCEF4\uD3EC\uB10C\uD2B8\n */\nexport const DefaultButton = forwardRef<HTMLButtonElement, DefaultButtonProps>(\n ({ as = 'default', asChild = false, level = 'primary', align = 'center', size = 'cta', ...rest }, ref) => {\n const Comp = asChild ? Slot : 'button';\n\n return <Comp {...rest} className={clsx(defaultButtonVariants({ level, align, size }))} ref={ref} />;\n }\n);\n\nexport const TextButton = forwardRef<HTMLButtonElement, TextButtonProps>(\n ({ as = 'text', asChild = false, level = 'inversePrimary', ...rest }, ref) => {\n const Comp = asChild ? Slot : 'button';\n\n return <Comp {...rest} className={clsx(textButtonVariants({ level }))} ref={ref} />;\n }\n);\n\nexport const IconButton = forwardRef<HTMLButtonElement, IconButtonProps>((props, ref) => {\n const Comp = props.asChild ? Slot : 'button';\n\n return <Comp {...props} className={clsx(iconButtonVariants({ level: props.level }))} ref={ref} />;\n});\n\nexport const Button = forwardRef<HTMLButtonElement, ButtonProps>((props, ref) => {\n const Comp = props.asChild ? Slot : 'button';\n\n switch (props.as) {\n case 'default':\n case undefined:\n const { as, asChild, level = 'primary', align = 'center', size = 'cta', ...rest } = props;\n return <Comp {...rest} className={clsx(defaultButtonVariants({ level, align, size }))} ref={ref} />;\n case 'text':\n const { as: textAs, asChild: textAsChild, level: textLevel = 'inversePrimary', ...textRest } = props;\n return <Comp {...textRest} className={clsx(textButtonVariants({ level: textLevel }))} ref={ref} />;\n // case 'icon':\n // return <Comp {...props} className={clsx(iconButtonVariants({ level: props.level }))} ref={ref} />;\n }\n});\n", "import 'css-chunk:src/components/Button/style.module.scss';export default {\n \"button\": \"_button_vqhwa_1\",\n \"default\": \"_default_vqhwa_20\",\n \"text\": \"_text_vqhwa_25\",\n \"icon\": \"_icon_vqhwa_36\",\n \"primary\": \"_primary_vqhwa_40\",\n \"secondary\": \"_secondary_vqhwa_47\",\n \"tertiary\": \"_tertiary_vqhwa_54\",\n \"quaternary\": \"_quaternary_vqhwa_62\",\n \"quinary\": \"_quinary_vqhwa_75\",\n \"negative\": \"_negative_vqhwa_87\",\n \"inverse\": \"_inverse_vqhwa_94\",\n \"cta\": \"_cta_vqhwa_101\",\n \"l\": \"_l_vqhwa_109\",\n \"m\": \"_m_vqhwa_117\",\n \"s\": \"_s_vqhwa_47\",\n \"align-center\": \"_align-center_vqhwa_135\",\n \"align-space-between\": \"_align-space-between_vqhwa_139\",\n \"inverse-primary\": \"_inverse-primary_vqhwa_143\",\n \"neutral-primary\": \"_neutral-primary_vqhwa_147\",\n \"inverse-static-primary\": \"_inverse-static-primary_vqhwa_152\"\n};"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liner-fe/prism",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"packageManager": "yarn@3.6.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "next dev",
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@liner-fe/design-token": "workspace:^",
|
|
18
|
+
"@radix-ui/react-popover": "^1.1.1",
|
|
19
|
+
"@radix-ui/react-select": "^2.1.1",
|
|
18
20
|
"@radix-ui/react-slot": "^1.1.0",
|
|
21
|
+
"@radix-ui/react-toast": "^1.2.1",
|
|
22
|
+
"@radix-ui/react-tooltip": "^1.1.2",
|
|
19
23
|
"class-variance-authority": "^0.7.0",
|
|
20
24
|
"clsx": "^2.1.1",
|
|
21
25
|
"framer-motion": "^11.2.13",
|