@liner-fe/prism 1.13.24 → 1.13.26

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 @@
1
+ export declare const ampLogEventFunc: import("recoil").RecoilState<((title: string, properties?: any, callback?: undefined) => Promise<undefined>) | null>;
@@ -0,0 +1,8 @@
1
+ interface ICArrowBackwardProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowBackward: (props: ICArrowBackwardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -137,3 +137,6 @@ export { ICLpPriIconSDropUp } from './lp-pri-icon-s-drop-up';
137
137
  export { ICLpPriIconSArrowDropRight } from './lp-pri-icon-s-arrow-drop-right';
138
138
  export { ICLpPriIconMArrowUpDown } from './lp-pri-icon-m-arrow-up-down';
139
139
  export { ICLpPriIconMGoogleExport } from './lp-pri-icon-m-google-export';
140
+ export { ICArrowBackward } from './arrow-backward';
141
+ export { ICLink } from './link';
142
+ export { ICSheetExport } from './sheet-export';
@@ -0,0 +1,8 @@
1
+ interface ICLinkProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLink: (props: ICLinkProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICSheetExportProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSheetExport: (props: ICSheetExportProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -37,7 +37,9 @@ export interface TextButtonProps extends CommonButtonProps, VariantProps<typeof
37
37
  asChild?: boolean;
38
38
  level?: TextLevelType;
39
39
  }
40
- export type ButtonProps = DefaultButtonProps<FillType> | TextButtonProps;
40
+ export type ButtonProps = (DefaultButtonProps<FillType> | TextButtonProps) & {
41
+ elementName?: string;
42
+ };
41
43
  export declare const DefaultButton: import("react").ForwardRefExoticComponent<DefaultButtonProps<boolean> & import("react").RefAttributes<HTMLButtonElement>>;
42
44
  export declare const TextButton: import("react").ForwardRefExoticComponent<TextButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
43
45
  export declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
package/lib/index.d.ts CHANGED
@@ -15,3 +15,4 @@ export * from './components/Select';
15
15
  export * from './components/List';
16
16
  export * from './types/color';
17
17
  export * from './type/index';
18
+ export * from './PrismProvider';