@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.
- package/lib/PrismProvider.d.ts +1 -0
- package/lib/assets/arrow-backward.d.ts +8 -0
- package/lib/assets/index.d.ts +3 -0
- package/lib/assets/link.d.ts +8 -0
- package/lib/assets/sheet-export.d.ts +8 -0
- package/lib/components/Button/index.d.ts +3 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.mjs +300 -147
- package/lib/index.mjs.map +4 -4
- package/lib/type/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ampLogEventFunc: import("recoil").RecoilState<((title: string, properties?: any, callback?: undefined) => Promise<undefined>) | null>;
|
package/lib/assets/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -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