thm-p3-configurator 0.0.6 → 0.0.7
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/index.js +26 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9,12 +9,24 @@ Object.defineProperty(exports, "ActiveMarkerProvider", {
|
|
|
9
9
|
return _ActiveMarkerContext.ActiveMarkerProvider;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
+
Object.defineProperty(exports, "BranchSelectorModal", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _BranchSelectorModal.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
12
18
|
Object.defineProperty(exports, "CountryController", {
|
|
13
19
|
enumerable: true,
|
|
14
20
|
get: function get() {
|
|
15
21
|
return _CountryContext.CountryController;
|
|
16
22
|
}
|
|
17
23
|
});
|
|
24
|
+
Object.defineProperty(exports, "FormulaController", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _FormulaContext.FormulaController;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
18
30
|
Object.defineProperty(exports, "InternalAppointmentPage", {
|
|
19
31
|
enumerable: true,
|
|
20
32
|
get: function get() {
|
|
@@ -99,14 +111,28 @@ Object.defineProperty(exports, "useCountryDispatch", {
|
|
|
99
111
|
return _CountryContext.useCountryDispatch;
|
|
100
112
|
}
|
|
101
113
|
});
|
|
114
|
+
Object.defineProperty(exports, "useFormula", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function get() {
|
|
117
|
+
return _FormulaContext.useFormula;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "useFormulaDispatch", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: function get() {
|
|
123
|
+
return _FormulaContext.useFormulaDispatch;
|
|
124
|
+
}
|
|
125
|
+
});
|
|
102
126
|
Object.defineProperty(exports, "useOrderSession", {
|
|
103
127
|
enumerable: true,
|
|
104
128
|
get: function get() {
|
|
105
129
|
return _OrderSessionContext.useOrderSession;
|
|
106
130
|
}
|
|
107
131
|
});
|
|
132
|
+
var _BranchSelectorModal = _interopRequireDefault(require("./src/shared/__containers__/BranchSelectorModal.jsx"));
|
|
108
133
|
var _ActiveMarkerContext = require("./src/shared/__context__/ActiveMarkerContext.js");
|
|
109
134
|
var _CountryContext = require("./src/shared/__context__/CountryContext.js");
|
|
135
|
+
var _FormulaContext = require("./src/shared/__context__/FormulaContext.js");
|
|
110
136
|
var _OrderSessionContext = require("./src/shared/__context__/OrderSessionContext.js");
|
|
111
137
|
var _index = require("./src/shared/__pages__/internal/index.js");
|
|
112
138
|
var _mainModule = _interopRequireDefault(require("./src/shared/__style__/main.module.scss"));
|