@snabcentr/client-ui 1.18.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/accordion/sc-accordion-content.directive.d.ts +2 -2
- package/accordion/sc-accordion.component.d.ts +4 -4
- package/accordion/sc-accordion.module.d.ts +2 -2
- package/auth/index.d.ts +2 -1
- package/auth/interfaces/{ApiErrorResponse.d.ts → api-error-response.d.ts} +1 -3
- package/auth/interfaces/index.d.ts +3 -0
- package/auth/interfaces/sc-bank-account-form-group.d.ts +11 -0
- package/auth/interfaces/sc-contact-form-group.d.ts +10 -0
- package/auth/sc-auth.module.d.ts +14 -8
- package/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.d.ts +5 -9
- package/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.d.ts +4 -9
- package/auth/sc-sign-in-form/sc-sign-in-form.component.d.ts +9 -5
- package/auth/sign-up-form/sc-sign-up-form.component.d.ts +153 -0
- package/banner/sc-banner.component.d.ts +9 -5
- package/banner/sc-banner.module.d.ts +5 -4
- package/brands-list/index.d.ts +2 -0
- package/brands-list/sc-brands-list.component.d.ts +15 -0
- package/brands-list/sc-brands-list.module.d.ts +12 -0
- package/cart/cart-item-mobile/sc-cart-item-mobile.component.d.ts +16 -16
- package/cart/sc-cart.module.d.ts +3 -3
- package/catalog/categories-list/sc-categories-list.component.d.ts +9 -3
- package/catalog/category-card/sc-category-card.component.d.ts +1 -1
- package/catalog/input-quantity/sc-input-quantity.component.d.ts +6 -14
- package/catalog/price-card/sc-price-card.component.d.ts +11 -105
- package/catalog/price-history/sc-price-history.component.d.ts +11 -5
- package/catalog/price-list-pagination/sc-price-list-pagination.component.d.ts +10 -5
- package/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.d.ts +1 -1
- package/catalog/sc-catalog.module.d.ts +5 -4
- package/catalog/sc-favorite-btn/sc-favorite-btn.component.d.ts +1 -1
- package/contacts/add-contact-dialog/sc-add-contact-dialog.component.d.ts +11 -6
- package/contacts/contacts-accordion/sc-contacts-accordion.component.d.ts +1 -1
- package/contacts/new-contact-form/sc-new-contact-form.component.d.ts +1 -1
- package/contacts/sc-contacts.module.d.ts +6 -1
- package/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.d.ts +3 -3
- package/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.d.ts +23 -15
- package/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.d.ts +1 -1
- package/contragents/contragents-accordion/sc-contragents-accordion.component.d.ts +1 -1
- package/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.d.ts +1 -1
- package/contragents/new-contragent-form/sc-new-contragent-form.component.d.ts +31 -16
- package/contragents/sc-contragents.module.d.ts +6 -4
- package/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.d.ts +83 -8
- package/delivery-address/delivery-address-accordion/delivery-address-accordion-item/sc-delivery-address-accordion-item.component.d.ts +1 -1
- package/delivery-address/delivery-address-accordion/sc-delivery-address-accordion.component.d.ts +1 -1
- package/delivery-address/sc-delivery-address.module.d.ts +4 -2
- package/directives/abstract-price-card/abstract-sc-price-card.directive.d.ts +107 -0
- package/directives/index.d.ts +6 -2
- package/directives/next-input-focus/sc-next-input-focus.directive.d.ts +18 -0
- package/directives/next-input-focus/sc-next-input-focus.module.d.ts +10 -0
- package/directives/tel-link/sc-tel-link.directive.d.ts +27 -0
- package/directives/tel-link/sc-tel-link.module.d.ts +11 -0
- package/directives/terminal-link/sc-terminal-link.directive.d.ts +34 -0
- package/esm2022/accordion/sc-accordion-content.directive.mjs +17 -0
- package/esm2022/accordion/sc-accordion.component.mjs +88 -0
- package/esm2022/accordion/sc-accordion.module.mjs +26 -0
- package/esm2022/auth/index.mjs +8 -0
- package/esm2022/auth/interfaces/api-error-response.mjs +2 -0
- package/esm2022/auth/interfaces/index.mjs +4 -0
- package/esm2022/auth/interfaces/sc-bank-account-form-group.mjs +2 -0
- package/esm2022/auth/interfaces/sc-contact-form-group.mjs +2 -0
- package/esm2022/auth/sc-auth.module.mjs +98 -0
- package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +72 -0
- package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +70 -0
- package/esm2022/auth/sc-sign-in-form/sc-sign-in-form.component.mjs +89 -0
- package/esm2022/auth/sign-up-form/sc-sign-up-form.component.mjs +321 -0
- package/esm2022/banner/sc-banner.component.mjs +234 -0
- package/esm2022/banner/sc-banner.module.mjs +29 -0
- package/esm2022/brands-list/index.mjs +3 -0
- package/esm2022/brands-list/sc-brands-list.component.mjs +24 -0
- package/esm2022/brands-list/sc-brands-list.module.mjs +22 -0
- package/esm2022/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +121 -0
- package/esm2022/cart/sc-cart.module.mjs +54 -0
- package/esm2022/catalog/categories-list/sc-categories-list.component.mjs +92 -0
- package/esm2022/catalog/category-card/sc-category-card.component.mjs +120 -0
- package/esm2022/catalog/input-quantity/sc-input-quantity.component.mjs +141 -0
- package/esm2022/catalog/price-card/sc-price-card.component.mjs +64 -0
- package/esm2022/catalog/price-history/sc-price-history.component.mjs +126 -0
- package/esm2022/catalog/price-list-pagination/sc-price-list-pagination.component.mjs +49 -0
- package/{esm2020 → esm2022}/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.mjs +6 -6
- package/esm2022/catalog/sc-catalog.module.mjs +120 -0
- package/esm2022/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +42 -0
- package/esm2022/contacts/add-contact-dialog/sc-add-contact-dialog.component.mjs +89 -0
- package/esm2022/contacts/contacts-accordion/sc-contacts-accordion.component.mjs +38 -0
- package/esm2022/contacts/new-contact-form/sc-new-contact-form.component.mjs +30 -0
- package/esm2022/contacts/sc-contacts.module.mjs +88 -0
- package/esm2022/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.mjs +80 -0
- package/esm2022/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +262 -0
- package/esm2022/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.mjs +75 -0
- package/{esm2020 → esm2022}/contragents/contragents-accordion/sc-contragents-accordion.component.mjs +6 -6
- package/esm2022/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.mjs +64 -0
- package/esm2022/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +220 -0
- package/esm2022/contragents/sc-contragents.module.mjs +110 -0
- package/esm2022/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.mjs +230 -0
- package/{esm2020 → esm2022}/delivery-address/delivery-address-accordion/delivery-address-accordion-item/sc-delivery-address-accordion-item.component.mjs +6 -6
- package/{esm2020 → esm2022}/delivery-address/delivery-address-accordion/sc-delivery-address-accordion.component.mjs +6 -6
- package/esm2022/delivery-address/sc-delivery-address.module.mjs +84 -0
- package/esm2022/directives/abstract-price-card/abstract-sc-price-card.directive.mjs +131 -0
- package/esm2022/directives/index.mjs +7 -0
- package/esm2022/directives/next-input-focus/sc-next-input-focus.directive.mjs +43 -0
- package/esm2022/directives/next-input-focus/sc-next-input-focus.module.mjs +19 -0
- package/esm2022/directives/tel-link/sc-tel-link.directive.mjs +58 -0
- package/esm2022/directives/tel-link/sc-tel-link.module.mjs +20 -0
- package/esm2022/directives/terminal-link/sc-terminal-link.directive.mjs +69 -0
- package/esm2022/files/directives/tree-top.directive.mjs +63 -0
- package/{esm2020 → esm2022}/files/directives/tree.directive.mjs +5 -5
- package/esm2022/files/file-tree-item/file-tree-item.component.mjs +18 -0
- package/esm2022/files/files-and-documents/files-and-documents.component.mjs +60 -0
- package/esm2022/files/files-and-documents.module.mjs +27 -0
- package/esm2022/files/services/tree-icon.service.mjs +49 -0
- package/{esm2020 → esm2022}/files/services/tree-loader.service.mjs +5 -5
- package/esm2022/form-fields/addresses-selection-field/sc-addresses-selection-field.component.mjs +128 -0
- package/esm2022/form-fields/form-fields.module.mjs +69 -0
- package/esm2022/form-fields/suggestion-field/sc-suggestion-field.component.mjs +134 -0
- package/{esm2020 → esm2022}/helpers/sc-px-converter.mjs +4 -4
- package/esm2022/helpers/sc-units-helper.mjs +45 -0
- package/{esm2020 → esm2022}/news/news-card/sc-news-card.component.mjs +4 -4
- package/{esm2020 → esm2022}/news/news-card-skeleton/sc-news-card-skeleton.component.mjs +4 -4
- package/{esm2020 → esm2022}/news/sc-news.module.mjs +5 -5
- package/esm2022/order/order-item-mobile/order-item-mobile.component.mjs +80 -0
- package/esm2022/order/sc-order.module.mjs +29 -0
- package/esm2022/order/sc-payment-status/sc-payment-status.component.mjs +35 -0
- package/esm2022/pipes/index.mjs +2 -0
- package/esm2022/pipes/sc-formatted-phone.mjs +34 -0
- package/esm2022/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.mjs +182 -0
- package/esm2022/profile/sc-profile.module.mjs +77 -0
- package/{esm2020 → esm2022}/providers/index.mjs +1 -2
- package/esm2022/providers/scUserProviders.mjs +27 -0
- package/esm2022/public-api.mjs +30 -0
- package/esm2022/qrcode/index.mjs +3 -0
- package/esm2022/qrcode/qrcode-dialog/sc-qrcode-dialog.component.mjs +58 -0
- package/esm2022/qrcode/sc-qrcode.module.mjs +25 -0
- package/esm2022/samples/ask-to-sample-form/sc-ask-to-sample-form.component.mjs +37 -0
- package/esm2022/samples/index.mjs +5 -0
- package/esm2022/samples/interfaces/sc-i-preview-sample.mjs +2 -0
- package/esm2022/samples/preview-sample/sc-preview-sample.component.mjs +83 -0
- package/esm2022/samples/sc-sample.module.mjs +59 -0
- package/{esm2020 → esm2022}/share-button/sc-share-button.component.mjs +5 -5
- package/esm2022/share-button/sc-share-button.module.mjs +22 -0
- package/esm2022/user/index.mjs +6 -0
- package/esm2022/user/reset-user-password/sc-reset-user-password.component.mjs +71 -0
- package/esm2022/user/sc-user.module.mjs +89 -0
- package/esm2022/user/update-user-info-dialog/sc-update-user-info-dialog.component.mjs +117 -0
- package/esm2022/user/user-managers/sc-user-managers.component.mjs +41 -0
- package/esm2022/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.mjs +102 -0
- package/{esm2020 → esm2022}/validators/index.mjs +2 -2
- package/esm2022/validators/sc-password-confirm-matching-validator.mjs +17 -0
- package/esm2022/validators/stepValidator.mjs +18 -0
- package/esm2022/verification/sc-verification.module.mjs +68 -0
- package/esm2022/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +198 -0
- package/fesm2022/snabcentr-client-ui.mjs +5710 -0
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -0
- package/files/directives/tree-top.directive.d.ts +1 -1
- package/files/directives/tree.directive.d.ts +1 -1
- package/files/file-tree-item/file-tree-item.component.d.ts +3 -3
- package/files/files-and-documents/files-and-documents.component.d.ts +1 -1
- package/files/files-and-documents.module.d.ts +1 -1
- package/form-fields/addresses-selection-field/sc-addresses-selection-field.component.d.ts +17 -11
- package/form-fields/form-fields.module.d.ts +5 -3
- package/form-fields/suggestion-field/sc-suggestion-field.component.d.ts +10 -2
- package/helpers/sc-units-helper.d.ts +6 -6
- package/news/news-card/sc-news-card.component.d.ts +1 -1
- package/news/news-card-skeleton/sc-news-card-skeleton.component.d.ts +1 -1
- package/order/order-item-mobile/order-item-mobile.component.d.ts +9 -9
- package/order/sc-order.module.d.ts +4 -2
- package/order/sc-payment-status/sc-payment-status.component.d.ts +1 -1
- package/package.json +42 -45
- package/pipes/index.d.ts +1 -0
- package/pipes/sc-formatted-phone.d.ts +19 -0
- package/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.d.ts +3 -3
- package/profile/sc-profile.module.d.ts +6 -4
- package/providers/index.d.ts +0 -1
- package/providers/scUserProviders.d.ts +2 -3
- package/public-api.d.ts +4 -0
- package/qrcode/index.d.ts +2 -0
- package/qrcode/qrcode-dialog/sc-qrcode-dialog.component.d.ts +37 -0
- package/qrcode/sc-qrcode.module.d.ts +14 -0
- package/samples/ask-to-sample-form/sc-ask-to-sample-form.component.d.ts +18 -0
- package/samples/index.d.ts +4 -0
- package/samples/interfaces/sc-i-preview-sample.d.ts +47 -0
- package/samples/preview-sample/sc-preview-sample.component.d.ts +48 -0
- package/samples/sc-sample.module.d.ts +19 -0
- package/share-button/sc-share-button.component.d.ts +1 -1
- package/share-button/sc-share-button.module.d.ts +1 -1
- package/styles/taiga/taiga-tailwind-preset.js +121 -0
- package/styles/taiga/variables.less +17 -14
- package/styles/tailwind/tailwind.scss +252 -61
- package/user/index.d.ts +1 -0
- package/user/reset-user-password/sc-reset-user-password.component.d.ts +3 -3
- package/user/sc-user.module.d.ts +12 -8
- package/user/update-user-info-dialog/sc-update-user-info-dialog.component.d.ts +13 -9
- package/user/user-managers/sc-user-managers.component.d.ts +26 -0
- package/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.d.ts +13 -8
- package/validators/index.d.ts +1 -1
- package/validators/{scPasswordConfirmMatchingValidator.d.ts → sc-password-confirm-matching-validator.d.ts} +1 -1
- package/verification/sc-verification.module.d.ts +5 -4
- package/verification/verification-phone-check-form/sc-verification-phone-check-form.component.d.ts +18 -18
- package/directives/carousel-item-hidden/sc-carousel-item-hidden.directive.d.ts +0 -24
- package/directives/carousel-item-hidden/sc-carousel-item-hidden.module.d.ts +0 -11
- package/esm2020/accordion/sc-accordion-content.directive.mjs +0 -17
- package/esm2020/accordion/sc-accordion.component.mjs +0 -88
- package/esm2020/accordion/sc-accordion.module.mjs +0 -25
- package/esm2020/auth/index.mjs +0 -7
- package/esm2020/auth/interfaces/ApiErrorResponse.mjs +0 -2
- package/esm2020/auth/sc-auth.module.mjs +0 -79
- package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +0 -76
- package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +0 -75
- package/esm2020/auth/sc-sign-in-form/sc-sign-in-form.component.mjs +0 -71
- package/esm2020/banner/sc-banner.component.mjs +0 -232
- package/esm2020/banner/sc-banner.module.mjs +0 -26
- package/esm2020/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +0 -120
- package/esm2020/cart/sc-cart.module.mjs +0 -65
- package/esm2020/catalog/categories-list/sc-categories-list.component.mjs +0 -84
- package/esm2020/catalog/category-card/sc-category-card.component.mjs +0 -120
- package/esm2020/catalog/input-quantity/sc-input-quantity.component.mjs +0 -163
- package/esm2020/catalog/price-card/sc-price-card.component.mjs +0 -175
- package/esm2020/catalog/price-history/sc-price-history.component.mjs +0 -114
- package/esm2020/catalog/price-list-pagination/sc-price-list-pagination.component.mjs +0 -37
- package/esm2020/catalog/sc-catalog.module.mjs +0 -128
- package/esm2020/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +0 -41
- package/esm2020/contacts/add-contact-dialog/sc-add-contact-dialog.component.mjs +0 -71
- package/esm2020/contacts/contacts-accordion/sc-contacts-accordion.component.mjs +0 -35
- package/esm2020/contacts/new-contact-form/sc-new-contact-form.component.mjs +0 -28
- package/esm2020/contacts/sc-contacts.module.mjs +0 -92
- package/esm2020/contragents/add-contragent-bank-account-dialog/sc-add-contragent-bank-account-dialog.component.mjs +0 -71
- package/esm2020/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +0 -249
- package/esm2020/contragents/contragents-accordion/contragents-accordion-item/sc-contragents-accordion-item.component.mjs +0 -75
- package/esm2020/contragents/new-contragent-bank-account-form/sc-new-contragent-bank-account-form.component.mjs +0 -61
- package/esm2020/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +0 -183
- package/esm2020/contragents/sc-contragents.module.mjs +0 -103
- package/esm2020/delivery-address/add-delivery-address-dialog/sc-add-delivery-address-dialog.component.mjs +0 -79
- package/esm2020/delivery-address/sc-delivery-address.module.mjs +0 -77
- package/esm2020/directives/carousel-item-hidden/sc-carousel-item-hidden.directive.mjs +0 -40
- package/esm2020/directives/carousel-item-hidden/sc-carousel-item-hidden.module.mjs +0 -21
- package/esm2020/directives/index.mjs +0 -3
- package/esm2020/files/directives/tree-top.directive.mjs +0 -63
- package/esm2020/files/file-tree-item/file-tree-item.component.mjs +0 -18
- package/esm2020/files/files-and-documents/files-and-documents.component.mjs +0 -60
- package/esm2020/files/files-and-documents.module.mjs +0 -26
- package/esm2020/files/services/tree-icon.service.mjs +0 -48
- package/esm2020/form-fields/addresses-selection-field/sc-addresses-selection-field.component.mjs +0 -122
- package/esm2020/form-fields/form-fields.module.mjs +0 -80
- package/esm2020/form-fields/suggestion-field/sc-suggestion-field.component.mjs +0 -116
- package/esm2020/helpers/sc-units-helper.mjs +0 -44
- package/esm2020/order/order-item-mobile/order-item-mobile.component.mjs +0 -79
- package/esm2020/order/sc-order.module.mjs +0 -25
- package/esm2020/order/sc-payment-status/sc-payment-status.component.mjs +0 -35
- package/esm2020/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.mjs +0 -177
- package/esm2020/profile/sc-profile.module.mjs +0 -80
- package/esm2020/providers/productsPagination.mjs +0 -99
- package/esm2020/providers/scUserProviders.mjs +0 -30
- package/esm2020/public-api.mjs +0 -26
- package/esm2020/share-button/sc-share-button.module.mjs +0 -22
- package/esm2020/user/index.mjs +0 -5
- package/esm2020/user/reset-user-password/sc-reset-user-password.component.mjs +0 -67
- package/esm2020/user/sc-user.module.mjs +0 -88
- package/esm2020/user/update-user-info-dialog/sc-update-user-info-dialog.component.mjs +0 -105
- package/esm2020/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.mjs +0 -91
- package/esm2020/validators/scPasswordConfirmMatchingValidator.mjs +0 -17
- package/esm2020/validators/stepValidator.mjs +0 -18
- package/esm2020/verification/sc-verification.module.mjs +0 -73
- package/esm2020/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +0 -184
- package/fesm2015/snabcentr-client-ui.mjs +0 -4861
- package/fesm2015/snabcentr-client-ui.mjs.map +0 -1
- package/fesm2020/snabcentr-client-ui.mjs +0 -4781
- package/fesm2020/snabcentr-client-ui.mjs.map +0 -1
- package/providers/productsPagination.d.ts +0 -43
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/auth/enums/auth-method.mjs +0 -0
- /package/{esm2020 → esm2022}/banner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/cart/index.mjs +0 -0
- /package/{esm2020 → esm2022}/catalog/index.mjs +0 -0
- /package/{esm2020 → esm2022}/contacts/index.mjs +0 -0
- /package/{esm2020 → esm2022}/contragents/index.mjs +0 -0
- /package/{esm2020 → esm2022}/delivery-address/index.mjs +0 -0
- /package/{esm2020 → esm2022}/files/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/files/index.mjs +0 -0
- /package/{esm2020 → esm2022}/files/interfaces/tree-node.mjs +0 -0
- /package/{esm2020 → esm2022}/files/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form-fields/index.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icons/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icons/sc-client-ui-icons-name.mjs +0 -0
- /package/{esm2020 → esm2022}/loader/index.mjs +0 -0
- /package/{esm2020 → esm2022}/loader/sc-i-loader.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/index.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-account-number-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-bic-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-correspondent-account-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-inn-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-kpp-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-okpo-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/masks/sc-phone-verification-code-mask.mjs +0 -0
- /package/{esm2020 → esm2022}/news/index.mjs +0 -0
- /package/{esm2020 → esm2022}/order/index.mjs +0 -0
- /package/{esm2020 → esm2022}/profile/index.mjs +0 -0
- /package/{esm2020 → esm2022}/share-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snabcentr-client-ui.mjs +0 -0
- /package/{esm2020 → esm2022}/tokens/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tokens/sc-linear-values-token.mjs +0 -0
- /package/{esm2020 → esm2022}/validators/scBicValidator.mjs +0 -0
- /package/{esm2020 → esm2022}/validators/scCorrespondentAccountValidator.mjs +0 -0
- /package/{esm2020 → esm2022}/verification/index.mjs +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
! tailwindcss v3.4.
|
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
|
-
|
688
|
-
|
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
|
833
|
-
height:
|
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-
|
861
|
-
width:
|
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
|
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
|
-
|
937
|
-
|
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-
|
1088
|
-
border-radius: 0.
|
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-
|
1475
|
+
.text-slate-500 {
|
1359
1476
|
--tw-text-opacity: 1;
|
1360
|
-
color: rgb(
|
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
|
-
|
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 {
|
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
|
}
|
package/user/sc-user.module.d.ts
CHANGED
@@ -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 "
|
6
|
-
import * as i5 from "@angular/
|
7
|
-
import * as i6 from "@
|
8
|
-
import * as i7 from "@taiga-ui/
|
9
|
-
import * as i8 from "@taiga-ui/
|
10
|
-
import * as i9 from "
|
11
|
-
import * as i10 from "
|
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
|
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 {
|
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
|
-
|
58
|
-
|
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
|
}
|