@itcase/storybook-config 1.1.22 → 1.1.23
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/cjs/decorators.js +1 -1
- package/dist/decorators.js +1 -1
- package/package.json +1 -1
package/dist/cjs/decorators.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var React = require('react');
|
|
3
4
|
var Notifications = require('@itcase/ui/context/Notifications');
|
|
4
5
|
var UIContext = require('@itcase/ui/context/UIContext');
|
|
5
6
|
var index = require('./components/FormSubmitWrapper.js');
|
|
6
7
|
require('lodash/camelCase');
|
|
7
8
|
require('@itcase/common');
|
|
8
|
-
require('react');
|
|
9
9
|
|
|
10
10
|
function handleMSWParameters(parameters, args) {
|
|
11
11
|
var mswHandlersParams = {};
|
package/dist/decorators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { NotificationsProvider } from '@itcase/ui/context/Notifications';
|
|
2
3
|
import { UIProvider } from '@itcase/ui/context/UIContext';
|
|
3
4
|
import { FormSubmitWrapper } from './components/FormSubmitWrapper.js';
|
|
4
5
|
import 'lodash/camelCase';
|
|
5
6
|
import '@itcase/common';
|
|
6
|
-
import 'react';
|
|
7
7
|
|
|
8
8
|
function handleMSWParameters(parameters, args) {
|
|
9
9
|
var mswHandlersParams = {};
|