merchi_cart 1.3.7 → 1.3.8
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Full merchi_sdk_product_form runtime for window.MerchiProductFormSdk.
|
|
3
3
|
* Keep in sync with merchi_api/common/js/product_form_gate.cjs SDK_EXPORTS.
|
|
4
4
|
*/
|
|
5
|
-
import { SDK_VERSION, serializeJob, nonEmptyGroups, formatCurrency, urlFor, createPricing, createProductFormRuntime, productHasGroups, groupFieldsOf, independentFieldsOf, isOptionQuantityGridProduct, buildProductFormJob, jobToFormState, selectionsToVariations, Section, Stack, Card, Heading, Text, Divider, Field, GroupRows, OptionQuantityGrid, ProductFormProvider, ProductFormShell, useProductForm, OPTION_FIELD_TYPES, theme } from 'merchi_sdk_product_form';
|
|
5
|
+
import { SDK_VERSION, serializeJob, nonEmptyGroups, formatCurrency, urlFor, createPricing, createProductFormRuntime, productHasGroups, groupFieldsOf, independentFieldsOf, isOptionQuantityGridProduct, buildProductFormJob, jobToFormState, selectionsToVariations, Section, Stack, Card, Heading, Text, Divider, Field, GroupRows, OptionQuantityGrid, ProductFormProvider, ProductFormShell, ProductFormActions, useProductForm, OPTION_FIELD_TYPES, theme } from 'merchi_sdk_product_form';
|
|
6
6
|
export var MerchiProductFormSdkExternals = {
|
|
7
7
|
SDK_VERSION: SDK_VERSION,
|
|
8
8
|
serializeJob: serializeJob,
|
|
@@ -29,6 +29,7 @@ export var MerchiProductFormSdkExternals = {
|
|
|
29
29
|
OptionQuantityGrid: OptionQuantityGrid,
|
|
30
30
|
ProductFormProvider: ProductFormProvider,
|
|
31
31
|
ProductFormShell: ProductFormShell,
|
|
32
|
+
ProductFormActions: ProductFormActions,
|
|
32
33
|
useProductForm: useProductForm,
|
|
33
34
|
OPTION_FIELD_TYPES: OPTION_FIELD_TYPES,
|
|
34
35
|
theme: theme
|
|
@@ -36,6 +36,7 @@ var MerchiProductFormSdkExternals = exports.MerchiProductFormSdkExternals = {
|
|
|
36
36
|
OptionQuantityGrid: _merchi_sdk_product_form.OptionQuantityGrid,
|
|
37
37
|
ProductFormProvider: _merchi_sdk_product_form.ProductFormProvider,
|
|
38
38
|
ProductFormShell: _merchi_sdk_product_form.ProductFormShell,
|
|
39
|
+
ProductFormActions: _merchi_sdk_product_form.ProductFormActions,
|
|
39
40
|
useProductForm: _merchi_sdk_product_form.useProductForm,
|
|
40
41
|
OPTION_FIELD_TYPES: _merchi_sdk_product_form.OPTION_FIELD_TYPES,
|
|
41
42
|
theme: _merchi_sdk_product_form.theme
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "merchi_cart",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.8",
|
|
4
4
|
"description": "Merchi's cart",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"js-cookie": "^3.0.5",
|
|
92
92
|
"lodash": "^4.17.21",
|
|
93
93
|
"merchi_product_form": "^1.18.0",
|
|
94
|
-
"merchi_sdk_product_form": "^1.0.
|
|
94
|
+
"merchi_sdk_product_form": "^1.0.9",
|
|
95
95
|
"merchi_sdk_ts": "^1.28.0",
|
|
96
96
|
"react-country-region-selector": "^3.6.1",
|
|
97
97
|
"react-geosuggest": "^2.14.1",
|
|
@@ -28,6 +28,7 @@ import {
|
|
|
28
28
|
OptionQuantityGrid,
|
|
29
29
|
ProductFormProvider,
|
|
30
30
|
ProductFormShell,
|
|
31
|
+
ProductFormActions,
|
|
31
32
|
useProductForm,
|
|
32
33
|
OPTION_FIELD_TYPES,
|
|
33
34
|
theme,
|
|
@@ -59,6 +60,7 @@ export const MerchiProductFormSdkExternals = {
|
|
|
59
60
|
OptionQuantityGrid,
|
|
60
61
|
ProductFormProvider,
|
|
61
62
|
ProductFormShell,
|
|
63
|
+
ProductFormActions,
|
|
62
64
|
useProductForm,
|
|
63
65
|
OPTION_FIELD_TYPES,
|
|
64
66
|
theme,
|