@billgangcom/theme-lib 1.52.2 → 1.53.0
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/api.d.ts +1 -0
- package/dist/builder.cjs.js +46 -46
- package/dist/builder.es.js +1802 -1781
- package/dist/{index-Dxxdn8DO.cjs → index-4JZvuz4K.cjs} +32 -32
- package/dist/{index-B2Rk8_zm.js → index-BmN4PZT1.js} +3344 -3304
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +10 -7
- package/dist/lib/createTicket.d.ts +4 -0
- package/dist/lib/index.d.ts +1 -0
- package/dist/ui/ButtonsSettings/index.d.ts +2 -0
- package/dist/ui/FormSettings/index.d.ts +2 -0
- package/dist/ui/FormSettings/popup.d.ts +7 -1
- package/dist/ui/Input/index.d.ts +1 -0
- package/dist/ui/Textarea/index.d.ts +1 -0
- package/dist/ui.cjs.js +1 -1
- package/dist/ui.es.js +1015 -1011
- package/package.json +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -12,5 +12,6 @@ interface AppProps {
|
|
|
12
12
|
}
|
|
13
13
|
export declare const App: React.FC<AppProps>;
|
|
14
14
|
export * from './abstractions';
|
|
15
|
-
export { hotReload, splitTextIntoSpans } from './lib';
|
|
15
|
+
export { hotReload, splitTextIntoSpans, createTicket } from './lib';
|
|
16
16
|
export { iconNames, type IconNames, ColorVariables } from '@constants';
|
|
17
|
+
export { ReCaptchaProvider, useReCaptcha } from '@billgangcom/frontend-lib';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const API_URL = "https://g-api.billgang.com";
|
|
2
2
|
export declare const GOOGLE_FONTS_API = "https://www.googleapis.com/webfonts/v1/webfonts";
|
|
3
3
|
export declare const STORE_API_URL = "https://stores-api.billgang.com";
|
|
4
|
+
export declare const SL_API_URL = "https://sl-api.billgang.com";
|