@developer_tribe/react-builder 1.2.41 → 1.2.42
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/build-components/PaywallFooter/PaywallFooter.d.ts +5 -0
- package/dist/build-components/PaywallFooter/PaywallFooterProps.generated.d.ts +68 -0
- package/dist/build-components/index.d.ts +2 -1
- package/dist/build-components/patterns.generated.d.ts +495 -3
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +4 -4
- package/dist/index.web.esm.js.map +1 -1
- package/dist/modals/IconPickerModal.d.ts +1 -1
- package/dist/styles.css +1 -1
- package/dist/types/PreviewConfig.d.ts +1 -1
- package/package.json +2 -2
- package/src/RenderPage.tsx +1 -1
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/assets/samples/paywall-1.json +17 -0
- package/src/assets/samples/vpn-onboard-1.json +3 -3
- package/src/assets/samples/vpn-onboard-2.json +3 -3
- package/src/assets/samples/vpn-onboard-3.json +3 -3
- package/src/assets/samples/vpn-onboard-4.json +3 -3
- package/src/assets/samples/vpn-onboard-5.json +3 -3
- package/src/assets/samples/vpn-onboard-6.json +3 -3
- package/src/assets/samples/vpn-onboard-7.json +3 -3
- package/src/attributes-editor/AttributesEditorFields.tsx +1 -1
- package/src/build-components/BIcon/BIcon.tsx +1 -1
- package/src/build-components/OnboardButton/OnboardButton.tsx +1 -1
- package/src/build-components/OnboardButton/pattern.json +1 -1
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +29 -20
- package/src/build-components/OnboardFooter/pattern.json +2 -1
- package/src/build-components/OnboardProvider/pattern.json +1 -1
- package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +1 -1
- package/src/build-components/PaywallFooter/PaywallFooter.tsx +242 -0
- package/src/build-components/PaywallFooter/PaywallFooterProps.generated.ts +85 -0
- package/src/build-components/PaywallFooter/pattern.json +86 -0
- package/src/build-components/RenderNode.generated.tsx +5 -0
- package/src/build-components/index.ts +5 -0
- package/src/build-components/patterns.generated.ts +511 -3
- package/src/components/BottomBar.tsx +1 -1
- package/src/components/DeviceNavigationBar.tsx +2 -2
- package/src/hooks/useLocalize.ts +11 -1
- package/src/mockOS/managers/mockPermissionManager.ts +5 -3
- package/src/mockOS/managers/navigationManager.ts +6 -4
- package/src/modals/IconPickerModal.tsx +1 -1
- package/src/modals/InspectModal.tsx +22 -24
- package/src/styles/base/_global.scss +1 -1
- package/src/types/PreviewConfig.ts +24 -6
- package/dist/build-components/index.generated.d.ts +0 -38
- package/dist/types/Icons.generated.d.ts +0 -2
- package/src/build-components/index.generated.ts +0 -184
- package/src/types/Icons.generated.ts +0 -244
|
@@ -49,7 +49,7 @@ export function DeviceNavigationBar({
|
|
|
49
49
|
context.navigation('launchscreen');
|
|
50
50
|
}
|
|
51
51
|
} else {
|
|
52
|
-
|
|
52
|
+
console.warn('Navigation: Back\n(Mock OS context not available)');
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -57,7 +57,7 @@ export function DeviceNavigationBar({
|
|
|
57
57
|
if (context) {
|
|
58
58
|
context.navigation('launchscreen');
|
|
59
59
|
} else {
|
|
60
|
-
|
|
60
|
+
console.warn('Navigation: Home\n(Mock OS context not available)');
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
|
package/src/hooks/useLocalize.ts
CHANGED
|
@@ -25,7 +25,17 @@ export function useLocalize(options?: {
|
|
|
25
25
|
(keyOrText: string) => {
|
|
26
26
|
const langMap = localization?.[defaultLanguage];
|
|
27
27
|
const raw = langMap?.[keyOrText] ?? keyOrText;
|
|
28
|
-
|
|
28
|
+
// DEBUG: trace localization lookup
|
|
29
|
+
if (keyOrText.includes('.')) {
|
|
30
|
+
console.log('[useLocalize]', {
|
|
31
|
+
keyOrText,
|
|
32
|
+
defaultLanguage,
|
|
33
|
+
hasLangMap: !!langMap,
|
|
34
|
+
langMapKeyCount: langMap ? Object.keys(langMap).length : 0,
|
|
35
|
+
resolved: raw !== keyOrText ? raw : '❌ NOT FOUND',
|
|
36
|
+
allLangs: Object.keys(localization ?? {}),
|
|
37
|
+
});
|
|
38
|
+
}
|
|
29
39
|
return replaceLocalizationParams(raw, params);
|
|
30
40
|
},
|
|
31
41
|
[defaultLanguage, localization, params],
|
|
@@ -22,7 +22,7 @@ export class MockPermissionManager {
|
|
|
22
22
|
permission: PermissionType | string,
|
|
23
23
|
): Promise<PermissionStatus> {
|
|
24
24
|
if (this.context === null) {
|
|
25
|
-
|
|
25
|
+
console.warn(
|
|
26
26
|
`Permission requested: ${permission}\n(Mock OS context not available)`,
|
|
27
27
|
);
|
|
28
28
|
return 'not-determined';
|
|
@@ -40,7 +40,9 @@ export class MockPermissionManager {
|
|
|
40
40
|
|
|
41
41
|
checkPermission(permission: PermissionType | string): PermissionStatus {
|
|
42
42
|
if (this.context === null) {
|
|
43
|
-
|
|
43
|
+
console.warn(
|
|
44
|
+
`Permission check: ${permission}\n(Mock OS context not available)`,
|
|
45
|
+
);
|
|
44
46
|
return 'not-determined';
|
|
45
47
|
}
|
|
46
48
|
|
|
@@ -49,7 +51,7 @@ export class MockPermissionManager {
|
|
|
49
51
|
|
|
50
52
|
openSettings(): void {
|
|
51
53
|
if (this.context === null) {
|
|
52
|
-
|
|
54
|
+
console.warn('Opening Settings\n(Mock OS context not available)');
|
|
53
55
|
return;
|
|
54
56
|
}
|
|
55
57
|
}
|
|
@@ -22,7 +22,7 @@ export class MockNavigationManager {
|
|
|
22
22
|
|
|
23
23
|
goToHome(): void {
|
|
24
24
|
if (this.context === null) {
|
|
25
|
-
|
|
25
|
+
console.warn('Navigate to Home\n(Mock OS context not available)');
|
|
26
26
|
return;
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -35,7 +35,9 @@ export class MockNavigationManager {
|
|
|
35
35
|
|
|
36
36
|
goToSubscriptions(): void {
|
|
37
37
|
if (this.context === null) {
|
|
38
|
-
|
|
38
|
+
console.warn(
|
|
39
|
+
'Navigate to Subscriptions\n(Mock OS context not available)',
|
|
40
|
+
);
|
|
39
41
|
return;
|
|
40
42
|
}
|
|
41
43
|
|
|
@@ -48,7 +50,7 @@ export class MockNavigationManager {
|
|
|
48
50
|
|
|
49
51
|
goToLaunchApp(): void {
|
|
50
52
|
if (this.context === null) {
|
|
51
|
-
|
|
53
|
+
console.warn('Navigate to Launch App\n(Mock OS context not available)');
|
|
52
54
|
return;
|
|
53
55
|
}
|
|
54
56
|
|
|
@@ -65,7 +67,7 @@ export class MockNavigationManager {
|
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
if (this.context === null) {
|
|
68
|
-
|
|
70
|
+
console.warn('Go Back\n(Mock OS context not available)');
|
|
69
71
|
return false;
|
|
70
72
|
}
|
|
71
73
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useMemo, useState } from 'react';
|
|
2
2
|
import Modal from './Modal';
|
|
3
|
-
import { Icons, type IconsType } from '../types/Icons
|
|
3
|
+
import { Icons, type IconsType } from '../types/Icons';
|
|
4
4
|
import { Icon } from '../components/Icon.generated';
|
|
5
5
|
|
|
6
6
|
type IconPickerModalProps = {
|
|
@@ -125,7 +125,7 @@ function LocalizationsTab({
|
|
|
125
125
|
const value = isCustom ? customValue : (defaultValue ?? '');
|
|
126
126
|
|
|
127
127
|
const escape = (str: string) => `"${String(str).replace(/"/g, '""')}"`;
|
|
128
|
-
csvContent += `${escape(key)},${escape(String(value))},${isCustom ? '
|
|
128
|
+
csvContent += `${escape(key)},${escape(String(value))},${isCustom ? 'custom' : 'fallback'}\n`;
|
|
129
129
|
});
|
|
130
130
|
|
|
131
131
|
downloadCSV(`localizations-${language}.csv`, csvContent);
|
|
@@ -181,7 +181,7 @@ function LocalizationsTab({
|
|
|
181
181
|
<span style={{ color: 'red' }}>!</span> fallback
|
|
182
182
|
</>
|
|
183
183
|
) : (
|
|
184
|
-
'
|
|
184
|
+
'custom'
|
|
185
185
|
)}
|
|
186
186
|
</span>
|
|
187
187
|
</td>
|
|
@@ -212,7 +212,7 @@ function ParamsTab({
|
|
|
212
212
|
if (!hasAny) {
|
|
213
213
|
return (
|
|
214
214
|
<p className="inspect-modal__empty">
|
|
215
|
-
No params available. Params are populated inside a
|
|
215
|
+
No params available. Params are populated inside a PaywallProvider.
|
|
216
216
|
</p>
|
|
217
217
|
);
|
|
218
218
|
}
|
|
@@ -312,10 +312,21 @@ function ColorsTab({
|
|
|
312
312
|
return <p className="inspect-modal__empty">No project colors defined.</p>;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
const
|
|
316
|
-
|
|
317
|
-
const
|
|
318
|
-
|
|
315
|
+
const handleDownloadCSV = () => {
|
|
316
|
+
let csvContent = 'Type,Token,Value,Source\n';
|
|
317
|
+
const escape = (str: string) => `"${String(str).replace(/"/g, '""')}"`;
|
|
318
|
+
|
|
319
|
+
staticEntries.forEach(([token, hex]) => {
|
|
320
|
+
const isDefault = defaultStatic[token] === hex;
|
|
321
|
+
csvContent += `Static,${escape(token)},${escape(String(hex))},${isDefault ? 'fallback' : 'custom'}\n`;
|
|
322
|
+
});
|
|
323
|
+
|
|
324
|
+
themeEntries.forEach(([token, hex]) => {
|
|
325
|
+
const isDefault = defaultThemeMap[token] === hex;
|
|
326
|
+
csvContent += `Theme (${theme}),${escape(token)},${escape(String(hex))},${isDefault ? 'fallback' : 'custom'}\n`;
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
downloadCSV('colors.csv', csvContent);
|
|
319
330
|
};
|
|
320
331
|
|
|
321
332
|
return (
|
|
@@ -330,9 +341,9 @@ function ColorsTab({
|
|
|
330
341
|
<button
|
|
331
342
|
type="button"
|
|
332
343
|
className="editor-button"
|
|
333
|
-
onClick={
|
|
344
|
+
onClick={handleDownloadCSV}
|
|
334
345
|
>
|
|
335
|
-
Download
|
|
346
|
+
Download CSV
|
|
336
347
|
</button>
|
|
337
348
|
</div>
|
|
338
349
|
{staticEntries.length > 0 && (
|
|
@@ -368,7 +379,7 @@ function ColorsTab({
|
|
|
368
379
|
<span style={{ color: 'red' }}>!</span> fallback
|
|
369
380
|
</>
|
|
370
381
|
) : (
|
|
371
|
-
'
|
|
382
|
+
'custom'
|
|
372
383
|
)}
|
|
373
384
|
</span>
|
|
374
385
|
</td>
|
|
@@ -415,7 +426,7 @@ function ColorsTab({
|
|
|
415
426
|
<span style={{ color: 'red' }}>!</span> fallback
|
|
416
427
|
</>
|
|
417
428
|
) : (
|
|
418
|
-
'
|
|
429
|
+
'custom'
|
|
419
430
|
)}
|
|
420
431
|
</span>
|
|
421
432
|
</td>
|
|
@@ -452,16 +463,3 @@ function downloadCSV(filename: string, csvContent: string) {
|
|
|
452
463
|
link.click();
|
|
453
464
|
document.body.removeChild(link);
|
|
454
465
|
}
|
|
455
|
-
|
|
456
|
-
function downloadJSON(filename: string, jsonContent: string) {
|
|
457
|
-
const blob = new Blob([jsonContent], {
|
|
458
|
-
type: 'application/json;charset=utf-8;',
|
|
459
|
-
});
|
|
460
|
-
const url = URL.createObjectURL(blob);
|
|
461
|
-
const link = document.createElement('a');
|
|
462
|
-
link.setAttribute('href', url);
|
|
463
|
-
link.setAttribute('download', filename);
|
|
464
|
-
document.body.appendChild(link);
|
|
465
|
-
link.click();
|
|
466
|
-
document.body.removeChild(link);
|
|
467
|
-
}
|
|
@@ -80,6 +80,7 @@ body,
|
|
|
80
80
|
background-position: center;
|
|
81
81
|
background-repeat: repeat;
|
|
82
82
|
background-size: 500px auto;
|
|
83
|
+
padding-bottom: 120px;
|
|
83
84
|
> * {
|
|
84
85
|
position: relative;
|
|
85
86
|
z-index: 1;
|
|
@@ -369,7 +370,6 @@ body,
|
|
|
369
370
|
min-width: 0;
|
|
370
371
|
min-height: calc(100vh - 120px);
|
|
371
372
|
padding: sizes.$spaceComfy;
|
|
372
|
-
padding-bottom: 120px;
|
|
373
373
|
position: relative;
|
|
374
374
|
}
|
|
375
375
|
|
|
@@ -50,9 +50,13 @@ export type LocalizationKey =
|
|
|
50
50
|
| 'base.onboard.skip.five-page'
|
|
51
51
|
| 'base.onboard.allow.four-page'
|
|
52
52
|
// onboard – footer
|
|
53
|
-
| '
|
|
54
|
-
| '
|
|
55
|
-
| '
|
|
53
|
+
| 'base.onboard.footer.description'
|
|
54
|
+
| 'base.onboard.btnPrivacy'
|
|
55
|
+
| 'base.onboard.btnTerms'
|
|
56
|
+
// paywall – footer
|
|
57
|
+
| 'base.builder.paywall.footer.description'
|
|
58
|
+
| 'base.builder.paywall.btnPrivacy'
|
|
59
|
+
| 'base.builder.paywall.btnTerms'
|
|
56
60
|
| (string & {});
|
|
57
61
|
|
|
58
62
|
export type Localication = Record<
|
|
@@ -125,10 +129,15 @@ export const defaultLocalization: Localication = {
|
|
|
125
129
|
'base.onboard.skip.five-page': 'Skip',
|
|
126
130
|
'base.onboard.allow.four-page': 'Allow',
|
|
127
131
|
// onboard – footer
|
|
128
|
-
'
|
|
132
|
+
'base.onboard.footer.description':
|
|
129
133
|
'By clicking continue, you will be accepting the Terms of service and privacy policy',
|
|
130
|
-
'
|
|
131
|
-
'
|
|
134
|
+
'base.onboard.btnPrivacy': 'Privacy Policy',
|
|
135
|
+
'base.onboard.btnTerms': 'Terms of Service',
|
|
136
|
+
// paywall – footer
|
|
137
|
+
'base.builder.paywall.footer.description':
|
|
138
|
+
'By clicking continue, you will be accepting the Terms of service and privacy policy',
|
|
139
|
+
'base.builder.paywall.btnPrivacy': 'Privacy Policy',
|
|
140
|
+
'base.builder.paywall.btnTerms': 'Terms of Service',
|
|
132
141
|
},
|
|
133
142
|
tr: {
|
|
134
143
|
// paywall – period
|
|
@@ -163,6 +172,15 @@ export const defaultLocalization: Localication = {
|
|
|
163
172
|
// onboard – actions
|
|
164
173
|
'base.onboard.next.five-page': 'İleri',
|
|
165
174
|
'base.onboard.skip.five-page': 'Geç',
|
|
175
|
+
'base.onboard.footer.description':
|
|
176
|
+
'Devam et butonuna tıklayarak terms ve privacy kabul etmiş olursunuz',
|
|
177
|
+
'base.onboard.btnPrivacy': 'Gizlilik Politikası',
|
|
178
|
+
'base.onboard.btnTerms': 'Hizmet Şartları',
|
|
179
|
+
// paywall – footer
|
|
180
|
+
'base.builder.paywall.footer.description':
|
|
181
|
+
'Devam et butonuna tıklayarak Hizmet Şartları ve Gizlilik Politikası kabul etmiş olursunuz',
|
|
182
|
+
'base.builder.paywall.btnPrivacy': 'Gizlilik Politikası',
|
|
183
|
+
'base.builder.paywall.btnTerms': 'Hizmet Şartları',
|
|
166
184
|
},
|
|
167
185
|
};
|
|
168
186
|
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
export { default as RenderNode } from './RenderNode.generated';
|
|
2
|
-
export { patterns } from './patterns.generated';
|
|
3
|
-
export declare const allcomponentNames: readonly ["BIcon", "BackgroundImage", "Button", "Carousel", "CarouselButtons", "CarouselDots", "CarouselItem", "CarouselProvider", "CountDown", "Image", "Main", "NavigationBarColor", "Onboard", "OnboardButton", "OnboardButtons", "OnboardDot", "OnboardFooter", "OnboardImage", "OnboardItem", "OnboardProvider", "OnboardSubtitle", "OnboardTitle", "PaywallBackground", "PaywallCloseButton", "PaywallOptions", "PaywallProvider", "PaywallSubscribeButton", "PriceTag", "Pricing", "Promo", "RadioButton", "Separator", "StatusBarColor", "Text", "View"];
|
|
4
|
-
export type { BIconPropsGenerated, BIconComponentProps, } from './BIcon/BIconProps.generated';
|
|
5
|
-
export type { BackgroundImagePropsGenerated, BackgroundImageComponentProps, } from './BackgroundImage/BackgroundImageProps.generated';
|
|
6
|
-
export type { ButtonPropsGenerated, ButtonComponentProps, } from './Button/ButtonProps.generated';
|
|
7
|
-
export type { CarouselPropsGenerated, CarouselComponentProps, } from './Carousel/CarouselProps.generated';
|
|
8
|
-
export type { CarouselButtonsPropsGenerated, CarouselButtonsComponentProps, } from './CarouselButtons/CarouselButtonsProps.generated';
|
|
9
|
-
export type { CarouselDotsPropsGenerated, CarouselDotsComponentProps, } from './CarouselDots/CarouselDotsProps.generated';
|
|
10
|
-
export type { CarouselItemPropsGenerated, CarouselItemComponentProps, } from './CarouselItem/CarouselItemProps.generated';
|
|
11
|
-
export type { CarouselProviderPropsGenerated, CarouselProviderComponentProps, } from './CarouselProvider/CarouselProviderProps.generated';
|
|
12
|
-
export type { CountDownPropsGenerated, CountDownComponentProps, } from './CountDown/CountDownProps.generated';
|
|
13
|
-
export type { ImagePropsGenerated, ImageComponentProps, } from './Image/ImageProps.generated';
|
|
14
|
-
export type { MainPropsGenerated, MainComponentProps, } from './Main/MainProps.generated';
|
|
15
|
-
export type { NavigationBarColorPropsGenerated, NavigationBarColorComponentProps, } from './NavigationBarColor/NavigationBarColorProps.generated';
|
|
16
|
-
export type { OnboardPropsGenerated, OnboardComponentProps, } from './Onboard/OnboardProps.generated';
|
|
17
|
-
export type { OnboardButtonPropsGenerated, OnboardButtonComponentProps, } from './OnboardButton/OnboardButtonProps.generated';
|
|
18
|
-
export type { OnboardButtonsPropsGenerated, OnboardButtonsComponentProps, } from './OnboardButtons/OnboardButtonsProps.generated';
|
|
19
|
-
export type { OnboardDotPropsGenerated, OnboardDotComponentProps, } from './OnboardDot/OnboardDotProps.generated';
|
|
20
|
-
export type { OnboardFooterPropsGenerated, OnboardFooterComponentProps, } from './OnboardFooter/OnboardFooterProps.generated';
|
|
21
|
-
export type { OnboardImagePropsGenerated, OnboardImageComponentProps, } from './OnboardImage/OnboardImageProps.generated';
|
|
22
|
-
export type { OnboardItemPropsGenerated, OnboardItemComponentProps, } from './OnboardItem/OnboardItemProps.generated';
|
|
23
|
-
export type { OnboardProviderPropsGenerated, OnboardProviderComponentProps, } from './OnboardProvider/OnboardProviderProps.generated';
|
|
24
|
-
export type { OnboardSubtitlePropsGenerated, OnboardSubtitleComponentProps, } from './OnboardSubtitle/OnboardSubtitleProps.generated';
|
|
25
|
-
export type { OnboardTitlePropsGenerated, OnboardTitleComponentProps, } from './OnboardTitle/OnboardTitleProps.generated';
|
|
26
|
-
export type { PaywallBackgroundPropsGenerated, PaywallBackgroundComponentProps, } from './PaywallBackground/PaywallBackgroundProps.generated';
|
|
27
|
-
export type { PaywallCloseButtonPropsGenerated, PaywallCloseButtonComponentProps, } from './PaywallCloseButton/PaywallCloseButtonProps.generated';
|
|
28
|
-
export type { PaywallOptionsPropsGenerated, PaywallOptionsComponentProps, } from './PaywallOptions/PaywallOptionsProps.generated';
|
|
29
|
-
export type { PaywallProviderPropsGenerated, PaywallProviderComponentProps, } from './PaywallProvider/PaywallProviderProps.generated';
|
|
30
|
-
export type { PaywallSubscribeButtonPropsGenerated, PaywallSubscribeButtonComponentProps, } from './PaywallSubscribeButton/PaywallSubscribeButtonProps.generated';
|
|
31
|
-
export type { PriceTagPropsGenerated, PriceTagComponentProps, } from './PriceTag/PriceTagProps.generated';
|
|
32
|
-
export type { PricingPropsGenerated, PricingComponentProps, } from './Pricing/PricingProps.generated';
|
|
33
|
-
export type { PromoPropsGenerated, PromoComponentProps, } from './Promo/PromoProps.generated';
|
|
34
|
-
export type { RadioButtonPropsGenerated, RadioButtonComponentProps, } from './RadioButton/RadioButtonProps.generated';
|
|
35
|
-
export type { SeparatorPropsGenerated, SeparatorComponentProps, } from './Separator/SeparatorProps.generated';
|
|
36
|
-
export type { StatusBarColorPropsGenerated, StatusBarColorComponentProps, } from './StatusBarColor/StatusBarColorProps.generated';
|
|
37
|
-
export type { TextPropsGenerated, TextComponentProps, } from './Text/TextProps.generated';
|
|
38
|
-
export type { ViewPropsGenerated, ViewComponentProps, } from './View/ViewProps.generated';
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export declare const Icons: readonly ["activity", "activity-heart", "alert-circle", "alert-triangle", "anchor", "archive", "arrow-down", "arrow-left", "arrow-narrow-down-left", "arrow-narrow-up-right", "arrow-right", "arrow-right-smooth", "asterisk-01", "asterisk-02", "at-sign", "award", "battery-charging", "bell-01", "bell-02", "bell-ringing-02", "bookmark", "bookmark-add", "bookmark-check", "bookmark-minus", "bookmark-x", "bubble", "building-01", "building-02", "building-03", "building-04", "building-05", "building-06", "building-07", "building-08", "building-09", "camera", "camera-01", "camera-steel", "check", "check-circle", "check-circle-bold", "check-circle-broken", "check-done-01", "check-done-02", "check-heart", "check-square", "check-square-broken", "check-verified-01", "check-verified-02", "check-verified-03", "checkbox", "checkv", "chevron-down", "chevron-down2", "chevron-left", "chevron-left-2", "chevron-right", "chevron-right-empty", "chevron-right-smooth", "chevron-up", "circle", "clock", "clock-fast-forward", "close", "close-circle", "cloud-01", "cloud-blank-01", "cloud-blank-02", "coin", "coins-02", "colors", "copy-01", "copy-02", "copy-03", "copy-04", "copy-05", "copy-06", "copy-07", "corner-down-right", "crypto-bold", "delete-icon", "diamond", "dice-3", "divide-01", "divide-02", "divide-03", "document-check-bold", "dots-circle", "dots-grid", "dots-horizontal", "dots-vertical", "download-01", "download-02", "download-03", "edit-03", "edit-04", "edit-05", "element-3", "ellipse-127", "exclaimation-circle", "eye-off-line", "face-smile", "file-04", "file-05", "file-check-02", "file-plus-01", "file-shield-02", "filter-funnel-01", "flag-03", "flash", "folder", "folder-plus", "gallery", "globe-01", "globe-04", "globe-bold", "guard", "headphones-01", "headphones-02", "headset-bold", "heart", "heart-bold", "help-circle", "home-2", "home-line", "hourglass-02", "image", "image-01", "image-03", "inbox-01", "inbox-arrow-down", "info-circle", "keyboard-line", "lamp-charge", "layer", "light", "like-dislike", "lock-03", "logout", "magicpen", "mail", "mail-01", "marker", "medal-star", "menu", "menu-04", "message-circle-01", "message-plus-circle", "message-question-circle", "message-text-circle-01", "message-text-square-02", "message-x-square", "microphone-02", "microphone-slash", "mirror", "moon-01", "moon-bold", "mouse-circle", "move", "notification", "notification-fill", "notification-text", "pdf-01", "pencil-01", "phone", "phone-01", "phone-arrow-down-left", "phone-arrow-up-right", "phone-hang-up", "phone-hangup2", "phone-incoming-01", "phone-outgoing-01", "phone-plus", "phone-x", "plus", "plus-circle", "printer", "question-mark-circle", "refresh-ccw-01", "refresh-cw-01", "refresh-cw-04", "refresh-right-square-bold", "remove-circle", "repeat-04", "repeat-bold", "ruler-pen", "search", "search-lg", "search-md", "search-refraction", "send-01", "send-02", "send-diagonal", "setting-2", "settings", "settings-02", "settings-04", "settings-2", "settings-cog", "share-01", "share-03", "share-04", "share-05", "share-06", "share-bold", "shield-01", "shield-bold", "solar-check", "speaker", "speaker-wave", "speedometer-03", "star", "star-rounded", "sun", "target-03", "text-input", "translate", "trash", "trash-02", "trash-03", "trash-04", "trush-square-bold", "unlimited", "user-circle", "user-jogging", "user-plus-01", "user-square", "user-x-01", "user-x-02", "user2", "users-02", "users-speaker", "verify", "voice-cricle", "x-circle", "x-close", "x-sm", "zap"];
|
|
2
|
-
export type IconsType = (typeof Icons)[number];
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
/* AUTO-GENERATED FILE - DO NOT EDIT */
|
|
2
|
-
|
|
3
|
-
export { default as RenderNode } from './RenderNode.generated';
|
|
4
|
-
|
|
5
|
-
export { patterns } from './patterns.generated';
|
|
6
|
-
|
|
7
|
-
export const allcomponentNames = [
|
|
8
|
-
'BIcon',
|
|
9
|
-
'BackgroundImage',
|
|
10
|
-
'Button',
|
|
11
|
-
'Carousel',
|
|
12
|
-
'CarouselButtons',
|
|
13
|
-
'CarouselDots',
|
|
14
|
-
'CarouselItem',
|
|
15
|
-
'CarouselProvider',
|
|
16
|
-
'CountDown',
|
|
17
|
-
'Image',
|
|
18
|
-
'Main',
|
|
19
|
-
'NavigationBarColor',
|
|
20
|
-
'Onboard',
|
|
21
|
-
'OnboardButton',
|
|
22
|
-
'OnboardButtons',
|
|
23
|
-
'OnboardDot',
|
|
24
|
-
'OnboardFooter',
|
|
25
|
-
'OnboardImage',
|
|
26
|
-
'OnboardItem',
|
|
27
|
-
'OnboardProvider',
|
|
28
|
-
'OnboardSubtitle',
|
|
29
|
-
'OnboardTitle',
|
|
30
|
-
'PaywallBackground',
|
|
31
|
-
'PaywallCloseButton',
|
|
32
|
-
'PaywallOptions',
|
|
33
|
-
'PaywallProvider',
|
|
34
|
-
'PaywallSubscribeButton',
|
|
35
|
-
'PriceTag',
|
|
36
|
-
'Pricing',
|
|
37
|
-
'Promo',
|
|
38
|
-
'RadioButton',
|
|
39
|
-
'Separator',
|
|
40
|
-
'StatusBarColor',
|
|
41
|
-
'Text',
|
|
42
|
-
'View',
|
|
43
|
-
] as const;
|
|
44
|
-
|
|
45
|
-
export type {
|
|
46
|
-
BIconPropsGenerated,
|
|
47
|
-
BIconComponentProps,
|
|
48
|
-
} from './BIcon/BIconProps.generated';
|
|
49
|
-
export type {
|
|
50
|
-
BackgroundImagePropsGenerated,
|
|
51
|
-
BackgroundImageComponentProps,
|
|
52
|
-
} from './BackgroundImage/BackgroundImageProps.generated';
|
|
53
|
-
export type {
|
|
54
|
-
ButtonPropsGenerated,
|
|
55
|
-
ButtonComponentProps,
|
|
56
|
-
} from './Button/ButtonProps.generated';
|
|
57
|
-
export type {
|
|
58
|
-
CarouselPropsGenerated,
|
|
59
|
-
CarouselComponentProps,
|
|
60
|
-
} from './Carousel/CarouselProps.generated';
|
|
61
|
-
export type {
|
|
62
|
-
CarouselButtonsPropsGenerated,
|
|
63
|
-
CarouselButtonsComponentProps,
|
|
64
|
-
} from './CarouselButtons/CarouselButtonsProps.generated';
|
|
65
|
-
export type {
|
|
66
|
-
CarouselDotsPropsGenerated,
|
|
67
|
-
CarouselDotsComponentProps,
|
|
68
|
-
} from './CarouselDots/CarouselDotsProps.generated';
|
|
69
|
-
export type {
|
|
70
|
-
CarouselItemPropsGenerated,
|
|
71
|
-
CarouselItemComponentProps,
|
|
72
|
-
} from './CarouselItem/CarouselItemProps.generated';
|
|
73
|
-
export type {
|
|
74
|
-
CarouselProviderPropsGenerated,
|
|
75
|
-
CarouselProviderComponentProps,
|
|
76
|
-
} from './CarouselProvider/CarouselProviderProps.generated';
|
|
77
|
-
export type {
|
|
78
|
-
CountDownPropsGenerated,
|
|
79
|
-
CountDownComponentProps,
|
|
80
|
-
} from './CountDown/CountDownProps.generated';
|
|
81
|
-
export type {
|
|
82
|
-
ImagePropsGenerated,
|
|
83
|
-
ImageComponentProps,
|
|
84
|
-
} from './Image/ImageProps.generated';
|
|
85
|
-
export type {
|
|
86
|
-
MainPropsGenerated,
|
|
87
|
-
MainComponentProps,
|
|
88
|
-
} from './Main/MainProps.generated';
|
|
89
|
-
export type {
|
|
90
|
-
NavigationBarColorPropsGenerated,
|
|
91
|
-
NavigationBarColorComponentProps,
|
|
92
|
-
} from './NavigationBarColor/NavigationBarColorProps.generated';
|
|
93
|
-
export type {
|
|
94
|
-
OnboardPropsGenerated,
|
|
95
|
-
OnboardComponentProps,
|
|
96
|
-
} from './Onboard/OnboardProps.generated';
|
|
97
|
-
export type {
|
|
98
|
-
OnboardButtonPropsGenerated,
|
|
99
|
-
OnboardButtonComponentProps,
|
|
100
|
-
} from './OnboardButton/OnboardButtonProps.generated';
|
|
101
|
-
export type {
|
|
102
|
-
OnboardButtonsPropsGenerated,
|
|
103
|
-
OnboardButtonsComponentProps,
|
|
104
|
-
} from './OnboardButtons/OnboardButtonsProps.generated';
|
|
105
|
-
export type {
|
|
106
|
-
OnboardDotPropsGenerated,
|
|
107
|
-
OnboardDotComponentProps,
|
|
108
|
-
} from './OnboardDot/OnboardDotProps.generated';
|
|
109
|
-
export type {
|
|
110
|
-
OnboardFooterPropsGenerated,
|
|
111
|
-
OnboardFooterComponentProps,
|
|
112
|
-
} from './OnboardFooter/OnboardFooterProps.generated';
|
|
113
|
-
export type {
|
|
114
|
-
OnboardImagePropsGenerated,
|
|
115
|
-
OnboardImageComponentProps,
|
|
116
|
-
} from './OnboardImage/OnboardImageProps.generated';
|
|
117
|
-
export type {
|
|
118
|
-
OnboardItemPropsGenerated,
|
|
119
|
-
OnboardItemComponentProps,
|
|
120
|
-
} from './OnboardItem/OnboardItemProps.generated';
|
|
121
|
-
export type {
|
|
122
|
-
OnboardProviderPropsGenerated,
|
|
123
|
-
OnboardProviderComponentProps,
|
|
124
|
-
} from './OnboardProvider/OnboardProviderProps.generated';
|
|
125
|
-
export type {
|
|
126
|
-
OnboardSubtitlePropsGenerated,
|
|
127
|
-
OnboardSubtitleComponentProps,
|
|
128
|
-
} from './OnboardSubtitle/OnboardSubtitleProps.generated';
|
|
129
|
-
export type {
|
|
130
|
-
OnboardTitlePropsGenerated,
|
|
131
|
-
OnboardTitleComponentProps,
|
|
132
|
-
} from './OnboardTitle/OnboardTitleProps.generated';
|
|
133
|
-
export type {
|
|
134
|
-
PaywallBackgroundPropsGenerated,
|
|
135
|
-
PaywallBackgroundComponentProps,
|
|
136
|
-
} from './PaywallBackground/PaywallBackgroundProps.generated';
|
|
137
|
-
export type {
|
|
138
|
-
PaywallCloseButtonPropsGenerated,
|
|
139
|
-
PaywallCloseButtonComponentProps,
|
|
140
|
-
} from './PaywallCloseButton/PaywallCloseButtonProps.generated';
|
|
141
|
-
export type {
|
|
142
|
-
PaywallOptionsPropsGenerated,
|
|
143
|
-
PaywallOptionsComponentProps,
|
|
144
|
-
} from './PaywallOptions/PaywallOptionsProps.generated';
|
|
145
|
-
export type {
|
|
146
|
-
PaywallProviderPropsGenerated,
|
|
147
|
-
PaywallProviderComponentProps,
|
|
148
|
-
} from './PaywallProvider/PaywallProviderProps.generated';
|
|
149
|
-
export type {
|
|
150
|
-
PaywallSubscribeButtonPropsGenerated,
|
|
151
|
-
PaywallSubscribeButtonComponentProps,
|
|
152
|
-
} from './PaywallSubscribeButton/PaywallSubscribeButtonProps.generated';
|
|
153
|
-
export type {
|
|
154
|
-
PriceTagPropsGenerated,
|
|
155
|
-
PriceTagComponentProps,
|
|
156
|
-
} from './PriceTag/PriceTagProps.generated';
|
|
157
|
-
export type {
|
|
158
|
-
PricingPropsGenerated,
|
|
159
|
-
PricingComponentProps,
|
|
160
|
-
} from './Pricing/PricingProps.generated';
|
|
161
|
-
export type {
|
|
162
|
-
PromoPropsGenerated,
|
|
163
|
-
PromoComponentProps,
|
|
164
|
-
} from './Promo/PromoProps.generated';
|
|
165
|
-
export type {
|
|
166
|
-
RadioButtonPropsGenerated,
|
|
167
|
-
RadioButtonComponentProps,
|
|
168
|
-
} from './RadioButton/RadioButtonProps.generated';
|
|
169
|
-
export type {
|
|
170
|
-
SeparatorPropsGenerated,
|
|
171
|
-
SeparatorComponentProps,
|
|
172
|
-
} from './Separator/SeparatorProps.generated';
|
|
173
|
-
export type {
|
|
174
|
-
StatusBarColorPropsGenerated,
|
|
175
|
-
StatusBarColorComponentProps,
|
|
176
|
-
} from './StatusBarColor/StatusBarColorProps.generated';
|
|
177
|
-
export type {
|
|
178
|
-
TextPropsGenerated,
|
|
179
|
-
TextComponentProps,
|
|
180
|
-
} from './Text/TextProps.generated';
|
|
181
|
-
export type {
|
|
182
|
-
ViewPropsGenerated,
|
|
183
|
-
ViewComponentProps,
|
|
184
|
-
} from './View/ViewProps.generated';
|