simpo-component-library 3.5.52 → 3.6.2

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.
Files changed (309) hide show
  1. package/README.md +24 -24
  2. package/esm2022/lib/components/delete-hover-element/delete-hover-element.component.mjs +3 -3
  3. package/esm2022/lib/components/document/document.component.mjs +3 -3
  4. package/esm2022/lib/components/hover-elements/hover-elements.component.mjs +3 -3
  5. package/esm2022/lib/components/image-loading/image-loading.component.mjs +3 -3
  6. package/esm2022/lib/components/payment-details/payment-details.component.mjs +3 -3
  7. package/esm2022/lib/constants/business.constant.mjs +1 -1
  8. package/esm2022/lib/directive/alignment.directive.mjs +23 -0
  9. package/esm2022/lib/directive/background-directive.mjs +130 -5
  10. package/esm2022/lib/directive/blur-content.directive.mjs +1 -1
  11. package/esm2022/lib/directive/border-directive.mjs +2 -2
  12. package/esm2022/lib/directive/borderlessImage.directive.mjs +4 -1
  13. package/esm2022/lib/directive/button-directive.directive.mjs +72 -17
  14. package/esm2022/lib/directive/button-editor.directive.mjs +22 -4
  15. package/esm2022/lib/directive/color.directive.mjs +1 -1
  16. package/esm2022/lib/directive/column-directive.directive.mjs +1 -1
  17. package/esm2022/lib/directive/container-alignment.directive.mjs +1 -1
  18. package/esm2022/lib/directive/container-fir.directive.mjs +1 -1
  19. package/esm2022/lib/directive/content-title-spacing.directive.mjs +4 -4
  20. package/esm2022/lib/directive/contenteditable.directive.mjs +1 -1
  21. package/esm2022/lib/directive/corner-directive.mjs +1 -1
  22. package/esm2022/lib/directive/height.directive.mjs +29 -0
  23. package/esm2022/lib/directive/hover-animation.directive.mjs +142 -0
  24. package/esm2022/lib/directive/hoverborder.directive.mjs +1 -1
  25. package/esm2022/lib/directive/image-container.directive.mjs +1 -1
  26. package/esm2022/lib/directive/image-directive.directive.mjs +1 -1
  27. package/esm2022/lib/directive/image-editor.directive.mjs +25 -5
  28. package/esm2022/lib/directive/image-position.directive.mjs +1 -1
  29. package/esm2022/lib/directive/position-layout-directive.directive.mjs +1 -1
  30. package/esm2022/lib/directive/set-dynamic-background.directive.mjs +66 -0
  31. package/esm2022/lib/directive/spacing-around.directive.mjs +40 -3
  32. package/esm2022/lib/directive/spacing-horizontal.directive.mjs +5 -1
  33. package/esm2022/lib/directive/spacing.directive.mjs +29 -0
  34. package/esm2022/lib/directive/sticky-directive.mjs +2 -2
  35. package/esm2022/lib/directive/text-background-directive.directive.mjs +1 -1
  36. package/esm2022/lib/directive/text-size.directive.mjs +1 -1
  37. package/esm2022/lib/directive/translate-onhover.directive.mjs +47 -0
  38. package/esm2022/lib/directive/wrap-containers.directive.mjs +1 -1
  39. package/esm2022/lib/ecommerce/sections/address/address.component.mjs +96 -59
  40. package/esm2022/lib/ecommerce/sections/authenticate-user/authenticate-user.component.mjs +3 -3
  41. package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.component.mjs +128 -14
  42. package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.model.mjs +1 -1
  43. package/esm2022/lib/ecommerce/sections/book-appointment/book-appointment.component.mjs +199 -0
  44. package/esm2022/lib/ecommerce/sections/book-appointment/book-appointment.model.mjs +2 -0
  45. package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +214 -36
  46. package/esm2022/lib/ecommerce/sections/cart/cart.modal.mjs +1 -1
  47. package/esm2022/lib/ecommerce/sections/category-product/category-product.component.mjs +3 -3
  48. package/esm2022/lib/ecommerce/sections/category-product/category-product.model.mjs +1 -1
  49. package/esm2022/lib/ecommerce/sections/checkout/checkout.component.mjs +3 -3
  50. package/esm2022/lib/ecommerce/sections/checkout/checkout.modal.mjs +1 -1
  51. package/esm2022/lib/ecommerce/sections/customer-review/customer-review.component.mjs +3 -3
  52. package/esm2022/lib/ecommerce/sections/customer-review/customer-review.model.mjs +1 -1
  53. package/esm2022/lib/ecommerce/sections/enrollment-form/enrollment-form.component.mjs +405 -0
  54. package/esm2022/lib/ecommerce/sections/enrollment-form/enrollment-form.model.mjs +2 -0
  55. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +6 -4
  56. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.modal.mjs +1 -1
  57. package/esm2022/lib/ecommerce/sections/featured-category/featured-collection.component.mjs +7 -5
  58. package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +42 -7
  59. package/esm2022/lib/ecommerce/sections/featured-products/featured-products.modal.mjs +1 -1
  60. package/esm2022/lib/ecommerce/sections/item-varient/item-varient.component.mjs +3 -3
  61. package/esm2022/lib/ecommerce/sections/new-collection/new-collection.component.mjs +144 -0
  62. package/esm2022/lib/ecommerce/sections/new-collection/new-collection.modal.mjs +2 -0
  63. package/esm2022/lib/ecommerce/sections/order-details/order-details.component.mjs +99 -11
  64. package/esm2022/lib/ecommerce/sections/pagnination/pagnination.component.mjs +3 -3
  65. package/esm2022/lib/ecommerce/sections/product-category-list/product-category-list.component.mjs +3 -3
  66. package/esm2022/lib/ecommerce/sections/product-category-list/product-category-list.model.mjs +1 -1
  67. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +395 -21
  68. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.modal.mjs +1 -1
  69. package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +626 -142
  70. package/esm2022/lib/ecommerce/sections/product-list/product-list.modal.mjs +1 -1
  71. package/esm2022/lib/ecommerce/sections/returns-calculator/returns-calculator.component.mjs +95 -0
  72. package/esm2022/lib/ecommerce/sections/returns-calculator/returns-calculator.model.mjs +2 -0
  73. package/esm2022/lib/ecommerce/sections/scheme-details/scheme-details.component.mjs +57 -0
  74. package/esm2022/lib/ecommerce/sections/scheme-selection/scheme-selection.component.mjs +36 -0
  75. package/esm2022/lib/ecommerce/sections/small-product-listing/small-product-listing.component.mjs +49 -4
  76. package/esm2022/lib/ecommerce/sections/store-list/store-list.component.mjs +157 -0
  77. package/esm2022/lib/ecommerce/sections/store-list/store-list.modal.mjs +2 -0
  78. package/esm2022/lib/ecommerce/sections/store-page/store-page.component.mjs +120 -0
  79. package/esm2022/lib/ecommerce/sections/store-page/store-page.model.mjs +2 -0
  80. package/esm2022/lib/ecommerce/sections/user-basic-info/user-basic-info.component.mjs +5 -4
  81. package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +66 -16
  82. package/esm2022/lib/ecommerce/sections/user-profile/user-profile.modal.mjs +1 -1
  83. package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.component.mjs +3 -3
  84. package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.model.mjs +1 -1
  85. package/esm2022/lib/ecommerce/sections/whislist/whislist.component.mjs +17 -12
  86. package/esm2022/lib/ecommerce/styles/BaseCollection.modal.mjs +1 -1
  87. package/esm2022/lib/ecommerce/styles/Collection.modal.mjs +5 -3
  88. package/esm2022/lib/ecommerce/styles/OrderedItems.modal.mjs +1 -1
  89. package/esm2022/lib/ecommerce/styles/PincodeLocation.model.mjs +1 -1
  90. package/esm2022/lib/ecommerce/styles/PincodeLocationInter.model.mjs +1 -1
  91. package/esm2022/lib/ecommerce/styles/cart.modal.mjs +1 -1
  92. package/esm2022/lib/ecommerce/styles/category.modal.mjs +1 -1
  93. package/esm2022/lib/ecommerce/styles/order.modal.mjs +1 -1
  94. package/esm2022/lib/ecommerce/styles/product.modal.mjs +22 -1
  95. package/esm2022/lib/ecommerce/styles/review.modal.mjs +1 -1
  96. package/esm2022/lib/ecommerce/styles/user.modal.mjs +3 -1
  97. package/esm2022/lib/elements/add-section/add-section.component.mjs +3 -4
  98. package/esm2022/lib/elements/address-list/address-list.component.mjs +98 -0
  99. package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +13 -8
  100. package/esm2022/lib/elements/button/button.component.mjs +3 -3
  101. package/esm2022/lib/elements/button/button.model.mjs +1 -1
  102. package/esm2022/lib/elements/card-skeleton-loader/card-skeleton-loader.component.mjs +3 -3
  103. package/esm2022/lib/elements/covering-image-card/covering-image-card.component.mjs +8 -4
  104. package/esm2022/lib/elements/editor-service.service.mjs +29 -12
  105. package/esm2022/lib/elements/heading-element/heading-element.component.mjs +3 -3
  106. package/esm2022/lib/elements/image-editor/image-editor.component.mjs +147 -15
  107. package/esm2022/lib/elements/index.mjs +1 -1
  108. package/esm2022/lib/elements/link-editor/link-editor.component.mjs +108 -10
  109. package/esm2022/lib/elements/list-home-appointment/list-home-appointment.component.mjs +94 -0
  110. package/esm2022/lib/elements/media-selector/media-selector.component.mjs +3 -3
  111. package/esm2022/lib/elements/navbar-button-element/navbar-button-element.component.mjs +1 -2
  112. package/esm2022/lib/elements/portfolio/portfolio.component.mjs +3 -3
  113. package/esm2022/lib/elements/pricing-s1/pricing-s1.component.mjs +80 -0
  114. package/esm2022/lib/elements/property/property.component.mjs +3 -3
  115. package/esm2022/lib/elements/schedule-video-call/schedule-video-call.component.mjs +187 -0
  116. package/esm2022/lib/elements/simpo-button/simpo-button.component.mjs +3 -3
  117. package/esm2022/lib/elements/svg-divider/svg-divider.component.mjs +3 -3
  118. package/esm2022/lib/elements/text/text.component.mjs +3 -3
  119. package/esm2022/lib/elements/text-editor/text-editor.component.mjs +72 -27
  120. package/esm2022/lib/elements/top-of-image-card/top-of-image-card.component.mjs +7 -3
  121. package/esm2022/lib/pipes/amount.pipe.mjs +1 -1
  122. package/esm2022/lib/pipes/gender.pipe.mjs +5 -1
  123. package/esm2022/lib/sections/BaseSection.mjs +1 -1
  124. package/esm2022/lib/sections/add-new-section/add-new-section.component.mjs +3 -3
  125. package/esm2022/lib/sections/appointment-form/appointment-form.component.mjs +164 -98
  126. package/esm2022/lib/sections/appointment-form/appointment-form.model.mjs +1 -1
  127. package/esm2022/lib/sections/banner-carousel/banner-carousel.component.mjs +6 -32
  128. package/esm2022/lib/sections/banner-carousel/banner-carousel.model.mjs +1 -1
  129. package/esm2022/lib/sections/banner-grid-section/banner-grid-section.component.mjs +52 -17
  130. package/esm2022/lib/sections/banner-section/banner-section.component.mjs +6 -25
  131. package/esm2022/lib/sections/blog-list/blog-list.component.mjs +4 -4
  132. package/esm2022/lib/sections/blog-list/blog-list.model.mjs +1 -1
  133. package/esm2022/lib/sections/carousel-banner/carousel-banner.component.mjs +8 -7
  134. package/esm2022/lib/sections/carousel-banner/carousel-banner.model.mjs +1 -1
  135. package/esm2022/lib/sections/choose-us-section/choose-us-section.component.mjs +6 -4
  136. package/esm2022/lib/sections/choose-us-section/choose-us-section.model.mjs +1 -1
  137. package/esm2022/lib/sections/contact-us/contact-us.component.mjs +37 -7
  138. package/esm2022/lib/sections/contact-us/contact-us.modal.mjs +1 -1
  139. package/esm2022/lib/sections/faq-section/faq-section.component.mjs +4 -4
  140. package/esm2022/lib/sections/faq-section/faq-section.modal.mjs +1 -1
  141. package/esm2022/lib/sections/features-section/features-section.component.mjs +6 -4
  142. package/esm2022/lib/sections/features-section/features-section.model.mjs +1 -1
  143. package/esm2022/lib/sections/footer/footer.component.mjs +6 -9
  144. package/esm2022/lib/sections/footer/footer.modal.mjs +1 -1
  145. package/esm2022/lib/sections/header-section/header-section.component.mjs +95 -13
  146. package/esm2022/lib/sections/header-section/header-section.model.mjs +1 -1
  147. package/esm2022/lib/sections/header-text/header-text.component.mjs +3 -3
  148. package/esm2022/lib/sections/header-text/header-text.model.mjs +1 -1
  149. package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +12 -22
  150. package/esm2022/lib/sections/image-carousel-section/image-carousel.model.mjs +1 -1
  151. package/esm2022/lib/sections/image-grid-section/image-grid-section.component.mjs +9 -4
  152. package/esm2022/lib/sections/image-grid-section/image-grid-section.model.mjs +1 -1
  153. package/esm2022/lib/sections/image-section/image-section.component.mjs +12 -5
  154. package/esm2022/lib/sections/image-section/image-section.model.mjs +1 -1
  155. package/esm2022/lib/sections/location-section/location-section.component.mjs +3 -3
  156. package/esm2022/lib/sections/location-section/location-section.modal.mjs +1 -1
  157. package/esm2022/lib/sections/logo-gallery/logo-gallery.component.mjs +9 -4
  158. package/esm2022/lib/sections/logo-showcase/logo-showcase.component.mjs +9 -3
  159. package/esm2022/lib/sections/logo-showcase/logo-showcase.modal.mjs +1 -1
  160. package/esm2022/lib/sections/moving-text/moving-text.component.mjs +119 -0
  161. package/esm2022/lib/sections/moving-text/moving-text.modal.mjs +2 -0
  162. package/esm2022/lib/sections/new-services/new-services.component.mjs +4 -4
  163. package/esm2022/lib/sections/new-services/new-services.model.mjs +1 -1
  164. package/esm2022/lib/sections/new-testimonials/new-testimonials.component.mjs +12 -6
  165. package/esm2022/lib/sections/new-testimonials/new-testimonials.model.mjs +1 -1
  166. package/esm2022/lib/sections/news-letter-component/news-letter-component.component.mjs +108 -0
  167. package/esm2022/lib/sections/news-letter-component/news-letter.modal.mjs +2 -0
  168. package/esm2022/lib/sections/pricing-section/pricing-section.component.mjs +28 -4
  169. package/esm2022/lib/sections/pricing-section/pricing-section.modal.mjs +1 -1
  170. package/esm2022/lib/sections/process-modern/process-modern.component.mjs +12 -4
  171. package/esm2022/lib/sections/process-modern/process-modern.model.mjs +1 -1
  172. package/esm2022/lib/sections/process-section/process-section.component.mjs +6 -3
  173. package/esm2022/lib/sections/process-section/process-section.modal.mjs +1 -1
  174. package/esm2022/lib/sections/property-component/property-component.component.mjs +3 -3
  175. package/esm2022/lib/sections/property-component/property-component.modal.mjs +1 -1
  176. package/esm2022/lib/sections/property-list/property-list.component.mjs +3 -3
  177. package/esm2022/lib/sections/property-list/property-list.modal.mjs +1 -1
  178. package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.component.mjs +6 -4
  179. package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.model.mjs +1 -1
  180. package/esm2022/lib/sections/registration-form/registration-form.component.mjs +9 -9
  181. package/esm2022/lib/sections/registration-form/registrationForm.model.mjs +1 -1
  182. package/esm2022/lib/sections/service-section/service-section.component.mjs +4 -4
  183. package/esm2022/lib/sections/service-section/service-section.model.mjs +1 -1
  184. package/esm2022/lib/sections/skeleton-loader-section/skeleton-loader-section.component.mjs +3 -3
  185. package/esm2022/lib/sections/team-member-section/team-member-section.component.mjs +3 -3
  186. package/esm2022/lib/sections/team-member-section/team-member-section.model.mjs +1 -1
  187. package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +6 -3
  188. package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.model.mjs +1 -1
  189. package/esm2022/lib/sections/testimonial-section/testimonial-section.component.mjs +18 -3
  190. package/esm2022/lib/sections/testimonial-section/testimonial-section.model.mjs +1 -1
  191. package/esm2022/lib/sections/testimonial-video/testimonial-video.component.mjs +3 -3
  192. package/esm2022/lib/sections/testimonial-video/testimonial-video.model.mjs +1 -1
  193. package/esm2022/lib/sections/text-image-section/text-image-section.component.mjs +3 -17
  194. package/esm2022/lib/sections/text-section/text-section.component.mjs +3 -21
  195. package/esm2022/lib/sections/text-section/text-section.model.mjs +1 -1
  196. package/esm2022/lib/sections/usp-video-section/usp-video-section.component.mjs +3 -3
  197. package/esm2022/lib/sections/usp-video-section/usp-video-section.model.mjs +1 -1
  198. package/esm2022/lib/sections/video-section/video-section.component.mjs +16 -16
  199. package/esm2022/lib/sections/video-section/video-section.model.mjs +1 -1
  200. package/esm2022/lib/sections/view-blog/view-blog.component.mjs +3 -3
  201. package/esm2022/lib/services/cart.service.mjs +38 -35
  202. package/esm2022/lib/services/endUser.service.mjs +1 -1
  203. package/esm2022/lib/services/events.service.mjs +3 -8
  204. package/esm2022/lib/services/image-upload-service.service.mjs +7 -4
  205. package/esm2022/lib/services/rest.service.mjs +125 -68
  206. package/esm2022/lib/services/sanitizeHtml.mjs +1 -1
  207. package/esm2022/lib/services/storage.service.mjs +27 -44
  208. package/esm2022/lib/styles/index.mjs +8 -1
  209. package/esm2022/lib/styles/style.model.mjs +3 -2
  210. package/esm2022/lib/styles/types.mjs +1 -1
  211. package/esm2022/lib/tokens/api-token.mjs +1 -1
  212. package/esm2022/public-api.mjs +14 -2
  213. package/fesm2022/simpo-component-library.mjs +5815 -1711
  214. package/fesm2022/simpo-component-library.mjs.map +1 -1
  215. package/lib/directive/alignment.directive.d.ts +11 -0
  216. package/lib/directive/button-directive.directive.d.ts +2 -0
  217. package/lib/directive/button-editor.directive.d.ts +6 -2
  218. package/lib/directive/height.directive.d.ts +11 -0
  219. package/lib/directive/hover-animation.directive.d.ts +19 -0
  220. package/lib/directive/image-editor.directive.d.ts +6 -1
  221. package/lib/directive/set-dynamic-background.directive.d.ts +14 -0
  222. package/lib/directive/spacing-around.directive.d.ts +7 -2
  223. package/lib/directive/spacing.directive.d.ts +12 -0
  224. package/lib/directive/translate-onhover.directive.d.ts +11 -0
  225. package/lib/ecommerce/sections/address/address.component.d.ts +11 -3
  226. package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +23 -5
  227. package/lib/ecommerce/sections/book-appointment/book-appointment.component.d.ts +70 -0
  228. package/lib/ecommerce/sections/book-appointment/book-appointment.model.d.ts +14 -0
  229. package/lib/ecommerce/sections/cart/cart.component.d.ts +35 -3
  230. package/lib/ecommerce/sections/enrollment-form/enrollment-form.component.d.ts +54 -0
  231. package/lib/ecommerce/sections/enrollment-form/enrollment-form.model.d.ts +29 -0
  232. package/lib/ecommerce/sections/featured-category/featured-category.modal.d.ts +2 -0
  233. package/lib/ecommerce/sections/featured-products/featured-products.component.d.ts +6 -1
  234. package/lib/ecommerce/sections/featured-products/featured-products.modal.d.ts +6 -2
  235. package/lib/ecommerce/sections/new-collection/new-collection.component.d.ts +36 -0
  236. package/lib/ecommerce/sections/new-collection/new-collection.modal.d.ts +23 -0
  237. package/lib/ecommerce/sections/order-details/order-details.component.d.ts +18 -1
  238. package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +61 -2
  239. package/lib/ecommerce/sections/product-desc/product-desc.modal.d.ts +5 -0
  240. package/lib/ecommerce/sections/product-list/product-list.component.d.ts +110 -17
  241. package/lib/ecommerce/sections/returns-calculator/returns-calculator.component.d.ts +31 -0
  242. package/lib/ecommerce/sections/returns-calculator/returns-calculator.model.d.ts +14 -0
  243. package/lib/ecommerce/sections/scheme-details/scheme-details.component.d.ts +16 -0
  244. package/lib/ecommerce/sections/scheme-selection/scheme-selection.component.d.ts +18 -0
  245. package/lib/ecommerce/sections/small-product-listing/small-product-listing.component.d.ts +6 -1
  246. package/lib/ecommerce/sections/store-list/store-list.component.d.ts +43 -0
  247. package/lib/ecommerce/sections/store-list/store-list.modal.d.ts +11 -0
  248. package/lib/ecommerce/sections/store-page/store-page.component.d.ts +27 -0
  249. package/lib/ecommerce/sections/store-page/store-page.model.d.ts +11 -0
  250. package/lib/ecommerce/sections/user-profile/user-profile.component.d.ts +10 -1
  251. package/lib/ecommerce/sections/whislist/whislist.component.d.ts +4 -1
  252. package/lib/ecommerce/styles/Collection.modal.d.ts +1 -0
  253. package/lib/ecommerce/styles/product.modal.d.ts +19 -0
  254. package/lib/ecommerce/styles/user.modal.d.ts +3 -0
  255. package/lib/elements/address-list/address-list.component.d.ts +27 -0
  256. package/lib/elements/below-image-card/below-image-card.component.d.ts +3 -0
  257. package/lib/elements/covering-image-card/covering-image-card.component.d.ts +3 -0
  258. package/lib/elements/editor-service.service.d.ts +4 -4
  259. package/lib/elements/image-editor/image-editor.component.d.ts +29 -3
  260. package/lib/elements/link-editor/link-editor.component.d.ts +13 -1
  261. package/lib/elements/list-home-appointment/list-home-appointment.component.d.ts +27 -0
  262. package/lib/elements/pricing-s1/pricing-s1.component.d.ts +21 -0
  263. package/lib/elements/schedule-video-call/schedule-video-call.component.d.ts +33 -0
  264. package/lib/elements/text-editor/text-editor.component.d.ts +3 -0
  265. package/lib/elements/top-of-image-card/top-of-image-card.component.d.ts +3 -0
  266. package/lib/sections/appointment-form/appointment-form.component.d.ts +11 -4
  267. package/lib/sections/banner-carousel/banner-carousel.component.d.ts +1 -1
  268. package/lib/sections/banner-grid-section/banner-grid-section.component.d.ts +8 -1
  269. package/lib/sections/carousel-banner/carousel-banner.model.d.ts +1 -0
  270. package/lib/sections/contact-us/contact-us.component.d.ts +2 -1
  271. package/lib/sections/contact-us/contact-us.modal.d.ts +5 -1
  272. package/lib/sections/features-section/features-section.model.d.ts +2 -0
  273. package/lib/sections/header-section/header-section.component.d.ts +29 -2
  274. package/lib/sections/header-section/header-section.model.d.ts +14 -2
  275. package/lib/sections/header-text/header-text.model.d.ts +2 -1
  276. package/lib/sections/image-carousel-section/image-carousel-section.component.d.ts +2 -1
  277. package/lib/sections/image-grid-section/image-grid-section.component.d.ts +1 -0
  278. package/lib/sections/image-grid-section/image-grid-section.model.d.ts +3 -1
  279. package/lib/sections/image-section/image-section.component.d.ts +2 -1
  280. package/lib/sections/logo-gallery/logo-gallery.component.d.ts +2 -1
  281. package/lib/sections/logo-showcase/logo-showcase.component.d.ts +3 -1
  282. package/lib/sections/logo-showcase/logo-showcase.modal.d.ts +11 -2
  283. package/lib/sections/moving-text/moving-text.component.d.ts +28 -0
  284. package/lib/sections/moving-text/moving-text.modal.d.ts +19 -0
  285. package/lib/sections/new-testimonials/new-testimonials.component.d.ts +2 -1
  286. package/lib/sections/news-letter-component/news-letter-component.component.d.ts +26 -0
  287. package/lib/sections/news-letter-component/news-letter.modal.d.ts +19 -0
  288. package/lib/sections/pricing-section/pricing-section.component.d.ts +2 -0
  289. package/lib/sections/pricing-section/pricing-section.modal.d.ts +3 -0
  290. package/lib/sections/process-modern/process-modern.component.d.ts +2 -0
  291. package/lib/sections/process-section/process-section.component.d.ts +1 -0
  292. package/lib/sections/process-section/process-section.modal.d.ts +2 -0
  293. package/lib/sections/service-section/service-section.model.d.ts +5 -1
  294. package/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.d.ts +1 -0
  295. package/lib/sections/testimonial-section/testimonial-section.component.d.ts +1 -0
  296. package/lib/sections/video-section/video-section.component.d.ts +4 -3
  297. package/lib/sections/video-section/video-section.model.d.ts +1 -1
  298. package/lib/services/cart.service.d.ts +1 -6
  299. package/lib/services/events.service.d.ts +2 -6
  300. package/lib/services/rest.service.d.ts +29 -18
  301. package/lib/services/storage.service.d.ts +6 -5
  302. package/lib/styles/index.d.ts +7 -1
  303. package/lib/styles/style.model.d.ts +15 -1
  304. package/lib/styles/types.d.ts +10 -2
  305. package/package.json +1 -1
  306. package/public-api.d.ts +13 -0
  307. package/simpo-component-library-3.6.2.tgz +0 -0
  308. package/src/lib/styles/global-styles.css +251 -191
  309. package/simpo-component-library-3.5.52.tgz +0 -0
@@ -7,6 +7,7 @@ import { OrderedItems } from '../../styles/OrderedItems.modal';
7
7
  import BaseSection from '../../../sections/BaseSection';
8
8
  import { MessageService } from 'primeng/api';
9
9
  import { Cart } from '../../styles/cart.modal';
10
+ import { Router } from '@angular/router';
10
11
  import * as i0 from "@angular/core";
11
12
  export declare class WhislistComponent extends BaseSection implements OnInit {
12
13
  private readonly cartService;
@@ -14,6 +15,7 @@ export declare class WhislistComponent extends BaseSection implements OnInit {
14
15
  private readonly storageService;
15
16
  private readonly restService;
16
17
  private readonly messageService;
18
+ private router;
17
19
  responseData?: Cart;
18
20
  data?: any;
19
21
  index?: number;
@@ -22,7 +24,7 @@ export declare class WhislistComponent extends BaseSection implements OnInit {
22
24
  customClass?: string;
23
25
  isLoading: boolean;
24
26
  styles: any;
25
- constructor(cartService: CartService, _eventService: EventsService, storageService: StorageServiceService, restService: RestService, messageService: MessageService);
27
+ constructor(cartService: CartService, _eventService: EventsService, storageService: StorageServiceService, restService: RestService, messageService: MessageService, router: Router);
26
28
  private userDetails;
27
29
  private USER_WISHLIST_ITEMS;
28
30
  wishlistInfo: any;
@@ -35,6 +37,7 @@ export declare class WhislistComponent extends BaseSection implements OnInit {
35
37
  editSection(): void;
36
38
  get isMobile(): boolean;
37
39
  get currency(): string;
40
+ redirectToProduct(product: OrderedItems): void;
38
41
  static ɵfac: i0.ɵɵFactoryDeclaration<WhislistComponent, never>;
39
42
  static ɵcmp: i0.ɵɵComponentDeclaration<WhislistComponent, "simpo-whislist", never, { "responseData": { "alias": "responseData"; "required": false; }; "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
40
43
  }
@@ -3,6 +3,7 @@ export declare class Collection extends BaseCollection {
3
3
  collectionId: string;
4
4
  collectionName: string;
5
5
  featuredCollection: boolean;
6
+ itemIds: string[];
6
7
  constructor(json?: {
7
8
  [key: string]: any;
8
9
  });
@@ -22,6 +22,8 @@ export declare class Product {
22
22
  makingChargePercentage: number;
23
23
  jewelleryPrice: number;
24
24
  baseWeight: number;
25
+ totalReviewCount: number;
26
+ averageRating: number;
25
27
  categoryId: string;
26
28
  descriptor: Descriptor;
27
29
  rating: number;
@@ -31,6 +33,7 @@ export declare class Product {
31
33
  availableOnCod: boolean;
32
34
  brief: string;
33
35
  jewelryPriceBreakup: any;
36
+ configs: any;
34
37
  constructor(json?: {
35
38
  [key: string]: any;
36
39
  });
@@ -201,3 +204,19 @@ export interface ItemImage2 {
201
204
  imgUrl: string;
202
205
  imgDesc: string;
203
206
  }
207
+ export declare class syncItemToServerDBRequest {
208
+ businessId: string;
209
+ userId: string;
210
+ cartType: 'CART' | 'WISHLISH' | 'TRIAL_CART';
211
+ cartItems: any[];
212
+ platform: string;
213
+ constructor(userId: string, cartType: 'CART' | 'WISHLISH' | 'TRIAL_CART', cartItems: any[]);
214
+ }
215
+ export declare class checkItemAlreadyAdded {
216
+ itemId: string;
217
+ variantId: string;
218
+ userId: string;
219
+ businessId: string;
220
+ cartType: 'CART' | 'WISHLISH' | 'TRIAL_CART';
221
+ constructor(itemId: string, variantId: string, userId: string, cartType: 'CART' | 'WISHLISH' | 'TRIAL_CART');
222
+ }
@@ -6,6 +6,8 @@ export declare class User {
6
6
  contact: Contact;
7
7
  addressDetailsList: AddressDetails[];
8
8
  deviceInfo: DeviceInfo[];
9
+ orraUserId: string;
10
+ pwcUserCode: string;
9
11
  constructor(json?: {
10
12
  [key: string]: any;
11
13
  });
@@ -30,6 +32,7 @@ export interface AddressDetails {
30
32
  zipCode: string;
31
33
  addressType: ADDRESS_TYPE | null;
32
34
  geolocation: Geolocation;
35
+ default: boolean;
33
36
  }
34
37
  export interface Geolocation {
35
38
  latitude: number;
@@ -0,0 +1,27 @@
1
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
2
+ import { AddressDetails } from '../../ecommerce/styles/user.modal';
3
+ import { StorageServiceService } from '../../services/storage.service';
4
+ import { RestService } from '../../services/rest.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AddressListComponent {
7
+ private readonly matDialog;
8
+ data: any;
9
+ dialogRef: MatDialogRef<AddressListComponent>;
10
+ private readonly storageService;
11
+ private readonly restService;
12
+ constructor(matDialog: MatDialog, data: any, dialogRef: MatDialogRef<AddressListComponent>, storageService: StorageServiceService, restService: RestService);
13
+ addressList: any[];
14
+ defaultAddressIndex: number;
15
+ defaultAddress: any;
16
+ selectedAddressIndex: any;
17
+ isLoading: boolean;
18
+ deleteLoading: boolean;
19
+ ngOnInit(): void;
20
+ addOrEditAddress(editIndex: number, address?: AddressDetails): void;
21
+ closeDialog(): void;
22
+ markAddressAsDefault(): void;
23
+ deleteAddress(index: number): void;
24
+ updateUserAddress(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressListComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddressListComponent, "simpo-address-list", never, {}, {}, never, never, true, never>;
27
+ }
@@ -13,6 +13,9 @@ export declare class BelowImageCardComponent {
13
13
  ngOnInit(): void;
14
14
  redirectTo(): void;
15
15
  get getAspectRatio(): any;
16
+ getContentAnimation(): {
17
+ contentAnimation: any;
18
+ };
16
19
  static ɵfac: i0.ɵɵFactoryDeclaration<BelowImageCardComponent, never>;
17
20
  static ɵcmp: i0.ɵɵComponentDeclaration<BelowImageCardComponent, "simpo-below-image-card", never, { "data": { "alias": "data"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "content": { "alias": "content"; "required": false; }; "componentId": { "alias": "componentId"; "required": false; }; "button": { "alias": "button"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
18
21
  }
@@ -12,6 +12,9 @@ export declare class CoveringImageCardComponent {
12
12
  constructor(_eventService: EventsService);
13
13
  ngOnInit(): void;
14
14
  redirectTo(): void;
15
+ getContentAnimation(): {
16
+ contentAnimation: any;
17
+ };
15
18
  static ɵfac: i0.ɵɵFactoryDeclaration<CoveringImageCardComponent, never>;
16
19
  static ɵcmp: i0.ɵɵComponentDeclaration<CoveringImageCardComponent, "simpo-covering-image-card", never, { "data": { "alias": "data"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "content": { "alias": "content"; "required": false; }; "componentId": { "alias": "componentId"; "required": false; }; "button": { "alias": "button"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
17
20
  }
@@ -1,13 +1,11 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
- import { MatDialog } from '@angular/material/dialog';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class ElementServiceService {
5
4
  private http;
6
5
  private BASE_URL;
7
6
  private CMIS_URL;
8
- dialog: MatDialog;
9
- constructor(http: HttpClient, BASE_URL: string, CMIS_URL: string, dialog: MatDialog);
10
- openSocialBrand(componentName: any, height: any, width: any, data: any): import("@angular/material/dialog").MatDialogRef<unknown, any>;
7
+ constructor(http: HttpClient, BASE_URL: string, CMIS_URL: string);
8
+ openSocialBrand(componentName: any, height: any, width: any, data: any): void;
11
9
  getComponentApi(businessType?: 'STATIC' | 'E_COMMERCE'): import("rxjs").Observable<Object>;
12
10
  regenerateText(request: any): import("rxjs").Observable<Object>;
13
11
  getImageLibrary(): import("rxjs").Observable<Object>;
@@ -17,6 +15,8 @@ export declare class ElementServiceService {
17
15
  getAllCombos(data: any): import("rxjs").Observable<Object>;
18
16
  getAllStops(bId: any): import("rxjs").Observable<Object>;
19
17
  getVehicleRoutes(stopId: any, typeId: any): import("rxjs").Observable<Object>;
18
+ getAllCategories(): import("rxjs").Observable<any>;
19
+ getAllCollections(): import("rxjs").Observable<any>;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementServiceService, never>;
21
21
  static ɵprov: i0.ɵɵInjectableDeclaration<ElementServiceService>;
22
22
  }
@@ -1,22 +1,48 @@
1
1
  import { MatDialog, MatDialogRef } from '@angular/material/dialog';
2
2
  import { EventsService } from '../../services/events.service';
3
- import { Image } from '../../styles/style.model';
3
+ import { Button, Image } from '../../styles/style.model';
4
+ import { ElementServiceService } from '../editor-service.service';
5
+ import { RedirectionLinkType } from '../../styles/index';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class ImageEditorComponent {
6
8
  private eventsService;
9
+ private editorService;
7
10
  dialogRef: MatDialogRef<ImageEditorComponent>;
8
11
  data: any;
9
12
  private matDialog;
10
- constructor(eventsService: EventsService, dialogRef: MatDialogRef<ImageEditorComponent>, data: any, matDialog: MatDialog);
13
+ constructor(eventsService: EventsService, editorService: ElementServiceService, dialogRef: MatDialogRef<ImageEditorComponent>, data: any, matDialog: MatDialog);
11
14
  imageData: Image;
12
15
  sectionId: string;
13
16
  private backDrop;
14
- ngOnInit(): void;
17
+ link: Button;
18
+ ngOnInit(): Promise<void>;
19
+ RedirectionLink: typeof RedirectionLinkType;
20
+ addLink: boolean;
15
21
  max: number;
16
22
  min: number;
17
23
  updateImage(): Promise<void>;
18
24
  horizontalPosition(): void;
19
25
  deleteImage(): void;
26
+ linkType: any[];
27
+ selectedType: RedirectionLinkType;
28
+ changeType(type: RedirectionLinkType): void;
29
+ templatePage: any[];
30
+ getTemplatePage(): void;
31
+ externalLinkType: Array<type>;
32
+ collectionList: any;
33
+ categoryList: any;
34
+ collectionPath: any;
35
+ getCollectionList(): void;
36
+ getCategoryList(): void;
37
+ pageName: string;
38
+ addCollectionToPath(): void;
39
+ categoryPath: any;
40
+ addCategoryToPath(): void;
41
+ onPageChange(event: any): void;
20
42
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageEditorComponent, never>;
21
43
  static ɵcmp: i0.ɵɵComponentDeclaration<ImageEditorComponent, "simpo-image-editor", never, {}, {}, never, never, true, never>;
22
44
  }
45
+ interface type {
46
+ type: string;
47
+ }
48
+ export {};
@@ -2,24 +2,36 @@ import { Button } from '../../styles/style.model';
2
2
  import { RedirectionLinkType } from '../../styles/index';
3
3
  import { MatDialogRef } from '@angular/material/dialog';
4
4
  import { ElementServiceService } from '../editor-service.service';
5
+ import { EventsService } from '../../services/events.service';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class LinkEditorComponent {
7
8
  private editorService;
8
9
  dialogRef: MatDialogRef<LinkEditorComponent>;
9
10
  data: any;
11
+ private eventService;
10
12
  link: Button;
11
13
  RedirectionLink: typeof RedirectionLinkType;
12
14
  externalLinkType: Array<type>;
13
15
  selectedType: RedirectionLinkType;
14
16
  linkType: any[];
17
+ buttonTypes: any[];
18
+ buttonShapes: any[];
19
+ directionType: any[];
15
20
  templatePage: any[];
16
21
  addLink: boolean;
17
- constructor(editorService: ElementServiceService, dialogRef: MatDialogRef<LinkEditorComponent>, data: any);
22
+ constructor(editorService: ElementServiceService, dialogRef: MatDialogRef<LinkEditorComponent>, data: any, eventService: EventsService);
18
23
  ngOnInit(): void;
19
24
  closeDialog(): void;
20
25
  getTemplatePage(): void;
21
26
  changeType(type: RedirectionLinkType): void;
22
27
  addNewLink(): void;
28
+ buttonStyles: any;
29
+ changeButtonStyle(): void;
30
+ backgroundType: string[];
31
+ setBorderRadius(): "0px" | "99px" | "7px";
32
+ setBorder(): string;
33
+ setColor(): any;
34
+ setBackground(): any;
23
35
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkEditorComponent, never>;
24
36
  static ɵcmp: i0.ɵɵComponentDeclaration<LinkEditorComponent, "simpo-link-editor", never, {}, {}, never, never, true, never>;
25
37
  }
@@ -0,0 +1,27 @@
1
+ import { RestService } from '../../services/rest.service';
2
+ import { StorageServiceService } from '../../services/storage.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ListHomeAppointmentComponent {
5
+ private restService;
6
+ private storageService;
7
+ sectionsVisible: {
8
+ billDetails: boolean;
9
+ deliveryDetails: boolean;
10
+ timeline: boolean;
11
+ };
12
+ currentTab: 'BOOKING_LIST' | 'BOOKING_DETAIL';
13
+ orderTimiline: any;
14
+ homeAppointmentList: any[];
15
+ appointmentDetails: any;
16
+ constructor(restService: RestService, storageService: StorageServiceService);
17
+ ngOnInit(): void;
18
+ getHomeAppointmentList(): void;
19
+ private getIcon;
20
+ toggleSection(section: keyof typeof this.sectionsVisible): void;
21
+ get currency(): string;
22
+ get isMobile(): boolean;
23
+ viewBookingDetail(appointmentDetail: any): void;
24
+ backToAppointmentList(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListHomeAppointmentComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListHomeAppointmentComponent, "simpo-list-home-appointment", never, {}, {}, never, never, true, never>;
27
+ }
@@ -0,0 +1,21 @@
1
+ import BaseSection from '../../sections/BaseSection';
2
+ import { PricingSectionContentModal, PricingSectionModal, PricingSectionStylesModel } from '../../sections/pricing-section/pricing-section.modal';
3
+ import { ButtonModel } from '../../styles/style.model';
4
+ import { EventsService } from '../../services/events.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class PricingS1Component extends BaseSection {
7
+ private _eventService;
8
+ data?: PricingSectionModal;
9
+ edit?: boolean;
10
+ content?: PricingSectionContentModal;
11
+ style?: PricingSectionStylesModel;
12
+ button?: ButtonModel;
13
+ constructor(_eventService: EventsService);
14
+ ngOnInit(): void;
15
+ editSection(): void;
16
+ getButtonId(): string;
17
+ redirectTo(): void;
18
+ getClass(): "col-4" | "col-3" | "col-12" | "col-5";
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<PricingS1Component, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<PricingS1Component, "simpo-pricing-s1", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
21
+ }
@@ -0,0 +1,33 @@
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
3
+ import { MessageService } from 'primeng/api';
4
+ import { RestService } from '../../services/rest.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ScheduleVideoCallComponent implements OnInit {
7
+ private readonly dialogRef;
8
+ private matDialog;
9
+ private readonly messageService;
10
+ private readonly restService;
11
+ responseData: any;
12
+ constructor(dialogRef: MatDialogRef<ScheduleVideoCallComponent>, matDialog: MatDialog, messageService: MessageService, restService: RestService, responseData: any);
13
+ ngOnInit(): void;
14
+ selectedProducts: any[];
15
+ languages: string[];
16
+ selectedLang: string;
17
+ otherLanguage: string;
18
+ orderedItems: any[];
19
+ isSubmitting: boolean;
20
+ goBack(): void;
21
+ openScheduleCall(template: TemplateRef<HTMLDivElement>): void;
22
+ closeDialog(): void;
23
+ get isMobile(): boolean;
24
+ validationErrors: any;
25
+ videoCallPayload: any;
26
+ onInputChange(field: any): void;
27
+ scheduled: boolean;
28
+ resetValidationErrors(): void;
29
+ scheduleVideoCall(): void;
30
+ selectedItems(item: any): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScheduleVideoCallComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScheduleVideoCallComponent, "simpo-schedule-video-call", never, {}, {}, never, never, true, never>;
33
+ }
@@ -42,6 +42,9 @@ export declare class TextEditorComponent {
42
42
  private savedRange;
43
43
  saveSelection(): void;
44
44
  restoreSelection(): void;
45
+ onPaste(event: ClipboardEvent): void;
46
+ stripStyles(html: string): string;
47
+ getText(): string;
45
48
  static ɵfac: i0.ɵɵFactoryDeclaration<TextEditorComponent, never>;
46
49
  static ɵcmp: i0.ɵɵComponentDeclaration<TextEditorComponent, "simpo-text-editor", never, { "value": { "alias": "value"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
47
50
  }
@@ -11,6 +11,9 @@ export declare class TopOfImageCardComponent {
11
11
  edit?: boolean;
12
12
  constructor(_eventService: EventsService);
13
13
  ngOnInit(): void;
14
+ getContentAnimation(): {
15
+ contentAnimation: any;
16
+ };
14
17
  redirectTo(): void;
15
18
  static ɵfac: i0.ɵɵFactoryDeclaration<TopOfImageCardComponent, never>;
16
19
  static ɵcmp: i0.ɵɵComponentDeclaration<TopOfImageCardComponent, "simpo-top-of-image-card", never, { "data": { "alias": "data"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "content": { "alias": "content"; "required": false; }; "componentId": { "alias": "componentId"; "required": false; }; "button": { "alias": "button"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
@@ -51,11 +51,18 @@ export declare class AppointmentFormComponent extends BaseSection implements OnI
51
51
  bookedSlots: Set<unknown>;
52
52
  locationTiming: string[];
53
53
  changeDate(): void;
54
+ startIndex: any;
55
+ endIndex: any;
56
+ disableTimeSlots(staffWorkingHours: any): void;
54
57
  getAvailableSlots(): void;
55
58
  getBookedSlots(res: any): void;
56
- getTime(start: string, end: string, intervalMinutes: number): string[];
57
- generateTimeSlots(startTime: string, endTime: string): string[] | undefined;
58
- parseTime(time: string): [number, number, string];
59
+ getTimeSlotsBetween(start: Date, end: Date, intervalMinutes: number): string[];
60
+ isTimeSlotDisabled(time: string, index: number): boolean;
61
+ generateTimeSlots(startTime: string, endTime: string): string[];
62
+ private toMinutes;
63
+ private isValidTime;
64
+ private parseTime;
65
+ private padZero1;
59
66
  locationData: any;
60
67
  selectedLocation: string;
61
68
  getAllLocations(): void;
@@ -68,7 +75,7 @@ export declare class AppointmentFormComponent extends BaseSection implements OnI
68
75
  getTimeSlots(): void;
69
76
  filterTimeSlots(): void;
70
77
  dateFilter: (date: Date | null) => boolean;
71
- selectedServices: string;
78
+ selectedServices: any;
72
79
  selectedStaff: string;
73
80
  CreateData: any;
74
81
  prepareCreateData(): void;
@@ -23,7 +23,7 @@ export declare class BannerCarouselComponent extends BaseSection implements OnIn
23
23
  constructor(_eventService: EventsService);
24
24
  ngOnInit(): void;
25
25
  get stylesLayout(): LayOutModel;
26
- get getBlurValue(): "STRONG" | "NONE" | "LIGHT" | "MODERATE" | "VERY_STRONG" | undefined;
26
+ get getBlurValue(): "NONE" | "LIGHT" | "MODERATE" | "STRONG" | "VERY_STRONG" | undefined;
27
27
  get getBackgroundColor(): BackgroundModel;
28
28
  get getBackgroundOpacity(): "0" | "0.7" | "0.5" | "0.3" | "0.2";
29
29
  opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { BannerGridSectionModel, BannerGridContentModel, BannerGridStylesModel } from './banner-grid-section.model';
3
3
  import { EventsService } from '../../services/events.service';
4
4
  import BaseSection from '../BaseSection';
5
- import { BackgroundModel, LayOutModel } from '../../styles/style.model';
5
+ import { BackgroundModel, LayOutModel, SpacingModel } from '../../styles/style.model';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class BannerGridSectionComponent extends BaseSection implements OnInit {
8
8
  private _eventService;
@@ -17,10 +17,17 @@ export declare class BannerGridSectionComponent extends BaseSection implements O
17
17
  listItems: any;
18
18
  constructor(_eventService: EventsService);
19
19
  ngOnInit(): void;
20
+ screenWidth: any;
21
+ getScreenSize(): void;
20
22
  get stylesLayout(): LayOutModel;
21
23
  get canMergeNavbar(): boolean | undefined;
22
24
  get isBorderlessImage(): boolean | undefined;
23
25
  editSection(): void;
26
+ getImageClass(index: number): string;
27
+ get spacingLayout(): SpacingModel;
28
+ get alignmentLayout(): import("simpo-component-library").ALIGN | undefined;
29
+ get fitLayout(): import("simpo-component-library").FIT | undefined;
30
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
24
31
  static ɵfac: i0.ɵɵFactoryDeclaration<BannerGridSectionComponent, never>;
25
32
  static ɵcmp: i0.ɵɵComponentDeclaration<BannerGridSectionComponent, "simpo-banner-grid-section", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "index": { "alias": "index"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
26
33
  }
@@ -41,6 +41,7 @@ export interface CarouselBannerStyelsModel {
41
41
  merge?: boolean;
42
42
  transition: BANNER_TRANSITION;
43
43
  devider: DeviderModel;
44
+ image: ImageStyle;
44
45
  }
45
46
  export interface CarouselBannerLayoutModel {
46
47
  fit: FIT;
@@ -18,7 +18,6 @@ export declare class ContactUsComponent extends BaseSection implements OnInit {
18
18
  nextComponentColor?: BackgroundModel;
19
19
  styles?: ContactUsStylesModel;
20
20
  button?: ButtonModel;
21
- buttonId: string;
22
21
  constructor(_eventService: EventsService, platformId: Object, snackBar: MatSnackBar);
23
22
  ngOnInit(): void;
24
23
  get stylesLayout(): LayOutModel;
@@ -28,6 +27,8 @@ export declare class ContactUsComponent extends BaseSection implements OnInit {
28
27
  buttonClick(): void;
29
28
  editSection(): void;
30
29
  canShowContactField(field: any): any;
30
+ getCardStyle(): {};
31
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
31
32
  static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsComponent, never>;
32
33
  static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsComponent, "simpo-contact-us", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
33
34
  }
@@ -1,5 +1,5 @@
1
1
  import { InputTextModel, PositionLayoutModal, StylesModel, Image } from "../../styles/style.model";
2
- import { INPUT_FIELDS_TYPE } from "../../styles/types";
2
+ import { CONTENT_BACKGROUND, INPUT_FIELDS_TYPE } from "../../styles/types";
3
3
  import { ActionModel } from "../../styles/style.model";
4
4
  import { Corners } from "./../../styles/index";
5
5
  export interface ContactUsModel {
@@ -14,6 +14,10 @@ export interface ContactUsStylesModel extends StylesModel {
14
14
  positionLayout: PositionLayoutModal;
15
15
  inputOpacity: number;
16
16
  corners: Corners;
17
+ contentBackground: {
18
+ display: boolean;
19
+ style: CONTENT_BACKGROUND;
20
+ };
17
21
  }
18
22
  export interface ContactUsContentModel {
19
23
  headingText: string;
@@ -1,5 +1,6 @@
1
1
  import { Corners } from "./../../styles/index";
2
2
  import { Image, ImageStyle, InputTextModel, ListItemModal, PositionLayoutModal, StylesModel } from "./../../styles/style.model";
3
+ import { TAB_STYLING } from "./../../styles/types";
3
4
  export interface FeatureSectionModel {
4
5
  id: string;
5
6
  sectionType: string;
@@ -17,6 +18,7 @@ export interface FeatureStylesModel extends StylesModel {
17
18
  fullWidth: boolean;
18
19
  invertImage: boolean;
19
20
  positionLayout: PositionLayoutModal;
21
+ tabStyling: TAB_STYLING;
20
22
  }
21
23
  export interface FeatureItemModel {
22
24
  image: Image;
@@ -6,6 +6,8 @@ import { ActivatedRoute, Router } from '@angular/router';
6
6
  import { MatDialog } from '@angular/material/dialog';
7
7
  import { StorageServiceService } from '../../services/storage.service';
8
8
  import { Header_Type, ProductCardTheme } from '../../styles/index';
9
+ import { MovingTextModal } from '../moving-text/moving-text.modal';
10
+ import { RestService } from '../../services/rest.service';
9
11
  import * as i0 from "@angular/core";
10
12
  export declare class HeaderSectionComponent implements OnInit {
11
13
  private readonly _eventService;
@@ -13,6 +15,7 @@ export declare class HeaderSectionComponent implements OnInit {
13
15
  private readonly activatedRoute;
14
16
  private readonly matDialog;
15
17
  private readonly storageService;
18
+ private restService;
16
19
  data?: HeaderSectionModel;
17
20
  nextComponent: any;
18
21
  index?: number;
@@ -28,17 +31,20 @@ export declare class HeaderSectionComponent implements OnInit {
28
31
  theme: typeof ProductCardTheme;
29
32
  HeaderStyling: typeof Header_Type;
30
33
  parentHeight: number;
31
- constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService);
34
+ constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService, restService: RestService);
35
+ searchChangeTimeout: any;
36
+ waitBeforeSearch(): void;
32
37
  searchProducts(): void;
33
38
  goToFav(): void;
34
39
  get stylesLayout(): LayOutModel;
35
- goToAccount(): void;
40
+ goToAccount(redirectTo: any): void;
36
41
  get loggedIn(): boolean;
37
42
  get getUserName(): string | undefined;
38
43
  goToWishlist(): void;
39
44
  goToCart(): void;
40
45
  applyFilter(value: any, type: string): void;
41
46
  onScroll(event: any): void;
47
+ movingText?: MovingTextModal;
42
48
  ngOnInit(): void;
43
49
  isNavbarOpen: boolean;
44
50
  screenWidth: number;
@@ -68,6 +74,27 @@ export declare class HeaderSectionComponent implements OnInit {
68
74
  getValues(object: any): unknown[];
69
75
  get userGender(): import("../../ecommerce/styles/user.modal").GENDER | null;
70
76
  get getNavbarButton(): any[];
77
+ isScrolled: boolean;
78
+ setColor(): "#000000" | "#ffffff";
79
+ showList: boolean;
80
+ showCollections: boolean;
81
+ categoryList: any;
82
+ collectionList: any;
83
+ selectedCategory: any;
84
+ storeAvaiable: boolean;
85
+ getCategoriesHeader(): void;
86
+ goToStores(): void;
87
+ Object: ObjectConstructor;
88
+ applyFilterToList(obj: any, type: any): void;
89
+ filterByCategory(): void;
90
+ showPincodeInput: boolean;
91
+ pincode: any;
92
+ getPincode: string;
93
+ pinError: boolean;
94
+ setPincode(): void;
95
+ showLogin: boolean;
96
+ goToSchemes(): void;
97
+ getRGBA(bgColor: any, opacity: number): any;
71
98
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderSectionComponent, never>;
72
99
  static ɵcmp: i0.ɵɵComponentDeclaration<HeaderSectionComponent, "simpo-header-section", never, { "data": { "alias": "data"; "required": false; }; "nextComponent": { "alias": "nextComponent"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
73
100
  }
@@ -1,5 +1,5 @@
1
- import { Header_Type, HeaderButtonStyle, ProductCardTheme } from "./../../styles/index";
2
- import { BackgroundModel, HeaderButtonStyleModel, InputTextModel, NavbarButton } from "../../styles/style.model";
1
+ import { Header_Type, HeaderButtonStyle, headlineAnimationType, ProductCardTheme } from "./../../styles/index";
2
+ import { BackgroundModel, DisplaySection, HeaderButtonStyleModel, InputTextModel, ListItemModal, NavbarButton } from "../../styles/style.model";
3
3
  import { FooterLayoutModel, FooterLogoModel, FooterSocialLinkModel } from "../footer-section/footer-section.modal";
4
4
  import { ActionModel } from "../../styles/style.model";
5
5
  export interface HeaderSectionModel {
@@ -19,6 +19,13 @@ export interface HeaderContentModel {
19
19
  ecomlinks: {
20
20
  [key: string]: string[];
21
21
  };
22
+ listItem: ListItemModal<HeaderSectionListItemModel>;
23
+ display: Display;
24
+ }
25
+ export interface Display extends DisplaySection {
26
+ }
27
+ export interface HeaderSectionListItemModel {
28
+ inputText: InputTextModel[];
22
29
  }
23
30
  export interface HeaderStyleModel {
24
31
  layout: FooterLayoutModel;
@@ -28,4 +35,9 @@ export interface HeaderStyleModel {
28
35
  navbarButtonStyle: HeaderButtonStyleModel;
29
36
  styling: Header_Type;
30
37
  theme: ProductCardTheme;
38
+ headline: {
39
+ display: boolean;
40
+ color: string;
41
+ headlineAnimationType: headlineAnimationType;
42
+ };
31
43
  }
@@ -1,4 +1,4 @@
1
- import { ActionModel, InputTextModel, PositionLayoutModal, StylesModel } from "./../../styles/style.model";
1
+ import { ActionModel, InputTextModel, PositionLayoutModal, StylesModel, AlignContent } from "./../../styles/style.model";
2
2
  export interface HeaderTextModel {
3
3
  id: string;
4
4
  sectionType: string;
@@ -15,4 +15,5 @@ export interface textModel {
15
15
  }
16
16
  export interface HeaderTextStylesModel extends StylesModel {
17
17
  positionLayout: PositionLayoutModal;
18
+ contentAlignment: AlignContent;
18
19
  }
@@ -3,7 +3,7 @@ import { ImageCarouselSection, ImageCarouselSectionContentModel, ImageCarouselSe
3
3
  import { EventsService } from './../../services/events.service';
4
4
  import BaseSection from '../BaseSection';
5
5
  import { SPACING } from '../../styles/index';
6
- import { BackgroundModel } from '../../styles/style.model';
6
+ import { BackgroundModel, LayOutModel } from '../../styles/style.model';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class ImageCarouselSectionComponent extends BaseSection implements OnInit {
9
9
  private _eventService;
@@ -19,6 +19,7 @@ export declare class ImageCarouselSectionComponent extends BaseSection implement
19
19
  ngOnInit(): void;
20
20
  screenWidth: number;
21
21
  getScreenSize(event?: number): void;
22
+ get stylesLayout(): LayOutModel;
22
23
  getPrevImage(index: number): import("../../styles/style.model").Image | undefined;
23
24
  getNextImage(index: number): import("../../styles/style.model").Image | undefined;
24
25
  get headingSpace(): SPACING;
@@ -21,6 +21,7 @@ export declare class ImageGridSectionComponent extends BaseSection {
21
21
  get stylesLayout(): LayOutModel;
22
22
  get headingSpace(): SPACING;
23
23
  editSection(): void;
24
+ getLength(): number;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageGridSectionComponent, never>;
25
26
  static ɵcmp: i0.ɵɵComponentDeclaration<ImageGridSectionComponent, "simpo-image-grid-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
26
27
  }