@plurid/plurid-react 0.0.0-33 → 0.0.0-34
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/distribution/containers/Application/index.d.ts +2 -5
- package/distribution/index.es.js +3 -6
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +3 -6
- package/distribution/index.js.map +1 -1
- package/distribution/index.min.js +2 -4
- package/distribution/index.min.js.map +1 -1
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -50,8 +50,6 @@ var styled__default = _interopDefault(styled);
|
|
|
50
50
|
|
|
51
51
|
var fetch__default = _interopDefault(fetch);
|
|
52
52
|
|
|
53
|
-
const PluridContext = React__default.default.createContext(undefined);
|
|
54
|
-
|
|
55
53
|
const initialState$5 = Object.assign({}, pluridData.defaultConfiguration);
|
|
56
54
|
|
|
57
55
|
const configuration = toolkit.createSlice({
|
|
@@ -4940,10 +4938,9 @@ const ConnectedPluridView = reactRedux.connect(mapStateToProperties$7, mapDispat
|
|
|
4940
4938
|
})(PluridView);
|
|
4941
4939
|
|
|
4942
4940
|
class PluridApplication extends React.Component {
|
|
4943
|
-
constructor(properties
|
|
4941
|
+
constructor(properties) {
|
|
4944
4942
|
super(properties);
|
|
4945
4943
|
this.storeID = properties.id || "default";
|
|
4946
|
-
this.context = context;
|
|
4947
4944
|
this.prepare();
|
|
4948
4945
|
this.store = store(this.computeStore());
|
|
4949
4946
|
this.subscribeStore();
|
|
@@ -4998,8 +4995,6 @@ class PluridApplication extends React.Component {
|
|
|
4998
4995
|
}
|
|
4999
4996
|
}
|
|
5000
4997
|
|
|
5001
|
-
PluridApplication.contextType = PluridContext;
|
|
5002
|
-
|
|
5003
4998
|
const StyledSpaces = styled__default.default.div`
|
|
5004
4999
|
scroll-snap-type: ${properties => {
|
|
5005
5000
|
const {alignment: alignment, snapType: snapType} = properties;
|
|
@@ -5591,6 +5586,8 @@ const PluridRouterStatic = properties => {
|
|
|
5591
5586
|
}, routerProperties));
|
|
5592
5587
|
};
|
|
5593
5588
|
|
|
5589
|
+
const PluridContext = React__default.default.createContext(undefined);
|
|
5590
|
+
|
|
5594
5591
|
class PluridProvider extends React.Component {
|
|
5595
5592
|
constructor(properties) {
|
|
5596
5593
|
super(properties);
|