@snabcentr/client-ui 1.19.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (300) hide show
  1. package/accordion/sc-accordion-content.directive.d.ts +2 -2
  2. package/accordion/sc-accordion.component.d.ts +4 -4
  3. package/accordion/sc-accordion.module.d.ts +2 -2
  4. package/auth/index.d.ts +2 -1
  5. package/auth/interfaces/{ApiErrorResponse.d.ts → api-error-response.d.ts} +1 -3
  6. package/auth/interfaces/index.d.ts +3 -0
  7. package/auth/interfaces/sc-bank-account-form-group.d.ts +11 -0
  8. package/auth/interfaces/sc-contact-form-group.d.ts +10 -0
  9. package/auth/sc-auth.module.d.ts +14 -8
  10. package/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.d.ts +1 -1
  11. package/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.d.ts +1 -1
  12. package/auth/sc-sign-in-form/sc-sign-in-form.component.d.ts +1 -1
  13. package/auth/sign-up-form/sc-sign-up-form.component.d.ts +153 -0
  14. package/banner/sc-banner.component.d.ts +9 -5
  15. package/banner/sc-banner.module.d.ts +5 -4
  16. package/brands-list/index.d.ts +2 -0
  17. package/brands-list/sc-brands-list.component.d.ts +15 -0
  18. package/brands-list/sc-brands-list.module.d.ts +12 -0
  19. package/cart/cart-item-mobile/sc-cart-item-mobile.component.d.ts +16 -16
  20. package/cart/sc-cart.module.d.ts +3 -3
  21. package/catalog/categories-list/sc-categories-list.component.d.ts +9 -3
  22. package/catalog/category-card/sc-category-card.component.d.ts +1 -1
  23. package/catalog/input-quantity/sc-input-quantity.component.d.ts +6 -14
  24. package/catalog/price-card/sc-price-card.component.d.ts +11 -105
  25. package/catalog/price-history/sc-price-history.component.d.ts +11 -5
  26. package/catalog/price-list-pagination/sc-price-list-pagination.component.d.ts +10 -5
  27. package/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.d.ts +1 -1
  28. package/catalog/sc-catalog.module.d.ts +5 -4
  29. package/catalog/sc-favorite-btn/sc-favorite-btn.component.d.ts +1 -1
  30. package/contacts/add-contact-dialog/sc-add-contact-dialog.component.d.ts +11 -6
  31. package/contacts/contacts-accordion/sc-contacts-accordion.component.d.ts +1 -1
  32. package/contacts/new-contact-form/sc-new-contact-form.component.d.ts +1 -1
  33. package/contacts/sc-contacts.module.d.ts +6 -1
  34. package/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.d.ts +3 -3
  35. package/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.d.ts +23 -15
  36. package/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.d.ts +1 -1
  37. package/contragents/contragents-accordion/sc-contragents-accordion.component.d.ts +1 -1
  38. package/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.d.ts +1 -1
  39. package/contragents/new-contragent-form/sc-new-contragent-form.component.d.ts +31 -16
  40. package/contragents/sc-contragents.module.d.ts +6 -4
  41. package/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.d.ts +83 -8
  42. package/delivery-address/delivery-address-accordion/delivery-address-accordion-item/sc-delivery-address-accordion-item.component.d.ts +1 -1
  43. package/delivery-address/delivery-address-accordion/sc-delivery-address-accordion.component.d.ts +1 -1
  44. package/delivery-address/sc-delivery-address.module.d.ts +4 -2
  45. package/directives/abstract-price-card/abstract-sc-price-card.directive.d.ts +107 -0
  46. package/directives/index.d.ts +6 -2
  47. package/directives/next-input-focus/sc-next-input-focus.directive.d.ts +18 -0
  48. package/directives/next-input-focus/sc-next-input-focus.module.d.ts +10 -0
  49. package/directives/tel-link/sc-tel-link.directive.d.ts +27 -0
  50. package/directives/tel-link/sc-tel-link.module.d.ts +11 -0
  51. package/directives/terminal-link/sc-terminal-link.directive.d.ts +34 -0
  52. package/esm2022/accordion/sc-accordion-content.directive.mjs +17 -0
  53. package/esm2022/accordion/sc-accordion.component.mjs +88 -0
  54. package/esm2022/accordion/sc-accordion.module.mjs +26 -0
  55. package/esm2022/auth/index.mjs +8 -0
  56. package/esm2022/auth/interfaces/api-error-response.mjs +2 -0
  57. package/esm2022/auth/interfaces/index.mjs +4 -0
  58. package/esm2022/auth/interfaces/sc-bank-account-form-group.mjs +2 -0
  59. package/esm2022/auth/interfaces/sc-contact-form-group.mjs +2 -0
  60. package/esm2022/auth/sc-auth.module.mjs +98 -0
  61. package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +72 -0
  62. package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +70 -0
  63. package/{esm2020 → esm2022}/auth/sc-sign-in-form/sc-sign-in-form.component.mjs +6 -6
  64. package/esm2022/auth/sign-up-form/sc-sign-up-form.component.mjs +321 -0
  65. package/esm2022/banner/sc-banner.component.mjs +234 -0
  66. package/esm2022/banner/sc-banner.module.mjs +29 -0
  67. package/esm2022/brands-list/index.mjs +3 -0
  68. package/esm2022/brands-list/sc-brands-list.component.mjs +24 -0
  69. package/esm2022/brands-list/sc-brands-list.module.mjs +22 -0
  70. package/esm2022/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +121 -0
  71. package/esm2022/cart/sc-cart.module.mjs +54 -0
  72. package/esm2022/catalog/categories-list/sc-categories-list.component.mjs +92 -0
  73. package/esm2022/catalog/category-card/sc-category-card.component.mjs +120 -0
  74. package/esm2022/catalog/input-quantity/sc-input-quantity.component.mjs +141 -0
  75. package/esm2022/catalog/price-card/sc-price-card.component.mjs +64 -0
  76. package/esm2022/catalog/price-history/sc-price-history.component.mjs +126 -0
  77. package/esm2022/catalog/price-list-pagination/sc-price-list-pagination.component.mjs +49 -0
  78. package/{esm2020 → esm2022}/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.mjs +6 -6
  79. package/esm2022/catalog/sc-catalog.module.mjs +120 -0
  80. package/esm2022/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +42 -0
  81. package/esm2022/contacts/add-contact-dialog/sc-add-contact-dialog.component.mjs +89 -0
  82. package/esm2022/contacts/contacts-accordion/sc-contacts-accordion.component.mjs +38 -0
  83. package/esm2022/contacts/new-contact-form/sc-new-contact-form.component.mjs +30 -0
  84. package/esm2022/contacts/sc-contacts.module.mjs +88 -0
  85. package/esm2022/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.mjs +80 -0
  86. package/esm2022/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +262 -0
  87. package/esm2022/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.mjs +75 -0
  88. package/{esm2020 → esm2022}/contragents/contragents-accordion/sc-contragents-accordion.component.mjs +6 -6
  89. package/esm2022/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.mjs +64 -0
  90. package/esm2022/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +220 -0
  91. package/esm2022/contragents/sc-contragents.module.mjs +110 -0
  92. package/esm2022/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.mjs +230 -0
  93. package/{esm2020 → esm2022}/delivery-address/delivery-address-accordion/delivery-address-accordion-item/sc-delivery-address-accordion-item.component.mjs +6 -6
  94. package/{esm2020 → esm2022}/delivery-address/delivery-address-accordion/sc-delivery-address-accordion.component.mjs +6 -6
  95. package/esm2022/delivery-address/sc-delivery-address.module.mjs +84 -0
  96. package/esm2022/directives/abstract-price-card/abstract-sc-price-card.directive.mjs +131 -0
  97. package/esm2022/directives/index.mjs +7 -0
  98. package/esm2022/directives/next-input-focus/sc-next-input-focus.directive.mjs +43 -0
  99. package/esm2022/directives/next-input-focus/sc-next-input-focus.module.mjs +19 -0
  100. package/esm2022/directives/tel-link/sc-tel-link.directive.mjs +58 -0
  101. package/esm2022/directives/tel-link/sc-tel-link.module.mjs +20 -0
  102. package/esm2022/directives/terminal-link/sc-terminal-link.directive.mjs +69 -0
  103. package/esm2022/files/directives/tree-top.directive.mjs +63 -0
  104. package/{esm2020 → esm2022}/files/directives/tree.directive.mjs +5 -5
  105. package/esm2022/files/file-tree-item/file-tree-item.component.mjs +18 -0
  106. package/esm2022/files/files-and-documents/files-and-documents.component.mjs +60 -0
  107. package/esm2022/files/files-and-documents.module.mjs +27 -0
  108. package/esm2022/files/services/tree-icon.service.mjs +49 -0
  109. package/{esm2020 → esm2022}/files/services/tree-loader.service.mjs +5 -5
  110. package/esm2022/form-fields/addresses-selection-field/sc-addresses-selection-field.component.mjs +128 -0
  111. package/esm2022/form-fields/form-fields.module.mjs +69 -0
  112. package/esm2022/form-fields/suggestion-field/sc-suggestion-field.component.mjs +134 -0
  113. package/{esm2020 → esm2022}/helpers/sc-px-converter.mjs +4 -4
  114. package/esm2022/helpers/sc-units-helper.mjs +45 -0
  115. package/{esm2020 → esm2022}/news/news-card/sc-news-card.component.mjs +4 -4
  116. package/{esm2020 → esm2022}/news/news-card-skeleton/sc-news-card-skeleton.component.mjs +4 -4
  117. package/{esm2020 → esm2022}/news/sc-news.module.mjs +5 -5
  118. package/esm2022/order/order-item-mobile/order-item-mobile.component.mjs +80 -0
  119. package/esm2022/order/sc-order.module.mjs +29 -0
  120. package/esm2022/order/sc-payment-status/sc-payment-status.component.mjs +35 -0
  121. package/esm2022/pipes/index.mjs +2 -0
  122. package/esm2022/pipes/sc-formatted-phone.mjs +34 -0
  123. package/esm2022/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.mjs +182 -0
  124. package/esm2022/profile/sc-profile.module.mjs +77 -0
  125. package/{esm2020 → esm2022}/providers/index.mjs +1 -2
  126. package/esm2022/providers/scUserProviders.mjs +27 -0
  127. package/esm2022/public-api.mjs +30 -0
  128. package/esm2022/qrcode/index.mjs +3 -0
  129. package/esm2022/qrcode/qrcode-dialog/sc-qrcode-dialog.component.mjs +58 -0
  130. package/esm2022/qrcode/sc-qrcode.module.mjs +25 -0
  131. package/esm2022/samples/ask-to-sample-form/sc-ask-to-sample-form.component.mjs +37 -0
  132. package/esm2022/samples/index.mjs +5 -0
  133. package/esm2022/samples/interfaces/sc-i-preview-sample.mjs +2 -0
  134. package/esm2022/samples/preview-sample/sc-preview-sample.component.mjs +83 -0
  135. package/esm2022/samples/sc-sample.module.mjs +59 -0
  136. package/{esm2020 → esm2022}/share-button/sc-share-button.component.mjs +5 -5
  137. package/esm2022/share-button/sc-share-button.module.mjs +22 -0
  138. package/esm2022/user/index.mjs +6 -0
  139. package/esm2022/user/reset-user-password/sc-reset-user-password.component.mjs +71 -0
  140. package/esm2022/user/sc-user.module.mjs +89 -0
  141. package/esm2022/user/update-user-info-dialog/sc-update-user-info-dialog.component.mjs +117 -0
  142. package/esm2022/user/user-managers/sc-user-managers.component.mjs +41 -0
  143. package/esm2022/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.mjs +102 -0
  144. package/{esm2020 → esm2022}/validators/index.mjs +2 -2
  145. package/esm2022/validators/sc-password-confirm-matching-validator.mjs +17 -0
  146. package/esm2022/validators/stepValidator.mjs +18 -0
  147. package/esm2022/verification/sc-verification.module.mjs +68 -0
  148. package/esm2022/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +198 -0
  149. package/fesm2022/snabcentr-client-ui.mjs +5710 -0
  150. package/fesm2022/snabcentr-client-ui.mjs.map +1 -0
  151. package/files/directives/tree-top.directive.d.ts +1 -1
  152. package/files/directives/tree.directive.d.ts +1 -1
  153. package/files/file-tree-item/file-tree-item.component.d.ts +3 -3
  154. package/files/files-and-documents/files-and-documents.component.d.ts +1 -1
  155. package/files/files-and-documents.module.d.ts +1 -1
  156. package/form-fields/addresses-selection-field/sc-addresses-selection-field.component.d.ts +17 -11
  157. package/form-fields/form-fields.module.d.ts +5 -3
  158. package/form-fields/suggestion-field/sc-suggestion-field.component.d.ts +10 -2
  159. package/helpers/sc-units-helper.d.ts +6 -6
  160. package/news/news-card/sc-news-card.component.d.ts +1 -1
  161. package/news/news-card-skeleton/sc-news-card-skeleton.component.d.ts +1 -1
  162. package/order/order-item-mobile/order-item-mobile.component.d.ts +9 -9
  163. package/order/sc-order.module.d.ts +4 -2
  164. package/order/sc-payment-status/sc-payment-status.component.d.ts +1 -1
  165. package/package.json +42 -45
  166. package/pipes/index.d.ts +1 -0
  167. package/pipes/sc-formatted-phone.d.ts +19 -0
  168. package/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.d.ts +3 -3
  169. package/profile/sc-profile.module.d.ts +6 -4
  170. package/providers/index.d.ts +0 -1
  171. package/providers/scUserProviders.d.ts +2 -3
  172. package/public-api.d.ts +4 -0
  173. package/qrcode/index.d.ts +2 -0
  174. package/qrcode/qrcode-dialog/sc-qrcode-dialog.component.d.ts +37 -0
  175. package/qrcode/sc-qrcode.module.d.ts +14 -0
  176. package/samples/ask-to-sample-form/sc-ask-to-sample-form.component.d.ts +18 -0
  177. package/samples/index.d.ts +4 -0
  178. package/samples/interfaces/sc-i-preview-sample.d.ts +47 -0
  179. package/samples/preview-sample/sc-preview-sample.component.d.ts +48 -0
  180. package/samples/sc-sample.module.d.ts +19 -0
  181. package/share-button/sc-share-button.component.d.ts +1 -1
  182. package/share-button/sc-share-button.module.d.ts +1 -1
  183. package/styles/taiga/taiga-tailwind-preset.js +121 -0
  184. package/styles/taiga/variables.less +17 -14
  185. package/styles/tailwind/tailwind.scss +252 -61
  186. package/user/index.d.ts +1 -0
  187. package/user/reset-user-password/sc-reset-user-password.component.d.ts +3 -3
  188. package/user/sc-user.module.d.ts +12 -8
  189. package/user/update-user-info-dialog/sc-update-user-info-dialog.component.d.ts +13 -9
  190. package/user/user-managers/sc-user-managers.component.d.ts +26 -0
  191. package/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.d.ts +13 -8
  192. package/validators/index.d.ts +1 -1
  193. package/validators/{scPasswordConfirmMatchingValidator.d.ts → sc-password-confirm-matching-validator.d.ts} +1 -1
  194. package/verification/sc-verification.module.d.ts +5 -4
  195. package/verification/verification-phone-check-form/sc-verification-phone-check-form.component.d.ts +18 -18
  196. package/directives/carousel-item-hidden/sc-carousel-item-hidden.directive.d.ts +0 -24
  197. package/directives/carousel-item-hidden/sc-carousel-item-hidden.module.d.ts +0 -11
  198. package/esm2020/accordion/sc-accordion-content.directive.mjs +0 -17
  199. package/esm2020/accordion/sc-accordion.component.mjs +0 -88
  200. package/esm2020/accordion/sc-accordion.module.mjs +0 -25
  201. package/esm2020/auth/index.mjs +0 -7
  202. package/esm2020/auth/interfaces/ApiErrorResponse.mjs +0 -2
  203. package/esm2020/auth/sc-auth.module.mjs +0 -79
  204. package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +0 -64
  205. package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +0 -63
  206. package/esm2020/banner/sc-banner.component.mjs +0 -234
  207. package/esm2020/banner/sc-banner.module.mjs +0 -26
  208. package/esm2020/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +0 -120
  209. package/esm2020/cart/sc-cart.module.mjs +0 -65
  210. package/esm2020/catalog/categories-list/sc-categories-list.component.mjs +0 -84
  211. package/esm2020/catalog/category-card/sc-category-card.component.mjs +0 -120
  212. package/esm2020/catalog/input-quantity/sc-input-quantity.component.mjs +0 -163
  213. package/esm2020/catalog/price-card/sc-price-card.component.mjs +0 -175
  214. package/esm2020/catalog/price-history/sc-price-history.component.mjs +0 -114
  215. package/esm2020/catalog/price-list-pagination/sc-price-list-pagination.component.mjs +0 -37
  216. package/esm2020/catalog/sc-catalog.module.mjs +0 -128
  217. package/esm2020/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +0 -41
  218. package/esm2020/contacts/add-contact-dialog/sc-add-contact-dialog.component.mjs +0 -71
  219. package/esm2020/contacts/contacts-accordion/sc-contacts-accordion.component.mjs +0 -35
  220. package/esm2020/contacts/new-contact-form/sc-new-contact-form.component.mjs +0 -28
  221. package/esm2020/contacts/sc-contacts.module.mjs +0 -92
  222. package/esm2020/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.mjs +0 -71
  223. package/esm2020/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +0 -249
  224. package/esm2020/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.mjs +0 -75
  225. package/esm2020/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.mjs +0 -61
  226. package/esm2020/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +0 -183
  227. package/esm2020/contragents/sc-contragents.module.mjs +0 -103
  228. package/esm2020/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.mjs +0 -79
  229. package/esm2020/delivery-address/sc-delivery-address.module.mjs +0 -77
  230. package/esm2020/directives/carousel-item-hidden/sc-carousel-item-hidden.directive.mjs +0 -40
  231. package/esm2020/directives/carousel-item-hidden/sc-carousel-item-hidden.module.mjs +0 -21
  232. package/esm2020/directives/index.mjs +0 -3
  233. package/esm2020/files/directives/tree-top.directive.mjs +0 -63
  234. package/esm2020/files/file-tree-item/file-tree-item.component.mjs +0 -18
  235. package/esm2020/files/files-and-documents/files-and-documents.component.mjs +0 -60
  236. package/esm2020/files/files-and-documents.module.mjs +0 -26
  237. package/esm2020/files/services/tree-icon.service.mjs +0 -48
  238. package/esm2020/form-fields/addresses-selection-field/sc-addresses-selection-field.component.mjs +0 -122
  239. package/esm2020/form-fields/form-fields.module.mjs +0 -80
  240. package/esm2020/form-fields/suggestion-field/sc-suggestion-field.component.mjs +0 -116
  241. package/esm2020/helpers/sc-units-helper.mjs +0 -44
  242. package/esm2020/order/order-item-mobile/order-item-mobile.component.mjs +0 -79
  243. package/esm2020/order/sc-order.module.mjs +0 -25
  244. package/esm2020/order/sc-payment-status/sc-payment-status.component.mjs +0 -35
  245. package/esm2020/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.mjs +0 -177
  246. package/esm2020/profile/sc-profile.module.mjs +0 -80
  247. package/esm2020/providers/productsPagination.mjs +0 -99
  248. package/esm2020/providers/scUserProviders.mjs +0 -30
  249. package/esm2020/public-api.mjs +0 -26
  250. package/esm2020/share-button/sc-share-button.module.mjs +0 -22
  251. package/esm2020/user/index.mjs +0 -5
  252. package/esm2020/user/reset-user-password/sc-reset-user-password.component.mjs +0 -67
  253. package/esm2020/user/sc-user.module.mjs +0 -88
  254. package/esm2020/user/update-user-info-dialog/sc-update-user-info-dialog.component.mjs +0 -105
  255. package/esm2020/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.mjs +0 -91
  256. package/esm2020/validators/scPasswordConfirmMatchingValidator.mjs +0 -17
  257. package/esm2020/validators/stepValidator.mjs +0 -18
  258. package/esm2020/verification/sc-verification.module.mjs +0 -73
  259. package/esm2020/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +0 -184
  260. package/fesm2015/snabcentr-client-ui.mjs +0 -4858
  261. package/fesm2015/snabcentr-client-ui.mjs.map +0 -1
  262. package/fesm2020/snabcentr-client-ui.mjs +0 -4778
  263. package/fesm2020/snabcentr-client-ui.mjs.map +0 -1
  264. package/providers/productsPagination.d.ts +0 -43
  265. /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
  266. /package/{esm2020 → esm2022}/auth/enums/auth-method.mjs +0 -0
  267. /package/{esm2020 → esm2022}/banner/index.mjs +0 -0
  268. /package/{esm2020 → esm2022}/cart/index.mjs +0 -0
  269. /package/{esm2020 → esm2022}/catalog/index.mjs +0 -0
  270. /package/{esm2020 → esm2022}/contacts/index.mjs +0 -0
  271. /package/{esm2020 → esm2022}/contragents/index.mjs +0 -0
  272. /package/{esm2020 → esm2022}/delivery-address/index.mjs +0 -0
  273. /package/{esm2020 → esm2022}/files/directives/index.mjs +0 -0
  274. /package/{esm2020 → esm2022}/files/index.mjs +0 -0
  275. /package/{esm2020 → esm2022}/files/interfaces/tree-node.mjs +0 -0
  276. /package/{esm2020 → esm2022}/files/services/index.mjs +0 -0
  277. /package/{esm2020 → esm2022}/form-fields/index.mjs +0 -0
  278. /package/{esm2020 → esm2022}/helpers/index.mjs +0 -0
  279. /package/{esm2020 → esm2022}/icons/index.mjs +0 -0
  280. /package/{esm2020 → esm2022}/icons/sc-client-ui-icons-name.mjs +0 -0
  281. /package/{esm2020 → esm2022}/loader/index.mjs +0 -0
  282. /package/{esm2020 → esm2022}/loader/sc-i-loader.mjs +0 -0
  283. /package/{esm2020 → esm2022}/masks/index.mjs +0 -0
  284. /package/{esm2020 → esm2022}/masks/sc-account-number-mask.mjs +0 -0
  285. /package/{esm2020 → esm2022}/masks/sc-bic-mask.mjs +0 -0
  286. /package/{esm2020 → esm2022}/masks/sc-correspondent-account-mask.mjs +0 -0
  287. /package/{esm2020 → esm2022}/masks/sc-inn-mask.mjs +0 -0
  288. /package/{esm2020 → esm2022}/masks/sc-kpp-mask.mjs +0 -0
  289. /package/{esm2020 → esm2022}/masks/sc-okpo-mask.mjs +0 -0
  290. /package/{esm2020 → esm2022}/masks/sc-phone-verification-code-mask.mjs +0 -0
  291. /package/{esm2020 → esm2022}/news/index.mjs +0 -0
  292. /package/{esm2020 → esm2022}/order/index.mjs +0 -0
  293. /package/{esm2020 → esm2022}/profile/index.mjs +0 -0
  294. /package/{esm2020 → esm2022}/share-button/index.mjs +0 -0
  295. /package/{esm2020 → esm2022}/snabcentr-client-ui.mjs +0 -0
  296. /package/{esm2020 → esm2022}/tokens/index.mjs +0 -0
  297. /package/{esm2020 → esm2022}/tokens/sc-linear-values-token.mjs +0 -0
  298. /package/{esm2020 → esm2022}/validators/scBicValidator.mjs +0 -0
  299. /package/{esm2020 → esm2022}/validators/scCorrespondentAccountValidator.mjs +0 -0
  300. /package/{esm2020 → esm2022}/verification/index.mjs +0 -0
@@ -1,17 +1,32 @@
1
+ import { AfterViewInit } from '@angular/core';
1
2
  import { FormControl, FormGroup } from '@angular/forms';
2
- import { ScConvertersService, ScDeliveryAddressService, ScISuggestionType } from '@snabcentr/client-core';
3
+ import { ScConvertersService, ScDeliveryAddressService, ScISuggestionAddress, ScISuggestionType, ScSuggestion, ScUserMetrikaService } from '@snabcentr/client-core';
3
4
  import { TuiDialogContext } from '@taiga-ui/core';
5
+ import { YaReadyEvent } from 'angular8-yandex-maps';
4
6
  import { Observable, Subject } from 'rxjs';
5
7
  import * as i0 from "@angular/core";
6
8
  /**
7
9
  * Компонент добавления адреса доставки.
8
- *
9
- * TODO: TASK[8813] Добавить карту, и поведение выбора адреса доставки через карту. При этом вынести форму в отдельный компонент AddDeliveryAddressForm или submit логику в директиву.
10
10
  */
11
- export declare class ScAddDeliveryAddressDialogComponent {
11
+ export declare class ScAddDeliveryAddressDialogComponent implements AfterViewInit {
12
12
  private readonly deliveryAddressService;
13
- private readonly context;
13
+ private readonly userMetrikaService;
14
+ readonly context: TuiDialogContext<void, void>;
14
15
  private readonly convertersService;
16
+ /**
17
+ * Округляет координаты до 6 цифр после запятой.
18
+ *
19
+ * @param coords Координаты точки.
20
+ */
21
+ private static roundCoordinate;
22
+ /**
23
+ * Ссылка для автоматического управления уничтожением зависимостей.
24
+ */
25
+ private destroyRef;
26
+ /**
27
+ * Признак того, отображается этот компонент на мобильном устройстве или нет.
28
+ */
29
+ readonly isMobile: boolean;
15
30
  /**
16
31
  * Перечисление типов подсказок.
17
32
  */
@@ -20,6 +35,14 @@ export declare class ScAddDeliveryAddressDialogComponent {
20
35
  * {@link Subject} события отправки формы.
21
36
  */
22
37
  readonly onSubmit$: Subject<void>;
38
+ /**
39
+ * Координаты центра карты по умолчанию.
40
+ */
41
+ readonly defaultCenterMap: number[];
42
+ /**
43
+ * Масштаб карты по умолчанию.
44
+ */
45
+ readonly defaultZoomMap: number;
23
46
  /**
24
47
  * {@link Observable} запроса данных добавления адрес доставки.
25
48
  */
@@ -28,11 +51,23 @@ export declare class ScAddDeliveryAddressDialogComponent {
28
51
  * {@link Observable} изменения состояния загрузки данных.
29
52
  */
30
53
  readonly loading$: Observable<boolean>;
54
+ /**
55
+ * Группа с полями адресов.
56
+ */
57
+ addressControl: FormControl<ScISuggestionAddress | string | null>;
58
+ /**
59
+ * Настройки карты.
60
+ */
61
+ options: ymaps.IMapOptions;
31
62
  /**
32
63
  * Форма для создания адреса доставки.
33
64
  */
34
65
  readonly form: FormGroup<{
35
- address: FormControl<string | null>;
66
+ address: FormControl<string | ScISuggestionAddress | null>;
67
+ coordinates: FormGroup<{
68
+ lat: FormControl<number | null>;
69
+ long: FormControl<number | null>;
70
+ }>;
36
71
  contact: FormGroup<{
37
72
  name: FormControl<string | null>;
38
73
  phone: FormControl<string | null>;
@@ -40,14 +75,54 @@ export declare class ScAddDeliveryAddressDialogComponent {
40
75
  position: FormControl<string | null>;
41
76
  }>;
42
77
  }>;
78
+ /**
79
+ * Точка адреса на карте.
80
+ */
81
+ addressPlacemark?: ymaps.Placemark;
82
+ /**
83
+ * Яндекс карта.
84
+ */
85
+ yaMap?: ymaps.Map;
43
86
  /**
44
87
  * Инициализирует экземпляр класса {@link ScAddDeliveryAddressDialogComponent}.
45
88
  *
46
89
  * @param deliveryAddressService Сервис работы с адресами доставки.
90
+ * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
47
91
  * @param context Контекст диалогового окна, в котором открыт компонент.
48
92
  * @param convertersService Сервис конвертации данных.
49
93
  */
50
- constructor(deliveryAddressService: ScDeliveryAddressService, context: TuiDialogContext<void, void>, convertersService: ScConvertersService);
94
+ constructor(deliveryAddressService: ScDeliveryAddressService, userMetrikaService: ScUserMetrikaService, context: TuiDialogContext<void, void>, convertersService: ScConvertersService);
95
+ /** @inheritdoc */
96
+ ngAfterViewInit(): void;
97
+ /**
98
+ * Обработчик загрузки карты на странице.
99
+ *
100
+ * @param target Экземпляр целевого объекта.
101
+ * @param target.target
102
+ */
103
+ onMapReadyHandle({ target }: YaReadyEvent<ymaps.Map>): void;
104
+ /**
105
+ * Обработчик выбора адреса доставки.
106
+ *
107
+ * @param suggestion Объект подсказки ареса.
108
+ */
109
+ onSelectedAddress(suggestion: ScSuggestion): void;
110
+ /**
111
+ * Устанавливает {@link addressPlacemark} точку на определённые координаты.
112
+ *
113
+ * @param coords Координаты точки.
114
+ */
115
+ private setGeoCoordinates;
116
+ /**
117
+ * Устанавливает {@link addressPlacemark} точку на определённые координаты.
118
+ */
119
+ private removeGeoCoordinates;
120
+ /**
121
+ * Создаёт объект точки и устанавливает события для него.
122
+ *
123
+ * @param coords Координаты точки.
124
+ */
125
+ private createPlacemark;
51
126
  static ɵfac: i0.ɵɵFactoryDeclaration<ScAddDeliveryAddressDialogComponent, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<ScAddDeliveryAddressDialogComponent, "sc-add-delivery-address-dialog", never, {}, {}, never, never, false>;
127
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScAddDeliveryAddressDialogComponent, "sc-add-delivery-address-dialog", never, {}, {}, never, never, false, never>;
53
128
  }
@@ -46,5 +46,5 @@ export declare class ScDeliveryAddressAccordionItemComponent implements OnInit {
46
46
  */
47
47
  onDeleteContragentContactClick(contact: ScIContact, address: ScIDeliveryAddress): void;
48
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ScDeliveryAddressAccordionItemComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<ScDeliveryAddressAccordionItemComponent, "sc-delivery-address-accordion-item", never, { "deliveryAddress": "deliveryAddress"; }, { "deleteDeliveryAddressClick": "deleteDeliveryAddressClick"; "addDeliveryAddressContactClick": "addDeliveryAddressContactClick"; "deleteDeliveryAddressContactClick": "deleteDeliveryAddressContactClick"; }, never, never, false>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDeliveryAddressAccordionItemComponent, "sc-delivery-address-accordion-item", never, { "deliveryAddress": { "alias": "deliveryAddress"; "required": false; }; }, { "deleteDeliveryAddressClick": "deleteDeliveryAddressClick"; "addDeliveryAddressContactClick": "addDeliveryAddressContactClick"; "deleteDeliveryAddressContactClick": "deleteDeliveryAddressContactClick"; }, never, never, false, never>;
50
50
  }
@@ -37,5 +37,5 @@ export declare class ScDeliveryAddressAccordionComponent {
37
37
  */
38
38
  constructor(deliveryAddressService: ScDeliveryAddressService);
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<ScDeliveryAddressAccordionComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<ScDeliveryAddressAccordionComponent, "sc-delivery-address-accordion", never, {}, { "addDeliveryAddressClick": "addDeliveryAddressClick"; "deleteDeliveryAddressClick": "deleteDeliveryAddressClick"; "addDeliveryAddressContactClick": "addDeliveryAddressContactClick"; "deleteDeliveryAddressContactClick": "deleteDeliveryAddressContactClick"; }, never, never, false>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDeliveryAddressAccordionComponent, "sc-delivery-address-accordion", never, {}, { "addDeliveryAddressClick": "addDeliveryAddressClick"; "deleteDeliveryAddressClick": "deleteDeliveryAddressClick"; "addDeliveryAddressContactClick": "addDeliveryAddressContactClick"; "deleteDeliveryAddressContactClick": "deleteDeliveryAddressContactClick"; }, never, never, false, never>;
41
41
  }
@@ -9,12 +9,14 @@ import * as i7 from "@taiga-ui/cdk";
9
9
  import * as i8 from "../contacts/sc-contacts.module";
10
10
  import * as i9 from "@angular/forms";
11
11
  import * as i10 from "@taiga-ui/kit";
12
- import * as i11 from "../form-fields/form-fields.module";
12
+ import * as i11 from "@taiga-ui/legacy";
13
+ import * as i12 from "../form-fields/form-fields.module";
14
+ import * as i13 from "angular8-yandex-maps";
13
15
  /**
14
16
  * Модуль для отображение адресов доставки разделами, с возможностью скрывать и отображать содержимое.
15
17
  */
16
18
  export declare class ScDeliveryAddressModule {
17
19
  static ɵfac: i0.ɵɵFactoryDeclaration<ScDeliveryAddressModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<ScDeliveryAddressModule, [typeof i1.ScDeliveryAddressAccordionComponent, typeof i2.ScDeliveryAddressAccordionItemComponent, typeof i3.ScAddDeliveryAddressDialogComponent], [typeof i4.CommonModule, typeof i5.ScAccordionModule, typeof i6.TuiButtonModule, typeof i6.TuiModeModule, typeof i6.TuiLoaderModule, typeof i7.TuiLetModule, typeof i6.TuiNotificationModule, typeof i8.ScContactsModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i6.TuiLabelModule, typeof i10.TuiFieldErrorPipeModule, typeof i6.TuiErrorModule, typeof i10.TuiInputModule, typeof i10.TuiInputPhoneModule, typeof i11.ScFormFieldsModule], [typeof i1.ScDeliveryAddressAccordionComponent, typeof i3.ScAddDeliveryAddressDialogComponent]>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScDeliveryAddressModule, [typeof i1.ScDeliveryAddressAccordionComponent, typeof i2.ScDeliveryAddressAccordionItemComponent, typeof i3.ScAddDeliveryAddressDialogComponent], [typeof i4.CommonModule, typeof i5.ScAccordionModule, typeof i6.TuiButton, typeof i6.TuiLoader, typeof i7.TuiLet, typeof i6.TuiNotification, typeof i8.ScContactsModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i6.TuiLabel, typeof i10.TuiFieldErrorPipe, typeof i6.TuiError, typeof i11.TuiInputModule, typeof i11.TuiInputPhoneModule, typeof i12.ScFormFieldsModule, typeof i6.TuiDataListComponent, typeof i6.TuiDataListDirective, typeof i6.TuiOption, typeof i6.TuiOptGroup, typeof i13.AngularYandexMapsModule, typeof i10.TuiElasticContainer, typeof i10.TuiButtonLoading], [typeof i1.ScDeliveryAddressAccordionComponent, typeof i3.ScAddDeliveryAddressDialogComponent]>;
19
21
  static ɵinj: i0.ɵɵInjectorDeclaration<ScDeliveryAddressModule>;
20
22
  }
@@ -0,0 +1,107 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ScCartItem, ScIWarehouse, ScProduct } from '@snabcentr/client-core';
4
+ import { Observable } from 'rxjs';
5
+ import { ScUnitsHelper } from '../../helpers/sc-units-helper';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Директива абстрактной карточки товара.
9
+ */
10
+ export declare class AbstractScPriceCard {
11
+ /**
12
+ * Позиция товара в корзине.
13
+ *
14
+ * TODO: Сделать товар в корзине наблюдаемой переменной после реализации TASK:[#7144].
15
+ */
16
+ get cartItem(): ScCartItem | undefined;
17
+ /**
18
+ * Позиция товара в корзине
19
+ *
20
+ * TODO: Сделать товар в корзине наблюдаемой переменной после реализации TASK:[#7144].
21
+ */
22
+ set cartItem(value: ScCartItem | undefined);
23
+ /**
24
+ * {@link FormControl} поля ввода количества товара в корзине.
25
+ */
26
+ quantityControl: FormControl<number | null>;
27
+ /**
28
+ * Признак, что необходимо отобразить лоадер для поля ввода количества товара.
29
+ */
30
+ quantityShowLoader: boolean;
31
+ /**
32
+ * Признак, что необходимо отобразить лоадер для кнопки избранных товаров и категорий.
33
+ */
34
+ favoriteShowLoader: boolean;
35
+ /**
36
+ * {@link Observable} изменения выбранного склада.
37
+ */
38
+ readonly warehouseSelect$: Observable<ScIWarehouse | null>;
39
+ /**
40
+ * {@link Observable} изменения статуса авторизации.
41
+ */
42
+ readonly authStatus$: Observable<boolean>;
43
+ /**
44
+ * {@link Observable} поиска терма.
45
+ */
46
+ readonly search$: Observable<string>;
47
+ /**
48
+ * Объект товара.
49
+ */
50
+ product?: ScProduct;
51
+ /**
52
+ * Признак, что необходимо отобразить поле ввода количества товара.
53
+ */
54
+ showQuantityControl: boolean;
55
+ /**
56
+ * Событие нажатия на кнопку "В избранное".
57
+ */
58
+ readonly clickFavoriteEvent: EventEmitter<void>;
59
+ /**
60
+ * Событие нажатия на кнопку "В корзину".
61
+ */
62
+ readonly clickAddToCartEvent: EventEmitter<ScProduct>;
63
+ /**
64
+ * Событие нажатия на кнопку очистки количества товара.
65
+ */
66
+ readonly clickClearEvent: EventEmitter<ScCartItem>;
67
+ /**
68
+ * Событие нажатия на карточку товара.
69
+ */
70
+ readonly clickCardEvent: EventEmitter<void>;
71
+ /**
72
+ * Событие нажатия на историю цен.
73
+ */
74
+ readonly clickPriceHistoryEvent: EventEmitter<void>;
75
+ /**
76
+ * {@link Observable} изменения количества товара в корзине.
77
+ */
78
+ readonly quantityValueChanges: Observable<number | null>;
79
+ /**
80
+ * Экземпляр класса-помощника для работы со значениями единиц измерения товара.
81
+ */
82
+ protected readonly unitsHelper: ScUnitsHelper;
83
+ /**
84
+ * Хелпер для работы с изображениями товара.
85
+ */
86
+ private readonly imageHelper;
87
+ /**
88
+ * Путь до изображения 'Товар не найден'.
89
+ */
90
+ private readonly pathImageNotFound;
91
+ /**
92
+ * Позиция товара в корзине.
93
+ *
94
+ * TODO: Сделать товар в корзине наблюдаемой переменной после реализации TASK:[#7144].
95
+ */
96
+ private _cartItem?;
97
+ /**
98
+ * Признак, что нужно показать скелетон.
99
+ */
100
+ get skeletonVisible(): boolean;
101
+ /**
102
+ * Возвращает ссылку на preview-изображение карточки товара.
103
+ */
104
+ getCardImagePreview(): string;
105
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractScPriceCard, never>;
106
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractScPriceCard, never, never, { "cartItem": { "alias": "cartItem"; "required": false; }; "product": { "alias": "product"; "required": false; }; "showQuantityControl": { "alias": "showQuantityControl"; "required": false; }; }, { "clickFavoriteEvent": "clickFavoriteEvent"; "clickAddToCartEvent": "clickAddToCartEvent"; "clickClearEvent": "clickClearEvent"; "clickCardEvent": "clickCardEvent"; "clickPriceHistoryEvent": "clickPriceHistoryEvent"; "quantityValueChanges": "quantityValueChanges"; }, never, never, false, never>;
107
+ }
@@ -1,2 +1,6 @@
1
- export * from './carousel-item-hidden/sc-carousel-item-hidden.directive';
2
- export * from './carousel-item-hidden/sc-carousel-item-hidden.module';
1
+ export * from './next-input-focus/sc-next-input-focus.directive';
2
+ export * from './next-input-focus/sc-next-input-focus.module';
3
+ export * from './abstract-price-card/abstract-sc-price-card.directive';
4
+ export * from './tel-link/sc-tel-link.directive';
5
+ export * from './tel-link/sc-tel-link.module';
6
+ export * from './terminal-link/sc-terminal-link.directive';
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Директива для перехода по нажатию клавиши enter на следующее поле ввода формы.
4
+ */
5
+ export declare class ScNextInputFocusDirective {
6
+ /**
7
+ * Все поля ввода внутри формы, на которой применяется данная директива.
8
+ */
9
+ private focusableElements;
10
+ /**
11
+ * Слушатель нажатия на клавишу enter. Предотвращает событие submit, выполняет смену фокуса на следующее поле ввода TuiFocusableElementAccessor.
12
+ *
13
+ * @param event Объект события нажатия на клавишу.
14
+ */
15
+ onFormKeyDownEnter(event: KeyboardEvent): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScNextInputFocusDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScNextInputFocusDirective, "form[ScNextInputFocus]", never, {}, {}, ["focusableElements"], never, false, never>;
18
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./sc-next-input-focus.directive";
3
+ /**
4
+ * Модуль директивы для перехода по нажатию клавиши enter на следующее поле ввода формы.
5
+ */
6
+ export declare class ScNextInputFocusModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScNextInputFocusModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScNextInputFocusModule, [typeof i1.ScNextInputFocusDirective], never, [typeof i1.ScNextInputFocusDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<ScNextInputFocusModule>;
10
+ }
@@ -0,0 +1,27 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Директива, которая управляет свойствами ссылки номера телефона для валидации значения номера телефона.
5
+ */
6
+ export declare class ScTelLinkDirective implements OnChanges {
7
+ /**
8
+ * Экземпляр базового класса для реализации пользовательского рендеринга.
9
+ */
10
+ private readonly renderer;
11
+ /**
12
+ * Ссылка на HTML элемент тега `<a>`.
13
+ */
14
+ private elementReference;
15
+ /**
16
+ * Номер телефона, который будет проверен на валидность.
17
+ */
18
+ scTelLink: string;
19
+ /** @inheritDoc */
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ /**
22
+ * Обновляет состояние ссылки на основе валидности номера телефона.
23
+ */
24
+ private updateLinkState;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScTelLinkDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScTelLinkDirective, "[scTelLink]", never, { "scTelLink": { "alias": "scTelLink"; "required": false; }; }, {}, never, never, true, never>;
27
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../../pipes/sc-formatted-phone";
3
+ import * as i2 from "./sc-tel-link.directive";
4
+ /**
5
+ * Модуль валидации значения номера телефона.
6
+ */
7
+ export declare class ScTelLinkModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScTelLinkModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScTelLinkModule, never, [typeof i1.ScFormatePhonePipe, typeof i2.ScTelLinkDirective], [typeof i1.ScFormatePhonePipe, typeof i2.ScTelLinkDirective]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ScTelLinkModule>;
11
+ }
@@ -0,0 +1,34 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Директива открытия диалогового окна с QRCode для ссылок `tel:` и `mailto:` на терминале.
4
+ */
5
+ export declare class ScTerminalLinkDirective {
6
+ /**
7
+ * Ссылка на HTML элемент тега `<a>`.
8
+ */
9
+ private elementReference;
10
+ /**
11
+ * Сервис для работы с диалоговыми окнами TuiDialog.
12
+ */
13
+ private dialog;
14
+ /**
15
+ * Провайдер данных о терминале.
16
+ */
17
+ private terminal;
18
+ /**
19
+ * Обработчик клика по ссылке.
20
+ *
21
+ * @param event Событие клика.
22
+ */
23
+ onClick(event: Event): void;
24
+ /**
25
+ * Открывает диалоговое окно с QR-кодом.
26
+ */
27
+ openQRCodeDialog(): void;
28
+ /**
29
+ * Проверяет ведёт ли ссылка на телефон или адрес электронной почты.
30
+ */
31
+ private isLinkTelOrMail;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScTerminalLinkDirective, never>;
33
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScTerminalLinkDirective, "a[href]", never, {}, {}, never, never, true, never>;
34
+ }
@@ -0,0 +1,17 @@
1
+ import { Directive } from '@angular/core';
2
+ import { PolymorpheusTemplate } from '@taiga-ui/polymorpheus';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Директива содержимого компонента, позволяющего отображать и скрывать содержимое в разделах.
6
+ */
7
+ export class ScAccordionContentDirective extends PolymorpheusTemplate {
8
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionContentDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
9
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.3", type: ScAccordionContentDirective, selector: "ng-template[scAccordionContent]", usesInheritance: true, ngImport: i0 }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionContentDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{
14
+ selector: 'ng-template[scAccordionContent]',
15
+ }]
16
+ }] });
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2MtYWNjb3JkaW9uLWNvbnRlbnQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvY2xpZW50LXVpL2FjY29yZGlvbi9zYy1hY2NvcmRpb24tY29udGVudC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7QUFFOUQ7O0dBRUc7QUFJSCxNQUFNLE9BQU8sMkJBQTRCLFNBQVEsb0JBQTZDOzhHQUFqRiwyQkFBMkI7a0dBQTNCLDJCQUEyQjs7MkZBQTNCLDJCQUEyQjtrQkFIdkMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsaUNBQWlDO2lCQUM5QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUG9seW1vcnBoZXVzVGVtcGxhdGUgfSBmcm9tICdAdGFpZ2EtdWkvcG9seW1vcnBoZXVzJztcblxuLyoqXG4gKiDQlNC40YDQtdC60YLQuNCy0LAg0YHQvtC00LXRgNC20LjQvNC+0LPQviDQutC+0LzQv9C+0L3QtdC90YLQsCwg0L/QvtC30LLQvtC70Y/RjtGJ0LXQs9C+INC+0YLQvtCx0YDQsNC20LDRgtGMINC4INGB0LrRgNGL0LLQsNGC0Ywg0YHQvtC00LXRgNC20LjQvNC+0LUg0LIg0YDQsNC30LTQtdC70LDRhS5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICduZy10ZW1wbGF0ZVtzY0FjY29yZGlvbkNvbnRlbnRdJyxcbn0pXG5leHBvcnQgY2xhc3MgU2NBY2NvcmRpb25Db250ZW50RGlyZWN0aXZlIGV4dGVuZHMgUG9seW1vcnBoZXVzVGVtcGxhdGU8UmVjb3JkPHN0cmluZywgdW5rbm93bj4+IHt9XG4iXX0=
@@ -0,0 +1,88 @@
1
+ import { ChangeDetectionStrategy, Component, ContentChild, EventEmitter, HostBinding, Input, Output, ViewChild } from '@angular/core';
2
+ import { TuiAccordionItem } from '@taiga-ui/kit';
3
+ import { ScAccordionContentDirective } from './sc-accordion-content.directive';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@taiga-ui/polymorpheus";
7
+ import * as i3 from "@taiga-ui/core";
8
+ import * as i4 from "@taiga-ui/kit";
9
+ /**
10
+ * Компонент, позволяющий отображать и скрывать содержимое в разделах.
11
+ */
12
+ export class ScAccordionComponent {
13
+ constructor() {
14
+ /**
15
+ * Состояние отображения кнопки добавления.
16
+ */
17
+ this.showAddButton = true;
18
+ /**
19
+ * Состояние отображения кнопки удаления.
20
+ */
21
+ this.showDeleteButton = false;
22
+ /**
23
+ * Состояние отображения стрелки.
24
+ */
25
+ this.showArrow = true;
26
+ /**
27
+ * Состояние открытия содержимого компонента.
28
+ */
29
+ this.open = false;
30
+ /**
31
+ * Размер элементов {@link TuiAccordionItemComponent}.
32
+ */
33
+ this.size = 's';
34
+ /**
35
+ * Событие нажатия на кнопку добавления.
36
+ */
37
+ this.addButtonClick = new EventEmitter();
38
+ /**
39
+ * Событие нажатия на кнопку удаления.
40
+ */
41
+ this.deleteButtonClick = new EventEmitter();
42
+ }
43
+ /**
44
+ * Закрывает акордион.
45
+ */
46
+ close() {
47
+ this.accordion?.close();
48
+ }
49
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
50
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.3", type: ScAccordionComponent, selector: "sc-accordion", inputs: { showAddButton: "showAddButton", showDeleteButton: "showDeleteButton", showArrow: "showArrow", open: "open", size: "size" }, outputs: { addButtonClick: "addButtonClick", deleteButtonClick: "deleteButtonClick" }, host: { properties: { "class._has-add-button": "this.showAddButton", "class._has-delete-button": "this.showDeleteButton", "class._has-arrow": "this.showArrow", "attr.data-size": "this.size" } }, queries: [{ propertyName: "content", first: true, predicate: ScAccordionContentDirective, descendants: true }], viewQueries: [{ propertyName: "accordion", first: true, predicate: TuiAccordionItem, descendants: true }], ngImport: i0, template: "<tui-accordion [rounded]=\"false\">\n <tui-accordion-item\n #accordion\n [size]=\"size\"\n [borders]=\"null\"\n [showArrow]=\"showArrow\"\n [open]=\"open\"\n >\n <div class=\"flex grow justify-between\">\n <div class=\"self-center font-bold\">\n <ng-content></ng-content>\n </div>\n <div\n *ngIf=\"showAddButton || showDeleteButton\"\n class=\"flex\"\n >\n <ng-container *ngIf=\"showDeleteButton\">\n <button\n tuiIconButton\n size=\"m\"\n type=\"button\"\n iconStart=\"@tui.trash-2\"\n appearance=\"secondary\"\n (click)=\"$event.stopPropagation(); deleteButtonClick.emit()\"\n ></button>\n </ng-container>\n <ng-container *ngIf=\"showAddButton\">\n <button\n tuiIconButton\n size=\"m\"\n type=\"button\"\n iconStart=\"@tui.plus\"\n appearance=\"secondary\"\n (click)=\"$event.stopPropagation(); addButtonClick.emit()\"\n ></button>\n </ng-container>\n </div>\n </div>\n <ng-template tuiAccordionItemContent>\n <tui-elastic-container *ngIf=\"content\">\n <ng-container *polymorpheusOutlet=\"content as text\">\n {{ text }}\n </ng-container>\n </tui-elastic-container>\n </ng-template>\n </tui-accordion-item>\n</tui-accordion>\n", styles: ["::ng-deep tui-accordion-item>.t-wrapper .t-header{border-radius:.75rem;flex-direction:row-reverse;min-height:var(--tui-height-m);font:var(--tui-font-text-m);padding:0 .5rem 0 1rem;gap:.75rem;background:var(--tui-background-base-alt)}:host[data-size=s] ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding:0 .5rem 0 1rem;font:var(--tui-font-text-s)}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding-left:.75rem}:host._has-add-button ::ng-deep tui-accordion-item>.t-wrapper .t-header,:host._has-delete-button ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding-right:0}::ng-deep tui-accordion-item>.t-wrapper .t-header_hoverable:hover:not([data-mode]){background:var(--tui-background-neutral-1-hover)!important}::ng-deep tui-accordion-item>.t-wrapper .t-header .t-icon{color:var(--tui-text-action)}:host:hover:not([data-mode]) ::ng-deep tui-accordion-item>.t-wrapper .t-header .t-icon{color:var(--tui-text-action)}::ng-deep tui-accordion-item>.t-wrapper .t-title{white-space:normal}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper .t-title{margin-right:0}::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content{padding-inline:0!important;padding-block:1rem}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content,:host[data-size=s]:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content{padding-left:1rem!important}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.PolymorpheusOutlet, selector: "[polymorpheusOutlet]", inputs: ["polymorpheusOutlet", "polymorpheusOutletContext"] }, { kind: "directive", type: i3.TuiButton, selector: "a[tuiButton],button[tuiButton],a[tuiIconButton],button[tuiIconButton]", inputs: ["size"] }, { kind: "component", type: i4.TuiAccordionItem, selector: "tui-accordion-item", inputs: ["noPadding", "showArrow", "borders", "size", "disabled", "disableHover", "open", "async"], outputs: ["openChange"] }, { kind: "directive", type: i4.TuiAccordionDirective, selector: "tui-accordion", inputs: ["closeOthers"] }, { kind: "directive", type: i4.TuiAccordionItemContent, selector: "ng-template[tuiAccordionItemContent]" }, { kind: "component", type: i4.TuiElasticContainer, selector: "tui-elastic-container" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
51
+ }
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionComponent, decorators: [{
53
+ type: Component,
54
+ args: [{ selector: 'sc-accordion', changeDetection: ChangeDetectionStrategy.OnPush, template: "<tui-accordion [rounded]=\"false\">\n <tui-accordion-item\n #accordion\n [size]=\"size\"\n [borders]=\"null\"\n [showArrow]=\"showArrow\"\n [open]=\"open\"\n >\n <div class=\"flex grow justify-between\">\n <div class=\"self-center font-bold\">\n <ng-content></ng-content>\n </div>\n <div\n *ngIf=\"showAddButton || showDeleteButton\"\n class=\"flex\"\n >\n <ng-container *ngIf=\"showDeleteButton\">\n <button\n tuiIconButton\n size=\"m\"\n type=\"button\"\n iconStart=\"@tui.trash-2\"\n appearance=\"secondary\"\n (click)=\"$event.stopPropagation(); deleteButtonClick.emit()\"\n ></button>\n </ng-container>\n <ng-container *ngIf=\"showAddButton\">\n <button\n tuiIconButton\n size=\"m\"\n type=\"button\"\n iconStart=\"@tui.plus\"\n appearance=\"secondary\"\n (click)=\"$event.stopPropagation(); addButtonClick.emit()\"\n ></button>\n </ng-container>\n </div>\n </div>\n <ng-template tuiAccordionItemContent>\n <tui-elastic-container *ngIf=\"content\">\n <ng-container *polymorpheusOutlet=\"content as text\">\n {{ text }}\n </ng-container>\n </tui-elastic-container>\n </ng-template>\n </tui-accordion-item>\n</tui-accordion>\n", styles: ["::ng-deep tui-accordion-item>.t-wrapper .t-header{border-radius:.75rem;flex-direction:row-reverse;min-height:var(--tui-height-m);font:var(--tui-font-text-m);padding:0 .5rem 0 1rem;gap:.75rem;background:var(--tui-background-base-alt)}:host[data-size=s] ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding:0 .5rem 0 1rem;font:var(--tui-font-text-s)}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding-left:.75rem}:host._has-add-button ::ng-deep tui-accordion-item>.t-wrapper .t-header,:host._has-delete-button ::ng-deep tui-accordion-item>.t-wrapper .t-header{padding-right:0}::ng-deep tui-accordion-item>.t-wrapper .t-header_hoverable:hover:not([data-mode]){background:var(--tui-background-neutral-1-hover)!important}::ng-deep tui-accordion-item>.t-wrapper .t-header .t-icon{color:var(--tui-text-action)}:host:hover:not([data-mode]) ::ng-deep tui-accordion-item>.t-wrapper .t-header .t-icon{color:var(--tui-text-action)}::ng-deep tui-accordion-item>.t-wrapper .t-title{white-space:normal}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper .t-title{margin-right:0}::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content{padding-inline:0!important;padding-block:1rem}:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content,:host[data-size=s]:host._has-arrow ::ng-deep tui-accordion-item>.t-wrapper tui-expand>.t-wrapper>.t-content{padding-left:1rem!important}\n"] }]
55
+ }], propDecorators: { showAddButton: [{
56
+ type: Input
57
+ }, {
58
+ type: HostBinding,
59
+ args: ['class._has-add-button']
60
+ }], showDeleteButton: [{
61
+ type: Input
62
+ }, {
63
+ type: HostBinding,
64
+ args: ['class._has-delete-button']
65
+ }], showArrow: [{
66
+ type: Input
67
+ }, {
68
+ type: HostBinding,
69
+ args: ['class._has-arrow']
70
+ }], open: [{
71
+ type: Input
72
+ }], size: [{
73
+ type: Input
74
+ }, {
75
+ type: HostBinding,
76
+ args: ['attr.data-size']
77
+ }], content: [{
78
+ type: ContentChild,
79
+ args: [ScAccordionContentDirective]
80
+ }], accordion: [{
81
+ type: ViewChild,
82
+ args: [TuiAccordionItem]
83
+ }], addButtonClick: [{
84
+ type: Output
85
+ }], deleteButtonClick: [{
86
+ type: Output
87
+ }] } });
88
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2MtYWNjb3JkaW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NsaWVudC11aS9hY2NvcmRpb24vc2MtYWNjb3JkaW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NsaWVudC11aS9hY2NvcmRpb24vc2MtYWNjb3JkaW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFdEksT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpELE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOzs7Ozs7QUFFL0U7O0dBRUc7QUFPSCxNQUFNLE9BQU8sb0JBQW9CO0lBTmpDO1FBT0k7O1dBRUc7UUFHSSxrQkFBYSxHQUFHLElBQUksQ0FBQztRQUU1Qjs7V0FFRztRQUdJLHFCQUFnQixHQUFZLEtBQUssQ0FBQztRQUV6Qzs7V0FFRztRQUdJLGNBQVMsR0FBWSxJQUFJLENBQUM7UUFFakM7O1dBRUc7UUFFSSxTQUFJLEdBQVksS0FBSyxDQUFDO1FBRTdCOztXQUVHO1FBR0ksU0FBSSxHQUFhLEdBQUcsQ0FBQztRQWM1Qjs7V0FFRztRQUVJLG1CQUFjLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7UUFFckU7O1dBRUc7UUFFSSxzQkFBaUIsR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztLQVEzRTtJQU5HOztPQUVHO0lBQ0ksS0FBSztRQUNSLElBQUksQ0FBQyxTQUFTLEVBQUUsS0FBSyxFQUFFLENBQUM7SUFDNUIsQ0FBQzs4R0FoRVEsb0JBQW9CO2tHQUFwQixvQkFBb0IseWZBc0NmLDJCQUEyQiwyRkFNOUIsZ0JBQWdCLGdEQzNEL0IsMHZEQStDQTs7MkZEaENhLG9CQUFvQjtrQkFOaEMsU0FBUzsrQkFDSSxjQUFjLG1CQUdQLHVCQUF1QixDQUFDLE1BQU07OEJBUXhDLGFBQWE7c0JBRm5CLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsdUJBQXVCO2dCQVE3QixnQkFBZ0I7c0JBRnRCLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsMEJBQTBCO2dCQVFoQyxTQUFTO3NCQUZmLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsa0JBQWtCO2dCQU94QixJQUFJO3NCQURWLEtBQUs7Z0JBUUMsSUFBSTtzQkFGVixLQUFLOztzQkFDTCxXQUFXO3VCQUFDLGdCQUFnQjtnQkFPVixPQUFPO3NCQUR6QixZQUFZO3VCQUFDLDJCQUEyQjtnQkFPekIsU0FBUztzQkFEeEIsU0FBUzt1QkFBQyxnQkFBZ0I7Z0JBT3BCLGNBQWM7c0JBRHBCLE1BQU07Z0JBT0EsaUJBQWlCO3NCQUR2QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgQ29udGVudENoaWxkLCBFdmVudEVtaXR0ZXIsIEhvc3RCaW5kaW5nLCBJbnB1dCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFR1aVNpemVTIH0gZnJvbSAnQHRhaWdhLXVpL2NvcmUnO1xuaW1wb3J0IHsgVHVpQWNjb3JkaW9uSXRlbSB9IGZyb20gJ0B0YWlnYS11aS9raXQnO1xuXG5pbXBvcnQgeyBTY0FjY29yZGlvbkNvbnRlbnREaXJlY3RpdmUgfSBmcm9tICcuL3NjLWFjY29yZGlvbi1jb250ZW50LmRpcmVjdGl2ZSc7XG5cbi8qKlxuICog0JrQvtC80L/QvtC90LXQvdGCLCDQv9C+0LfQstC+0LvRj9GO0YnQuNC5INC+0YLQvtCx0YDQsNC20LDRgtGMINC4INGB0LrRgNGL0LLQsNGC0Ywg0YHQvtC00LXRgNC20LjQvNC+0LUg0LIg0YDQsNC30LTQtdC70LDRhS5cbiAqL1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdzYy1hY2NvcmRpb24nLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9zYy1hY2NvcmRpb24uY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3NjLWFjY29yZGlvbi5jb21wb25lbnQuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBTY0FjY29yZGlvbkNvbXBvbmVudCB7XG4gICAgLyoqXG4gICAgICog0KHQvtGB0YLQvtGP0L3QuNC1INC+0YLQvtCx0YDQsNC20LXQvdC40Y8g0LrQvdC+0L/QutC4INC00L7QsdCw0LLQu9C10L3QuNGPLlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgQEhvc3RCaW5kaW5nKCdjbGFzcy5faGFzLWFkZC1idXR0b24nKVxuICAgIHB1YmxpYyBzaG93QWRkQnV0dG9uID0gdHJ1ZTtcblxuICAgIC8qKlxuICAgICAqINCh0L7RgdGC0L7Rj9C90LjQtSDQvtGC0L7QsdGA0LDQttC10L3QuNGPINC60L3QvtC/0LrQuCDRg9C00LDQu9C10L3QuNGPLlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgQEhvc3RCaW5kaW5nKCdjbGFzcy5faGFzLWRlbGV0ZS1idXR0b24nKVxuICAgIHB1YmxpYyBzaG93RGVsZXRlQnV0dG9uOiBib29sZWFuID0gZmFsc2U7XG5cbiAgICAvKipcbiAgICAgKiDQodC+0YHRgtC+0Y/QvdC40LUg0L7RgtC+0LHRgNCw0LbQtdC90LjRjyDRgdGC0YDQtdC70LrQuC5cbiAgICAgKi9cbiAgICBASW5wdXQoKVxuICAgIEBIb3N0QmluZGluZygnY2xhc3MuX2hhcy1hcnJvdycpXG4gICAgcHVibGljIHNob3dBcnJvdzogYm9vbGVhbiA9IHRydWU7XG5cbiAgICAvKipcbiAgICAgKiDQodC+0YHRgtC+0Y/QvdC40LUg0L7RgtC60YDRi9GC0LjRjyDRgdC+0LTQtdGA0LbQuNC80L7Qs9C+INC60L7QvNC/0L7QvdC10L3RgtCwLlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIG9wZW46IGJvb2xlYW4gPSBmYWxzZTtcblxuICAgIC8qKlxuICAgICAqINCg0LDQt9C80LXRgCDRjdC70LXQvNC10L3RgtC+0LIge0BsaW5rIFR1aUFjY29yZGlvbkl0ZW1Db21wb25lbnR9LlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgQEhvc3RCaW5kaW5nKCdhdHRyLmRhdGEtc2l6ZScpXG4gICAgcHVibGljIHNpemU6IFR1aVNpemVTID0gJ3MnO1xuXG4gICAgLyoqXG4gICAgICog0JTQvtGH0LXRgNC90LjQuSDRjdC70LXQvNC10L3RgiDQutC+0L3RgtC10L3RgtCwLlxuICAgICAqL1xuICAgIEBDb250ZW50Q2hpbGQoU2NBY2NvcmRpb25Db250ZW50RGlyZWN0aXZlKVxuICAgIHByb3RlY3RlZCByZWFkb25seSBjb250ZW50PzogU2NBY2NvcmRpb25Db250ZW50RGlyZWN0aXZlO1xuXG4gICAgLyoqXG4gICAgICog0KHRgdGL0LvQutCwINC90LAg0YjQsNCx0LvQvtC9INC/0YDQtdCy0YzRji3Qv9GA0L7RgdC80L7RgtGA0LAg0LIg0YDQsNC30LzQtdGC0LrQtS5cbiAgICAgKi9cbiAgICBAVmlld0NoaWxkKFR1aUFjY29yZGlvbkl0ZW0pXG4gICAgcHVibGljIHJlYWRvbmx5IGFjY29yZGlvbj86IFR1aUFjY29yZGlvbkl0ZW07XG5cbiAgICAvKipcbiAgICAgKiDQodC+0LHRi9GC0LjQtSDQvdCw0LbQsNGC0LjRjyDQvdCwINC60L3QvtC/0LrRgyDQtNC+0LHQsNCy0LvQtdC90LjRjy5cbiAgICAgKi9cbiAgICBAT3V0cHV0KClcbiAgICBwdWJsaWMgYWRkQnV0dG9uQ2xpY2s6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICAgIC8qKlxuICAgICAqINCh0L7QsdGL0YLQuNC1INC90LDQttCw0YLQuNGPINC90LAg0LrQvdC+0L/QutGDINGD0LTQsNC70LXQvdC40Y8uXG4gICAgICovXG4gICAgQE91dHB1dCgpXG4gICAgcHVibGljIGRlbGV0ZUJ1dHRvbkNsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG5cbiAgICAvKipcbiAgICAgKiDQl9Cw0LrRgNGL0LLQsNC10YIg0LDQutC+0YDQtNC40L7QvS5cbiAgICAgKi9cbiAgICBwdWJsaWMgY2xvc2UoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuYWNjb3JkaW9uPy5jbG9zZSgpO1xuICAgIH1cbn1cbiIsIjx0dWktYWNjb3JkaW9uIFtyb3VuZGVkXT1cImZhbHNlXCI+XG4gICAgPHR1aS1hY2NvcmRpb24taXRlbVxuICAgICAgICAjYWNjb3JkaW9uXG4gICAgICAgIFtzaXplXT1cInNpemVcIlxuICAgICAgICBbYm9yZGVyc109XCJudWxsXCJcbiAgICAgICAgW3Nob3dBcnJvd109XCJzaG93QXJyb3dcIlxuICAgICAgICBbb3Blbl09XCJvcGVuXCJcbiAgICA+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGdyb3cganVzdGlmeS1iZXR3ZWVuXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic2VsZi1jZW50ZXIgZm9udC1ib2xkXCI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgKm5nSWY9XCJzaG93QWRkQnV0dG9uIHx8IHNob3dEZWxldGVCdXR0b25cIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwiZmxleFwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNob3dEZWxldGVCdXR0b25cIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgICAgICAgICAgICAgdHVpSWNvbkJ1dHRvblxuICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZT1cIm1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgICAgICBpY29uU3RhcnQ9XCJAdHVpLnRyYXNoLTJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgYXBwZWFyYW5jZT1cInNlY29uZGFyeVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwiJGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpOyBkZWxldGVCdXR0b25DbGljay5lbWl0KClcIlxuICAgICAgICAgICAgICAgICAgICA+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNob3dBZGRCdXR0b25cIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgICAgICAgICAgICAgdHVpSWNvbkJ1dHRvblxuICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZT1cIm1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgICAgICBpY29uU3RhcnQ9XCJAdHVpLnBsdXNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgYXBwZWFyYW5jZT1cInNlY29uZGFyeVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwiJGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpOyBhZGRCdXR0b25DbGljay5lbWl0KClcIlxuICAgICAgICAgICAgICAgICAgICA+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSB0dWlBY2NvcmRpb25JdGVtQ29udGVudD5cbiAgICAgICAgICAgIDx0dWktZWxhc3RpYy1jb250YWluZXIgKm5nSWY9XCJjb250ZW50XCI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqcG9seW1vcnBoZXVzT3V0bGV0PVwiY29udGVudCBhcyB0ZXh0XCI+XG4gICAgICAgICAgICAgICAgICAgIHt7IHRleHQgfX1cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDwvdHVpLWVsYXN0aWMtY29udGFpbmVyPlxuICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvdHVpLWFjY29yZGlvbi1pdGVtPlxuPC90dWktYWNjb3JkaW9uPlxuIl19
@@ -0,0 +1,26 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { TuiButton } from '@taiga-ui/core';
4
+ import { TuiAccordion, TuiElasticContainer } from '@taiga-ui/kit';
5
+ import { PolymorpheusOutlet, PolymorpheusTemplate } from '@taiga-ui/polymorpheus';
6
+ import { ScAccordionComponent } from './sc-accordion.component';
7
+ import { ScAccordionContentDirective } from './sc-accordion-content.directive';
8
+ import * as i0 from "@angular/core";
9
+ import * as i1 from "@taiga-ui/kit";
10
+ /**
11
+ * Модуль для отображение контента разделами, с возможностью скрывать и отображать содержимое.
12
+ */
13
+ export class ScAccordionModule {
14
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
15
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionModule, declarations: [ScAccordionComponent, ScAccordionContentDirective], imports: [CommonModule, PolymorpheusTemplate, PolymorpheusOutlet, TuiButton, i1.TuiAccordionItem, i1.TuiAccordionDirective, i1.TuiAccordionItemContent, i1.TuiAccordionItemEagerContent, TuiElasticContainer], exports: [ScAccordionComponent, ScAccordionContentDirective] }); }
16
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionModule, imports: [CommonModule, i1.TuiAccordionItem, TuiElasticContainer] }); }
17
+ }
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: ScAccordionModule, decorators: [{
19
+ type: NgModule,
20
+ args: [{
21
+ declarations: [ScAccordionComponent, ScAccordionContentDirective],
22
+ imports: [CommonModule, PolymorpheusTemplate, PolymorpheusOutlet, TuiButton, ...TuiAccordion, TuiElasticContainer],
23
+ exports: [ScAccordionComponent, ScAccordionContentDirective],
24
+ }]
25
+ }] });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2MtYWNjb3JkaW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NsaWVudC11aS9hY2NvcmRpb24vc2MtYWNjb3JkaW9uLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0MsT0FBTyxFQUFFLFlBQVksRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNsRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUVsRixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQzs7O0FBRS9FOztHQUVHO0FBTUgsTUFBTSxPQUFPLGlCQUFpQjs4R0FBakIsaUJBQWlCOytHQUFqQixpQkFBaUIsaUJBSlgsb0JBQW9CLEVBQUUsMkJBQTJCLGFBQ3RELFlBQVksRUFBRSxvQkFBb0IsRUFBRSxrQkFBa0IsRUFBRSxTQUFTLDhHQUFtQixtQkFBbUIsYUFDdkcsb0JBQW9CLEVBQUUsMkJBQTJCOytHQUVsRCxpQkFBaUIsWUFIaEIsWUFBWSx1QkFBd0UsbUJBQW1COzsyRkFHeEcsaUJBQWlCO2tCQUw3QixRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLG9CQUFvQixFQUFFLDJCQUEyQixDQUFDO29CQUNqRSxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsb0JBQW9CLEVBQUUsa0JBQWtCLEVBQUUsU0FBUyxFQUFFLEdBQUcsWUFBWSxFQUFFLG1CQUFtQixDQUFDO29CQUNsSCxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsRUFBRSwyQkFBMkIsQ0FBQztpQkFDL0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFR1aUJ1dHRvbiB9IGZyb20gJ0B0YWlnYS11aS9jb3JlJztcbmltcG9ydCB7IFR1aUFjY29yZGlvbiwgVHVpRWxhc3RpY0NvbnRhaW5lciB9IGZyb20gJ0B0YWlnYS11aS9raXQnO1xuaW1wb3J0IHsgUG9seW1vcnBoZXVzT3V0bGV0LCBQb2x5bW9ycGhldXNUZW1wbGF0ZSB9IGZyb20gJ0B0YWlnYS11aS9wb2x5bW9ycGhldXMnO1xuXG5pbXBvcnQgeyBTY0FjY29yZGlvbkNvbXBvbmVudCB9IGZyb20gJy4vc2MtYWNjb3JkaW9uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTY0FjY29yZGlvbkNvbnRlbnREaXJlY3RpdmUgfSBmcm9tICcuL3NjLWFjY29yZGlvbi1jb250ZW50LmRpcmVjdGl2ZSc7XG5cbi8qKlxuICog0JzQvtC00YPQu9GMINC00LvRjyDQvtGC0L7QsdGA0LDQttC10L3QuNC1INC60L7QvdGC0LXQvdGC0LAg0YDQsNC30LTQtdC70LDQvNC4LCDRgSDQstC+0LfQvNC+0LbQvdC+0YHRgtGM0Y4g0YHQutGA0YvQstCw0YLRjCDQuCDQvtGC0L7QsdGA0LDQttCw0YLRjCDRgdC+0LTQtdGA0LbQuNC80L7QtS5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtTY0FjY29yZGlvbkNvbXBvbmVudCwgU2NBY2NvcmRpb25Db250ZW50RGlyZWN0aXZlXSxcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBQb2x5bW9ycGhldXNUZW1wbGF0ZSwgUG9seW1vcnBoZXVzT3V0bGV0LCBUdWlCdXR0b24sIC4uLlR1aUFjY29yZGlvbiwgVHVpRWxhc3RpY0NvbnRhaW5lcl0sXG4gICAgZXhwb3J0czogW1NjQWNjb3JkaW9uQ29tcG9uZW50LCBTY0FjY29yZGlvbkNvbnRlbnREaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBTY0FjY29yZGlvbk1vZHVsZSB7fVxuIl19
@@ -0,0 +1,8 @@
1
+ export * from './sc-sign-in-form/sc-sign-in-form.component';
2
+ export * from './sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component';
3
+ export * from './sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component';
4
+ export * from './sign-up-form/sc-sign-up-form.component';
5
+ export * from './enums/auth-method';
6
+ export * from './interfaces';
7
+ export * from './sc-auth.module';
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9jbGllbnQtdWkvYXV0aC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMsK0VBQStFLENBQUM7QUFDOUYsY0FBYywrRUFBK0UsQ0FBQztBQUM5RixjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2Mtc2lnbi1pbi1mb3JtL3NjLXNpZ24taW4tZm9ybS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zYy1zaWduLWluLWZvcm0vc2Mtc2lnbi1pbi1mb3JtLWJ5LWVtYWlsL3NjLXNpZ24taW4tZm9ybS1ieS1lbWFpbC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zYy1zaWduLWluLWZvcm0vc2Mtc2lnbi1pbi1mb3JtLWJ5LXBob25lL3NjLXNpZ24taW4tZm9ybS1ieS1waG9uZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zaWduLXVwLWZvcm0vc2Mtc2lnbi11cC1mb3JtLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2VudW1zL2F1dGgtbWV0aG9kJztcbmV4cG9ydCAqIGZyb20gJy4vaW50ZXJmYWNlcyc7XG5leHBvcnQgKiBmcm9tICcuL3NjLWF1dGgubW9kdWxlJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWVycm9yLXJlc3BvbnNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2xpZW50LXVpL2F1dGgvaW50ZXJmYWNlcy9hcGktZXJyb3ItcmVzcG9uc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICog0JTQsNC90L3Ri9C1INC+0LEg0L7RiNC40LHQutCw0YUg0LLQsNC70LjQtNCw0YbQuNC4IEFQSSDQt9Cw0L/RgNC+0YHQvtCyLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIEFwaUVycm9yUmVzcG9uc2Uge1xuICAgIC8qKlxuICAgICAqINCe0LHQvtCx0YnRkdC90L3QvtC1INGB0L7QvtCx0YnQtdC90LjQtSDQvtCxINC+0YjQuNCx0LrQtS5cbiAgICAgKi9cbiAgICBtZXNzYWdlOiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiDQn9C+0LTRgNC+0LHQvdC+0LUg0L7Qv9C40YHQsNC90LjQtSDQutCw0LbQtNC+0Lkg0L7RiNC40LHQutC4LiDQodC+0LTQtdGA0LbQuNGCINGB0L/QuNGB0L7QuiDQv9C+0LvQtdC5INGBINC00LXRgtCw0LvRjNC90YvQvCDQvtC/0LjRgdCw0L3QuNC10Lwg0L7RiNC40LHQvtC6INCy0LDQu9C40LTQsNGG0LjQuCDQtNC70Y8g0LrQsNC20LTQvtCz0L4g0L/QvtC70Y8uXG4gICAgICovXG4gICAgZXJyb3JzPzogUmVjb3JkPHN0cmluZywgc3RyaW5nW10+O1xufVxuIl19
@@ -0,0 +1,4 @@
1
+ export * from './api-error-response';
2
+ export * from './sc-bank-account-form-group';
3
+ export * from './sc-contact-form-group';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jbGllbnQtdWkvYXV0aC9pbnRlcmZhY2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9hcGktZXJyb3ItcmVzcG9uc2UnO1xuZXhwb3J0ICogZnJvbSAnLi9zYy1iYW5rLWFjY291bnQtZm9ybS1ncm91cCc7XG5leHBvcnQgKiBmcm9tICcuL3NjLWNvbnRhY3QtZm9ybS1ncm91cCc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2MtYmFuay1hY2NvdW50LWZvcm0tZ3JvdXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jbGllbnQtdWkvYXV0aC9pbnRlcmZhY2VzL3NjLWJhbmstYWNjb3VudC1mb3JtLWdyb3VwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGb3JtQ29udHJvbCwgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG4vKipcbiAqINCc0L7QtNC10LvRjCDQtNCw0L3QvdGL0YUg0L/QvtC70LXQuSDRhNC+0YDQvNGLINCx0LDQvdC60L7QstGB0LrQvtCz0L4g0LDQutC60LDRg9C90YLQsC5cbiAqL1xuZXhwb3J0IHR5cGUgU2NCYW5rQWNjb3VudEZvcm1Hcm91cCA9IEZvcm1Hcm91cDx7XG4gICAgYmFua05hbWU6IEZvcm1Db250cm9sPHN0cmluZyB8IG51bGw+O1xuICAgIGJpYzogRm9ybUNvbnRyb2w8c3RyaW5nIHwgbnVsbD47XG4gICAgYWNjb3VudE51bWJlcjogRm9ybUNvbnRyb2w8c3RyaW5nIHwgbnVsbD47XG4gICAgY29ycmVzcG9uZGVudEFjY291bnQ6IEZvcm1Db250cm9sPHN0cmluZyB8IG51bGw+O1xuICAgIGN1cnJlbmN5SWQ6IEZvcm1Db250cm9sPG51bWJlciB8IG51bGw+O1xufT47XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2MtY29udGFjdC1mb3JtLWdyb3VwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2xpZW50LXVpL2F1dGgvaW50ZXJmYWNlcy9zYy1jb250YWN0LWZvcm0tZ3JvdXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZvcm1Db250cm9sLCBGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbi8qKlxuICog0JzQvtC00LXQu9GMINC00LDQvdC90YvRhSDQv9C+0LvQtdC5INGE0L7RgNC80Ysg0LrQvtC90YLQsNC60YLQvdC+0LPQviDQu9C40YbQsC5cbiAqL1xuZXhwb3J0IHR5cGUgU2NDb250YWN0Rm9ybUdyb3VwID0gRm9ybUdyb3VwPHtcbiAgICBuYW1lOiBGb3JtQ29udHJvbDxzdHJpbmcgfCBudWxsPjtcbiAgICBwaG9uZTogRm9ybUNvbnRyb2w8c3RyaW5nIHwgbnVsbD47XG4gICAgZW1haWw6IEZvcm1Db250cm9sPHN0cmluZyB8IG51bGw+O1xuICAgIHBvc2l0aW9uOiBGb3JtQ29udHJvbDxzdHJpbmcgfCBudWxsPjtcbn0+O1xuIl19