@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.
- package/lib/assets/essay.d.ts +8 -0
- package/lib/assets/index.d.ts +2 -1
- package/lib/components/Popover/index.d.ts +1 -0
- package/lib/constants/component.d.ts +15 -0
- package/lib/constants/figma/component.d.ts +4 -0
- package/lib/constants/figma/index.d.ts +24 -0
- package/lib/constants/figma/token.d.ts +4 -0
- package/lib/constants/figma/types.d.ts +7 -0
- package/lib/constants/token.d.ts +11 -0
- package/lib/index.d.ts +0 -1
- package/lib/index.mjs +159 -172
- package/lib/index.mjs.map +4 -4
- package/lib/token/BreakPoint/index.d.ts +1 -0
- package/lib/token/Gap/index.d.ts +1 -0
- package/lib/token/Padding/index.d.ts +1 -0
- package/lib/token/Shadow/index.d.ts +1 -0
- package/lib/type/index.d.ts +1 -1
- package/lib/utils/path.d.ts +1 -0
- package/package.json +2 -1
- package/lib/PrismProvider.d.ts +0 -1
- /package/lib/token/{border-radius → BorderRadius}/index.d.ts +0 -0
package/lib/assets/index.d.ts
CHANGED
|
@@ -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 {
|
|
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,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,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