@tabres/react 1.0.18 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/PublicMenu/OrderDrawer/OrderDrawerDetails.d.ts +2 -2
- package/dist/components/PublicMenu/ProductVariants/ProductVariants.d.ts +1 -1
- package/dist/constants/constants/env.d.ts +1 -1
- package/dist/constants/env.d.ts +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/models/constants/env.d.ts +1 -1
- package/dist/models/index.esm.js.map +1 -1
- package/dist/models/index.js.map +1 -1
- package/dist/models/modules/addon/models.d.ts +7 -0
- package/dist/models/modules/branch/models.d.ts +1 -1
- package/dist/models/modules/customer/services.d.ts +3 -1
- package/dist/models/modules/order/constants.d.ts +2 -5
- package/dist/models/modules/order/hooks.d.ts +3 -7
- package/dist/models/modules/order/models.d.ts +57 -17
- package/dist/models/modules/order/services.d.ts +2 -1
- package/dist/models/modules/order/utils/item-price.d.ts +3 -0
- package/dist/models/modules/order/utils.d.ts +3 -19
- package/dist/models/modules/product/models.d.ts +13 -1
- package/dist/models/modules/product/utils/listing-price.d.ts +9 -0
- package/dist/models/modules/product/utils/order-price.d.ts +11 -0
- package/dist/models/modules/product/utils.d.ts +2 -42
- package/dist/models/services/api/client.d.ts +3 -0
- package/dist/modules/addon/models.d.ts +7 -0
- package/dist/modules/addon/utils.d.ts +0 -9
- package/dist/modules/branch/models.d.ts +1 -1
- package/dist/modules/customer/services.d.ts +3 -1
- package/dist/modules/order/constants.d.ts +2 -5
- package/dist/modules/order/hooks.d.ts +3 -7
- package/dist/modules/order/hooks.price.test.d.ts +1 -0
- package/dist/modules/order/models.d.ts +57 -17
- package/dist/modules/order/preview.d.ts +8 -0
- package/dist/modules/order/preview.test.d.ts +1 -0
- package/dist/modules/order/services.d.ts +2 -1
- package/dist/modules/order/utils/item-price.d.ts +3 -0
- package/dist/modules/order/utils/item-price.test.d.ts +1 -0
- package/dist/modules/order/utils.d.ts +3 -19
- package/dist/modules/product/models.d.ts +13 -1
- package/dist/modules/product/utils/listing-price.d.ts +9 -0
- package/dist/modules/product/utils/listing-price.test.d.ts +1 -0
- package/dist/modules/product/utils/order-price.d.ts +11 -0
- package/dist/modules/product/utils/order-price.test.d.ts +1 -0
- package/dist/modules/product/utils.d.ts +2 -42
- package/dist/services/api/client.d.ts +3 -0
- package/dist/styles/ui.css +1 -1
- package/dist/styles/ui.css.map +1 -1
- package/dist/utils/components/PublicMenu/OrderMethods/OrderMethods.types.d.ts +9 -0
- package/dist/utils/components/PublicMenu/ProductsGridItem/ProductsGridItem.types.d.ts +13 -0
- package/dist/utils/constants/env.d.ts +1 -0
- package/dist/utils/hooks/translation.d.ts +5 -0
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/models/index.d.ts +16 -0
- package/dist/utils/modules/addon/models.d.ts +7 -0
- package/dist/utils/modules/addon/utils.d.ts +0 -9
- package/dist/utils/modules/branch/hooks.d.ts +16 -0
- package/dist/utils/modules/branch/models.d.ts +1 -1
- package/dist/utils/modules/branch/utils.d.ts +7 -0
- package/dist/utils/modules/business/constants.d.ts +2 -0
- package/dist/utils/modules/business/hooks.d.ts +15 -0
- package/dist/utils/modules/common/services.d.ts +1 -0
- package/dist/utils/modules/customer/hooks.d.ts +5 -0
- package/dist/utils/modules/customer/services.d.ts +11 -0
- package/dist/utils/modules/menu/hooks.d.ts +1 -0
- package/dist/utils/modules/menu/index.d.ts +3 -0
- package/dist/utils/modules/order/constants.d.ts +2 -5
- package/dist/utils/modules/order/hooks.d.ts +14 -0
- package/dist/utils/modules/order/index.d.ts +5 -0
- package/dist/utils/modules/order/models.d.ts +57 -17
- package/dist/utils/modules/order/services.d.ts +5 -0
- package/dist/utils/modules/order/utils/item-price.d.ts +3 -0
- package/dist/utils/modules/order/utils.d.ts +3 -19
- package/dist/utils/modules/product/hooks.d.ts +9 -0
- package/dist/utils/modules/product/index.d.ts +3 -0
- package/dist/utils/modules/product/models.d.ts +13 -1
- package/dist/utils/modules/product/utils/listing-price.d.ts +9 -0
- package/dist/utils/modules/product/utils/order-price.d.ts +11 -0
- package/dist/utils/modules/product/utils.d.ts +3 -43
- package/dist/utils/modules/store/hooks.d.ts +6 -0
- package/dist/utils/modules/table/hooks.d.ts +4 -0
- package/dist/utils/modules/view/hooks.d.ts +2 -0
- package/dist/utils/modules/view/index.d.ts +4 -0
- package/dist/utils/modules/view/models.d.ts +7 -0
- package/dist/utils/modules/view/services.d.ts +2 -0
- package/dist/utils/services/api/client.d.ts +3 -0
- package/dist/utils/services/translation/index.d.ts +3 -0
- package/dist/utils/services/translation/locales/az/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/az/branch.d.ts +14 -0
- package/dist/utils/services/translation/locales/az/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/az/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/az/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/az/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/az/index.d.ts +149 -0
- package/dist/utils/services/translation/locales/az/order.d.ts +47 -0
- package/dist/utils/services/translation/locales/az/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/en/auth.d.ts +2 -0
- package/dist/utils/services/translation/locales/en/branch.d.ts +10 -0
- package/dist/utils/services/translation/locales/en/common.d.ts +2 -0
- package/dist/utils/services/translation/locales/en/customer.d.ts +2 -0
- package/dist/utils/services/translation/locales/en/error.d.ts +17 -0
- package/dist/utils/services/translation/locales/en/events.d.ts +2 -0
- package/dist/utils/services/translation/locales/en/index.d.ts +34 -0
- package/dist/utils/services/translation/locales/en/order.d.ts +2 -0
- package/dist/utils/services/translation/locales/en/pricing.d.ts +2 -0
- package/dist/utils/services/translation/locales/et/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/et/branch.d.ts +13 -0
- package/dist/utils/services/translation/locales/et/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/et/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/et/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/et/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/et/index.d.ts +147 -0
- package/dist/utils/services/translation/locales/et/order.d.ts +46 -0
- package/dist/utils/services/translation/locales/et/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/hr/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/hr/branch.d.ts +14 -0
- package/dist/utils/services/translation/locales/hr/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/hr/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/hr/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/hr/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/hr/index.d.ts +149 -0
- package/dist/utils/services/translation/locales/hr/order.d.ts +47 -0
- package/dist/utils/services/translation/locales/hr/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/index.d.ts +1212 -0
- package/dist/utils/services/translation/locales/nl/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/nl/branch.d.ts +13 -0
- package/dist/utils/services/translation/locales/nl/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/nl/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/nl/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/nl/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/nl/index.d.ts +147 -0
- package/dist/utils/services/translation/locales/nl/order.d.ts +46 -0
- package/dist/utils/services/translation/locales/nl/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/pl/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/pl/branch.d.ts +14 -0
- package/dist/utils/services/translation/locales/pl/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/pl/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/pl/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/pl/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/pl/index.d.ts +149 -0
- package/dist/utils/services/translation/locales/pl/order.d.ts +47 -0
- package/dist/utils/services/translation/locales/pl/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/pt/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/pt/branch.d.ts +14 -0
- package/dist/utils/services/translation/locales/pt/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/pt/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/pt/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/pt/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/pt/index.d.ts +149 -0
- package/dist/utils/services/translation/locales/pt/order.d.ts +47 -0
- package/dist/utils/services/translation/locales/pt/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/ru/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/ru/branch.d.ts +13 -0
- package/dist/utils/services/translation/locales/ru/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/ru/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/ru/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/ru/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/ru/index.d.ts +147 -0
- package/dist/utils/services/translation/locales/ru/order.d.ts +46 -0
- package/dist/utils/services/translation/locales/ru/pricing.d.ts +35 -0
- package/dist/utils/services/translation/locales/tr/auth.d.ts +7 -0
- package/dist/utils/services/translation/locales/tr/branch.d.ts +13 -0
- package/dist/utils/services/translation/locales/tr/common.d.ts +6 -0
- package/dist/utils/services/translation/locales/tr/customer.d.ts +17 -0
- package/dist/utils/services/translation/locales/tr/error.d.ts +20 -0
- package/dist/utils/services/translation/locales/tr/events.d.ts +8 -0
- package/dist/utils/services/translation/locales/tr/index.d.ts +147 -0
- package/dist/utils/services/translation/locales/tr/order.d.ts +46 -0
- package/dist/utils/services/translation/locales/tr/pricing.d.ts +35 -0
- package/dist/utils/store/index.d.ts +7 -0
- package/dist/utils/store/order.d.ts +42 -0
- package/package.json +1 -1
- package/dist/components/Pricing/Pricing.d.ts +0 -11
- package/dist/components/Pricing/PricingPlanAmount.d.ts +0 -9
- package/dist/components/Pricing/index.d.ts +0 -1
- package/dist/models/modules/addon/utils.d.ts +0 -14
- package/dist/models/services/api/index.d.ts +0 -5
- package/dist/services/api/index.d.ts +0 -5
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"Get Started": string;
|
|
3
|
+
"Choose Plan": string;
|
|
4
|
+
"Smart QR Menu": string;
|
|
5
|
+
"Link-in-bio": string;
|
|
6
|
+
"Menu Analytics": string;
|
|
7
|
+
"Unlimited Products": string;
|
|
8
|
+
"Unlimited Categories": string;
|
|
9
|
+
"Product variants": string;
|
|
10
|
+
"Product options": string;
|
|
11
|
+
"Sales reports": string;
|
|
12
|
+
"24/7 Support": string;
|
|
13
|
+
"Multiple Branches": string;
|
|
14
|
+
"Order Management": string;
|
|
15
|
+
"Table Management": string;
|
|
16
|
+
"Mobile App for Owners & Staff": string;
|
|
17
|
+
"Point of Sale (POS)": string;
|
|
18
|
+
"Delivery Management": string;
|
|
19
|
+
"Third-Party Delivery Integrations": string;
|
|
20
|
+
"TabresPay with Mobile": string;
|
|
21
|
+
"Event management": string;
|
|
22
|
+
"Unlimited Users": string;
|
|
23
|
+
"/ month": string;
|
|
24
|
+
monthly: string;
|
|
25
|
+
annually: string;
|
|
26
|
+
"Flexible Plans for Every Business - Simple Pricing, More Value!": string;
|
|
27
|
+
"Choose a pricing plan that fits your business. Subscribe monthly or annually and save more with long-term plans!": string;
|
|
28
|
+
"Unlimited Languages": string;
|
|
29
|
+
"30-day money-back guarantee": string;
|
|
30
|
+
"Limited Time Only": string;
|
|
31
|
+
"/ lifetime": string;
|
|
32
|
+
"Try for free": string;
|
|
33
|
+
"No credit card needed": string;
|
|
34
|
+
};
|
|
35
|
+
export default _default;
|