@billgangcom/theme-lib 1.71.3 → 1.71.4
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/dist/App.d.ts +2 -1
- package/dist/builder/constants/index.d.ts +1 -0
- package/dist/builder/constants/text-font-keys.d.ts +3 -0
- package/dist/builder/ui/Tip/index.d.ts +1 -0
- package/dist/builder.cjs.js +12 -12
- package/dist/builder.es.js +2140 -1936
- package/dist/{index-CsYad-dm.cjs → index-CaD3TDmt.cjs} +28 -28
- package/dist/{index-ChzUc1hG.js → index-PIQNHMY6.js} +3981 -3635
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +6 -6
- package/dist/lib/createTicket.d.ts +1 -1
- package/dist/storefront/components/StatItem/index.d.ts +1 -1
- package/dist/storefront/components/Table/index.d.ts +1 -0
- package/dist/ui/ItemsSettings/index.d.ts +3 -1
- package/dist/ui/ItemsSettings/popup.d.ts +6 -1
- package/dist/ui/SelectTypeText/index.d.ts +8 -0
- package/dist/ui/TextSettings/index.d.ts +1 -2
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui.cjs.js +1 -1
- package/dist/ui.es.js +1219 -1017
- package/package.json +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -10,8 +10,9 @@ interface AppProps {
|
|
|
10
10
|
}
|
|
11
11
|
export declare const App: React.FC<AppProps>;
|
|
12
12
|
export * from './abstractions';
|
|
13
|
-
export { hotReload, splitTextIntoSpans,
|
|
13
|
+
export { hotReload, splitTextIntoSpans, useCreateTicket, useBuilderPages } from './lib';
|
|
14
14
|
export { iconNames, type IconNames, ColorVariables, type AspectRatio, aspectRatioOptions, } from '@builder/constants';
|
|
15
15
|
export { ReCaptchaProvider, useReCaptcha } from './storefront/utils/recapcha';
|
|
16
16
|
export { useAdaptiveStyles } from './storefront/utils/useAdaptiveStyles';
|
|
17
17
|
export { formatPrice } from './storefront/utils';
|
|
18
|
+
export type { TypeFontKeys } from './builder/constants/text-font-keys';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export type TypeFontKeys = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'lg' | 'md' | 'sm';
|
|
2
|
+
export type TypeFontValues = 'Heading 1' | 'Heading 2' | 'Heading 3' | 'Heading 4' | 'Heading 5' | 'Heading 6' | 'Heading 7' | 'Paragraph Large' | 'Paragraph Medium' | 'Paragraph Small';
|
|
3
|
+
export declare const typeFontOptions: Record<TypeFontKeys, TypeFontValues>;
|