@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
|
@@ -105,7 +105,6 @@ var distribution = {};
|
|
|
105
105
|
var themes__default = _interopDefault(themes$2);
|
|
106
106
|
var styled__default = _interopDefault(styled);
|
|
107
107
|
var fetch__default = _interopDefault(fetch);
|
|
108
|
-
const PluridContext = React__default.default.createContext(undefined);
|
|
109
108
|
const initialState$5 = Object.assign({}, pluridData.defaultConfiguration);
|
|
110
109
|
const configuration = toolkit.createSlice({
|
|
111
110
|
name: "configuration",
|
|
@@ -4711,10 +4710,9 @@ var distribution = {};
|
|
|
4711
4710
|
context: StateContext
|
|
4712
4711
|
})(PluridView);
|
|
4713
4712
|
class PluridApplication extends React.Component {
|
|
4714
|
-
constructor(properties
|
|
4713
|
+
constructor(properties) {
|
|
4715
4714
|
super(properties);
|
|
4716
4715
|
this.storeID = properties.id || "default";
|
|
4717
|
-
this.context = context;
|
|
4718
4716
|
this.prepare();
|
|
4719
4717
|
this.store = store(this.computeStore());
|
|
4720
4718
|
this.subscribeStore();
|
|
@@ -4768,7 +4766,6 @@ var distribution = {};
|
|
|
4768
4766
|
}));
|
|
4769
4767
|
}
|
|
4770
4768
|
}
|
|
4771
|
-
PluridApplication.contextType = PluridContext;
|
|
4772
4769
|
const StyledSpaces = styled__default.default.div`
|
|
4773
4770
|
scroll-snap-type: ${properties => {
|
|
4774
4771
|
const {alignment: alignment, snapType: snapType} = properties;
|
|
@@ -5347,6 +5344,7 @@ var distribution = {};
|
|
|
5347
5344
|
hostname: hostname
|
|
5348
5345
|
}, routerProperties));
|
|
5349
5346
|
};
|
|
5347
|
+
const PluridContext = React__default.default.createContext(undefined);
|
|
5350
5348
|
class PluridProvider extends React.Component {
|
|
5351
5349
|
constructor(properties) {
|
|
5352
5350
|
super(properties);
|