@developer_tribe/react-builder 1.2.29 → 1.2.31
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/RenderPage.d.ts +7 -2
- package/dist/attributes-editor/attributesEditorModelTypes.d.ts +0 -1
- package/dist/build-components/BIcon/BIcon.d.ts +1 -1
- package/dist/build-components/BackgroundImage/BackgroundImage.d.ts +1 -1
- package/dist/build-components/Button/Button.d.ts +1 -1
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +4 -0
- package/dist/build-components/OnboardButton/OnboardButton.d.ts +1 -1
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardDot/OnboardDot.d.ts +1 -1
- package/dist/build-components/PaywallCloseButton/PaywallCloseButton.d.ts +1 -1
- package/dist/build-components/Text/Text.d.ts +1 -1
- package/dist/build-components/index.generated.d.ts +38 -0
- package/dist/build-components/patterns.generated.d.ts +11 -17
- package/dist/components/BuilderProvider.d.ts +9 -15
- package/dist/hooks/useLocalize.d.ts +3 -2
- package/dist/hooks/usePreviewSelection.d.ts +12 -0
- package/dist/index.cjs.js +1 -28
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -28
- 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/logger.d.ts +3 -6
- package/dist/modals/IconPickerModal.d.ts +1 -1
- package/dist/pages/DebugJsonPage.d.ts +1 -4
- package/dist/size-matters/index.d.ts +15 -6
- package/dist/store.d.ts +5 -3
- package/dist/types/Icons.generated.d.ts +2 -0
- package/dist/types/PreviewConfig.d.ts +6 -8
- package/dist/types/Project.d.ts +4 -3
- package/dist/utils/extractTextStyle/extractTextStyle.d.ts +2 -0
- package/dist/utils/extractTextStyle/extractTextStyleNative.d.ts +2 -0
- package/dist/utils/extractViewStyle/extractViewStyle.d.ts +2 -0
- package/dist/utils/extractViewStyle/extractViewStyleNative.d.ts +2 -0
- package/dist/utils/useMergedStyle.d.ts +1 -1
- package/package.json +1 -1
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +19 -9
- package/src/RenderPage.tsx +66 -57
- package/src/assets/.DS_Store +0 -0
- package/src/assets/meta.json +1 -1
- package/src/assets/samples/carousel-sample.json +2 -6
- package/src/assets/samples/getSamples.ts +14 -4
- package/src/assets/samples/vpn-onboard-1.json +21 -21
- package/src/assets/samples/vpn-onboard-2.json +21 -45
- package/src/assets/samples/vpn-onboard-3.json +21 -53
- package/src/assets/samples/vpn-onboard-4.json +21 -21
- package/src/assets/samples/vpn-onboard-5.json +33 -33
- package/src/assets/samples/vpn-onboard-6.json +21 -21
- package/src/assets/samples/vpn-onboard-7.json +21 -21
- package/src/attribute-analyser/style/native/useExtractImageStyle.ts +3 -3
- package/src/attribute-analyser/style/native/useExtractTextStyle.ts +8 -2
- package/src/attribute-analyser/style/native/useExtractViewStyle.ts +7 -3
- package/src/attribute-analyser/style/web/useExtractImageStyle.ts +3 -3
- package/src/attribute-analyser/style/web/useExtractTextStyle.ts +8 -2
- package/src/attribute-analyser/style/web/useExtractViewStyle.ts +3 -3
- package/src/attributes-editor/AttributesEditorFields.tsx +1 -1
- package/src/attributes-editor/attributesEditorModelTypes.ts +0 -3
- package/src/attributes-editor/useAttributesEditorModel.ts +0 -3
- package/src/build-components/BIcon/BIcon.tsx +2 -2
- package/src/build-components/BackgroundImage/BackgroundImage.tsx +1 -1
- package/src/build-components/Button/Button.tsx +3 -3
- package/src/build-components/CarouselDots/CarouselDots.tsx +10 -19
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +4 -0
- package/src/build-components/CarouselDots/pattern.json +12 -1
- package/src/build-components/Main/Main.tsx +1 -0
- package/src/build-components/OnboardButton/OnboardButton.tsx +13 -11
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +0 -2
- package/src/build-components/OnboardButton/pattern.json +0 -16
- package/src/build-components/OnboardDot/OnboardDot.tsx +19 -25
- package/src/build-components/OnboardDot/pattern.json +2 -1
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +4 -5
- package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +2 -2
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButton.tsx +2 -2
- package/src/build-components/RadioButton/RadioButton.tsx +6 -3
- package/src/build-components/RenderNode.generated.tsx +7 -7
- package/src/build-components/Text/Text.tsx +3 -3
- package/src/build-components/index.generated.ts +184 -0
- package/src/build-components/patterns.generated.ts +11 -17
- package/src/components/BottomBar.tsx +7 -9
- package/src/components/BuilderProvider.tsx +47 -84
- package/src/components/EditorHeader.tsx +6 -3
- package/src/hooks/useLocalize.ts +14 -10
- package/src/hooks/usePreviewSelection.ts +66 -0
- package/src/index.ts +0 -2
- package/src/logger.ts +4 -20
- package/src/modals/IconPickerModal.tsx +1 -1
- package/src/modals/InspectModal.tsx +6 -7
- package/src/pages/DebugJsonPage.tsx +0 -6
- package/src/pages/ProjectPage.tsx +12 -57
- package/src/pages/tabs/SideTool.tsx +7 -7
- package/src/product-base/extractAndroidParams.ts +4 -11
- package/src/product-base/extractIOSParams.ts +4 -10
- package/src/size-matters/index.ts +44 -31
- package/src/store.ts +12 -6
- package/src/styles/modals/_inspect-modal.scss +7 -3
- package/src/types/Icons.generated.ts +244 -0
- package/src/types/PreviewConfig.ts +5 -9
- package/src/types/Project.ts +4 -3
- package/src/utils/extractImageStyle.ts +4 -2
- package/src/utils/extractTextStyle/extractTextStyle.ts +6 -1
- package/src/utils/extractTextStyle/extractTextStyleNative.ts +4 -1
- package/src/utils/extractViewStyle/extractViewStyle.ts +7 -5
- package/src/utils/extractViewStyle/extractViewStyleNative.ts +3 -1
- package/src/utils/getDefaultProject.ts +0 -1
- package/src/utils/projectColors.ts +3 -2
- package/src/utils/useMergedStyle.ts +9 -7
package/dist/index.cjs.js
CHANGED
|
@@ -1,29 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("react"),t=require("react/jsx-runtime");const i={en:{"base.builder.paywall.period.monthly":"per month","base.builder.paywall.period.annual":"per year","base.builder.paywall.period.weekly":"per week","base.builder.paywall.period.daily":"per day","base.builder.paywall.period.monthlyPromo":"per month","base.builder.paywall.period.annualPromo":"per year","base.builder.paywall.pricing.default.text":"@promoPrice for the first @promoPeriod, then @localizedPrice @localizedPeriod","base.builder.paywall.pricing.freeTrial.text":"@trialPeriod-@trialPeriodUnit free trial, then @localizedPrice @localizedPeriod","base.builder.paywall.pricing.regular.text":"@localizedPrice @localizedPeriod","base.builder.paywall.promo.default.text":"Save @discountPercentage%!","base.builder.paywall.promo.freeTrial.text":"@trialPeriod-@trialPeriodUnit free trial","base.builder.paywall.promo.regular.text":"@localizedPrice @localizedPeriod","onboard.title.one-page":"Secure your connection","onboard.title.two-page":"Access content worldwide","onboard.title.three-page":"Fast and reliable","onboard.title.four-page":"Stay notified and safe","onboard.title.one-page2":"Secure your connection","onboard.title.two-page2":"Access content worldwide","onboard.title.three-page2":"Fast and reliable","onboard.title.four-page2":"Stay notified and safe","onboard.subtitle.one-page":"Encrypt your traffic and protect your privacy on public Wi‑Fi.","onboard.subtitle.two-page":"Connect to high‑speed servers in many countries with one tap.","onboard.subtitle.three-page":"Auto‑connect to the best server for speed and stability.","onboard.subtitle.four-page":"Enable notifications for connection status and security tips.","onboard.subtitle.one-page2":"Encrypt your traffic and protect your privacy on public Wi‑Fi.","onboard.subtitle.two-page2":"Connect to high‑speed servers in many countries with one tap.","onboard.subtitle.three-page2":"Auto‑connect to the best server for speed and stability.","onboard.subtitle.four-page2":"Enable notifications for connection status and security tips.","onboard.next.one-page":"Next","onboard.next.two-page":"Next","onboard.next.three-page":"Next","onboard.skip.one-page":"Skip","onboard.skip.two-page":"Skip","onboard.skip.three-page":"Skip","onboard.allow.four-page":"Allow","view.onboarding.footer.description":"By clicking continue, you will be accepting the Terms of service and privacy policy","view.onboarding.btnPrivacy":"Privacy Policy","view.onboarding.btnTerms":"Terms of Service"},tr:{"base.builder.paywall.period.monthly":"aylık","base.builder.paywall.period.annual":"yıllık","base.builder.paywall.period.weekly":"haftalık","base.builder.paywall.period.daily":"günlük","base.builder.paywall.period.monthlyPromo":"aylık","base.builder.paywall.period.annualPromo":"yıllık","base.builder.paywall.pricing.default.text":"İlk @promoPeriod için @promoPrice, sonra @localizedPrice @localizedPeriod","base.builder.paywall.pricing.freeTrial.text":"@trialPeriod @trialPeriodUnit ücretsiz deneme, sonra @localizedPrice @localizedPeriod","base.builder.paywall.pricing.regular.text":"@localizedPrice @localizedPeriod","base.builder.paywall.promo.default.text":"%@discountPercentage indirim!","base.builder.paywall.promo.freeTrial.text":"@trialPeriod @trialPeriodUnit ücretsiz deneme","base.builder.paywall.promo.regular.text":"@localizedPrice @localizedPeriod"}};function r(e,t){const i=new Set([...Object.keys(e),...Object.keys(t)]),r={};for(const o of i)r[o]={...e[o]||{},...t[o]||{}};return r}const o="light",a={localication:i,baseSize:{width:375,height:812}};function n(e){return e?e.replace(/[^0-9.]/g,""):""}function l(e,t){if(!t||!e)return"";const i=parseFloat(e),r=parseFloat(t);if(isNaN(i)||isNaN(r)||i<=0)return"";const o=Math.round((i-r)/i*100);return String(Math.max(0,o))}function s(e,t){return isNaN(e)?"":"month"===t?e.toFixed(2):"year"===t?(e/12).toFixed(2):"week"===t?(52*e/12).toFixed(2):"day"===t?(365*e/12).toFixed(2):e.toFixed(2)}function c(e,t){return isNaN(e)?"":"year"===t?e.toFixed(2):"month"===t?(12*e).toFixed(2):"week"===t?(52*e).toFixed(2):"day"===t?(365*e).toFixed(2):e.toFixed(2)}const d={monthly:"base.builder.paywall.period.monthly",annual:"base.builder.paywall.period.annual",weekly:"base.builder.paywall.period.weekly",daily:"base.builder.paywall.period.daily",monthlyPromo:"base.builder.paywall.period.monthlyPromo",annualPromo:"base.builder.paywall.period.annualPromo"},p="base.builder.paywall.pricing.default.text",g="base.builder.paywall.pricing.freeTrial.text",y="base.builder.paywall.pricing.regular.text",f="base.builder.paywall.promo.default.text",u="base.builder.paywall.promo.freeTrial.text",b="base.builder.paywall.promo.regular.text";function m(e,t){switch(e){case"month":return t?d.monthlyPromo:d.monthly;case"year":return t?d.annualPromo:d.annual;case"week":return d.weekly;case"day":return d.daily;default:return d.monthly}}function h(e){const t=e.match(/P(\d+)([DWMY])/);if(!t||!t[1]||!t[2])return{value:1,unit:"month"};const i=parseInt(t[1],10),r={D:"day",W:"week",M:"month",Y:"year"}[t[2]];return r?{value:i,unit:r}:{value:1,unit:"month"}}function C(e){if(!e)return"month";return{DAY:"day",WEEK:"week",MONTH:"month",YEAR:"year"}[e.toUpperCase()]||"month"}const S={error(e,t,i,r){console.error(`[iap] ${t}`,i)},warn(e,t,i,r){console.warn(`[iap] ${t}`,i)},info(e,t,i,r){console.info(`[iap] ${t}`,i)},debug:function(){}};function x(e,t){try{const i=e.subscriptionOffers??[];let r=i[0];if(t&&i.length>0){const o=function(e,t){return e.find(e=>e.id===t||e.basePlanIdAndroid===t)}(i,t);o?r=o:S.error(["extractAndroidParams"],"Requested offer not found, using default",{productId:e.id||e.productId,requestedOfferId:t,availableOffers:i.map(e=>e.id)},{remote:!0})}if(!r)return S.warn(["extractAndroidParams"],"No offers found in product",{productId:e.id||e.productId}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const o=r.pricingPhasesAndroid?.pricingPhaseList??[];if(0===o.length)return S.warn(["extractAndroidParams"],"No pricing phases found",{productId:e.id||e.productId,offerId:r.id}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const a=o.find(e=>"0"===e.priceAmountMicros),d=o.find(e=>2===e.recurrenceMode&&"0"!==e.priceAmountMicros),p=o.find(e=>1===e.recurrenceMode)??o[o.length-1];if(!p)return S.error(["extractAndroidParams"],"No regular phase found",{productId:e.id||e.productId,pricingPhasesCount:o.length},{remote:!0}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const g=h(p.billingPeriod),y=`${g.value} ${g.unit}${g.value>1?"s":""}`,f=n(p.formattedPrice),u=p.priceCurrencyCode||"",b=p.formattedPrice||"";let m="",C="",x="",O="";if(d){m=n(d.formattedPrice);const e=d.billingCycleCount||0,t=h(d.billingPeriod),i=e*t.value;C=`${i} ${t.unit}${i>1?"s":""}`,x=String(e),O=t.unit}let z="false",T="",v="";if(a){z="true";const e=h(a.billingPeriod);T=String(e.value),v=e.unit}const w=l(f,m),_=parseFloat(f),R=s(_,g.unit),B=c(_,g.unit);return{price:f,promoPrice:m,currency:u,localizedPrice:b,period:g.unit,periodValue:String(g.value),periodType:y,promoPeriod:C,promoCycles:x,promoPeriodUnit:O,hasTrial:z,trialPeriod:T,trialPeriodUnit:v,discountPercentage:w,pricePerMonth:R,pricePerYear:B}}catch(t){return S.error(["extractAndroidParams"],"Failed to extract Android params",{productId:e?.id||e?.productId,error:t instanceof Error?t.message:String(t)},{remote:!0}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""}}}function O(e,t){return{promoPeriod:`${e} ${t}${e>1?"s":""}`,promoCycles:String(e),promoPeriodUnit:t}}function z(e,t){try{const i=String(e.price||e.localizedPrice||"").replace(/[^0-9.]/g,""),r=e.currency||e.currencyCode||"",o=e.localizedPrice||"",a=C(e.subscriptionPeriodUnitIOS||"MONTH"),n=String(e.subscriptionPeriodNumberIOS||1),d=`${n} ${a}${parseInt(n,10)>1?"s":""}`,p=e.introductoryPrice||e.introductoryPriceIOS,g=!!p,y=g&&function(e){return"free_trial"===e.type||0===parseFloat(e.price||e.priceIOS||"0")}(p);let f="false",u="",b="",m="",h="",x="",z="";if(y)f="true",u=String(p.subscriptionPeriodNumberIOS||p.numberOfPeriods||7),b=C(p.subscriptionPeriodUnitIOS||p.subscriptionPeriod||"DAY");else if(g){m=String(p.price||p.priceIOS||"").replace(/[^0-9.]/g,"");const e=p.numberOfPeriods||1,t=O(e,C(p.subscriptionPeriodUnitIOS||p.subscriptionPeriod||"MONTH"));h=t.promoPeriod,x=t.promoCycles,z=t.promoPeriodUnit}if(t&&e.discounts){const i=e.discounts.find(e=>e.identifier===t);if(i){m=String(i.price||"").replace(/[^0-9.]/g,"");const e=i.numberOfPeriods||1,t=O(e,C(i.subscriptionPeriod||"MONTH"));h=t.promoPeriod,x=t.promoCycles,z=t.promoPeriodUnit}else S.error(["extractIOSParams"],"Requested offer not found in discounts",{productId:e.id||e.productId,requestedOfferId:t,availableDiscounts:e.discounts.map(e=>e.identifier)},{remote:!0})}const T=l(i,m),v=parseFloat(i),w=s(v,a);return{price:i,promoPrice:m,currency:r,localizedPrice:o,period:a,periodValue:n,periodType:d,promoPeriod:h,promoCycles:x,promoPeriodUnit:z,hasTrial:f,trialPeriod:u,trialPeriodUnit:b,discountPercentage:T,pricePerMonth:w,pricePerYear:c(v,a)}}catch(t){return S.error(["extractIOSParams"],"Failed to extract iOS params",{productId:e?.id||e?.productId,error:t instanceof Error?t.message:String(t)},{remote:!0}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""}}}function T(e,t,i,r){const o=r??(e=>e),a="android"===t?x(e,i):z(e,i),n=a.period||"month",l=!!a.promoPrice,s="true"===a.hasTrial,c=m(n,!1),d=l?m(n,!0):"",h=l?`${a.promoPrice} ${a.currency}`.trim():"",C=o(c),S=l?o(d):"",O=h||a.localizedPrice,T=S||C;let v,w;return l?(v=p,w=f):s?(v=g,w=u):(v=y,w=b),{price:a.price,promoPrice:a.promoPrice,currency:a.currency,localizedPrice:a.localizedPrice,period:a.period,promoPeriod:a.promoPeriod,promoPeriodUnit:a.promoPeriodUnit,hasTrial:a.hasTrial,trialPeriod:a.trialPeriod,trialPeriodUnit:a.trialPeriodUnit,discountPercentage:a.discountPercentage,localizedPeriod:C,localizedPromoPeriod:S,localizedPromoPrice:h,localizedCalculatedPrice:O,localizedCalculatedPeriod:T,baseLocalizedPricingText:o(v),baseLocalizedPromoText:o(w),productTitle:String(e.title??""),productDescription:String(e.description??""),productCurreny:a.currency,productId:String(e.productId??""),productSelected:"true"}}var v={"preset-1":[{productId:"com.app.monthly",id:"com.app.monthly",title:"Monthly",description:"Unlock all features for a month.",type:"subs",displayName:"Monthly Subscription",displayPrice:"$4.99",localizedPrice:"$4.99",currency:"USD",price:"4.99",platform:"android",subscriptionOffers:[{id:"monthly-trial-offer",displayPrice:"Free → $4.99",price:0,type:"promotional",currency:"USD",basePlanIdAndroid:"monthly-base",offerTokenAndroid:"mock_token_monthly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P3D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"$4.99",priceAmountMicros:"4990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:3,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:3},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.yearly",id:"com.app.yearly",title:"Yearly (Save 33%)",description:"Best value: full access for a year.",type:"subs",displayName:"Yearly Subscription",displayPrice:"$29.99",localizedPrice:"$29.99",currency:"USD",price:"29.99",platform:"android",subscriptionOffers:[{id:"yearly-promo-offer",displayPrice:"$19.99",price:19.99,type:"promotional",currency:"USD",basePlanIdAndroid:"yearly-base",offerTokenAndroid:"mock_token_yearly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P1Y",formattedPrice:"$19.99",priceAmountMicros:"19990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"$29.99",priceAmountMicros:"29990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"19.99",priceIOS:"19.99",type:"pay_as_you_go",numberOfPeriods:1,subscriptionPeriod:"YEAR",subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},discounts:[{identifier:"yearly-promo-offer",price:"19.99",numberOfPeriods:1,subscriptionPeriod:"YEAR"}],subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},{productId:"com.app.weekly",id:"com.app.weekly",title:"Weekly",description:"Try with a flexible weekly plan.",type:"subs",displayName:"Weekly Subscription",displayPrice:"$1.99",localizedPrice:"$1.99",currency:"USD",price:"1.99",platform:"android",subscriptionOffers:[{id:"weekly-base",displayPrice:"$0.99",price:.99,type:"promotional",currency:"USD",basePlanIdAndroid:"weekly-base",offerTokenAndroid:"mock_token_weekly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:4,billingPeriod:"P1W",formattedPrice:"$0.99",priceAmountMicros:"990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1W",formattedPrice:"$1.99",priceAmountMicros:"1990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.99",priceIOS:"0.99",type:"pay_as_you_go",numberOfPeriods:4,subscriptionPeriod:"WEEK",subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1},subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1}],"preset-2":[{productId:"com.app.premium.monthly",id:"com.app.premium.monthly",title:"Premium Monthly",description:"Premium tier with all features.",type:"subs",displayName:"Premium Monthly",displayPrice:"$9.99",localizedPrice:"$9.99",currency:"USD",price:"9.99",platform:"android",subscriptionOffers:[{id:"premium-monthly-trial-offer",displayPrice:"Free → $9.99",price:0,type:"promotional",currency:"USD",basePlanIdAndroid:"premium-monthly-base",offerTokenAndroid:"mock_token_premium_monthly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P7D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"$9.99",priceAmountMicros:"9990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:7,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:7},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.premium.yearly",id:"com.app.premium.yearly",title:"Premium Yearly (Save 50%)",description:"7-day free trial, then $29.99 first year, $59.99/yr after.",type:"subs",displayName:"Premium Yearly",displayPrice:"$59.99",localizedPrice:"$59.99",currency:"USD",price:"59.99",platform:"android",subscriptionOffers:[{id:"premium-yearly-full-offer",displayPrice:"$29.99",price:29.99,type:"promotional",currency:"USD",basePlanIdAndroid:"premium-yearly-base",offerTokenAndroid:"mock_token_premium_yearly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P7D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:1,billingPeriod:"P1Y",formattedPrice:"$29.99",priceAmountMicros:"29990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"$59.99",priceAmountMicros:"59990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:7,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:7},discounts:[{identifier:"premium-yearly-full-offer",price:"29.99",numberOfPeriods:1,subscriptionPeriod:"YEAR"}],subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},{productId:"com.app.lifetime",id:"com.app.lifetime",title:"Lifetime",description:"One-time purchase for lifetime access.",type:"in-app",displayName:"Lifetime Access",displayPrice:"$99.99",localizedPrice:"$99.99",currency:"USD",price:"99.99",platform:"android",subscriptionOffers:[]}],"preset-3":[{productId:"com.app.budget.weekly",id:"com.app.budget.weekly",title:"Budget Weekly",description:"Affordable weekly plan.",type:"subs",displayName:"Budget Weekly",displayPrice:"€2.99",localizedPrice:"€2.99",currency:"EUR",price:"2.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"budget-weekly-trial-offer",displayPrice:"Free → €2.99",price:0,type:"promotional",currency:"EUR",basePlanIdAndroid:"budget-weekly-base",offerTokenAndroid:"mock_token_budget_weekly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P3D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"EUR",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1W",formattedPrice:"€2.99",priceAmountMicros:"2990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:3,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:3},subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1},{productId:"com.app.monthly.promo",id:"com.app.monthly.promo",title:"Monthly (70% off first 3 months)",description:"€2.99/mo for 3 months, then €9.99/mo.",type:"subs",displayName:"Monthly with Promo",displayPrice:"€9.99",localizedPrice:"€9.99",currency:"EUR",price:"9.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"monthly-promo-offer",displayPrice:"€2.99",price:2.99,type:"promotional",currency:"EUR",basePlanIdAndroid:"monthly-promo",offerTokenAndroid:"mock_token_monthly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:3,billingPeriod:"P1M",formattedPrice:"€2.99",priceAmountMicros:"2990000",priceCurrencyCode:"EUR",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"€9.99",priceAmountMicros:"9990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"2.99",priceIOS:"2.99",type:"pay_as_you_go",numberOfPeriods:3,subscriptionPeriod:"MONTH",subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.yearly.trial",id:"com.app.yearly.trial",title:"Yearly (14-day free trial)",description:"Try free for 14 days, then €29.99/yr.",type:"subs",displayName:"Yearly with Trial",displayPrice:"€29.99",localizedPrice:"€29.99",currency:"EUR",price:"29.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"yearly-trial-offer",displayPrice:"Free → €29.99",price:0,type:"promotional",currency:"EUR",basePlanIdAndroid:"yearly-trial",offerTokenAndroid:"mock_token_yearly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P14D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"EUR",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"€29.99",priceAmountMicros:"29990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:14,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:14},subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1}]};function w(){return JSON.parse(JSON.stringify(v))}const _={STATIC_COLORS:{BLACK:"#000",WHITE:"#FFFFFF",TRANSPARENT:"#ffffff00",ONBOARD_DOT_INACTIVE:"#E4E5E7",ONBOARD_DOT_ACTIVE:"#007AFF",ONBOARD_BUTTON_PRIMARY_BACKGROUND:"#0000FF",ONBOARD_BUTTON_PRIMARY_TEXT:"#000",ONBOARD_LINK_COLOR:"#1778F2",ONBOARD_SEPARATOR_COLOR:"#44454D"},THEME_COLORS:{light:{TEXT:"#161827",BACKGROUND:"#F4F5FF",ICON:"#0450E2",LINE:"#E9EBF9",ONBOARD_TITLE:"#161827",ONBOARD_SUBTITLE:"#44454D",ONBOARD_BUTTON_SECONDARY_TEXT:"#81838F",ONBOARD_FOOTER_TEXT:"#81838F"},dark:{TEXT:"#E9EBF9",BACKGROUND:"#080A17",ICON:"#0450E2",LINE:"#161827",ONBOARD_TITLE:"#FDFDFD",ONBOARD_SUBTITLE:"#C7C7C7",ONBOARD_BUTTON_SECONDARY_TEXT:"#A9AAAC",ONBOARD_FOOTER_TEXT:"#A2A4B1"}}};function R(e,t){return{STATIC_COLORS:{...e.STATIC_COLORS,...t.STATIC_COLORS||{}},THEME_COLORS:{light:{...e.THEME_COLORS?.light||{},...t.THEME_COLORS?.light||{}},dark:{...e.THEME_COLORS?.dark||{},...t.THEME_COLORS?.dark||{}}}}}const B=e.createContext(void 0);function I(){return e.useContext(B)??{mockProducts:[],mockBenefits:{},platform:"web",theme:o,defaultLanguage:"en",projectColors:_}}const P=e.createContext({localizationParams:{},nestedLocalizationParams:{},otherParams:{}});function L({localizationParams:i,nestedLocalizationParams:r,otherParams:o,children:a}){const n=e.useMemo(()=>({localizationParams:i??{},nestedLocalizationParams:r??{},otherParams:o??{}}),[i,r,o]);return e.useEffect(()=>{},[n]),t.jsx(P.Provider,{value:n,children:a})}function M(){return e.useContext(P)??{localizationParams:{},nestedLocalizationParams:{},otherParams:{}}}function A(){return M().localizationParams??{}}function k(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var E,H={exports:{}},W={},N={exports:{}},D={};var F,V,U,j={};
|
|
2
|
-
/**
|
|
3
|
-
* @license React
|
|
4
|
-
* use-sync-external-store-shim.development.js
|
|
5
|
-
*
|
|
6
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
7
|
-
*
|
|
8
|
-
* This source code is licensed under the MIT license found in the
|
|
9
|
-
* LICENSE file in the root directory of this source tree.
|
|
10
|
-
*/function K(){return V||(V=1,"production"===process.env.NODE_ENV?N.exports=function(){if(E)return D;E=1;var t=e,i="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},r=t.useState,o=t.useEffect,a=t.useLayoutEffect,n=t.useDebugValue;function l(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!i(e,r)}catch(e){return!0}}var s="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var i=t(),s=r({inst:{value:i,getSnapshot:t}}),c=s[0].inst,d=s[1];return a(function(){c.value=i,c.getSnapshot=t,l(c)&&d({inst:c})},[e,i,t]),o(function(){return l(c)&&d({inst:c}),e(function(){l(c)&&d({inst:c})})},[e]),n(i),i};return D.useSyncExternalStore=void 0!==t.useSyncExternalStore?t.useSyncExternalStore:s,D}():N.exports=(F||(F=1,"production"!==process.env.NODE_ENV&&function(){function t(e){var t=e.getSnapshot;e=e.value;try{var i=t();return!r(e,i)}catch(e){return!0}}"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var i=e,r="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},o=i.useState,a=i.useEffect,n=i.useLayoutEffect,l=i.useDebugValue,s=!1,c=!1,d="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,d){s||void 0===i.startTransition||(s=!0,console.error("You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release."));var p=d();if(!c){var g=d();r(p,g)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),c=!0)}var y=(g=o({inst:{value:p,getSnapshot:d}}))[0].inst,f=g[1];return n(function(){y.value=p,y.getSnapshot=d,t(y)&&f({inst:y})},[e,p,d]),a(function(){return t(y)&&f({inst:y}),e(function(){t(y)&&f({inst:y})})},[e]),l(p),p};j.useSyncExternalStore=void 0!==i.useSyncExternalStore?i.useSyncExternalStore:d,"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())}()),j)),N.exports}
|
|
11
|
-
/**
|
|
12
|
-
* @license React
|
|
13
|
-
* use-sync-external-store-shim/with-selector.production.js
|
|
14
|
-
*
|
|
15
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
16
|
-
*
|
|
17
|
-
* This source code is licensed under the MIT license found in the
|
|
18
|
-
* LICENSE file in the root directory of this source tree.
|
|
19
|
-
*/var G,Y,$={};
|
|
20
|
-
/**
|
|
21
|
-
* @license React
|
|
22
|
-
* use-sync-external-store-shim/with-selector.development.js
|
|
23
|
-
*
|
|
24
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
25
|
-
*
|
|
26
|
-
* This source code is licensed under the MIT license found in the
|
|
27
|
-
* LICENSE file in the root directory of this source tree.
|
|
28
|
-
*/var X=(Y||(Y=1,"production"===process.env.NODE_ENV?H.exports=function(){if(U)return W;U=1;var t=e,i=K(),r="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},o=i.useSyncExternalStore,a=t.useRef,n=t.useEffect,l=t.useMemo,s=t.useDebugValue;return W.useSyncExternalStoreWithSelector=function(e,t,i,c,d){var p=a(null);if(null===p.current){var g={hasValue:!1,value:null};p.current=g}else g=p.current;p=l(function(){function e(e){if(!n){if(n=!0,o=e,e=c(e),void 0!==d&&g.hasValue){var t=g.value;if(d(t,e))return a=t}return a=e}if(t=a,r(o,e))return t;var i=c(e);return void 0!==d&&d(t,i)?(o=e,t):(o=e,a=i)}var o,a,n=!1,l=void 0===i?null:i;return[function(){return e(t())},null===l?void 0:function(){return e(l())}]},[t,i,c,d]);var y=o(e,p[0],p[1]);return n(function(){g.hasValue=!0,g.value=y},[y]),s(y),y},W}():H.exports=(G||(G=1,"production"!==process.env.NODE_ENV&&function(){"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var t=e,i=K(),r="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},o=i.useSyncExternalStore,a=t.useRef,n=t.useEffect,l=t.useMemo,s=t.useDebugValue;$.useSyncExternalStoreWithSelector=function(e,t,i,c,d){var p=a(null);if(null===p.current){var g={hasValue:!1,value:null};p.current=g}else g=p.current;p=l(function(){function e(e){if(!n){if(n=!0,o=e,e=c(e),void 0!==d&&g.hasValue){var t=g.value;if(d(t,e))return a=t}return a=e}if(t=a,r(o,e))return t;var i=c(e);return void 0!==d&&d(t,i)?(o=e,t):(o=e,a=i)}var o,a,n=!1,l=void 0===i?null:i;return[function(){return e(t())},null===l?void 0:function(){return e(l())}]},[t,i,c,d]);var y=o(e,p[0],p[1]);return n(function(){g.hasValue=!0,g.value=y},[y]),s(y),y},"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())}()),$)),H.exports),J=k(X);const Z=e=>{let t;const i=new Set,r=(e,r)=>{const o="function"==typeof e?e(t):e;if(!Object.is(o,t)){const e=t;t=(null!=r?r:"object"!=typeof o||null===o)?o:Object.assign({},t,o),i.forEach(i=>i(t,e))}},o=()=>t,a={setState:r,getState:o,getInitialState:()=>n,subscribe:e=>(i.add(e),()=>i.delete(e))},n=t=e(r,o,a);return a},{useSyncExternalStoreWithSelector:q}=J,Q=e=>e;const ee=e=>Symbol.iterator in e,te=e=>"entries"in e,ie=(e,t)=>{const i=e instanceof Map?e:new Map(e.entries()),r=t instanceof Map?t:new Map(t.entries());if(i.size!==r.size)return!1;for(const[e,t]of i)if(!r.has(e)||!Object.is(t,r.get(e)))return!1;return!0};var re=[{name:"iphone 12",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:13,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 12 pro",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:19,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:4,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 pro",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:8,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:15,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 pro",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:15,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:6,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 pro",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:18,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"pixel 3 xl",platform:"android",width:412,height:847,aspect:"tall",type:"phone",importance:8,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 4 xl",platform:"android",width:412,height:869,aspect:"tall",type:"phone",importance:14,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 6",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:10,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 6 pro",platform:"android",width:412,height:892,aspect:"tall",type:"phone",importance:4,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 7",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:11,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 7 pro",platform:"android",width:412,height:892,aspect:"tall",type:"phone",importance:5,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 8",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:12,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 8 pro",platform:"android",width:412,height:919,aspect:"tall",type:"phone",importance:16,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s8",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:5,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s8+",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:1,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s9",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:4,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s9+",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:4,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s10",platform:"android",width:360,height:760,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s10+",platform:"android",width:412,height:869,aspect:"tall",type:"phone",importance:15,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20",platform:"android",width:360,height:800,aspect:"tall",type:"phone",importance:13,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:16,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21",platform:"android",width:360,height:800,aspect:"tall",type:"phone",importance:13,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:12,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:8,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:1,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 8",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:4,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 8 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:20,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 9",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:3,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 9 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:1,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"xiaomi mi 11",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:9,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"huawei p30",platform:"android",width:360,height:750,aspect:"tall",type:"phone",importance:10,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"huawei p30 pro",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:14,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"oppo find x3 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:7,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"iphone 6 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:27,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 6s plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:35,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 7 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:40,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 8 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:32,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone xs max",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:21,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone xr",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:31,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:36,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11 pro max",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:22,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 12 pro max",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:28,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 pro max",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:30,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 plus",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:29,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 pro max",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:39,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 plus",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:24,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 pro max",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:22,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"pixel 2",platform:"android",width:411,height:731,aspect:"regular",type:"phone",importance:29,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"pixel 2 xl",platform:"android",width:411,height:823,aspect:"regular",type:"phone",importance:36,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"pixel 3",platform:"android",width:393,height:786,aspect:"regular",type:"phone",importance:39,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 4",platform:"android",width:411,height:869,aspect:"tall",type:"phone",importance:24,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 5",platform:"android",width:393,height:851,aspect:"tall",type:"phone",importance:23,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"xiaomi mi 9",platform:"android",width:393,height:851,aspect:"tall",type:"phone",importance:39,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"iphone 6",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:42,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 6s",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:60,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 7",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:41,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 8",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:59,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone x",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:46,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone xs",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:56,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11 pro",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:57,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone se (2nd gen)",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:56,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone se (3rd gen)",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:59,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 12 mini",platform:"ios",width:360,height:780,aspect:"tall",type:"phone",importance:70,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 mini",platform:"ios",width:360,height:780,aspect:"tall",type:"phone",importance:78,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone (1st gen)",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:82,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 3g",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:84,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 3gs",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:88,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 4",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:86,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 4s",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:92,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:100,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5c",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:92,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5s",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:96,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone se (1st gen)",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:86,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"nexus 7 (2013)",platform:"android",width:600,height:960,aspect:"wide",type:"tablet",importance:83,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"nexus 9",platform:"android",width:768,height:1024,aspect:"wide",type:"tablet",importance:90,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"pixel c",platform:"android",width:900,height:1280,aspect:"wide",type:"tablet",importance:100,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"galaxy tab s6",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:97,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab s7",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:99,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab s8",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:81,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab a 10.1",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:94,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"lenovo tab p11",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:91,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"fire hd 10",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:98,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12}];function oe(){const e=re.slice();return e.sort((e,t)=>(e.importance??999)-(t.importance??999)),e}function ae(){return oe()[0]}function ne(e,t){let i;try{i=e()}catch(e){return}const r={getItem:e=>{var t;const r=e=>null===e?null:JSON.parse(e,void 0),o=null!=(t=i.getItem(e))?t:null;return o instanceof Promise?o.then(r):r(o)},setItem:(e,t)=>i.setItem(e,JSON.stringify(t,void 0)),removeItem:e=>i.removeItem(e)};return r}const le=e=>t=>{try{const i=e(t);return i instanceof Promise?i:{then:e=>le(e)(i),catch(e){return this}}}catch(e){return{then(e){return this},catch:t=>le(t)(e)}}},se=((t,i)=>{const r=(e=>e?Z(e):Z)(t),o=(t,o=i)=>function(t,i=Q,r){const o=q(t.subscribe,t.getState,t.getInitialState,i,r);return e.useDebugValue(o),o}(r,t,o);return Object.assign(o,r),o})(((e,t)=>(i,r,o)=>{let a={storage:ne(()=>localStorage),partialize:e=>e,version:0,merge:(e,t)=>({...t,...e}),...t},n=!1;const l=new Set,s=new Set;let c=a.storage;if(!c)return e((...e)=>{console.warn(`[zustand persist middleware] Unable to update item '${a.name}', the given storage is currently unavailable.`),i(...e)},r,o);const d=()=>{const e=a.partialize({...r()});return c.setItem(a.name,{state:e,version:a.version})},p=o.setState;o.setState=(e,t)=>(p(e,t),d());const g=e((...e)=>(i(...e),d()),r,o);let y;o.getInitialState=()=>g;const f=()=>{var e,t;if(!c)return;n=!1,l.forEach(e=>{var t;return e(null!=(t=r())?t:g)});const o=(null==(t=a.onRehydrateStorage)?void 0:t.call(a,null!=(e=r())?e:g))||void 0;return le(c.getItem.bind(c))(a.name).then(e=>{if(e){if("number"!=typeof e.version||e.version===a.version)return[!1,e.state];if(a.migrate){const t=a.migrate(e.state,e.version);return t instanceof Promise?t.then(e=>[!0,e]):[!0,t]}console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}return[!1,void 0]}).then(e=>{var t;const[o,n]=e;if(y=a.merge(n,null!=(t=r())?t:g),i(y,!0),o)return d()}).then(()=>{null==o||o(y,void 0),y=r(),n=!0,s.forEach(e=>e(y))}).catch(e=>{null==o||o(void 0,e)})};return o.persist={setOptions:e=>{a={...a,...e},e.storage&&(c=e.storage)},clearStorage:()=>{null==c||c.removeItem(a.name)},getOptions:()=>a,rehydrate:()=>f(),hasHydrated:()=>n,onHydrate:e=>(l.add(e),()=>{l.delete(e)}),onFinishHydration:e=>(s.add(e),()=>{s.delete(e)})},a.skipHydration||f(),y||g})(e=>({projectName:"",setProjectName:t=>e({projectName:t}),copiedNode:null,setCopiedNode:t=>e({copiedNode:t}),current:null,setCurrent:t=>e({current:t}),forceRender:0,incForceRender:()=>e(e=>({forceRender:e.forceRender+1})),device:ae(),setDevice:t=>e({device:t}),appConfig:a,setAppConfig:t=>e({appConfig:t}),projectColors:void 0,setProjectColors:t=>e({projectColors:t}),theme:o,setTheme:t=>e({theme:t}),defaultLanguage:"en",setDefaultLanguage:t=>e({defaultLanguage:t}),isRtl:!1,setIsRtl:t=>e({isRtl:t}),previewMode:!1,setPreviewMode:t=>e({previewMode:t}),products:[],addProduct:()=>e(e=>({products:[...Array.isArray(e.products)?e.products:[],{productId:"",title:"",description:"",localizedPrice:"",price:"",currency:""}]})),removeProduct:t=>e(e=>({products:e.products.filter((e,i)=>i!==t)})),updateProduct:(t,i)=>e(e=>{const r=e.products;if(!Array.isArray(r))return e;if(t<0||t>=r.length)return e;return{products:r.map((e,r)=>r===t?{...e,...i??{}}:e)}}),setProducts:t=>e({products:Array.isArray(t)?t:[]}),clearProducts:()=>e({products:[]}),benefits:{},setBenefits:t=>e({benefits:t&&"object"==typeof t&&!Array.isArray(t)?t:{}}),clearBenefits:()=>e({benefits:{}}),upsertBenefit:(t,i)=>e(e=>{const r="string"==typeof t?t.trim():"";if(!r)return e;if("string"!=typeof i&&"number"!=typeof i&&"boolean"!=typeof i)return e;const o={...e.benefits??{}};return o[r]=i,{benefits:o}}),removeBenefit:t=>e(e=>{const i="string"==typeof t?t.trim():"";if(!i)return e;const r=e.benefits;if(!r||"object"!=typeof r)return e;if(!(i in r))return e;const o={...r??{}};return delete o[i],{benefits:o}}),renameBenefit:(t,i)=>e(e=>{const r="string"==typeof t?t.trim():"",o="string"==typeof i?i.trim():"";if(!r||!o)return e;if(r===o)return e;const a=e.benefits;if(!a||"object"!=typeof a)return e;if(!(r in a))return e;const n={...a??{}},l=n[r];return delete n[r],n[o]=l,{benefits:n}}),logs:[],logLevel:"INFO",setLogLevel:t=>e({logLevel:t}),addLog:t=>e(e=>{const i=Date.now(),r={id:t.id??`${i}-${Math.random().toString(36).slice(2,8)}`,timestamp:t.timestamp??i,level:t.level,source:t.source,message:t.message,payload:t.payload};return{logs:[...e.logs,r]}}),clearLogs:()=>e({logs:[]}),fonts:[],setFonts:t=>e({fonts:Array.isArray(t)?t:[]}),appFont:void 0,setAppFont:t=>e({appFont:t}),errors:[],setErrors:t=>e({errors:Array.isArray(t)?t:[]}),addError:t=>e(e=>({errors:[...Array.isArray(e.errors)?e.errors:[],String(t)]})),clearErrors:()=>e({errors:[]}),loadedFonts:[],markFontLoaded:t=>e(e=>{const i="string"==typeof t?t.trim():"";if(!i)return e;const r=Array.isArray(e.loadedFonts)?e.loadedFonts:[];return r.includes(i)?e:{loadedFonts:[...r,i]}}),listMaxNested:3,setListMaxNested:t=>e({listMaxNested:Number.isFinite(t)&&t>0?t:5}),statusBarOverrideColor:null,setStatusBarOverrideColor:t=>e({statusBarOverrideColor:t}),navBarOverrideColor:null,setNavBarOverrideColor:t=>e({navBarOverrideColor:t})}),{name:"render-store",partialize:e=>({copiedNode:e.copiedNode??null,logLevel:e.logLevel,products:e.products,benefits:e.benefits,listMaxNested:e.listMaxNested}),storage:ne(()=>localStorage)}),function(e,t){return!!Object.is(e,t)||"object"==typeof e&&null!==e&&"object"==typeof t&&null!==t&&(Object.getPrototypeOf(e)===Object.getPrototypeOf(t)&&(ee(e)&&ee(t)?te(e)&&te(t)?ie(e,t):((e,t)=>{const i=e[Symbol.iterator](),r=t[Symbol.iterator]();let o=i.next(),a=r.next();for(;!o.done&&!a.done;){if(!Object.is(o.value,a.value))return!1;o=i.next(),a=r.next()}return!!o.done&&!!a.done})(e,t):ie({entries:()=>Object.entries(e)},{entries:()=>Object.entries(t)})))}),ce=ae(),de=a.baseSize;function pe(e,t){return"number"==typeof e&&Number.isFinite(e)?e:t}function ge(){const e=se.getState(),t=e.device??ce,i=e.appConfig?.baseSize??de,r=pe(t?.width,ce.width),o=pe(t?.height,ce.height),a=pe(i?.width,de.width),n=pe(i?.height,de.height),[l,s]=r<o?[r,o]:[o,r];return{baseSize:{width:a,height:n},shortDimension:l,longDimension:s}}function ye(e){const{baseSize:t,longDimension:i}=ge();return i/t.height*e}const fe=function(e){const{baseSize:t,shortDimension:i}=ge();return i/t.width*e},ue=ye,be=ye;function me(e){if(void 0===e)return;if("number"==typeof e)return e;const t=String(e).trim(),i=t.toLowerCase();if(i.endsWith("@s")){const e=parseFloat(i.slice(0,-2));return Number.isFinite(e)?fe(e):t}if(i.endsWith("@vs")){const e=parseFloat(i.slice(0,-3));return Number.isFinite(e)?ue(e):t}if(i.endsWith("@f")||i.endsWith("@fs")){const e=i.endsWith("@f")?-2:-3,r=parseFloat(i.slice(0,e));return Number.isFinite(r)?be(r):t}if(i.endsWith("%")){const e=parseFloat(i.slice(0,-1));return Number.isFinite(e)?`${e}%`:t}if(i.endsWith("px")){const e=parseFloat(i.replace("px",""));return Number.isFinite(e)?e:t}const r=parseFloat(i);return Number.isFinite(r)?r:t}const he="STATIC_COLORS.",Ce="THEME_COLORS.";function Se(e,t={}){if("string"!=typeof e)return e;const i=e.trim();if(!i)return;const{projectColors:r,theme:o}=t;if(!r)return i;if(i.startsWith(he)){const e=i.slice(14),t=r.STATIC_COLORS?.[e];return"string"==typeof t&&t.trim()?t.trim():i}if(i.startsWith(Ce)){const e=i.slice(13);if(!e)return i;const t=o??"light",a=r.THEME_COLORS?.[t],n=a?.[e];return"string"==typeof n&&n.trim()?n.trim():i}return i}function xe(e){const t=Oe(e),i=t.styles??t.style;return"object"!=typeof(r=i)||null===r||Array.isArray(r)?void 0:i;var r}function Oe(e){return e??{}}const ze=new Set(["style","styles","flexDirection","flexWrap","alignItems","justifyContent","gap","padding","paddingHorizontal","paddingVertical","paddingTop","paddingBottom","paddingLeft","paddingRight","margin","marginHorizontal","marginVertical","marginTop","marginBottom","marginLeft","marginRight","backgroundColor","borderRadius","width","minWidth","maxWidth","height","minHeight","maxHeight","flex","position","top","bottom","left","right","zIndex","color","fontSize","fontFamily","fontWeight","textAlign","resizeMode"]);function Te(e){return Object.fromEntries(Object.entries(e).filter(([e])=>!ze.has(e)))}function ve(e,t={}){const i=e.attributes,r=Oe(i),o=xe(i),a=e=>{const t=r[e];return null!=t?t:o?.[e]},n={flexDirection:"column"};if(!i)return n;const l=a("flexDirection");l&&(n.flexDirection=String(l));const s=a("alignItems");s&&(n.alignItems=String(s));const c=a("justifyContent");c&&(n.justifyContent=String(c));const d=(e,t)=>{if(null==(i=t)||"string"==typeof i&&""===i.trim())return;var i;const r=me(t);"number"!=typeof r&&"string"!=typeof r||(n[e]=r)};d("padding",a("padding")),d("paddingHorizontal",a("paddingHorizontal")),d("paddingVertical",a("paddingVertical")),d("paddingTop",a("paddingTop")),d("paddingBottom",a("paddingBottom")),d("paddingLeft",a("paddingLeft")),d("paddingRight",a("paddingRight")),d("margin",a("margin")),d("marginHorizontal",r.marginHorizontal??o?.marginHorizontal),d("marginVertical",a("marginVertical")),d("marginTop",a("marginTop")),d("marginBottom",a("marginBottom")),d("marginLeft",a("marginLeft")),d("marginRight",a("marginRight"));const p=a("backgroundColor");p&&(n.backgroundColor=Se(p,{projectColors:t.projectColors,theme:t.theme})??p),d("borderRadius",a("borderRadius")),d("width",a("width")),d("minWidth",a("minWidth")),d("maxWidth",a("maxWidth")),d("height",a("height")),d("minHeight",a("minHeight")),d("maxHeight",a("maxHeight"));const g=a("flex");void 0!==g&&(n.flex=g);const y=a("position");y&&(n.position=y),d("top",a("top")),d("bottom",a("bottom")),d("left",a("left")),d("right",a("right"));const f=a("zIndex");return void 0!==f&&(n.zIndex=f),n}const we=["normal","bold","100","200","300","400","500","600","700","800","900"];function _e(e){if("number"==typeof e&&Number.isFinite(e)){const t=String(e);return we.includes(t)?t:void 0}if("string"==typeof e){const t=e.trim();return we.includes(t)?t:void 0}}function Re(e){return"string"==typeof e?e.trim():""}function Be(e){if("string"!=typeof e)return null;const t=e.trim();if(!t)return null;const i=Number(t);return Number.isFinite(i)?i:null}function Ie(e,t={}){const i=e.attributes,r=Oe(i),a=xe(i),n=e=>{const t=r[e];return null!=t?t:a?.[e]},l=t.theme??o,s=Se("THEME_COLORS.TEXT",{projectColors:t.projectColors,theme:l})??"THEME_COLORS.TEXT",c={};if(!i)return c.fontSize=be(14),c.color=s,c;const d=me(n("fontSize"));c.fontSize="number"==typeof d?d:be(14);const p=n("fontFamily"),g=n("fontWeight"),y=function(e){const t=_e(e);if(t)return"normal"===t?"400":"bold"===t?"700":t}(g),f="string"==typeof p&&p.trim().length>0?p.trim():void 0;if(f){const e=function(e,t){const i=Re(t);if(i&&Array.isArray(e))return e.find(e=>e?.name===i)}(t.fonts??[],f),i=e?.family&&"object"==typeof e.family?function(e,t){const i=Object.entries(e??{}).filter(([e,t])=>"string"==typeof e&&e.trim().length>0&&"string"==typeof t&&t.trim().length>0);if(0===i.length)return;const r=Re(t);if(r&&i.some(([e])=>e===r))return r;if(i.some(([e])=>"400"===e))return"400";const o=Be(r),a=i.map(([e])=>({k:e,n:Be(e)})).filter(e=>"number"==typeof e.n);if(0===a.length)return i[0][0];if("number"!=typeof o)return a.sort((e,t)=>e.n-t.n),a[0].k;let n=a[0],l=Math.abs(n.n-o);for(const e of a){const t=Math.abs(e.n-o);t<l&&(n=e,l=t)}return n.k}(e.family,y):y;c.fontFamily=f,i&&(c.fontWeight=i)}const u=_e(g);!f&&u&&(c.fontWeight=u);const b=Se(n("color"),{projectColors:t.projectColors,theme:l});c.color=b??s;const m=n("textAlign");m&&(c.textAlign=m);return{...ve(e,{projectColors:t.projectColors,theme:l}),...c}}function Pe(e){return e+"-"+Math.random().toString(36).substring(2,15)}const Le=[{schemaVersion:2,pattern:{type:"BIcon",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",iconType:"iconType",size:"number",strokeWidth:"number"}},meta:{desiredParent:["all"],label:"BIcon",description:"Renders an icon from the icon set.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},iconType:{label:"Icon",description:"Which icon to render.",category:"other",specialCategory:null,sort:1},size:{label:"Size",description:"Icon size (px).",category:"other",specialCategory:null,sort:2},strokeWidth:{label:"Stroke Width",description:"SVG stroke width override (applied to the icon paths).",category:"other",specialCategory:null,sort:3}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0},iconType:"activity",strokeWidth:1.5},types:{}},{schemaVersion:2,pattern:{type:"BackgroundImage",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},src:"string",resizeMode:["cover","contain","stretch","center"]}},meta:{desiredParent:["all","background"],label:"Background Image",description:"Background image.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},resizeMode:{label:"Resize Mode",description:"How the image fits its container.",category:"style",specialCategory:null,sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"absolute",zIndex:0,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%",top:0,left:0,right:0,bottom:0},resizeMode:"cover"},types:{}},{schemaVersion:2,pattern:{type:"Button",title:"title",description:"description",children:"string",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",color:"color",fontSize:"size",fontWeight:["normal","bold","100","200","300","400","500","600","700","800","900"]}}},meta:{desiredParent:["all"],label:"Button",description:"Simple action button.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Text color of the button.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size of the button.",category:"style",specialCategory:null,sort:2},fontWeight:{label:"Font Weight",description:"Text weight of the button.",category:"style",specialCategory:null,sort:3}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,display:"flex",alignItems:"center",justifyContent:"center",backgroundColor:"transparent"}},types:{}},{schemaVersion:2,pattern:{type:"Carousel",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},loop:"boolean",dragFree:"boolean",align:["start","center","end"]}},meta:{desiredParent:["=CarouselProvider"],label:"Carousel",description:"Container for carousel items.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"CarouselButtons",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},buttonType:["previous_button","next_button","skip_button"],skipNumber:"number"}},meta:{desiredParent:[">OnboardProvider",">CarouselProvider"],label:"Carousel Buttons",description:"Renders built-in carousel buttons.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},buttonType:{label:"Button Type",description:"Which carousel button to show.",category:"other",specialCategory:null,sort:1},skipNumber:{label:"Skip Number",description:"Index to skip to when tapped.",category:"other",specialCategory:null,sort:2}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"CarouselDots",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},dotType:["expanding_dot","normal_dot","scaling_dot","sliding_border","sliding_dot","liquid_like"]}},meta:{desiredParent:[">CarouselProvider"],label:"Carousel Dots",description:"Renders page indicator dots.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},dotType:{label:"Dot Type",description:"Style used for the dots.",category:"style",specialCategory:null,sort:1}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"CarouselItem",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["=Carousel"],label:"Carousel Item",description:"Single slide inside a carousel.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:1,pattern:{type:"CarouselProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["root",">View"],label:"Carousel Provider",description:"Provides carousel context to its children.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},allowUnknownAttributes:!1,types:{}},{schemaVersion:2,pattern:{type:"CountDown",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"never",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",textAlign:"never"},scrollable:"boolean",count:"number"}},meta:{desiredParent:["all"],label:"Count Down",description:"Displays a countdown timer.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},count:{label:"Count (ms)",description:"Countdown duration in milliseconds.",category:"other",specialCategory:null,sort:1}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Image",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",resizeMode:["cover","contain","stretch","center"]},src:"string"}},meta:{desiredParent:["all"],label:"Image",description:"Shows an image or graphic.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},resizeMode:{label:"Resize Mode",description:"How the image fits the frame.",category:"style",specialCategory:null,sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,resizeMode:"contain"}},types:{}},{schemaVersion:2,pattern:{type:"Main",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},useSafeAreaView:"boolean"}},meta:{desiredParent:["root"],label:"Main",description:"Top-level screen wrapper (safe area, base layout).",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},useSafeAreaView:{label:"Use Safe Area View",description:"Wraps content with a safe-area-aware container (when supported by the target).",category:"container",specialCategory:null,sort:1,forceVisible:!0}},hideAllAttributes:!0},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%",flex:1},useSafeAreaView:!0},types:{}},{schemaVersion:2,pattern:{type:"NavigationBarColor",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"Navigation Bar Color",description:"Sets the OS navigation bar background color.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Navigation bar background color.",category:"style",specialCategory:null,sort:1},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,backgroundColor:"THEME_COLORS.BACKGROUND"}},types:{}},{schemaVersion:2,pattern:{type:"Onboard",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["=OnboardProvider"],label:"Onboard",description:"Wraps the onboarding flow.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},desiredChildren:["=OnboardItem"]},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardButton",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},labelKey:"string",button_text_color:"color",animation:["simple-animation","line-animation","blur","blur-animation","blur-line-animation"],animation_color:"color",button_background_color:"color",flex:"number",events:"EventObject[]"}},meta:{desiredParent:["=OnboardButtons"],label:"Onboard Button",description:"Single action button for onboarding.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},button_text_color:{label:"Button Text Color",description:"Text color of the button.",category:"style",specialCategory:null,sort:2},animation:{label:"Animation",description:"Animation style for the button.",category:"style",specialCategory:null,sort:3},animation_color:{label:"Animation Color",description:"Color used by the animation.",category:"style",specialCategory:null,sort:4},button_background_color:{label:"Button Background Color",description:"Background color of the button.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow value in layout.",category:"container",specialCategory:null,sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},labelKey:{label:"Label Key",description:"Localization key for the button text.",category:"other",specialCategory:null,sort:1},events:{label:"Events",description:"List of events fired by the button.",category:"other",specialCategory:null,sort:7}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,height:"40@vs",borderRadius:"12@s"}},types:{EventObject:{type:["Permission","Navigate"],permission:["att","notification","rating","GDPR","null"],navigate_to:"string",targetIndex:"number"}}},{schemaVersion:2,pattern:{type:"OnboardButtons",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},buttonType:["previous_button","next_button","skip_button"],skipNumber:"number",buttons_direction:["row","column"],forIndex:"number",seperatorColor:"color",condition:["carousel-index"],conditionVariable:"number"}},meta:{desiredParent:["=OnboardItem"],label:"Onboard Buttons",description:"Wrapper for onboarding button set.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},seperatorColor:{label:"Seperator Color",description:"Color of the divider line.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},buttonType:{label:"Button Type",description:"Which onboard button to show.",category:"other",specialCategory:null,sort:1},skipNumber:{label:"Skip Number",description:"Slide index to skip to.",category:"other",specialCategory:null,sort:2},buttons_direction:{label:"Buttons Direction",description:"Direction to lay out buttons.",category:"container",specialCategory:null,sort:3},forIndex:{label:"For Index",description:"Show only for this slide index.",category:"other",specialCategory:null,sort:4},condition:{label:"Condition",description:"Built-in condition to check.",category:"other",specialCategory:null,sort:6},conditionVariable:{label:"Condition Variable",description:"Value used when checking the condition.",category:"other",specialCategory:null,sort:7}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,display:"flex",gap:12,alignItems:"center",justifyContent:"center",marginVertical:"12@vs",marginHorizontal:"24@s"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardDot",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},dotType:["expanding_dot","normal_dot","scaling_dot","sliding_border","sliding_dot","liquid_like"],dot_thickness:"size",inactive_dot_opacity:"number",inactive_dot_color:"color",active_dot_color:"color",flexDirection:"never",alignItems:"never",justifyContent:"never"}},meta:{desiredParent:[">OnboardProvider"],label:"Onboard Dot",description:"Renders onboarding progress dots.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},dotType:{label:"Dot Type",description:"Dot animation style.",category:"style",specialCategory:null,sort:1},inactive_dot_opacity:{label:"Inactive Dot Opacity",description:"Opacity for inactive dots.",category:"style",specialCategory:null,sort:3},inactive_dot_color:{label:"Inactive Dot Color",description:"Color of inactive dots.",category:"style",specialCategory:null,sort:4},dot_thickness:{label:"Dot Thickness",description:"Dot size/diameter.",category:"style",specialCategory:null,sort:2},active_dot_color:{label:"Active Dot Color",description:"Color of the active dot.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,alignItems:"center",justifyContent:"center",gap:"12@s"},dotType:"expanding_dot",dot_thickness:10,inactive_dot_opacity:.3,active_dot_color:"#007AFF"},types:{}},{schemaVersion:2,pattern:{type:"OnboardFooter",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",textLocalizationKey:"string",linkedWordFirstLocalizationKey:"string",linkedWordFirstColor:"color",linkedWordFirstPage:"string",linkedWordSecondLocalizationKey:"string",linkedWordSecondColor:"color",linkedWordSecondPage:"string"}},meta:{desiredParent:[">OnboardItem"],label:"Onboard Footer",description:"Footer text with optional links.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},linkedWordFirstColor:{label:"Linked Word First Color",description:"Color of the first linked word.",category:"style",specialCategory:null,sort:3},linkedWordSecondColor:{label:"Linked Word Second Color",description:"Color of the second linked word.",category:"style",specialCategory:null,sort:6}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},textLocalizationKey:{label:"Text Localization Key",description:"Localization key for the footer text.",category:"other",specialCategory:null,sort:1},linkedWordFirstLocalizationKey:{label:"Linked Word First Localization Key",description:"Key for the first linked word.",category:"other",specialCategory:null,sort:2},linkedWordFirstPage:{label:"Linked Word First Page",description:"Page opened by the first link.",category:"other",specialCategory:null,sort:4},linkedWordSecondLocalizationKey:{label:"Linked Word Second Localization Key",description:"Key for the second linked word.",category:"other",specialCategory:null,sort:5},linkedWordSecondPage:{label:"Linked Word Second Page",description:"Page opened by the second link.",category:"other",specialCategory:null,sort:7}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400",flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,flexWrap:"wrap",alignItems:"center",justifyContent:"center",textAlign:"center",paddingHorizontal:"24@s"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardImage",title:"title",description:"description",children:"node",attributes:{src:"string",style:{resizeMode:["cover","contain","stretch","center"],flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",video_url:"string",lottie:"string"}},meta:{desiredParent:[">OnboardProvider",">OnboardItem","!=Onboard"],label:"Onboard Image",description:"Onboarding hero image with media.",styles:{resizeMode:{label:"Resize Mode",description:"How the image fits the frame.",category:"style",specialCategory:null,sort:4},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},video_url:{label:"Video Url",description:"URL for the onboarding video.",category:"other",specialCategory:null,sort:1},lottie:{label:"Lottie",description:"Path to the lottie animation.",category:"other",specialCategory:null,sort:2}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{styles:{resizeMode:"contain",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardItem",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},display:["flex","block"],gap:"size",flexDirection:["row","column"],paddingHorizontal:"size"}},meta:{desiredParent:["=Onboard"],label:"Onboard Item",description:"Single onboarding screen section.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Order of child stacking.",category:"container",specialCategory:null,sort:3},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between child blocks.",category:"container",specialCategory:null,sort:2},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:4},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},display:{label:"Display",description:"Controls layout display mode.",category:"container",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,gap:"16@vs",paddingHorizontal:"24@s"},display:"flex"},types:{}},{schemaVersion:2,pattern:{type:"OnboardProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},theme:["light","dark","all"],borderRadius:"never"}},meta:{desiredParent:["root"],label:"Onboard Provider",description:"Provides shared settings for onboarding.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding for the provider.",category:"container",specialCategory:"padding",sort:1},paddingBottom:{label:"Padding Bottom",description:"Bottom padding for the provider.",category:"container",specialCategory:"padding",sort:3},paddingLeft:{label:"Padding Left",description:"Left padding for the provider.",category:"container",specialCategory:"padding",sort:4},paddingRight:{label:"Padding Right",description:"Right padding for the provider.",category:"container",specialCategory:"padding",sort:2},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},theme:{label:"Theme",description:"Controls which app theme(s) this onboarding is intended for.",category:"other",specialCategory:null,sort:-10}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardSubtitle",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">OnboardProvider",">OnboardItem"],label:"Onboard Subtitle",description:"Subtitle text for an onboarding step.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"14@fs",fontWeight:"600",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardTitle",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">OnboardItem",">OnboardProvider"],label:"Onboard Title",description:"Title text for an onboarding step.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"24@fs",fontWeight:"700",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallBackground",title:"title",description:"description",children:"never",attributes:{src:"string",resizeMode:["cover","contain","stretch","center"],scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Background",description:"Paywall Background component.",styles:{resizeMode:{label:"Resize Mode",description:"How the image fits its container.",category:"style",specialCategory:null,sort:4},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{resizeMode:"cover",styles:{width:"100%",height:"100%",position:"absolute",top:0,left:0,right:0,bottom:0,zIndex:1,flexDirection:"column",alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"PaywallCloseButton",title:"title",description:"description",children:"never",attributes:{iconType:"iconType",size:"number",strokeWidth:"number",adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Close Button",description:"Paywall Close Button component.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{iconType:{label:"Icon",description:"Which icon to render.",category:"other",specialCategory:null,sort:1},size:{label:"Size",description:"Icon size (px).",category:"other",specialCategory:null,sort:2},strokeWidth:{label:"Stroke Width",description:"SVG stroke width override (applied to the icon paths).",category:"other",specialCategory:null,sort:3},adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{iconType:"close",strokeWidth:1.5,styles:{fontSize:"16@fs",color:"THEME_COLORS.TEXT",fontWeight:"400",flexDirection:"row",position:"absolute",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,top:"35@vs",left:"24@s",justifyContent:"center",alignItems:"center"},translateCounter:1,size:24},types:{}},{schemaVersion:2,pattern:{type:"PaywallOptions",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Options",description:"Paywall options selector component.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,justifyContent:"space-between",alignItems:"center",minHeight:"60px"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},delay:"number"}},meta:{desiredParent:["all"],label:"Paywall Provider",description:"Provider/wrapper for paywall screen components.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},delay:{label:"Back Delay (ms)",description:"Milliseconds before the paywall can be dismissed via back/close.",category:"other",specialCategory:null,sort:1}},mockableFeatures:{products:!0,benefits:!0}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallSubscribeButton",title:"title",description:"description",children:"string",attributes:{style:{color:"color",fontSize:"size",fontWeight:["normal","bold","100","200","300","400","500","600","700","800","900"],flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Subscribe Button",description:"Paywall subscribe call-to-action button. Extends Button.",styles:{color:{label:"Color",description:"Text color of the button.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size of the button.",category:"style",specialCategory:null,sort:2},fontWeight:{label:"Font Weight",description:"Text weight of the button.",category:"style",specialCategory:null,sort:3},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{display:"flex",alignItems:"center",justifyContent:"center",backgroundColor:"#6495ED",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,paddingHorizontal:"20@s",paddingVertical:"12@vs",borderRadius:"12@s",color:"#FFFFFF",fontSize:"16@fs",fontWeight:"700"}},types:{}},{schemaVersion:2,pattern:{type:"PriceTag",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",textDecorationLine:["none","underline","line-through"]},scrollable:"boolean",showOriginalPricePossible:"boolean",hideIfItsNotDiscount:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Price Tag",description:"Displays a price tag text. Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},textDecorationLine:{label:"Text Decoration",description:"Text decoration line style (e.g. line-through for strikethrough).",category:"style",specialCategory:null,sort:6}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},showOriginalPricePossible:{label:"Show Original Price Possible",description:"When enabled, shows the original price if available.",category:"other",specialCategory:null,sort:1},hideIfItsNotDiscount:{label:"Hide If No Discount",description:"Hides this element when there is no active discount/promo.",category:"other",specialCategory:null,sort:2}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"700",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Pricing",title:"title",description:"base.builder.paywall.pricing.default.text",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Pricing",description:"Displays pricing details (e.g. promo/trial breakdown). Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:2,styles:{color:"rgba(255,255,255,0.6)",fontSize:"12@fs",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"Promo",title:"title",description:"base.builder.paywall.promo.default.text",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Promo",description:"Displays promotional badge/text (e.g. discount percentage). Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:2,styles:{color:"#34D399",fontSize:"12@fs",fontWeight:"600",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"RadioButton",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},selected:"boolean",color:"color",size:"number"}},meta:{desiredParent:["all"],label:"Radio Button",description:"Generic radio button icon.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Radio color.",category:"style",specialCategory:null,sort:1},size:{label:"Size",description:"Radio size in px.",category:"style",specialCategory:null,sort:2}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},selected:{label:"Selected",description:"Whether the radio is selected.",category:"other",specialCategory:null,sort:0}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Separator",title:"title",description:"description",children:"never",attributes:{style:{backgroundColor:"color",width:"size",height:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size"}}},meta:{desiredParent:["all"],label:"Separator",description:"Horizontal line separator.",styles:{backgroundColor:{label:"Color",description:"Separator line color.",category:"style",specialCategory:null,sort:1}},attributes:{width:{label:"Width",description:"Separator width.",category:"container",specialCategory:null,sort:1,preferredScale:"s"},height:{label:"Height",description:"Separator thickness.",category:"container",specialCategory:null,sort:2,preferredScale:"vs"}}},defaults:{styles:{width:"100%",height:2,backgroundColor:"#000000"}}},{schemaVersion:2,pattern:{type:"StatusBarColor",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"Status Bar Color",description:"Sets the OS status bar background color.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Status bar background color.",category:"style",specialCategory:null,sort:1},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,backgroundColor:"THEME_COLORS.BACKGROUND"}},types:{}},{schemaVersion:2,pattern:{type:"Text",title:"title",description:"description",children:"string",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight"},adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number"}},meta:{desiredParent:["all"],label:"Text",description:"Displays simple text.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400"},translateCounter:1},types:{}},{schemaVersion:2,pattern:{type:"View",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"View",description:"Base layout container.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}}}];const Me=new Map(Le.map(e=>[e.pattern.type,e]));function Ae(e){return e?e[0].toLowerCase()+e.slice(1):e}function ke(e){return e?e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").toLowerCase():e}const Ee=new Map;for(const e of Le){const t=e?.pattern?.type;if("string"!=typeof t||!t)continue;const i=[t,t.toLowerCase(),Ae(t),ke(t)];for(const e of i)e&&(Ee.has(e)||Ee.set(e,t))}function He(e){if("string"==typeof e&&e)return Me.has(e)?e:Ee.get(e)??Ee.get(e.toLowerCase())}function We(e){if("string"!=typeof e)return;const t=He(e)??e;return Me.get(t)}function Ne(e){const t=We(e);return t?.pattern.attributes}function De(e){const t=We(e);return t?.defaults}function Fe(e,t){if(!e||!t)return;const i=We(e);return i?.types?.[t]}function Ve(e){return"string"===e||"title"===e||"description"===e||"number"===e||"boolean"===e||"color"===e||"size"===e||"fontFamily"===e||"fontWeight"===e||"iconType"===e}function Ue(e){return"string"!=typeof e?null:e.endsWith("[]")?e.slice(0,-2):null}function je(e){return null==e}function Ke(e){return"string"==typeof e}function Ge(e){return e instanceof Array}function Ye(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)&&0===Object.keys(e).length}function $e(e,t){return{valid:!1,message:e,path:t}}function Xe(e,t){return e?t?t.startsWith("[")?`${e}${t}`:`${e}.${t}`:e:t}function Je(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function Ze(e){if(!Je(e))return!1;return"string"==typeof e.type}function qe(e){return He(e)??e}function Qe(e,t,i){const r=function(e){const t=e?.pattern?.children;return"string"==typeof t?[t]:Array.isArray(t)?t.filter(e=>"string"==typeof e):[]}(t),{baseKinds:o,allowedComponentTypes:a}=function(e){const t=new Set,i=new Set;for(const r of e)"never"===r||"string"===r||"node"===r?t.add(r):"array"===r?t.add("node"):"string"==typeof r&&r&&i.add(qe(r));return{baseKinds:t,allowedComponentTypes:i}}(r),n=function(e,t,i){return t.has("never")?je(e)||Ye(e)?{valid:!0}:$e('Children not allowed (pattern.children = "never")',i):{valid:!0}}(e.children,o,i);if(!n.valid)return n;const l=function(e,t,i,r){return je(e)||Ye(e)?{valid:!0}:i.size>0?Ge(e)||Ze(e)?{valid:!0}:$e(`Children must be a node or array of nodes (allowed: ${Array.from(i).join(", ")})`,r):Ke(e)?t.has("string")?{valid:!0}:$e("Children must not be a string",r):Ge(e)?t.has("node")?{valid:!0}:$e("Children must not be an array",r):Ze(e)?t.has("node")?{valid:!0}:$e("Children must not be a node",r):$e("Children has invalid shape",r)}(e.children,o,a,i);return l.valid?function(e,t,i){if(0===t.size)return{valid:!0};if(je(e)||Ye(e))return{valid:!0};const r=Array.from(t),o=(e,i)=>{if(!Ze(e))return $e("Child must be an object node",i);const o=qe(e.type);return t.has(o)?{valid:!0}:$e(`Child type "${e.type}" is not allowed here (allowed: ${r.join(", ")})`,Xe(i,"type"))};if(Ge(e)){const t=e;for(let e=0;e<t.length;e++){const r=o(t[e],`${i}[${e}]`);if(!r.valid)return r}return{valid:!0}}return o(e,i)}(e.children,a,i):l}function et(e,t,i,r){if(null==t)return{valid:!0};if("never"===i)return{valid:!0};if(Array.isArray(i))return function(e,t,i){if("string"==typeof e)return t.includes(e)?{valid:!0}:$e(`Expected one of: ${t.join(", ")}`,i);if(Array.isArray(e)){for(let r=0;r<e.length;r++){const o=e[r];if("string"!=typeof o||!t.includes(o))return $e(`Expected an array of: ${t.join(", ")}`,`${i}[${r}]`)}return{valid:!0}}return $e("Expected a string or string[] enum value",i)}(t,i,r);const o=Ue(i);if(o){if(!Array.isArray(t))return $e(`Expected array for type "${i}"`,r);for(let i=0;i<t.length;i++){const a=et(e,t[i],o,`${r}[${i}]`);if(!a.valid)return a}return{valid:!0}}return Ve(i)?function(e,t,i){switch(t){case"string":return"string"==typeof e?{valid:!0}:$e("Expected string",i);case"number":return"number"==typeof e?{valid:!0}:$e("Expected number",i);case"boolean":return"boolean"==typeof e?{valid:!0}:$e("Expected boolean",i);case"color":return"string"==typeof e?{valid:!0}:$e("Expected color (string)",i);case"title":return"string"!=typeof e?$e("Expected title (string)",i):e.length<=20?{valid:!0}:$e("Expected title to be <= 20 characters",i);case"description":return"string"==typeof e?{valid:!0}:$e("Expected description (string)",i);case"size":return"number"==typeof e||"string"==typeof e?{valid:!0}:$e("Expected size (string or number)",i);case"fontWeight":return _e(e)?{valid:!0}:$e(`Expected fontWeight (${we.join(", ")})`,i);case"iconType":return"string"==typeof e?{valid:!0}:$e("Expected iconType (string)",i);default:return $e(`Unknown primitive type "${t}"`,i)}}(t,i,r):function(e,t,i,r){const o=Fe(e,i);if(!o)return $e(`Unknown custom type "${i}"`,r);if(!Je(t))return $e(`Expected object for type "${i}"`,r);const a=t;for(const[t,i]of Object.entries(o)){if(!(t in a))continue;const o=et(e,a[t],i,Xe(r,t));if(!o.valid)return o}return{valid:!0}}(e,t,i,r)}function tt(e,t,i){const r=e.attributes;if(null==r)return{valid:!0};if(!Je(r))return $e("attributes must be an object",i);const o=Ne(t.pattern.type)??t.pattern.attributes??{},a=function(e){if(!e)return{};const t=e.style;return t?"string"==typeof t||Array.isArray(t)?{}:t??{}:{}}(o),n=r,l=n.style,s=n.styles;if(null!=l)return $e(`Legacy attribute "style" detected. Use "styles" instead (schemaVersion=2). Found at ${Xe(i,"style")}`,Xe(i,"style"));if(null!=s){if(!Je(s))return $e("styles must be an object",Xe(i,"styles"));const e=s;for(const[r,n]of Object.entries(e)){const e=a?.[r]??o?.[r];if(!e)continue;const l=et(t.pattern.type,n,e,Xe(Xe(i,"styles"),r));if(!l.valid)return l}}for(const[e,n]of Object.entries(r)){if("style"===e||"styles"===e)continue;const r=o?.[e];if(!r){if("title"===e||"description"===e){const r=et(t.pattern.type,n,e,Xe(i,e));if(!r.valid)return r;continue}const r=a?.[e];if(!r)return $e(`Unknown attribute "${e}"`,Xe(i,e));const o=et(t.pattern.type,n,r,Xe(i,e));if(!o.valid)return o;continue}const l=et(t.pattern.type,n,r,Xe(i,e));if(!l.valid)return l}return{valid:!0}}function it(e,t){if(je(e)||Ke(e)||Ye(e))return{valid:!0};if(Ge(e)){const i=e;for(let e=0;e<i.length;e++){const r=it(i[e],`${t}[${e}]`);if(!r.valid)return r}return{valid:!0}}if(!Ze(e))return $e("Invalid node shape",t);const i=function(e,t){const i=We(qe(e.type));if(!i)return $e(`Unknown component type "${e.type}"`,Xe(t,"type"));const r=tt({...e},i,Xe(t,"attributes"));if(!r.valid)return r;const o=Qe({...e},i,Xe(t,"children"));return o.valid?{valid:!0}:o}(e,t);return i.valid?it(e.children,Xe(t,"children")):i}function rt(e){if(je(e))return{valid:!0,message:"null or undefined is valid"};if(Ke(e))return{valid:!0,message:"string is valid"};if(Ge(e)){const t=e;for(const e of t){const t=rt(e);if(!t.valid)return t}return{valid:!0,message:"Array is valid"}}const t=e;if(Ye(t))return{valid:!0,message:"empty object is valid"};if(t.children){const e=rt(t.children);if(!e.valid)return e}return{valid:!0,message:"everything is structurally valid"}}function ot(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function at(e){if(null==e)return e;if(Array.isArray(e))return e.map(at);if(!ot(e))return e;if(function(e){if(!ot(e))return!1;if("type"in e||"children"in e||"attributes"in e)return!1;if(!("value"in e))return!1;const t=Object.keys(e);if(t.length<1||t.length>3)return!1;const i=new Set(["value","label","id"]);for(const e of t)if(!i.has(e))return!1;const r=e.value;return null==r||"string"==typeof r||"number"==typeof r||"boolean"==typeof r}(e))return at(e.value);const t={};for(const[i,r]of Object.entries(e))t[i]=at(r);return t}function nt(e){if(je(e)||Ke(e))return e;if(Ge(e)){return e.map(nt)}const t=e;let i=t.attributes;Array.isArray(i)&&0===i.length&&(i={}),i=ot(i)?at(i):i;const r=void 0!==t.children?nt(t.children):t.children;return{...t,attributes:i,children:r}}function lt(e,t){if(je(e)||Ke(e))return e;if(Ge(e)){return e.map(e=>lt(e,t))}const i=e;let r=i.key;if(r&&t.has(r)&&(r=void 0),!r)do{r=Pe(i.type)}while(t.has(r));t.add(r);const o=i.children?lt(i.children,t):i.children;return{...i,key:r,children:o}}function st(e){const t=rt(e);if(!t.valid)return t;const i=function(e){return it(e,"root")}(e);if(!i.valid){return{valid:!1,message:`${i.path?`${i.path}: `:""}${i.message??""}`}}return{valid:!0,message:"Node is valid (structure + patterns)"}}var ct={supportedProjectVersion:"1.1.2",reactBuilderVersion:"1.2.28"};const dt={supportedProjectVersion:ct.supportedProjectVersion,reactBuilderVersion:ct.reactBuilderVersion};function pt(e){const t={},i=e?.attributes?.styles||[];if(!Array.isArray(i)||0===i.length)return t;const r=new Set(["left","center","right","justify"]),o=new Set(["normal","bold","100","200","300","400","500","600","700","800","900"]);for(const e of i){if("style-layout"!==e?.layout)continue;const i=e?.attributes?.styles||[];if(Array.isArray(i))for(const e of i){if("Styles"!==e?.layout)continue;const i=e?.attributes?.type;if("textStyle"!==i)continue;const a=e?.attributes?.style||{},n=a?.fontSize;if("number"==typeof n&&Number.isFinite(n))t.fontSize=n;else if("string"==typeof n){const e=Number.parseInt(n,10);Number.isFinite(e)&&(t.fontSize=e)}const l=a?.textAlign;"string"==typeof l&&r.has(l)&&(t.textAlign=l);const s=a?.marginTop;if("number"==typeof s&&Number.isFinite(s))t.marginTop=s;else if("string"==typeof s){const e=Number.parseInt(s,10);Number.isFinite(e)&&(t.marginTop=e)}const c=a?.fontWeight;let d;"number"==typeof c&&Number.isFinite(c)?d=String(c):"string"==typeof c&&(d=c),d&&o.has(d)&&(t.fontWeight=d)}}return t}function gt(e){const t={},i=e?.attributes?.styles||[];if(!Array.isArray(i)||0===i.length)return t;for(const e of i){if("style-layout"!==e?.layout)continue;const i=e?.attributes?.styles||[];if(Array.isArray(i))for(const e of i){if("Styles"!==e?.layout)continue;const i=e?.attributes?.style||{},r=i?.borderRadius;if("number"==typeof r&&Number.isFinite(r))t.borderRadius=r;else if("string"==typeof r){const e=Number.parseInt(r,10);Number.isFinite(e)&&(t.borderRadius=e)}}}return t}const yt="https://tribemarketing.s3.eu-central-1.amazonaws.com/tribehub-assets/";var ft;function ut(e){const t=e.trim().replace(/^\/+/,"");return"backgorund.jpg"===t?"background.jpg":"ios.svg"===t?"apple.svg":t}function bt(e){const t=ut(e);return`${yt.endsWith("/")?yt:`${yt}/`}${i=t,i.split("/").filter(Boolean).map(e=>encodeURIComponent(e)).join("/")}`;var i}function mt(e){switch(ut(e)){case exports.TribeAssetName.Android:return exports.TribeAssetName.Android;case exports.TribeAssetName.Apple:return exports.TribeAssetName.Apple;case exports.TribeAssetName.Background:return exports.TribeAssetName.Background;default:return null}}exports.TribeAssetName=void 0,(ft=exports.TribeAssetName||(exports.TribeAssetName={})).Android="android.svg",ft.Apple="apple.svg",ft.Background="background.jpg";var ht={name:"hello-world",version:"1.1.2",type:"other",data:{type:"View",attributes:{scrollable:!0,description:"View element 1 in sample.",title:"View 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:16,backgroundColor:"#F5F7FA"}},children:[{type:"Text",children:"hello-world",attributes:{description:"Text element 1 in sample.",title:"Text 1",styles:{color:"#111827",fontSize:24,fontWeight:"600"}}},{type:"Text",children:"Welcome to react-native-builder",attributes:{description:"Text element 2 in sample.",title:"Text 2",styles:{color:"#6B7280",fontSize:14,fontWeight:"400"}}}]}},Ct={name:"hello-world-2-advanced",version:"1.1.2",type:"other",data:{type:"view",attributes:{scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",gap:16,padding:16,backgroundColor:"#F3F4F6"}},children:[{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#111827",borderRadius:12}},children:[{type:"text",children:"Dashboard",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{color:"#FFFFFF",fontSize:20,fontWeight:"600"}}},{type:"view",attributes:{description:"view element 3 in sample.",title:"view 3",styles:{flexDirection:"row",gap:8}},children:[{type:"text",children:"Help",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{color:"#D1D5DB",fontSize:14}}},{type:"text",children:"Profile",attributes:{description:"text element 3 in sample.",title:"text 3",styles:{color:"#D1D5DB",fontSize:14}}}]}]},{type:"image",attributes:{src:"https://picsum.photos/720/320",description:"image element 1 in sample.",title:"image 1",styles:{width:358,height:160,borderRadius:12}},children:null},{type:"view",attributes:{description:"view element 4 in sample.",title:"view 4",styles:{flexDirection:"column",gap:8,padding:12,backgroundColor:"#FFFFFF",borderRadius:12}},children:[{type:"text",children:"Welcome back!",attributes:{description:"text element 4 in sample.",title:"text 4",styles:{color:"#111827",fontSize:18,fontWeight:"600"}}},{type:"text",children:"Here's what's new today.",attributes:{description:"text element 5 in sample.",title:"text 5",styles:{color:"#6B7280",fontSize:14}}}]},{type:"view",attributes:{description:"view element 5 in sample.",title:"view 5",styles:{flexDirection:"column",gap:12}},children:[{type:"view",attributes:{description:"view element 6 in sample.",title:"view 6",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 1",attributes:{description:"text element 6 in sample.",title:"text 6",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"Due today",attributes:{description:"text element 7 in sample.",title:"text 7",styles:{color:"#059669",fontSize:12,fontWeight:"600"}}}]},{type:"view",attributes:{description:"view element 7 in sample.",title:"view 7",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 2",attributes:{description:"text element 8 in sample.",title:"text 8",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"2 days left",attributes:{description:"text element 9 in sample.",title:"text 9",styles:{color:"#D97706",fontSize:12,fontWeight:"600"}}}]},{type:"view",attributes:{description:"view element 8 in sample.",title:"view 8",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 3",attributes:{description:"text element 10 in sample.",title:"text 10",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"Completed",attributes:{description:"text element 11 in sample.",title:"text 11",styles:{color:"#6B7280",fontSize:12,fontWeight:"600"}}}]}]},{type:"view",attributes:{description:"view element 9 in sample.",title:"view 9",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-around",padding:12,backgroundColor:"#111827",borderRadius:12}},children:[{type:"text",children:"Home",attributes:{description:"text element 12 in sample.",title:"text 12",styles:{color:"#FFFFFF",fontSize:14}}},{type:"text",children:"Search",attributes:{description:"text element 13 in sample.",title:"text 13",styles:{color:"#9CA3AF",fontSize:14}}},{type:"text",children:"Settings",attributes:{description:"text element 14 in sample.",title:"text 14",styles:{color:"#9CA3AF",fontSize:14}}}]}]}},St={name:"carousel-sample",version:"1.1.2",type:"other",data:{type:"Main",isMain:!0,attributes:{styles:{backgroundColor:"#f8fafc",minHeight:"100vh",padding:"24px"}},children:{type:"carouselProvider",children:[{type:"carousel",attributes:{loop:!0,align:"center",dragFree:!0,description:"carousel element 1 in sample.",title:"carousel 1"},children:[{type:"carouselItem",attributes:{description:"carouselItem element 1 in sample.",title:"carouselItem 1",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 1 in sample.",title:"view 1",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #eef2ff 0%, #ffffff 55%, #ecfeff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-49ojfyhl4d7"},{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Welcome aboard",key:"text-3ougfj4mxnh"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"Swipe through a beautiful, validated carousel sample with images.",key:"text-2dol8grshke"}],key:"view-a8hfkdvfy7"},key:"carouselItem-5bw9x33s7ie"},{type:"carouselItem",attributes:{description:"carouselItem element 2 in sample.",title:"carouselItem 2",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%, #eff6ff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-riwntk91k9"},{type:"text",attributes:{description:"text element 3 in sample.",title:"text 3",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Discover features",key:"text-hmuk6f7ml4v"},{type:"text",attributes:{description:"text element 4 in sample.",title:"text 4",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"Dots + buttons are included, and slide sizing comes from the carousel CSS.",key:"text-dnhhoqiiri"}],key:"view-9hyw3wys30w"},key:"carouselItem-lyq2hr0qh8h"},{type:"carouselItem",attributes:{description:"carouselItem element 3 in sample.",title:"carouselItem 3",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 3 in sample.",title:"view 3",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #f5f3ff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-j9ru3r8g7km"},{type:"text",attributes:{description:"text element 5 in sample.",title:"text 5",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Get started",key:"text-01u3fwwtkd8p"},{type:"text",attributes:{description:"text element 6 in sample.",title:"text 6",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"This sample stays within validation rules (no string flex shorthand).",key:"text-w8rwg9y1hj"}],key:"view-tsjfbzn8kdj"},key:"carouselItem-6r53yswjyee"}],key:"carousel-2qa4gn0ms32"},{type:"view",attributes:{title:"Carousel Controls",description:"carousel controls view element in sample.",styles:{flex:1,gap:24,alignItems:"center",paddingTop:32}},children:[{type:"carouselDots",attributes:{dotType:"expanding_dot"},key:"carouselDots-r5ji67uoxxg"},{type:"view",attributes:{title:"Nav Buttons",description:"navigation buttons wrapper",styles:{flexDirection:"row",gap:12,alignItems:"center",justifyContent:"center"}},children:[{type:"carouselButtons",attributes:{buttonType:["previous_button"],styles:{backgroundColor:"#6366f1",borderRadius:12,padding:"12px 24px",minWidth:100}},key:"carouselButtons-prev"},{type:"carouselButtons",attributes:{buttonType:["next_button"],styles:{backgroundColor:"#8b5cf6",borderRadius:12,padding:"12px 24px",minWidth:100}},key:"carouselButtons-next"}],key:"view-nav-buttons"}],key:"view-controls-wrapper"}],attributes:{description:"carouselProvider element 1 in sample.",title:"carouselProvider 1",styles:{backgroundColor:"#ffffff",borderRadius:24,padding:"32px",boxShadow:"0 4px 20px rgba(0, 0, 0, 0.08)",maxWidth:"600px",margin:"0 auto"}},key:"carouselProvider-152n4dkqvam"},key:"Main-u1cavjag9sr"}},xt={name:"unvalidated-builder1",version:"1.1.2",type:"other",data:{type:"view",attributes:{foo:1,scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA"}},children:[{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center"}},children:"Intentionally unvalidated sample"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8}},children:"This project should fail validation (unknown attribute: foo). In the UI, choose “Continue without validation” to load it anyway."}]}},Ot={name:"unvalidated-crash1",version:"1.1.2",type:"other",data:{type:"OnboardFooter",attributes:{textLocalizationKey:123,description:"OnboardFooter element 1 in sample.",title:"OnboardFooter 1",styles:{paddingHorizontal:24,paddingVertical:16}},children:null}},zt={name:"unvalidated-crashcomponent1",version:"1.1.2",type:"other",data:{type:"CrashComponent",attributes:{reason:"Intentional crash for GUI testing",note:"This component is not in the Add Component modal; it only exists via JSON.",description:"CrashComponent element 1 in sample.",title:"CrashComponent 1"},children:null}},Tt={name:"unmigrated-builder1",version:"1.0.0",type:"other",data:{type:"view",attributes:{scrollable:!0,flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA",description:"view element 1 in sample.",title:"view 1"},children:[{type:"text",attributes:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center",description:"text element 1 in sample.",title:"text 1"},children:"Intentionally unmigrated sample"},{type:"text",attributes:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8,description:"text element 2 in sample.",title:"text 2"},children:"This project has version 1.0.0 so the Migration page should appear. Click “Migrate now” to normalize legacy flat style keys into attributes.style and move misplaced props out of style (combined 1.1.2)."}]}},vt={name:"unmigrated-builder-1.1.1",version:"1.1.1",type:"other",data:{type:"view",attributes:{scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA"}},children:[{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center"}},children:"Intentionally unmigrated sample (for combined 1.1.2)"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8}},children:"This project has version 1.1.1 so the Migration page should appear. Click “Migrate now” to move component props and non-style flags out of attributes.style (combined 1.1.2)."},{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{flexDirection:"row",alignItems:"center",justifyContent:"center",gap:12,marginTop:16}},children:[{type:"BIcon",attributes:{description:"BIcon element 1 in sample.",title:"BIcon 1",styles:{iconType:"check",strokeWidth:3,color:"#22c55e",fontSize:"18"}},children:null},{type:"image",attributes:{src:"https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80",width:48,height:48,description:"image element 1 in sample.",title:"image 1",styles:{resizeMode:"contain",borderRadius:12}},children:null}]}]}},wt={name:"Simple Paywall",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall ana sağlayıcısı. (#1)",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",title:"Paywall Background",attributes:{src:"https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",description:"Paywall arka planı. (#1)",title:"Paywall Background"},children:null},{type:"View",title:"Paywall Inner",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:12,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#2)",title:"Benefits",styles:{flexDirection:"column",gap:0,marginTop:"4%"}},children:[{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#3)",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#1)",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#1)",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#4)",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#2)",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#2)",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#5)",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#3)",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#3)",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Abonelik seçenekleri alanı. (#1)",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Seçim satırı öğesi. (#1)",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#4)",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription"},{type:"View",attributes:{title:"Price Column",styles:{flexDirection:"column",flex:1,alignItems:"flex-end"}},children:[{type:"PriceTag",attributes:{title:"Promo Price",styles:{textAlign:"right",fontWeight:"700"}},children:"@localizedCalculatedPrice"},{type:"PriceTag",attributes:{title:"Original Price",hideIfItsNotDiscount:!0,styles:{textAlign:"right",textDecorationLine:"line-through",fontSize:"12@fs",fontWeight:"400",color:"#999999"}},children:"@localizedPrice"}]},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"İkon öğesi. (#4)",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"View",attributes:{description:"Subscription butonu kapsayıcısı. (#1)",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",gap:8,paddingBottom:"50px"}},children:[{type:"Pricing",attributes:{description:"Pricing breakdown for promo/trial.",title:"Pricing Detail"},children:"@baseLocalizedPricingText"},{type:"Text",attributes:{description:"Trial detayı.",title:"Trial Full",styles:{textAlign:"center",fontSize:12,color:"rgba(255,255,255,0.6)"}},children:"@trialPeriod days free, then @price/@period"},{type:"PaywallSubscribeButton",children:"Subscribe",attributes:{description:"Abonelik onay butonu. (#1)",title:"Subscribe"}},{type:"Promo",attributes:{description:"Discount badge / promo text.",title:"Promo Badge"},children:"@baseLocalizedPromoText"}]}]}]}]}},_t={name:"Paywall With Counter",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Paywall 2.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"Text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"Text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},Rt={name:"Paywall Back Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Back Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"Back Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},Bt={name:"Paywall Notification Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Notification Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"Notification Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},It={name:"Paywall App Open Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for App Open Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"App Open Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},Pt={name:"Paywall App Delete Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for App Delete Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"App Delete Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},Lt={name:"vpn-onboard-1",version:"1.1.2",type:"onboard",appConfig:{localication:{ar:{"onboard.title.one-page":"أمّن اتصالك","onboard.title.two-page":"وصول إلى المحتوى حول العالم","onboard.title.three-page":"سرعة واعتمادية","onboard.title.four-page":"إشعارات وحماية دائمة","onboard.subtitle.one-page":"قم بتشفير حركة المرور وحماية خصوصيتك على شبكات Wi‑Fi العامة.","onboard.subtitle.two-page":"اتصل بخوادم عالية السرعة في بلدان متعددة بضغطة واحدة.","onboard.subtitle.three-page":"يتصل التطبيق تلقائياً بأفضل خادم لسرعة وثبات أعلى.","onboard.subtitle.four-page":"فعّل الإشعارات لمعرفة حالة الاتصال والحصول على نصائح الأمان.","onboard.next.one-page":"التالي","onboard.next.two-page":"التالي","onboard.next.three-page":"التالي","onboard.skip.one-page":"تخطي","onboard.skip.two-page":"تخطي","onboard.skip.three-page":"تخطي","onboard.allow.four-page":"السماح","view.onboarding.footer.description":"بالمتابعة، فإنك توافق على","view.onboarding.btnPrivacy":"سياسة الخصوصية","view.onboarding.btnTerms":"شروط الخدمة"}}},data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},Mt={name:"vpn-onboard-2",version:"1.1.2",type:"onboard",appConfig:{localication:{ar:{"onboard.title.one-page":" العربية","onboard.title.two-page":" العربية","onboard.title.three-page":" العربية","onboard.title.four-page":" العربية","onboard.subtitle.one-page":" العربية","onboard.subtitle.two-page":" العربية","onboard.subtitle.three-page":" العربية","onboard.subtitle.four-page":" العربية","onboard.next.one-page":"التالي","onboard.next.two-page":"التالي","onboard.next.three-page":"التالي","onboard.skip.one-page":"تخطي","onboard.skip.two-page":"تخطي","onboard.skip.three-page":"تخطي","onboard.allow.four-page":"السماح","view.onboarding.footer.description":"بالمتابعة فإنك توافق على","view.onboarding.btnPrivacy":"الخصوصية","view.onboarding.btnTerms":"الشروط"}}},data:{type:"Main",isMain:!0,key:"ckcw0WXRY8sNR2SF",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/0c65cbe8e0c2e1242146e15dfd50a486.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/e8bbdde825cd23bdc44a9b2b32af22dc.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/3f312b38faf844746250cd54f27f91da.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/f4db2a32a43239c3bbbe742cb0f18b61.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",animation:"line-animation",animation_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",animation:"simple-animation",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"light",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},At={name:"vpn-onboard-3",version:"1.1.2",type:"onboard",appConfig:{localication:{ar:{"onboard.title.one-page":" العربية","onboard.title.one-page2":" العربية","onboard.title.two-page":" العربية","onboard.title.two-page2":" العربية","onboard.title.three-page":" العربية","onboard.title.three-page2":" العربية","onboard.title.four-page":" العربية","onboard.title.four-page2":" العربية","onboard.subtitle.one-page":" العربية","onboard.subtitle.one-page2":" العربية","onboard.subtitle.two-page":" العربية","onboard.subtitle.two-page2":" العربية","onboard.subtitle.three-page":" العربية","onboard.subtitle.three-page2":" العربية","onboard.subtitle.four-page":" العربية","onboard.subtitle.four-page2":" العربية","onboard.next.one-page":"التالي","onboard.next.two-page":"التالي","onboard.next.three-page":"التالي","onboard.skip.one-page":"تخطي","onboard.skip.two-page":"تخطي","onboard.skip.three-page":"تخطي","onboard.allow.four-page":"السماح","view.onboarding.footer.description":"بالمتابعة فإنك توافق على","view.onboarding.btnPrivacy":"الخصوصية","view.onboarding.btnTerms":"الشروط"}}},data:{type:"Main",isMain:!0,key:"ckcw0WXRY8sNR2SF",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page2"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/c68cca84580d6920c883c220e57346c0.jpg",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page2"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page2"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page2"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"light",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},kt={name:"vpn-onboard-4",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page2"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/aadf6191a8f1091831647b3a01e1a1aa.jpg",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page2"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page2"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page2"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page2"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},Et={name:"vpn-onboard-5",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"cJVVSS7q9Qe1trnb",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/d237d6cde8bc9126cee7b47e30cd19f0.png",resizeMode:"contain",lottie:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/lottie/0be045f9fe44c790a4525a1a6bc4b837.json",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.one-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/820dc32b8252555058e7014a7fd1652f.png",resizeMode:"contain",video_url:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/video/440346112d02e65be3767c39b96cd7c0.mp4",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.two-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/fbb8677cd23cba79eef0ebef181e3b57.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.three-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/18cdd5cc478389df8ff362f95b7173ea.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.five-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.five-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}},{type:"OnboardItem",key:"app_onboard-page6",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/3c1225f83f5a5c934926fab3cb0e65d5.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#5)",title:"OnboardTitle 5",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.six-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#5)",title:"OnboardSubtitle 5",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.six-page"}],attributes:{description:"Onboarding sayfası. (#5)",title:"OnboardItem 5"}},{type:"OnboardItem",key:"app_onboard-page5",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ff07e162b2a63d38f07909e87848d46f.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#6)",title:"OnboardTitle 6",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.four-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#6)",title:"OnboardSubtitle 6",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#6)",title:"OnboardItem 6"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.LINE",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.LINE",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.LINE",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.five-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.LINE",events:[{type:"Navigate",navigate_to:null,targetIndex:4}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.five-page",button_text_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_TEXT",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"GDPR"},{type:"Navigate",navigate_to:null,targetIndex:4}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:4,description:"Sayfa buton grubu. (#5)",title:"OnboardButtons 5",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.five-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.LINE",events:[{type:"Navigate",navigate_to:null,targetIndex:5}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.five-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:5}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:5,description:"Sayfa buton grubu. (#6)",title:"OnboardButtons 6",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"subscriptions"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"all",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},Ht={name:"vpn-onboard-6",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"cJVVSS7q9Qe1trnb",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/9cb1d668b3724655f93a91e5eee771c5.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.one-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/f8d0c64bf89cc5f2f14126d0544ba174.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.two-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ad823809885c1a2a8e4632039f35a94e.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.three-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ede1705c51f3434ae9053ed5f29bf5dd.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.four-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.TEXT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.TEXT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"THEME_COLORS.TEXT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"subscriptions"}],styles:{flex:1}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},Wt={name:"vpn-onboard-7",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null,key:"StatusBarColor-sxj19suwkrn"},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null,key:"NavigationBarColor-rhzn570dc5o"},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.one-page",key:"OnboardTitle-5t0p86nj13m"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.one-page",key:"OnboardSubtitle-0max8wno7l5b"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.two-page",key:"OnboardTitle-ne9iihu925k"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.two-page",key:"OnboardSubtitle-jq9469r7c2"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.three-page",key:"OnboardTitle-hczvlbg7gqj"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.three-page",key:"OnboardSubtitle-rufjwid9yug"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.four-page",key:"OnboardTitle-f2ekfc0wcbl"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.four-page",key:"OnboardSubtitle-qkw2jn84xem"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}},key:"Onboard-dg1zmwdawmg"},{type:"OnboardDot",attributes:{dotType:"expanding_dot",inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12,dot_thickness:"10@s"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1}}}],key:"OnboardButtons-92fw2wn62h"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1}}}],key:"OnboardButtons-mu7r8a5qx4"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",button_text_color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",button_background_color:"STATIC_COLORS.TRANSPARENT",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1}}}],key:"OnboardButtons-rulfu6b5w5"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",button_text_color:"STATIC_COLORS.WHITE",button_background_color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1}}}],key:"OnboardButtons-yru5emc0zcs"},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT",fontSize:"12@fs"}}}],key:"View-c5vb7865vto"}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"},key:"OnboardProvider-pvc5b6o5gu"}]}};function Nt(e){return{...e,appConfig:{...a,...e.appConfig}}}exports.BuilderProvider=function({params:a,children:n}){const l=e.useMemo(()=>({mockProducts:Array.isArray(a?.mockProducts)?a.mockProducts:[],mockBenefits:a?.mockBenefits&&"object"==typeof a.mockBenefits?a.mockBenefits:{},onPaywallSubscribe:"function"==typeof a?.onPaywallSubscribe?a.onPaywallSubscribe:void 0,theme:"light"===a?.theme||"dark"===a?.theme?a.theme:o,defaultLanguage:"string"==typeof a?.defaultLanguage?a.defaultLanguage:"en",appConfig:a?.appConfig&&"object"==typeof a.appConfig?{...a.appConfig,localication:r(i,a.appConfig.localication??{})}:void 0,projectColors:a?.projectColors&&"object"==typeof a.projectColors?R(_,a.projectColors):_,fonts:Array.isArray(a?.fonts)?a.fonts:void 0,appFont:a?.appFont,platform:"native"===a?.platform?"native":"web",previewMode:!!a?.previewMode,selectedKey:"string"==typeof a?.selectedKey?a.selectedKey:void 0}),[a?.mockBenefits,a?.mockProducts,a?.platform,a?.onPaywallSubscribe,a?.theme,a?.defaultLanguage,a?.appConfig,a?.projectColors,a?.fonts,a?.appFont,a?.previewMode,a?.selectedKey]);return t.jsx(B.Provider,{value:l,children:n})},exports.LocalizationParamsProvider=function({params:e,children:i}){return t.jsx(L,{localizationParams:e,nestedLocalizationParams:{},children:i})},exports.PERIOD_LOCALIZATION_KEYS=d,exports.ParamsProvider=L,exports.TRIBE_ASSETS_BASE_URL=yt,exports.analyseAndProccess=function(e){if(je(e))return null;const t=nt(e),{valid:i,message:r}=st(t);if(!i)throw new Error(r??"Node is not valid");return lt(t,new Set)},exports.analyseNode=st,exports.buildPaywallLocalizationParams=T,exports.calculateDiscount=l,exports.calculatePricePerMonth=s,exports.calculatePricePerYear=c,exports.convertIOSPeriodUnit=C,exports.defaultAppConfig=a,exports.defaultLocalization=i,exports.defaultProjectColors=_,exports.defaultTheme=o,exports.extractAndroidParams=x,exports.extractIOSParams=z,exports.extractPrice=n,exports.getArrayItemType=Ue,exports.getAttributeMeta=function(e,t){const i=We(e),r=i?.meta?.styles,o=i?.meta?.attributes,a=o,n=a&&"object"==typeof a.styles&&a.styles?a.styles:void 0,l=a?Object.fromEntries(Object.entries(a).filter(([e])=>"styles"!==e)):o;return function(e,t){if(!e)return;const i=function(e){return"native"===e?"native":"web"}(t),r=new Set(["scrollable"]),o=new Set([]),a=new Set(["gap","showEllipsis","adjustsFontSizeToFit"]),n=e=>r.has(e)||("web"===i?o.has(e):a.has(e));let l=!1;const s={};for(const[t,i]of Object.entries(e))i&&"object"==typeof i&&n(t)?(s[t]={...i,category:"other",specialCategory:null},l=!0):s[t]=i;return l?s:e}(r||l||n?{...l,...r,...n}:void 0,t)},exports.getAttributeSchema=Ne,exports.getDefaultDevice=ae,exports.getDefaultProject=function(e={}){const t=ct.supportedProjectVersion.trim()?ct.supportedProjectVersion.trim():"0.0.0",i="string"==typeof e.version&&e.version.trim()?e.version.trim():t;return{name:"string"==typeof e.name&&e.name.trim()?e.name.trim():"project",version:i,data:e.data??null,appConfig:e.appConfig,projectColors:e.projectColors,type:e.type}},exports.getDefaultsForType=De,exports.getDevices=oe,exports.getImage=bt,exports.getMeta=function(){return{...dt}},exports.getMockProducts=w,exports.getMockProductsByPreset=function(e){return w()[e]??[]},exports.getPatternByType=We,exports.getPeriodLocalizationKey=m,exports.getSamples=function(){return[ht,Ct,St,xt,Ot,zt,Tt,vt,wt,_t,Rt,Bt,It,Pt,Lt,Mt,At,kt,Et,Ht,Wt].map(Nt)},exports.getTypeSchema=Fe,exports.isEmptyObject=Ye,exports.isNodeArray=Ge,exports.isNodeNullOrUndefined=je,exports.isNodeString=Ke,exports.isPrimitiveType=Ve,exports.mergeLocalization=r,exports.mergeProjectColors=R,exports.novaToJson=function(e){const t=e.data.data?.layout;return"onboard-layout"===t?function(e){const t=e?.data?.data?.attributes||e?.data?.attributes||{},i=t?.general_components||[],r=t?.data||[],o=function(e){const t=e.find(e=>"dots-layout"===e?.layout);if(!t)return null;const i=t?.attributes?.dot||[],r=i?.[0],o=r?.layout,a=r?.attributes||{},n=e=>{if("number"==typeof e)return e;if("string"==typeof e&&e.trim().length>0){const t=Number(e);return Number.isFinite(t)?t:void 0}},l=n(a?.inactive_dot_opacity),s=n(a?.dot_thickness),c="string"==typeof a?.dot_style?a.dot_style:void 0,d="string"==typeof a?.container_style?a.container_style:void 0,p="string"==typeof a?.active_dot_color?a.active_dot_color:void 0,g="string"==typeof a?.inactive_dot_color?a.inactive_dot_color:void 0,y={};o&&(y.dotType=o);void 0!==l&&(y.inactive_dot_opacity=l);void 0!==s&&(y.dot_thickness=s);c&&(y.dot_style=c);d&&(y.container_style=d);p&&(y.active_dot_color=p);g&&(y.inactive_dot_color=g);return{type:"OnboardDot",attributes:Object.keys(y).length?y:void 0,children:void 0}}(i),a=function(e){const t=e.find(e=>"footer-layout"===e?.layout);if(!t)return null;const i=t?.attributes?.texts||[],r=[];let o,a;for(const e of i)if("Text"===e?.layout){const t=e?.attributes?.text_localization_key||"",i=e?.attributes?.text_color||void 0;o||(o=t),a||"string"!=typeof i||(a=i);const n=e?.attributes?.linkedwords||[];for(const e of n)if("LinkedWords"===e?.layout){const t=e?.attributes?.linked_word_localization_key,i=e?.attributes?.linked_word_color,o=e?.attributes?.page;r.push({text_key:t,color:i,page:o})}}const n={gap:8};o&&(n.textLocalizationKey=o);a&&(n.color=a);const l=r[0],s=r[1];l&&(l.text_key&&(n.linkedWordFirstLocalizationKey=l.text_key),l.color&&(n.linkedWordFirstColor=l.color),l.page&&(n.linkedWordFirstPage=l.page));s&&(s.text_key&&(n.linkedWordSecondLocalizationKey=s.text_key),s.color&&(n.linkedWordSecondColor=s.color),s.page&&(n.linkedWordSecondPage=s.page));return{type:"OnboardFooter",attributes:n,children:void 0}}(i),{carouselNode:n,providerLevelButtons:l}=function(e){const t=e.filter(e=>"simple-onboard-layout"===e?.layout),i=new Map;t.forEach((e,t)=>{const r=e?.attributes?.key;"string"==typeof r&&i.set(r,t)});const r=[],o=t.map(e=>function(e,t,i){const r=e?.attributes?.components||[],o=[],a=e?.attributes?.key,n="string"==typeof a&&t.has(a)?t.get(a):void 0;for(const e of r)if("title-layout"===e?.layout){const t=e?.attributes?.title_localization_key||"",i=e?.attributes?.title_color||void 0,{fontSize:r,textAlign:a,marginTop:n,fontWeight:l}=pt(e);o.push({type:"OnboardTitle",attributes:i||r||a||n||l?{...i?{color:i}:{},..."number"==typeof r?{fontSize:r}:{},...a?{textAlign:a}:{},..."number"==typeof n?{marginTop:n}:{},...l?{fontWeight:l}:{}}:void 0,children:t})}else if("subtitle-layout"===e?.layout){const t=e?.attributes?.subtitle_localization_key||"",i=e?.attributes?.subtitle_color||void 0,{fontSize:r,textAlign:a,marginTop:n,fontWeight:l}=pt(e);o.push({type:"OnboardSubtitle",attributes:i||r||a||n||l?{...i?{color:i}:{},..."number"==typeof r?{fontSize:r}:{},...a?{textAlign:a}:{},..."number"==typeof n?{marginTop:n}:{},...l?{fontWeight:l}:{}}:void 0,children:t})}else if("image-layout"===e?.layout){const t=e?.attributes?.image||e?.attributes?.src||"",i=e?.attributes?.height??e?.attributes?.ios_height??e?.attributes?.android_height,r="string"==typeof i?Number.parseInt(i,10):"number"==typeof i?i:void 0,a=Boolean(e?.attributes?.is_bg_image),n=gt(e),l=e?.attributes?.lottie,s=e?.attributes?.video_url;t&&o.push({type:"OnboardImage",attributes:{src:t,...r?{height:r}:{},resizeMode:a?"cover":"contain",..."number"==typeof n.borderRadius?{borderRadius:n.borderRadius}:{},..."string"==typeof l?{lottie:l}:{},..."string"==typeof s?{video_url:s}:{}},children:void 0})}else if("Buttons"===e?.layout){const r=e?.attributes?.buttons_direction,o=e?.attributes?.buttons||[],a=[];for(const e of o){const i=e?.attributes||{},r=i?.button_text_localization_key||"",o=i?.button_text_color,n=i?.button_background_color,l=i?.animation,s=i?.animation_color,c=i?.flex?Number(i.flex):void 0,d=i?.actions||[],p=[];for(const e of d){const i=e?.attributes?.events||[];for(const e of i)if("Permission"===e?.layout){const t=e?.attributes?.permission;p.push({type:"Permission",permission:t})}else if("Navigate"===e?.layout){const i=e?.attributes?.next_page_key,r="string"==typeof i&&t.has(i),o=r?null:"string"==typeof i?i:null;p.push({type:"Navigate",navigate_to:o,...r?{targetIndex:t.get(i)}:{}})}}a.push({type:"OnboardButton",attributes:{labelKey:r,..."string"==typeof o?{button_text_color:o}:{},..."string"==typeof l?{animation:l}:{},..."string"==typeof s?{animation_color:s}:{},..."string"==typeof n?{button_background_color:n}:{},..."number"==typeof c?{flex:c}:{},...p.length?{events:p}:{}},children:void 0})}a.length>0&&i.push({type:"OnboardButtons",attributes:{...r?{buttons_direction:r}:{},..."number"==typeof n?{condition:"carousel-index",conditionVariable:n}:{}},children:a})}const l=e?.attributes?.key,s="string"==typeof l&&l||("string"==typeof e?.key?e.key:void 0);return{type:"OnboardItem",...s?{key:s}:{},children:o}}(e,i,r)),a={type:"Onboard",children:o};return{carouselNode:a,providerLevelButtons:r}}(r),s={type:"OnboardProvider",key:e?.data?.data?.key,children:[n,...o?[o]:[],...l.length?l:[],...a?[a]:[]],attributes:{theme:e?.data?.theme}},c={type:"Main",isMain:!0,key:e?.data?.data?.key,children:[s],attributes:{useSafeAreaView:!0}};return delete s.key,c}(e):null},exports.parseBillingPeriod=h,exports.parseColor=Se,exports.parseTribeAssetName=mt,exports.querySelector=function(e,t){if(null==e)return[];if(!t)return[];const i=t.startsWith("#"),r=i?t.slice(1):void 0,o=[],a=e=>{var n,l;if(null!=e)if(Array.isArray(e))for(const t of e)a(t);else"string"!=typeof e&&null!=(l=e)&&!Array.isArray(l)&&"string"!=typeof l&&"object"==typeof l&&"type"in l&&"children"in l&&(n=e,(i?n.key===r:n.type===t)&&o.push(e),a(e.children))};return a(e),o},exports.resolveImageSrc=function(e){if(!e)return;if(function(e){return/^(https?:)?\/\//.test(e)||/^(data|blob):/.test(e)}(e))return e;const t=mt(e);return t?bt(t):e},exports.useBuilderParams=I,exports.useCalculateLocalizedPrice=function(e){return e?n(e):""},exports.useChangeDelayByPaywall=function(t,i){const r=e.useMemo(()=>t?.attributes?.delay?parseInt(String(t?.attributes?.delay),10):1e3,[t?.attributes?.delay]);e.useEffect(()=>{if(!r||r<=0)return void i(!0);const e=setTimeout(()=>{i(!0)},r);return()=>clearTimeout(e)},[r,i])},exports.useDiscountRate=function(e,t){if(!e||!t)return 0;const i=l(e,t);return i?parseInt(i,10):0},exports.useExtractImageStyle=function(t){const{theme:i,projectColors:r}=I();return e.useMemo(()=>{const{resizeMode:e,...o}=function(e,t={}){const i=e.attributes;if(!i)return{};const r=xe(i),o=r?.resizeMode,a={};return o&&(a.resizeMode=o),{...ve(e,t),...a}}(t,{theme:i,projectColors:r}),a=t.attributes,n=Te(Oe(a)),l=xe(a);return{style:o,other:{...n,resizeMode:l?.resizeMode??e}}},[t,i,r])},exports.useExtractTextStyle=function(t){const{theme:i,projectColors:r,fonts:o}=I();return e.useMemo(()=>{const e=Ie(t,{theme:i,projectColors:r,fonts:o}),a=t.attributes,n=Te(Oe(a)),l=xe(a);return{style:e,other:{...n,adjustsFontSizeToFit:n.adjustsFontSizeToFit??l?.adjustsFontSizeToFit,showEllipsis:n.showEllipsis??l?.showEllipsis}}},[t,i,r,o])},exports.useExtractViewStyle=function(t){const{theme:i,projectColors:r}=I();return e.useMemo(()=>{const e=ve(t,{theme:i,projectColors:r}),o=t.attributes,a=Te(Oe(o)),n=xe(o);return{style:e,other:{...a,scrollable:a.scrollable??n?.scrollable}}},[t,i,r])},exports.useLocalizationParams=A,exports.useLocalize=function(t){const{appConfig:i,defaultLanguage:r}=I(),o=t?.appConfig??i??a,n=r??"en",{localication:l}=o,s=A();return e.useCallback(e=>function(e,t){return e&&t&&Object.entries(t).sort(([e],[t])=>t.length-e.length).reduce((e,[t,i])=>{if(null==i)return e;const r=`@${t}`;return e.split(r).join(i)},e)||e}(l?.[n]?.[e]??e,s),[n,l,s])},exports.useNode=function(e){const t=e?.type,i=De(t);if(!i)return e;const r=e.attributes??{},o=i,a={...{...o?.style??{},...o?.styles??{}},...{...r?.style??{},...r?.styles??{}}},n={...o,...r,styles:a};return delete n.style,"object"==typeof n.styles&&null!=n.styles&&0===Object.keys(n.styles).length&&delete n.styles,{...e,attributes:n}},exports.useParams=M,exports.usePaywallLocalizationParams=function(t,i,r){return e.useMemo(()=>{if(!t||!r?.platform)return{};try{const e=r.builderProducts?.find(e=>e.store_package_id===i),o=e?.offer_id;return T(t,r.platform,o,r.localize)}catch(e){return console.error("[usePaywallLocalizationParams] Error:",e),{}}},[t,i,r])};
|
|
1
|
+
"use strict";var e=require("react"),t=require("react/jsx-runtime");const i={en:{"base.builder.paywall.period.monthly":"per month","base.builder.paywall.period.annual":"per year","base.builder.paywall.period.weekly":"per week","base.builder.paywall.period.daily":"per day","base.builder.paywall.period.monthlyPromo":"per month","base.builder.paywall.period.annualPromo":"per year","base.builder.paywall.pricing.default.text":"@promoPrice for the first @promoPeriod, then @localizedPrice @localizedPeriod","base.builder.paywall.pricing.freeTrial.text":"@trialPeriod-@trialPeriodUnit free trial, then @localizedPrice @localizedPeriod","base.builder.paywall.pricing.regular.text":"@localizedPrice @localizedPeriod","base.builder.paywall.promo.default.text":"Save @discountPercentage%!","base.builder.paywall.promo.freeTrial.text":"@trialPeriod-@trialPeriodUnit free trial","base.builder.paywall.promo.regular.text":"@localizedPrice @localizedPeriod","onboard.title.one-page":"Secure your connection","onboard.title.two-page":"Access content worldwide","onboard.title.three-page":"Fast and reliable","onboard.title.four-page":"Stay notified and safe","onboard.title.one-page2":"Secure your connection","onboard.title.two-page2":"Access content worldwide","onboard.title.three-page2":"Fast and reliable","onboard.title.four-page2":"Stay notified and safe","onboard.subtitle.one-page":"Encrypt your traffic and protect your privacy on public Wi‑Fi.","onboard.subtitle.two-page":"Connect to high‑speed servers in many countries with one tap.","onboard.subtitle.three-page":"Auto‑connect to the best server for speed and stability.","onboard.subtitle.four-page":"Enable notifications for connection status and security tips.","onboard.subtitle.one-page2":"Encrypt your traffic and protect your privacy on public Wi‑Fi.","onboard.subtitle.two-page2":"Connect to high‑speed servers in many countries with one tap.","onboard.subtitle.three-page2":"Auto‑connect to the best server for speed and stability.","onboard.subtitle.four-page2":"Enable notifications for connection status and security tips.","onboard.next.one-page":"Next","onboard.next.two-page":"Next","onboard.next.three-page":"Next","onboard.skip.one-page":"Skip","onboard.skip.two-page":"Skip","onboard.skip.three-page":"Skip","onboard.allow.four-page":"Allow","view.onboarding.footer.description":"By clicking continue, you will be accepting the Terms of service and privacy policy","view.onboarding.btnPrivacy":"Privacy Policy","view.onboarding.btnTerms":"Terms of Service"},tr:{"base.builder.paywall.period.monthly":"aylık","base.builder.paywall.period.annual":"yıllık","base.builder.paywall.period.weekly":"haftalık","base.builder.paywall.period.daily":"günlük","base.builder.paywall.period.monthlyPromo":"aylık","base.builder.paywall.period.annualPromo":"yıllık","base.builder.paywall.pricing.default.text":"İlk @promoPeriod için @promoPrice, sonra @localizedPrice @localizedPeriod","base.builder.paywall.pricing.freeTrial.text":"@trialPeriod @trialPeriodUnit ücretsiz deneme, sonra @localizedPrice @localizedPeriod","base.builder.paywall.pricing.regular.text":"@localizedPrice @localizedPeriod","base.builder.paywall.promo.default.text":"%@discountPercentage indirim!","base.builder.paywall.promo.freeTrial.text":"@trialPeriod @trialPeriodUnit ücretsiz deneme","base.builder.paywall.promo.regular.text":"@localizedPrice @localizedPeriod"}};function r(e,t){const i=new Set([...Object.keys(e),...Object.keys(t)]),r={};for(const o of i)r[o]={...e[o]||{},...t[o]||{}};return r}const o="light",a={width:375,height:812};function n(e){return e?e.replace(/[^0-9.]/g,""):""}function l(e,t){if(!t||!e)return"";const i=parseFloat(e),r=parseFloat(t);if(isNaN(i)||isNaN(r)||i<=0)return"";const o=Math.round((i-r)/i*100);return String(Math.max(0,o))}function s(e,t){return isNaN(e)?"":"month"===t?e.toFixed(2):"year"===t?(e/12).toFixed(2):"week"===t?(52*e/12).toFixed(2):"day"===t?(365*e/12).toFixed(2):e.toFixed(2)}function c(e,t){return isNaN(e)?"":"year"===t?e.toFixed(2):"month"===t?(12*e).toFixed(2):"week"===t?(52*e).toFixed(2):"day"===t?(365*e).toFixed(2):e.toFixed(2)}const d={monthly:"base.builder.paywall.period.monthly",annual:"base.builder.paywall.period.annual",weekly:"base.builder.paywall.period.weekly",daily:"base.builder.paywall.period.daily",monthlyPromo:"base.builder.paywall.period.monthlyPromo",annualPromo:"base.builder.paywall.period.annualPromo"},p="base.builder.paywall.pricing.default.text",g="base.builder.paywall.pricing.freeTrial.text",y="base.builder.paywall.pricing.regular.text",f="base.builder.paywall.promo.default.text",b="base.builder.paywall.promo.freeTrial.text",u="base.builder.paywall.promo.regular.text";function m(e,t){switch(e){case"month":return t?d.monthlyPromo:d.monthly;case"year":return t?d.annualPromo:d.annual;case"week":return d.weekly;case"day":return d.daily;default:return d.monthly}}function h(e){const t=e.match(/P(\d+)([DWMY])/);if(!t||!t[1]||!t[2])return{value:1,unit:"month"};const i=parseInt(t[1],10),r={D:"day",W:"week",M:"month",Y:"year"}[t[2]];return r?{value:i,unit:r}:{value:1,unit:"month"}}function C(e){if(!e)return"month";return{DAY:"day",WEEK:"week",MONTH:"month",YEAR:"year"}[e.toUpperCase()]||"month"}const S={error(e,t,i){console.error(`[iap] ${t}`,i)},warn(e,t,i){console.warn(`[iap] ${t}`,i)},info(e,t,i){console.info(`[iap] ${t}`,i)},debug:function(){}};function x(e,t){try{const i=e.subscriptionOffers??[];let r=i[0];if(t&&i.length>0){const o=function(e,t){return e.find(e=>e.id===t||e.basePlanIdAndroid===t)}(i,t);o?r=o:S.error(["extractAndroidParams"],"Requested offer not found, using default",{productId:e.id||e.productId,requestedOfferId:t,availableOffers:i.map(e=>e.id)})}if(!r)return S.warn(["extractAndroidParams"],"No offers found in product",{productId:e.id||e.productId}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const o=r.pricingPhasesAndroid?.pricingPhaseList??[];if(0===o.length)return S.warn(["extractAndroidParams"],"No pricing phases found",{productId:e.id||e.productId,offerId:r.id}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const a=o.find(e=>"0"===e.priceAmountMicros),d=o.find(e=>2===e.recurrenceMode&&"0"!==e.priceAmountMicros),p=o.find(e=>1===e.recurrenceMode)??o[o.length-1];if(!p)return S.error(["extractAndroidParams"],"No regular phase found",{productId:e.id||e.productId,pricingPhasesCount:o.length}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""};const g=h(p.billingPeriod),y=`${g.value} ${g.unit}${g.value>1?"s":""}`,f=n(p.formattedPrice),b=p.priceCurrencyCode||"",u=p.formattedPrice||"";let m="",C="",x="",O="";if(d){m=n(d.formattedPrice);const e=d.billingCycleCount||0,t=h(d.billingPeriod),i=e*t.value;C=`${i} ${t.unit}${i>1?"s":""}`,x=String(e),O=t.unit}let z="false",T="",v="";if(a){z="true";const e=h(a.billingPeriod);T=String(e.value),v=e.unit}const w=l(f,m),R=parseFloat(f),B=s(R,g.unit),I=c(R,g.unit);return{price:f,promoPrice:m,currency:b,localizedPrice:u,period:g.unit,periodValue:String(g.value),periodType:y,promoPeriod:C,promoCycles:x,promoPeriodUnit:O,hasTrial:z,trialPeriod:T,trialPeriodUnit:v,discountPercentage:w,pricePerMonth:B,pricePerYear:I}}catch(t){return S.error(["extractAndroidParams"],"Failed to extract Android params",{productId:e?.id||e?.productId,error:t instanceof Error?t.message:String(t)}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""}}}function O(e,t){return{promoPeriod:`${e} ${t}${e>1?"s":""}`,promoCycles:String(e),promoPeriodUnit:t}}function z(e,t){try{const i=String(e.price||e.localizedPrice||"").replace(/[^0-9.]/g,""),r=e.currency||e.currencyCode||"",o=e.localizedPrice||"",a=C(e.subscriptionPeriodUnitIOS||"MONTH"),n=String(e.subscriptionPeriodNumberIOS||1),d=`${n} ${a}${parseInt(n,10)>1?"s":""}`,p=e.introductoryPrice||e.introductoryPriceIOS,g=!!p,y=g&&function(e){return"free_trial"===e.type||0===parseFloat(e.price||e.priceIOS||"0")}(p);let f="false",b="",u="",m="",h="",x="",z="";if(y)f="true",b=String(p.subscriptionPeriodNumberIOS||p.numberOfPeriods||7),u=C(p.subscriptionPeriodUnitIOS||p.subscriptionPeriod||"DAY");else if(g){m=String(p.price||p.priceIOS||"").replace(/[^0-9.]/g,"");const e=p.numberOfPeriods||1,t=O(e,C(p.subscriptionPeriodUnitIOS||p.subscriptionPeriod||"MONTH"));h=t.promoPeriod,x=t.promoCycles,z=t.promoPeriodUnit}if(t&&e.discounts){const i=e.discounts.find(e=>e.identifier===t);if(i){m=String(i.price||"").replace(/[^0-9.]/g,"");const e=i.numberOfPeriods||1,t=O(e,C(i.subscriptionPeriod||"MONTH"));h=t.promoPeriod,x=t.promoCycles,z=t.promoPeriodUnit}else S.error(["extractIOSParams"],"Requested offer not found in discounts",{productId:e.id||e.productId,requestedOfferId:t,availableDiscounts:e.discounts.map(e=>e.identifier)})}const T=l(i,m),v=parseFloat(i),w=s(v,a);return{price:i,promoPrice:m,currency:r,localizedPrice:o,period:a,periodValue:n,periodType:d,promoPeriod:h,promoCycles:x,promoPeriodUnit:z,hasTrial:f,trialPeriod:b,trialPeriodUnit:u,discountPercentage:T,pricePerMonth:w,pricePerYear:c(v,a)}}catch(t){return S.error(["extractIOSParams"],"Failed to extract iOS params",{productId:e?.id||e?.productId,error:t instanceof Error?t.message:String(t)}),{price:"",promoPrice:"",currency:"",localizedPrice:"",period:"month",periodValue:"1",periodType:"1 month",promoPeriod:"",promoCycles:"",promoPeriodUnit:"",hasTrial:"false",trialPeriod:"",trialPeriodUnit:"",discountPercentage:"",pricePerMonth:"",pricePerYear:""}}}function T(e,t,i,r){const o=r??(e=>e),a="android"===t?x(e,i):z(e,i),n=a.period||"month",l=!!a.promoPrice,s="true"===a.hasTrial,c=m(n,!1),d=l?m(n,!0):"",h=l?`${a.promoPrice} ${a.currency}`.trim():"",C=o(c),S=l?o(d):"",O=h||a.localizedPrice,T=S||C;let v,w;return l?(v=p,w=f):s?(v=g,w=b):(v=y,w=u),{price:a.price,promoPrice:a.promoPrice,currency:a.currency,localizedPrice:a.localizedPrice,period:a.period,promoPeriod:a.promoPeriod,promoPeriodUnit:a.promoPeriodUnit,hasTrial:a.hasTrial,trialPeriod:a.trialPeriod,trialPeriodUnit:a.trialPeriodUnit,discountPercentage:a.discountPercentage,localizedPeriod:C,localizedPromoPeriod:S,localizedPromoPrice:h,localizedCalculatedPrice:O,localizedCalculatedPeriod:T,baseLocalizedPricingText:o(v),baseLocalizedPromoText:o(w),productTitle:String(e.title??""),productDescription:String(e.description??""),productCurreny:a.currency,productId:String(e.productId??""),productSelected:"true"}}var v={"preset-1":[{productId:"com.app.monthly",id:"com.app.monthly",title:"Monthly",description:"Unlock all features for a month.",type:"subs",displayName:"Monthly Subscription",displayPrice:"$4.99",localizedPrice:"$4.99",currency:"USD",price:"4.99",platform:"android",subscriptionOffers:[{id:"monthly-trial-offer",displayPrice:"Free → $4.99",price:0,type:"promotional",currency:"USD",basePlanIdAndroid:"monthly-base",offerTokenAndroid:"mock_token_monthly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P3D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"$4.99",priceAmountMicros:"4990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:3,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:3},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.yearly",id:"com.app.yearly",title:"Yearly (Save 33%)",description:"Best value: full access for a year.",type:"subs",displayName:"Yearly Subscription",displayPrice:"$29.99",localizedPrice:"$29.99",currency:"USD",price:"29.99",platform:"android",subscriptionOffers:[{id:"yearly-promo-offer",displayPrice:"$19.99",price:19.99,type:"promotional",currency:"USD",basePlanIdAndroid:"yearly-base",offerTokenAndroid:"mock_token_yearly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P1Y",formattedPrice:"$19.99",priceAmountMicros:"19990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"$29.99",priceAmountMicros:"29990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"19.99",priceIOS:"19.99",type:"pay_as_you_go",numberOfPeriods:1,subscriptionPeriod:"YEAR",subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},discounts:[{identifier:"yearly-promo-offer",price:"19.99",numberOfPeriods:1,subscriptionPeriod:"YEAR"}],subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},{productId:"com.app.weekly",id:"com.app.weekly",title:"Weekly",description:"Try with a flexible weekly plan.",type:"subs",displayName:"Weekly Subscription",displayPrice:"$1.99",localizedPrice:"$1.99",currency:"USD",price:"1.99",platform:"android",subscriptionOffers:[{id:"weekly-base",displayPrice:"$0.99",price:.99,type:"promotional",currency:"USD",basePlanIdAndroid:"weekly-base",offerTokenAndroid:"mock_token_weekly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:4,billingPeriod:"P1W",formattedPrice:"$0.99",priceAmountMicros:"990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1W",formattedPrice:"$1.99",priceAmountMicros:"1990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.99",priceIOS:"0.99",type:"pay_as_you_go",numberOfPeriods:4,subscriptionPeriod:"WEEK",subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1},subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1}],"preset-2":[{productId:"com.app.premium.monthly",id:"com.app.premium.monthly",title:"Premium Monthly",description:"Premium tier with all features.",type:"subs",displayName:"Premium Monthly",displayPrice:"$9.99",localizedPrice:"$9.99",currency:"USD",price:"9.99",platform:"android",subscriptionOffers:[{id:"premium-monthly-trial-offer",displayPrice:"Free → $9.99",price:0,type:"promotional",currency:"USD",basePlanIdAndroid:"premium-monthly-base",offerTokenAndroid:"mock_token_premium_monthly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P7D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"$9.99",priceAmountMicros:"9990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:7,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:7},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.premium.yearly",id:"com.app.premium.yearly",title:"Premium Yearly (Save 50%)",description:"7-day free trial, then $29.99 first year, $59.99/yr after.",type:"subs",displayName:"Premium Yearly",displayPrice:"$59.99",localizedPrice:"$59.99",currency:"USD",price:"59.99",platform:"android",subscriptionOffers:[{id:"premium-yearly-full-offer",displayPrice:"$29.99",price:29.99,type:"promotional",currency:"USD",basePlanIdAndroid:"premium-yearly-base",offerTokenAndroid:"mock_token_premium_yearly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P7D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"USD",recurrenceMode:3},{billingCycleCount:1,billingPeriod:"P1Y",formattedPrice:"$29.99",priceAmountMicros:"29990000",priceCurrencyCode:"USD",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"$59.99",priceAmountMicros:"59990000",priceCurrencyCode:"USD",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:7,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:7},discounts:[{identifier:"premium-yearly-full-offer",price:"29.99",numberOfPeriods:1,subscriptionPeriod:"YEAR"}],subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1},{productId:"com.app.lifetime",id:"com.app.lifetime",title:"Lifetime",description:"One-time purchase for lifetime access.",type:"in-app",displayName:"Lifetime Access",displayPrice:"$99.99",localizedPrice:"$99.99",currency:"USD",price:"99.99",platform:"android",subscriptionOffers:[]}],"preset-3":[{productId:"com.app.budget.weekly",id:"com.app.budget.weekly",title:"Budget Weekly",description:"Affordable weekly plan.",type:"subs",displayName:"Budget Weekly",displayPrice:"€2.99",localizedPrice:"€2.99",currency:"EUR",price:"2.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"budget-weekly-trial-offer",displayPrice:"Free → €2.99",price:0,type:"promotional",currency:"EUR",basePlanIdAndroid:"budget-weekly-base",offerTokenAndroid:"mock_token_budget_weekly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P3D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"EUR",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1W",formattedPrice:"€2.99",priceAmountMicros:"2990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:3,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:3},subscriptionPeriodUnitIOS:"WEEK",subscriptionPeriodNumberIOS:1},{productId:"com.app.monthly.promo",id:"com.app.monthly.promo",title:"Monthly (70% off first 3 months)",description:"€2.99/mo for 3 months, then €9.99/mo.",type:"subs",displayName:"Monthly with Promo",displayPrice:"€9.99",localizedPrice:"€9.99",currency:"EUR",price:"9.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"monthly-promo-offer",displayPrice:"€2.99",price:2.99,type:"promotional",currency:"EUR",basePlanIdAndroid:"monthly-promo",offerTokenAndroid:"mock_token_monthly_promo",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:3,billingPeriod:"P1M",formattedPrice:"€2.99",priceAmountMicros:"2990000",priceCurrencyCode:"EUR",recurrenceMode:2},{billingCycleCount:0,billingPeriod:"P1M",formattedPrice:"€9.99",priceAmountMicros:"9990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"2.99",priceIOS:"2.99",type:"pay_as_you_go",numberOfPeriods:3,subscriptionPeriod:"MONTH",subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},subscriptionPeriodUnitIOS:"MONTH",subscriptionPeriodNumberIOS:1},{productId:"com.app.yearly.trial",id:"com.app.yearly.trial",title:"Yearly (14-day free trial)",description:"Try free for 14 days, then €29.99/yr.",type:"subs",displayName:"Yearly with Trial",displayPrice:"€29.99",localizedPrice:"€29.99",currency:"EUR",price:"29.99",currencyCode:"EUR",platform:"android",subscriptionOffers:[{id:"yearly-trial-offer",displayPrice:"Free → €29.99",price:0,type:"promotional",currency:"EUR",basePlanIdAndroid:"yearly-trial",offerTokenAndroid:"mock_token_yearly_trial",pricingPhasesAndroid:{pricingPhaseList:[{billingCycleCount:1,billingPeriod:"P14D",formattedPrice:"Free",priceAmountMicros:"0",priceCurrencyCode:"EUR",recurrenceMode:3},{billingCycleCount:0,billingPeriod:"P1Y",formattedPrice:"€29.99",priceAmountMicros:"29990000",priceCurrencyCode:"EUR",recurrenceMode:1}]}}],introductoryPrice:{price:"0.00",priceIOS:"0.00",type:"free_trial",numberOfPeriods:14,subscriptionPeriod:"DAY",subscriptionPeriodUnitIOS:"DAY",subscriptionPeriodNumberIOS:14},subscriptionPeriodUnitIOS:"YEAR",subscriptionPeriodNumberIOS:1}]};function w(){return JSON.parse(JSON.stringify(v))}const R={STATIC_COLORS:{BLACK:"#000",WHITE:"#FFFFFF",TRANSPARENT:"#ffffff00",ONBOARD_DOT_INACTIVE:"#E4E5E7",ONBOARD_DOT_ACTIVE:"#007AFF",ONBOARD_BUTTON_PRIMARY_BACKGROUND:"#0066FF",ONBOARD_BUTTON_PRIMARY_TEXT:"#FFFFFF",ONBOARD_LINK_COLOR:"#1778F2",ONBOARD_SEPARATOR_COLOR:"#44454D",RADIO_BUTTON_COLOR:"#A6A6A6"},THEME_COLORS:{light:{TEXT:"#161827",BACKGROUND:"#F4F5FF",ICON:"#0450E2",LINE:"#E9EBF9",ONBOARD_TITLE:"#161827",ONBOARD_SUBTITLE:"#44454D",ONBOARD_BUTTON_SECONDARY_TEXT:"#81838F",ONBOARD_FOOTER_TEXT:"#81838F"},dark:{TEXT:"#E9EBF9",BACKGROUND:"#080A17",ICON:"#0450E2",LINE:"#161827",ONBOARD_TITLE:"#FDFDFD",ONBOARD_SUBTITLE:"#C7C7C7",ONBOARD_BUTTON_SECONDARY_TEXT:"#A9AAAC",ONBOARD_FOOTER_TEXT:"#A2A4B1"}}};function B(e,t){return{STATIC_COLORS:{...e.STATIC_COLORS,...t.STATIC_COLORS||{}},THEME_COLORS:{light:{...e.THEME_COLORS?.light||{},...t.THEME_COLORS?.light||{}},dark:{...e.THEME_COLORS?.dark||{},...t.THEME_COLORS?.dark||{}}}}}const I=e.createContext(void 0);function P(){const t=e.useContext(I);if(t)return t;throw new Error("useBuilderParams must be used within BuilderProvider")}const _=e.createContext({localizationParams:{},nestedLocalizationParams:{},otherParams:{}});function M({localizationParams:i,nestedLocalizationParams:r,otherParams:o,children:a}){const n=e.useMemo(()=>({localizationParams:i??{},nestedLocalizationParams:r??{},otherParams:o??{}}),[i,r,o]);return e.useEffect(()=>{},[n]),t.jsx(_.Provider,{value:n,children:a})}function L(){return e.useContext(_)??{localizationParams:{},nestedLocalizationParams:{},otherParams:{}}}function A(){return L().localizationParams??{}}var k=[{name:"iphone 12",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:13,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 12 pro",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:19,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:4,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 pro",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:8,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14",platform:"ios",width:390,height:844,aspect:"tall",type:"phone",importance:15,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 pro",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:15,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:6,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 pro",platform:"ios",width:393,height:852,aspect:"tall",type:"phone",importance:18,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"pixel 3 xl",platform:"android",width:412,height:847,aspect:"tall",type:"phone",importance:8,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 4 xl",platform:"android",width:412,height:869,aspect:"tall",type:"phone",importance:14,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 6",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:10,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 6 pro",platform:"android",width:412,height:892,aspect:"tall",type:"phone",importance:4,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 7",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:11,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 7 pro",platform:"android",width:412,height:892,aspect:"tall",type:"phone",importance:5,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 8",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:12,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 8 pro",platform:"android",width:412,height:919,aspect:"tall",type:"phone",importance:16,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s8",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:5,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s8+",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:1,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s9",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:4,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s9+",platform:"android",width:360,height:740,aspect:"tall",type:"phone",importance:4,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"galaxy s10",platform:"android",width:360,height:760,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s10+",platform:"android",width:412,height:869,aspect:"tall",type:"phone",importance:15,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20",platform:"android",width:360,height:800,aspect:"tall",type:"phone",importance:13,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:16,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s20 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21",platform:"android",width:360,height:800,aspect:"tall",type:"phone",importance:13,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:12,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s21 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:2,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:8,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s22 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23+",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:1,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"galaxy s23 ultra",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:19,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 8",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:4,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 8 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:20,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 9",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:3,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"oneplus 9 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:1,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"xiaomi mi 11",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:9,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"huawei p30",platform:"android",width:360,height:750,aspect:"tall",type:"phone",importance:10,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"huawei p30 pro",platform:"android",width:360,height:780,aspect:"tall",type:"phone",importance:14,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"oppo find x3 pro",platform:"android",width:412,height:915,aspect:"tall",type:"phone",importance:7,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"iphone 6 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:27,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 6s plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:35,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 7 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:40,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 8 plus",platform:"ios",width:414,height:736,aspect:"regular",type:"phone",importance:32,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone xs max",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:21,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone xr",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:31,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:36,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11 pro max",platform:"ios",width:414,height:896,aspect:"tall",type:"phone",importance:22,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 12 pro max",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:28,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 pro max",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:30,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 plus",platform:"ios",width:428,height:926,aspect:"tall",type:"phone",importance:29,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 14 pro max",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:39,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 plus",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:24,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 15 pro max",platform:"ios",width:430,height:932,aspect:"tall",type:"phone",importance:22,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"pixel 2",platform:"android",width:411,height:731,aspect:"regular",type:"phone",importance:29,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"pixel 2 xl",platform:"android",width:411,height:823,aspect:"regular",type:"phone",importance:36,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:16},{name:"pixel 3",platform:"android",width:393,height:786,aspect:"regular",type:"phone",importance:39,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 4",platform:"android",width:411,height:869,aspect:"tall",type:"phone",importance:24,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"pixel 5",platform:"android",width:393,height:851,aspect:"tall",type:"phone",importance:23,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"xiaomi mi 9",platform:"android",width:393,height:851,aspect:"tall",type:"phone",importance:39,insets:[24,0,24,0],navigationBarType:"gesture",radius:20},{name:"iphone 6",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:42,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 6s",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:60,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 7",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:41,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 8",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:59,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone x",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:46,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone xs",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:56,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 11 pro",platform:"ios",width:375,height:812,aspect:"tall",type:"phone",importance:57,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone se (2nd gen)",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:56,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone se (3rd gen)",platform:"ios",width:375,height:667,aspect:"regular",type:"phone",importance:59,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 12 mini",platform:"ios",width:360,height:780,aspect:"tall",type:"phone",importance:70,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone 13 mini",platform:"ios",width:360,height:780,aspect:"tall",type:"phone",importance:78,insets:[47,0,34,0],navigationBarType:"homeIndicator",radius:40},{name:"iphone (1st gen)",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:82,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 3g",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:84,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 3gs",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:88,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 4",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:86,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 4s",platform:"ios",width:320,height:480,aspect:"wide",type:"phone",importance:92,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:100,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5c",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:92,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone 5s",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:96,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"iphone se (1st gen)",platform:"ios",width:320,height:568,aspect:"regular",type:"phone",importance:86,insets:[20,0,0,0],navigationBarType:"none",radius:0},{name:"nexus 7 (2013)",platform:"android",width:600,height:960,aspect:"wide",type:"tablet",importance:83,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"nexus 9",platform:"android",width:768,height:1024,aspect:"wide",type:"tablet",importance:90,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"pixel c",platform:"android",width:900,height:1280,aspect:"wide",type:"tablet",importance:100,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"galaxy tab s6",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:97,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab s7",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:99,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab s8",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:81,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"galaxy tab a 10.1",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:94,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12},{name:"lenovo tab p11",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:91,insets:[24,0,24,0],navigationBarType:"gesture",radius:12},{name:"fire hd 10",platform:"android",width:800,height:1280,aspect:"wide",type:"tablet",importance:98,insets:[24,0,48,0],navigationBarType:"threeButtons",radius:12}];function H(){const e=k.slice();return e.sort((e,t)=>(e.importance??999)-(t.importance??999)),e}function E(){return H()[0]}const W=E(),N=a;function D(e,t){return"number"==typeof e&&Number.isFinite(e)?e:t}function F(e=N,t=W){const i=D(t?.width,W.width),r=D(t?.height,W.height),o=D(e?.width,N.width),a=D(e?.height,N.height),[n,l]=i<r?[i,r]:[r,i];return{scale:e=>n/o*e,verticalScale:e=>l/a*e,moderateScale:(e,t=.5)=>e+(n/o*e-e)*t}}const V=e=>F().verticalScale(e);function U(e,t,i){if(void 0===e)return;if("number"==typeof e)return e;const r=F(t,i),o=String(e).trim(),a=o.toLowerCase();if(a.endsWith("@s")){const e=parseFloat(a.slice(0,-2));return Number.isFinite(e)?r.scale(e):o}if(a.endsWith("@vs")){const e=parseFloat(a.slice(0,-3));return Number.isFinite(e)?r.verticalScale(e):o}if(a.endsWith("@f")||a.endsWith("@fs")){const e=a.endsWith("@f")?-2:-3,t=parseFloat(a.slice(0,e));return Number.isFinite(t)?r.verticalScale(t):o}if(a.endsWith("%")){const e=parseFloat(a.slice(0,-1));return Number.isFinite(e)?`${e}%`:o}if(a.endsWith("px")){const e=parseFloat(a.replace("px",""));return Number.isFinite(e)?e:o}const n=parseFloat(a);return Number.isFinite(n)?n:o}const j="STATIC_COLORS.",K="THEME_COLORS.";function G(e,t={}){if("string"!=typeof e)return e;const i=e.trim();if(!i)return;const{projectColors:r,theme:o}=t;if(!r)return i;if(i.startsWith(j)){const e=i.slice(14),t=r.STATIC_COLORS?.[e];return"string"==typeof t&&t.trim()?t.trim():i}if(i.startsWith(K)){const e=i.slice(13);if(!e)return i;const t=o??"light",a=r.THEME_COLORS?.[t],n=a?.[e];return"string"==typeof n&&n.trim()?n.trim():i}return i}function Y(e){const t=$(e),i=t.styles??t.style;return"object"!=typeof(r=i)||null===r||Array.isArray(r)?void 0:i;var r}function $(e){return e??{}}const X=new Set(["style","styles","flexDirection","flexWrap","alignItems","justifyContent","gap","padding","paddingHorizontal","paddingVertical","paddingTop","paddingBottom","paddingLeft","paddingRight","margin","marginHorizontal","marginVertical","marginTop","marginBottom","marginLeft","marginRight","backgroundColor","borderRadius","width","minWidth","maxWidth","height","minHeight","maxHeight","flex","position","top","bottom","left","right","zIndex","color","fontSize","fontFamily","fontWeight","textAlign","resizeMode"]);function J(e){return Object.fromEntries(Object.entries(e).filter(([e])=>!X.has(e)))}function Z(e,t={}){const i=e.attributes,r=$(i),o=Y(i),a=e=>{const t=r[e];return null!=t?t:o?.[e]},n={flexDirection:"column"};if(!i)return n;const l=a("flexDirection");l&&(n.flexDirection=String(l));const s=a("alignItems");s&&(n.alignItems=String(s));const c=a("justifyContent");c&&(n.justifyContent=String(c));const d=(e,i)=>{if(null==(r=i)||"string"==typeof r&&""===r.trim())return;var r;const o=U(i,t.baseSize);"number"!=typeof o&&"string"!=typeof o||(n[e]=o)};d("padding",a("padding")),d("paddingHorizontal",a("paddingHorizontal")),d("paddingVertical",a("paddingVertical")),d("paddingTop",a("paddingTop")),d("paddingBottom",a("paddingBottom")),d("paddingLeft",a("paddingLeft")),d("paddingRight",a("paddingRight")),d("margin",a("margin")),d("marginHorizontal",r.marginHorizontal??o?.marginHorizontal),d("marginVertical",a("marginVertical")),d("marginTop",a("marginTop")),d("marginBottom",a("marginBottom")),d("marginLeft",a("marginLeft")),d("marginRight",a("marginRight"));const p=a("backgroundColor");p&&(n.backgroundColor=G(p,{projectColors:t.projectColors,theme:t.theme})??p),d("borderRadius",a("borderRadius")),d("width",a("width")),d("minWidth",a("minWidth")),d("maxWidth",a("maxWidth")),d("height",a("height")),d("minHeight",a("minHeight")),d("maxHeight",a("maxHeight"));const g=a("flex");void 0!==g&&(n.flex=g);const y=a("position");y&&(n.position=y),d("top",a("top")),d("bottom",a("bottom")),d("left",a("left")),d("right",a("right"));const f=a("zIndex");return void 0!==f&&(n.zIndex=f),n}const q=["normal","bold","100","200","300","400","500","600","700","800","900"];function Q(e){if("number"==typeof e&&Number.isFinite(e)){const t=String(e);return q.includes(t)?t:void 0}if("string"==typeof e){const t=e.trim();return q.includes(t)?t:void 0}}function ee(e){return"string"==typeof e?e.trim():""}function te(e){if("string"!=typeof e)return null;const t=e.trim();if(!t)return null;const i=Number(t);return Number.isFinite(i)?i:null}function ie(e,t={}){const i=e.attributes,r=$(i),a=Y(i),n=e=>{const t=r[e];return null!=t?t:a?.[e]},l=t.theme??o,s=G("THEME_COLORS.TEXT",{projectColors:t.projectColors,theme:l})??"THEME_COLORS.TEXT",c={};if(!i)return c.fontSize=V(14),c.color=s,c;const d=U(n("fontSize"),t.baseSize);c.fontSize="number"==typeof d?d:V(14);const p=n("fontFamily"),g=n("fontWeight"),y=function(e){const t=Q(e);if(t)return"normal"===t?"400":"bold"===t?"700":t}(g),f="string"==typeof p&&p.trim().length>0?p.trim():void 0;if(f){const e=function(e,t){const i=ee(t);if(i&&Array.isArray(e))return e.find(e=>e?.name===i)}(t.fonts??[],f),i=e?.family&&"object"==typeof e.family?function(e,t){const i=Object.entries(e??{}).filter(([e,t])=>"string"==typeof e&&e.trim().length>0&&"string"==typeof t&&t.trim().length>0);if(0===i.length)return;const r=ee(t);if(r&&i.some(([e])=>e===r))return r;if(i.some(([e])=>"400"===e))return"400";const o=te(r),a=i.map(([e])=>({k:e,n:te(e)})).filter(e=>"number"==typeof e.n);if(0===a.length)return i[0][0];if("number"!=typeof o)return a.sort((e,t)=>e.n-t.n),a[0].k;let n=a[0],l=Math.abs(n.n-o);for(const e of a){const t=Math.abs(e.n-o);t<l&&(n=e,l=t)}return n.k}(e.family,y):y;c.fontFamily=f,i&&(c.fontWeight=i)}const b=Q(g);!f&&b&&(c.fontWeight=b);const u=G(n("color"),{projectColors:t.projectColors,theme:l});c.color=u??s;const m=n("textAlign");m&&(c.textAlign=m);return{...Z(e,{projectColors:t.projectColors,theme:l,baseSize:t.baseSize}),...c}}function re(e){return e+"-"+Math.random().toString(36).substring(2,15)}const oe=[{schemaVersion:2,pattern:{type:"BIcon",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",iconType:"iconType",size:"number",strokeWidth:"number"}},meta:{desiredParent:["all"],label:"BIcon",description:"Renders an icon from the icon set.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},iconType:{label:"Icon",description:"Which icon to render.",category:"other",specialCategory:null,sort:1},size:{label:"Size",description:"Icon size (px).",category:"other",specialCategory:null,sort:2},strokeWidth:{label:"Stroke Width",description:"SVG stroke width override (applied to the icon paths).",category:"other",specialCategory:null,sort:3}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0},iconType:"activity",strokeWidth:1.5},types:{}},{schemaVersion:2,pattern:{type:"BackgroundImage",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},src:"string",resizeMode:["cover","contain","stretch","center"]}},meta:{desiredParent:["all","background"],label:"Background Image",description:"Background image.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},resizeMode:{label:"Resize Mode",description:"How the image fits its container.",category:"style",specialCategory:null,sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"absolute",zIndex:0,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%",top:0,left:0,right:0,bottom:0},resizeMode:"cover"},types:{}},{schemaVersion:2,pattern:{type:"Button",title:"title",description:"description",children:"string",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",color:"color",fontSize:"size",fontWeight:["normal","bold","100","200","300","400","500","600","700","800","900"]}}},meta:{desiredParent:["all"],label:"Button",description:"Simple action button.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Text color of the button.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size of the button.",category:"style",specialCategory:null,sort:2},fontWeight:{label:"Font Weight",description:"Text weight of the button.",category:"style",specialCategory:null,sort:3}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,display:"flex",alignItems:"center",justifyContent:"center",backgroundColor:"transparent"}},types:{}},{schemaVersion:2,pattern:{type:"Carousel",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},loop:"boolean",dragFree:"boolean",align:["start","center","end"]}},meta:{desiredParent:["=CarouselProvider"],label:"Carousel",description:"Container for carousel items.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"CarouselButtons",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},buttonType:["previous_button","next_button","skip_button"],skipNumber:"number"}},meta:{desiredParent:[">OnboardProvider",">CarouselProvider"],label:"Carousel Buttons",description:"Renders built-in carousel buttons.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},buttonType:{label:"Button Type",description:"Which carousel button to show.",category:"other",specialCategory:null,sort:1},skipNumber:{label:"Skip Number",description:"Index to skip to when tapped.",category:"other",specialCategory:null,sort:2}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"CarouselDots",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},dotType:["expanding_dot","normal_dot","scaling_dot","sliding_border","sliding_dot","liquid_like"],dot_thickness:"size",inactive_dot_opacity:"number",inactive_dot_color:"color",active_dot_color:"color"}},meta:{desiredParent:[">CarouselProvider"],label:"Carousel Dots",description:"Renders page indicator dots.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},dotType:{label:"Dot Type",description:"Style used for the dots.",category:"style",specialCategory:null,sort:1}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0},dotType:"expanding_dot",dot_thickness:10,inactive_dot_opacity:.3,active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",inactive_dot_color:"THEME_COLORS.BACKGROUND"},types:{}},{schemaVersion:2,pattern:{type:"CarouselItem",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["=Carousel"],label:"Carousel Item",description:"Single slide inside a carousel.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:1,pattern:{type:"CarouselProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["root",">View"],label:"Carousel Provider",description:"Provides carousel context to its children.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},allowUnknownAttributes:!1,types:{}},{schemaVersion:2,pattern:{type:"CountDown",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"never",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",textAlign:"never"},scrollable:"boolean",count:"number"}},meta:{desiredParent:["all"],label:"Count Down",description:"Displays a countdown timer.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},count:{label:"Count (ms)",description:"Countdown duration in milliseconds.",category:"other",specialCategory:null,sort:1}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Image",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",resizeMode:["cover","contain","stretch","center"]},src:"string"}},meta:{desiredParent:["all"],label:"Image",description:"Shows an image or graphic.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},resizeMode:{label:"Resize Mode",description:"How the image fits the frame.",category:"style",specialCategory:null,sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,resizeMode:"contain"}},types:{}},{schemaVersion:2,pattern:{type:"Main",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},useSafeAreaView:"boolean"}},meta:{desiredParent:["root"],label:"Main",description:"Top-level screen wrapper (safe area, base layout).",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},useSafeAreaView:{label:"Use Safe Area View",description:"Wraps content with a safe-area-aware container (when supported by the target).",category:"container",specialCategory:null,sort:1,forceVisible:!0}},hideAllAttributes:!0},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%",flex:1},useSafeAreaView:!0},types:{}},{schemaVersion:2,pattern:{type:"NavigationBarColor",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"Navigation Bar Color",description:"Sets the OS navigation bar background color.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Navigation bar background color.",category:"style",specialCategory:null,sort:1},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,backgroundColor:"THEME_COLORS.BACKGROUND"}},types:{}},{schemaVersion:2,pattern:{type:"Onboard",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["=OnboardProvider"],label:"Onboard",description:"Wraps the onboarding flow.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},desiredChildren:["=OnboardItem"]},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardButton",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},labelKey:"string",animation:["simple-animation","line-animation","blur","blur-animation","blur-line-animation"],animation_color:"color",flex:"number",events:"EventObject[]"}},meta:{desiredParent:["=OnboardButtons"],label:"Onboard Button",description:"Single action button for onboarding.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},animation:{label:"Animation",description:"Animation style for the button.",category:"style",specialCategory:null,sort:3},animation_color:{label:"Animation Color",description:"Color used by the animation.",category:"style",specialCategory:null,sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow value in layout.",category:"container",specialCategory:null,sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},labelKey:{label:"Label Key",description:"Localization key for the button text.",category:"other",specialCategory:null,sort:1},events:{label:"Events",description:"List of events fired by the button.",category:"other",specialCategory:null,sort:7}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,height:"40@vs",borderRadius:"12@s"}},types:{EventObject:{type:["Permission","Navigate"],permission:["att","notification","rating","GDPR","null"],navigate_to:"string",targetIndex:"number"}}},{schemaVersion:2,pattern:{type:"OnboardButtons",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},buttonType:["previous_button","next_button","skip_button"],skipNumber:"number",buttons_direction:["row","column"],forIndex:"number",seperatorColor:"color",condition:["carousel-index"],conditionVariable:"number"}},meta:{desiredParent:["=OnboardItem"],label:"Onboard Buttons",description:"Wrapper for onboarding button set.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},seperatorColor:{label:"Seperator Color",description:"Color of the divider line.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},buttonType:{label:"Button Type",description:"Which onboard button to show.",category:"other",specialCategory:null,sort:1},skipNumber:{label:"Skip Number",description:"Slide index to skip to.",category:"other",specialCategory:null,sort:2},buttons_direction:{label:"Buttons Direction",description:"Direction to lay out buttons.",category:"container",specialCategory:null,sort:3},forIndex:{label:"For Index",description:"Show only for this slide index.",category:"other",specialCategory:null,sort:4},condition:{label:"Condition",description:"Built-in condition to check.",category:"other",specialCategory:null,sort:6},conditionVariable:{label:"Condition Variable",description:"Value used when checking the condition.",category:"other",specialCategory:null,sort:7}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,display:"flex",gap:12,alignItems:"center",justifyContent:"center",marginVertical:"12@vs",marginHorizontal:"24@s"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardDot",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},dotType:["expanding_dot","normal_dot","scaling_dot","sliding_border","sliding_dot","liquid_like"],dot_thickness:"size",inactive_dot_opacity:"number",inactive_dot_color:"color",active_dot_color:"color",flexDirection:"never",alignItems:"never",justifyContent:"never"}},meta:{desiredParent:[">OnboardProvider"],label:"Onboard Dot",description:"Renders onboarding progress dots.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},dotType:{label:"Dot Type",description:"Dot animation style.",category:"style",specialCategory:null,sort:1},inactive_dot_opacity:{label:"Inactive Dot Opacity",description:"Opacity for inactive dots.",category:"style",specialCategory:null,sort:3},inactive_dot_color:{label:"Inactive Dot Color",description:"Color of inactive dots.",category:"style",specialCategory:null,sort:4},dot_thickness:{label:"Dot Thickness",description:"Dot size/diameter.",category:"style",specialCategory:null,sort:2},active_dot_color:{label:"Active Dot Color",description:"Color of the active dot.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,alignItems:"center",justifyContent:"center",gap:"12@s"},dotType:"expanding_dot",dot_thickness:10,inactive_dot_opacity:.3,active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",inactive_dot_color:"THEME_COLORS.BACKGROUND"},types:{}},{schemaVersion:2,pattern:{type:"OnboardFooter",title:"title",description:"description",children:"never",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",textLocalizationKey:"string",linkedWordFirstLocalizationKey:"string",linkedWordFirstColor:"color",linkedWordFirstPage:"string",linkedWordSecondLocalizationKey:"string",linkedWordSecondColor:"color",linkedWordSecondPage:"string"}},meta:{desiredParent:[">OnboardItem"],label:"Onboard Footer",description:"Footer text with optional links.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},linkedWordFirstColor:{label:"Linked Word First Color",description:"Color of the first linked word.",category:"style",specialCategory:null,sort:3},linkedWordSecondColor:{label:"Linked Word Second Color",description:"Color of the second linked word.",category:"style",specialCategory:null,sort:6}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},textLocalizationKey:{label:"Text Localization Key",description:"Localization key for the footer text.",category:"other",specialCategory:null,sort:1},linkedWordFirstLocalizationKey:{label:"Linked Word First Localization Key",description:"Key for the first linked word.",category:"other",specialCategory:null,sort:2},linkedWordFirstPage:{label:"Linked Word First Page",description:"Page opened by the first link.",category:"other",specialCategory:null,sort:4},linkedWordSecondLocalizationKey:{label:"Linked Word Second Localization Key",description:"Key for the second linked word.",category:"other",specialCategory:null,sort:5},linkedWordSecondPage:{label:"Linked Word Second Page",description:"Page opened by the second link.",category:"other",specialCategory:null,sort:7}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400",flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,flexWrap:"wrap",alignItems:"center",justifyContent:"center",textAlign:"center",paddingHorizontal:"24@s"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardImage",title:"title",description:"description",children:"node",attributes:{src:"string",style:{resizeMode:["cover","contain","stretch","center"],flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean",video_url:"string",lottie:"string"}},meta:{desiredParent:[">OnboardProvider",">OnboardItem","!=Onboard"],label:"Onboard Image",description:"Onboarding hero image with media.",styles:{resizeMode:{label:"Resize Mode",description:"How the image fits the frame.",category:"style",specialCategory:null,sort:4},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},video_url:{label:"Video Url",description:"URL for the onboarding video.",category:"other",specialCategory:null,sort:1},lottie:{label:"Lottie",description:"Path to the lottie animation.",category:"other",specialCategory:null,sort:2}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{styles:{resizeMode:"contain",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardItem",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},display:["flex","block"],gap:"size",flexDirection:["row","column"],paddingHorizontal:"size"}},meta:{desiredParent:["=Onboard"],label:"Onboard Item",description:"Single onboarding screen section.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Order of child stacking.",category:"container",specialCategory:null,sort:3},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between child blocks.",category:"container",specialCategory:null,sort:2},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:4},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},display:{label:"Display",description:"Controls layout display mode.",category:"container",specialCategory:null,sort:1}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,gap:"16@vs",paddingHorizontal:"24@s"},display:"flex"},types:{}},{schemaVersion:2,pattern:{type:"OnboardProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},theme:["light","dark","all"],borderRadius:"never"}},meta:{desiredParent:["root"],label:"Onboard Provider",description:"Provides shared settings for onboarding.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding for the provider.",category:"container",specialCategory:"padding",sort:1},paddingBottom:{label:"Padding Bottom",description:"Bottom padding for the provider.",category:"container",specialCategory:"padding",sort:3},paddingLeft:{label:"Padding Left",description:"Left padding for the provider.",category:"container",specialCategory:"padding",sort:4},paddingRight:{label:"Padding Right",description:"Right padding for the provider.",category:"container",specialCategory:"padding",sort:2},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},theme:{label:"Theme",description:"Controls which app theme(s) this onboarding is intended for.",category:"other",specialCategory:null,sort:-10}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},types:{}},{schemaVersion:2,pattern:{type:"OnboardSubtitle",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">OnboardProvider",">OnboardItem"],label:"Onboard Subtitle",description:"Subtitle text for an onboarding step.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"14@fs",fontWeight:"600",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"OnboardTitle",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">OnboardItem",">OnboardProvider"],label:"Onboard Title",description:"Title text for an onboarding step.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"24@fs",fontWeight:"700",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallBackground",title:"title",description:"description",children:"never",attributes:{src:"string",resizeMode:["cover","contain","stretch","center"],scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Background",description:"Paywall Background component.",styles:{resizeMode:{label:"Resize Mode",description:"How the image fits its container.",category:"style",specialCategory:null,sort:4},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{src:{label:"Src",description:"Image source URL.",category:"other",specialCategory:null,sort:1},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{resizeMode:"cover",styles:{width:"100%",height:"100%",position:"absolute",top:0,left:0,right:0,bottom:0,zIndex:1,flexDirection:"column",alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"PaywallCloseButton",title:"title",description:"description",children:"never",attributes:{iconType:"iconType",size:"number",strokeWidth:"number",adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Close Button",description:"Paywall Close Button component.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{iconType:{label:"Icon",description:"Which icon to render.",category:"other",specialCategory:null,sort:1},size:{label:"Size",description:"Icon size (px).",category:"other",specialCategory:null,sort:2},strokeWidth:{label:"Stroke Width",description:"SVG stroke width override (applied to the icon paths).",category:"other",specialCategory:null,sort:3},adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{iconType:"close",strokeWidth:1.5,styles:{fontSize:"16@fs",color:"THEME_COLORS.TEXT",fontWeight:"400",flexDirection:"row",position:"absolute",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,top:"35@vs",left:"24@s",justifyContent:"center",alignItems:"center"},translateCounter:1,size:24},types:{}},{schemaVersion:2,pattern:{type:"PaywallOptions",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Options",description:"Paywall options selector component.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"row",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,justifyContent:"space-between",alignItems:"center",minHeight:"60px"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallProvider",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},delay:"number"}},meta:{desiredParent:["all"],label:"Paywall Provider",description:"Provider/wrapper for paywall screen components.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},delay:{label:"Back Delay (ms)",description:"Milliseconds before the paywall can be dismissed via back/close.",category:"other",specialCategory:null,sort:1}},mockableFeatures:{products:!0,benefits:!0}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,width:"100%",height:"100%"}},types:{}},{schemaVersion:2,pattern:{type:"PaywallSubscribeButton",title:"title",description:"description",children:"string",attributes:{style:{color:"color",fontSize:"size",fontWeight:["normal","bold","100","200","300","400","500","600","700","800","900"],flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Paywall Subscribe Button",description:"Paywall subscribe call-to-action button. Extends Button.",styles:{color:{label:"Color",description:"Text color of the button.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size of the button.",category:"style",specialCategory:null,sort:2},fontWeight:{label:"Font Weight",description:"Text weight of the button.",category:"style",specialCategory:null,sort:3},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{display:"flex",alignItems:"center",justifyContent:"center",backgroundColor:"#6495ED",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,paddingHorizontal:"20@s",paddingVertical:"12@vs",borderRadius:"12@s",color:"#FFFFFF",fontSize:"16@fs",fontWeight:"700"}},types:{}},{schemaVersion:2,pattern:{type:"PriceTag",title:"title",description:"description",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",textDecorationLine:["none","underline","line-through"]},scrollable:"boolean",showOriginalPricePossible:"boolean",hideIfItsNotDiscount:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Price Tag",description:"Displays a price tag text. Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},textDecorationLine:{label:"Text Decoration",description:"Text decoration line style (e.g. line-through for strikethrough).",category:"style",specialCategory:null,sort:6}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},showOriginalPricePossible:{label:"Show Original Price Possible",description:"When enabled, shows the original price if available.",category:"other",specialCategory:null,sort:1},hideIfItsNotDiscount:{label:"Hide If No Discount",description:"Hides this element when there is no active discount/promo.",category:"other",specialCategory:null,sort:2}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:1,styles:{color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"700",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Pricing",title:"title",description:"base.builder.paywall.pricing.default.text",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Pricing",description:"Displays pricing details (e.g. promo/trial breakdown). Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:2,styles:{color:"rgba(255,255,255,0.6)",fontSize:"12@fs",fontWeight:"400",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"Promo",title:"title",description:"base.builder.paywall.promo.default.text",children:"string",attributes:{adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number",style:{color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight",flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},scrollable:"boolean"}},meta:{desiredParent:[">PaywallProvider"],label:"Promo",description:"Displays promotional badge/text (e.g. discount percentage). Extends Text.",styles:{color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5},backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2},scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}},specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}}},defaults:{translateCounter:2,styles:{color:"#34D399",fontSize:"12@fs",fontWeight:"600",flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,textAlign:"center"}},types:{}},{schemaVersion:2,pattern:{type:"RadioButton",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"},selected:"boolean",color:"color",size:"number"}},meta:{desiredParent:["all"],label:"Radio Button",description:"Generic radio button icon.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Radio color.",category:"style",specialCategory:null,sort:1},size:{label:"Size",description:"Radio size in px.",category:"style",specialCategory:null,sort:2}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},selected:{label:"Selected",description:"Whether the radio is selected.",category:"other",specialCategory:null,sort:0}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}},types:{}},{schemaVersion:2,pattern:{type:"Separator",title:"title",description:"description",children:"never",attributes:{style:{backgroundColor:"color",width:"size",height:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size"}}},meta:{desiredParent:["all"],label:"Separator",description:"Horizontal line separator.",styles:{backgroundColor:{label:"Color",description:"Separator line color.",category:"style",specialCategory:null,sort:1}},attributes:{width:{label:"Width",description:"Separator width.",category:"container",specialCategory:null,sort:1,preferredScale:"s"},height:{label:"Height",description:"Separator thickness.",category:"container",specialCategory:null,sort:2,preferredScale:"vs"}}},defaults:{styles:{width:"100%",height:2,backgroundColor:"#000000"}}},{schemaVersion:2,pattern:{type:"StatusBarColor",title:"title",description:"description",children:"never",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"Status Bar Color",description:"Sets the OS status bar background color.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Status bar background color.",category:"style",specialCategory:null,sort:1},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,backgroundColor:"THEME_COLORS.BACKGROUND"}},types:{}},{schemaVersion:2,pattern:{type:"Text",title:"title",description:"description",children:"string",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number",color:"color",fontSize:"size",fontFamily:"fontFamily",fontWeight:"fontWeight"},adjustsFontSizeToFit:"boolean",showEllipsis:"boolean",translateCounter:"number"}},meta:{desiredParent:["all"],label:"Text",description:"Displays simple text.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"},color:{label:"Color",description:"Text color.",category:"style",specialCategory:null,sort:1},fontSize:{label:"Font Size",description:"Text size.",category:"style",specialCategory:null,sort:2,preferredScale:"s"},fontFamily:{label:"Font Family",description:"Font family used for the text.",category:"style",specialCategory:null,sort:3},fontWeight:{label:"Font Weight",description:"Text weight.",category:"style",specialCategory:null,sort:4},textAlign:{label:"Text Align",description:"Text alignment.",category:"style",specialCategory:null,sort:5}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26},adjustsFontSizeToFit:{label:"Adjust Font Size To Fit",description:"Automatically reduces font size to fit the available space.",category:"other",specialCategory:null,sort:1},showEllipsis:{label:"Show Ellipsis",description:"If text overflows, show ellipsis (…); applied as single-line truncation.",category:"other",specialCategory:null,sort:2}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0,color:"THEME_COLORS.TEXT",fontSize:"16@fs",fontWeight:"400"},translateCounter:1},types:{}},{schemaVersion:2,pattern:{type:"View",title:"title",description:"description",children:"node",attributes:{scrollable:"boolean",style:{flexDirection:["row","column"],flexWrap:["nowrap","wrap","wrap-reverse"],alignItems:["flex-start","center","flex-end","stretch","baseline"],justifyContent:["flex-start","center","flex-end","space-between","space-around","space-evenly"],gap:"size",padding:"size",paddingHorizontal:"size",paddingVertical:"size",paddingTop:"size",paddingBottom:"size",paddingLeft:"size",paddingRight:"size",margin:"size",marginHorizontal:"size",marginVertical:"size",marginTop:"size",marginBottom:"size",marginLeft:"size",marginRight:"size",backgroundColor:"color",borderRadius:"size",width:"size",minWidth:"size",maxWidth:"size",height:"size",minHeight:"size",maxHeight:"size",flex:"number",position:["relative","absolute"],top:"size",bottom:"size",left:"size",right:"size",zIndex:"number"}}},meta:{desiredParent:["all"],label:"View",description:"Base layout container.",specialCategories:{padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",sort:1},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",sort:2},size:{label:"Size",description:"Fixed dimensions.",category:"container",sort:3},offset:{label:"Offset",description:"Absolute positioning offsets.",category:"container",sort:4}},styles:{backgroundColor:{label:"Background Color",description:"Background fill color.",category:"style",specialCategory:null,sort:20},borderRadius:{label:"Border Radius",description:"Corner rounding amount.",category:"style",specialCategory:null,sort:21,preferredScale:"s"}},attributes:{scrollable:{label:"Scrollable",description:"Turns scroll interaction on.",category:"container",specialCategory:null,sort:-1},flexDirection:{label:"Flex Direction",description:"Sets row or column layout.",category:"container",specialCategory:null,sort:4},flexWrap:{label:"Flex Wrap",description:"Controls whether flex items wrap to multiple lines.",category:"container",specialCategory:null,sort:4.5},alignItems:{label:"Align Items",description:"Controls cross-axis alignment.",category:"container",specialCategory:null,sort:3},justifyContent:{label:"Justify Content",description:"Controls main-axis alignment.",category:"container",specialCategory:null,sort:5},gap:{label:"Gap",description:"Space between children.",category:"container",specialCategory:null,sort:10,preferredScale:"s"},padding:{label:"Padding",description:"Uniform padding on all sides.",category:"container",specialCategory:"padding",sort:6,preferredScale:"s"},paddingHorizontal:{label:"Padding Horizontal",description:"Left and right padding.",category:"container",specialCategory:"padding",sort:7,preferredScale:"s"},paddingVertical:{label:"Padding Vertical",description:"Top and bottom padding.",category:"container",specialCategory:"padding",sort:8,preferredScale:"vs"},paddingTop:{label:"Padding Top",description:"Top padding only.",category:"container",specialCategory:"padding",sort:9,preferredScale:"vs"},paddingBottom:{label:"Padding Bottom",description:"Bottom padding only.",category:"container",specialCategory:"padding",sort:10,preferredScale:"vs"},paddingLeft:{label:"Padding Left",description:"Left padding only.",category:"container",specialCategory:"padding",sort:11,preferredScale:"s"},paddingRight:{label:"Padding Right",description:"Right padding only.",category:"container",specialCategory:"padding",sort:12,preferredScale:"s"},margin:{label:"Margin",description:"Uniform margin on all sides.",category:"container",specialCategory:"margin",sort:13,preferredScale:"s"},marginHorizontal:{label:"Margin Horizontal",description:"Left and right margin.",category:"container",specialCategory:"margin",sort:14,preferredScale:"s"},marginVertical:{label:"Margin Vertical",description:"Top and bottom margin.",category:"container",specialCategory:"margin",sort:15,preferredScale:"vs"},marginTop:{label:"Margin Top",description:"Top margin only.",category:"container",specialCategory:"margin",sort:16,preferredScale:"vs"},marginBottom:{label:"Margin Bottom",description:"Bottom margin only.",category:"container",specialCategory:"margin",sort:17,preferredScale:"vs"},marginLeft:{label:"Margin Left",description:"Left margin only.",category:"container",specialCategory:"margin",sort:18,preferredScale:"s"},marginRight:{label:"Margin Right",description:"Right margin only.",category:"container",specialCategory:"margin",sort:19,preferredScale:"s"},width:{label:"Width",description:"Fixed width value.",category:"container",specialCategory:"size",sort:0,preferredScale:"s"},minWidth:{label:"Min Width",description:"Minimum width constraint.",category:"container",specialCategory:"size",sort:1,preferredScale:"s"},maxWidth:{label:"Max Width",description:"Maximum width constraint.",category:"container",specialCategory:"size",sort:2,preferredScale:"s"},height:{label:"Height",description:"Fixed height value.",category:"container",specialCategory:"size",sort:3,preferredScale:"vs"},minHeight:{label:"Min Height",description:"Minimum height constraint.",category:"container",specialCategory:"size",sort:4,preferredScale:"vs"},maxHeight:{label:"Max Height",description:"Maximum height constraint.",category:"container",specialCategory:"size",sort:5,preferredScale:"vs"},flex:{label:"Flex",description:"Flex grow factor (e.g. 1 fills available space).",category:"container",specialCategory:"size",sort:6},position:{label:"Position",description:"Sets layout positioning mode.",category:"container",specialCategory:null,sort:3},top:{label:"Top",description:"Offset from the top edge.",category:"container",specialCategory:"offset",sort:22,preferredScale:"vs"},bottom:{label:"Bottom",description:"Offset from the bottom edge.",category:"container",specialCategory:"offset",sort:23,preferredScale:"vs"},left:{label:"Left",description:"Offset from the left edge.",category:"container",specialCategory:"offset",sort:24,preferredScale:"s"},right:{label:"Right",description:"Offset from the right edge.",category:"container",specialCategory:"offset",sort:25,preferredScale:"s"},zIndex:{label:"Z-Index",description:"Controls stacking order.",category:"container",specialCategory:null,sort:26}}},defaults:{styles:{flexDirection:"column",position:"relative",zIndex:1,alignSelf:"flex-start",flexGrow:0,flexShrink:0}}}];const ae=new Map(oe.map(e=>[e.pattern.type,e]));function ne(e){return e?e[0].toLowerCase()+e.slice(1):e}function le(e){return e?e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").toLowerCase():e}const se=new Map;for(const e of oe){const t=e?.pattern?.type;if("string"!=typeof t||!t)continue;const i=[t,t.toLowerCase(),ne(t),le(t)];for(const e of i)e&&(se.has(e)||se.set(e,t))}function ce(e){if("string"==typeof e&&e)return ae.has(e)?e:se.get(e)??se.get(e.toLowerCase())}function de(e){if("string"!=typeof e)return;const t=ce(e)??e;return ae.get(t)}function pe(e){const t=de(e);return t?.pattern.attributes}function ge(e){const t=de(e);return t?.defaults}function ye(e,t){if(!e||!t)return;const i=de(e);return i?.types?.[t]}function fe(e){return"string"===e||"title"===e||"description"===e||"number"===e||"boolean"===e||"color"===e||"size"===e||"fontFamily"===e||"fontWeight"===e||"iconType"===e}function be(e){return"string"!=typeof e?null:e.endsWith("[]")?e.slice(0,-2):null}function ue(e){return null==e}function me(e){return"string"==typeof e}function he(e){return e instanceof Array}function Ce(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)&&0===Object.keys(e).length}function Se(e,t){return{valid:!1,message:e,path:t}}function xe(e,t){return e?t?t.startsWith("[")?`${e}${t}`:`${e}.${t}`:e:t}function Oe(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function ze(e){if(!Oe(e))return!1;return"string"==typeof e.type}function Te(e){return ce(e)??e}function ve(e,t,i){const r=function(e){const t=e?.pattern?.children;return"string"==typeof t?[t]:Array.isArray(t)?t.filter(e=>"string"==typeof e):[]}(t),{baseKinds:o,allowedComponentTypes:a}=function(e){const t=new Set,i=new Set;for(const r of e)"never"===r||"string"===r||"node"===r?t.add(r):"array"===r?t.add("node"):"string"==typeof r&&r&&i.add(Te(r));return{baseKinds:t,allowedComponentTypes:i}}(r),n=function(e,t,i){return t.has("never")?ue(e)||Ce(e)?{valid:!0}:Se('Children not allowed (pattern.children = "never")',i):{valid:!0}}(e.children,o,i);if(!n.valid)return n;const l=function(e,t,i,r){return ue(e)||Ce(e)?{valid:!0}:i.size>0?he(e)||ze(e)?{valid:!0}:Se(`Children must be a node or array of nodes (allowed: ${Array.from(i).join(", ")})`,r):me(e)?t.has("string")?{valid:!0}:Se("Children must not be a string",r):he(e)?t.has("node")?{valid:!0}:Se("Children must not be an array",r):ze(e)?t.has("node")?{valid:!0}:Se("Children must not be a node",r):Se("Children has invalid shape",r)}(e.children,o,a,i);return l.valid?function(e,t,i){if(0===t.size)return{valid:!0};if(ue(e)||Ce(e))return{valid:!0};const r=Array.from(t),o=(e,i)=>{if(!ze(e))return Se("Child must be an object node",i);const o=Te(e.type);return t.has(o)?{valid:!0}:Se(`Child type "${e.type}" is not allowed here (allowed: ${r.join(", ")})`,xe(i,"type"))};if(he(e)){const t=e;for(let e=0;e<t.length;e++){const r=o(t[e],`${i}[${e}]`);if(!r.valid)return r}return{valid:!0}}return o(e,i)}(e.children,a,i):l}function we(e,t,i,r){if(null==t)return{valid:!0};if("never"===i)return{valid:!0};if(Array.isArray(i))return function(e,t,i){if("string"==typeof e)return t.includes(e)?{valid:!0}:Se(`Expected one of: ${t.join(", ")}`,i);if(Array.isArray(e)){for(let r=0;r<e.length;r++){const o=e[r];if("string"!=typeof o||!t.includes(o))return Se(`Expected an array of: ${t.join(", ")}`,`${i}[${r}]`)}return{valid:!0}}return Se("Expected a string or string[] enum value",i)}(t,i,r);const o=be(i);if(o){if(!Array.isArray(t))return Se(`Expected array for type "${i}"`,r);for(let i=0;i<t.length;i++){const a=we(e,t[i],o,`${r}[${i}]`);if(!a.valid)return a}return{valid:!0}}return fe(i)?function(e,t,i){switch(t){case"string":return"string"==typeof e?{valid:!0}:Se("Expected string",i);case"number":return"number"==typeof e?{valid:!0}:Se("Expected number",i);case"boolean":return"boolean"==typeof e?{valid:!0}:Se("Expected boolean",i);case"color":return"string"==typeof e?{valid:!0}:Se("Expected color (string)",i);case"title":return"string"!=typeof e?Se("Expected title (string)",i):e.length<=20?{valid:!0}:Se("Expected title to be <= 20 characters",i);case"description":return"string"==typeof e?{valid:!0}:Se("Expected description (string)",i);case"size":return"number"==typeof e||"string"==typeof e?{valid:!0}:Se("Expected size (string or number)",i);case"fontWeight":return Q(e)?{valid:!0}:Se(`Expected fontWeight (${q.join(", ")})`,i);case"iconType":return"string"==typeof e?{valid:!0}:Se("Expected iconType (string)",i);default:return Se(`Unknown primitive type "${t}"`,i)}}(t,i,r):function(e,t,i,r){const o=ye(e,i);if(!o)return Se(`Unknown custom type "${i}"`,r);if(!Oe(t))return Se(`Expected object for type "${i}"`,r);const a=t;for(const[t,i]of Object.entries(o)){if(!(t in a))continue;const o=we(e,a[t],i,xe(r,t));if(!o.valid)return o}return{valid:!0}}(e,t,i,r)}function Re(e,t,i){const r=e.attributes;if(null==r)return{valid:!0};if(!Oe(r))return Se("attributes must be an object",i);const o=pe(t.pattern.type)??t.pattern.attributes??{},a=function(e){if(!e)return{};const t=e.style;return t?"string"==typeof t||Array.isArray(t)?{}:t??{}:{}}(o),n=r,l=n.style,s=n.styles;if(null!=l)return Se(`Legacy attribute "style" detected. Use "styles" instead (schemaVersion=2). Found at ${xe(i,"style")}`,xe(i,"style"));if(null!=s){if(!Oe(s))return Se("styles must be an object",xe(i,"styles"));const e=s;for(const[r,n]of Object.entries(e)){const e=a?.[r]??o?.[r];if(!e)continue;const l=we(t.pattern.type,n,e,xe(xe(i,"styles"),r));if(!l.valid)return l}}for(const[e,n]of Object.entries(r)){if("style"===e||"styles"===e)continue;const r=o?.[e];if(!r){if("title"===e||"description"===e){const r=we(t.pattern.type,n,e,xe(i,e));if(!r.valid)return r;continue}const r=a?.[e];if(!r)return Se(`Unknown attribute "${e}"`,xe(i,e));const o=we(t.pattern.type,n,r,xe(i,e));if(!o.valid)return o;continue}const l=we(t.pattern.type,n,r,xe(i,e));if(!l.valid)return l}return{valid:!0}}function Be(e,t){if(ue(e)||me(e)||Ce(e))return{valid:!0};if(he(e)){const i=e;for(let e=0;e<i.length;e++){const r=Be(i[e],`${t}[${e}]`);if(!r.valid)return r}return{valid:!0}}if(!ze(e))return Se("Invalid node shape",t);const i=function(e,t){const i=de(Te(e.type));if(!i)return Se(`Unknown component type "${e.type}"`,xe(t,"type"));const r=Re({...e},i,xe(t,"attributes"));if(!r.valid)return r;const o=ve({...e},i,xe(t,"children"));return o.valid?{valid:!0}:o}(e,t);return i.valid?Be(e.children,xe(t,"children")):i}function Ie(e){if(ue(e))return{valid:!0,message:"null or undefined is valid"};if(me(e))return{valid:!0,message:"string is valid"};if(he(e)){const t=e;for(const e of t){const t=Ie(e);if(!t.valid)return t}return{valid:!0,message:"Array is valid"}}const t=e;if(Ce(t))return{valid:!0,message:"empty object is valid"};if(t.children){const e=Ie(t.children);if(!e.valid)return e}return{valid:!0,message:"everything is structurally valid"}}function Pe(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function _e(e){if(null==e)return e;if(Array.isArray(e))return e.map(_e);if(!Pe(e))return e;if(function(e){if(!Pe(e))return!1;if("type"in e||"children"in e||"attributes"in e)return!1;if(!("value"in e))return!1;const t=Object.keys(e);if(t.length<1||t.length>3)return!1;const i=new Set(["value","label","id"]);for(const e of t)if(!i.has(e))return!1;const r=e.value;return null==r||"string"==typeof r||"number"==typeof r||"boolean"==typeof r}(e))return _e(e.value);const t={};for(const[i,r]of Object.entries(e))t[i]=_e(r);return t}function Me(e){if(ue(e)||me(e))return e;if(he(e)){return e.map(Me)}const t=e;let i=t.attributes;Array.isArray(i)&&0===i.length&&(i={}),i=Pe(i)?_e(i):i;const r=void 0!==t.children?Me(t.children):t.children;return{...t,attributes:i,children:r}}function Le(e,t){if(ue(e)||me(e))return e;if(he(e)){return e.map(e=>Le(e,t))}const i=e;let r=i.key;if(r&&t.has(r)&&(r=void 0),!r)do{r=re(i.type)}while(t.has(r));t.add(r);const o=i.children?Le(i.children,t):i.children;return{...i,key:r,children:o}}function Ae(e){const t=Ie(e);if(!t.valid)return t;const i=function(e){return Be(e,"root")}(e);if(!i.valid){return{valid:!1,message:`${i.path?`${i.path}: `:""}${i.message??""}`}}return{valid:!0,message:"Node is valid (structure + patterns)"}}var ke={supportedProjectVersion:"1.1.2",reactBuilderVersion:"1.2.30"};const He={supportedProjectVersion:ke.supportedProjectVersion,reactBuilderVersion:ke.reactBuilderVersion};function Ee(e){const t={},i=e?.attributes?.styles||[];if(!Array.isArray(i)||0===i.length)return t;const r=new Set(["left","center","right","justify"]),o=new Set(["normal","bold","100","200","300","400","500","600","700","800","900"]);for(const e of i){if("style-layout"!==e?.layout)continue;const i=e?.attributes?.styles||[];if(Array.isArray(i))for(const e of i){if("Styles"!==e?.layout)continue;const i=e?.attributes?.type;if("textStyle"!==i)continue;const a=e?.attributes?.style||{},n=a?.fontSize;if("number"==typeof n&&Number.isFinite(n))t.fontSize=n;else if("string"==typeof n){const e=Number.parseInt(n,10);Number.isFinite(e)&&(t.fontSize=e)}const l=a?.textAlign;"string"==typeof l&&r.has(l)&&(t.textAlign=l);const s=a?.marginTop;if("number"==typeof s&&Number.isFinite(s))t.marginTop=s;else if("string"==typeof s){const e=Number.parseInt(s,10);Number.isFinite(e)&&(t.marginTop=e)}const c=a?.fontWeight;let d;"number"==typeof c&&Number.isFinite(c)?d=String(c):"string"==typeof c&&(d=c),d&&o.has(d)&&(t.fontWeight=d)}}return t}function We(e){const t={},i=e?.attributes?.styles||[];if(!Array.isArray(i)||0===i.length)return t;for(const e of i){if("style-layout"!==e?.layout)continue;const i=e?.attributes?.styles||[];if(Array.isArray(i))for(const e of i){if("Styles"!==e?.layout)continue;const i=e?.attributes?.style||{},r=i?.borderRadius;if("number"==typeof r&&Number.isFinite(r))t.borderRadius=r;else if("string"==typeof r){const e=Number.parseInt(r,10);Number.isFinite(e)&&(t.borderRadius=e)}}}return t}const Ne="https://tribemarketing.s3.eu-central-1.amazonaws.com/tribehub-assets/";var De;function Fe(e){const t=e.trim().replace(/^\/+/,"");return"backgorund.jpg"===t?"background.jpg":"ios.svg"===t?"apple.svg":t}function Ve(e){const t=Fe(e);return`${Ne.endsWith("/")?Ne:`${Ne}/`}${i=t,i.split("/").filter(Boolean).map(e=>encodeURIComponent(e)).join("/")}`;var i}function Ue(e){switch(Fe(e)){case exports.TribeAssetName.Android:return exports.TribeAssetName.Android;case exports.TribeAssetName.Apple:return exports.TribeAssetName.Apple;case exports.TribeAssetName.Background:return exports.TribeAssetName.Background;default:return null}}exports.TribeAssetName=void 0,(De=exports.TribeAssetName||(exports.TribeAssetName={})).Android="android.svg",De.Apple="apple.svg",De.Background="background.jpg";var je={name:"hello-world",version:"1.1.2",type:"other",data:{type:"View",attributes:{scrollable:!0,description:"View element 1 in sample.",title:"View 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:16,backgroundColor:"#F5F7FA"}},children:[{type:"Text",children:"hello-world",attributes:{description:"Text element 1 in sample.",title:"Text 1",styles:{color:"#111827",fontSize:24,fontWeight:"600"}}},{type:"Text",children:"Welcome to react-native-builder",attributes:{description:"Text element 2 in sample.",title:"Text 2",styles:{color:"#6B7280",fontSize:14,fontWeight:"400"}}}]}},Ke={name:"hello-world-2-advanced",version:"1.1.2",type:"other",data:{type:"view",attributes:{scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",gap:16,padding:16,backgroundColor:"#F3F4F6"}},children:[{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#111827",borderRadius:12}},children:[{type:"text",children:"Dashboard",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{color:"#FFFFFF",fontSize:20,fontWeight:"600"}}},{type:"view",attributes:{description:"view element 3 in sample.",title:"view 3",styles:{flexDirection:"row",gap:8}},children:[{type:"text",children:"Help",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{color:"#D1D5DB",fontSize:14}}},{type:"text",children:"Profile",attributes:{description:"text element 3 in sample.",title:"text 3",styles:{color:"#D1D5DB",fontSize:14}}}]}]},{type:"image",attributes:{src:"https://picsum.photos/720/320",description:"image element 1 in sample.",title:"image 1",styles:{width:358,height:160,borderRadius:12}},children:null},{type:"view",attributes:{description:"view element 4 in sample.",title:"view 4",styles:{flexDirection:"column",gap:8,padding:12,backgroundColor:"#FFFFFF",borderRadius:12}},children:[{type:"text",children:"Welcome back!",attributes:{description:"text element 4 in sample.",title:"text 4",styles:{color:"#111827",fontSize:18,fontWeight:"600"}}},{type:"text",children:"Here's what's new today.",attributes:{description:"text element 5 in sample.",title:"text 5",styles:{color:"#6B7280",fontSize:14}}}]},{type:"view",attributes:{description:"view element 5 in sample.",title:"view 5",styles:{flexDirection:"column",gap:12}},children:[{type:"view",attributes:{description:"view element 6 in sample.",title:"view 6",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 1",attributes:{description:"text element 6 in sample.",title:"text 6",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"Due today",attributes:{description:"text element 7 in sample.",title:"text 7",styles:{color:"#059669",fontSize:12,fontWeight:"600"}}}]},{type:"view",attributes:{description:"view element 7 in sample.",title:"view 7",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 2",attributes:{description:"text element 8 in sample.",title:"text 8",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"2 days left",attributes:{description:"text element 9 in sample.",title:"text 9",styles:{color:"#D97706",fontSize:12,fontWeight:"600"}}}]},{type:"view",attributes:{description:"view element 8 in sample.",title:"view 8",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-between",padding:12,backgroundColor:"#FFFFFF",borderRadius:8}},children:[{type:"text",children:"Task 3",attributes:{description:"text element 10 in sample.",title:"text 10",styles:{color:"#111827",fontSize:16,fontWeight:"500"}}},{type:"text",children:"Completed",attributes:{description:"text element 11 in sample.",title:"text 11",styles:{color:"#6B7280",fontSize:12,fontWeight:"600"}}}]}]},{type:"view",attributes:{description:"view element 9 in sample.",title:"view 9",styles:{flexDirection:"row",alignItems:"center",justifyContent:"space-around",padding:12,backgroundColor:"#111827",borderRadius:12}},children:[{type:"text",children:"Home",attributes:{description:"text element 12 in sample.",title:"text 12",styles:{color:"#FFFFFF",fontSize:14}}},{type:"text",children:"Search",attributes:{description:"text element 13 in sample.",title:"text 13",styles:{color:"#9CA3AF",fontSize:14}}},{type:"text",children:"Settings",attributes:{description:"text element 14 in sample.",title:"text 14",styles:{color:"#9CA3AF",fontSize:14}}}]}]}},Ge={name:"carousel-sample",version:"1.1.2",type:"other",data:{type:"Main",isMain:!0,attributes:{styles:{backgroundColor:"#f8fafc",minHeight:"100vh",padding:"24px"}},children:{type:"carouselProvider",children:[{type:"carousel",attributes:{loop:!0,align:"center",dragFree:!0,description:"carousel element 1 in sample.",title:"carousel 1"},children:[{type:"carouselItem",attributes:{description:"carouselItem element 1 in sample.",title:"carouselItem 1",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 1 in sample.",title:"view 1",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #eef2ff 0%, #ffffff 55%, #ecfeff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-49ojfyhl4d7"},{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Welcome aboard",key:"text-3ougfj4mxnh"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"Swipe through a beautiful, validated carousel sample with images.",key:"text-2dol8grshke"}],key:"view-a8hfkdvfy7"},key:"carouselItem-5bw9x33s7ie"},{type:"carouselItem",attributes:{description:"carouselItem element 2 in sample.",title:"carouselItem 2",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%, #eff6ff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-riwntk91k9"},{type:"text",attributes:{description:"text element 3 in sample.",title:"text 3",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Discover features",key:"text-hmuk6f7ml4v"},{type:"text",attributes:{description:"text element 4 in sample.",title:"text 4",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"Dots + buttons are included, and slide sizing comes from the carousel CSS.",key:"text-dnhhoqiiri"}],key:"view-9hyw3wys30w"},key:"carouselItem-lyq2hr0qh8h"},{type:"carouselItem",attributes:{description:"carouselItem element 3 in sample.",title:"carouselItem 3",styles:{minWidth:0}},children:{type:"view",attributes:{description:"view element 3 in sample.",title:"view 3",styles:{padding:"22px",borderRadius:18,backgroundImage:"linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #f5f3ff 100%)",boxShadow:"0 10px 30px rgba(15, 23, 42, 0.10)",gap:14,height:"100%"}},children:[{type:"image",attributes:{src:"https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",styles:{width:"auto",maxWidth:"100%",borderRadius:14}},key:"image-j9ru3r8g7km"},{type:"text",attributes:{description:"text element 5 in sample.",title:"text 5",styles:{fontSize:28,fontWeight:"700",textAlign:"center",color:"#0f172a"}},children:"Get started",key:"text-01u3fwwtkd8p"},{type:"text",attributes:{description:"text element 6 in sample.",title:"text 6",styles:{fontSize:16,textAlign:"center",color:"#334155",paddingHorizontal:8}},children:"This sample stays within validation rules (no string flex shorthand).",key:"text-w8rwg9y1hj"}],key:"view-tsjfbzn8kdj"},key:"carouselItem-6r53yswjyee"}],key:"carousel-2qa4gn0ms32"},{type:"view",attributes:{title:"Carousel Controls",description:"carousel controls view element in sample.",styles:{flex:1,gap:24,alignItems:"center",paddingTop:32}},children:[{type:"carouselDots",attributes:{dotType:"expanding_dot"},key:"carouselDots-r5ji67uoxxg"},{type:"view",attributes:{title:"Nav Buttons",description:"navigation buttons wrapper",styles:{flexDirection:"row",gap:12,alignItems:"center",justifyContent:"center"}},children:[{type:"carouselButtons",attributes:{buttonType:["previous_button"],styles:{backgroundColor:"#6366f1",borderRadius:12,padding:"12px 24px",minWidth:100}},key:"carouselButtons-prev"},{type:"carouselButtons",attributes:{buttonType:["next_button"],styles:{backgroundColor:"#8b5cf6",borderRadius:12,padding:"12px 24px",minWidth:100}},key:"carouselButtons-next"}],key:"view-nav-buttons"}],key:"view-controls-wrapper"}],attributes:{description:"carouselProvider element 1 in sample.",title:"carouselProvider 1",styles:{backgroundColor:"#ffffff",borderRadius:24,padding:"32px",boxShadow:"0 4px 20px rgba(0, 0, 0, 0.08)",maxWidth:"600px",margin:"0 auto"}},key:"carouselProvider-152n4dkqvam"},key:"Main-u1cavjag9sr"}},Ye={name:"unvalidated-builder1",version:"1.1.2",type:"other",data:{type:"view",attributes:{foo:1,scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA"}},children:[{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center"}},children:"Intentionally unvalidated sample"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8}},children:"This project should fail validation (unknown attribute: foo). In the UI, choose “Continue without validation” to load it anyway."}]}},$e={name:"unvalidated-crash1",version:"1.1.2",type:"other",data:{type:"OnboardFooter",attributes:{textLocalizationKey:123,description:"OnboardFooter element 1 in sample.",title:"OnboardFooter 1",styles:{paddingHorizontal:24,paddingVertical:16}},children:null}},Xe={name:"unvalidated-crashcomponent1",version:"1.1.2",type:"other",data:{type:"CrashComponent",attributes:{reason:"Intentional crash for GUI testing",note:"This component is not in the Add Component modal; it only exists via JSON.",description:"CrashComponent element 1 in sample.",title:"CrashComponent 1"},children:null}},Je={name:"unmigrated-builder1",version:"1.0.0",type:"other",data:{type:"view",attributes:{scrollable:!0,flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA",description:"view element 1 in sample.",title:"view 1"},children:[{type:"text",attributes:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center",description:"text element 1 in sample.",title:"text 1"},children:"Intentionally unmigrated sample"},{type:"text",attributes:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8,description:"text element 2 in sample.",title:"text 2"},children:"This project has version 1.0.0 so the Migration page should appear. Click “Migrate now” to normalize legacy flat style keys into attributes.style and move misplaced props out of style (combined 1.1.2)."}]}},Ze={name:"unmigrated-builder-1.1.1",version:"1.1.1",type:"other",data:{type:"view",attributes:{scrollable:!0,description:"view element 1 in sample.",title:"view 1",styles:{flexDirection:"column",alignItems:"center",justifyContent:"center",gap:12,padding:24,backgroundColor:"#F5F7FA"}},children:[{type:"text",attributes:{description:"text element 1 in sample.",title:"text 1",styles:{fontSize:22,fontWeight:"700",color:"#111827",textAlign:"center"}},children:"Intentionally unmigrated sample (for combined 1.1.2)"},{type:"text",attributes:{description:"text element 2 in sample.",title:"text 2",styles:{fontSize:14,color:"#6B7280",textAlign:"center",paddingHorizontal:8}},children:"This project has version 1.1.1 so the Migration page should appear. Click “Migrate now” to move component props and non-style flags out of attributes.style (combined 1.1.2)."},{type:"view",attributes:{description:"view element 2 in sample.",title:"view 2",styles:{flexDirection:"row",alignItems:"center",justifyContent:"center",gap:12,marginTop:16}},children:[{type:"BIcon",attributes:{description:"BIcon element 1 in sample.",title:"BIcon 1",styles:{iconType:"check",strokeWidth:3,color:"#22c55e",fontSize:"18"}},children:null},{type:"image",attributes:{src:"https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80",width:48,height:48,description:"image element 1 in sample.",title:"image 1",styles:{resizeMode:"contain",borderRadius:12}},children:null}]}]}},qe={name:"Simple Paywall",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall ana sağlayıcısı. (#1)",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",title:"Paywall Background",attributes:{src:"https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",description:"Paywall arka planı. (#1)",title:"Paywall Background"},children:null},{type:"View",title:"Paywall Inner",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:12,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#2)",title:"Benefits",styles:{flexDirection:"column",gap:0,marginTop:"4%"}},children:[{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#3)",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#1)",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#1)",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#4)",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#2)",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#2)",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Düzen ve yerleşim konteyneri. (#5)",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"İkon öğesi. (#3)",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#3)",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Abonelik seçenekleri alanı. (#1)",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Seçim satırı öğesi. (#1)",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"Text",attributes:{description:"Metin öğesi. (#4)",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription"},{type:"View",attributes:{title:"Price Column",styles:{flexDirection:"column",flex:1,alignItems:"flex-end"}},children:[{type:"PriceTag",attributes:{title:"Promo Price",styles:{textAlign:"right",fontWeight:"700"}},children:"@localizedCalculatedPrice"},{type:"PriceTag",attributes:{title:"Original Price",hideIfItsNotDiscount:!0,styles:{textAlign:"right",textDecorationLine:"line-through",fontSize:"12@fs",fontWeight:"400",color:"#999999"}},children:"@localizedPrice"}]},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"İkon öğesi. (#4)",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"View",attributes:{description:"Subscription butonu kapsayıcısı. (#1)",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",gap:8,paddingBottom:"50px"}},children:[{type:"Pricing",attributes:{description:"Pricing breakdown for promo/trial.",title:"Pricing Detail"},children:"@baseLocalizedPricingText"},{type:"Text",attributes:{description:"Trial detayı.",title:"Trial Full",styles:{textAlign:"center",fontSize:12,color:"rgba(255,255,255,0.6)"}},children:"@trialPeriod days free, then @price/@period"},{type:"PaywallSubscribeButton",children:"Subscribe",attributes:{description:"Abonelik onay butonu. (#1)",title:"Subscribe"}},{type:"Promo",attributes:{description:"Discount badge / promo text.",title:"Promo Badge"},children:"@baseLocalizedPromoText"}]}]}]}]}},Qe={name:"Paywall With Counter",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Paywall 2.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?auto=format&fit=crop&w=1200&q=80",resizeMode:"cover",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"Text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"Text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"Text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},et={name:"Paywall Back Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Back Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"Back Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},tt={name:"Paywall Notification Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for Notification Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"Notification Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},it={name:"Paywall App Open Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for App Open Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"App Open Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},rt={name:"Paywall App Delete Offer",version:"1.1.2",type:"paywall",data:{type:"Main",isMain:!0,attributes:{useSafeAreaView:!0,description:"Main container for App Delete Offer.",title:"Main"},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"PaywallProvider",attributes:{scrollable:!0,description:"Paywall provider container.",title:"Main Paywall",styles:{flexDirection:"column",alignItems:"stretch",justifyContent:"flex-start",position:"relative",backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"PaywallBackground",attributes:{src:"https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1200&q=80",description:"Paywall background.",title:"Paywall Background"},children:null},{type:"View",attributes:{styles:{paddingTop:56,paddingHorizontal:16,paddingBottom:16,gap:16,flex:1}},children:[{type:"PaywallCloseButton",attributes:{styles:{width:32,height:32,borderRadius:16,backgroundColor:"STATIC_COLORS.WHITE",color:"STATIC_COLORS.BLACK",zIndex:10,alignItems:"center",justifyContent:"center"}},children:null},{type:"text",attributes:{description:"Title text.",title:"Paywall Title",styles:{color:"STATIC_COLORS.WHITE",fontWeight:"700",fontSize:28,textAlign:"center"}},children:"App Delete Offer"},{type:"View",attributes:{description:"Benefits container.",title:"Benefits",styles:{flexDirection:"column",gap:4,marginTop:"12%"}},children:[{type:"View",attributes:{description:"Benefit container #1.",title:"Benefit #1",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 1",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 1",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit1 — Unlimited access"}]},{type:"View",attributes:{description:"Benefit container #2.",title:"Benefit #2",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 2",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 2",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit2 — 7-day free trial"}]},{type:"View",attributes:{description:"Benefit container #3.",title:"Benefit #3",styles:{flexDirection:"row",alignItems:"center",gap:8,paddingVertical:8,paddingHorizontal:12}},children:[{type:"BIcon",attributes:{iconType:"check",strokeWidth:3,description:"Icon item.",title:"BIcon 3",styles:{color:"THEME_COLORS.ICON",fontSize:"16",flex:0}},children:null},{type:"text",attributes:{description:"Text item.",title:"text 3",styles:{flex:1,color:"STATIC_COLORS.WHITE",fontWeight:"700"}},children:"@benefit3 — Cancel anytime"}]}]},{type:"PaywallOptions",attributes:{description:"Subscription options area.",title:"Option(s)",styles:{borderRadius:12,backgroundColor:"THEME_COLORS.BACKGROUND"}},children:[{type:"RadioButton",attributes:{description:"Radio item.",title:"Product Radio(s)",styles:{flex:1}},children:null},{type:"text",attributes:{description:"Product description.",title:"Product Desc(s)",styles:{flex:4}},children:"@productDescription — Unlock all premium features for a month."},{type:"text",attributes:{description:"Product price.",title:"Product Price(s)",styles:{flex:1,textAlign:"right"}},children:"@localizedPrice"},{type:"BIcon",attributes:{iconType:"chevron-right",size:16,description:"Chevron icon.",title:"Product BIcon(s)",styles:{marginRight:4,flex:0,width:32,color:"STATIC_COLORS.BLACK"}},children:null}]},{type:"CountDown",attributes:{count:3e4,description:"Countdown timer (30 seconds).",title:"Countdown",styles:{fontWeight:"700",fontSize:40,textAlign:"center"}},children:null},{type:"View",attributes:{description:"Subscribe button container.",title:"Subs Container",styles:{flex:1,flexDirection:"column",justifyContent:"flex-end",alignItems:"stretch",paddingBottom:"50px"}},children:[{type:"PaywallSubscribeButton",children:"Subscribe Now",attributes:{description:"Subscription confirm button.",title:"Subscribe"}}]}]}]}]}},ot={name:"vpn-onboard-1",version:"1.1.2",type:"onboard",appConfig:{localication:{ar:{"onboard.title.one-page":"أمّن اتصالك","onboard.title.two-page":"وصول إلى المحتوى حول العالم","onboard.title.three-page":"سرعة واعتمادية","onboard.title.four-page":"إشعارات وحماية دائمة","onboard.subtitle.one-page":"قم بتشفير حركة المرور وحماية خصوصيتك على شبكات Wi‑Fi العامة.","onboard.subtitle.two-page":"اتصل بخوادم عالية السرعة في بلدان متعددة بضغطة واحدة.","onboard.subtitle.three-page":"يتصل التطبيق تلقائياً بأفضل خادم لسرعة وثبات أعلى.","onboard.subtitle.four-page":"فعّل الإشعارات لمعرفة حالة الاتصال والحصول على نصائح الأمان.","onboard.next.one-page":"التالي","onboard.next.two-page":"التالي","onboard.next.three-page":"التالي","onboard.skip.one-page":"تخطي","onboard.skip.two-page":"تخطي","onboard.skip.three-page":"تخطي","onboard.allow.four-page":"السماح","view.onboarding.footer.description":"بالمتابعة، فإنك توافق على","view.onboarding.btnPrivacy":"سياسة الخصوصية","view.onboarding.btnTerms":"شروط الخدمة"}}},data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},at={name:"vpn-onboard-2",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"ckcw0WXRY8sNR2SF",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/0c65cbe8e0c2e1242146e15dfd50a486.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/e8bbdde825cd23bdc44a9b2b32af22dc.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/3f312b38faf844746250cd54f27f91da.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/f4db2a32a43239c3bbbe742cb0f18b61.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",animation:"line-animation",animation_color:"STATIC_COLORS.WHITE",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",animation:"simple-animation",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"light",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},nt={name:"vpn-onboard-3",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"ckcw0WXRY8sNR2SF",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page2"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/c68cca84580d6920c883c220e57346c0.jpg",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page2"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page2"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page2"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"light",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},lt={name:"vpn-onboard-4",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.one-page2"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/aadf6191a8f1091831647b3a01e1a1aa.jpg",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.one-page2"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.two-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.two-page2"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.three-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.three-page2"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40}},children:"onboard.title.four-page2"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center"}},children:"onboard.subtitle.four-page2"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},st={name:"vpn-onboard-5",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"cJVVSS7q9Qe1trnb",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/d237d6cde8bc9126cee7b47e30cd19f0.png",resizeMode:"contain",lottie:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/lottie/0be045f9fe44c790a4525a1a6bc4b837.json",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.one-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/820dc32b8252555058e7014a7fd1652f.png",resizeMode:"contain",video_url:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/video/440346112d02e65be3767c39b96cd7c0.mp4",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.two-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/fbb8677cd23cba79eef0ebef181e3b57.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.three-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/18cdd5cc478389df8ff362f95b7173ea.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.five-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.five-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}},{type:"OnboardItem",key:"app_onboard-page6",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/3c1225f83f5a5c934926fab3cb0e65d5.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#5)",title:"OnboardTitle 5",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.six-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#5)",title:"OnboardSubtitle 5",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.six-page"}],attributes:{description:"Onboarding sayfası. (#5)",title:"OnboardItem 5"}},{type:"OnboardItem",key:"app_onboard-page5",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ff07e162b2a63d38f07909e87848d46f.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#6)",title:"OnboardTitle 6",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.four-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#6)",title:"OnboardSubtitle 6",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#6)",title:"OnboardItem 6"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.LINE"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.LINE"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.LINE"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.five-page",events:[{type:"Navigate",navigate_to:null,targetIndex:4}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.LINE"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.five-page",events:[{type:"Permission",permission:"GDPR"},{type:"Navigate",navigate_to:null,targetIndex:4}],styles:{flex:1,color:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_TEXT",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:4,description:"Sayfa buton grubu. (#5)",title:"OnboardButtons 5",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.five-page",events:[{type:"Navigate",navigate_to:null,targetIndex:5}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.LINE"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.five-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:5}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:5,description:"Sayfa buton grubu. (#6)",title:"OnboardButtons 6",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"subscriptions"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"all",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},ct={name:"vpn-onboard-6",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"cJVVSS7q9Qe1trnb",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/9cb1d668b3724655f93a91e5eee771c5.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.one-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.one-page"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/f8d0c64bf89cc5f2f14126d0544ba174.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.two-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.two-page"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ad823809885c1a2a8e4632039f35a94e.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.three-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.three-page"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardImage",attributes:{src:"https://vpn111-stage.s3.eu-central-1.amazonaws.com/onboard/high/ede1705c51f3434ae9053ed5f29bf5dd.png",resizeMode:"contain",styles:{height:400}}},{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE"}},children:"onboard.title.four-page"},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE"}},children:"onboard.subtitle.four-page"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}}},{type:"OnboardDot",attributes:{dotType:"expanding_dot",dot_thickness:20,inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12}}},{type:"Separator",attributes:{title:"Separator",description:"Horizontal separator line",styles:{width:"100%",height:2,backgroundColor:"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.TEXT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.TEXT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"THEME_COLORS.TEXT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"subscriptions"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}]},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT"}}}]}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"}}]}},dt={name:"vpn-onboard-7",version:"1.1.2",type:"onboard",data:{type:"Main",isMain:!0,key:"c92tR8J5wbTb3fav",attributes:{useSafeAreaView:!0,description:"Ekranın ana kapsayıcısı. (#1)",title:"Main 1",styles:{paddingBottom:16}},children:[{type:"StatusBarColor",attributes:{title:"Status Bar Color",description:"Status bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null,key:"StatusBarColor-sxj19suwkrn"},{type:"NavigationBarColor",attributes:{title:"Navigation Bar Color",description:"Navigation bar background color.",styles:{backgroundColor:"THEME_COLORS.BACKGROUND"}},children:null,key:"NavigationBarColor-rhzn570dc5o"},{type:"OnboardProvider",children:[{type:"Onboard",children:[{type:"OnboardItem",key:"app_onboard-page1",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#1)",title:"OnboardTitle 1",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.one-page",key:"OnboardTitle-5t0p86nj13m"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#1)",title:"OnboardSubtitle 1",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.one-page",key:"OnboardSubtitle-0max8wno7l5b"}],attributes:{description:"Onboarding sayfası. (#1)",title:"OnboardItem 1"}},{type:"OnboardItem",key:"app_onboard-page2",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#2)",title:"OnboardTitle 2",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.two-page",key:"OnboardTitle-ne9iihu925k"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#2)",title:"OnboardSubtitle 2",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.two-page",key:"OnboardSubtitle-jq9469r7c2"}],attributes:{description:"Onboarding sayfası. (#2)",title:"OnboardItem 2"}},{type:"OnboardItem",key:"app_onboard-page3",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#3)",title:"OnboardTitle 3",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.three-page",key:"OnboardTitle-hczvlbg7gqj"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#3)",title:"OnboardSubtitle 3",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.three-page",key:"OnboardSubtitle-rufjwid9yug"}],attributes:{description:"Onboarding sayfası. (#3)",title:"OnboardItem 3"}},{type:"OnboardItem",key:"app_onboard-page4",children:[{type:"OnboardTitle",attributes:{description:"Sayfa başlığı. (#4)",title:"OnboardTitle 4",styles:{color:"THEME_COLORS.ONBOARD_TITLE",textAlign:"center",marginTop:40,fontSize:"28@fs"}},children:"onboard.title.four-page",key:"OnboardTitle-f2ekfc0wcbl"},{type:"OnboardImage",attributes:{src:"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png",resizeMode:"contain",styles:{height:350}}},{type:"OnboardSubtitle",attributes:{description:"Sayfa alt başlığı. (#4)",title:"OnboardSubtitle 4",styles:{color:"THEME_COLORS.ONBOARD_SUBTITLE",fontSize:16,textAlign:"center",paddingTop:"30@vs"}},children:"onboard.subtitle.four-page",key:"OnboardSubtitle-qkw2jn84xem"}],attributes:{description:"Onboarding sayfası. (#4)",title:"OnboardItem 4"}}],attributes:{description:"Onboarding ana yapısı. (#1)",title:"Onboard 1",styles:{flex:1}},key:"Onboard-dg1zmwdawmg"},{type:"OnboardDot",attributes:{dotType:"expanding_dot",inactive_dot_opacity:.3,inactive_dot_color:"STATIC_COLORS.ONBOARD_DOT_INACTIVE",active_dot_color:"STATIC_COLORS.ONBOARD_DOT_ACTIVE",styles:{paddingVertical:12,dot_thickness:"10@s"}}},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:0,description:"Sayfa buton grubu. (#1)",title:"OnboardButtons 1",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.one-page",events:[{type:"Navigate",navigate_to:null,targetIndex:1}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}],key:"OnboardButtons-92fw2wn62h"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:1,description:"Sayfa buton grubu. (#2)",title:"OnboardButtons 2",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.two-page",events:[{type:"Permission",permission:"att"},{type:"Navigate",navigate_to:null,targetIndex:2}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}],key:"OnboardButtons-mu7r8a5qx4"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:2,description:"Sayfa buton grubu. (#3)",title:"OnboardButtons 3",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.skip.three-page",events:[{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT",backgroundColor:"STATIC_COLORS.TRANSPARENT"}}},{type:"OnboardButton",attributes:{labelKey:"onboard.next.three-page",events:[{type:"Permission",permission:"rating"},{type:"Navigate",navigate_to:null,targetIndex:3}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}],key:"OnboardButtons-rulfu6b5w5"},{type:"OnboardButtons",attributes:{buttons_direction:"row",condition:"carousel-index",conditionVariable:3,description:"Sayfa buton grubu. (#4)",title:"OnboardButtons 4",styles:{height:40,marginVertical:12,flexShrink:0,paddingBottom:"5@s"}},children:[{type:"OnboardButton",attributes:{labelKey:"onboard.allow.four-page",events:[{type:"Permission",permission:"notification"},{type:"Navigate",navigate_to:"home"}],styles:{flex:1,color:"STATIC_COLORS.WHITE",backgroundColor:"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND"}}}],key:"OnboardButtons-yru5emc0zcs"},{type:"View",attributes:{title:"Onboard Footer Wrap",description:"Wrapper for OnboardFooter component",styles:{marginHorizontal:25,flexShrink:0}},children:[{type:"OnboardFooter",attributes:{textLocalizationKey:"view.onboarding.footer.description",linkedWordFirstLocalizationKey:"view.onboarding.btnPrivacy",linkedWordFirstColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordFirstPage:"privacy",linkedWordSecondLocalizationKey:"view.onboarding.btnTerms",linkedWordSecondColor:"STATIC_COLORS.ONBOARD_LINK_COLOR",linkedWordSecondPage:"terms",styles:{gap:8,color:"THEME_COLORS.ONBOARD_FOOTER_TEXT",fontSize:"12@fs"}}}],key:"View-c5vb7865vto"}],attributes:{theme:"dark",description:"Onboarding sağlayıcısı. (#1)",title:"OnboardProvider 1"},key:"OnboardProvider-pvc5b6o5gu"}]}};function pt(e){const t=e.appConfig||{},r={...e,baseSize:t.baseSize||e.baseSize||a,localization:t.localization||e.localization||i};return delete r.appConfig,r}exports.BuilderProvider=function({params:n,children:l}){const s=e.useMemo(()=>{const e=n.mockTheme??o,t=n.mockDefaultLanguage??"en";return{...n,mockProducts:n.mockProducts??[],mockBenefits:n.mockBenefits??{},mockTheme:e,mockDefaultLanguage:t,theme:e,defaultLanguage:t,baseSize:n.baseSize??a,projectColors:n.projectColors?B(R,n.projectColors):R,localization:n.localization?r(i,n.localization):i,platform:n.platform??"web"}},[n]);return t.jsx(I.Provider,{value:s,children:l})},exports.LocalizationParamsProvider=function({params:e,children:i}){return t.jsx(M,{localizationParams:e,nestedLocalizationParams:{},children:i})},exports.PERIOD_LOCALIZATION_KEYS=d,exports.ParamsProvider=M,exports.TRIBE_ASSETS_BASE_URL=Ne,exports.analyseAndProccess=function(e){if(ue(e))return null;const t=Me(e),{valid:i,message:r}=Ae(t);if(!i)throw new Error(r??"Node is not valid");return Le(t,new Set)},exports.analyseNode=Ae,exports.buildPaywallLocalizationParams=T,exports.calculateDiscount=l,exports.calculatePricePerMonth=s,exports.calculatePricePerYear=c,exports.convertIOSPeriodUnit=C,exports.defaultLocalization=i,exports.defaultProjectColors=R,exports.defaultTheme=o,exports.extractAndroidParams=x,exports.extractIOSParams=z,exports.extractPrice=n,exports.getArrayItemType=be,exports.getAttributeMeta=function(e,t){const i=de(e),r=i?.meta?.styles,o=i?.meta?.attributes,a=o,n=a&&"object"==typeof a.styles&&a.styles?a.styles:void 0,l=a?Object.fromEntries(Object.entries(a).filter(([e])=>"styles"!==e)):o;return function(e,t){if(!e)return;const i=function(e){return"native"===e?"native":"web"}(t),r=new Set(["scrollable"]),o=new Set([]),a=new Set(["gap","showEllipsis","adjustsFontSizeToFit"]),n=e=>r.has(e)||("web"===i?o.has(e):a.has(e));let l=!1;const s={};for(const[t,i]of Object.entries(e))i&&"object"==typeof i&&n(t)?(s[t]={...i,category:"other",specialCategory:null},l=!0):s[t]=i;return l?s:e}(r||l||n?{...l,...r,...n}:void 0,t)},exports.getAttributeSchema=pe,exports.getDefaultDevice=E,exports.getDefaultProject=function(e={}){const t=ke.supportedProjectVersion.trim()?ke.supportedProjectVersion.trim():"0.0.0",i="string"==typeof e.version&&e.version.trim()?e.version.trim():t;return{name:"string"==typeof e.name&&e.name.trim()?e.name.trim():"project",version:i,data:e.data??null,projectColors:e.projectColors,type:e.type}},exports.getDefaultsForType=ge,exports.getDevices=H,exports.getImage=Ve,exports.getMeta=function(){return{...He}},exports.getMockProducts=w,exports.getMockProductsByPreset=function(e){return w()[e]??[]},exports.getPatternByType=de,exports.getPeriodLocalizationKey=m,exports.getSamples=function(){return[je,Ke,Ge,Ye,$e,Xe,Je,Ze,qe,Qe,et,tt,it,rt,ot,at,nt,lt,st,ct,dt].map(pt)},exports.getTypeSchema=ye,exports.isEmptyObject=Ce,exports.isNodeArray=he,exports.isNodeNullOrUndefined=ue,exports.isNodeString=me,exports.isPrimitiveType=fe,exports.mergeLocalization=r,exports.mergeProjectColors=B,exports.novaToJson=function(e){const t=e.data.data?.layout;return"onboard-layout"===t?function(e){const t=e?.data?.data?.attributes||e?.data?.attributes||{},i=t?.general_components||[],r=t?.data||[],o=function(e){const t=e.find(e=>"dots-layout"===e?.layout);if(!t)return null;const i=t?.attributes?.dot||[],r=i?.[0],o=r?.layout,a=r?.attributes||{},n=e=>{if("number"==typeof e)return e;if("string"==typeof e&&e.trim().length>0){const t=Number(e);return Number.isFinite(t)?t:void 0}},l=n(a?.inactive_dot_opacity),s=n(a?.dot_thickness),c="string"==typeof a?.dot_style?a.dot_style:void 0,d="string"==typeof a?.container_style?a.container_style:void 0,p="string"==typeof a?.active_dot_color?a.active_dot_color:void 0,g="string"==typeof a?.inactive_dot_color?a.inactive_dot_color:void 0,y={};o&&(y.dotType=o);void 0!==l&&(y.inactive_dot_opacity=l);void 0!==s&&(y.dot_thickness=s);c&&(y.dot_style=c);d&&(y.container_style=d);p&&(y.active_dot_color=p);g&&(y.inactive_dot_color=g);return{type:"OnboardDot",attributes:Object.keys(y).length?y:void 0,children:void 0}}(i),a=function(e){const t=e.find(e=>"footer-layout"===e?.layout);if(!t)return null;const i=t?.attributes?.texts||[],r=[];let o,a;for(const e of i)if("Text"===e?.layout){const t=e?.attributes?.text_localization_key||"",i=e?.attributes?.text_color||void 0;o||(o=t),a||"string"!=typeof i||(a=i);const n=e?.attributes?.linkedwords||[];for(const e of n)if("LinkedWords"===e?.layout){const t=e?.attributes?.linked_word_localization_key,i=e?.attributes?.linked_word_color,o=e?.attributes?.page;r.push({text_key:t,color:i,page:o})}}const n={gap:8};o&&(n.textLocalizationKey=o);a&&(n.color=a);const l=r[0],s=r[1];l&&(l.text_key&&(n.linkedWordFirstLocalizationKey=l.text_key),l.color&&(n.linkedWordFirstColor=l.color),l.page&&(n.linkedWordFirstPage=l.page));s&&(s.text_key&&(n.linkedWordSecondLocalizationKey=s.text_key),s.color&&(n.linkedWordSecondColor=s.color),s.page&&(n.linkedWordSecondPage=s.page));return{type:"OnboardFooter",attributes:n,children:void 0}}(i),{carouselNode:n,providerLevelButtons:l}=function(e){const t=e.filter(e=>"simple-onboard-layout"===e?.layout),i=new Map;t.forEach((e,t)=>{const r=e?.attributes?.key;"string"==typeof r&&i.set(r,t)});const r=[],o=t.map(e=>function(e,t,i){const r=e?.attributes?.components||[],o=[],a=e?.attributes?.key,n="string"==typeof a&&t.has(a)?t.get(a):void 0;for(const e of r)if("title-layout"===e?.layout){const t=e?.attributes?.title_localization_key||"",i=e?.attributes?.title_color||void 0,{fontSize:r,textAlign:a,marginTop:n,fontWeight:l}=Ee(e);o.push({type:"OnboardTitle",attributes:i||r||a||n||l?{...i?{color:i}:{},..."number"==typeof r?{fontSize:r}:{},...a?{textAlign:a}:{},..."number"==typeof n?{marginTop:n}:{},...l?{fontWeight:l}:{}}:void 0,children:t})}else if("subtitle-layout"===e?.layout){const t=e?.attributes?.subtitle_localization_key||"",i=e?.attributes?.subtitle_color||void 0,{fontSize:r,textAlign:a,marginTop:n,fontWeight:l}=Ee(e);o.push({type:"OnboardSubtitle",attributes:i||r||a||n||l?{...i?{color:i}:{},..."number"==typeof r?{fontSize:r}:{},...a?{textAlign:a}:{},..."number"==typeof n?{marginTop:n}:{},...l?{fontWeight:l}:{}}:void 0,children:t})}else if("image-layout"===e?.layout){const t=e?.attributes?.image||e?.attributes?.src||"",i=e?.attributes?.height??e?.attributes?.ios_height??e?.attributes?.android_height,r="string"==typeof i?Number.parseInt(i,10):"number"==typeof i?i:void 0,a=Boolean(e?.attributes?.is_bg_image),n=We(e),l=e?.attributes?.lottie,s=e?.attributes?.video_url;t&&o.push({type:"OnboardImage",attributes:{src:t,...r?{height:r}:{},resizeMode:a?"cover":"contain",..."number"==typeof n.borderRadius?{borderRadius:n.borderRadius}:{},..."string"==typeof l?{lottie:l}:{},..."string"==typeof s?{video_url:s}:{}},children:void 0})}else if("Buttons"===e?.layout){const r=e?.attributes?.buttons_direction,o=e?.attributes?.buttons||[],a=[];for(const e of o){const i=e?.attributes||{},r=i?.button_text_localization_key||"",o=i?.button_text_color,n=i?.button_background_color,l=i?.animation,s=i?.animation_color,c=i?.flex?Number(i.flex):void 0,d=i?.actions||[],p=[];for(const e of d){const i=e?.attributes?.events||[];for(const e of i)if("Permission"===e?.layout){const t=e?.attributes?.permission;p.push({type:"Permission",permission:t})}else if("Navigate"===e?.layout){const i=e?.attributes?.next_page_key,r="string"==typeof i&&t.has(i),o=r?null:"string"==typeof i?i:null;p.push({type:"Navigate",navigate_to:o,...r?{targetIndex:t.get(i)}:{}})}}a.push({type:"OnboardButton",attributes:{labelKey:r,..."string"==typeof o?{button_text_color:o}:{},..."string"==typeof l?{animation:l}:{},..."string"==typeof s?{animation_color:s}:{},..."string"==typeof n?{button_background_color:n}:{},..."number"==typeof c?{flex:c}:{},...p.length?{events:p}:{}},children:void 0})}a.length>0&&i.push({type:"OnboardButtons",attributes:{...r?{buttons_direction:r}:{},..."number"==typeof n?{condition:"carousel-index",conditionVariable:n}:{}},children:a})}const l=e?.attributes?.key,s="string"==typeof l&&l||("string"==typeof e?.key?e.key:void 0);return{type:"OnboardItem",...s?{key:s}:{},children:o}}(e,i,r)),a={type:"Onboard",children:o};return{carouselNode:a,providerLevelButtons:r}}(r),s={type:"OnboardProvider",key:e?.data?.data?.key,children:[n,...o?[o]:[],...l.length?l:[],...a?[a]:[]],attributes:{theme:e?.data?.theme}},c={type:"Main",isMain:!0,key:e?.data?.data?.key,children:[s],attributes:{useSafeAreaView:!0}};return delete s.key,c}(e):null},exports.parseBillingPeriod=h,exports.parseColor=G,exports.parseTribeAssetName=Ue,exports.querySelector=function(e,t){if(null==e)return[];if(!t)return[];const i=t.startsWith("#"),r=i?t.slice(1):void 0,o=[],a=e=>{var n,l;if(null!=e)if(Array.isArray(e))for(const t of e)a(t);else"string"!=typeof e&&null!=(l=e)&&!Array.isArray(l)&&"string"!=typeof l&&"object"==typeof l&&"type"in l&&"children"in l&&(n=e,(i?n.key===r:n.type===t)&&o.push(e),a(e.children))};return a(e),o},exports.resolveImageSrc=function(e){if(!e)return;if(function(e){return/^(https?:)?\/\//.test(e)||/^(data|blob):/.test(e)}(e))return e;const t=Ue(e);return t?Ve(t):e},exports.useBuilderParams=P,exports.useCalculateLocalizedPrice=function(e){return e?n(e):""},exports.useChangeDelayByPaywall=function(t,i){const r=e.useMemo(()=>t?.attributes?.delay?parseInt(String(t?.attributes?.delay),10):1e3,[t?.attributes?.delay]);e.useEffect(()=>{if(!r||r<=0)return void i(!0);const e=setTimeout(()=>{i(!0)},r);return()=>clearTimeout(e)},[r,i])},exports.useDiscountRate=function(e,t){if(!e||!t)return 0;const i=l(e,t);return i?parseInt(i,10):0},exports.useExtractImageStyle=function(t){const{mockTheme:i,projectColors:r,baseSize:o}=P();return e.useMemo(()=>{const{resizeMode:e,...a}=function(e,t={}){const i=e.attributes;if(!i)return{};const r=Y(i),o=r?.resizeMode??i.resizeMode,a={};return o&&(a.resizeMode=o),{...Z(e,t),...a}}(t,{theme:i,projectColors:r,baseSize:o}),n=t.attributes,l=J($(n)),s=Y(n);return{style:a,other:{...l,resizeMode:s?.resizeMode??e}}},[t,i,r,o])},exports.useExtractTextStyle=function(t){const{mockTheme:i,projectColors:r,fonts:o,baseSize:a}=P();return e.useMemo(()=>{const e=ie(t,{theme:i,projectColors:r,fonts:o,baseSize:a}),n=t.attributes,l=J($(n)),s=Y(n);return{style:e,other:{...l,adjustsFontSizeToFit:l.adjustsFontSizeToFit??s?.adjustsFontSizeToFit,showEllipsis:l.showEllipsis??s?.showEllipsis}}},[t,i,r,o,a])},exports.useExtractViewStyle=function(t){const{mockTheme:i,projectColors:r,baseSize:o}=P();return e.useMemo(()=>{const e=Z(t,{theme:i,projectColors:r,baseSize:o}),a=t.attributes,n=J($(a)),l=Y(a);return{style:e,other:{...n,scrollable:n.scrollable??l?.scrollable}}},[t,i,r,o])},exports.useLocalizationParams=A,exports.useLocalize=function(t){const{localization:r,mockDefaultLanguage:o}=P(),a=t?.localization??r??i,n=t?.defaultLanguage??o??"en",l=A();return e.useCallback(e=>function(e,t){return e&&t&&Object.entries(t).sort(([e],[t])=>t.length-e.length).reduce((e,[t,i])=>{if(null==i)return e;const r=`@${t}`;return e.split(r).join(i)},e)||e}(a?.[n]?.[e]??e,l),[n,a,l])},exports.useNode=function(e){const t=e?.type,i=ge(t);if(!i)return e;const r=e.attributes??{},o=i,a={...{...o?.style??{},...o?.styles??{}},...{...r?.style??{},...r?.styles??{}}},n={...o,...r,styles:a};return delete n.style,"object"==typeof n.styles&&null!=n.styles&&0===Object.keys(n.styles).length&&delete n.styles,{...e,attributes:n}},exports.useParams=L,exports.usePaywallLocalizationParams=function(t,i,r){return e.useMemo(()=>{if(!t||!r?.platform)return{};try{const e=r.builderProducts?.find(e=>e.store_package_id===i),o=e?.offer_id;return T(t,r.platform,o,r.localize)}catch(e){return console.error("[usePaywallLocalizationParams] Error:",e),{}}},[t,i,r])};
|
|
29
2
|
//# sourceMappingURL=index.cjs.js.map
|