From a27508e0284439f278a7bc0cad6ca2793822c20c Mon Sep 17 00:00:00 2001 From: Sam Poyigi <6567634+sampoyigi@users.noreply.github.com> Date: Fri, 12 Apr 2024 10:43:55 +0100 Subject: [PATCH] Renamed @componentPartial to @themeComponent for consistency Signed-off-by: Sam Poyigi <6567634+sampoyigi@users.noreply.github.com> --- docs/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/index.md b/docs/index.md index 754d09a..3cd499c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -32,10 +32,10 @@ In the admin user interface you can manage the cart conditions. | Name | Page variable | Description | | -------- | ------------------------------ | ------------------------------------------------ | -| CartBox | `@componentPartial('cartBox')` | Show the contents of and manages the user's cart | -| Checkout | `@componentPartial('checkout')` | Displays Checkout form on the page | -| OrderPage | `@componentPartial('orderPage')` | Displays a single order on the page | -| Orders | `@componentPartial('orders')` | Displays a list of orders on the page | +| CartBox | `@themeComponent('cartBox')` | Show the contents of and manages the user's cart | +| Checkout | `@themeComponent('checkout')` | Displays Checkout form on the page | +| OrderPage | `@themeComponent('orderPage')` | Displays a single order on the page | +| Orders | `@themeComponent('orders')` | Displays a list of orders on the page | ### CartBox Component @@ -74,7 +74,7 @@ permalink: /checkout checkoutPage: checkout/checkout --- ... -@componentPartial('cartBox') +@themeComponent('cartBox') ... ``` @@ -120,7 +120,7 @@ permalink: /checkout successParamCode: 'hash' --- ... -@componentPartial('checkout') +@themeComponent('checkout') ... ```