diff --git a/docs/README.md b/docs/README.md index cf8b00a..d9de8be 100644 --- a/docs/README.md +++ b/docs/README.md @@ -26,7 +26,7 @@ Now you must install the required apps listed below. They are mandatory for the * [Wordpress Integration](https://developers.vtex.com/vtex-developer-docs/docs/installing-the-b2b-store-theme#wordpress-integration) * [Admin Organizations](https://developers.vtex.com/vtex-developer-docs/docs/installing-the-b2b-store-theme#admin-organizations) * [Organizations](https://developers.vtex.com/vtex-developer-docs/docs/installing-the-b2b-store-theme#organizations) -* [Buyer Organization Supplier](https://github.com/vtex-apps/buyer-org-supplier) + #### Wishlist [Wishlist](https://github.com/vtex-apps/wish-list) is an app that allows your store’s customers to bookmark their favorite products by clicking on a heart icon. @@ -108,16 +108,6 @@ To install this app, run the following command on the CLI: vtex install vtex.wordpress-integration@2.x ``` -#### Buyer Organization Supplier - -The [Buyer Organization Supplier](https://github.com/vtex-apps/buyer-org-supplier) app enables the creation of buyer organizations in your store. You can use this app as default or use it as reference to create your own. - -To install this app, run the following command on the CLI: - -``` -vtex install vtex.buyer-org-supplier@2.x -``` - #### Admin Organizations In brief, the [Admin Organizations](https://github.com/vtex-apps/admin-organizations) app is responsible for managing the **Roles** and **Permissions** modules on your store’s Admin. diff --git a/manifest.json b/manifest.json index f650ec3..3470a68 100644 --- a/manifest.json +++ b/manifest.json @@ -22,7 +22,6 @@ "vtex.wordpress-integration": "2.x" }, "dependencies": { - "vtex.b2b-supplier": "2.x", "vtex.store": "2.x", "vtex.store-header": "2.x", "vtex.product-summary": "2.x", diff --git a/store/blocks/header/drawer.jsonc b/store/blocks/header/drawer.jsonc index a4f24a0..dcb053d 100644 --- a/store/blocks/header/drawer.jsonc +++ b/store/blocks/header/drawer.jsonc @@ -15,7 +15,6 @@ "flex-layout.col#menu-header": { "children": [ "login#drawer", - "b2b-supplier.signup-button", // Deprecated // "locale-switcher#drawer", "rich-text#explore", diff --git a/store/blocks/header/header.jsonc b/store/blocks/header/header.jsonc index a350733..44f4a5b 100644 --- a/store/blocks/header/header.jsonc +++ b/store/blocks/header/header.jsonc @@ -42,7 +42,6 @@ "flex-layout.col#logo-desktop", "flex-layout.col#search-bar", "login", - "b2b-supplier.signup-button", "minicart.v2" ] }, @@ -170,7 +169,7 @@ }, "flex-layout.row#mobile": { - "children": ["drawer", "logo", "challenge-block#login", "b2b-supplier.signup-button", "minicart.v2"], + "children": ["drawer", "logo", "challenge-block#login", "minicart.v2"], "props": { "preventHorizontalStretch": true, "preserveLayoutOnMobile": true, @@ -216,12 +215,6 @@ } }, - "b2b-supplier.signup-button": { - "props": { - "iconLabel": "Sign up" - } - }, - "login#mobile": { "props": { "iconLabel": "Sign in" diff --git a/store/blocks/home.jsonc b/store/blocks/home.jsonc index 5c9f4c4..8b23c94 100644 --- a/store/blocks/home.jsonc +++ b/store/blocks/home.jsonc @@ -4,7 +4,6 @@ }, "responsive-layout.desktop": { "children": [ - "b2b-supplier.approved-status", "flex-layout.row#imageList", "flex-layout.row#shopByCategory", // Deprecated diff --git a/styles/css/vtex.b2b-supplier.css b/styles/css/vtex.b2b-supplier.css deleted file mode 100644 index dbc2fca..0000000 --- a/styles/css/vtex.b2b-supplier.css +++ /dev/null @@ -1,30 +0,0 @@ -.container :global(.vtex-button) { - width: 176px; - height: 48px; -} - -.container :global(.vtex-button__label) { - padding: 0 0 0 0; -} - -.label { - color: #fff; - text-transform: initial; - font-size: 16px; - line-height: 24px; -} - -.profile { - color: #fff; -} - -.sendButton :global(.vtex-button) { - background: #214d8e; - border: none; -} - -@media (max-width: 64rem) { - .container :global(.vtex-button) { - display: none; - } -}