@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.esm.js
CHANGED
|
@@ -1,29 +1,2 @@
|
|
|
1
|
-
import e,{useMemo as t,useEffect as i,createContext as r,useContext as o,useCallback as a}from"react";import{jsx as n}from"react/jsx-runtime";const l={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 s(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 c="light",d={localication:l,baseSize:{width:375,height:812}};function p(e){return e?e.replace(/[^0-9.]/g,""):""}function g(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 y(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 f(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 u={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"},b="base.builder.paywall.pricing.default.text",m="base.builder.paywall.pricing.freeTrial.text",h="base.builder.paywall.pricing.regular.text",C="base.builder.paywall.promo.default.text",S="base.builder.paywall.promo.freeTrial.text",x="base.builder.paywall.promo.regular.text";function O(e,t){switch(e){case"month":return t?u.monthlyPromo:u.monthly;case"year":return t?u.annualPromo:u.annual;case"week":return u.weekly;case"day":return u.daily;default:return u.monthly}}function z(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 T(e){if(!e)return"month";return{DAY:"day",WEEK:"week",MONTH:"month",YEAR:"year"}[e.toUpperCase()]||"month"}const v={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 w(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:v.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 v.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 v.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),n=o.find(e=>2===e.recurrenceMode&&"0"!==e.priceAmountMicros),l=o.find(e=>1===e.recurrenceMode)??o[o.length-1];if(!l)return v.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 s=z(l.billingPeriod),c=`${s.value} ${s.unit}${s.value>1?"s":""}`,d=p(l.formattedPrice),u=l.priceCurrencyCode||"",b=l.formattedPrice||"";let m="",h="",C="",S="";if(n){m=p(n.formattedPrice);const e=n.billingCycleCount||0,t=z(n.billingPeriod),i=e*t.value;h=`${i} ${t.unit}${i>1?"s":""}`,C=String(e),S=t.unit}let x="false",O="",T="";if(a){x="true";const e=z(a.billingPeriod);O=String(e.value),T=e.unit}const w=g(d,m),_=parseFloat(d),R=y(_,s.unit),B=f(_,s.unit);return{price:d,promoPrice:m,currency:u,localizedPrice:b,period:s.unit,periodValue:String(s.value),periodType:c,promoPeriod:h,promoCycles:C,promoPeriodUnit:S,hasTrial:x,trialPeriod:O,trialPeriodUnit:T,discountPercentage:w,pricePerMonth:R,pricePerYear:B}}catch(t){return v.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 _(e,t){return{promoPeriod:`${e} ${t}${e>1?"s":""}`,promoCycles:String(e),promoPeriodUnit:t}}function R(e,t){try{const i=String(e.price||e.localizedPrice||"").replace(/[^0-9.]/g,""),r=e.currency||e.currencyCode||"",o=e.localizedPrice||"",a=T(e.subscriptionPeriodUnitIOS||"MONTH"),n=String(e.subscriptionPeriodNumberIOS||1),l=`${n} ${a}${parseInt(n,10)>1?"s":""}`,s=e.introductoryPrice||e.introductoryPriceIOS,c=!!s,d=c&&function(e){return"free_trial"===e.type||0===parseFloat(e.price||e.priceIOS||"0")}(s);let p="false",u="",b="",m="",h="",C="",S="";if(d)p="true",u=String(s.subscriptionPeriodNumberIOS||s.numberOfPeriods||7),b=T(s.subscriptionPeriodUnitIOS||s.subscriptionPeriod||"DAY");else if(c){m=String(s.price||s.priceIOS||"").replace(/[^0-9.]/g,"");const e=s.numberOfPeriods||1,t=_(e,T(s.subscriptionPeriodUnitIOS||s.subscriptionPeriod||"MONTH"));h=t.promoPeriod,C=t.promoCycles,S=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=_(e,T(i.subscriptionPeriod||"MONTH"));h=t.promoPeriod,C=t.promoCycles,S=t.promoPeriodUnit}else v.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 x=g(i,m),O=parseFloat(i),z=y(O,a);return{price:i,promoPrice:m,currency:r,localizedPrice:o,period:a,periodValue:n,periodType:l,promoPeriod:h,promoCycles:C,promoPeriodUnit:S,hasTrial:p,trialPeriod:u,trialPeriodUnit:b,discountPercentage:x,pricePerMonth:z,pricePerYear:f(O,a)}}catch(t){return v.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 B(e,t,i,r){const o=r??(e=>e),a="android"===t?w(e,i):R(e,i),n=a.period||"month",l=!!a.promoPrice,s="true"===a.hasTrial,c=O(n,!1),d=l?O(n,!0):"",p=l?`${a.promoPrice} ${a.currency}`.trim():"",g=o(c),y=l?o(d):"",f=p||a.localizedPrice,u=y||g;let z,T;return l?(z=b,T=C):s?(z=m,T=S):(z=h,T=x),{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:g,localizedPromoPeriod:y,localizedPromoPrice:p,localizedCalculatedPrice:f,localizedCalculatedPeriod:u,baseLocalizedPricingText:o(z),baseLocalizedPromoText:o(T),productTitle:String(e.title??""),productDescription:String(e.description??""),productCurreny:a.currency,productId:String(e.productId??""),productSelected:"true"}}function I(e,i,r){return t(()=>{if(!e||!r?.platform)return{};try{const t=r.builderProducts?.find(e=>e.store_package_id===i),o=t?.offer_id;return B(e,r.platform,o,r.localize)}catch(e){return console.error("[usePaywallLocalizationParams] Error:",e),{}}},[e,i,r])}var P={"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 L(){return JSON.parse(JSON.stringify(P))}function M(e){return L()[e]??[]}function A(e){return e?p(e):""}function k(e,t){if(!e||!t)return 0;const i=g(e,t);return i?parseInt(i,10):0}function E(e,r){const o=t(()=>e?.attributes?.delay?parseInt(String(e?.attributes?.delay),10):1e3,[e?.attributes?.delay]);i(()=>{if(!o||o<=0)return void r(!0);const e=setTimeout(()=>{r(!0)},o);return()=>clearTimeout(e)},[o,r])}const H={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 W(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 D=r(void 0);function N({params:e,children:i}){const r=t(()=>({mockProducts:Array.isArray(e?.mockProducts)?e.mockProducts:[],mockBenefits:e?.mockBenefits&&"object"==typeof e.mockBenefits?e.mockBenefits:{},onPaywallSubscribe:"function"==typeof e?.onPaywallSubscribe?e.onPaywallSubscribe:void 0,theme:"light"===e?.theme||"dark"===e?.theme?e.theme:c,defaultLanguage:"string"==typeof e?.defaultLanguage?e.defaultLanguage:"en",appConfig:e?.appConfig&&"object"==typeof e.appConfig?{...e.appConfig,localication:s(l,e.appConfig.localication??{})}:void 0,projectColors:e?.projectColors&&"object"==typeof e.projectColors?W(H,e.projectColors):H,fonts:Array.isArray(e?.fonts)?e.fonts:void 0,appFont:e?.appFont,platform:"native"===e?.platform?"native":"web",previewMode:!!e?.previewMode,selectedKey:"string"==typeof e?.selectedKey?e.selectedKey:void 0}),[e?.mockBenefits,e?.mockProducts,e?.platform,e?.onPaywallSubscribe,e?.theme,e?.defaultLanguage,e?.appConfig,e?.projectColors,e?.fonts,e?.appFont,e?.previewMode,e?.selectedKey]);return n(D.Provider,{value:r,children:i})}function F(){return o(D)??{mockProducts:[],mockBenefits:{},platform:"web",theme:c,defaultLanguage:"en",projectColors:H}}const V=r({localizationParams:{},nestedLocalizationParams:{},otherParams:{}});function U({localizationParams:e,nestedLocalizationParams:r,otherParams:o,children:a}){const l=t(()=>({localizationParams:e??{},nestedLocalizationParams:r??{},otherParams:o??{}}),[e,r,o]);return i(()=>{},[l]),n(V.Provider,{value:l,children:a})}function j({params:e,children:t}){return n(U,{localizationParams:e,nestedLocalizationParams:{},children:t})}function K(){return o(V)??{localizationParams:{},nestedLocalizationParams:{},otherParams:{}}}function G(){return K().localizationParams??{}}function Y(e){const{appConfig:t,defaultLanguage:i}=F(),r=e?.appConfig??t??d,o=i??"en",{localication:n}=r,l=G();return a(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}(n?.[o]?.[e]??e,l),[o,n,l])}function $(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var X,J={exports:{}},Z={},q={exports:{}},Q={};var ee,te,ie,re={};
|
|
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 oe(){return te||(te=1,"production"===process.env.NODE_ENV?q.exports=function(){if(X)return Q;X=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 Q.useSyncExternalStore=void 0!==t.useSyncExternalStore?t.useSyncExternalStore:s,Q}():q.exports=(ee||(ee=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};re.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())}()),re)),q.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 ae,ne,le={};
|
|
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 se=(ne||(ne=1,"production"===process.env.NODE_ENV?J.exports=function(){if(ie)return Z;ie=1;var t=e,i=oe(),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 Z.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},Z}():J.exports=(ae||(ae=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=oe(),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;le.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())}()),le)),J.exports),ce=$(se);const de=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:pe}=ce,ge=e=>e;const ye=e=>Symbol.iterator in e,fe=e=>"entries"in e,ue=(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 be=[{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 me(){const e=be.slice();return e.sort((e,t)=>(e.importance??999)-(t.importance??999)),e}function he(){return me()[0]}function Ce(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 Se=e=>t=>{try{const i=e(t);return i instanceof Promise?i:{then:e=>Se(e)(i),catch(e){return this}}}catch(e){return{then(e){return this},catch:t=>Se(t)(e)}}},xe=((t,i)=>{const r=(e=>e?de(e):de)(t),o=(t,o=i)=>function(t,i=ge,r){const o=pe(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:Ce(()=>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 Se(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:he(),setDevice:t=>e({device:t}),appConfig:d,setAppConfig:t=>e({appConfig:t}),projectColors:void 0,setProjectColors:t=>e({projectColors:t}),theme:c,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:Ce(()=>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)&&(ye(e)&&ye(t)?fe(e)&&fe(t)?ue(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):ue({entries:()=>Object.entries(e)},{entries:()=>Object.entries(t)})))}),Oe=he(),ze=d.baseSize;function Te(e,t){return"number"==typeof e&&Number.isFinite(e)?e:t}function ve(){const e=xe.getState(),t=e.device??Oe,i=e.appConfig?.baseSize??ze,r=Te(t?.width,Oe.width),o=Te(t?.height,Oe.height),a=Te(i?.width,ze.width),n=Te(i?.height,ze.height),[l,s]=r<o?[r,o]:[o,r];return{baseSize:{width:a,height:n},shortDimension:l,longDimension:s}}function we(e){const{baseSize:t,longDimension:i}=ve();return i/t.height*e}const _e=function(e){const{baseSize:t,shortDimension:i}=ve();return i/t.width*e},Re=we,Be=we;function Ie(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)?_e(e):t}if(i.endsWith("@vs")){const e=parseFloat(i.slice(0,-3));return Number.isFinite(e)?Re(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 Pe="STATIC_COLORS.",Le="THEME_COLORS.";function Me(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(Pe)){const e=i.slice(14),t=r.STATIC_COLORS?.[e];return"string"==typeof t&&t.trim()?t.trim():i}if(i.startsWith(Le)){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 Ae(e){const t=ke(e),i=t.styles??t.style;return"object"!=typeof(r=i)||null===r||Array.isArray(r)?void 0:i;var r}function ke(e){return e??{}}const Ee=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 He(e){return Object.fromEntries(Object.entries(e).filter(([e])=>!Ee.has(e)))}function We(e,t={}){const i=e.attributes,r=ke(i),o=Ae(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=Ie(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=Me(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 De=["normal","bold","100","200","300","400","500","600","700","800","900"];function Ne(e){if("number"==typeof e&&Number.isFinite(e)){const t=String(e);return De.includes(t)?t:void 0}if("string"==typeof e){const t=e.trim();return De.includes(t)?t:void 0}}function Fe(e){return"string"==typeof e?e.trim():""}function Ve(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 Ue(e,t={}){const i=e.attributes,r=ke(i),o=Ae(i),a=e=>{const t=r[e];return null!=t?t:o?.[e]},n=t.theme??c,l=Me("THEME_COLORS.TEXT",{projectColors:t.projectColors,theme:n})??"THEME_COLORS.TEXT",s={};if(!i)return s.fontSize=Be(14),s.color=l,s;const d=Ie(a("fontSize"));s.fontSize="number"==typeof d?d:Be(14);const p=a("fontFamily"),g=a("fontWeight"),y=function(e){const t=Ne(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=Fe(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=Fe(t);if(r&&i.some(([e])=>e===r))return r;if(i.some(([e])=>"400"===e))return"400";const o=Ve(r),a=i.map(([e])=>({k:e,n:Ve(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;s.fontFamily=f,i&&(s.fontWeight=i)}const u=Ne(g);!f&&u&&(s.fontWeight=u);const b=Me(a("color"),{projectColors:t.projectColors,theme:n});s.color=b??l;const m=a("textAlign");m&&(s.textAlign=m);return{...We(e,{projectColors:t.projectColors,theme:n}),...s}}function je(e){const{theme:i,projectColors:r,fonts:o}=F();return t(()=>{const t=Ue(e,{theme:i,projectColors:r,fonts:o}),a=e.attributes,n=He(ke(a)),l=Ae(a);return{style:t,other:{...n,adjustsFontSizeToFit:n.adjustsFontSizeToFit??l?.adjustsFontSizeToFit,showEllipsis:n.showEllipsis??l?.showEllipsis}}},[e,i,r,o])}function Ke(e){const{theme:i,projectColors:r}=F();return t(()=>{const t=We(e,{theme:i,projectColors:r}),o=e.attributes,a=He(ke(o)),n=Ae(o);return{style:t,other:{...a,scrollable:a.scrollable??n?.scrollable}}},[e,i,r])}function Ge(e){const{theme:i,projectColors:r}=F();return t(()=>{const{resizeMode:t,...o}=function(e,t={}){const i=e.attributes;if(!i)return{};const r=Ae(i),o=r?.resizeMode,a={};return o&&(a.resizeMode=o),{...We(e,t),...a}}(e,{theme:i,projectColors:r}),a=e.attributes,n=He(ke(a)),l=Ae(a);return{style:o,other:{...n,resizeMode:l?.resizeMode??t}}},[e,i,r])}function Ye(e){return e+"-"+Math.random().toString(36).substring(2,15)}const $e=[{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 Xe=new Map($e.map(e=>[e.pattern.type,e]));function Je(e){return e?e[0].toLowerCase()+e.slice(1):e}function Ze(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 qe=new Map;for(const e of $e){const t=e?.pattern?.type;if("string"!=typeof t||!t)continue;const i=[t,t.toLowerCase(),Je(t),Ze(t)];for(const e of i)e&&(qe.has(e)||qe.set(e,t))}function Qe(e){if("string"==typeof e&&e)return Xe.has(e)?e:qe.get(e)??qe.get(e.toLowerCase())}function et(e){if("string"!=typeof e)return;const t=Qe(e)??e;return Xe.get(t)}function tt(e){const t=et(e);return t?.pattern.attributes}function it(e,t){const i=et(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)}function rt(e){const t=et(e);return t?.defaults}function ot(e,t){if(!e||!t)return;const i=et(e);return i?.types?.[t]}function at(e){return"string"===e||"title"===e||"description"===e||"number"===e||"boolean"===e||"color"===e||"size"===e||"fontFamily"===e||"fontWeight"===e||"iconType"===e}function nt(e){return"string"!=typeof e?null:e.endsWith("[]")?e.slice(0,-2):null}function lt(e){return null==e}function st(e){return"string"==typeof e}function ct(e){return e instanceof Array}function dt(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)&&0===Object.keys(e).length}function pt(e,t){return{valid:!1,message:e,path:t}}function gt(e,t){return e?t?t.startsWith("[")?`${e}${t}`:`${e}.${t}`:e:t}function yt(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function ft(e){if(!yt(e))return!1;return"string"==typeof e.type}function ut(e){return Qe(e)??e}function bt(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(ut(r));return{baseKinds:t,allowedComponentTypes:i}}(r),n=function(e,t,i){return t.has("never")?lt(e)||dt(e)?{valid:!0}:pt('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 lt(e)||dt(e)?{valid:!0}:i.size>0?ct(e)||ft(e)?{valid:!0}:pt(`Children must be a node or array of nodes (allowed: ${Array.from(i).join(", ")})`,r):st(e)?t.has("string")?{valid:!0}:pt("Children must not be a string",r):ct(e)?t.has("node")?{valid:!0}:pt("Children must not be an array",r):ft(e)?t.has("node")?{valid:!0}:pt("Children must not be a node",r):pt("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(lt(e)||dt(e))return{valid:!0};const r=Array.from(t),o=(e,i)=>{if(!ft(e))return pt("Child must be an object node",i);const o=ut(e.type);return t.has(o)?{valid:!0}:pt(`Child type "${e.type}" is not allowed here (allowed: ${r.join(", ")})`,gt(i,"type"))};if(ct(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 mt(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}:pt(`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 pt(`Expected an array of: ${t.join(", ")}`,`${i}[${r}]`)}return{valid:!0}}return pt("Expected a string or string[] enum value",i)}(t,i,r);const o=nt(i);if(o){if(!Array.isArray(t))return pt(`Expected array for type "${i}"`,r);for(let i=0;i<t.length;i++){const a=mt(e,t[i],o,`${r}[${i}]`);if(!a.valid)return a}return{valid:!0}}return at(i)?function(e,t,i){switch(t){case"string":return"string"==typeof e?{valid:!0}:pt("Expected string",i);case"number":return"number"==typeof e?{valid:!0}:pt("Expected number",i);case"boolean":return"boolean"==typeof e?{valid:!0}:pt("Expected boolean",i);case"color":return"string"==typeof e?{valid:!0}:pt("Expected color (string)",i);case"title":return"string"!=typeof e?pt("Expected title (string)",i):e.length<=20?{valid:!0}:pt("Expected title to be <= 20 characters",i);case"description":return"string"==typeof e?{valid:!0}:pt("Expected description (string)",i);case"size":return"number"==typeof e||"string"==typeof e?{valid:!0}:pt("Expected size (string or number)",i);case"fontWeight":return Ne(e)?{valid:!0}:pt(`Expected fontWeight (${De.join(", ")})`,i);case"iconType":return"string"==typeof e?{valid:!0}:pt("Expected iconType (string)",i);default:return pt(`Unknown primitive type "${t}"`,i)}}(t,i,r):function(e,t,i,r){const o=ot(e,i);if(!o)return pt(`Unknown custom type "${i}"`,r);if(!yt(t))return pt(`Expected object for type "${i}"`,r);const a=t;for(const[t,i]of Object.entries(o)){if(!(t in a))continue;const o=mt(e,a[t],i,gt(r,t));if(!o.valid)return o}return{valid:!0}}(e,t,i,r)}function ht(e,t,i){const r=e.attributes;if(null==r)return{valid:!0};if(!yt(r))return pt("attributes must be an object",i);const o=tt(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 pt(`Legacy attribute "style" detected. Use "styles" instead (schemaVersion=2). Found at ${gt(i,"style")}`,gt(i,"style"));if(null!=s){if(!yt(s))return pt("styles must be an object",gt(i,"styles"));const e=s;for(const[r,n]of Object.entries(e)){const e=a?.[r]??o?.[r];if(!e)continue;const l=mt(t.pattern.type,n,e,gt(gt(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=mt(t.pattern.type,n,e,gt(i,e));if(!r.valid)return r;continue}const r=a?.[e];if(!r)return pt(`Unknown attribute "${e}"`,gt(i,e));const o=mt(t.pattern.type,n,r,gt(i,e));if(!o.valid)return o;continue}const l=mt(t.pattern.type,n,r,gt(i,e));if(!l.valid)return l}return{valid:!0}}function Ct(e,t){if(lt(e)||st(e)||dt(e))return{valid:!0};if(ct(e)){const i=e;for(let e=0;e<i.length;e++){const r=Ct(i[e],`${t}[${e}]`);if(!r.valid)return r}return{valid:!0}}if(!ft(e))return pt("Invalid node shape",t);const i=function(e,t){const i=et(ut(e.type));if(!i)return pt(`Unknown component type "${e.type}"`,gt(t,"type"));const r=ht({...e},i,gt(t,"attributes"));if(!r.valid)return r;const o=bt({...e},i,gt(t,"children"));return o.valid?{valid:!0}:o}(e,t);return i.valid?Ct(e.children,gt(t,"children")):i}function St(e){if(lt(e))return{valid:!0,message:"null or undefined is valid"};if(st(e))return{valid:!0,message:"string is valid"};if(ct(e)){const t=e;for(const e of t){const t=St(e);if(!t.valid)return t}return{valid:!0,message:"Array is valid"}}const t=e;if(dt(t))return{valid:!0,message:"empty object is valid"};if(t.children){const e=St(t.children);if(!e.valid)return e}return{valid:!0,message:"everything is structurally valid"}}function xt(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function Ot(e){if(null==e)return e;if(Array.isArray(e))return e.map(Ot);if(!xt(e))return e;if(function(e){if(!xt(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 Ot(e.value);const t={};for(const[i,r]of Object.entries(e))t[i]=Ot(r);return t}function zt(e){if(lt(e)||st(e))return e;if(ct(e)){return e.map(zt)}const t=e;let i=t.attributes;Array.isArray(i)&&0===i.length&&(i={}),i=xt(i)?Ot(i):i;const r=void 0!==t.children?zt(t.children):t.children;return{...t,attributes:i,children:r}}function Tt(e,t){if(lt(e)||st(e))return e;if(ct(e)){return e.map(e=>Tt(e,t))}const i=e;let r=i.key;if(r&&t.has(r)&&(r=void 0),!r)do{r=Ye(i.type)}while(t.has(r));t.add(r);const o=i.children?Tt(i.children,t):i.children;return{...i,key:r,children:o}}function vt(e){const t=St(e);if(!t.valid)return t;const i=function(e){return Ct(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)"}}function wt(e){if(lt(e))return null;const t=zt(e),{valid:i,message:r}=vt(t);if(!i)throw new Error(r??"Node is not valid");return Tt(t,new Set)}var _t={supportedProjectVersion:"1.1.2",reactBuilderVersion:"1.2.28"};const Rt={supportedProjectVersion:_t.supportedProjectVersion,reactBuilderVersion:_t.reactBuilderVersion};function Bt(){return{...Rt}}function It(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=Lt(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}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 Lt(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}function Mt(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}const At="https://tribemarketing.s3.eu-central-1.amazonaws.com/tribehub-assets/";var kt;function Et(e){const t=e.trim().replace(/^\/+/,"");return"backgorund.jpg"===t?"background.jpg":"ios.svg"===t?"apple.svg":t}function Ht(e){const t=Et(e);return`${At.endsWith("/")?At:`${At}/`}${i=t,i.split("/").filter(Boolean).map(e=>encodeURIComponent(e)).join("/")}`;var i}function Wt(e){switch(Et(e)){case kt.Android:return kt.Android;case kt.Apple:return kt.Apple;case kt.Background:return kt.Background;default:return null}}function Dt(e){if(!e)return;if(function(e){return/^(https?:)?\/\//.test(e)||/^(data|blob):/.test(e)}(e))return e;const t=Wt(e);return t?Ht(t):e}function Nt(e){const t=e?.type,i=rt(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}}!function(e){e.Android="android.svg",e.Apple="apple.svg",e.Background="background.jpg"}(kt||(kt={}));var Ft={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"}}}]}},Vt={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}}}]}]}},Ut={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"}},jt={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."}]}},Kt={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}},Gt={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}},Yt={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)."}]}},$t={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}]}]}},Xt={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"}]}]}]}]}},Jt={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"}}]}]}]}]}},Zt={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"}}]}]}]}]}},qt={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"}}]}]}]}]}},Qt={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"}}]}]}]}]}},ei={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"}}]}]}]}]}},ti={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"}}]}},ii={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"}}]}},ri={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"}}]}},oi={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"}}]}},ai={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"}}]}},ni={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"}}]}},li={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 si(e){return{...e,appConfig:{...d,...e.appConfig}}}function ci(){return[Ft,Vt,Ut,jt,Kt,Gt,Yt,$t,Xt,Jt,Zt,qt,Qt,ei,ti,ii,ri,oi,ai,ni,li].map(si)}function di(e={}){const t=_t.supportedProjectVersion.trim()?_t.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}}export{N as BuilderProvider,j as LocalizationParamsProvider,u as PERIOD_LOCALIZATION_KEYS,U as ParamsProvider,At as TRIBE_ASSETS_BASE_URL,kt as TribeAssetName,wt as analyseAndProccess,vt as analyseNode,B as buildPaywallLocalizationParams,g as calculateDiscount,y as calculatePricePerMonth,f as calculatePricePerYear,T as convertIOSPeriodUnit,d as defaultAppConfig,l as defaultLocalization,H as defaultProjectColors,c as defaultTheme,w as extractAndroidParams,R as extractIOSParams,p as extractPrice,nt as getArrayItemType,it as getAttributeMeta,tt as getAttributeSchema,he as getDefaultDevice,di as getDefaultProject,rt as getDefaultsForType,me as getDevices,Ht as getImage,Bt as getMeta,L as getMockProducts,M as getMockProductsByPreset,et as getPatternByType,O as getPeriodLocalizationKey,ci as getSamples,ot as getTypeSchema,dt as isEmptyObject,ct as isNodeArray,lt as isNodeNullOrUndefined,st as isNodeString,at as isPrimitiveType,s as mergeLocalization,W as mergeProjectColors,It as novaToJson,z as parseBillingPeriod,Me as parseColor,Wt as parseTribeAssetName,Mt as querySelector,Dt as resolveImageSrc,F as useBuilderParams,A as useCalculateLocalizedPrice,E as useChangeDelayByPaywall,k as useDiscountRate,Ge as useExtractImageStyle,je as useExtractTextStyle,Ke as useExtractViewStyle,G as useLocalizationParams,Y as useLocalize,Nt as useNode,K as useParams,I as usePaywallLocalizationParams};
|
|
1
|
+
import{useMemo as e,useEffect as t,createContext as i,useContext as r,useCallback as o}from"react";import{jsx as a}from"react/jsx-runtime";const n={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 l(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 s="light",c={width:375,height:812};function d(e){return e?e.replace(/[^0-9.]/g,""):""}function p(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 g(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 y(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 f={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"},b="base.builder.paywall.pricing.default.text",u="base.builder.paywall.pricing.freeTrial.text",m="base.builder.paywall.pricing.regular.text",h="base.builder.paywall.promo.default.text",C="base.builder.paywall.promo.freeTrial.text",S="base.builder.paywall.promo.regular.text";function x(e,t){switch(e){case"month":return t?f.monthlyPromo:f.monthly;case"year":return t?f.annualPromo:f.annual;case"week":return f.weekly;case"day":return f.daily;default:return f.monthly}}function O(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 z(e){if(!e)return"month";return{DAY:"day",WEEK:"week",MONTH:"month",YEAR:"year"}[e.toUpperCase()]||"month"}const T={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 v(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:T.error(["extractAndroidParams"],"Requested offer not found, using default",{productId:e.id||e.productId,requestedOfferId:t,availableOffers:i.map(e=>e.id)})}if(!r)return T.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 T.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),n=o.find(e=>2===e.recurrenceMode&&"0"!==e.priceAmountMicros),l=o.find(e=>1===e.recurrenceMode)??o[o.length-1];if(!l)return T.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 s=O(l.billingPeriod),c=`${s.value} ${s.unit}${s.value>1?"s":""}`,f=d(l.formattedPrice),b=l.priceCurrencyCode||"",u=l.formattedPrice||"";let m="",h="",C="",S="";if(n){m=d(n.formattedPrice);const e=n.billingCycleCount||0,t=O(n.billingPeriod),i=e*t.value;h=`${i} ${t.unit}${i>1?"s":""}`,C=String(e),S=t.unit}let x="false",z="",v="";if(a){x="true";const e=O(a.billingPeriod);z=String(e.value),v=e.unit}const w=p(f,m),R=parseFloat(f),B=g(R,s.unit),I=y(R,s.unit);return{price:f,promoPrice:m,currency:b,localizedPrice:u,period:s.unit,periodValue:String(s.value),periodType:c,promoPeriod:h,promoCycles:C,promoPeriodUnit:S,hasTrial:x,trialPeriod:z,trialPeriodUnit:v,discountPercentage:w,pricePerMonth:B,pricePerYear:I}}catch(t){return T.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 w(e,t){return{promoPeriod:`${e} ${t}${e>1?"s":""}`,promoCycles:String(e),promoPeriodUnit:t}}function R(e,t){try{const i=String(e.price||e.localizedPrice||"").replace(/[^0-9.]/g,""),r=e.currency||e.currencyCode||"",o=e.localizedPrice||"",a=z(e.subscriptionPeriodUnitIOS||"MONTH"),n=String(e.subscriptionPeriodNumberIOS||1),l=`${n} ${a}${parseInt(n,10)>1?"s":""}`,s=e.introductoryPrice||e.introductoryPriceIOS,c=!!s,d=c&&function(e){return"free_trial"===e.type||0===parseFloat(e.price||e.priceIOS||"0")}(s);let f="false",b="",u="",m="",h="",C="",S="";if(d)f="true",b=String(s.subscriptionPeriodNumberIOS||s.numberOfPeriods||7),u=z(s.subscriptionPeriodUnitIOS||s.subscriptionPeriod||"DAY");else if(c){m=String(s.price||s.priceIOS||"").replace(/[^0-9.]/g,"");const e=s.numberOfPeriods||1,t=w(e,z(s.subscriptionPeriodUnitIOS||s.subscriptionPeriod||"MONTH"));h=t.promoPeriod,C=t.promoCycles,S=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=w(e,z(i.subscriptionPeriod||"MONTH"));h=t.promoPeriod,C=t.promoCycles,S=t.promoPeriodUnit}else T.error(["extractIOSParams"],"Requested offer not found in discounts",{productId:e.id||e.productId,requestedOfferId:t,availableDiscounts:e.discounts.map(e=>e.identifier)})}const x=p(i,m),O=parseFloat(i),v=g(O,a);return{price:i,promoPrice:m,currency:r,localizedPrice:o,period:a,periodValue:n,periodType:l,promoPeriod:h,promoCycles:C,promoPeriodUnit:S,hasTrial:f,trialPeriod:b,trialPeriodUnit:u,discountPercentage:x,pricePerMonth:v,pricePerYear:y(O,a)}}catch(t){return T.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 B(e,t,i,r){const o=r??(e=>e),a="android"===t?v(e,i):R(e,i),n=a.period||"month",l=!!a.promoPrice,s="true"===a.hasTrial,c=x(n,!1),d=l?x(n,!0):"",p=l?`${a.promoPrice} ${a.currency}`.trim():"",g=o(c),y=l?o(d):"",f=p||a.localizedPrice,O=y||g;let z,T;return l?(z=b,T=h):s?(z=u,T=C):(z=m,T=S),{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:g,localizedPromoPeriod:y,localizedPromoPrice:p,localizedCalculatedPrice:f,localizedCalculatedPeriod:O,baseLocalizedPricingText:o(z),baseLocalizedPromoText:o(T),productTitle:String(e.title??""),productDescription:String(e.description??""),productCurreny:a.currency,productId:String(e.productId??""),productSelected:"true"}}function I(t,i,r){return e(()=>{if(!t||!r?.platform)return{};try{const e=r.builderProducts?.find(e=>e.store_package_id===i),o=e?.offer_id;return B(t,r.platform,o,r.localize)}catch(e){return console.error("[usePaywallLocalizationParams] Error:",e),{}}},[t,i,r])}var P={"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 _(){return JSON.parse(JSON.stringify(P))}function M(e){return _()[e]??[]}function L(e){return e?d(e):""}function A(e,t){if(!e||!t)return 0;const i=p(e,t);return i?parseInt(i,10):0}function k(i,r){const o=e(()=>i?.attributes?.delay?parseInt(String(i?.attributes?.delay),10):1e3,[i?.attributes?.delay]);t(()=>{if(!o||o<=0)return void r(!0);const e=setTimeout(()=>{r(!0)},o);return()=>clearTimeout(e)},[o,r])}const H={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 E(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 W=i(void 0);function D({params:t,children:i}){const r=e(()=>{const e=t.mockTheme??s,i=t.mockDefaultLanguage??"en";return{...t,mockProducts:t.mockProducts??[],mockBenefits:t.mockBenefits??{},mockTheme:e,mockDefaultLanguage:i,theme:e,defaultLanguage:i,baseSize:t.baseSize??c,projectColors:t.projectColors?E(H,t.projectColors):H,localization:t.localization?l(n,t.localization):n,platform:t.platform??"web"}},[t]);return a(W.Provider,{value:r,children:i})}function F(){const e=r(W);if(e)return e;throw new Error("useBuilderParams must be used within BuilderProvider")}const N=i({localizationParams:{},nestedLocalizationParams:{},otherParams:{}});function V({localizationParams:i,nestedLocalizationParams:r,otherParams:o,children:n}){const l=e(()=>({localizationParams:i??{},nestedLocalizationParams:r??{},otherParams:o??{}}),[i,r,o]);return t(()=>{},[l]),a(N.Provider,{value:l,children:n})}function U({params:e,children:t}){return a(V,{localizationParams:e,nestedLocalizationParams:{},children:t})}function j(){return r(N)??{localizationParams:{},nestedLocalizationParams:{},otherParams:{}}}function K(){return j().localizationParams??{}}function G(e){const{localization:t,mockDefaultLanguage:i}=F(),r=e?.localization??t??n,a=e?.defaultLanguage??i??"en",l=K();return o(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}(r?.[a]?.[e]??e,l),[a,r,l])}var Y=[{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 $(){const e=Y.slice();return e.sort((e,t)=>(e.importance??999)-(t.importance??999)),e}function X(){return $()[0]}const J=X(),Z=c;function q(e,t){return"number"==typeof e&&Number.isFinite(e)?e:t}function Q(e=Z,t=J){const i=q(t?.width,J.width),r=q(t?.height,J.height),o=q(e?.width,Z.width),a=q(e?.height,Z.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 ee=e=>Q().verticalScale(e);function te(e,t,i){if(void 0===e)return;if("number"==typeof e)return e;const r=Q(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 ie="STATIC_COLORS.",re="THEME_COLORS.";function oe(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(ie)){const e=i.slice(14),t=r.STATIC_COLORS?.[e];return"string"==typeof t&&t.trim()?t.trim():i}if(i.startsWith(re)){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 ae(e){const t=ne(e),i=t.styles??t.style;return"object"!=typeof(r=i)||null===r||Array.isArray(r)?void 0:i;var r}function ne(e){return e??{}}const le=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 se(e){return Object.fromEntries(Object.entries(e).filter(([e])=>!le.has(e)))}function ce(e,t={}){const i=e.attributes,r=ne(i),o=ae(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=te(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=oe(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 de=["normal","bold","100","200","300","400","500","600","700","800","900"];function pe(e){if("number"==typeof e&&Number.isFinite(e)){const t=String(e);return de.includes(t)?t:void 0}if("string"==typeof e){const t=e.trim();return de.includes(t)?t:void 0}}function ge(e){return"string"==typeof e?e.trim():""}function ye(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 fe(e,t={}){const i=e.attributes,r=ne(i),o=ae(i),a=e=>{const t=r[e];return null!=t?t:o?.[e]},n=t.theme??s,l=oe("THEME_COLORS.TEXT",{projectColors:t.projectColors,theme:n})??"THEME_COLORS.TEXT",c={};if(!i)return c.fontSize=ee(14),c.color=l,c;const d=te(a("fontSize"),t.baseSize);c.fontSize="number"==typeof d?d:ee(14);const p=a("fontFamily"),g=a("fontWeight"),y=function(e){const t=pe(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=ge(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=ge(t);if(r&&i.some(([e])=>e===r))return r;if(i.some(([e])=>"400"===e))return"400";const o=ye(r),a=i.map(([e])=>({k:e,n:ye(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=pe(g);!f&&b&&(c.fontWeight=b);const u=oe(a("color"),{projectColors:t.projectColors,theme:n});c.color=u??l;const m=a("textAlign");m&&(c.textAlign=m);return{...ce(e,{projectColors:t.projectColors,theme:n,baseSize:t.baseSize}),...c}}function be(t){const{mockTheme:i,projectColors:r,fonts:o,baseSize:a}=F();return e(()=>{const e=fe(t,{theme:i,projectColors:r,fonts:o,baseSize:a}),n=t.attributes,l=se(ne(n)),s=ae(n);return{style:e,other:{...l,adjustsFontSizeToFit:l.adjustsFontSizeToFit??s?.adjustsFontSizeToFit,showEllipsis:l.showEllipsis??s?.showEllipsis}}},[t,i,r,o,a])}function ue(t){const{mockTheme:i,projectColors:r,baseSize:o}=F();return e(()=>{const e=ce(t,{theme:i,projectColors:r,baseSize:o}),a=t.attributes,n=se(ne(a)),l=ae(a);return{style:e,other:{...n,scrollable:n.scrollable??l?.scrollable}}},[t,i,r,o])}function me(t){const{mockTheme:i,projectColors:r,baseSize:o}=F();return e(()=>{const{resizeMode:e,...a}=function(e,t={}){const i=e.attributes;if(!i)return{};const r=ae(i),o=r?.resizeMode??i.resizeMode,a={};return o&&(a.resizeMode=o),{...ce(e,t),...a}}(t,{theme:i,projectColors:r,baseSize:o}),n=t.attributes,l=se(ne(n)),s=ae(n);return{style:a,other:{...l,resizeMode:s?.resizeMode??e}}},[t,i,r,o])}function he(e){return e+"-"+Math.random().toString(36).substring(2,15)}const Ce=[{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 Se=new Map(Ce.map(e=>[e.pattern.type,e]));function xe(e){return e?e[0].toLowerCase()+e.slice(1):e}function Oe(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 ze=new Map;for(const e of Ce){const t=e?.pattern?.type;if("string"!=typeof t||!t)continue;const i=[t,t.toLowerCase(),xe(t),Oe(t)];for(const e of i)e&&(ze.has(e)||ze.set(e,t))}function Te(e){if("string"==typeof e&&e)return Se.has(e)?e:ze.get(e)??ze.get(e.toLowerCase())}function ve(e){if("string"!=typeof e)return;const t=Te(e)??e;return Se.get(t)}function we(e){const t=ve(e);return t?.pattern.attributes}function Re(e,t){const i=ve(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)}function Be(e){const t=ve(e);return t?.defaults}function Ie(e,t){if(!e||!t)return;const i=ve(e);return i?.types?.[t]}function Pe(e){return"string"===e||"title"===e||"description"===e||"number"===e||"boolean"===e||"color"===e||"size"===e||"fontFamily"===e||"fontWeight"===e||"iconType"===e}function _e(e){return"string"!=typeof e?null:e.endsWith("[]")?e.slice(0,-2):null}function Me(e){return null==e}function Le(e){return"string"==typeof e}function Ae(e){return e instanceof Array}function ke(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)&&0===Object.keys(e).length}function He(e,t){return{valid:!1,message:e,path:t}}function Ee(e,t){return e?t?t.startsWith("[")?`${e}${t}`:`${e}.${t}`:e:t}function We(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function De(e){if(!We(e))return!1;return"string"==typeof e.type}function Fe(e){return Te(e)??e}function Ne(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(Fe(r));return{baseKinds:t,allowedComponentTypes:i}}(r),n=function(e,t,i){return t.has("never")?Me(e)||ke(e)?{valid:!0}:He('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 Me(e)||ke(e)?{valid:!0}:i.size>0?Ae(e)||De(e)?{valid:!0}:He(`Children must be a node or array of nodes (allowed: ${Array.from(i).join(", ")})`,r):Le(e)?t.has("string")?{valid:!0}:He("Children must not be a string",r):Ae(e)?t.has("node")?{valid:!0}:He("Children must not be an array",r):De(e)?t.has("node")?{valid:!0}:He("Children must not be a node",r):He("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(Me(e)||ke(e))return{valid:!0};const r=Array.from(t),o=(e,i)=>{if(!De(e))return He("Child must be an object node",i);const o=Fe(e.type);return t.has(o)?{valid:!0}:He(`Child type "${e.type}" is not allowed here (allowed: ${r.join(", ")})`,Ee(i,"type"))};if(Ae(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 Ve(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}:He(`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 He(`Expected an array of: ${t.join(", ")}`,`${i}[${r}]`)}return{valid:!0}}return He("Expected a string or string[] enum value",i)}(t,i,r);const o=_e(i);if(o){if(!Array.isArray(t))return He(`Expected array for type "${i}"`,r);for(let i=0;i<t.length;i++){const a=Ve(e,t[i],o,`${r}[${i}]`);if(!a.valid)return a}return{valid:!0}}return Pe(i)?function(e,t,i){switch(t){case"string":return"string"==typeof e?{valid:!0}:He("Expected string",i);case"number":return"number"==typeof e?{valid:!0}:He("Expected number",i);case"boolean":return"boolean"==typeof e?{valid:!0}:He("Expected boolean",i);case"color":return"string"==typeof e?{valid:!0}:He("Expected color (string)",i);case"title":return"string"!=typeof e?He("Expected title (string)",i):e.length<=20?{valid:!0}:He("Expected title to be <= 20 characters",i);case"description":return"string"==typeof e?{valid:!0}:He("Expected description (string)",i);case"size":return"number"==typeof e||"string"==typeof e?{valid:!0}:He("Expected size (string or number)",i);case"fontWeight":return pe(e)?{valid:!0}:He(`Expected fontWeight (${de.join(", ")})`,i);case"iconType":return"string"==typeof e?{valid:!0}:He("Expected iconType (string)",i);default:return He(`Unknown primitive type "${t}"`,i)}}(t,i,r):function(e,t,i,r){const o=Ie(e,i);if(!o)return He(`Unknown custom type "${i}"`,r);if(!We(t))return He(`Expected object for type "${i}"`,r);const a=t;for(const[t,i]of Object.entries(o)){if(!(t in a))continue;const o=Ve(e,a[t],i,Ee(r,t));if(!o.valid)return o}return{valid:!0}}(e,t,i,r)}function Ue(e,t,i){const r=e.attributes;if(null==r)return{valid:!0};if(!We(r))return He("attributes must be an object",i);const o=we(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 He(`Legacy attribute "style" detected. Use "styles" instead (schemaVersion=2). Found at ${Ee(i,"style")}`,Ee(i,"style"));if(null!=s){if(!We(s))return He("styles must be an object",Ee(i,"styles"));const e=s;for(const[r,n]of Object.entries(e)){const e=a?.[r]??o?.[r];if(!e)continue;const l=Ve(t.pattern.type,n,e,Ee(Ee(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=Ve(t.pattern.type,n,e,Ee(i,e));if(!r.valid)return r;continue}const r=a?.[e];if(!r)return He(`Unknown attribute "${e}"`,Ee(i,e));const o=Ve(t.pattern.type,n,r,Ee(i,e));if(!o.valid)return o;continue}const l=Ve(t.pattern.type,n,r,Ee(i,e));if(!l.valid)return l}return{valid:!0}}function je(e,t){if(Me(e)||Le(e)||ke(e))return{valid:!0};if(Ae(e)){const i=e;for(let e=0;e<i.length;e++){const r=je(i[e],`${t}[${e}]`);if(!r.valid)return r}return{valid:!0}}if(!De(e))return He("Invalid node shape",t);const i=function(e,t){const i=ve(Fe(e.type));if(!i)return He(`Unknown component type "${e.type}"`,Ee(t,"type"));const r=Ue({...e},i,Ee(t,"attributes"));if(!r.valid)return r;const o=Ne({...e},i,Ee(t,"children"));return o.valid?{valid:!0}:o}(e,t);return i.valid?je(e.children,Ee(t,"children")):i}function Ke(e){if(Me(e))return{valid:!0,message:"null or undefined is valid"};if(Le(e))return{valid:!0,message:"string is valid"};if(Ae(e)){const t=e;for(const e of t){const t=Ke(e);if(!t.valid)return t}return{valid:!0,message:"Array is valid"}}const t=e;if(ke(t))return{valid:!0,message:"empty object is valid"};if(t.children){const e=Ke(t.children);if(!e.valid)return e}return{valid:!0,message:"everything is structurally valid"}}function Ge(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function Ye(e){if(null==e)return e;if(Array.isArray(e))return e.map(Ye);if(!Ge(e))return e;if(function(e){if(!Ge(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 Ye(e.value);const t={};for(const[i,r]of Object.entries(e))t[i]=Ye(r);return t}function $e(e){if(Me(e)||Le(e))return e;if(Ae(e)){return e.map($e)}const t=e;let i=t.attributes;Array.isArray(i)&&0===i.length&&(i={}),i=Ge(i)?Ye(i):i;const r=void 0!==t.children?$e(t.children):t.children;return{...t,attributes:i,children:r}}function Xe(e,t){if(Me(e)||Le(e))return e;if(Ae(e)){return e.map(e=>Xe(e,t))}const i=e;let r=i.key;if(r&&t.has(r)&&(r=void 0),!r)do{r=he(i.type)}while(t.has(r));t.add(r);const o=i.children?Xe(i.children,t):i.children;return{...i,key:r,children:o}}function Je(e){const t=Ke(e);if(!t.valid)return t;const i=function(e){return je(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)"}}function Ze(e){if(Me(e))return null;const t=$e(e),{valid:i,message:r}=Je(t);if(!i)throw new Error(r??"Node is not valid");return Xe(t,new Set)}var qe={supportedProjectVersion:"1.1.2",reactBuilderVersion:"1.2.30"};const Qe={supportedProjectVersion:qe.supportedProjectVersion,reactBuilderVersion:qe.reactBuilderVersion};function et(){return{...Qe}}function tt(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}=it(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}=it(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=rt(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}function it(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 rt(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}function ot(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}const at="https://tribemarketing.s3.eu-central-1.amazonaws.com/tribehub-assets/";var nt;function lt(e){const t=e.trim().replace(/^\/+/,"");return"backgorund.jpg"===t?"background.jpg":"ios.svg"===t?"apple.svg":t}function st(e){const t=lt(e);return`${at.endsWith("/")?at:`${at}/`}${i=t,i.split("/").filter(Boolean).map(e=>encodeURIComponent(e)).join("/")}`;var i}function ct(e){switch(lt(e)){case nt.Android:return nt.Android;case nt.Apple:return nt.Apple;case nt.Background:return nt.Background;default:return null}}function dt(e){if(!e)return;if(function(e){return/^(https?:)?\/\//.test(e)||/^(data|blob):/.test(e)}(e))return e;const t=ct(e);return t?st(t):e}function pt(e){const t=e?.type,i=Be(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}}!function(e){e.Android="android.svg",e.Apple="apple.svg",e.Background="background.jpg"}(nt||(nt={}));var gt={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"}}}]}},yt={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}}}]}]}},ft={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"}},bt={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."}]}},ut={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}},mt={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}},ht={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)."}]}},Ct={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}]}]}},St={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"}]}]}]}]}},xt={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"}}]}]}]}]}},Ot={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"}}]}]}]}]}},zt={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"}}]}]}]}]}},Tt={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"}}]}]}]}]}},vt={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"}}]}]}]}]}},wt={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"}}]}},Rt={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"}}]}},Bt={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"}}]}},It={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"}}]}},Pt={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"}}]}},_t={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"}}]}},Mt={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 Lt(e){const t=e.appConfig||{},i={...e,baseSize:t.baseSize||e.baseSize||c,localization:t.localization||e.localization||n};return delete i.appConfig,i}function At(){return[gt,yt,ft,bt,ut,mt,ht,Ct,St,xt,Ot,zt,Tt,vt,wt,Rt,Bt,It,Pt,_t,Mt].map(Lt)}function kt(e={}){const t=qe.supportedProjectVersion.trim()?qe.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}}export{D as BuilderProvider,U as LocalizationParamsProvider,f as PERIOD_LOCALIZATION_KEYS,V as ParamsProvider,at as TRIBE_ASSETS_BASE_URL,nt as TribeAssetName,Ze as analyseAndProccess,Je as analyseNode,B as buildPaywallLocalizationParams,p as calculateDiscount,g as calculatePricePerMonth,y as calculatePricePerYear,z as convertIOSPeriodUnit,n as defaultLocalization,H as defaultProjectColors,s as defaultTheme,v as extractAndroidParams,R as extractIOSParams,d as extractPrice,_e as getArrayItemType,Re as getAttributeMeta,we as getAttributeSchema,X as getDefaultDevice,kt as getDefaultProject,Be as getDefaultsForType,$ as getDevices,st as getImage,et as getMeta,_ as getMockProducts,M as getMockProductsByPreset,ve as getPatternByType,x as getPeriodLocalizationKey,At as getSamples,Ie as getTypeSchema,ke as isEmptyObject,Ae as isNodeArray,Me as isNodeNullOrUndefined,Le as isNodeString,Pe as isPrimitiveType,l as mergeLocalization,E as mergeProjectColors,tt as novaToJson,O as parseBillingPeriod,oe as parseColor,ct as parseTribeAssetName,ot as querySelector,dt as resolveImageSrc,F as useBuilderParams,L as useCalculateLocalizedPrice,k as useChangeDelayByPaywall,A as useDiscountRate,me as useExtractImageStyle,be as useExtractTextStyle,ue as useExtractViewStyle,K as useLocalizationParams,G as useLocalize,pt as useNode,j as useParams,I as usePaywallLocalizationParams};
|
|
29
2
|
//# sourceMappingURL=index.esm.js.map
|