@zimbra/zimlet-cli 16.0.0 → 16.1.0
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/commands/create.js +4 -8
- package/dist/commands/package.js +1 -2
- package/dist/index.js +2 -2
- package/dist/shims/@apollo/client/index.js +65 -117
- package/dist/shims/@apollo/client/react/components/index.js +4 -8
- package/dist/shims/@apollo/client/react/hoc/index.js +6 -12
- package/dist/shims/@apollo/client/react/index.js +14 -28
- package/dist/shims/@zimbra-client/blocks/index.js +26 -52
- package/dist/shims/@zimbra-client/browser/index.js +2 -4
- package/dist/shims/@zimbra-client/components/index.js +52 -104
- package/dist/shims/@zimbra-client/constants/index.js +5 -10
- package/dist/shims/@zimbra-client/enhancers/index.js +8 -16
- package/dist/shims/@zimbra-client/errors/index.js +3 -6
- package/dist/shims/@zimbra-client/graphql/index.js +30 -60
- package/dist/shims/@zimbra-client/hooks/graphql/index.js +6 -12
- package/dist/shims/@zimbra-client/hooks/index.js +6 -12
- package/dist/shims/@zimbra-client/platform/index.js +3 -6
- package/dist/shims/@zimbra-client/util/contacts/index.js +2 -4
- package/dist/shims/@zimbra-client/util/index.js +12 -24
- package/dist/shims/@zimbra-client/util/redux/index.js +6 -12
- package/dist/shims/dompurify/index.js +4 -8
- package/dist/shims/moment/index.js +41 -82
- package/dist/shims/preact/compat/index.js +46 -87
- package/dist/shims/preact/hooks/index.js +13 -26
- package/dist/shims/preact/index.js +13 -26
- package/dist/shims/preact/jsx-runtime/index.js +5 -10
- package/dist/shims/preact-context-provider/index.js +4 -8
- package/dist/shims/preact-i18n/index.js +10 -20
- package/dist/shims/preact-pwa-install/index.js +1 -2
- package/dist/shims/preact-render-to-string/index.js +3 -6
- package/dist/shims/preact-router/index.js +7 -14
- package/dist/shims/preact-router/match/index.js +2 -4
- package/dist/shims/react-redux/index.js +12 -24
- package/dist/shims/recompose/index.js +44 -88
- package/dist/shims/redux-actions/index.js +7 -14
- package/package-lock.json +3007 -4112
- package/package.json +1 -1
|
@@ -13,29 +13,16 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact/hooks'], 'preact/hooks');
|
|
16
|
-
const useCallback = wrap('useCallback');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
|
|
29
|
-
exports.useImperativeHandle = useImperativeHandle;
|
|
30
|
-
const useLayoutEffect = wrap('useLayoutEffect');
|
|
31
|
-
exports.useLayoutEffect = useLayoutEffect;
|
|
32
|
-
const useMemo = wrap('useMemo');
|
|
33
|
-
exports.useMemo = useMemo;
|
|
34
|
-
const useReducer = wrap('useReducer');
|
|
35
|
-
exports.useReducer = useReducer;
|
|
36
|
-
const useRef = wrap('useRef');
|
|
37
|
-
exports.useRef = useRef;
|
|
38
|
-
const useState = wrap('useState');
|
|
39
|
-
exports.useState = useState;
|
|
40
|
-
var _default = global.shims['preact/hooks'];
|
|
41
|
-
exports.default = _default;
|
|
16
|
+
const useCallback = exports.useCallback = wrap('useCallback');
|
|
17
|
+
const useContext = exports.useContext = wrap('useContext');
|
|
18
|
+
const useDebugValue = exports.useDebugValue = wrap('useDebugValue');
|
|
19
|
+
const useEffect = exports.useEffect = wrap('useEffect');
|
|
20
|
+
const useErrorBoundary = exports.useErrorBoundary = wrap('useErrorBoundary');
|
|
21
|
+
const useId = exports.useId = wrap('useId');
|
|
22
|
+
const useImperativeHandle = exports.useImperativeHandle = wrap('useImperativeHandle');
|
|
23
|
+
const useLayoutEffect = exports.useLayoutEffect = wrap('useLayoutEffect');
|
|
24
|
+
const useMemo = exports.useMemo = wrap('useMemo');
|
|
25
|
+
const useReducer = exports.useReducer = wrap('useReducer');
|
|
26
|
+
const useRef = exports.useRef = wrap('useRef');
|
|
27
|
+
const useState = exports.useState = wrap('useState');
|
|
28
|
+
var _default = exports.default = global.shims['preact/hooks'];
|
|
@@ -13,29 +13,16 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact'], 'preact');
|
|
16
|
-
const Component = wrap('Component');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
|
|
29
|
-
exports.h = h;
|
|
30
|
-
const hydrate = wrap('hydrate');
|
|
31
|
-
exports.hydrate = hydrate;
|
|
32
|
-
const isValidElement = wrap('isValidElement');
|
|
33
|
-
exports.isValidElement = isValidElement;
|
|
34
|
-
const options = wrap('options');
|
|
35
|
-
exports.options = options;
|
|
36
|
-
const render = wrap('render');
|
|
37
|
-
exports.render = render;
|
|
38
|
-
const toChildArray = wrap('toChildArray');
|
|
39
|
-
exports.toChildArray = toChildArray;
|
|
40
|
-
var _default = global.shims['preact'];
|
|
41
|
-
exports.default = _default;
|
|
16
|
+
const Component = exports.Component = wrap('Component');
|
|
17
|
+
const Fragment = exports.Fragment = wrap('Fragment');
|
|
18
|
+
const cloneElement = exports.cloneElement = wrap('cloneElement');
|
|
19
|
+
const createContext = exports.createContext = wrap('createContext');
|
|
20
|
+
const createElement = exports.createElement = wrap('createElement');
|
|
21
|
+
const createRef = exports.createRef = wrap('createRef');
|
|
22
|
+
const h = exports.h = wrap('h');
|
|
23
|
+
const hydrate = exports.hydrate = wrap('hydrate');
|
|
24
|
+
const isValidElement = exports.isValidElement = wrap('isValidElement');
|
|
25
|
+
const options = exports.options = wrap('options');
|
|
26
|
+
const render = exports.render = wrap('render');
|
|
27
|
+
const toChildArray = exports.toChildArray = wrap('toChildArray');
|
|
28
|
+
var _default = exports.default = global.shims['preact'];
|
|
@@ -13,13 +13,8 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact/jsx-runtime'], 'preact/jsx-runtime');
|
|
16
|
-
const Fragment = wrap('Fragment');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
|
|
21
|
-
exports.jsxDEV = jsxDEV;
|
|
22
|
-
const jsxs = wrap('jsxs');
|
|
23
|
-
exports.jsxs = jsxs;
|
|
24
|
-
var _default = global.shims['preact/jsx-runtime'];
|
|
25
|
-
exports.default = _default;
|
|
16
|
+
const Fragment = exports.Fragment = wrap('Fragment');
|
|
17
|
+
const jsx = exports.jsx = wrap('jsx');
|
|
18
|
+
const jsxDEV = exports.jsxDEV = wrap('jsxDEV');
|
|
19
|
+
const jsxs = exports.jsxs = wrap('jsxs');
|
|
20
|
+
var _default = exports.default = global.shims['preact/jsx-runtime'];
|
|
@@ -13,11 +13,7 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-context-provider'], 'preact-context-provider');
|
|
16
|
-
const MergingProvider = wrap('MergingProvider');
|
|
17
|
-
exports.
|
|
18
|
-
|
|
19
|
-
exports.
|
|
20
|
-
const mergingProvide = wrap('mergingProvide');
|
|
21
|
-
exports.mergingProvide = mergingProvide;
|
|
22
|
-
const provide = wrap('provide');
|
|
23
|
-
exports.provide = provide;
|
|
16
|
+
const MergingProvider = exports.MergingProvider = wrap('MergingProvider');
|
|
17
|
+
var _default = exports.default = wrap('default');
|
|
18
|
+
const mergingProvide = exports.mergingProvide = wrap('mergingProvide');
|
|
19
|
+
const provide = exports.provide = wrap('provide');
|
|
@@ -13,23 +13,13 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-i18n'], 'preact-i18n');
|
|
16
|
-
const IntlContext = wrap('IntlContext');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
var _default = wrap('default');
|
|
27
|
-
exports.default = _default;
|
|
28
|
-
const intl = wrap('intl');
|
|
29
|
-
exports.intl = intl;
|
|
30
|
-
const translate = wrap('translate');
|
|
31
|
-
exports.translate = translate;
|
|
32
|
-
const useText = wrap('useText');
|
|
33
|
-
exports.useText = useText;
|
|
34
|
-
const withText = wrap('withText');
|
|
35
|
-
exports.withText = withText;
|
|
16
|
+
const IntlContext = exports.IntlContext = wrap('IntlContext');
|
|
17
|
+
const IntlProvider = exports.IntlProvider = wrap('IntlProvider');
|
|
18
|
+
const Localizer = exports.Localizer = wrap('Localizer');
|
|
19
|
+
const MarkupText = exports.MarkupText = wrap('MarkupText');
|
|
20
|
+
const Text = exports.Text = wrap('Text');
|
|
21
|
+
var _default = exports.default = wrap('default');
|
|
22
|
+
const intl = exports.intl = wrap('intl');
|
|
23
|
+
const translate = exports.translate = wrap('translate');
|
|
24
|
+
const useText = exports.useText = wrap('useText');
|
|
25
|
+
const withText = exports.withText = wrap('withText');
|
|
@@ -13,6 +13,5 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-pwa-install'], 'preact-pwa-install');
|
|
16
|
-
var _default = wrap('default');
|
|
17
|
-
exports.default = _default;
|
|
16
|
+
var _default = exports.default = wrap('default');
|
|
18
17
|
module.exports = exports.default;
|
|
@@ -13,9 +13,6 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-render-to-string'], 'preact-render-to-string');
|
|
16
|
-
const render = wrap('render');
|
|
17
|
-
exports.
|
|
18
|
-
|
|
19
|
-
exports.shallowRender = shallowRender;
|
|
20
|
-
var _default = global.shims['preact-render-to-string'];
|
|
21
|
-
exports.default = _default;
|
|
16
|
+
const render = exports.render = wrap('render');
|
|
17
|
+
const shallowRender = exports.shallowRender = wrap('shallowRender');
|
|
18
|
+
var _default = exports.default = global.shims['preact-render-to-string'];
|
|
@@ -13,17 +13,10 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-router'], 'preact-router');
|
|
16
|
-
const subscribers = wrap('subscribers');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
|
|
23
|
-
exports.Router = Router;
|
|
24
|
-
const Route = wrap('Route');
|
|
25
|
-
exports.Route = Route;
|
|
26
|
-
const Link = wrap('Link');
|
|
27
|
-
exports.Link = Link;
|
|
28
|
-
var _default = global.shims['preact-router'];
|
|
29
|
-
exports.default = _default;
|
|
16
|
+
const subscribers = exports.subscribers = wrap('subscribers');
|
|
17
|
+
const getCurrentUrl = exports.getCurrentUrl = wrap('getCurrentUrl');
|
|
18
|
+
const route = exports.route = wrap('route');
|
|
19
|
+
const Router = exports.Router = wrap('Router');
|
|
20
|
+
const Route = exports.Route = wrap('Route');
|
|
21
|
+
const Link = exports.Link = wrap('Link');
|
|
22
|
+
var _default = exports.default = global.shims['preact-router'];
|
|
@@ -13,7 +13,5 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact-router/match'], 'preact-router/match');
|
|
16
|
-
const Match = wrap('Match');
|
|
17
|
-
exports.
|
|
18
|
-
var _default = global.shims['preact-router/match'];
|
|
19
|
-
exports.default = _default;
|
|
16
|
+
const Match = exports.Match = wrap('Match');
|
|
17
|
+
var _default = exports.default = global.shims['preact-router/match'];
|
|
@@ -13,27 +13,15 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['react-redux'], 'react-redux');
|
|
16
|
-
const batch = wrap('batch');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
const useSelector = wrap('useSelector');
|
|
29
|
-
exports.useSelector = useSelector;
|
|
30
|
-
const createSelectorHook = wrap('createSelectorHook');
|
|
31
|
-
exports.createSelectorHook = createSelectorHook;
|
|
32
|
-
const useStore = wrap('useStore');
|
|
33
|
-
exports.useStore = useStore;
|
|
34
|
-
const createStoreHook = wrap('createStoreHook');
|
|
35
|
-
exports.createStoreHook = createStoreHook;
|
|
36
|
-
const shallowEqual = wrap('shallowEqual');
|
|
37
|
-
exports.shallowEqual = shallowEqual;
|
|
38
|
-
var _default = global.shims['react-redux'];
|
|
39
|
-
exports.default = _default;
|
|
16
|
+
const batch = exports.batch = wrap('batch');
|
|
17
|
+
const Provider = exports.Provider = wrap('Provider');
|
|
18
|
+
const connect = exports.connect = wrap('connect');
|
|
19
|
+
const ReactReduxContext = exports.ReactReduxContext = wrap('ReactReduxContext');
|
|
20
|
+
const useDispatch = exports.useDispatch = wrap('useDispatch');
|
|
21
|
+
const createDispatchHook = exports.createDispatchHook = wrap('createDispatchHook');
|
|
22
|
+
const useSelector = exports.useSelector = wrap('useSelector');
|
|
23
|
+
const createSelectorHook = exports.createSelectorHook = wrap('createSelectorHook');
|
|
24
|
+
const useStore = exports.useStore = wrap('useStore');
|
|
25
|
+
const createStoreHook = exports.createStoreHook = wrap('createStoreHook');
|
|
26
|
+
const shallowEqual = exports.shallowEqual = wrap('shallowEqual');
|
|
27
|
+
var _default = exports.default = global.shims['react-redux'];
|
|
@@ -13,91 +13,47 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['recompose'], 'recompose');
|
|
16
|
-
const mapProps = wrap('mapProps');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
const
|
|
29
|
-
exports.
|
|
30
|
-
const
|
|
31
|
-
exports.
|
|
32
|
-
const
|
|
33
|
-
exports.
|
|
34
|
-
const
|
|
35
|
-
exports.
|
|
36
|
-
const
|
|
37
|
-
exports.
|
|
38
|
-
const
|
|
39
|
-
exports.
|
|
40
|
-
const
|
|
41
|
-
exports.
|
|
42
|
-
const
|
|
43
|
-
exports.
|
|
44
|
-
const
|
|
45
|
-
exports.
|
|
46
|
-
const
|
|
47
|
-
exports.
|
|
48
|
-
const
|
|
49
|
-
exports.
|
|
50
|
-
const
|
|
51
|
-
exports.
|
|
52
|
-
const
|
|
53
|
-
exports.
|
|
54
|
-
const
|
|
55
|
-
exports.
|
|
56
|
-
const
|
|
57
|
-
exports.
|
|
58
|
-
const
|
|
59
|
-
exports.
|
|
60
|
-
const toRenderProps = wrap('toRenderProps');
|
|
61
|
-
exports.toRenderProps = toRenderProps;
|
|
62
|
-
const fromRenderProps = wrap('fromRenderProps');
|
|
63
|
-
exports.fromRenderProps = fromRenderProps;
|
|
64
|
-
const setStatic = wrap('setStatic');
|
|
65
|
-
exports.setStatic = setStatic;
|
|
66
|
-
const setPropTypes = wrap('setPropTypes');
|
|
67
|
-
exports.setPropTypes = setPropTypes;
|
|
68
|
-
const setDisplayName = wrap('setDisplayName');
|
|
69
|
-
exports.setDisplayName = setDisplayName;
|
|
70
|
-
const compose = wrap('compose');
|
|
71
|
-
exports.compose = compose;
|
|
72
|
-
const getDisplayName = wrap('getDisplayName');
|
|
73
|
-
exports.getDisplayName = getDisplayName;
|
|
74
|
-
const wrapDisplayName = wrap('wrapDisplayName');
|
|
75
|
-
exports.wrapDisplayName = wrapDisplayName;
|
|
76
|
-
const shallowEqual = wrap('shallowEqual');
|
|
77
|
-
exports.shallowEqual = shallowEqual;
|
|
78
|
-
const isClassComponent = wrap('isClassComponent');
|
|
79
|
-
exports.isClassComponent = isClassComponent;
|
|
80
|
-
const createSink = wrap('createSink');
|
|
81
|
-
exports.createSink = createSink;
|
|
82
|
-
const componentFromProp = wrap('componentFromProp');
|
|
83
|
-
exports.componentFromProp = componentFromProp;
|
|
84
|
-
const nest = wrap('nest');
|
|
85
|
-
exports.nest = nest;
|
|
86
|
-
const hoistStatics = wrap('hoistStatics');
|
|
87
|
-
exports.hoistStatics = hoistStatics;
|
|
88
|
-
const componentFromStream = wrap('componentFromStream');
|
|
89
|
-
exports.componentFromStream = componentFromStream;
|
|
90
|
-
const componentFromStreamWithConfig = wrap('componentFromStreamWithConfig');
|
|
91
|
-
exports.componentFromStreamWithConfig = componentFromStreamWithConfig;
|
|
92
|
-
const mapPropsStream = wrap('mapPropsStream');
|
|
93
|
-
exports.mapPropsStream = mapPropsStream;
|
|
94
|
-
const mapPropsStreamWithConfig = wrap('mapPropsStreamWithConfig');
|
|
95
|
-
exports.mapPropsStreamWithConfig = mapPropsStreamWithConfig;
|
|
96
|
-
const createEventHandler = wrap('createEventHandler');
|
|
97
|
-
exports.createEventHandler = createEventHandler;
|
|
98
|
-
const createEventHandlerWithConfig = wrap('createEventHandlerWithConfig');
|
|
99
|
-
exports.createEventHandlerWithConfig = createEventHandlerWithConfig;
|
|
100
|
-
const setObservableConfig = wrap('setObservableConfig');
|
|
101
|
-
exports.setObservableConfig = setObservableConfig;
|
|
102
|
-
var _default = global.shims['recompose'];
|
|
103
|
-
exports.default = _default;
|
|
16
|
+
const mapProps = exports.mapProps = wrap('mapProps');
|
|
17
|
+
const withProps = exports.withProps = wrap('withProps');
|
|
18
|
+
const withPropsOnChange = exports.withPropsOnChange = wrap('withPropsOnChange');
|
|
19
|
+
const withHandlers = exports.withHandlers = wrap('withHandlers');
|
|
20
|
+
const defaultProps = exports.defaultProps = wrap('defaultProps');
|
|
21
|
+
const renameProp = exports.renameProp = wrap('renameProp');
|
|
22
|
+
const renameProps = exports.renameProps = wrap('renameProps');
|
|
23
|
+
const flattenProp = exports.flattenProp = wrap('flattenProp');
|
|
24
|
+
const withState = exports.withState = wrap('withState');
|
|
25
|
+
const withStateHandlers = exports.withStateHandlers = wrap('withStateHandlers');
|
|
26
|
+
const withReducer = exports.withReducer = wrap('withReducer');
|
|
27
|
+
const branch = exports.branch = wrap('branch');
|
|
28
|
+
const renderComponent = exports.renderComponent = wrap('renderComponent');
|
|
29
|
+
const renderNothing = exports.renderNothing = wrap('renderNothing');
|
|
30
|
+
const shouldUpdate = exports.shouldUpdate = wrap('shouldUpdate');
|
|
31
|
+
const pure = exports.pure = wrap('pure');
|
|
32
|
+
const onlyUpdateForKeys = exports.onlyUpdateForKeys = wrap('onlyUpdateForKeys');
|
|
33
|
+
const onlyUpdateForPropTypes = exports.onlyUpdateForPropTypes = wrap('onlyUpdateForPropTypes');
|
|
34
|
+
const withContext = exports.withContext = wrap('withContext');
|
|
35
|
+
const getContext = exports.getContext = wrap('getContext');
|
|
36
|
+
const lifecycle = exports.lifecycle = wrap('lifecycle');
|
|
37
|
+
const toClass = exports.toClass = wrap('toClass');
|
|
38
|
+
const toRenderProps = exports.toRenderProps = wrap('toRenderProps');
|
|
39
|
+
const fromRenderProps = exports.fromRenderProps = wrap('fromRenderProps');
|
|
40
|
+
const setStatic = exports.setStatic = wrap('setStatic');
|
|
41
|
+
const setPropTypes = exports.setPropTypes = wrap('setPropTypes');
|
|
42
|
+
const setDisplayName = exports.setDisplayName = wrap('setDisplayName');
|
|
43
|
+
const compose = exports.compose = wrap('compose');
|
|
44
|
+
const getDisplayName = exports.getDisplayName = wrap('getDisplayName');
|
|
45
|
+
const wrapDisplayName = exports.wrapDisplayName = wrap('wrapDisplayName');
|
|
46
|
+
const shallowEqual = exports.shallowEqual = wrap('shallowEqual');
|
|
47
|
+
const isClassComponent = exports.isClassComponent = wrap('isClassComponent');
|
|
48
|
+
const createSink = exports.createSink = wrap('createSink');
|
|
49
|
+
const componentFromProp = exports.componentFromProp = wrap('componentFromProp');
|
|
50
|
+
const nest = exports.nest = wrap('nest');
|
|
51
|
+
const hoistStatics = exports.hoistStatics = wrap('hoistStatics');
|
|
52
|
+
const componentFromStream = exports.componentFromStream = wrap('componentFromStream');
|
|
53
|
+
const componentFromStreamWithConfig = exports.componentFromStreamWithConfig = wrap('componentFromStreamWithConfig');
|
|
54
|
+
const mapPropsStream = exports.mapPropsStream = wrap('mapPropsStream');
|
|
55
|
+
const mapPropsStreamWithConfig = exports.mapPropsStreamWithConfig = wrap('mapPropsStreamWithConfig');
|
|
56
|
+
const createEventHandler = exports.createEventHandler = wrap('createEventHandler');
|
|
57
|
+
const createEventHandlerWithConfig = exports.createEventHandlerWithConfig = wrap('createEventHandlerWithConfig');
|
|
58
|
+
const setObservableConfig = exports.setObservableConfig = wrap('setObservableConfig');
|
|
59
|
+
var _default = exports.default = global.shims['recompose'];
|
|
@@ -13,17 +13,10 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['redux-actions'], 'redux-actions');
|
|
16
|
-
const combineActions = wrap('combineActions');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
|
|
23
|
-
exports.createCurriedAction = createCurriedAction;
|
|
24
|
-
const handleAction = wrap('handleAction');
|
|
25
|
-
exports.handleAction = handleAction;
|
|
26
|
-
const handleActions = wrap('handleActions');
|
|
27
|
-
exports.handleActions = handleActions;
|
|
28
|
-
var _default = global.shims['redux-actions'];
|
|
29
|
-
exports.default = _default;
|
|
16
|
+
const combineActions = exports.combineActions = wrap('combineActions');
|
|
17
|
+
const createAction = exports.createAction = wrap('createAction');
|
|
18
|
+
const createActions = exports.createActions = wrap('createActions');
|
|
19
|
+
const createCurriedAction = exports.createCurriedAction = wrap('createCurriedAction');
|
|
20
|
+
const handleAction = exports.handleAction = wrap('handleAction');
|
|
21
|
+
const handleActions = exports.handleActions = wrap('handleActions');
|
|
22
|
+
var _default = exports.default = global.shims['redux-actions'];
|