@liner-fe/prism 1.13.32 → 1.13.34

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.
@@ -0,0 +1,8 @@
1
+ interface ICEssayProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICEssay: (props: ICEssayProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -67,7 +67,7 @@ export { ICAi } from './ai';
67
67
  export { ICStack } from './stack';
68
68
  export { ICSummarize } from './summarize';
69
69
  export { ICMemo } from './memo';
70
- export { ICHighlighter } from './highlighter';
70
+ export { ICEssay } from './essay';
71
71
  export { ICCreditcard } from './creditcard';
72
72
  export { ICSpeaker } from './speaker';
73
73
  export { ICLight } from './light';
@@ -146,3 +146,4 @@ export { ICLpPriIconMLink } from './lp-pri-icon-m-link';
146
146
  export { ICLpPriIconMSheetExport } from './lp-pri-icon-m-sheet-export';
147
147
  export { ICLpPriIconMShieldPerson } from './lp-pri-icon-m-shield-person';
148
148
  export { ICLpPriIconMShieldUsage } from './lp-pri-icon-m-shield-usage';
149
+ export { ICHighlighter } from './highlighter';
@@ -29,6 +29,7 @@ export interface PopoverContentProps extends HTMLAttributes<HTMLDivElement> {
29
29
  align?: 'start' | 'center' | 'end';
30
30
  confirmText?: string;
31
31
  isOverlay?: boolean;
32
+ container?: HTMLElement;
32
33
  onConfirm?: () => void;
33
34
  onClose?: () => void;
34
35
  onPointerDownOutside?: () => void;
@@ -0,0 +1,15 @@
1
+ export declare const COMPONENT_NAME: {
2
+ readonly BUTTON: "Button";
3
+ readonly CHECKBOX: "CheckBox";
4
+ readonly ICON: "Icon";
5
+ readonly ICON_BUTTON: "IconButton";
6
+ readonly CHECK_BOX: "CheckBox";
7
+ readonly TYPOGRAPHY: "Typography";
8
+ readonly TEXT_FIELD: "Textfield";
9
+ readonly TOAST: "Toast";
10
+ readonly POP_OVER: "PopOver";
11
+ readonly TOOL_TIP: "Tooltip";
12
+ readonly LABEL: "Label";
13
+ readonly RADIO: "Radio";
14
+ readonly BADGE: "Badge";
15
+ };
@@ -0,0 +1,4 @@
1
+ import { COMPONENT_NAME } from '../component';
2
+ import { Figma } from './types';
3
+ export type FigmaComponentKeys = (typeof COMPONENT_NAME)[keyof typeof COMPONENT_NAME];
4
+ export declare const FIGMA_COMPONENT: Record<FigmaComponentKeys, Figma>;
@@ -0,0 +1,24 @@
1
+ import { Figma } from './types';
2
+ export declare const FIGMA: {
3
+ Icon: Figma;
4
+ Button: Figma;
5
+ CheckBox: Figma;
6
+ IconButton: Figma;
7
+ Typography: Figma;
8
+ Textfield: Figma;
9
+ Toast: Figma;
10
+ PopOver: Figma;
11
+ Tooltip: Figma;
12
+ Label: Figma;
13
+ Radio: Figma;
14
+ Badge: Figma;
15
+ Shadow: Figma;
16
+ Padding: Figma;
17
+ Opacity: Figma;
18
+ Size: Figma;
19
+ Gap: Figma;
20
+ Color: Figma;
21
+ BreakPoint: Figma;
22
+ BorderRadius: Figma;
23
+ };
24
+ export declare const DESIGN = "design";
@@ -0,0 +1,4 @@
1
+ import { TOKEN_NAME } from '../token';
2
+ import { Figma } from './types';
3
+ export type FigmaTokenKeys = (typeof TOKEN_NAME)[keyof typeof TOKEN_NAME];
4
+ export declare const FIGMA_TOKEN: Record<FigmaTokenKeys, Figma>;
@@ -0,0 +1,7 @@
1
+ export declare enum FigmaType {
2
+ Basic = "figma"
3
+ }
4
+ export interface Figma {
5
+ type: FigmaType;
6
+ url: string;
7
+ }
@@ -0,0 +1,11 @@
1
+ export declare const TOKEN = "token";
2
+ export declare const TOKEN_NAME: {
3
+ readonly SHADOW: "Shadow";
4
+ readonly PADDING: "Padding";
5
+ readonly OPACITY: "Opacity";
6
+ readonly SIZE: "Size";
7
+ readonly GAP: "Gap";
8
+ readonly COLOR: "Color";
9
+ readonly BREAK_POINT: "BreakPoint";
10
+ readonly RADIUS: "BorderRadius";
11
+ };
package/lib/index.d.ts CHANGED
@@ -16,4 +16,3 @@ export * from './components/List';
16
16
  export * from './components/Label';
17
17
  export * from './types/color';
18
18
  export * from './type/index';
19
- export * from './PrismProvider';