@blinkpage/composer-tools 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/EventEmitter.ts +40 -0
- package/InlineEditorProvider.tsx +30 -0
- package/composer-base-components/base/base.module.scss +638 -0
- package/composer-base-components/base/base.tsx +692 -0
- package/composer-base-components/base/utitilities/iconList.ts +65 -0
- package/composer-base-components/base/utitilities/viewports.module.scss +2 -0
- package/composer-base-components/close/close.module.scss +16 -0
- package/composer-base-components/close/close.tsx +14 -0
- package/composer-base-components/embeded-link/embeded-link.tsx +38 -0
- package/composer-base-components/map/map.tsx +267 -0
- package/composer-base-components/media/media.tsx +0 -0
- package/composer-base-components/modal/index.ts +4 -0
- package/composer-base-components/modal/modal.module.scss +19 -0
- package/composer-base-components/modal/modal.service.ts +27 -0
- package/composer-base-components/modal/modal.tsx +22 -0
- package/composer-base-components/slider/slider.tsx +120 -0
- package/composer-base-components/ui/accordion/Accordion.module.scss +46 -0
- package/composer-base-components/ui/accordion/Accordion.tsx +48 -0
- package/composer-base-components/ui/cookie/Cookie.module.scss +473 -0
- package/composer-base-components/ui/cookie/Cookie.tsx +69 -0
- package/composer-base-components/ui/dropdown/Dropdown.module.scss +79 -0
- package/composer-base-components/ui/dropdown/Dropdown.tsx +133 -0
- package/context/DataContext.tsx +79 -0
- package/custom-component-loader.ts +84 -0
- package/custom-hooks/hex-to-rgb.tsx +6 -0
- package/custom-hooks/input-templates.tsx +243 -0
- package/custom-hooks/load-font.tsx +9 -0
- package/custom-hooks/placeholder-filler.tsx +23 -0
- package/custom-hooks/project.ts +9 -0
- package/editor-components/ComponentRegistery.tsx +42 -0
- package/editor-components/EditorComponent.tsx +1103 -0
- package/editor-components/Image_gallery/image_gallery_1/image-gallery1.module.scss +130 -0
- package/editor-components/Image_gallery/image_gallery_1/image-gallery1.tsx +619 -0
- package/editor-components/Image_gallery/image_gallery_10/image-gallery10.module.scss +179 -0
- package/editor-components/Image_gallery/image_gallery_10/image-gallery10.tsx +682 -0
- package/editor-components/Image_gallery/image_gallery_11/image-gallery11.module.scss +394 -0
- package/editor-components/Image_gallery/image_gallery_11/image-gallery11.tsx +595 -0
- package/editor-components/Image_gallery/image_gallery_2/image-gallery2.module.scss +267 -0
- package/editor-components/Image_gallery/image_gallery_2/image-gallery2.tsx +1028 -0
- package/editor-components/Image_gallery/image_gallery_3/image-gallery3.module.scss +158 -0
- package/editor-components/Image_gallery/image_gallery_3/image-gallery3.tsx +320 -0
- package/editor-components/Image_gallery/image_gallery_4/image-gallery4.module.scss +264 -0
- package/editor-components/Image_gallery/image_gallery_4/image-gallery4.tsx +787 -0
- package/editor-components/Image_gallery/image_gallery_5/image-gallery5.module.scss +216 -0
- package/editor-components/Image_gallery/image_gallery_5/image-gallery5.tsx +404 -0
- package/editor-components/Image_gallery/image_gallery_6/image-gallery6.module.scss +359 -0
- package/editor-components/Image_gallery/image_gallery_6/image-gallery6.tsx +824 -0
- package/editor-components/Image_gallery/image_gallery_7/image-gallery7.module.scss +142 -0
- package/editor-components/Image_gallery/image_gallery_7/image-gallery7.tsx +515 -0
- package/editor-components/Image_gallery/image_gallery_8/image-gallery8.module.scss +96 -0
- package/editor-components/Image_gallery/image_gallery_8/image-gallery8.tsx +443 -0
- package/editor-components/Image_gallery/image_gallery_9/image-gallery9.module.scss +196 -0
- package/editor-components/Image_gallery/image_gallery_9/image-gallery9.tsx +627 -0
- package/editor-components/about/about1/about1.module.scss +162 -0
- package/editor-components/about/about1/about1.tsx +343 -0
- package/editor-components/about/about10/about10.module.scss +273 -0
- package/editor-components/about/about10/about10.tsx +297 -0
- package/editor-components/about/about11/about11.module.scss +191 -0
- package/editor-components/about/about11/about11.tsx +267 -0
- package/editor-components/about/about12/about12.module.scss +195 -0
- package/editor-components/about/about12/about12.tsx +204 -0
- package/editor-components/about/about13/about13.module.scss +144 -0
- package/editor-components/about/about13/about13.tsx +118 -0
- package/editor-components/about/about14/about14.module.scss +193 -0
- package/editor-components/about/about14/about14.tsx +183 -0
- package/editor-components/about/about15/about15.module.scss +190 -0
- package/editor-components/about/about15/about15.tsx +194 -0
- package/editor-components/about/about16/about16.module.scss +198 -0
- package/editor-components/about/about16/about16.tsx +280 -0
- package/editor-components/about/about2/about2.module.scss +139 -0
- package/editor-components/about/about2/about2.tsx +121 -0
- package/editor-components/about/about3/about3.module.scss +249 -0
- package/editor-components/about/about3/about3.tsx +270 -0
- package/editor-components/about/about4/about4.module.scss +50 -0
- package/editor-components/about/about4/about4.tsx +88 -0
- package/editor-components/about/about5/about5.module.scss +188 -0
- package/editor-components/about/about5/about5.tsx +187 -0
- package/editor-components/about/about6/about6.module.scss +84 -0
- package/editor-components/about/about6/about6.tsx +141 -0
- package/editor-components/about/about7/about7.module.scss +268 -0
- package/editor-components/about/about7/about7.tsx +272 -0
- package/editor-components/about/about8/about8.module.scss +159 -0
- package/editor-components/about/about8/about8.tsx +240 -0
- package/editor-components/about/about9/about9.module.scss +79 -0
- package/editor-components/about/about9/about9.tsx +142 -0
- package/editor-components/blog/blog1/blog1.module.scss +542 -0
- package/editor-components/blog/blog1/blog1.tsx +540 -0
- package/editor-components/blog/blog2/blog2.module.scss +377 -0
- package/editor-components/blog/blog2/blog2.tsx +317 -0
- package/editor-components/blog/blog3/blog3.module.scss +477 -0
- package/editor-components/blog/blog3/blog3.tsx +709 -0
- package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.module.scss +142 -0
- package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.tsx +236 -0
- package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.module.scss +139 -0
- package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.tsx +224 -0
- package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.module.scss +193 -0
- package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.tsx +218 -0
- package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.module.scss +201 -0
- package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.tsx +297 -0
- package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.module.scss +90 -0
- package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.tsx +161 -0
- package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.module.scss +168 -0
- package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.tsx +235 -0
- package/editor-components/call_to_action/call_to_action1/call_to_action1.module.scss +41 -0
- package/editor-components/call_to_action/call_to_action1/call_to_action1.tsx +84 -0
- package/editor-components/call_to_action/call_to_action10/call_to_action10.module.scss +96 -0
- package/editor-components/call_to_action/call_to_action10/call_to_action10.tsx +233 -0
- package/editor-components/call_to_action/call_to_action11/call_to_action11.module.scss +99 -0
- package/editor-components/call_to_action/call_to_action11/call_to_action11.tsx +73 -0
- package/editor-components/call_to_action/call_to_action12/call_to_action12.module.scss +146 -0
- package/editor-components/call_to_action/call_to_action12/call_to_action12.tsx +147 -0
- package/editor-components/call_to_action/call_to_action13/call_to_action13.module.scss +149 -0
- package/editor-components/call_to_action/call_to_action13/call_to_action13.tsx +127 -0
- package/editor-components/call_to_action/call_to_action14/call_to_action14.module.scss +176 -0
- package/editor-components/call_to_action/call_to_action14/call_to_action14.tsx +99 -0
- package/editor-components/call_to_action/call_to_action15/call_to_action15.module.scss +32 -0
- package/editor-components/call_to_action/call_to_action15/call_to_action15.tsx +87 -0
- package/editor-components/call_to_action/call_to_action16/call_to_action16.module.scss +54 -0
- package/editor-components/call_to_action/call_to_action16/call_to_action16.tsx +95 -0
- package/editor-components/call_to_action/call_to_action17/call_to_action17.module.scss +43 -0
- package/editor-components/call_to_action/call_to_action17/call_to_action17.tsx +80 -0
- package/editor-components/call_to_action/call_to_action18/call_to_action18.module.scss +88 -0
- package/editor-components/call_to_action/call_to_action18/call_to_action18.tsx +104 -0
- package/editor-components/call_to_action/call_to_action2/call_to_action2.module.scss +271 -0
- package/editor-components/call_to_action/call_to_action2/call_to_action2.tsx +221 -0
- package/editor-components/call_to_action/call_to_action20/call_to_action20.module.scss +89 -0
- package/editor-components/call_to_action/call_to_action20/call_to_action20.tsx +96 -0
- package/editor-components/call_to_action/call_to_action21/call_to_action21.module.scss +84 -0
- package/editor-components/call_to_action/call_to_action21/call_to_action21.tsx +111 -0
- package/editor-components/call_to_action/call_to_action22/call_to_action22.module.scss +83 -0
- package/editor-components/call_to_action/call_to_action22/call_to_action22.tsx +118 -0
- package/editor-components/call_to_action/call_to_action3/call_to_action3.module.scss +94 -0
- package/editor-components/call_to_action/call_to_action3/call_to_action3.tsx +121 -0
- package/editor-components/call_to_action/call_to_action4/call_to_action4.module.scss +96 -0
- package/editor-components/call_to_action/call_to_action4/call_to_action4.tsx +253 -0
- package/editor-components/call_to_action/call_to_action5/call_to_action5.module.scss +185 -0
- package/editor-components/call_to_action/call_to_action5/call_to_action5.tsx +168 -0
- package/editor-components/call_to_action/call_to_action6/call_to_action6.module.scss +188 -0
- package/editor-components/call_to_action/call_to_action6/call_to_action6.tsx +230 -0
- package/editor-components/call_to_action/call_to_action7/call_to_action7.module.scss +158 -0
- package/editor-components/call_to_action/call_to_action7/call_to_action7.tsx +193 -0
- package/editor-components/call_to_action/call_to_action8/call_to_action8.module.scss +75 -0
- package/editor-components/call_to_action/call_to_action8/call_to_action8.tsx +113 -0
- package/editor-components/call_to_action/call_to_action9/call_to_action9.module.scss +71 -0
- package/editor-components/call_to_action/call_to_action9/call_to_action9.tsx +258 -0
- package/editor-components/coming-soon/coming-soon1/coming-soon1.module.scss +100 -0
- package/editor-components/coming-soon/coming-soon1/coming-soon1.tsx +200 -0
- package/editor-components/coming-soon/coming-soon2/coming-soon2.module.scss +230 -0
- package/editor-components/coming-soon/coming-soon2/coming-soon2.tsx +355 -0
- package/editor-components/coming-soon/coming-soon3/coming-soon3.module.scss +205 -0
- package/editor-components/coming-soon/coming-soon3/coming-soon3.tsx +250 -0
- package/editor-components/coming-soon/coming-soon4/coming-soon4.module.scss +139 -0
- package/editor-components/coming-soon/coming-soon4/coming-soon4.tsx +228 -0
- package/editor-components/comparison/comparison1/comparison1.module.scss +320 -0
- package/editor-components/comparison/comparison1/comparison1.tsx +315 -0
- package/editor-components/contacts/form1/form1.module.scss +77 -0
- package/editor-components/contacts/form1/form1.tsx +300 -0
- package/editor-components/contacts/form2/form2.module.scss +183 -0
- package/editor-components/contacts/form2/form2.tsx +425 -0
- package/editor-components/contacts/form3/form3.module.scss +496 -0
- package/editor-components/contacts/form3/form3.tsx +782 -0
- package/editor-components/contacts/form4/form4.module.scss +192 -0
- package/editor-components/contacts/form4/form4.tsx +593 -0
- package/editor-components/contacts/form5/form5.module.scss +159 -0
- package/editor-components/contacts/form5/form5.tsx +615 -0
- package/editor-components/contacts/form6/form6.module.scss +177 -0
- package/editor-components/contacts/form6/form6.tsx +580 -0
- package/editor-components/contacts/form7/form7.module.scss +167 -0
- package/editor-components/contacts/form7/form7.tsx +417 -0
- package/editor-components/contacts/form8/form8.module.scss +151 -0
- package/editor-components/contacts/form8/form8.tsx +506 -0
- package/editor-components/contacts/form9/form9.module.scss +314 -0
- package/editor-components/contacts/form9/form9.tsx +923 -0
- package/editor-components/download/download1/download1.module.scss +109 -0
- package/editor-components/download/download1/download1.tsx +119 -0
- package/editor-components/download/download10/download10.module.scss +142 -0
- package/editor-components/download/download10/download10.tsx +254 -0
- package/editor-components/download/download11/download11.module.scss +201 -0
- package/editor-components/download/download11/download11.tsx +253 -0
- package/editor-components/download/download2/download2.module.scss +95 -0
- package/editor-components/download/download2/download2.tsx +249 -0
- package/editor-components/download/download3/download3.module.scss +359 -0
- package/editor-components/download/download3/download3.tsx +185 -0
- package/editor-components/download/download4/download4.module.scss +102 -0
- package/editor-components/download/download4/download4.tsx +119 -0
- package/editor-components/download/download5/download5.module.scss +135 -0
- package/editor-components/download/download5/download5.tsx +135 -0
- package/editor-components/download/download6/download6.module.scss +83 -0
- package/editor-components/download/download6/download6.tsx +122 -0
- package/editor-components/download/download7/download7.module.scss +136 -0
- package/editor-components/download/download7/download7.tsx +135 -0
- package/editor-components/download/download8/download8.module.scss +316 -0
- package/editor-components/download/download8/download8.tsx +248 -0
- package/editor-components/download/download9/download9.module.scss +284 -0
- package/editor-components/download/download9/download9.tsx +154 -0
- package/editor-components/e-commerce/e-commerce1/e-commerce1.module.scss +459 -0
- package/editor-components/e-commerce/e-commerce1/e-commerce1.tsx +809 -0
- package/editor-components/e-commerce/e-commerce2/e-commerce2.module.scss +318 -0
- package/editor-components/e-commerce/e-commerce2/e-commerce2.tsx +3361 -0
- package/editor-components/e-commerce/e-commerce3/e-commerce3.module.scss +94 -0
- package/editor-components/e-commerce/e-commerce3/e-commerce3.tsx +350 -0
- package/editor-components/e-commerce/e-commerce4/e-commerce4.module.scss +289 -0
- package/editor-components/e-commerce/e-commerce4/e-commerce4.tsx +2234 -0
- package/editor-components/e-commerce/e-commerce5/e-commerce5.module.scss +264 -0
- package/editor-components/e-commerce/e-commerce5/e-commerce5.tsx +542 -0
- package/editor-components/e-commerce/e-commerce6/e-commerce6.module.scss +489 -0
- package/editor-components/e-commerce/e-commerce6/e-commerce6.tsx +518 -0
- package/editor-components/e-commerce/e-commerce7/e-commerce7.module.scss +688 -0
- package/editor-components/e-commerce/e-commerce7/e-commerce7.tsx +1442 -0
- package/editor-components/e-commerce/e-commerce8/e-commerce8.module.scss +310 -0
- package/editor-components/e-commerce/e-commerce8/e-commerce8.tsx +957 -0
- package/editor-components/faq/faq1/faq1.module.scss +93 -0
- package/editor-components/faq/faq1/faq1.tsx +195 -0
- package/editor-components/faq/faq10/faq10.module.scss +153 -0
- package/editor-components/faq/faq10/faq10.tsx +452 -0
- package/editor-components/faq/faq2/faq2.module.scss +123 -0
- package/editor-components/faq/faq2/faq2.tsx +374 -0
- package/editor-components/faq/faq3/faq3.module.scss +144 -0
- package/editor-components/faq/faq3/faq3.tsx +407 -0
- package/editor-components/faq/faq4/faq4.module.scss +124 -0
- package/editor-components/faq/faq4/faq4.tsx +303 -0
- package/editor-components/faq/faq5/faq5.module.scss +151 -0
- package/editor-components/faq/faq5/faq5.tsx +614 -0
- package/editor-components/faq/faq6/faq6.module.scss +116 -0
- package/editor-components/faq/faq6/faq6.tsx +241 -0
- package/editor-components/faq/faq7/faq7.module.scss +98 -0
- package/editor-components/faq/faq7/faq7.tsx +298 -0
- package/editor-components/faq/faq8/faq8.module.scss +217 -0
- package/editor-components/faq/faq8/faq8.tsx +796 -0
- package/editor-components/faq/faq9/faq9.module.scss +137 -0
- package/editor-components/faq/faq9/faq9.tsx +466 -0
- package/editor-components/feature/feature1/feature1.module.scss +115 -0
- package/editor-components/feature/feature1/feature1.tsx +148 -0
- package/editor-components/feature/feature10/feature10.module.scss +191 -0
- package/editor-components/feature/feature10/feature10.tsx +468 -0
- package/editor-components/feature/feature11/feature11.module.scss +99 -0
- package/editor-components/feature/feature11/feature11.tsx +337 -0
- package/editor-components/feature/feature12/feature12.module.scss +169 -0
- package/editor-components/feature/feature12/feature12.tsx +325 -0
- package/editor-components/feature/feature13/feature13.module.scss +151 -0
- package/editor-components/feature/feature13/feature13.tsx +680 -0
- package/editor-components/feature/feature14/feature14.module.scss +119 -0
- package/editor-components/feature/feature14/feature14.tsx +284 -0
- package/editor-components/feature/feature15/feature15.module.scss +214 -0
- package/editor-components/feature/feature15/feature15.tsx +344 -0
- package/editor-components/feature/feature16/feature16.module.scss +234 -0
- package/editor-components/feature/feature16/feature16.tsx +527 -0
- package/editor-components/feature/feature17/feature17.module.scss +187 -0
- package/editor-components/feature/feature17/feature17.tsx +527 -0
- package/editor-components/feature/feature18/feature18.module.scss +213 -0
- package/editor-components/feature/feature18/feature18.tsx +405 -0
- package/editor-components/feature/feature19/feature19.module.scss +212 -0
- package/editor-components/feature/feature19/feature19.tsx +239 -0
- package/editor-components/feature/feature2/feature2.module.scss +120 -0
- package/editor-components/feature/feature2/feature2.tsx +246 -0
- package/editor-components/feature/feature20/feature20.module.scss +239 -0
- package/editor-components/feature/feature20/feature20.tsx +238 -0
- package/editor-components/feature/feature21/feature21.module.scss +268 -0
- package/editor-components/feature/feature21/feature21.tsx +352 -0
- package/editor-components/feature/feature22/feature22.module.scss +191 -0
- package/editor-components/feature/feature22/feature22.tsx +266 -0
- package/editor-components/feature/feature24/feature24.module.scss +121 -0
- package/editor-components/feature/feature24/feature24.tsx +381 -0
- package/editor-components/feature/feature25/feature25.module.scss +213 -0
- package/editor-components/feature/feature25/feature25.tsx +398 -0
- package/editor-components/feature/feature26/feature26.module.scss +188 -0
- package/editor-components/feature/feature26/feature26.tsx +139 -0
- package/editor-components/feature/feature27/feature27.module.scss +155 -0
- package/editor-components/feature/feature27/feature27.tsx +164 -0
- package/editor-components/feature/feature28/feature28.module.scss +89 -0
- package/editor-components/feature/feature28/feature28.tsx +123 -0
- package/editor-components/feature/feature29/feature29.module.scss +285 -0
- package/editor-components/feature/feature29/feature29.tsx +482 -0
- package/editor-components/feature/feature3/feature3.module.scss +335 -0
- package/editor-components/feature/feature3/feature3.tsx +418 -0
- package/editor-components/feature/feature30/feature30.module.scss +85 -0
- package/editor-components/feature/feature30/feature30.tsx +316 -0
- package/editor-components/feature/feature31/feature31.module.scss +101 -0
- package/editor-components/feature/feature31/feature31.tsx +315 -0
- package/editor-components/feature/feature32/feature32.module.scss +131 -0
- package/editor-components/feature/feature32/feature32.tsx +226 -0
- package/editor-components/feature/feature33/feature33.module.scss +168 -0
- package/editor-components/feature/feature33/feature33.tsx +285 -0
- package/editor-components/feature/feature34/feature34.module.scss +151 -0
- package/editor-components/feature/feature34/feature34.tsx +207 -0
- package/editor-components/feature/feature35/feature35.module.scss +145 -0
- package/editor-components/feature/feature35/feature35.tsx +422 -0
- package/editor-components/feature/feature36/feature36.module.scss +106 -0
- package/editor-components/feature/feature36/feature36.tsx +194 -0
- package/editor-components/feature/feature37/feature37.module.scss +145 -0
- package/editor-components/feature/feature37/feature37.tsx +249 -0
- package/editor-components/feature/feature38/feature38.module.scss +174 -0
- package/editor-components/feature/feature38/feature38.tsx +402 -0
- package/editor-components/feature/feature39/feature39.module.scss +198 -0
- package/editor-components/feature/feature39/feature39.tsx +367 -0
- package/editor-components/feature/feature4/feature4.module.scss +220 -0
- package/editor-components/feature/feature4/feature4.tsx +543 -0
- package/editor-components/feature/feature40/feature40.module.scss +211 -0
- package/editor-components/feature/feature40/feature40.tsx +424 -0
- package/editor-components/feature/feature41/feature41.module.scss +142 -0
- package/editor-components/feature/feature41/feature41.tsx +255 -0
- package/editor-components/feature/feature43/feature43.module.scss +133 -0
- package/editor-components/feature/feature43/feature43.tsx +305 -0
- package/editor-components/feature/feature44/feature44.module.scss +211 -0
- package/editor-components/feature/feature44/feature44.tsx +331 -0
- package/editor-components/feature/feature45/feature45.module.scss +144 -0
- package/editor-components/feature/feature45/feature45.tsx +482 -0
- package/editor-components/feature/feature46/feature46.module.scss +131 -0
- package/editor-components/feature/feature46/feature46.tsx +352 -0
- package/editor-components/feature/feature47/feature47.module.scss +88 -0
- package/editor-components/feature/feature47/feature47.tsx +356 -0
- package/editor-components/feature/feature48/feature48.module.scss +143 -0
- package/editor-components/feature/feature48/feature48.tsx +302 -0
- package/editor-components/feature/feature49/feature49.module.scss +141 -0
- package/editor-components/feature/feature49/feature49.tsx +294 -0
- package/editor-components/feature/feature5/feature5.module.scss +534 -0
- package/editor-components/feature/feature5/feature5.tsx +509 -0
- package/editor-components/feature/feature6/feature6.module.scss +150 -0
- package/editor-components/feature/feature6/feature6.tsx +268 -0
- package/editor-components/feature/feature7/feature7.module.scss +159 -0
- package/editor-components/feature/feature7/feature7.tsx +263 -0
- package/editor-components/feature/feature8/feature8.module.scss +106 -0
- package/editor-components/feature/feature8/feature8.tsx +474 -0
- package/editor-components/feature/feature9/feature9.module.scss +172 -0
- package/editor-components/feature/feature9/feature9.tsx +377 -0
- package/editor-components/feedback/feedbackmodal1/feedbackmodal1.module.scss +305 -0
- package/editor-components/feedback/feedbackmodal1/feedbackmodal1.tsx +386 -0
- package/editor-components/footer/footer1/footer1.module.scss +445 -0
- package/editor-components/footer/footer1/footer1.tsx +474 -0
- package/editor-components/footer/footer10/footer10.module.scss +391 -0
- package/editor-components/footer/footer10/footer10.tsx +371 -0
- package/editor-components/footer/footer11/footer11.module.scss +143 -0
- package/editor-components/footer/footer11/footer11.tsx +196 -0
- package/editor-components/footer/footer12/footer12.module.scss +293 -0
- package/editor-components/footer/footer12/footer12.tsx +568 -0
- package/editor-components/footer/footer2/footer2.module.scss +154 -0
- package/editor-components/footer/footer2/footer2.tsx +385 -0
- package/editor-components/footer/footer3/footer3.module.scss +420 -0
- package/editor-components/footer/footer3/footer3.tsx +875 -0
- package/editor-components/footer/footer4/footer4.module.scss +477 -0
- package/editor-components/footer/footer4/footer4.tsx +703 -0
- package/editor-components/footer/footer5/footer5.module.scss +283 -0
- package/editor-components/footer/footer5/footer5.tsx +208 -0
- package/editor-components/footer/footer6/footer6.module.scss +155 -0
- package/editor-components/footer/footer6/footer6.tsx +372 -0
- package/editor-components/footer/footer7/footer7.module.scss +197 -0
- package/editor-components/footer/footer7/footer7.tsx +190 -0
- package/editor-components/footer/footer8/footer8.module.scss +456 -0
- package/editor-components/footer/footer8/footer8.tsx +715 -0
- package/editor-components/footer/footer9/footer9.module.scss +386 -0
- package/editor-components/footer/footer9/footer9.tsx +514 -0
- package/editor-components/hero-section/hero-section1/hero-section1.module.scss +578 -0
- package/editor-components/hero-section/hero-section1/hero-section1.tsx +493 -0
- package/editor-components/hero-section/hero-section10/hero-section10.module.scss +492 -0
- package/editor-components/hero-section/hero-section10/hero-section10.tsx +611 -0
- package/editor-components/hero-section/hero-section11/hero-section11.module.scss +295 -0
- package/editor-components/hero-section/hero-section11/hero-section11.tsx +224 -0
- package/editor-components/hero-section/hero-section12/hero-section12.module.scss +504 -0
- package/editor-components/hero-section/hero-section12/hero-section12.tsx +974 -0
- package/editor-components/hero-section/hero-section13/hero-section13.module.scss +171 -0
- package/editor-components/hero-section/hero-section13/hero-section13.tsx +417 -0
- package/editor-components/hero-section/hero-section14/hero-section14.module.scss +210 -0
- package/editor-components/hero-section/hero-section14/hero-section14.tsx +333 -0
- package/editor-components/hero-section/hero-section15/hero-section15.module.scss +330 -0
- package/editor-components/hero-section/hero-section15/hero-section15.tsx +254 -0
- package/editor-components/hero-section/hero-section16/hero-section16.module.scss +392 -0
- package/editor-components/hero-section/hero-section16/hero-section16.tsx +369 -0
- package/editor-components/hero-section/hero-section17/hero-section17.module.scss +240 -0
- package/editor-components/hero-section/hero-section17/hero-section17.tsx +263 -0
- package/editor-components/hero-section/hero-section18/hero-section18.module.scss +403 -0
- package/editor-components/hero-section/hero-section18/hero-section18.tsx +569 -0
- package/editor-components/hero-section/hero-section19/hero-section19.module.scss +333 -0
- package/editor-components/hero-section/hero-section19/hero-section19.tsx +384 -0
- package/editor-components/hero-section/hero-section2/hero-section2.module.scss +329 -0
- package/editor-components/hero-section/hero-section2/hero-section2.tsx +393 -0
- package/editor-components/hero-section/hero-section20/hero-section20.module.scss +475 -0
- package/editor-components/hero-section/hero-section20/hero-section20.tsx +994 -0
- package/editor-components/hero-section/hero-section21/hero-section21.module.scss +264 -0
- package/editor-components/hero-section/hero-section21/hero-section21.tsx +249 -0
- package/editor-components/hero-section/hero-section22/hero-section22.module.scss +394 -0
- package/editor-components/hero-section/hero-section22/hero-section22.tsx +421 -0
- package/editor-components/hero-section/hero-section23/hero-section23.module.scss +573 -0
- package/editor-components/hero-section/hero-section23/hero-section23.tsx +592 -0
- package/editor-components/hero-section/hero-section24/hero-section24.module.scss +531 -0
- package/editor-components/hero-section/hero-section24/hero-section24.tsx +462 -0
- package/editor-components/hero-section/hero-section25/hero-section25.module.scss +538 -0
- package/editor-components/hero-section/hero-section25/hero-section25.tsx +656 -0
- package/editor-components/hero-section/hero-section26/hero-section26.module.scss +242 -0
- package/editor-components/hero-section/hero-section26/hero-section26.tsx +441 -0
- package/editor-components/hero-section/hero-section27/hero-section27.module.scss +684 -0
- package/editor-components/hero-section/hero-section27/hero-section27.tsx +717 -0
- package/editor-components/hero-section/hero-section28/hero-section28.module.scss +368 -0
- package/editor-components/hero-section/hero-section28/hero-section28.tsx +477 -0
- package/editor-components/hero-section/hero-section29/hero-section29.module.scss +298 -0
- package/editor-components/hero-section/hero-section29/hero-section29.tsx +334 -0
- package/editor-components/hero-section/hero-section3/hero-section3.module.scss +810 -0
- package/editor-components/hero-section/hero-section3/hero-section3.tsx +468 -0
- package/editor-components/hero-section/hero-section30/hero-section30.module.scss +234 -0
- package/editor-components/hero-section/hero-section30/hero-section30.tsx +208 -0
- package/editor-components/hero-section/hero-section31/hero-section31.module.scss +468 -0
- package/editor-components/hero-section/hero-section31/hero-section31.tsx +1083 -0
- package/editor-components/hero-section/hero-section32/hero-section32.module.scss +488 -0
- package/editor-components/hero-section/hero-section32/hero-section32.tsx +530 -0
- package/editor-components/hero-section/hero-section33/hero-section33.module.scss +401 -0
- package/editor-components/hero-section/hero-section33/hero-section33.tsx +471 -0
- package/editor-components/hero-section/hero-section34/hero-section34.module.scss +384 -0
- package/editor-components/hero-section/hero-section34/hero-section34.tsx +465 -0
- package/editor-components/hero-section/hero-section35/hero-section35.module.scss +522 -0
- package/editor-components/hero-section/hero-section35/hero-section35.tsx +441 -0
- package/editor-components/hero-section/hero-section38/hero-section38.module.scss +617 -0
- package/editor-components/hero-section/hero-section38/hero-section38.tsx +458 -0
- package/editor-components/hero-section/hero-section4/hero-section4.module.scss +283 -0
- package/editor-components/hero-section/hero-section4/hero-section4.tsx +292 -0
- package/editor-components/hero-section/hero-section5/hero-section5.module.scss +178 -0
- package/editor-components/hero-section/hero-section5/hero-section5.tsx +159 -0
- package/editor-components/hero-section/hero-section6/hero-section6.module.scss +339 -0
- package/editor-components/hero-section/hero-section6/hero-section6.tsx +244 -0
- package/editor-components/hero-section/hero-section7/hero-section7.module.scss +117 -0
- package/editor-components/hero-section/hero-section7/hero-section7.tsx +277 -0
- package/editor-components/hero-section/hero-section8/hero-section8.module.scss +296 -0
- package/editor-components/hero-section/hero-section8/hero-section8.tsx +500 -0
- package/editor-components/hero-section/hero-section9/hero-section9.module.scss +292 -0
- package/editor-components/hero-section/hero-section9/hero-section9.tsx +536 -0
- package/editor-components/intro-section/intro-section1/intro-section1.module.scss +392 -0
- package/editor-components/intro-section/intro-section1/intro-section1.tsx +263 -0
- package/editor-components/intro-section/intro-section10/intro-section10.module.scss +182 -0
- package/editor-components/intro-section/intro-section10/intro-section10.tsx +167 -0
- package/editor-components/intro-section/intro-section11/intro-section11.module.scss +121 -0
- package/editor-components/intro-section/intro-section11/intro-section11.tsx +142 -0
- package/editor-components/intro-section/intro-section2/intro-section2.module.scss +125 -0
- package/editor-components/intro-section/intro-section2/intro-section2.tsx +147 -0
- package/editor-components/intro-section/intro-section3/intro-section3.module.scss +106 -0
- package/editor-components/intro-section/intro-section3/intro-section3.tsx +140 -0
- package/editor-components/intro-section/intro-section4/intro-section4.module.scss +102 -0
- package/editor-components/intro-section/intro-section4/intro-section4.tsx +128 -0
- package/editor-components/intro-section/intro-section5/intro-section5.module.scss +185 -0
- package/editor-components/intro-section/intro-section5/intro-section5.tsx +142 -0
- package/editor-components/intro-section/intro-section6/intro-section6.module.scss +219 -0
- package/editor-components/intro-section/intro-section6/intro-section6.tsx +269 -0
- package/editor-components/intro-section/intro-section7/intro-section7.module.scss +147 -0
- package/editor-components/intro-section/intro-section7/intro-section7.tsx +161 -0
- package/editor-components/intro-section/intro-section8/intro-section8.module.scss +151 -0
- package/editor-components/intro-section/intro-section8/intro-section8.tsx +182 -0
- package/editor-components/intro-section/intro-section9/intro-section9.module.scss +66 -0
- package/editor-components/intro-section/intro-section9/intro-section9.tsx +132 -0
- package/editor-components/legal/privacy-policy.module.scss +19 -0
- package/editor-components/legal/privacy-policy.tsx +126 -0
- package/editor-components/list/list1/list1.module.scss +224 -0
- package/editor-components/list/list1/list1.tsx +386 -0
- package/editor-components/list/list10/list10.module.scss +293 -0
- package/editor-components/list/list10/list10.tsx +240 -0
- package/editor-components/list/list11/list11.module.scss +164 -0
- package/editor-components/list/list11/list11.tsx +277 -0
- package/editor-components/list/list12/list12.module.scss +207 -0
- package/editor-components/list/list12/list12.tsx +241 -0
- package/editor-components/list/list2/list2.module.scss +178 -0
- package/editor-components/list/list2/list2.tsx +416 -0
- package/editor-components/list/list3/list3.module.scss +239 -0
- package/editor-components/list/list3/list3.tsx +337 -0
- package/editor-components/list/list4/list4.module.scss +243 -0
- package/editor-components/list/list4/list4.tsx +221 -0
- package/editor-components/list/list5/list5.module.scss +183 -0
- package/editor-components/list/list5/list5.tsx +323 -0
- package/editor-components/list/list6/list6.module.scss +230 -0
- package/editor-components/list/list6/list6.tsx +263 -0
- package/editor-components/list/list7/list7.module.scss +127 -0
- package/editor-components/list/list7/list7.tsx +178 -0
- package/editor-components/list/list8/list8.module.scss +146 -0
- package/editor-components/list/list8/list8.tsx +256 -0
- package/editor-components/list/list9/list9.module.scss +320 -0
- package/editor-components/list/list9/list9.tsx +265 -0
- package/editor-components/location/location1/location1.module.scss +218 -0
- package/editor-components/location/location1/location1.tsx +387 -0
- package/editor-components/location/location2/location2.module.scss +181 -0
- package/editor-components/location/location2/location2.tsx +507 -0
- package/editor-components/location/location3/location3.module.scss +118 -0
- package/editor-components/location/location3/location3.tsx +347 -0
- package/editor-components/location/location4/location4.module.scss +138 -0
- package/editor-components/location/location4/location4.tsx +221 -0
- package/editor-components/location/location5/location5.module.scss +89 -0
- package/editor-components/location/location5/location5.tsx +258 -0
- package/editor-components/location/location6/location6.module.scss +211 -0
- package/editor-components/location/location6/location6.tsx +476 -0
- package/editor-components/location/location7/location7.module.scss +245 -0
- package/editor-components/location/location7/location7.tsx +347 -0
- package/editor-components/location/themes.tsx +229 -0
- package/editor-components/logo-clouds/logo-comp1/logo-comp1.module.scss +36 -0
- package/editor-components/logo-clouds/logo-comp1/logo-comp1.tsx +119 -0
- package/editor-components/logo-clouds/logo-comp10/logo-comp10.module.scss +83 -0
- package/editor-components/logo-clouds/logo-comp10/logo-comp10.tsx +336 -0
- package/editor-components/logo-clouds/logo-comp2/logo-comp2.module.scss +90 -0
- package/editor-components/logo-clouds/logo-comp2/logo-comp2.tsx +139 -0
- package/editor-components/logo-clouds/logo-comp3/logo-comp3.module.scss +110 -0
- package/editor-components/logo-clouds/logo-comp3/logo-comp3.tsx +144 -0
- package/editor-components/logo-clouds/logo-comp4/logo-comp4.module.scss +96 -0
- package/editor-components/logo-clouds/logo-comp4/logo-comp4.tsx +151 -0
- package/editor-components/logo-clouds/logo-comp5/logo-comp5.module.scss +70 -0
- package/editor-components/logo-clouds/logo-comp5/logo-comp5.tsx +116 -0
- package/editor-components/logo-clouds/logo-comp6/logo-comp6.module.scss +58 -0
- package/editor-components/logo-clouds/logo-comp6/logo-comp6.tsx +245 -0
- package/editor-components/logo-clouds/logo-comp7/logo-comp7.module.scss +114 -0
- package/editor-components/logo-clouds/logo-comp7/logo-comp7.tsx +100 -0
- package/editor-components/logo-clouds/logo-comp8/logo-comp8.module.scss +116 -0
- package/editor-components/logo-clouds/logo-comp8/logo-comp8.tsx +275 -0
- package/editor-components/logo-clouds/logo-comp9/logo-comp9.module.scss +130 -0
- package/editor-components/logo-clouds/logo-comp9/logo-comp9.tsx +206 -0
- package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.module.scss +384 -0
- package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.tsx +355 -0
- package/editor-components/modal/confirmation-modal1/confirmationmodal1.module.scss +113 -0
- package/editor-components/modal/confirmation-modal1/confirmationmodal1.tsx +106 -0
- package/editor-components/modal/formmodal1/formmodal1.module.scss +156 -0
- package/editor-components/modal/formmodal1/formmodal1.tsx +563 -0
- package/editor-components/modal/notice-modal/notice.module.scss +92 -0
- package/editor-components/modal/notice-modal/notice.tsx +97 -0
- package/editor-components/modal/notification-modal1/notificationmodal1.module.scss +166 -0
- package/editor-components/modal/notification-modal1/notificationmodal1.tsx +136 -0
- package/editor-components/modal/notificationmodal2/notificationmodal2.module.scss +134 -0
- package/editor-components/modal/notificationmodal2/notificationmodal2.tsx +170 -0
- package/editor-components/modal/subscription-modal/subscription-modal.module.scss +151 -0
- package/editor-components/modal/subscription-modal/subscription-modal.tsx +141 -0
- package/editor-components/modal/survey-modal/survey-modal.module.scss +277 -0
- package/editor-components/modal/survey-modal/survey-modal.tsx +327 -0
- package/editor-components/modal/terms-of-use/terms-of-use.module.scss +214 -0
- package/editor-components/modal/terms-of-use/terms-of-use.tsx +142 -0
- package/editor-components/navigators/navbar1/navbar1.module.scss +633 -0
- package/editor-components/navigators/navbar1/navbar1.tsx +1644 -0
- package/editor-components/navigators/navbar10/navbar10.module.scss +961 -0
- package/editor-components/navigators/navbar10/navbar10.tsx +3070 -0
- package/editor-components/navigators/navbar2/navbar2.module.scss +559 -0
- package/editor-components/navigators/navbar2/navbar2.tsx +1009 -0
- package/editor-components/navigators/navbar3/navbar3.module.scss +583 -0
- package/editor-components/navigators/navbar3/navbar3.tsx +1790 -0
- package/editor-components/navigators/navbar4/navbar4.module.scss +708 -0
- package/editor-components/navigators/navbar4/navbar4.tsx +1864 -0
- package/editor-components/navigators/navbar5/navbar5.module.scss +415 -0
- package/editor-components/navigators/navbar5/navbar5.tsx +639 -0
- package/editor-components/navigators/navbar6/navbar6.module.scss +586 -0
- package/editor-components/navigators/navbar6/navbar6.tsx +1613 -0
- package/editor-components/navigators/navbar7/navbar7.module.scss +598 -0
- package/editor-components/navigators/navbar7/navbar7.tsx +1638 -0
- package/editor-components/navigators/navbar8/navbar8.module.scss +444 -0
- package/editor-components/navigators/navbar8/navbar8.tsx +637 -0
- package/editor-components/navigators/navbar9/navbar9.module.scss +604 -0
- package/editor-components/navigators/navbar9/navbar9.tsx +1610 -0
- package/editor-components/portfolio/portfolio1/portfolio1.module.scss +333 -0
- package/editor-components/portfolio/portfolio1/portfolio1.tsx +815 -0
- package/editor-components/portfolio/portfolio2/portfolio2.module.scss +164 -0
- package/editor-components/portfolio/portfolio2/portfolio2.tsx +332 -0
- package/editor-components/portfolio/portfolio3/portfolio3.module.scss +438 -0
- package/editor-components/portfolio/portfolio3/portfolio3.tsx +915 -0
- package/editor-components/pricing-table/pricing-table1/pricing-table1.module.scss +204 -0
- package/editor-components/pricing-table/pricing-table1/pricing-table1.tsx +698 -0
- package/editor-components/pricing-table/pricing-table2/pricing-table2.module.scss +142 -0
- package/editor-components/pricing-table/pricing-table2/pricing-table2.tsx +703 -0
- package/editor-components/pricing-table/pricing-table3/pricing-table3.module.scss +210 -0
- package/editor-components/pricing-table/pricing-table3/pricing-table3.tsx +430 -0
- package/editor-components/pricing-table/pricing-table4/pricing-table4.module.scss +170 -0
- package/editor-components/pricing-table/pricing-table4/pricing-table4.tsx +594 -0
- package/editor-components/pricing-table/pricing-table5/pricing-table5.module.scss +316 -0
- package/editor-components/pricing-table/pricing-table5/pricing-table5.tsx +267 -0
- package/editor-components/pricing-table/pricing-table6/pricing-table6.module.scss +409 -0
- package/editor-components/pricing-table/pricing-table6/pricing-table6.tsx +1189 -0
- package/editor-components/pricing-table/pricing-table7/pricing-table7.module.scss +269 -0
- package/editor-components/pricing-table/pricing-table7/pricing-table7.tsx +1161 -0
- package/editor-components/pricing-table/pricing-table8/pricing-table8.module.scss +366 -0
- package/editor-components/pricing-table/pricing-table8/pricing-table8.tsx +574 -0
- package/editor-components/pricing-table/pricing-table9/pricing-table9.module.scss +357 -0
- package/editor-components/pricing-table/pricing-table9/pricing-table9.tsx +857 -0
- package/editor-components/registerables.tsx +681 -0
- package/editor-components/slider/slider1/slider1.module.scss +324 -0
- package/editor-components/slider/slider1/slider1.tsx +254 -0
- package/editor-components/slider/slider10/slider10.module.scss +287 -0
- package/editor-components/slider/slider10/slider10.tsx +446 -0
- package/editor-components/slider/slider11/slider11.module.scss +216 -0
- package/editor-components/slider/slider11/slider11.tsx +366 -0
- package/editor-components/slider/slider12/slider12.module.scss +273 -0
- package/editor-components/slider/slider12/slider12.tsx +535 -0
- package/editor-components/slider/slider2/slider2.module.scss +213 -0
- package/editor-components/slider/slider2/slider2.tsx +331 -0
- package/editor-components/slider/slider3/slider3.module.scss +227 -0
- package/editor-components/slider/slider3/slider3.tsx +280 -0
- package/editor-components/slider/slider4/slider4.module.scss +221 -0
- package/editor-components/slider/slider4/slider4.tsx +334 -0
- package/editor-components/slider/slider5/slider5.module.scss +39 -0
- package/editor-components/slider/slider5/slider5.tsx +106 -0
- package/editor-components/slider/slider6/slider6.module.scss +205 -0
- package/editor-components/slider/slider6/slider6.tsx +337 -0
- package/editor-components/slider/slider7/slider7.module.scss +134 -0
- package/editor-components/slider/slider7/slider7.tsx +270 -0
- package/editor-components/slider/slider8/slider8.module.scss +580 -0
- package/editor-components/slider/slider8/slider8.tsx +350 -0
- package/editor-components/slider/slider9/slider9.module.scss +1160 -0
- package/editor-components/slider/slider9/slider9.tsx +556 -0
- package/editor-components/social/social1/social1.module.scss +229 -0
- package/editor-components/social/social1/social1.tsx +726 -0
- package/editor-components/social/social2/social2.module.scss +299 -0
- package/editor-components/social/social2/social2.tsx +1086 -0
- package/editor-components/social/social3/social3.module.scss +131 -0
- package/editor-components/social/social3/social3.tsx +296 -0
- package/editor-components/social/social4/social4.module.scss +405 -0
- package/editor-components/social/social4/social4.tsx +1940 -0
- package/editor-components/social_widget/social_widget1/social_widget1.module.scss +10 -0
- package/editor-components/social_widget/social_widget1/social_widget1.tsx +31 -0
- package/editor-components/social_widget/social_widget2/social_widget2.module.scss +10 -0
- package/editor-components/social_widget/social_widget2/social_widget2.tsx +35 -0
- package/editor-components/social_widget/social_widget3/social_widget3.module.scss +10 -0
- package/editor-components/social_widget/social_widget3/social_widget3.tsx +32 -0
- package/editor-components/social_widget/social_widget4/social_widget4.module.scss +10 -0
- package/editor-components/social_widget/social_widget4/social_widget4.tsx +32 -0
- package/editor-components/social_widget/social_widget5/social_widget5.module.scss +10 -0
- package/editor-components/social_widget/social_widget5/social_widget5.tsx +32 -0
- package/editor-components/stats/stats1/stats1.module.scss +153 -0
- package/editor-components/stats/stats1/stats1.tsx +279 -0
- package/editor-components/stats/stats10/stats10.module.scss +346 -0
- package/editor-components/stats/stats10/stats10.tsx +364 -0
- package/editor-components/stats/stats11/stats11.module.scss +167 -0
- package/editor-components/stats/stats11/stats11.tsx +242 -0
- package/editor-components/stats/stats12/stats12.module.scss +244 -0
- package/editor-components/stats/stats12/stats12.tsx +174 -0
- package/editor-components/stats/stats13/stats13.module.scss +311 -0
- package/editor-components/stats/stats13/stats13.tsx +432 -0
- package/editor-components/stats/stats14/stats14.module.scss +192 -0
- package/editor-components/stats/stats14/stats14.tsx +222 -0
- package/editor-components/stats/stats15/stats15.module.scss +174 -0
- package/editor-components/stats/stats15/stats15.tsx +242 -0
- package/editor-components/stats/stats2/stats2.module.scss +243 -0
- package/editor-components/stats/stats2/stats2.tsx +333 -0
- package/editor-components/stats/stats3/stats3.module.scss +302 -0
- package/editor-components/stats/stats3/stats3.tsx +212 -0
- package/editor-components/stats/stats4/stats4.module.scss +133 -0
- package/editor-components/stats/stats4/stats4.tsx +467 -0
- package/editor-components/stats/stats5/stats5.module.scss +104 -0
- package/editor-components/stats/stats5/stats5.tsx +257 -0
- package/editor-components/stats/stats6/stats6.module.scss +76 -0
- package/editor-components/stats/stats6/stats6.tsx +241 -0
- package/editor-components/stats/stats7/stats7.module.scss +101 -0
- package/editor-components/stats/stats7/stats7.tsx +184 -0
- package/editor-components/stats/stats8/stats8.module.scss +321 -0
- package/editor-components/stats/stats8/stats8.tsx +358 -0
- package/editor-components/stats/stats9/stats9.module.scss +282 -0
- package/editor-components/stats/stats9/stats9.tsx +330 -0
- package/editor-components/team/team-1/team1.module.scss +247 -0
- package/editor-components/team/team-1/team1.tsx +357 -0
- package/editor-components/team/team-10/team10.module.scss +307 -0
- package/editor-components/team/team-10/team10.tsx +510 -0
- package/editor-components/team/team-11/team11.module.scss +245 -0
- package/editor-components/team/team-11/team11.tsx +435 -0
- package/editor-components/team/team-12/team12.module.scss +186 -0
- package/editor-components/team/team-12/team12.tsx +305 -0
- package/editor-components/team/team-13/team13.module.scss +271 -0
- package/editor-components/team/team-13/team13.tsx +255 -0
- package/editor-components/team/team-14/team14.module.scss +203 -0
- package/editor-components/team/team-14/team14.tsx +202 -0
- package/editor-components/team/team-15/team15.module.scss +275 -0
- package/editor-components/team/team-15/team15.tsx +417 -0
- package/editor-components/team/team-16/team16.module.scss +145 -0
- package/editor-components/team/team-16/team16.tsx +219 -0
- package/editor-components/team/team-2/team2.module.scss +175 -0
- package/editor-components/team/team-2/team2.tsx +397 -0
- package/editor-components/team/team-3/team3.module.scss +251 -0
- package/editor-components/team/team-3/team3.tsx +380 -0
- package/editor-components/team/team-4/team4.module.scss +66 -0
- package/editor-components/team/team-4/team4.tsx +194 -0
- package/editor-components/team/team-5/team5.module.scss +219 -0
- package/editor-components/team/team-5/team5.tsx +492 -0
- package/editor-components/team/team-6/team6.module.scss +157 -0
- package/editor-components/team/team-6/team6.tsx +620 -0
- package/editor-components/team/team-7/team7.module.scss +211 -0
- package/editor-components/team/team-7/team7.tsx +333 -0
- package/editor-components/team/team-8/team8.module.scss +214 -0
- package/editor-components/team/team-8/team8.tsx +349 -0
- package/editor-components/team/team-9/team9.module.scss +307 -0
- package/editor-components/team/team-9/team9.tsx +363 -0
- package/editor-components/testimonials/testimonials1/testimonials1.module.scss +156 -0
- package/editor-components/testimonials/testimonials1/testimonials1.tsx +190 -0
- package/editor-components/testimonials/testimonials10/testimonials10.module.scss +281 -0
- package/editor-components/testimonials/testimonials10/testimonials10.tsx +360 -0
- package/editor-components/testimonials/testimonials11/testimonials11.module.scss +78 -0
- package/editor-components/testimonials/testimonials11/testimonials11.tsx +267 -0
- package/editor-components/testimonials/testimonials12/testimonials12.module.scss +115 -0
- package/editor-components/testimonials/testimonials12/testimonials12.tsx +293 -0
- package/editor-components/testimonials/testimonials13/testimonials13.module.scss +220 -0
- package/editor-components/testimonials/testimonials13/testimonials13.tsx +357 -0
- package/editor-components/testimonials/testimonials14/testimonials14.module.scss +216 -0
- package/editor-components/testimonials/testimonials14/testimonials14.tsx +364 -0
- package/editor-components/testimonials/testimonials15/testimonials15.module.scss +685 -0
- package/editor-components/testimonials/testimonials15/testimonials15.tsx +422 -0
- package/editor-components/testimonials/testimonials16/testimonials16.module.scss +754 -0
- package/editor-components/testimonials/testimonials16/testimonials16.tsx +625 -0
- package/editor-components/testimonials/testimonials2/testimonials2.module.scss +100 -0
- package/editor-components/testimonials/testimonials2/testimonials2.tsx +301 -0
- package/editor-components/testimonials/testimonials3/testimonials3.module.scss +37 -0
- package/editor-components/testimonials/testimonials3/testimonials3.tsx +148 -0
- package/editor-components/testimonials/testimonials4/testimonials4.module.scss +205 -0
- package/editor-components/testimonials/testimonials4/testimonials4.tsx +266 -0
- package/editor-components/testimonials/testimonials5/testimonials5.module.scss +221 -0
- package/editor-components/testimonials/testimonials5/testimonials5.tsx +319 -0
- package/editor-components/testimonials/testimonials6/testimonials6.module.scss +82 -0
- package/editor-components/testimonials/testimonials6/testimonials6.tsx +344 -0
- package/editor-components/testimonials/testimonials7/testimonials7.module.scss +316 -0
- package/editor-components/testimonials/testimonials7/testimonials7.tsx +248 -0
- package/editor-components/testimonials/testimonials8/testimonials8.module.scss +197 -0
- package/editor-components/testimonials/testimonials8/testimonials8.tsx +287 -0
- package/editor-components/testimonials/testimonials9/testimonials9.module.scss +137 -0
- package/editor-components/testimonials/testimonials9/testimonials9.tsx +372 -0
- package/index.ts +103 -0
- package/package.json +40 -0
- package/utils/css-processor.ts +131 -0
- package/utils/currency.ts +89 -0
|
@@ -0,0 +1,1940 @@
|
|
|
1
|
+
import { BaseSocial } from "composer-tools/editor-components/EditorComponent";
|
|
2
|
+
import styles from "./social4.module.scss"
|
|
3
|
+
import { Base } from "composer-tools/composer-base-components/base/base";
|
|
4
|
+
import ComposerLink from "custom-hooks/composer-base-components/Link/link";
|
|
5
|
+
import ComposerSlider from "composer-tools/composer-base-components/slider/slider";
|
|
6
|
+
import { INPUTS } from "composer-tools/custom-hooks/input-templates";
|
|
7
|
+
import React from "react";
|
|
8
|
+
import { FaLessThanEqual } from "react-icons/fa";
|
|
9
|
+
import { TbRubberStamp } from "react-icons/tb";
|
|
10
|
+
|
|
11
|
+
type CardItem ={
|
|
12
|
+
videoUrl: React.JSX.Element,
|
|
13
|
+
imageItems: ImageItem[],
|
|
14
|
+
likeCount: number,
|
|
15
|
+
commentCount: number,
|
|
16
|
+
description: React.JSX.Element,
|
|
17
|
+
url: string,
|
|
18
|
+
videoIconActive: boolean,
|
|
19
|
+
imageIconActive : boolean,
|
|
20
|
+
name: React.JSX.Element,
|
|
21
|
+
porfileImage: string,
|
|
22
|
+
socialIcon: string,
|
|
23
|
+
button: INPUTS.CastedButton;
|
|
24
|
+
date: string;
|
|
25
|
+
}
|
|
26
|
+
type ImageItem={
|
|
27
|
+
image : string
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
class Social4 extends BaseSocial {
|
|
31
|
+
constructor(props?: any) {
|
|
32
|
+
super(props, styles);
|
|
33
|
+
this.addProp({
|
|
34
|
+
type: "string",
|
|
35
|
+
key:"title",
|
|
36
|
+
displayer: "Title",
|
|
37
|
+
value: "Follow us on Instagram"
|
|
38
|
+
})
|
|
39
|
+
this.addProp({
|
|
40
|
+
type: "number",
|
|
41
|
+
key: "initialCount",
|
|
42
|
+
displayer:"Image Count Initial",
|
|
43
|
+
value:10
|
|
44
|
+
})
|
|
45
|
+
this.addProp({
|
|
46
|
+
type: "number",
|
|
47
|
+
key:"rowCount",
|
|
48
|
+
displayer: "Count in a row",
|
|
49
|
+
value:5
|
|
50
|
+
})
|
|
51
|
+
this.addProp({
|
|
52
|
+
type: "number",
|
|
53
|
+
key:"moreCount",
|
|
54
|
+
displayer:"More Image Count",
|
|
55
|
+
value:5
|
|
56
|
+
})
|
|
57
|
+
this.addProp(INPUTS.BUTTON("button", "Button", "Load More", null, null, null, "Primary"));
|
|
58
|
+
this.addProp({
|
|
59
|
+
type: "array",
|
|
60
|
+
key: "cardItems",
|
|
61
|
+
displayer: "Card Items",
|
|
62
|
+
value:[
|
|
63
|
+
{
|
|
64
|
+
type:"object",
|
|
65
|
+
key: "cardItem",
|
|
66
|
+
displayer:"Card Item",
|
|
67
|
+
value:[
|
|
68
|
+
{
|
|
69
|
+
type:"string",
|
|
70
|
+
key: "videoUrl",
|
|
71
|
+
displayer:"Video Url",
|
|
72
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801fec5bf76cc002cc3bca5?alt=media×tamp=1744961224764"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
type:"array",
|
|
76
|
+
key: "imageItems",
|
|
77
|
+
displayer:"Image Items",
|
|
78
|
+
value: [
|
|
79
|
+
{
|
|
80
|
+
type:"object",
|
|
81
|
+
key: "imageItem",
|
|
82
|
+
displayer: "Image Item",
|
|
83
|
+
value:
|
|
84
|
+
[
|
|
85
|
+
{
|
|
86
|
+
type: "image",
|
|
87
|
+
key: "image",
|
|
88
|
+
displayer: "Image",
|
|
89
|
+
value: ""
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type:"number",
|
|
97
|
+
key: "likeCount",
|
|
98
|
+
displayer:"Like Count",
|
|
99
|
+
value: 7.500
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type:"number",
|
|
103
|
+
key: "commentCount",
|
|
104
|
+
displayer:"Comment Count",
|
|
105
|
+
value: 3.200
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
type:"string",
|
|
109
|
+
key: "description",
|
|
110
|
+
displayer:"Description",
|
|
111
|
+
value: "There’s something magical about sailing. The sound of waves against the hull, the wind filling the sails, and the horizon stretching endlessly ahead. It’s not just a sport — it’s freedom, adventure, and peace all at once. Whether you're navigating calm waters or riding the ocean breeze, sailing reminds us to slow down, breathe, and embrace the journey — not just the destination. Here’s to salty air, sun-kissed skin, and the endless blue. 🌤️ #SailingLife #OceanVibes #WindAndWaves #FreedomAtSea"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: "page",
|
|
115
|
+
key: "url",
|
|
116
|
+
displayer: "Url",
|
|
117
|
+
value: ""
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type:"boolean",
|
|
121
|
+
key: "videoIconActive",
|
|
122
|
+
displayer: "Video Icon Active",
|
|
123
|
+
value: true
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type:"boolean",
|
|
127
|
+
key: "imageIconActive",
|
|
128
|
+
displayer: "Image Icon Active",
|
|
129
|
+
value: false
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: "string",
|
|
133
|
+
key: "name",
|
|
134
|
+
displayer: "Name",
|
|
135
|
+
value: "TheVibeExplorer"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: "image",
|
|
139
|
+
key: "porfileImage",
|
|
140
|
+
displayer:"Profile Image",
|
|
141
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67ce95243504dd002c5d0939?alt=media×tamp=1744960949771"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: "icon",
|
|
145
|
+
key: "socialIcon",
|
|
146
|
+
displayer: "Social Icon",
|
|
147
|
+
value: "FaInstagram"
|
|
148
|
+
},
|
|
149
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
150
|
+
{
|
|
151
|
+
type: "dateTime",
|
|
152
|
+
key: "date",
|
|
153
|
+
displayer: "Date",
|
|
154
|
+
value: "12/11/2024",
|
|
155
|
+
additionalParams:{
|
|
156
|
+
mode: "date",
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type:"object",
|
|
165
|
+
key: "cardItem",
|
|
166
|
+
displayer:"Card Item",
|
|
167
|
+
value:[
|
|
168
|
+
{
|
|
169
|
+
type:"string",
|
|
170
|
+
key: "videoUrl",
|
|
171
|
+
displayer:"Video Url",
|
|
172
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801ffc5bf76cc002cc3bd38?alt=media×tamp=1744961479941"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type:"array",
|
|
176
|
+
key: "imageItems",
|
|
177
|
+
displayer:"Image Items",
|
|
178
|
+
value: [
|
|
179
|
+
{
|
|
180
|
+
type:"object",
|
|
181
|
+
key: "imageItem",
|
|
182
|
+
displayer: "Image Item",
|
|
183
|
+
value:
|
|
184
|
+
[
|
|
185
|
+
{
|
|
186
|
+
type: "image",
|
|
187
|
+
key: "image",
|
|
188
|
+
displayer: "Image",
|
|
189
|
+
value: ""
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
}
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type:"number",
|
|
197
|
+
key: "likeCount",
|
|
198
|
+
displayer:"Like Count",
|
|
199
|
+
value: 9.450
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
type:"number",
|
|
203
|
+
key: "commentCount",
|
|
204
|
+
displayer:"Comment Count",
|
|
205
|
+
value: 2.530
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
type:"string",
|
|
209
|
+
key: "description",
|
|
210
|
+
displayer:"Description",
|
|
211
|
+
value: "Every street has a story. 🚶♂️🛣️. From early morning footsteps to late-night lights, streets carry the rhythm of everyday life. Look closer — there’s magic in the ordinary. #StreetVibes #CityLife #EverydayStories"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
type: "page",
|
|
215
|
+
key: "url",
|
|
216
|
+
displayer: "Url",
|
|
217
|
+
value: ""
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
type:"boolean",
|
|
221
|
+
key: "videoIconActive",
|
|
222
|
+
displayer: "Video Icon Active",
|
|
223
|
+
value: true
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
type:"boolean",
|
|
227
|
+
key: "imageIconActive",
|
|
228
|
+
displayer: "Image Icon Active",
|
|
229
|
+
value: false
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
type: "string",
|
|
233
|
+
key: "name",
|
|
234
|
+
displayer: "Name",
|
|
235
|
+
value: "UrbanDreamer_"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
type: "image",
|
|
239
|
+
key: "porfileImage",
|
|
240
|
+
displayer:"Profile Image",
|
|
241
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67cb0f22fe2b08002d44d96d?alt=media×tamp=1744960949771"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
type: "icon",
|
|
245
|
+
key: "socialIcon",
|
|
246
|
+
displayer: "Social Icon",
|
|
247
|
+
value: "FaInstagram"
|
|
248
|
+
},
|
|
249
|
+
|
|
250
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
251
|
+
{
|
|
252
|
+
type: "dateTime",
|
|
253
|
+
key: "date",
|
|
254
|
+
displayer: "Date",
|
|
255
|
+
value: "12/10/2024",
|
|
256
|
+
additionalParams:{
|
|
257
|
+
mode: "date",
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
type:"object",
|
|
265
|
+
key: "cardItem",
|
|
266
|
+
displayer:"Card Item",
|
|
267
|
+
value:[
|
|
268
|
+
{
|
|
269
|
+
type:"string",
|
|
270
|
+
key: "videoUrl",
|
|
271
|
+
displayer:"Video Url",
|
|
272
|
+
value: ""
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
type:"array",
|
|
276
|
+
key: "imageItems",
|
|
277
|
+
displayer:"Image Items",
|
|
278
|
+
value: [
|
|
279
|
+
{
|
|
280
|
+
type:"object",
|
|
281
|
+
key: "imageItem",
|
|
282
|
+
displayer: "Image Item",
|
|
283
|
+
value:
|
|
284
|
+
[
|
|
285
|
+
{
|
|
286
|
+
type: "image",
|
|
287
|
+
key: "image",
|
|
288
|
+
displayer: "Image",
|
|
289
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801fdd7bf76cc002cc3bbab?alt=media×tamp=1744960987167"
|
|
290
|
+
}
|
|
291
|
+
]
|
|
292
|
+
}
|
|
293
|
+
]
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
type:"number",
|
|
297
|
+
key: "likeCount",
|
|
298
|
+
displayer:"Like Count",
|
|
299
|
+
value: 12.300
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
type:"number",
|
|
303
|
+
key: "commentCount",
|
|
304
|
+
displayer:"Comment Count",
|
|
305
|
+
value: 1.500
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
type:"string",
|
|
309
|
+
key: "description",
|
|
310
|
+
displayer:"Description",
|
|
311
|
+
value: "Architecture is where history meets imagination. 🏛️✈️. Every building tells a story — of culture, time, and vision. Wandering through unfamiliar streets, discovering hidden architectural gems, reminds us why we travel: to be inspired. Sometimes it’s not the destination, but the details that take your breath away. #ArchitecturalWonders #TravelMoments #DesignInspiration #Wanderlust"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
type: "page",
|
|
315
|
+
key: "url",
|
|
316
|
+
displayer: "Url",
|
|
317
|
+
value: ""
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
type:"boolean",
|
|
321
|
+
key: "videoIconActive",
|
|
322
|
+
displayer: "Video Icon Active",
|
|
323
|
+
value: false
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
type:"boolean",
|
|
327
|
+
key: "imageIconActive",
|
|
328
|
+
displayer: "Image Icon Active",
|
|
329
|
+
value: false
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
type: "string",
|
|
333
|
+
key: "name",
|
|
334
|
+
displayer: "Name",
|
|
335
|
+
value: "PixelPursuit"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
type: "image",
|
|
339
|
+
key: "porfileImage",
|
|
340
|
+
displayer:"Profile Image",
|
|
341
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67c94af4fe2b08002d430306?alt=media×tamp=1744960949770"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
type: "icon",
|
|
345
|
+
key: "socialIcon",
|
|
346
|
+
displayer: "Social Icon",
|
|
347
|
+
value: "FaInstagram"
|
|
348
|
+
},
|
|
349
|
+
|
|
350
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
351
|
+
{
|
|
352
|
+
type: "dateTime",
|
|
353
|
+
key: "date",
|
|
354
|
+
displayer: "Date",
|
|
355
|
+
value: "12/12/2024",
|
|
356
|
+
additionalParams:{
|
|
357
|
+
mode: "date",
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
type:"object",
|
|
365
|
+
key: "cardItem",
|
|
366
|
+
displayer:"Card Item",
|
|
367
|
+
value:[
|
|
368
|
+
{
|
|
369
|
+
type:"string",
|
|
370
|
+
key: "videoUrl",
|
|
371
|
+
displayer:"Video Url",
|
|
372
|
+
value: ""
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
type:"array",
|
|
376
|
+
key: "imageItems",
|
|
377
|
+
displayer:"Image Items",
|
|
378
|
+
value: [
|
|
379
|
+
{
|
|
380
|
+
type:"object",
|
|
381
|
+
key: "imageItem",
|
|
382
|
+
displayer: "Image Item",
|
|
383
|
+
value:
|
|
384
|
+
[
|
|
385
|
+
{
|
|
386
|
+
type: "image",
|
|
387
|
+
key: "image",
|
|
388
|
+
displayer: "Image",
|
|
389
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801fe14bf76cc002cc3bbdc?alt=media×tamp=1744961046618"
|
|
390
|
+
},
|
|
391
|
+
]
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
type:"object",
|
|
395
|
+
key: "imageItem",
|
|
396
|
+
displayer: "Image Item",
|
|
397
|
+
value:
|
|
398
|
+
[
|
|
399
|
+
{
|
|
400
|
+
type: "image",
|
|
401
|
+
key: "image",
|
|
402
|
+
displayer: "Image",
|
|
403
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801fe45bf76cc002cc3bc1c?alt=media×tamp=1744961097553"
|
|
404
|
+
},
|
|
405
|
+
]
|
|
406
|
+
}
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
type:"number",
|
|
411
|
+
key: "likeCount",
|
|
412
|
+
displayer:"Like Count",
|
|
413
|
+
value: 6.900
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
type:"number",
|
|
417
|
+
key: "commentCount",
|
|
418
|
+
displayer:"Comment Count",
|
|
419
|
+
value: 13.100
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
type:"string",
|
|
423
|
+
key: "description",
|
|
424
|
+
displayer:"Description",
|
|
425
|
+
value: "In black and white, the city speaks louder. 🖤🏙️. No colors, no distractions — just shadows, lights, and lines. A different kind of beauty hides in monochrome: raw, timeless, and honest. Every skyline tells a silent story. #BlackAndWhiteCity #UrbanMood #MonochromeMagic #CitySilhouettes"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
type: "page",
|
|
429
|
+
key: "url",
|
|
430
|
+
displayer: "Url",
|
|
431
|
+
value: ""
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
type:"boolean",
|
|
435
|
+
key: "videoIconActive",
|
|
436
|
+
displayer: "Video Icon Active",
|
|
437
|
+
value: false
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
type:"boolean",
|
|
441
|
+
key: "imageIconActive",
|
|
442
|
+
displayer: "Image Icon Active",
|
|
443
|
+
value: true
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
type: "string",
|
|
447
|
+
key: "name",
|
|
448
|
+
displayer: "Name",
|
|
449
|
+
value: "GlimmerAndGrit"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
type: "image",
|
|
453
|
+
key: "porfileImage",
|
|
454
|
+
displayer:"Profile Image",
|
|
455
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67c94b07fe2b08002d43030d?alt=media×tamp=1744960949770"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
type: "icon",
|
|
459
|
+
key: "socialIcon",
|
|
460
|
+
displayer: "Social Icon",
|
|
461
|
+
value: "FaInstagram"
|
|
462
|
+
},
|
|
463
|
+
|
|
464
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
465
|
+
{
|
|
466
|
+
type: "dateTime",
|
|
467
|
+
key: "date",
|
|
468
|
+
displayer: "Date",
|
|
469
|
+
value: "01/01/2024",
|
|
470
|
+
additionalParams:{
|
|
471
|
+
mode: "date",
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
type:"object",
|
|
479
|
+
key: "cardItem",
|
|
480
|
+
displayer:"Card Item",
|
|
481
|
+
value:[
|
|
482
|
+
{
|
|
483
|
+
type:"string",
|
|
484
|
+
key: "videoUrl",
|
|
485
|
+
displayer:"Video Url",
|
|
486
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801ff32bf76cc002cc3bcea?alt=media×tamp=1744961331979"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
type:"array",
|
|
490
|
+
key: "imageItems",
|
|
491
|
+
displayer:"Image Items",
|
|
492
|
+
value: [
|
|
493
|
+
{
|
|
494
|
+
type:"object",
|
|
495
|
+
key: "imageItem",
|
|
496
|
+
displayer: "Image Item",
|
|
497
|
+
value:
|
|
498
|
+
[
|
|
499
|
+
{
|
|
500
|
+
type: "image",
|
|
501
|
+
key: "image",
|
|
502
|
+
displayer: "Image",
|
|
503
|
+
value: ""
|
|
504
|
+
},
|
|
505
|
+
]
|
|
506
|
+
},
|
|
507
|
+
]
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
type:"number",
|
|
511
|
+
key: "likeCount",
|
|
512
|
+
displayer:"Like Count",
|
|
513
|
+
value: 500
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
type:"number",
|
|
517
|
+
key: "commentCount",
|
|
518
|
+
displayer:"Comment Count",
|
|
519
|
+
value: 200
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
type:"string",
|
|
523
|
+
key: "description",
|
|
524
|
+
displayer:"Description",
|
|
525
|
+
value: "Lost in the magic of Cappadocia. 🎈🧡"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
type: "page",
|
|
529
|
+
key: "url",
|
|
530
|
+
displayer: "Url",
|
|
531
|
+
value: ""
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
type:"boolean",
|
|
535
|
+
key: "videoIconActive",
|
|
536
|
+
displayer: "Video Icon Active",
|
|
537
|
+
value: true
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
type:"boolean",
|
|
541
|
+
key: "imageIconActive",
|
|
542
|
+
displayer: "Image Icon Active",
|
|
543
|
+
value: false
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
type: "string",
|
|
547
|
+
key: "name",
|
|
548
|
+
displayer: "Name",
|
|
549
|
+
value: "LunaVibes_"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
type: "image",
|
|
553
|
+
key: "porfileImage",
|
|
554
|
+
displayer:"Profile Image",
|
|
555
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67aca1d16341de002b7f73d2?alt=media×tamp=1744960949770"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
type: "icon",
|
|
559
|
+
key: "socialIcon",
|
|
560
|
+
displayer: "Social Icon",
|
|
561
|
+
value: "FaInstagram"
|
|
562
|
+
},
|
|
563
|
+
|
|
564
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
565
|
+
{
|
|
566
|
+
type: "dateTime",
|
|
567
|
+
key: "date",
|
|
568
|
+
displayer: "Date",
|
|
569
|
+
value: "01/01/2024",
|
|
570
|
+
additionalParams:{
|
|
571
|
+
mode: "date",
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
type:"object",
|
|
579
|
+
key: "cardItem",
|
|
580
|
+
displayer:"Card Item",
|
|
581
|
+
value:[
|
|
582
|
+
{
|
|
583
|
+
type:"string",
|
|
584
|
+
key: "videoUrl",
|
|
585
|
+
displayer:"Video Url",
|
|
586
|
+
value: ""
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
type:"array",
|
|
590
|
+
key: "imageItems",
|
|
591
|
+
displayer:"Image Items",
|
|
592
|
+
value: [
|
|
593
|
+
{
|
|
594
|
+
type:"object",
|
|
595
|
+
key: "imageItem",
|
|
596
|
+
displayer: "Image Item",
|
|
597
|
+
value:
|
|
598
|
+
[
|
|
599
|
+
{
|
|
600
|
+
type: "image",
|
|
601
|
+
key: "image",
|
|
602
|
+
displayer: "Image",
|
|
603
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6802001fbf76cc002cc3bd55?alt=media×tamp=1744961569247"
|
|
604
|
+
},
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
type:"number",
|
|
611
|
+
key: "likeCount",
|
|
612
|
+
displayer:"Like Count",
|
|
613
|
+
value: 13.400
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
type:"number",
|
|
617
|
+
key: "commentCount",
|
|
618
|
+
displayer:"Comment Count",
|
|
619
|
+
value: 1.500
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
type:"string",
|
|
623
|
+
key: "description",
|
|
624
|
+
displayer:"Description",
|
|
625
|
+
value: "Flavors of Asia in every bite. 🍜🌶️🥢. From spicy street food to delicate dumplings — Asian cuisine is a journey for the senses. #AsianFoodLovers #TasteOfAsia #FoodieAdventure #SpiceAndSoul"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
type: "page",
|
|
629
|
+
key: "url",
|
|
630
|
+
displayer: "Url",
|
|
631
|
+
value: ""
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
type:"boolean",
|
|
635
|
+
key: "videoIconActive",
|
|
636
|
+
displayer: "Video Icon Active",
|
|
637
|
+
value: false
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
type:"boolean",
|
|
641
|
+
key: "imageIconActive",
|
|
642
|
+
displayer: "Image Icon Active",
|
|
643
|
+
value: true
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
type: "string",
|
|
647
|
+
key: "name",
|
|
648
|
+
displayer: "Name",
|
|
649
|
+
value: "WanderingSoul_23"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
type: "image",
|
|
653
|
+
key: "porfileImage",
|
|
654
|
+
displayer:"Profile Image",
|
|
655
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67f7bd84fb049c002cc6ffab?alt=media×tamp=1744960949771"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
type: "icon",
|
|
659
|
+
key: "socialIcon",
|
|
660
|
+
displayer: "Social Icon",
|
|
661
|
+
value: "FaInstagram"
|
|
662
|
+
},
|
|
663
|
+
|
|
664
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
665
|
+
{
|
|
666
|
+
type: "dateTime",
|
|
667
|
+
key: "date",
|
|
668
|
+
displayer: "Date",
|
|
669
|
+
value: "01/01/2024",
|
|
670
|
+
additionalParams:{
|
|
671
|
+
mode: "date",
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
type:"object",
|
|
679
|
+
key: "cardItem",
|
|
680
|
+
displayer:"Card Item",
|
|
681
|
+
value:[
|
|
682
|
+
{
|
|
683
|
+
type:"string",
|
|
684
|
+
key: "videoUrl",
|
|
685
|
+
displayer:"Video Url",
|
|
686
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6801ff06bf76cc002cc3bce4?alt=media×tamp=1744961288526"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
type:"array",
|
|
690
|
+
key: "imageItems",
|
|
691
|
+
displayer:"Image Items",
|
|
692
|
+
value: [
|
|
693
|
+
{
|
|
694
|
+
type:"object",
|
|
695
|
+
key: "imageItem",
|
|
696
|
+
displayer: "Image Item",
|
|
697
|
+
value:
|
|
698
|
+
[
|
|
699
|
+
{
|
|
700
|
+
type: "image",
|
|
701
|
+
key: "image",
|
|
702
|
+
displayer: "Image",
|
|
703
|
+
value: ""
|
|
704
|
+
},
|
|
705
|
+
]
|
|
706
|
+
},
|
|
707
|
+
]
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
type:"number",
|
|
711
|
+
key: "likeCount",
|
|
712
|
+
displayer:"Like Count",
|
|
713
|
+
value: 23.980
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
type:"number",
|
|
717
|
+
key: "commentCount",
|
|
718
|
+
displayer:"Comment Count",
|
|
719
|
+
value: 9.400
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
type:"string",
|
|
723
|
+
key: "description",
|
|
724
|
+
displayer:"Description",
|
|
725
|
+
value: "The ocean doesn’t ask for attention — it takes it. 🌊💙. Endless, powerful, and deeply calming. Where the waves speak louder than words.#OceanVibes #SeaLover #BlueEscape #WavesAndWhispers"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
type: "page",
|
|
729
|
+
key: "url",
|
|
730
|
+
displayer: "Url",
|
|
731
|
+
value: ""
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
type:"boolean",
|
|
735
|
+
key: "videoIconActive",
|
|
736
|
+
displayer: "Video Icon Active",
|
|
737
|
+
value: true
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
type:"boolean",
|
|
741
|
+
key: "imageIconActive",
|
|
742
|
+
displayer: "Image Icon Active",
|
|
743
|
+
value: false
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
type: "string",
|
|
747
|
+
key: "name",
|
|
748
|
+
displayer: "Name",
|
|
749
|
+
value: "StarryHorizon_"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
type: "image",
|
|
753
|
+
key: "porfileImage",
|
|
754
|
+
displayer:"Profile Image",
|
|
755
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67e40a6cfb049c002cc41c31?alt=media×tamp=1744799202064"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
type: "icon",
|
|
759
|
+
key: "socialIcon",
|
|
760
|
+
displayer: "Social Icon",
|
|
761
|
+
value: "FaInstagram"
|
|
762
|
+
},
|
|
763
|
+
|
|
764
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
765
|
+
{
|
|
766
|
+
type: "dateTime",
|
|
767
|
+
key: "date",
|
|
768
|
+
displayer: "Date",
|
|
769
|
+
value: "01/01/2024",
|
|
770
|
+
additionalParams:{
|
|
771
|
+
mode: "date",
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
type:"object",
|
|
779
|
+
key: "cardItem",
|
|
780
|
+
displayer:"Card Item",
|
|
781
|
+
value:[
|
|
782
|
+
{
|
|
783
|
+
type:"string",
|
|
784
|
+
key: "videoUrl",
|
|
785
|
+
displayer:"Video Url",
|
|
786
|
+
value: ""
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
type:"array",
|
|
790
|
+
key: "imageItems",
|
|
791
|
+
displayer:"Image Items",
|
|
792
|
+
value: [
|
|
793
|
+
{
|
|
794
|
+
type:"object",
|
|
795
|
+
key: "imageItem",
|
|
796
|
+
displayer: "Image Item",
|
|
797
|
+
value:
|
|
798
|
+
[
|
|
799
|
+
{
|
|
800
|
+
type: "image",
|
|
801
|
+
key: "image",
|
|
802
|
+
displayer: "Image",
|
|
803
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6802012fbf76cc002cc3bdbd?alt=media×tamp=1744961841826"
|
|
804
|
+
},
|
|
805
|
+
]
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
type:"object",
|
|
809
|
+
key: "imageItem",
|
|
810
|
+
displayer: "Image Item",
|
|
811
|
+
value:
|
|
812
|
+
[
|
|
813
|
+
{
|
|
814
|
+
type: "image",
|
|
815
|
+
key: "image",
|
|
816
|
+
displayer: "Image",
|
|
817
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020154bf76cc002cc3bdc1?alt=media×tamp=1744961878598"
|
|
818
|
+
},
|
|
819
|
+
]
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
type:"object",
|
|
823
|
+
key: "imageItem",
|
|
824
|
+
displayer: "Image Item",
|
|
825
|
+
value:
|
|
826
|
+
[
|
|
827
|
+
{
|
|
828
|
+
type: "image",
|
|
829
|
+
key: "image",
|
|
830
|
+
displayer: "Image",
|
|
831
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6802017abf76cc002cc3bdd2?alt=media×tamp=1744961916904"
|
|
832
|
+
},
|
|
833
|
+
]
|
|
834
|
+
},
|
|
835
|
+
]
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
type:"number",
|
|
839
|
+
key: "likeCount",
|
|
840
|
+
displayer:"Like Count",
|
|
841
|
+
value: 2.500
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
type:"number",
|
|
845
|
+
key: "commentCount",
|
|
846
|
+
displayer:"Comment Count",
|
|
847
|
+
value: 1.500
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
type:"string",
|
|
851
|
+
key: "description",
|
|
852
|
+
displayer:"Description",
|
|
853
|
+
value: "In black and white, emotions have no place to hide. 🎞️🖤"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
type: "page",
|
|
857
|
+
key: "url",
|
|
858
|
+
displayer: "Url",
|
|
859
|
+
value: ""
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
type:"boolean",
|
|
863
|
+
key: "videoIconActive",
|
|
864
|
+
displayer: "Video Icon Active",
|
|
865
|
+
value: true
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
type:"boolean",
|
|
869
|
+
key: "imageIconActive",
|
|
870
|
+
displayer: "Image Icon Active",
|
|
871
|
+
value: false
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
type: "string",
|
|
875
|
+
key: "name",
|
|
876
|
+
displayer: "Name",
|
|
877
|
+
value: "VelvetEchoes"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
type: "image",
|
|
881
|
+
key: "porfileImage",
|
|
882
|
+
displayer:"Profile Image",
|
|
883
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67f7bd53fb049c002cc6ff96?alt=media×tamp=1744960949771"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
type: "icon",
|
|
887
|
+
key: "socialIcon",
|
|
888
|
+
displayer: "Social Icon",
|
|
889
|
+
value: "FaInstagram"
|
|
890
|
+
},
|
|
891
|
+
|
|
892
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
893
|
+
{
|
|
894
|
+
type: "dateTime",
|
|
895
|
+
key: "date",
|
|
896
|
+
displayer: "Date",
|
|
897
|
+
value: "01/01/2024",
|
|
898
|
+
additionalParams:{
|
|
899
|
+
mode: "date",
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
type:"object",
|
|
907
|
+
key: "cardItem",
|
|
908
|
+
displayer:"Card Item",
|
|
909
|
+
value:[
|
|
910
|
+
{
|
|
911
|
+
type:"string",
|
|
912
|
+
key: "videoUrl",
|
|
913
|
+
displayer:"Video Url",
|
|
914
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020059bf76cc002cc3bd6b?alt=media×tamp=1744961627435"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
type:"array",
|
|
918
|
+
key: "imageItems",
|
|
919
|
+
displayer:"Image Items",
|
|
920
|
+
value: [
|
|
921
|
+
{
|
|
922
|
+
type:"object",
|
|
923
|
+
key: "imageItem",
|
|
924
|
+
displayer: "Image Item",
|
|
925
|
+
value:
|
|
926
|
+
[
|
|
927
|
+
{
|
|
928
|
+
type: "image",
|
|
929
|
+
key: "image",
|
|
930
|
+
displayer: "Image",
|
|
931
|
+
value: ""
|
|
932
|
+
},
|
|
933
|
+
]
|
|
934
|
+
},
|
|
935
|
+
]
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
type:"number",
|
|
939
|
+
key: "likeCount",
|
|
940
|
+
displayer:"Like Count",
|
|
941
|
+
value: 7.500
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
type:"number",
|
|
945
|
+
key: "commentCount",
|
|
946
|
+
displayer:"Comment Count",
|
|
947
|
+
value: 7.500
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
type:"string",
|
|
951
|
+
key: "description",
|
|
952
|
+
displayer:"Description",
|
|
953
|
+
value: "Where the earth whispers and the soul listens. 🌿🍃. Nature doesn’t rush, yet everything gets done. Breathe in peace, exhale the noise. #NatureLovers #IntoTheWild #GreenEscape #SoulfulScenes"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
type: "page",
|
|
957
|
+
key: "url",
|
|
958
|
+
displayer: "Url",
|
|
959
|
+
value: ""
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
type:"boolean",
|
|
963
|
+
key: "videoIconActive",
|
|
964
|
+
displayer: "Video Icon Active",
|
|
965
|
+
value: true
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
type:"boolean",
|
|
969
|
+
key: "imageIconActive",
|
|
970
|
+
displayer: "Image Icon Active",
|
|
971
|
+
value: false
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
type: "string",
|
|
975
|
+
key: "name",
|
|
976
|
+
displayer: "Name",
|
|
977
|
+
value: "DaydreamingVibes"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
type: "image",
|
|
981
|
+
key: "porfileImage",
|
|
982
|
+
displayer:"Profile Image",
|
|
983
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67f3bd46fb049c002cc5ead5?alt=media×tamp=1744960949771"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
type: "icon",
|
|
987
|
+
key: "socialIcon",
|
|
988
|
+
displayer: "Social Icon",
|
|
989
|
+
value: "FaInstagram"
|
|
990
|
+
},
|
|
991
|
+
|
|
992
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
993
|
+
{
|
|
994
|
+
type: "dateTime",
|
|
995
|
+
key: "date",
|
|
996
|
+
displayer: "Date",
|
|
997
|
+
value: "01/01/2024",
|
|
998
|
+
additionalParams:{
|
|
999
|
+
mode: "date",
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
type:"object",
|
|
1007
|
+
key: "cardItem",
|
|
1008
|
+
displayer:"Card Item",
|
|
1009
|
+
value:[
|
|
1010
|
+
{
|
|
1011
|
+
type:"string",
|
|
1012
|
+
key: "videoUrl",
|
|
1013
|
+
displayer:"Video Url",
|
|
1014
|
+
value: ""
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
type:"array",
|
|
1018
|
+
key: "imageItems",
|
|
1019
|
+
displayer:"Image Items",
|
|
1020
|
+
value: [
|
|
1021
|
+
{
|
|
1022
|
+
type:"object",
|
|
1023
|
+
key: "imageItem",
|
|
1024
|
+
displayer: "Image Item",
|
|
1025
|
+
value:
|
|
1026
|
+
[
|
|
1027
|
+
{
|
|
1028
|
+
type: "image",
|
|
1029
|
+
key: "image",
|
|
1030
|
+
displayer: "Image",
|
|
1031
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020086bf76cc002cc3bd6f?alt=media×tamp=1744961672471"
|
|
1032
|
+
},
|
|
1033
|
+
]
|
|
1034
|
+
},
|
|
1035
|
+
]
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
type:"number",
|
|
1039
|
+
key: "likeCount",
|
|
1040
|
+
displayer:"Like Count",
|
|
1041
|
+
value: 7.500
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
type:"number",
|
|
1045
|
+
key: "commentCount",
|
|
1046
|
+
displayer:"Comment Count",
|
|
1047
|
+
value: 4.500
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
type:"string",
|
|
1051
|
+
key: "description",
|
|
1052
|
+
displayer:"Description",
|
|
1053
|
+
value: "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
type: "page",
|
|
1057
|
+
key: "url",
|
|
1058
|
+
displayer: "Url",
|
|
1059
|
+
value: ""
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
type:"boolean",
|
|
1063
|
+
key: "videoIconActive",
|
|
1064
|
+
displayer: "Video Icon Active",
|
|
1065
|
+
value: false
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
type:"boolean",
|
|
1069
|
+
key: "imageIconActive",
|
|
1070
|
+
displayer: "Image Icon Active",
|
|
1071
|
+
value: true
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
type: "string",
|
|
1075
|
+
key: "name",
|
|
1076
|
+
displayer: "Name",
|
|
1077
|
+
value: "InfiniteWanderer"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
type: "image",
|
|
1081
|
+
key: "porfileImage",
|
|
1082
|
+
displayer:"Profile Image",
|
|
1083
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67e40a86fb049c002cc41c55?alt=media×tamp=1744960949771"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
type: "icon",
|
|
1087
|
+
key: "socialIcon",
|
|
1088
|
+
displayer: "Social Icon",
|
|
1089
|
+
value: "FaInstagram"
|
|
1090
|
+
},
|
|
1091
|
+
|
|
1092
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1093
|
+
{
|
|
1094
|
+
type: "dateTime",
|
|
1095
|
+
key: "date",
|
|
1096
|
+
displayer: "Date",
|
|
1097
|
+
value: "01/01/2024",
|
|
1098
|
+
additionalParams:{
|
|
1099
|
+
mode: "date",
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
type:"object",
|
|
1107
|
+
key: "cardItem",
|
|
1108
|
+
displayer:"Card Item",
|
|
1109
|
+
value:[
|
|
1110
|
+
{
|
|
1111
|
+
type:"string",
|
|
1112
|
+
key: "videoUrl",
|
|
1113
|
+
displayer:"Video Url",
|
|
1114
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/680201efbf76cc002cc3be21?alt=media×tamp=1744962032906"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
type:"array",
|
|
1118
|
+
key: "imageItems",
|
|
1119
|
+
displayer:"Image Items",
|
|
1120
|
+
value: [
|
|
1121
|
+
{
|
|
1122
|
+
type:"object",
|
|
1123
|
+
key: "imageItem",
|
|
1124
|
+
displayer: "Image Item",
|
|
1125
|
+
value:
|
|
1126
|
+
[
|
|
1127
|
+
{
|
|
1128
|
+
type: "image",
|
|
1129
|
+
key: "image",
|
|
1130
|
+
displayer: "Image",
|
|
1131
|
+
value: ""
|
|
1132
|
+
},
|
|
1133
|
+
]
|
|
1134
|
+
},
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
type:"number",
|
|
1139
|
+
key: "likeCount",
|
|
1140
|
+
displayer:"Like Count",
|
|
1141
|
+
value: 90.500
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
type:"number",
|
|
1145
|
+
key: "commentCount",
|
|
1146
|
+
displayer:"Comment Count",
|
|
1147
|
+
value: 4.500
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
type:"string",
|
|
1151
|
+
key: "description",
|
|
1152
|
+
displayer:"Description",
|
|
1153
|
+
value: "Proin vel purus eu enim porttitor dictum a ac orci. Cras a magna eget tortor malesuada scelerisque. Aenean sagittis tortor et purus efficitur, nec venenatis justo gravida. Aliquam eget felis non enim egestas vulputate. Nulla in lorem purus."
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
type: "page",
|
|
1157
|
+
key: "url",
|
|
1158
|
+
displayer: "Url",
|
|
1159
|
+
value: ""
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
type:"boolean",
|
|
1163
|
+
key: "videoIconActive",
|
|
1164
|
+
displayer: "Video Icon Active",
|
|
1165
|
+
value: true
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
type:"boolean",
|
|
1169
|
+
key: "imageIconActive",
|
|
1170
|
+
displayer: "Image Icon Active",
|
|
1171
|
+
value: false
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
type: "string",
|
|
1175
|
+
key: "name",
|
|
1176
|
+
displayer: "Name",
|
|
1177
|
+
value: "CosmicChaser_"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
type: "image",
|
|
1181
|
+
key: "porfileImage",
|
|
1182
|
+
displayer:"Profile Image",
|
|
1183
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67e40a3cfb049c002cc41bc7?alt=media×tamp=1744960949771"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
type: "icon",
|
|
1187
|
+
key: "socialIcon",
|
|
1188
|
+
displayer: "Social Icon",
|
|
1189
|
+
value: "FaInstagram"
|
|
1190
|
+
},
|
|
1191
|
+
|
|
1192
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1193
|
+
{
|
|
1194
|
+
type: "dateTime",
|
|
1195
|
+
key: "date",
|
|
1196
|
+
displayer: "Date",
|
|
1197
|
+
value: "01/01/2024",
|
|
1198
|
+
additionalParams:{
|
|
1199
|
+
mode: "date",
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
type:"object",
|
|
1207
|
+
key: "cardItem",
|
|
1208
|
+
displayer:"Card Item",
|
|
1209
|
+
value:[
|
|
1210
|
+
{
|
|
1211
|
+
type:"string",
|
|
1212
|
+
key: "videoUrl",
|
|
1213
|
+
displayer:"Video Url",
|
|
1214
|
+
value: ""
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
type:"array",
|
|
1218
|
+
key: "imageItems",
|
|
1219
|
+
displayer:"Image Items",
|
|
1220
|
+
value: [
|
|
1221
|
+
{
|
|
1222
|
+
type:"object",
|
|
1223
|
+
key: "imageItem",
|
|
1224
|
+
displayer: "Image Item",
|
|
1225
|
+
value:
|
|
1226
|
+
[
|
|
1227
|
+
{
|
|
1228
|
+
type: "image",
|
|
1229
|
+
key: "image",
|
|
1230
|
+
displayer: "Image",
|
|
1231
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020242bf76cc002cc3be29?alt=media×tamp=1744962116673"
|
|
1232
|
+
},
|
|
1233
|
+
]
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
type:"object",
|
|
1237
|
+
key: "imageItem",
|
|
1238
|
+
displayer: "Image Item",
|
|
1239
|
+
value:
|
|
1240
|
+
[
|
|
1241
|
+
{
|
|
1242
|
+
type: "image",
|
|
1243
|
+
key: "image",
|
|
1244
|
+
displayer: "Image",
|
|
1245
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6802025bbf76cc002cc3be2e?alt=media×tamp=1744962141453"
|
|
1246
|
+
},
|
|
1247
|
+
]
|
|
1248
|
+
},
|
|
1249
|
+
]
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
type:"number",
|
|
1253
|
+
key: "likeCount",
|
|
1254
|
+
displayer:"Like Count",
|
|
1255
|
+
value: 590
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
type:"number",
|
|
1259
|
+
key: "commentCount",
|
|
1260
|
+
displayer:"Comment Count",
|
|
1261
|
+
value: 210
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
type:"string",
|
|
1265
|
+
key: "description",
|
|
1266
|
+
displayer:"Description",
|
|
1267
|
+
value: "Curabitur sed nibh sit amet arcu malesuada viverra. Nam ac felis eget ligula volutpat condimentum. Nulla vitae nisi ligula. Suspendisse potenti. Fusce auctor fringilla mi at dictum. Aenean interdum mauris ut felis efficitur, sed congue orci elementum. Donec at neque erat."
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
type: "page",
|
|
1271
|
+
key: "url",
|
|
1272
|
+
displayer: "Url",
|
|
1273
|
+
value: ""
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
type:"boolean",
|
|
1277
|
+
key: "videoIconActive",
|
|
1278
|
+
displayer: "Video Icon Active",
|
|
1279
|
+
value: false
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
type:"boolean",
|
|
1283
|
+
key: "imageIconActive",
|
|
1284
|
+
displayer: "Image Icon Active",
|
|
1285
|
+
value: true
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
type: "string",
|
|
1289
|
+
key: "name",
|
|
1290
|
+
displayer: "Name",
|
|
1291
|
+
value: "DreamscapeSeeker"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
type: "image",
|
|
1295
|
+
key: "porfileImage",
|
|
1296
|
+
displayer:"Profile Image",
|
|
1297
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/67a9d2166341de002b7b7fd0?alt=media×tamp=1744960949770"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
type: "icon",
|
|
1301
|
+
key: "socialIcon",
|
|
1302
|
+
displayer: "Social Icon",
|
|
1303
|
+
value: "FaInstagram"
|
|
1304
|
+
},
|
|
1305
|
+
|
|
1306
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1307
|
+
{
|
|
1308
|
+
type: "dateTime",
|
|
1309
|
+
key: "date",
|
|
1310
|
+
displayer: "Date",
|
|
1311
|
+
value: "01/01/2024",
|
|
1312
|
+
additionalParams:{
|
|
1313
|
+
mode: "date",
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
type:"object",
|
|
1321
|
+
key: "cardItem",
|
|
1322
|
+
displayer:"Card Item",
|
|
1323
|
+
value:[
|
|
1324
|
+
{
|
|
1325
|
+
type:"string",
|
|
1326
|
+
key: "videoUrl",
|
|
1327
|
+
displayer:"Video Url",
|
|
1328
|
+
value: ""
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
type:"array",
|
|
1332
|
+
key: "imageItems",
|
|
1333
|
+
displayer:"Image Items",
|
|
1334
|
+
value: [
|
|
1335
|
+
{
|
|
1336
|
+
type:"object",
|
|
1337
|
+
key: "imageItem",
|
|
1338
|
+
displayer: "Image Item",
|
|
1339
|
+
value:
|
|
1340
|
+
[
|
|
1341
|
+
{
|
|
1342
|
+
type: "image",
|
|
1343
|
+
key: "image",
|
|
1344
|
+
displayer: "Image",
|
|
1345
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/680202cbbf76cc002cc3be97?alt=media×tamp=1744962253596"
|
|
1346
|
+
},
|
|
1347
|
+
]
|
|
1348
|
+
},
|
|
1349
|
+
]
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
type:"number",
|
|
1353
|
+
key: "likeCount",
|
|
1354
|
+
displayer:"Like Count",
|
|
1355
|
+
value: 100.200
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
type:"number",
|
|
1359
|
+
key: "commentCount",
|
|
1360
|
+
displayer:"Comment Count",
|
|
1361
|
+
value: 23.500
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
type:"string",
|
|
1365
|
+
key: "description",
|
|
1366
|
+
displayer:"Description",
|
|
1367
|
+
value: "Ut consectetur felis vel ante tempus, et vulputate felis fermentum. "
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
type: "page",
|
|
1371
|
+
key: "url",
|
|
1372
|
+
displayer: "Url",
|
|
1373
|
+
value: ""
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
type:"boolean",
|
|
1377
|
+
key: "videoIconActive",
|
|
1378
|
+
displayer: "Video Icon Active",
|
|
1379
|
+
value: false
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
type:"boolean",
|
|
1383
|
+
key: "imageIconActive",
|
|
1384
|
+
displayer: "Image Icon Active",
|
|
1385
|
+
value: true
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
type: "string",
|
|
1389
|
+
key: "name",
|
|
1390
|
+
displayer: "Name",
|
|
1391
|
+
value: "CrystalVibes_"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
type: "image",
|
|
1395
|
+
key: "porfileImage",
|
|
1396
|
+
displayer:"Profile Image",
|
|
1397
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6799df51d61bca002cb826eb?alt=media×tamp=1744960949770"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
type: "icon",
|
|
1401
|
+
key: "socialIcon",
|
|
1402
|
+
displayer: "Social Icon",
|
|
1403
|
+
value: "FaInstagram"
|
|
1404
|
+
},
|
|
1405
|
+
|
|
1406
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1407
|
+
{
|
|
1408
|
+
type: "dateTime",
|
|
1409
|
+
key: "date",
|
|
1410
|
+
displayer: "Date",
|
|
1411
|
+
value: "01/01/2024",
|
|
1412
|
+
additionalParams:{
|
|
1413
|
+
mode: "date",
|
|
1414
|
+
}
|
|
1415
|
+
}
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
type:"object",
|
|
1421
|
+
key: "cardItem",
|
|
1422
|
+
displayer:"Card Item",
|
|
1423
|
+
value:[
|
|
1424
|
+
{
|
|
1425
|
+
type:"string",
|
|
1426
|
+
key: "videoUrl",
|
|
1427
|
+
displayer:"Video Url",
|
|
1428
|
+
value: ""
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
type:"array",
|
|
1432
|
+
key: "imageItems",
|
|
1433
|
+
displayer:"Image Items",
|
|
1434
|
+
value: [
|
|
1435
|
+
{
|
|
1436
|
+
type:"object",
|
|
1437
|
+
key: "imageItem",
|
|
1438
|
+
displayer: "Image Item",
|
|
1439
|
+
value:
|
|
1440
|
+
[
|
|
1441
|
+
{
|
|
1442
|
+
type: "image",
|
|
1443
|
+
key: "image",
|
|
1444
|
+
displayer: "Image",
|
|
1445
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/680203b3bf76cc002cc3bfb6?alt=media×tamp=1744962485711"
|
|
1446
|
+
},
|
|
1447
|
+
]
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
type:"object",
|
|
1451
|
+
key: "imageItem",
|
|
1452
|
+
displayer: "Image Item",
|
|
1453
|
+
value:
|
|
1454
|
+
[
|
|
1455
|
+
{
|
|
1456
|
+
type: "image",
|
|
1457
|
+
key: "image",
|
|
1458
|
+
displayer: "Image",
|
|
1459
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020402bf76cc002cc3c0e2?alt=media×tamp=1744962564042"
|
|
1460
|
+
},
|
|
1461
|
+
]
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
type:"object",
|
|
1465
|
+
key: "imageItem",
|
|
1466
|
+
displayer: "Image Item",
|
|
1467
|
+
value:
|
|
1468
|
+
[
|
|
1469
|
+
{
|
|
1470
|
+
type: "image",
|
|
1471
|
+
key: "image",
|
|
1472
|
+
displayer: "Image",
|
|
1473
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020426bf76cc002cc3c14b?alt=media×tamp=1744962602646"
|
|
1474
|
+
},
|
|
1475
|
+
]
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
type:"object",
|
|
1479
|
+
key: "imageItem",
|
|
1480
|
+
displayer: "Image Item",
|
|
1481
|
+
value:
|
|
1482
|
+
[
|
|
1483
|
+
{
|
|
1484
|
+
type: "image",
|
|
1485
|
+
key: "image",
|
|
1486
|
+
displayer: "Image",
|
|
1487
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68020448bf76cc002cc3c19c?alt=media×tamp=1744962633978"
|
|
1488
|
+
},
|
|
1489
|
+
]
|
|
1490
|
+
},
|
|
1491
|
+
]
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
type:"number",
|
|
1495
|
+
key: "likeCount",
|
|
1496
|
+
displayer:"Like Count",
|
|
1497
|
+
value: 71.500
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
type:"number",
|
|
1501
|
+
key: "commentCount",
|
|
1502
|
+
displayer:"Comment Count",
|
|
1503
|
+
value: 17.500
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
type:"string",
|
|
1507
|
+
key: "description",
|
|
1508
|
+
displayer:"Description",
|
|
1509
|
+
value: "Duis vel lacinia tortor. Nam cursus, dui et posuere venenatis, risus erat vehicula odio, sed blandit enim nisl in felis. "
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
type: "page",
|
|
1513
|
+
key: "url",
|
|
1514
|
+
displayer: "Url",
|
|
1515
|
+
value: ""
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
type:"boolean",
|
|
1519
|
+
key: "videoIconActive",
|
|
1520
|
+
displayer: "Video Icon Active",
|
|
1521
|
+
value: false
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
type:"boolean",
|
|
1525
|
+
key: "imageIconActive",
|
|
1526
|
+
displayer: "Image Icon Active",
|
|
1527
|
+
value: true
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
type: "string",
|
|
1531
|
+
key: "name",
|
|
1532
|
+
displayer: "Name",
|
|
1533
|
+
value: "NeonExplorer"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
type: "image",
|
|
1537
|
+
key: "porfileImage",
|
|
1538
|
+
displayer:"Profile Image",
|
|
1539
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6790cd32d61bca002cb54d47?alt=media×tamp=1744960949770"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
type: "icon",
|
|
1543
|
+
key: "socialIcon",
|
|
1544
|
+
displayer: "Social Icon",
|
|
1545
|
+
value: "FaInstagram"
|
|
1546
|
+
},
|
|
1547
|
+
|
|
1548
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1549
|
+
{
|
|
1550
|
+
type: "dateTime",
|
|
1551
|
+
key: "date",
|
|
1552
|
+
displayer: "Date",
|
|
1553
|
+
value: "01/01/2024",
|
|
1554
|
+
additionalParams:{
|
|
1555
|
+
mode: "date",
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
type:"object",
|
|
1563
|
+
key: "cardItem",
|
|
1564
|
+
displayer:"Card Item",
|
|
1565
|
+
value:[
|
|
1566
|
+
{
|
|
1567
|
+
type:"string",
|
|
1568
|
+
key: "videoUrl",
|
|
1569
|
+
displayer:"Video Url",
|
|
1570
|
+
value: ""
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
type:"array",
|
|
1574
|
+
key: "imageItems",
|
|
1575
|
+
displayer:"Image Items",
|
|
1576
|
+
value: [
|
|
1577
|
+
{
|
|
1578
|
+
type:"object",
|
|
1579
|
+
key: "imageItem",
|
|
1580
|
+
displayer: "Image Item",
|
|
1581
|
+
value:
|
|
1582
|
+
[
|
|
1583
|
+
{
|
|
1584
|
+
type: "image",
|
|
1585
|
+
key: "image",
|
|
1586
|
+
displayer: "Image",
|
|
1587
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6802049ebf76cc002cc3c251?alt=media×tamp=1744962720101"
|
|
1588
|
+
},
|
|
1589
|
+
]
|
|
1590
|
+
},
|
|
1591
|
+
]
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
type:"number",
|
|
1595
|
+
key: "likeCount",
|
|
1596
|
+
displayer:"Like Count",
|
|
1597
|
+
value: 9.500
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
type:"number",
|
|
1601
|
+
key: "commentCount",
|
|
1602
|
+
displayer:"Comment Count",
|
|
1603
|
+
value: 3.200
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
type:"string",
|
|
1607
|
+
key: "description",
|
|
1608
|
+
displayer:"Description",
|
|
1609
|
+
value: "Aenean tincidunt lacus quis lacus tincidunt, sit amet facilisis libero luctus."
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
type: "page",
|
|
1613
|
+
key: "url",
|
|
1614
|
+
displayer: "Url",
|
|
1615
|
+
value: ""
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
type:"boolean",
|
|
1619
|
+
key: "videoIconActive",
|
|
1620
|
+
displayer: "Video Icon Active",
|
|
1621
|
+
value: false
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
type:"boolean",
|
|
1625
|
+
key: "imageIconActive",
|
|
1626
|
+
displayer: "Image Icon Active",
|
|
1627
|
+
value: true
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
type: "string",
|
|
1631
|
+
key: "name",
|
|
1632
|
+
displayer: "Name",
|
|
1633
|
+
value: "EchoingWaves"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
type: "image",
|
|
1637
|
+
key: "porfileImage",
|
|
1638
|
+
displayer:"Profile Image",
|
|
1639
|
+
value: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/6790ceccd61bca002cb54e20?alt=media×tamp=1744960949770"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
type: "icon",
|
|
1643
|
+
key: "socialIcon",
|
|
1644
|
+
displayer: "Social Icon",
|
|
1645
|
+
value: "FaInstagram"
|
|
1646
|
+
},
|
|
1647
|
+
|
|
1648
|
+
INPUTS.BUTTON("button", "Button", "Follow", "", null, null, "Link"),
|
|
1649
|
+
{
|
|
1650
|
+
type: "dateTime",
|
|
1651
|
+
key: "date",
|
|
1652
|
+
displayer: "Date",
|
|
1653
|
+
value: "01/01/2024",
|
|
1654
|
+
additionalParams:{
|
|
1655
|
+
mode: "date",
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
},
|
|
1661
|
+
]
|
|
1662
|
+
})
|
|
1663
|
+
this.addProp({
|
|
1664
|
+
type: "icon",
|
|
1665
|
+
key: "videoIcon",
|
|
1666
|
+
displayer: "Video Icon",
|
|
1667
|
+
value: "FaVideo"
|
|
1668
|
+
})
|
|
1669
|
+
this.addProp({
|
|
1670
|
+
type: "icon",
|
|
1671
|
+
key: "imageIcon",
|
|
1672
|
+
displayer: "Image Icon",
|
|
1673
|
+
value: "GrGallery"
|
|
1674
|
+
})
|
|
1675
|
+
this.addProp({
|
|
1676
|
+
type: "icon",
|
|
1677
|
+
key: "likeIcon",
|
|
1678
|
+
displayer: "Like Icon",
|
|
1679
|
+
value:"SlHeart"
|
|
1680
|
+
})
|
|
1681
|
+
this.addProp({
|
|
1682
|
+
type: "string",
|
|
1683
|
+
key:"likeText",
|
|
1684
|
+
displayer: "Like Text",
|
|
1685
|
+
value: "likes"
|
|
1686
|
+
})
|
|
1687
|
+
this.addProp({
|
|
1688
|
+
type: "icon",
|
|
1689
|
+
key: "commentIcon",
|
|
1690
|
+
displayer: "Comment Icon",
|
|
1691
|
+
value:"TfiComment"
|
|
1692
|
+
})
|
|
1693
|
+
this.addProp({
|
|
1694
|
+
type: "icon",
|
|
1695
|
+
key: "shareIcon",
|
|
1696
|
+
displayer: "Share Icon",
|
|
1697
|
+
value:"RiShareForwardLine"
|
|
1698
|
+
})
|
|
1699
|
+
this.addProp({
|
|
1700
|
+
type: "string",
|
|
1701
|
+
key:"shareText",
|
|
1702
|
+
displayer: "Share Text",
|
|
1703
|
+
value: "Share"
|
|
1704
|
+
})
|
|
1705
|
+
this.addProp({
|
|
1706
|
+
type: "icon",
|
|
1707
|
+
key: "closeIcon",
|
|
1708
|
+
displayer:"Close Icon",
|
|
1709
|
+
value: "IoMdClose"
|
|
1710
|
+
})
|
|
1711
|
+
this.setComponentState("postOverlayActive",false)
|
|
1712
|
+
this.setComponentState("selectedPost",0);
|
|
1713
|
+
this.setComponentState("moreImages", 0);
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
static getName(): string {
|
|
1717
|
+
return "Social 4";
|
|
1718
|
+
}
|
|
1719
|
+
handleClickItem = (index: number) => {
|
|
1720
|
+
this.setComponentState("postOverlayActive", true);
|
|
1721
|
+
this.setComponentState("selectedPost", index);
|
|
1722
|
+
|
|
1723
|
+
const postRefs = this.getComponentState("postRefs");
|
|
1724
|
+
const ref = postRefs?.[index];
|
|
1725
|
+
|
|
1726
|
+
if (ref?.current) {
|
|
1727
|
+
ref.current.scrollIntoView({ behavior: "smooth", block: "center" });
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
handleCloseOverlay = () =>{
|
|
1731
|
+
this.setComponentState("postOverlayActive", false);
|
|
1732
|
+
}
|
|
1733
|
+
handleButtonClick = () => {
|
|
1734
|
+
this.setComponentState("moreImages", this.getComponentState("moreImages") + this.getPropValue("moreCount"))
|
|
1735
|
+
|
|
1736
|
+
};
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
render() {
|
|
1740
|
+
const settingsCard = {
|
|
1741
|
+
dots: false,
|
|
1742
|
+
infinite: true,
|
|
1743
|
+
autoplay: false,
|
|
1744
|
+
slidesToShow: 1,
|
|
1745
|
+
slidesToScroll: 1,
|
|
1746
|
+
adaptiveHeight: false,
|
|
1747
|
+
};
|
|
1748
|
+
const cardItems = this.castToObject<CardItem[]>("cardItems");
|
|
1749
|
+
let postRefs = this.getComponentState("postRefs");
|
|
1750
|
+
|
|
1751
|
+
if (!postRefs || postRefs.length !== cardItems.length) {
|
|
1752
|
+
postRefs = cardItems.map(() => React.createRef<HTMLDivElement>());
|
|
1753
|
+
this.setComponentState("postRefs", postRefs);
|
|
1754
|
+
}
|
|
1755
|
+
if (this.getComponentState("imageCount") != this.getPropValue("initialCount") + this.getComponentState("moreImages"))
|
|
1756
|
+
this.setComponentState("imageCount", this.getPropValue("initialCount") + this.getComponentState("moreImages"));
|
|
1757
|
+
|
|
1758
|
+
const isTitleExist = this.castToString(this.getPropValue("title"));
|
|
1759
|
+
const button: INPUTS.CastedButton = this.castToObject<INPUTS.CastedButton>("button");
|
|
1760
|
+
return (
|
|
1761
|
+
<>
|
|
1762
|
+
<Base.Container className={this.decorateCSS("container")}>
|
|
1763
|
+
<Base.MaxContent className={this.decorateCSS("max-content")}>
|
|
1764
|
+
{isTitleExist && (
|
|
1765
|
+
<div className={this.decorateCSS("title-container")}>
|
|
1766
|
+
<Base.H1 className={this.decorateCSS("title")}>{this.getPropValue("title")}</Base.H1>
|
|
1767
|
+
</div>
|
|
1768
|
+
)}
|
|
1769
|
+
|
|
1770
|
+
<Base.ListGrid gridCount={{ pc: this.getPropValue("rowCount") ,tablet: 3}} className={this.decorateCSS("gallery-grid")}>
|
|
1771
|
+
{cardItems.slice(0, this.getComponentState("imageCount")).map((item: CardItem, index: number) => {
|
|
1772
|
+
return (
|
|
1773
|
+
<div className={this.decorateCSS("gallery-item")} key={index}>
|
|
1774
|
+
{(item.imageItems.length>0 && !this.castToString(item.videoUrl) && item.imageItems[0].image) &&
|
|
1775
|
+
<div className={this.decorateCSS("image-container")}>
|
|
1776
|
+
<img src={item.imageItems[0].image} alt={item.imageItems[0].image} className={this.decorateCSS("gallery-image")}/>
|
|
1777
|
+
</div>
|
|
1778
|
+
}
|
|
1779
|
+
{this.castToString(item.videoUrl) && (
|
|
1780
|
+
<div className={this.decorateCSS("video-container")}>
|
|
1781
|
+
<video src={this.castToString(item.videoUrl)} controls={false} className={this.decorateCSS("gallery-video")}/>
|
|
1782
|
+
</div>
|
|
1783
|
+
)}
|
|
1784
|
+
<div className={this.decorateCSS("icon-container")}>
|
|
1785
|
+
{(this.getPropValue("videoIcon") && this.castToString(item.videoUrl) && item.videoIconActive) && (<Base.Icon name={this.getPropValue("videoIcon")} propsIcon={{className:this.decorateCSS("icon")}}></Base.Icon>)}
|
|
1786
|
+
{(this.getPropValue("imageIcon") && item.imageItems.length > 1) && (<Base.Icon name={this.getPropValue("imageIcon")} propsIcon={{className:this.decorateCSS("icon")}}></Base.Icon>)}
|
|
1787
|
+
</div>
|
|
1788
|
+
<div className={this.decorateCSS("overlay")} onClick={() => this.handleClickItem(index)}>
|
|
1789
|
+
<div className={this.decorateCSS("content-container")}>
|
|
1790
|
+
{(this.getPropValue("likeIcon") || item.likeCount || this.getPropValue("commentIcon") || item.commentCount) && (
|
|
1791
|
+
<div className={this.decorateCSS("like-and-commnet-container")}>
|
|
1792
|
+
{(this.getPropValue("likeIcon") || item.likeCount) && (
|
|
1793
|
+
<div className={this.decorateCSS("like-container")}>
|
|
1794
|
+
{this.getPropValue("likeIcon") && (<Base.Icon name={this.getPropValue("likeIcon")} propsIcon={{className: this.decorateCSS("like-icon")}}></Base.Icon>)}
|
|
1795
|
+
{item.likeCount && (<div className={this.decorateCSS("like-number")}>{item.likeCount}</div>)}
|
|
1796
|
+
</div>
|
|
1797
|
+
)}
|
|
1798
|
+
{(this.getPropValue("commentIcon") || item.commentCount) && (
|
|
1799
|
+
<div className={this.decorateCSS("comment-container")}>
|
|
1800
|
+
{this.getPropValue("commentIcon") && (<Base.Icon name={this.getPropValue("commentIcon")} propsIcon={{className: this.decorateCSS("comment-icon")}}></Base.Icon>)}
|
|
1801
|
+
{item.commentCount && (<div className={this.decorateCSS("comment-number")}>{item.commentCount}</div>)}
|
|
1802
|
+
</div>
|
|
1803
|
+
)}
|
|
1804
|
+
</div>
|
|
1805
|
+
)}
|
|
1806
|
+
{this.castToString(item.description) && (<div className={this.decorateCSS("description")}>{item.description}</div>)}
|
|
1807
|
+
</div>
|
|
1808
|
+
</div>
|
|
1809
|
+
</div>
|
|
1810
|
+
);
|
|
1811
|
+
})}
|
|
1812
|
+
</Base.ListGrid>
|
|
1813
|
+
{(this.getComponentState("imageCount") < cardItems.length) && (
|
|
1814
|
+
<div className={this.decorateCSS("button-wrapper")}>
|
|
1815
|
+
<Base.Button className={this.decorateCSS("button")} buttonType={button.type} onClick={this.handleButtonClick} >
|
|
1816
|
+
{button.text}
|
|
1817
|
+
</Base.Button>
|
|
1818
|
+
</div>
|
|
1819
|
+
)}
|
|
1820
|
+
</Base.MaxContent>
|
|
1821
|
+
</Base.Container>
|
|
1822
|
+
<Base.Overlay className ={`${this.decorateCSS("post-overlay")} ${this.getComponentState("postOverlayActive") && this.decorateCSS("active")}`} isVisible={true }>
|
|
1823
|
+
{isTitleExist && (
|
|
1824
|
+
<div className={this.decorateCSS("mobile-ovelay-title-container")}>
|
|
1825
|
+
<div className={this.decorateCSS("title")}>{this.getPropValue("title")}</div>
|
|
1826
|
+
</div>
|
|
1827
|
+
)}
|
|
1828
|
+
{(cardItems.length>0) && (
|
|
1829
|
+
<div className={this.decorateCSS("slider-wrapper")}>
|
|
1830
|
+
{cardItems.map((item: CardItem , index: number) => {
|
|
1831
|
+
return(
|
|
1832
|
+
<div className={this.decorateCSS("post-container")}
|
|
1833
|
+
key={index}
|
|
1834
|
+
ref={postRefs[index]}>
|
|
1835
|
+
<div className={this.decorateCSS("upper-container")}>
|
|
1836
|
+
{(item.porfileImage || this.castToString(item.name)) && (
|
|
1837
|
+
<div className={this.decorateCSS("left-container")}>
|
|
1838
|
+
{item.porfileImage && (
|
|
1839
|
+
<div className={this.decorateCSS("profile-image-container")}>
|
|
1840
|
+
<ComposerLink path={item.url}>
|
|
1841
|
+
<img className={this.decorateCSS("profile-image")} src={item.porfileImage}></img>
|
|
1842
|
+
</ComposerLink>
|
|
1843
|
+
</div>
|
|
1844
|
+
)}
|
|
1845
|
+
{this.castToString(item.name) && (
|
|
1846
|
+
<ComposerLink path={item.url}>
|
|
1847
|
+
<div className={this.decorateCSS("name")}>{item.name}</div>
|
|
1848
|
+
</ComposerLink>
|
|
1849
|
+
|
|
1850
|
+
)}
|
|
1851
|
+
</div>
|
|
1852
|
+
)}
|
|
1853
|
+
<div className={this.decorateCSS("right-container")}>
|
|
1854
|
+
<ComposerLink path={item.button.url}>
|
|
1855
|
+
<div className={this.decorateCSS("button-container")}>
|
|
1856
|
+
<Base.Button buttonType={item.button.type}>{item.button.text}</Base.Button>
|
|
1857
|
+
</div>
|
|
1858
|
+
</ComposerLink>
|
|
1859
|
+
{item.socialIcon && (
|
|
1860
|
+
<ComposerLink path={item.url}>
|
|
1861
|
+
<Base.Icon name={item.socialIcon} propsIcon={{className: this.decorateCSS("socail-icon")}}></Base.Icon>
|
|
1862
|
+
</ComposerLink>
|
|
1863
|
+
)}
|
|
1864
|
+
</div>
|
|
1865
|
+
</div>
|
|
1866
|
+
{this.castToString(item.videoUrl) && (
|
|
1867
|
+
<div className={this.decorateCSS("post-video-container")}>
|
|
1868
|
+
<video src={this.castToString(item.videoUrl)} controls autoPlay={true} muted className={this.decorateCSS("video")}></video>
|
|
1869
|
+
</div>
|
|
1870
|
+
)}
|
|
1871
|
+
{(item.imageItems.length > 0 && !this.castToString(item.videoUrl)) && (
|
|
1872
|
+
<div className={this.decorateCSS("post-image-container")}>
|
|
1873
|
+
<ComposerSlider {...settingsCard}>
|
|
1874
|
+
{item.imageItems.map((item: ImageItem, index: number) =>{
|
|
1875
|
+
return(
|
|
1876
|
+
<img src={item.image} alt={item.image} className={this.decorateCSS("image")}/>
|
|
1877
|
+
)
|
|
1878
|
+
})
|
|
1879
|
+
}
|
|
1880
|
+
</ComposerSlider>
|
|
1881
|
+
</div>
|
|
1882
|
+
)}
|
|
1883
|
+
<div className={this.decorateCSS("bottom-container")}>
|
|
1884
|
+
{(item.likeCount || this.castToString(this.getPropValue("likeText")) || this.getPropValue("shareIcon") || this.castToString(this.getPropValue("shareText"))) && (
|
|
1885
|
+
<div className={this.decorateCSS("like-and-share-container")}>
|
|
1886
|
+
{(item.likeCount || this.castToString(this.getPropValue("likeText"))) && (
|
|
1887
|
+
<div className={this.decorateCSS("like-part")}>
|
|
1888
|
+
{item.likeCount && (<div className={this.decorateCSS("like-count")}>{item.likeCount}</div>)}
|
|
1889
|
+
{this.castToString(this.getPropValue("likeText")) && (<div className={this.decorateCSS("like-text")}>{this.getPropValue("likeText")}</div>)}
|
|
1890
|
+
</div>
|
|
1891
|
+
)}
|
|
1892
|
+
{(this.getPropValue("shareIcon") || this.castToString(this.getPropValue("shareText"))) && (
|
|
1893
|
+
<ComposerLink path={item.url}>
|
|
1894
|
+
<div className={this.decorateCSS("share-part")}>
|
|
1895
|
+
{this.getPropValue("shareIcon") && (
|
|
1896
|
+
<div className={this.decorateCSS("share-icon-container")}>
|
|
1897
|
+
<Base.Icon name={this.getPropValue("shareIcon")} propsIcon={{className: this.decorateCSS("share-icon")}}></Base.Icon>
|
|
1898
|
+
</div>
|
|
1899
|
+
)}
|
|
1900
|
+
{this.castToString(this.getPropValue("shareText")) &&(<div className={this.decorateCSS("share-text")}>{this.getPropValue("shareText")}</div> )}
|
|
1901
|
+
</div>
|
|
1902
|
+
</ComposerLink>
|
|
1903
|
+
|
|
1904
|
+
)}
|
|
1905
|
+
</div>
|
|
1906
|
+
)}
|
|
1907
|
+
{(this.castToString(item.name) || this.castToString(item.description)) && (
|
|
1908
|
+
<div className={this.decorateCSS("name-and-description")}>
|
|
1909
|
+
<div className={this.decorateCSS("full-text")}>
|
|
1910
|
+
{this.castToString(item.name) && (<div className={this.decorateCSS("name")}>{item.name} </div>)}
|
|
1911
|
+
{this.castToString(item.description) && (<div className={this.decorateCSS("description")}>{item.description}</div>)}
|
|
1912
|
+
</div>
|
|
1913
|
+
</div>
|
|
1914
|
+
)}
|
|
1915
|
+
{item.date && (
|
|
1916
|
+
<div className={this.decorateCSS("date-container")}>
|
|
1917
|
+
<div className={this.decorateCSS("date")}>{item.date}</div>
|
|
1918
|
+
</div>
|
|
1919
|
+
)}
|
|
1920
|
+
</div>
|
|
1921
|
+
</div>
|
|
1922
|
+
)
|
|
1923
|
+
})}
|
|
1924
|
+
</div>
|
|
1925
|
+
)}
|
|
1926
|
+
{this.getPropValue("closeIcon") && (
|
|
1927
|
+
<div className={this.decorateCSS("icon-container")}>
|
|
1928
|
+
<div className={this.decorateCSS("close-icon")}>
|
|
1929
|
+
<Base.Icon name={this.getPropValue("closeIcon")} propsIcon={{className: this.decorateCSS("icon"),onClick: () => this.handleCloseOverlay()}}></Base.Icon>
|
|
1930
|
+
</div>
|
|
1931
|
+
</div>
|
|
1932
|
+
)}
|
|
1933
|
+
</Base.Overlay>
|
|
1934
|
+
</>
|
|
1935
|
+
|
|
1936
|
+
);
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
export default Social4;
|