@plurid/plurid-ui-state-react 0.0.0-0 → 0.0.0-3

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.
@@ -1,491 +1,375 @@
1
- import { plurid } from '@plurid/plurid-themes';
1
+ import { plurid } from "@plurid/plurid-themes";
2
2
 
3
- const SET_HEAD = 'SET_HEAD';
4
- // #endregion module
3
+ const SET_HEAD = "SET_HEAD";
5
4
 
6
- var index = /*#__PURE__*/Object.freeze({
5
+ var index$9 = Object.freeze({
7
6
  __proto__: null,
8
7
  SET_HEAD: SET_HEAD
9
8
  });
10
9
 
11
- // #region imports
12
- // #endregion external
13
- // #endregion imports
14
- // #region module
15
- /**
16
- * Overwrite any property currently set in the `head`,
17
- * including `styles` and `scripts`, if any.
18
- *
19
- * @param payload
20
- */
21
- const setHead = (payload) => {
22
- return {
23
- type: SET_HEAD,
24
- payload,
25
- };
26
- };
27
- const actions = {
28
- setHead,
29
- };
30
- // #endregion exports
31
-
32
- // #endregion external
33
- // #endregion imports
34
- // #region module
35
- const initialState = {
36
- title: '',
37
- description: '',
38
- ogTitle: '',
39
- ogImage: '',
40
- ogURL: '',
41
- ogDescription: '',
42
- canonicalURL: '',
43
- styles: [],
44
- scripts: [],
45
- };
46
- // #endregion exports
47
-
48
- // #endregion external
49
- // #endregion imports
50
- // #region module
51
- const setHead$1 = (state, action) => {
52
- return Object.assign(Object.assign({}, state), action.payload);
53
- };
54
- const resolvers = {
55
- setHead: setHead$1,
56
- };
57
- // #endregion exports
58
-
59
- // #region imports
60
- // #endregion external
61
- // #endregion imports
62
- // #region module
63
- const reducer = (state = initialState, action) => {
64
- switch (action.type) {
65
- case SET_HEAD:
66
- return resolvers.setHead(state, action);
67
- default:
68
- return Object.assign({}, state);
69
- }
70
- };
71
- const metareducer = (initialState) => (state = initialState, action) => reducer(state, action);
72
- // #endregion exports
73
-
74
- // #endregion external
75
- // #endregion imports
76
- // #region module
77
- const getHeadData = (state) => state.head;
78
- const selectors = {
79
- getHeadData,
80
- };
81
- // #endregion exports
82
-
83
- // #region imports
84
- // #endregion exports
85
-
86
- var index$1 = /*#__PURE__*/Object.freeze({
10
+ const setHead$1 = payload => ({
11
+ type: SET_HEAD,
12
+ payload: payload
13
+ });
14
+
15
+ const actions$4 = {
16
+ setHead: setHead$1
17
+ };
18
+
19
+ const initialState$4 = {
20
+ title: "",
21
+ description: "",
22
+ ogTitle: "",
23
+ ogImage: "",
24
+ ogURL: "",
25
+ ogDescription: "",
26
+ canonicalURL: "",
27
+ styles: [],
28
+ scripts: []
29
+ };
30
+
31
+ const setHead = (state, action) => Object.assign(Object.assign({}, state), action.payload);
32
+
33
+ const resolvers$4 = {
34
+ setHead: setHead
35
+ };
36
+
37
+ const reducer$4 = (state = initialState$4, action) => {
38
+ switch (action.type) {
39
+ case SET_HEAD:
40
+ return resolvers$4.setHead(state, action);
41
+
42
+ default:
43
+ return Object.assign({}, state);
44
+ }
45
+ };
46
+
47
+ const metareducer$2 = initialState => (state = initialState, action) => reducer$4(state, action);
48
+
49
+ const getHeadData = state => state.head;
50
+
51
+ const selectors$4 = {
52
+ getHeadData: getHeadData
53
+ };
54
+
55
+ var index$8 = Object.freeze({
87
56
  __proto__: null,
88
- actions: actions,
89
- initialState: initialState,
90
- reducer: reducer,
91
- metareducer: metareducer,
92
- selectors: selectors,
93
- Types: index
57
+ actions: actions$4,
58
+ initialState: initialState$4,
59
+ reducer: reducer$4,
60
+ metareducer: metareducer$2,
61
+ selectors: selectors$4,
62
+ Types: index$9
94
63
  });
95
64
 
96
- const ADD_NOTIFICATION = 'ADD_NOTIFICATION';
97
- const UPDATE_NOTIFICATION = 'UPDATE_NOTIFICATION';
98
- const REMOVE_NOTIFICATION = 'REMOVE_NOTIFICATION';
99
- // #endregion module
65
+ const ADD_NOTIFICATION = "ADD_NOTIFICATION";
100
66
 
101
- var index$2 = /*#__PURE__*/Object.freeze({
67
+ const UPDATE_NOTIFICATION = "UPDATE_NOTIFICATION";
68
+
69
+ const REMOVE_NOTIFICATION = "REMOVE_NOTIFICATION";
70
+
71
+ var index$7 = Object.freeze({
102
72
  __proto__: null,
103
73
  ADD_NOTIFICATION: ADD_NOTIFICATION,
104
74
  UPDATE_NOTIFICATION: UPDATE_NOTIFICATION,
105
75
  REMOVE_NOTIFICATION: REMOVE_NOTIFICATION
106
76
  });
107
77
 
108
- // #region imports
109
- // #endregion external
110
- // #endregion imports
111
- // #region module
112
- const addNotification = (payload) => {
113
- return {
114
- type: ADD_NOTIFICATION,
115
- payload,
116
- };
117
- };
118
- const updateNotification = (payload) => {
119
- return {
120
- type: UPDATE_NOTIFICATION,
121
- payload,
122
- };
123
- };
124
- const removeNotification = (payload) => {
125
- return {
126
- type: REMOVE_NOTIFICATION,
127
- payload,
128
- };
129
- };
130
- const actions$1 = {
131
- addNotification,
132
- updateNotification,
133
- removeNotification,
134
- };
135
- // #endregion exports
136
-
137
- // #endregion external
138
- // #endregion imports
139
- // #region module
140
- const initialState$1 = [];
141
- // #endregion exports
142
-
143
- // #endregion external
144
- // #endregion imports
145
- // #region module
146
- const addNotification$1 = (state, action) => {
147
- const newNotification = Object.assign({}, action.payload);
148
- return [
149
- ...state,
150
- newNotification,
151
- ];
152
- };
153
- const updateNotification$1 = (state, action) => {
154
- const updatedState = state.map(notification => {
155
- if (notification.id === action.payload.id) {
156
- const newNotification = Object.assign({}, action.payload);
157
- return newNotification;
158
- }
159
- return Object.assign({}, notification);
160
- });
161
- return [
162
- ...updatedState,
163
- ];
164
- };
165
- const removeNotification$1 = (state, action) => {
166
- const updatedState = state.filter(notification => notification.id !== action.payload.id);
167
- return [
168
- ...updatedState,
169
- ];
170
- };
171
- const resolvers$1 = {
172
- addNotification: addNotification$1,
173
- updateNotification: updateNotification$1,
174
- removeNotification: removeNotification$1,
175
- };
176
- // #endregion exports
177
-
178
- // #region imports
179
- // #endregion external
180
- // #endregion imports
181
- // #region module
182
- const reducer$1 = (state = initialState$1, action) => {
183
- switch (action.type) {
184
- case ADD_NOTIFICATION:
185
- return resolvers$1.addNotification(state, action);
186
- case UPDATE_NOTIFICATION:
187
- return resolvers$1.updateNotification(state, action);
188
- case REMOVE_NOTIFICATION:
189
- return resolvers$1.removeNotification(state, action);
190
- default:
191
- return [
192
- ...state,
193
- ];
194
- }
195
- };
196
- // #endregion exports
197
-
198
- // #endregion external
199
- // #endregion imports
200
- // #region module
201
- const getAll = (state) => state.notifications;
202
- const selectors$1 = {
203
- getAll,
204
- };
205
- // #endregion exports
206
-
207
- // #region imports
208
- // #endregion exports
209
-
210
- var index$3 = /*#__PURE__*/Object.freeze({
78
+ const addNotification$1 = payload => ({
79
+ type: ADD_NOTIFICATION,
80
+ payload: payload
81
+ });
82
+
83
+ const updateNotification$1 = payload => ({
84
+ type: UPDATE_NOTIFICATION,
85
+ payload: payload
86
+ });
87
+
88
+ const removeNotification$1 = payload => ({
89
+ type: REMOVE_NOTIFICATION,
90
+ payload: payload
91
+ });
92
+
93
+ const actions$3 = {
94
+ addNotification: addNotification$1,
95
+ updateNotification: updateNotification$1,
96
+ removeNotification: removeNotification$1
97
+ };
98
+
99
+ const initialState$3 = [];
100
+
101
+ const addNotification = (state, action) => {
102
+ const newNotification = Object.assign({}, action.payload);
103
+ const existingNotification = state.find((notification => notification.id === newNotification.id));
104
+ if (existingNotification) {
105
+ const newState = state.map((notification => {
106
+ if (notification.id === newNotification.id) {
107
+ return newNotification;
108
+ }
109
+ return notification;
110
+ }));
111
+ return newState;
112
+ }
113
+ return [ ...state, newNotification ];
114
+ };
115
+
116
+ const updateNotification = (state, action) => {
117
+ const updatedState = state.map((notification => {
118
+ if (notification.id === action.payload.id) {
119
+ const newNotification = Object.assign({}, action.payload);
120
+ return newNotification;
121
+ }
122
+ return Object.assign({}, notification);
123
+ }));
124
+ return [ ...updatedState ];
125
+ };
126
+
127
+ const removeNotification = (state, action) => {
128
+ const updatedState = state.filter((notification => notification.id !== action.payload.id));
129
+ return [ ...updatedState ];
130
+ };
131
+
132
+ const resolvers$3 = {
133
+ addNotification: addNotification,
134
+ updateNotification: updateNotification,
135
+ removeNotification: removeNotification
136
+ };
137
+
138
+ const reducer$3 = (state = initialState$3, action) => {
139
+ switch (action.type) {
140
+ case ADD_NOTIFICATION:
141
+ return resolvers$3.addNotification(state, action);
142
+
143
+ case UPDATE_NOTIFICATION:
144
+ return resolvers$3.updateNotification(state, action);
145
+
146
+ case REMOVE_NOTIFICATION:
147
+ return resolvers$3.removeNotification(state, action);
148
+
149
+ default:
150
+ return [ ...state ];
151
+ }
152
+ };
153
+
154
+ const getAll = state => state.notifications;
155
+
156
+ const selectors$3 = {
157
+ getAll: getAll
158
+ };
159
+
160
+ var index$6 = Object.freeze({
211
161
  __proto__: null,
212
- actions: actions$1,
213
- initialState: initialState$1,
214
- reducer: reducer$1,
215
- selectors: selectors$1,
216
- Types: index$2
162
+ actions: actions$3,
163
+ initialState: initialState$3,
164
+ reducer: reducer$3,
165
+ selectors: selectors$3,
166
+ Types: index$7
217
167
  });
218
168
 
219
- // #region module
220
- const TOGGLE_GLOBAL_SHORTCUTS = 'TOGGLE_GLOBAL_SHORTCUTS';
221
- // #endregion module
169
+ const TOGGLE_GLOBAL_SHORTCUTS = "TOGGLE_GLOBAL_SHORTCUTS";
222
170
 
223
- var index$4 = /*#__PURE__*/Object.freeze({
171
+ var index$5 = Object.freeze({
224
172
  __proto__: null,
225
173
  TOGGLE_GLOBAL_SHORTCUTS: TOGGLE_GLOBAL_SHORTCUTS
226
174
  });
227
175
 
228
- // #region imports
229
- // #endregion external
230
- // #endregion imports
231
- // #region module
232
- const toggleGlobalShortcuts = (payload) => {
233
- return {
234
- type: TOGGLE_GLOBAL_SHORTCUTS,
235
- payload,
236
- };
237
- };
238
- const actions$2 = {
239
- toggleGlobalShortcuts,
240
- };
241
- // #endregion exports
242
-
243
- // #endregion external
244
- // #endregion imports
245
- // #region module
246
- const initialState$2 = {
247
- global: true,
248
- };
249
- // #endregion exports
250
-
251
- // #endregion external
252
- // #endregion imports
253
- // #region module
254
- const toggleGlobalShortcuts$1 = (state, action) => {
255
- const global = action.payload
256
- ? action.payload
257
- : !state.global;
258
- return Object.assign(Object.assign({}, state), { global });
259
- };
260
- const resolvers$2 = {
261
- toggleGlobalShortcuts: toggleGlobalShortcuts$1,
262
- };
263
- // #endregion exports
264
-
265
- // #region imports
266
- // #endregion external
267
- // #endregion imports
268
- // #region module
269
- const reducer$2 = (state = initialState$2, action) => {
270
- switch (action.type) {
271
- case TOGGLE_GLOBAL_SHORTCUTS:
272
- return resolvers$2.toggleGlobalShortcuts(state, action);
273
- default:
274
- return Object.assign({}, state);
275
- }
276
- };
277
- // #endregion exports
278
-
279
- // #endregion external
280
- // #endregion imports
281
- // #region module
282
- const getGlobal = (state) => state.shortcuts.global;
283
- const selectors$2 = {
284
- getGlobal,
285
- };
286
- // #endregion exports
287
-
288
- // #region imports
289
- // #endregion exports
290
-
291
- var index$5 = /*#__PURE__*/Object.freeze({
176
+ const toggleGlobalShortcuts$1 = payload => ({
177
+ type: TOGGLE_GLOBAL_SHORTCUTS,
178
+ payload: payload
179
+ });
180
+
181
+ const actions$2 = {
182
+ toggleGlobalShortcuts: toggleGlobalShortcuts$1
183
+ };
184
+
185
+ const initialState$2 = {
186
+ global: true
187
+ };
188
+
189
+ const toggleGlobalShortcuts = (state, action) => {
190
+ const global = action.payload ? action.payload : !state.global;
191
+ return Object.assign(Object.assign({}, state), {
192
+ global: global
193
+ });
194
+ };
195
+
196
+ const resolvers$2 = {
197
+ toggleGlobalShortcuts: toggleGlobalShortcuts
198
+ };
199
+
200
+ const reducer$2 = (state = initialState$2, action) => {
201
+ switch (action.type) {
202
+ case TOGGLE_GLOBAL_SHORTCUTS:
203
+ return resolvers$2.toggleGlobalShortcuts(state, action);
204
+
205
+ default:
206
+ return Object.assign({}, state);
207
+ }
208
+ };
209
+
210
+ const getGlobal = state => state.shortcuts.global;
211
+
212
+ const selectors$2 = {
213
+ getGlobal: getGlobal
214
+ };
215
+
216
+ var index$4 = Object.freeze({
292
217
  __proto__: null,
293
218
  actions: actions$2,
294
219
  initialState: initialState$2,
295
220
  reducer: reducer$2,
296
221
  selectors: selectors$2,
297
- Types: index$4
222
+ Types: index$5
298
223
  });
299
224
 
300
- // #region module
301
- const SET_SITTING_CURRENT_LINK = 'SET_SITTING_CURRENT_LINK';
302
- const TOGGLE_SITTING_TRAY = 'TOGGLE_SITTING_TRAY';
303
- // #endregion module
225
+ const SET_SITTING_CURRENT_LINK = "SET_SITTING_CURRENT_LINK";
304
226
 
305
- var index$6 = /*#__PURE__*/Object.freeze({
227
+ const TOGGLE_SITTING_TRAY = "TOGGLE_SITTING_TRAY";
228
+
229
+ var index$3 = Object.freeze({
306
230
  __proto__: null,
307
231
  SET_SITTING_CURRENT_LINK: SET_SITTING_CURRENT_LINK,
308
232
  TOGGLE_SITTING_TRAY: TOGGLE_SITTING_TRAY
309
233
  });
310
234
 
311
- // #region imports
312
- // #endregion external
313
- // #endregion imports
314
- // #region module
315
- const setSittingCurrentLink = (link) => {
316
- return {
317
- type: SET_SITTING_CURRENT_LINK,
318
- payload: link,
319
- };
320
- };
321
- const toggleSittingTray = () => {
322
- return {
323
- type: TOGGLE_SITTING_TRAY,
324
- };
325
- };
326
- const actions$3 = {
327
- setSittingCurrentLink,
328
- toggleSittingTray,
329
- };
330
- // #endregion exports
331
-
332
- // #endregion external
333
- // #endregion imports
334
- // #region module
335
- const initialState$3 = {
336
- currentLink: '',
337
- tray: false,
338
- };
339
- // #endregion exports
340
-
341
- // #endregion external
342
- // #endregion imports
343
- // #region module
344
- const setSittingCurrentLink$1 = (state, action) => {
345
- const currentLink = action.payload;
346
- return Object.assign(Object.assign({}, state), { currentLink });
347
- };
348
- const toggleSittingTray$1 = (state, action) => {
349
- if (typeof action.payload === 'boolean') {
350
- return Object.assign(Object.assign({}, state), { tray: action.payload });
351
- }
352
- return Object.assign(Object.assign({}, state), { tray: !state.tray });
353
- };
354
- const resolvers$3 = {
355
- setSittingCurrentLink: setSittingCurrentLink$1,
356
- toggleSittingTray: toggleSittingTray$1,
357
- };
358
- // #endregion exports
359
-
360
- // #region imports
361
- // #endregion external
362
- // #endregion imports
363
- // #region module
364
- const reducer$3 = (state = initialState$3, action) => {
365
- switch (action.type) {
366
- case SET_SITTING_CURRENT_LINK:
367
- return resolvers$3.setSittingCurrentLink(state, action);
368
- case TOGGLE_SITTING_TRAY:
369
- return resolvers$3.toggleSittingTray(state, action);
370
- default:
371
- return Object.assign({}, state);
372
- }
373
- };
374
- const metareducer$1 = (initialState) => (state = initialState, action) => reducer$3(state, action);
375
- // #endregion exports
376
-
377
- // #endregion external
378
- // #endregion imports
379
- // #region module
380
- const getCurrentLink = (state) => state.sitting.currentLink;
381
- const getTray = (state) => state.sitting.tray;
382
- const selectors$3 = {
383
- getCurrentLink,
384
- getTray,
385
- };
386
- // #endregion exports
387
-
388
- // #region imports
389
- // #endregion exports
390
-
391
- var index$7 = /*#__PURE__*/Object.freeze({
235
+ const setSittingCurrentLink$1 = link => ({
236
+ type: SET_SITTING_CURRENT_LINK,
237
+ payload: link
238
+ });
239
+
240
+ const toggleSittingTray$1 = () => ({
241
+ type: TOGGLE_SITTING_TRAY
242
+ });
243
+
244
+ const actions$1 = {
245
+ setSittingCurrentLink: setSittingCurrentLink$1,
246
+ toggleSittingTray: toggleSittingTray$1
247
+ };
248
+
249
+ const initialState$1 = {
250
+ currentLink: "",
251
+ tray: false
252
+ };
253
+
254
+ const setSittingCurrentLink = (state, action) => {
255
+ const currentLink = action.payload;
256
+ return Object.assign(Object.assign({}, state), {
257
+ currentLink: currentLink
258
+ });
259
+ };
260
+
261
+ const toggleSittingTray = (state, action) => {
262
+ if (typeof action.payload === "boolean") {
263
+ return Object.assign(Object.assign({}, state), {
264
+ tray: action.payload
265
+ });
266
+ }
267
+ return Object.assign(Object.assign({}, state), {
268
+ tray: !state.tray
269
+ });
270
+ };
271
+
272
+ const resolvers$1 = {
273
+ setSittingCurrentLink: setSittingCurrentLink,
274
+ toggleSittingTray: toggleSittingTray
275
+ };
276
+
277
+ const reducer$1 = (state = initialState$1, action) => {
278
+ switch (action.type) {
279
+ case SET_SITTING_CURRENT_LINK:
280
+ return resolvers$1.setSittingCurrentLink(state, action);
281
+
282
+ case TOGGLE_SITTING_TRAY:
283
+ return resolvers$1.toggleSittingTray(state, action);
284
+
285
+ default:
286
+ return Object.assign({}, state);
287
+ }
288
+ };
289
+
290
+ const metareducer$1 = initialState => (state = initialState, action) => reducer$1(state, action);
291
+
292
+ const getCurrentLink = state => state.sitting.currentLink;
293
+
294
+ const getTray = state => state.sitting.tray;
295
+
296
+ const selectors$1 = {
297
+ getCurrentLink: getCurrentLink,
298
+ getTray: getTray
299
+ };
300
+
301
+ var index$2 = Object.freeze({
392
302
  __proto__: null,
393
- actions: actions$3,
394
- initialState: initialState$3,
395
- reducer: reducer$3,
303
+ actions: actions$1,
304
+ initialState: initialState$1,
305
+ reducer: reducer$1,
396
306
  metareducer: metareducer$1,
397
- selectors: selectors$3,
398
- Types: index$6
307
+ selectors: selectors$1,
308
+ Types: index$3
399
309
  });
400
310
 
401
- // #endregion libraries
402
- // #endregion imports
403
- // #region module
404
- const SET_THEME = 'SET_THEME';
405
- // #endregion module
311
+ const SET_THEME = "SET_THEME";
406
312
 
407
- var index$8 = /*#__PURE__*/Object.freeze({
313
+ var index$1 = Object.freeze({
408
314
  __proto__: null,
409
315
  SET_THEME: SET_THEME
410
316
  });
411
317
 
412
- // #region imports
413
- // #endregion external
414
- // #endregion imports
415
- // #region module
416
- const setTheme = (payload) => {
417
- return {
418
- type: SET_THEME,
419
- payload,
420
- };
421
- };
422
- const actions$4 = {
423
- setTheme,
424
- };
425
- // #endregion exports
426
-
427
- // #region imports
428
- // #endregion external
429
- // #endregion imports
430
- // #region module
431
- const initialState$4 = {
432
- general: Object.assign({}, plurid),
433
- interaction: Object.assign({}, plurid),
434
- };
435
- // #endregion exports
436
-
437
- // #endregion external
438
- // #endregion imports
439
- // #region module
440
- const setTheme$1 = (state, action) => {
441
- const { type, theme, } = action.payload;
442
- const newState = Object.assign({}, state);
443
- newState[type] = Object.assign({}, theme);
444
- return newState;
445
- };
446
- const resolvers$4 = {
447
- setTheme: setTheme$1,
448
- };
449
- // #endregion exports
450
-
451
- // #region imports
452
- // #endregion external
453
- // #endregion imports
454
- // #region module
455
- const reducer$4 = (state = initialState$4, action) => {
456
- switch (action.type) {
457
- case SET_THEME:
458
- return resolvers$4.setTheme(state, action);
459
- default:
460
- return Object.assign({}, state);
461
- }
462
- };
463
- const metareducer$2 = (initialState) => (state = initialState, action) => reducer$4(state, action);
464
- // #endregion exports
465
-
466
- // #endregion external
467
- // #endregion imports
468
- // #region module
469
- const getGeneralTheme = (state) => state.themes.general;
470
- const getInteractionTheme = (state) => state.themes.interaction;
471
- const selectors$4 = {
472
- getGeneralTheme,
473
- getInteractionTheme,
474
- };
475
- // #endregion exports
476
-
477
- // #region imports
478
- // #endregion exports
479
-
480
- var index$9 = /*#__PURE__*/Object.freeze({
318
+ const setTheme$1 = payload => ({
319
+ type: SET_THEME,
320
+ payload: payload
321
+ });
322
+
323
+ const actions = {
324
+ setTheme: setTheme$1
325
+ };
326
+
327
+ const initialState = {
328
+ general: Object.assign({}, plurid),
329
+ interaction: Object.assign({}, plurid)
330
+ };
331
+
332
+ const setTheme = (state, action) => {
333
+ const {type: type, theme: theme} = action.payload;
334
+ const newState = Object.assign({}, state);
335
+ newState[type] = Object.assign({}, theme);
336
+ return newState;
337
+ };
338
+
339
+ const resolvers = {
340
+ setTheme: setTheme
341
+ };
342
+
343
+ const reducer = (state = initialState, action) => {
344
+ switch (action.type) {
345
+ case SET_THEME:
346
+ return resolvers.setTheme(state, action);
347
+
348
+ default:
349
+ return Object.assign({}, state);
350
+ }
351
+ };
352
+
353
+ const metareducer = initialState => (state = initialState, action) => reducer(state, action);
354
+
355
+ const getGeneralTheme = state => state.themes.general;
356
+
357
+ const getInteractionTheme = state => state.themes.interaction;
358
+
359
+ const selectors = {
360
+ getGeneralTheme: getGeneralTheme,
361
+ getInteractionTheme: getInteractionTheme
362
+ };
363
+
364
+ var index = Object.freeze({
481
365
  __proto__: null,
482
- actions: actions$4,
483
- initialState: initialState$4,
484
- reducer: reducer$4,
485
- metareducer: metareducer$2,
486
- selectors: selectors$4,
487
- Types: index$8
366
+ actions: actions,
367
+ initialState: initialState,
368
+ reducer: reducer,
369
+ metareducer: metareducer,
370
+ selectors: selectors,
371
+ Types: index$1
488
372
  });
489
373
 
490
- export { index$1 as head, index$3 as notifications, index$5 as shortcuts, index$7 as sitting, index$9 as themes };
374
+ export { index$8 as head, index$6 as notifications, index$4 as shortcuts, index$2 as sitting, index as themes };
491
375
  //# sourceMappingURL=index.es.js.map