@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,5 +1,5 @@
1
1
  /*
2
- ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
2
+ ! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
3
3
  */
4
4
 
5
5
  /*
@@ -644,6 +644,14 @@ video {
644
644
  position: sticky;
645
645
  }
646
646
 
647
+ .-left-1 {
648
+ left: -0.25rem;
649
+ }
650
+
651
+ .-right-1 {
652
+ right: -0.25rem;
653
+ }
654
+
647
655
  .bottom-4 {
648
656
  bottom: 1rem;
649
657
  }
@@ -680,12 +688,37 @@ video {
680
688
  top: 0.25rem;
681
689
  }
682
690
 
691
+ .top-1\/2 {
692
+ top: 50%;
693
+ }
694
+
695
+ .top-2 {
696
+ top: 0.5rem;
697
+ }
698
+
683
699
  .isolate {
684
700
  isolation: isolate;
685
701
  }
686
702
 
687
- .m-0 {
688
- margin: 0px;
703
+ .-z-10 {
704
+ z-index: -10;
705
+ }
706
+
707
+ .z-0 {
708
+ z-index: 0;
709
+ }
710
+
711
+ .z-10 {
712
+ z-index: 10;
713
+ }
714
+
715
+ .m-1 {
716
+ margin: 0.25rem;
717
+ }
718
+
719
+ .my-2 {
720
+ margin-top: 0.5rem;
721
+ margin-bottom: 0.5rem;
689
722
  }
690
723
 
691
724
  .my-4 {
@@ -693,10 +726,22 @@ video {
693
726
  margin-bottom: 1rem;
694
727
  }
695
728
 
729
+ .-mt-2 {
730
+ margin-top: -0.5rem;
731
+ }
732
+
696
733
  .mb-1 {
697
734
  margin-bottom: 0.25rem;
698
735
  }
699
736
 
737
+ .mb-2 {
738
+ margin-bottom: 0.5rem;
739
+ }
740
+
741
+ .mb-3 {
742
+ margin-bottom: 0.75rem;
743
+ }
744
+
700
745
  .mb-4 {
701
746
  margin-bottom: 1rem;
702
747
  }
@@ -717,10 +762,6 @@ video {
717
762
  margin-right: auto;
718
763
  }
719
764
 
720
- .mt-1 {
721
- margin-top: 0.25rem;
722
- }
723
-
724
765
  .mt-2 {
725
766
  margin-top: 0.5rem;
726
767
  }
@@ -740,6 +781,10 @@ video {
740
781
  display: inline;
741
782
  }
742
783
 
784
+ .\!flex {
785
+ display: flex !important;
786
+ }
787
+
743
788
  .flex {
744
789
  display: flex;
745
790
  }
@@ -768,11 +813,31 @@ video {
768
813
  display: none;
769
814
  }
770
815
 
816
+ .\!size-6 {
817
+ width: 1.5rem !important;
818
+ height: 1.5rem !important;
819
+ }
820
+
821
+ .size-20 {
822
+ width: 5rem;
823
+ height: 5rem;
824
+ }
825
+
771
826
  .size-6 {
772
827
  width: 1.5rem;
773
828
  height: 1.5rem;
774
829
  }
775
830
 
831
+ .size-8 {
832
+ width: 2rem;
833
+ height: 2rem;
834
+ }
835
+
836
+ .size-full {
837
+ width: 100%;
838
+ height: 100%;
839
+ }
840
+
776
841
  .\!h-20 {
777
842
  height: 5rem !important;
778
843
  }
@@ -785,10 +850,6 @@ video {
785
850
  height: 1rem !important;
786
851
  }
787
852
 
788
- .\!h-5 {
789
- height: 1.25rem !important;
790
- }
791
-
792
853
  .\!h-8 {
793
854
  height: 2rem !important;
794
855
  }
@@ -805,10 +866,6 @@ video {
805
866
  height: 3rem;
806
867
  }
807
868
 
808
- .h-20 {
809
- height: 5rem;
810
- }
811
-
812
869
  .h-3 {
813
870
  height: 0.75rem;
814
871
  }
@@ -829,12 +886,8 @@ video {
829
886
  height: 14rem;
830
887
  }
831
888
 
832
- .h-8 {
833
- height: 2rem;
834
- }
835
-
836
- .h-\[19rem\] {
837
- height: 19rem;
889
+ .h-\[19em\] {
890
+ height: 19em;
838
891
  }
839
892
 
840
893
  .h-full {
@@ -849,16 +902,12 @@ video {
849
902
  max-height: 100%;
850
903
  }
851
904
 
852
- .\!w-5 {
853
- width: 1.25rem !important;
854
- }
855
-
856
905
  .\!w-8 {
857
906
  width: 2rem !important;
858
907
  }
859
908
 
860
- .w-20 {
861
- width: 5rem;
909
+ .w-12 {
910
+ width: 3rem;
862
911
  }
863
912
 
864
913
  .w-28 {
@@ -893,6 +942,11 @@ video {
893
942
  width: auto;
894
943
  }
895
944
 
945
+ .w-fit {
946
+ width: -moz-fit-content;
947
+ width: fit-content;
948
+ }
949
+
896
950
  .w-full {
897
951
  width: 100%;
898
952
  }
@@ -901,14 +955,26 @@ video {
901
955
  min-width: 10rem;
902
956
  }
903
957
 
904
- .min-w-\[18rem\] {
958
+ .min-w-72 {
905
959
  min-width: 18rem;
906
960
  }
907
961
 
962
+ .max-w-96 {
963
+ max-width: 24rem;
964
+ }
965
+
908
966
  .max-w-full {
909
967
  max-width: 100%;
910
968
  }
911
969
 
970
+ .flex-1 {
971
+ flex: 1 1 0%;
972
+ }
973
+
974
+ .flex-auto {
975
+ flex: 1 1 auto;
976
+ }
977
+
912
978
  .flex-shrink {
913
979
  flex-shrink: 1;
914
980
  }
@@ -917,10 +983,6 @@ video {
917
983
  flex-shrink: 0;
918
984
  }
919
985
 
920
- .flex-grow {
921
- flex-grow: 1;
922
- }
923
-
924
986
  .grow {
925
987
  flex-grow: 1;
926
988
  }
@@ -933,8 +995,9 @@ video {
933
995
  table-layout: auto;
934
996
  }
935
997
 
936
- .border-collapse {
937
- border-collapse: collapse;
998
+ .-translate-y-1\/2 {
999
+ --tw-translate-y: -50%;
1000
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
938
1001
  }
939
1002
 
940
1003
  .scale-\[3\] {
@@ -951,6 +1014,12 @@ video {
951
1014
  cursor: pointer;
952
1015
  }
953
1016
 
1017
+ .select-none {
1018
+ -webkit-user-select: none;
1019
+ -moz-user-select: none;
1020
+ user-select: none;
1021
+ }
1022
+
954
1023
  .resize {
955
1024
  resize: both;
956
1025
  }
@@ -959,10 +1028,18 @@ video {
959
1028
  grid-template-columns: repeat(auto-fill,minmax(21rem,1fr));
960
1029
  }
961
1030
 
1031
+ .\!flex-col {
1032
+ flex-direction: column !important;
1033
+ }
1034
+
962
1035
  .flex-col {
963
1036
  flex-direction: column;
964
1037
  }
965
1038
 
1039
+ .flex-col-reverse {
1040
+ flex-direction: column-reverse;
1041
+ }
1042
+
966
1043
  .flex-wrap {
967
1044
  flex-wrap: wrap;
968
1045
  }
@@ -995,14 +1072,18 @@ video {
995
1072
  justify-content: space-between;
996
1073
  }
997
1074
 
998
- .justify-stretch {
999
- justify-content: stretch;
1000
- }
1001
-
1002
1075
  .gap-1 {
1003
1076
  gap: 0.25rem;
1004
1077
  }
1005
1078
 
1079
+ .gap-12 {
1080
+ gap: 3rem;
1081
+ }
1082
+
1083
+ .gap-16 {
1084
+ gap: 4rem;
1085
+ }
1086
+
1006
1087
  .gap-2 {
1007
1088
  gap: 0.5rem;
1008
1089
  }
@@ -1023,6 +1104,10 @@ video {
1023
1104
  gap: 1.25rem;
1024
1105
  }
1025
1106
 
1107
+ .gap-8 {
1108
+ gap: 2rem;
1109
+ }
1110
+
1026
1111
  .gap-x-2 {
1027
1112
  -moz-column-gap: 0.5rem;
1028
1113
  column-gap: 0.5rem;
@@ -1038,10 +1123,6 @@ video {
1038
1123
  column-gap: 2rem;
1039
1124
  }
1040
1125
 
1041
- .gap-y-0 {
1042
- row-gap: 0px;
1043
- }
1044
-
1045
1126
  .gap-y-0\.5 {
1046
1127
  row-gap: 0.125rem;
1047
1128
  }
@@ -1084,8 +1165,8 @@ video {
1084
1165
  border-radius: 0.25rem;
1085
1166
  }
1086
1167
 
1087
- .rounded-md {
1088
- border-radius: 0.375rem;
1168
+ .rounded-lg {
1169
+ border-radius: 0.5rem;
1089
1170
  }
1090
1171
 
1091
1172
  .rounded-tui-radius-m {
@@ -1114,6 +1195,10 @@ video {
1114
1195
  border-width: 1px;
1115
1196
  }
1116
1197
 
1198
+ .border-0 {
1199
+ border-width: 0px;
1200
+ }
1201
+
1117
1202
  .border-b {
1118
1203
  border-bottom-width: 1px;
1119
1204
  }
@@ -1147,6 +1232,30 @@ video {
1147
1232
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1148
1233
  }
1149
1234
 
1235
+ .bg-gradient-to-r {
1236
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
1237
+ }
1238
+
1239
+ .from-transparent {
1240
+ --tw-gradient-from: transparent var(--tw-gradient-from-position);
1241
+ --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
1242
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1243
+ }
1244
+
1245
+ .from-tui-base-01 {
1246
+ --tw-gradient-from: var(--tui-base-01) var(--tw-gradient-from-position);
1247
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
1248
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1249
+ }
1250
+
1251
+ .to-transparent {
1252
+ --tw-gradient-to: transparent var(--tw-gradient-to-position);
1253
+ }
1254
+
1255
+ .to-tui-base-01 {
1256
+ --tw-gradient-to: var(--tui-base-01) var(--tw-gradient-to-position);
1257
+ }
1258
+
1150
1259
  .bg-cover {
1151
1260
  background-size: cover;
1152
1261
  }
@@ -1155,10 +1264,18 @@ video {
1155
1264
  background-position: center;
1156
1265
  }
1157
1266
 
1267
+ .bg-right {
1268
+ background-position: right;
1269
+ }
1270
+
1158
1271
  .bg-no-repeat {
1159
1272
  background-repeat: no-repeat;
1160
1273
  }
1161
1274
 
1275
+ .\!fill-white {
1276
+ fill: #fff !important;
1277
+ }
1278
+
1162
1279
  .object-cover {
1163
1280
  -o-object-fit: cover;
1164
1281
  object-fit: cover;
@@ -1208,21 +1325,11 @@ video {
1208
1325
  padding-right: 1.5rem;
1209
1326
  }
1210
1327
 
1211
- .py-1 {
1212
- padding-top: 0.25rem;
1213
- padding-bottom: 0.25rem;
1214
- }
1215
-
1216
1328
  .py-1\.5 {
1217
1329
  padding-top: 0.375rem;
1218
1330
  padding-bottom: 0.375rem;
1219
1331
  }
1220
1332
 
1221
- .py-4 {
1222
- padding-top: 1rem;
1223
- padding-bottom: 1rem;
1224
- }
1225
-
1226
1333
  .py-4\.5 {
1227
1334
  padding-top: 1.125rem;
1228
1335
  padding-bottom: 1.125rem;
@@ -1275,6 +1382,12 @@ video {
1275
1382
  line-height: 1.5rem;
1276
1383
  }
1277
1384
 
1385
+ .text-body-l-bold {
1386
+ font-size: 1.0625rem;
1387
+ line-height: 1.75rem;
1388
+ font-weight: 800;
1389
+ }
1390
+
1278
1391
  .text-lg {
1279
1392
  font-size: 1.125rem;
1280
1393
  line-height: 1.75rem;
@@ -1294,6 +1407,10 @@ video {
1294
1407
  font-weight: 700 !important;
1295
1408
  }
1296
1409
 
1410
+ .\!font-medium {
1411
+ font-weight: 500 !important;
1412
+ }
1413
+
1297
1414
  .font-bold {
1298
1415
  font-weight: 700;
1299
1416
  }
@@ -1355,9 +1472,9 @@ video {
1355
1472
  color: rgb(0 0 0 / var(--tw-text-opacity));
1356
1473
  }
1357
1474
 
1358
- .text-red-700 {
1475
+ .text-slate-500 {
1359
1476
  --tw-text-opacity: 1;
1360
- color: rgb(185 28 28 / var(--tw-text-opacity));
1477
+ color: rgb(100 116 139 / var(--tw-text-opacity));
1361
1478
  }
1362
1479
 
1363
1480
  .text-tui-base-04 {
@@ -1380,6 +1497,10 @@ video {
1380
1497
  color: var(--tui-link);
1381
1498
  }
1382
1499
 
1500
+ .text-tui-negative {
1501
+ color: var(--tui-negative);
1502
+ }
1503
+
1383
1504
  .text-tui-primary {
1384
1505
  color: var(--tui-primary);
1385
1506
  }
@@ -1400,6 +1521,11 @@ video {
1400
1521
  color: var(--tui-text-03);
1401
1522
  }
1402
1523
 
1524
+ .text-white {
1525
+ --tw-text-opacity: 1;
1526
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1527
+ }
1528
+
1403
1529
  .underline {
1404
1530
  text-decoration-line: underline;
1405
1531
  }
@@ -1412,6 +1538,10 @@ video {
1412
1538
  text-decoration-line: line-through;
1413
1539
  }
1414
1540
 
1541
+ .opacity-50 {
1542
+ opacity: 0.5;
1543
+ }
1544
+
1415
1545
  .shadow {
1416
1546
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1417
1547
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
@@ -1436,6 +1566,12 @@ video {
1436
1566
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1437
1567
  }
1438
1568
 
1569
+ .shadow-tui-shadow {
1570
+ --tw-shadow: var(--tui-shadow);
1571
+ --tw-shadow-colored: var(--tui-shadow);
1572
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1573
+ }
1574
+
1439
1575
  .outline {
1440
1576
  outline-style: solid;
1441
1577
  }
@@ -1459,6 +1595,11 @@ video {
1459
1595
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1460
1596
  }
1461
1597
 
1598
+ .contrast-150 {
1599
+ --tw-contrast: contrast(1.5);
1600
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1601
+ }
1602
+
1462
1603
  .grayscale {
1463
1604
  --tw-grayscale: grayscale(100%);
1464
1605
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@@ -1469,6 +1610,11 @@ video {
1469
1610
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1470
1611
  }
1471
1612
 
1613
+ .saturate-0 {
1614
+ --tw-saturate: saturate(0);
1615
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1616
+ }
1617
+
1472
1618
  .sepia {
1473
1619
  --tw-sepia: sepia(100%);
1474
1620
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@@ -1480,7 +1626,7 @@ video {
1480
1626
 
1481
1627
  .backdrop-filter {
1482
1628
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1483
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1629
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1484
1630
  }
1485
1631
 
1486
1632
  .transition {
@@ -1511,10 +1657,6 @@ video {
1511
1657
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
1512
1658
  }
1513
1659
 
1514
- .\[fs\:0\] {
1515
- fs: 0;
1516
- }
1517
-
1518
1660
  .\[k\:string\] {
1519
1661
  k: string;
1520
1662
  }
@@ -1542,9 +1684,42 @@ video {
1542
1684
  }
1543
1685
 
1544
1686
  @media (min-width: 768px) {
1687
+ .md\:mb-0 {
1688
+ margin-bottom: 0px;
1689
+ }
1690
+
1691
+ .md\:h-96 {
1692
+ height: 24rem;
1693
+ }
1694
+
1695
+ .md\:w-1\/2 {
1696
+ width: 50%;
1697
+ }
1698
+
1699
+ .md\:max-w-none {
1700
+ max-width: none;
1701
+ }
1702
+
1545
1703
  .md\:flex-row {
1546
1704
  flex-direction: row;
1547
1705
  }
1706
+
1707
+ .md\:\!flex-row-reverse {
1708
+ flex-direction: row-reverse !important;
1709
+ }
1710
+
1711
+ .md\:gap-4 {
1712
+ gap: 1rem;
1713
+ }
1714
+
1715
+ .md\:gap-8 {
1716
+ gap: 2rem;
1717
+ }
1718
+
1719
+ .md\:px-8 {
1720
+ padding-left: 2rem;
1721
+ padding-right: 2rem;
1722
+ }
1548
1723
  }
1549
1724
 
1550
1725
  @media (min-width: 1024px) {
@@ -1564,6 +1739,10 @@ video {
1564
1739
  height: 2.75rem;
1565
1740
  }
1566
1741
 
1742
+ .lg\:h-\[28rem\] {
1743
+ height: 28rem;
1744
+ }
1745
+
1567
1746
  .lg\:flex-grow {
1568
1747
  flex-grow: 1;
1569
1748
  }
@@ -1607,4 +1786,16 @@ video {
1607
1786
  .group:active .hover-none\:group-active\:text-tui-primary {
1608
1787
  color: var(--tui-primary);
1609
1788
  }
1789
+ }
1790
+
1791
+ @media (prefers-color-scheme: dark) {
1792
+ .dark\:bg-slate-900 {
1793
+ --tw-bg-opacity: 1;
1794
+ background-color: rgb(15 23 42 / var(--tw-bg-opacity));
1795
+ }
1796
+
1797
+ .dark\:text-slate-400 {
1798
+ --tw-text-opacity: 1;
1799
+ color: rgb(148 163 184 / var(--tw-text-opacity));
1800
+ }
1610
1801
  }
package/user/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './reset-user-password/sc-reset-user-password.component';
2
2
  export * from './update-user-info-dialog/sc-update-user-info-dialog.component';
3
+ export * from './user-managers/sc-user-managers.component';
3
4
  export * from './user-phone-approve-dialog/sc-user-phone-approve-dialog.component';
4
5
  export * from './sc-user.module';
@@ -1,6 +1,6 @@
1
1
  import { FormControl, FormGroup } from '@angular/forms';
2
2
  import { ScUserService } from '@snabcentr/client-core';
3
- import { Subject, Observable } from 'rxjs';
3
+ import { Observable, Subject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Компонент смены пароля пользователя.
@@ -38,9 +38,9 @@ export declare class ScResetUserPasswordComponent {
38
38
  /**
39
39
  * Инициализирует экземпляр класса {@link ScResetUserPasswordComponent}.
40
40
  *
41
- * @param userService Сервис информации о пользователе.
41
+ * @param userService Сервис данных о пользователе.
42
42
  */
43
43
  constructor(userService: ScUserService);
44
44
  static ɵfac: i0.ɵɵFactoryDeclaration<ScResetUserPasswordComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<ScResetUserPasswordComponent, "sc-reset-user-password", never, {}, { "successResetPassword": "successResetPassword"; }, never, never, false>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScResetUserPasswordComponent, "sc-reset-user-password", never, {}, { "successResetPassword": "successResetPassword"; }, never, never, false, never>;
46
46
  }
@@ -2,18 +2,22 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./reset-user-password/sc-reset-user-password.component";
3
3
  import * as i2 from "./update-user-info-dialog/sc-update-user-info-dialog.component";
4
4
  import * as i3 from "./user-phone-approve-dialog/sc-user-phone-approve-dialog.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/forms";
7
- import * as i6 from "@taiga-ui/kit";
8
- import * as i7 from "@taiga-ui/core";
9
- import * as i8 from "@taiga-ui/cdk";
10
- import * as i9 from "../verification/sc-verification.module";
11
- import * as i10 from "../form-fields/form-fields.module";
5
+ import * as i4 from "./user-managers/sc-user-managers.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "@taiga-ui/kit";
9
+ import * as i8 from "@taiga-ui/legacy";
10
+ import * as i9 from "@taiga-ui/core";
11
+ import * as i10 from "@taiga-ui/cdk";
12
+ import * as i11 from "../verification/sc-verification.module";
13
+ import * as i12 from "../form-fields/form-fields.module";
14
+ import * as i13 from "../directives/terminal-link/sc-terminal-link.directive";
15
+ import * as i14 from "../directives/tel-link/sc-tel-link.module";
12
16
  /**
13
17
  * Модуль компонентов пользователя.
14
18
  */
15
19
  export declare class ScUserModule {
16
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ScUserModule, never>;
17
- static ɵmod: i0.ɵɵNgModuleDeclaration<ScUserModule, [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.TuiFieldErrorPipeModule, typeof i6.TuiInputPasswordModule, typeof i7.TuiButtonModule, typeof i7.TuiErrorModule, typeof i7.TuiLabelModule, typeof i7.TuiTextfieldControllerModule, typeof i8.TuiLetModule, typeof i9.ScVerificationModule, typeof i10.ScFormFieldsModule, typeof i7.TuiLoaderModule, typeof i6.TuiInputModule, typeof i6.TuiInputPhoneModule, typeof i6.TuiCheckboxModule, typeof i6.TuiCheckboxLabeledModule, typeof i7.TuiDataListModule, typeof i6.TuiSelectModule, typeof i7.TuiModeModule], [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent]>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScUserModule, [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.TuiFieldErrorPipe, typeof i8.TuiInputPasswordModule, typeof i9.TuiButton, typeof i9.TuiError, typeof i9.TuiLabel, typeof i8.TuiTextfieldControllerModule, typeof i10.TuiLet, typeof i11.ScVerificationModule, typeof i12.ScFormFieldsModule, typeof i9.TuiLoader, typeof i8.TuiInputModule, typeof i8.TuiInputPhoneModule, typeof i7.TuiCheckbox, typeof i9.TuiDataListComponent, typeof i9.TuiDataListDirective, typeof i9.TuiOption, typeof i9.TuiOptGroup, typeof i8.TuiSelectModule, typeof i9.TuiLink, typeof i13.ScTerminalLinkDirective, typeof i14.ScTelLinkModule, typeof i7.TuiButtonLoading], [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent]>;
18
22
  static ɵinj: i0.ɵɵInjectorDeclaration<ScUserModule>;
19
23
  }
@@ -1,15 +1,16 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormGroup, FormControl } from '@angular/forms';
3
- import { ScISuggestionType, ScUser, ScUserService } from '@snabcentr/client-core';
4
- import { Observable, Subject } from 'rxjs';
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { FormControl, FormGroup } from '@angular/forms';
3
+ import { ScISuggestionType, ScUser, ScUserMetrikaService, ScUserService } from '@snabcentr/client-core';
5
4
  import { TuiDialogContext } from '@taiga-ui/core';
5
+ import { Observable, Subject } from 'rxjs';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Диалоговое окно изменения данных пользователя.
9
9
  */
10
- export declare class ScUpdateUserInfoDialogComponent {
10
+ export declare class ScUpdateUserInfoDialogComponent implements AfterViewInit {
11
11
  readonly user$: Observable<ScUser>;
12
12
  private readonly userService;
13
+ private readonly userMetrikaService;
13
14
  readonly context?: TuiDialogContext<ScUser, ScUpdateUserInfoDialogComponent> | undefined;
14
15
  /**
15
16
  * Перечисление типов подсказок.
@@ -50,10 +51,13 @@ export declare class ScUpdateUserInfoDialogComponent {
50
51
  * Инициализирует экземпляр класса {@link ScUpdateUserInfoDialogComponent}.
51
52
  *
52
53
  * @param user$ Поток информации о текущем пользователе.
53
- * @param userService Сервис информации о пользователе.
54
+ * @param userService Сервис данных о пользователе.
55
+ * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
54
56
  * @param context Контекст диалогового окна, в котором открыт компонент.
55
57
  */
56
- constructor(user$: Observable<ScUser>, userService: ScUserService, context?: TuiDialogContext<ScUser, ScUpdateUserInfoDialogComponent> | undefined);
57
- static ɵfac: i0.ɵɵFactoryDeclaration<ScUpdateUserInfoDialogComponent, [null, null, { optional: true; }]>;
58
- static ɵcmp: i0.ɵɵComponentDeclaration<ScUpdateUserInfoDialogComponent, "sc-update-user-info-dialog", never, {}, { "cancelButtonClick": "cancelButtonClick"; "successUpdateDate": "successUpdateDate"; }, never, never, false>;
58
+ constructor(user$: Observable<ScUser>, userService: ScUserService, userMetrikaService: ScUserMetrikaService, context?: TuiDialogContext<ScUser, ScUpdateUserInfoDialogComponent> | undefined);
59
+ /** @inheritdoc */
60
+ ngAfterViewInit(): void;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScUpdateUserInfoDialogComponent, [null, null, null, { optional: true; }]>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScUpdateUserInfoDialogComponent, "sc-update-user-info-dialog", never, {}, { "cancelButtonClick": "cancelButtonClick"; "successUpdateDate": "successUpdateDate"; }, never, never, false, never>;
59
63
  }