@zimbra/zimlet-cli 15.1.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/.eslintrc.js +15 -0
- package/dist/cli.js +9 -10
- package/dist/commands/create.js +43 -83
- package/dist/commands/package.js +10 -42
- package/dist/entry.js +5 -7
- package/dist/index.js +67 -91
- package/dist/lib/async-command.js +2 -6
- package/dist/lib/setup.js +3 -12
- package/dist/lib/webpack/transform-config.js +0 -11
- package/dist/shims/@apollo/client/index.js +66 -120
- package/dist/shims/@apollo/client/react/components/index.js +5 -11
- package/dist/shims/@apollo/client/react/hoc/index.js +7 -15
- package/dist/shims/@apollo/client/react/index.js +15 -31
- package/dist/shims/@zimbra-client/blocks/index.js +27 -55
- package/dist/shims/@zimbra-client/browser/index.js +3 -7
- package/dist/shims/@zimbra-client/components/index.js +53 -107
- package/dist/shims/@zimbra-client/constants/index.js +6 -13
- package/dist/shims/@zimbra-client/enhancers/index.js +9 -19
- package/dist/shims/@zimbra-client/errors/index.js +4 -9
- package/dist/shims/@zimbra-client/graphql/index.js +31 -63
- package/dist/shims/@zimbra-client/hooks/graphql/index.js +7 -15
- package/dist/shims/@zimbra-client/hooks/index.js +7 -15
- package/dist/shims/@zimbra-client/platform/index.js +4 -9
- package/dist/shims/@zimbra-client/util/contacts/index.js +3 -7
- package/dist/shims/@zimbra-client/util/index.js +13 -27
- package/dist/shims/@zimbra-client/util/redux/index.js +7 -15
- package/dist/shims/dompurify/index.js +5 -11
- package/dist/shims/index.js +3 -4
- package/dist/shims/moment/index.js +42 -85
- package/dist/shims/preact/compat/index.js +47 -82
- package/dist/shims/preact/hooks/index.js +15 -28
- package/dist/shims/preact/index.js +14 -29
- package/dist/shims/preact/jsx-runtime/index.js +20 -0
- package/dist/shims/preact-context-provider/index.js +5 -13
- package/dist/shims/preact-i18n/index.js +11 -25
- package/dist/shims/preact-pwa-install/index.js +2 -6
- package/dist/shims/preact-render-to-string/index.js +4 -9
- package/dist/shims/preact-router/index.js +8 -17
- package/dist/shims/preact-router/match/index.js +3 -7
- package/dist/shims/react-redux/index.js +14 -30
- package/dist/shims/recompose/index.js +45 -91
- package/dist/shims/redux-actions/index.js +8 -17
- package/dist/util.js +0 -15
- package/dist/zimlet-style-loader.js +2 -11
- package/package-lock.json +4526 -9373
- package/package.json +42 -46
|
@@ -4,22 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = exports.Subscription = exports.Query = exports.Mutation = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@apollo/client/react/components" in the webpack config.
|
|
11
9
|
* When components import '@apollo/client/react/components', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react/components'], '@apollo/client/react/components');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.Mutation = Mutation;
|
|
20
|
-
const Query = wrap('Query');
|
|
21
|
-
exports.
|
|
22
|
-
|
|
23
|
-
exports.Subscription = Subscription;
|
|
24
|
-
var _default = global.shims['@apollo/client/react/components'];
|
|
25
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react/components'], '@apollo/client/react/components');
|
|
16
|
+
const Mutation = exports.Mutation = wrap('Mutation');
|
|
17
|
+
const Query = exports.Query = wrap('Query');
|
|
18
|
+
const Subscription = exports.Subscription = wrap('Subscription');
|
|
19
|
+
var _default = exports.default = global.shims['@apollo/client/react/components'];
|
|
@@ -4,26 +4,18 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.withSubscription = exports.withQuery = exports.withMutation = exports.withApollo = exports.graphql = exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@apollo/client/react/hoc" in the webpack config.
|
|
11
9
|
* When components import '@apollo/client/react/hoc', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react/hoc'], '@apollo/client/react/hoc');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.graphql = graphql;
|
|
20
|
-
const withApollo = wrap('withApollo');
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
|
|
25
|
-
exports.withQuery = withQuery;
|
|
26
|
-
const withSubscription = wrap('withSubscription');
|
|
27
|
-
exports.withSubscription = withSubscription;
|
|
28
|
-
var _default = global.shims['@apollo/client/react/hoc'];
|
|
29
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react/hoc'], '@apollo/client/react/hoc');
|
|
16
|
+
const graphql = exports.graphql = wrap('graphql');
|
|
17
|
+
const withApollo = exports.withApollo = wrap('withApollo');
|
|
18
|
+
const withMutation = exports.withMutation = wrap('withMutation');
|
|
19
|
+
const withQuery = exports.withQuery = wrap('withQuery');
|
|
20
|
+
const withSubscription = exports.withSubscription = wrap('withSubscription');
|
|
21
|
+
var _default = exports.default = global.shims['@apollo/client/react/hoc'];
|
|
@@ -4,42 +4,26 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.useSubscription = exports.useReactiveVar = exports.useQuery = exports.useMutation = exports.useLazyQuery = exports.useApolloClient = exports.resetApolloContext = exports.parser = exports.operationName = exports.getApolloContext = exports.default = exports.DocumentType = exports.ApolloProvider = exports.ApolloConsumer = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@apollo/client/react" in the webpack config.
|
|
11
9
|
* When components import '@apollo/client/react', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react'], '@apollo/client/react');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.useApolloClient = useApolloClient;
|
|
20
|
-
const useLazyQuery = wrap('useLazyQuery');
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
const
|
|
29
|
-
exports.
|
|
30
|
-
const
|
|
31
|
-
exports.
|
|
32
|
-
|
|
33
|
-
exports.ApolloProvider = ApolloProvider;
|
|
34
|
-
const getApolloContext = wrap('getApolloContext');
|
|
35
|
-
exports.getApolloContext = getApolloContext;
|
|
36
|
-
const resetApolloContext = wrap('resetApolloContext');
|
|
37
|
-
exports.resetApolloContext = resetApolloContext;
|
|
38
|
-
const DocumentType = wrap('DocumentType');
|
|
39
|
-
exports.DocumentType = DocumentType;
|
|
40
|
-
const operationName = wrap('operationName');
|
|
41
|
-
exports.operationName = operationName;
|
|
42
|
-
const parser = wrap('parser');
|
|
43
|
-
exports.parser = parser;
|
|
44
|
-
var _default = global.shims['@apollo/client/react'];
|
|
45
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@apollo/client/react'], '@apollo/client/react');
|
|
16
|
+
const useApolloClient = exports.useApolloClient = wrap('useApolloClient');
|
|
17
|
+
const useLazyQuery = exports.useLazyQuery = wrap('useLazyQuery');
|
|
18
|
+
const useMutation = exports.useMutation = wrap('useMutation');
|
|
19
|
+
const useQuery = exports.useQuery = wrap('useQuery');
|
|
20
|
+
const useReactiveVar = exports.useReactiveVar = wrap('useReactiveVar');
|
|
21
|
+
const useSubscription = exports.useSubscription = wrap('useSubscription');
|
|
22
|
+
const ApolloConsumer = exports.ApolloConsumer = wrap('ApolloConsumer');
|
|
23
|
+
const ApolloProvider = exports.ApolloProvider = wrap('ApolloProvider');
|
|
24
|
+
const getApolloContext = exports.getApolloContext = wrap('getApolloContext');
|
|
25
|
+
const resetApolloContext = exports.resetApolloContext = wrap('resetApolloContext');
|
|
26
|
+
const DocumentType = exports.DocumentType = wrap('DocumentType');
|
|
27
|
+
const operationName = exports.operationName = wrap('operationName');
|
|
28
|
+
const parser = exports.parser = wrap('parser');
|
|
29
|
+
var _default = exports.default = global.shims['@apollo/client/react'];
|
|
@@ -4,66 +4,38 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = exports.Tooltip = exports.Tabs = exports.Tab = exports.Spinner = exports.Select = exports.Scrim = exports.ProgressButton = exports.Popover = exports.Option = exports.ModalDialog = exports.LoaderBar = exports.Label = exports.KeyCodes = exports.Icon = exports.FontAwesome = exports.FixedDialog = exports.Dialog = exports.ContainerSize = exports.CloseOnClickOrKeydown = exports.ClickOutsideDetector = exports.ChoiceInput = exports.Card = exports.Button = exports.AnimatedButton = exports.AffixBottom = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/blocks" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/blocks', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/blocks'], '@zimbra-client/blocks');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.Dialog = Dialog;
|
|
20
|
-
const FixedDialog = wrap('FixedDialog');
|
|
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
|
-
|
|
45
|
-
exports.ContainerSize = ContainerSize;
|
|
46
|
-
const Popover = wrap('Popover');
|
|
47
|
-
exports.Popover = Popover;
|
|
48
|
-
const Tooltip = wrap('Tooltip');
|
|
49
|
-
exports.Tooltip = Tooltip;
|
|
50
|
-
const Scrim = wrap('Scrim');
|
|
51
|
-
exports.Scrim = Scrim;
|
|
52
|
-
const Card = wrap('Card');
|
|
53
|
-
exports.Card = Card;
|
|
54
|
-
const AffixBottom = wrap('AffixBottom');
|
|
55
|
-
exports.AffixBottom = AffixBottom;
|
|
56
|
-
const KeyCodes = wrap('KeyCodes');
|
|
57
|
-
exports.KeyCodes = KeyCodes;
|
|
58
|
-
const Label = wrap('Label');
|
|
59
|
-
exports.Label = Label;
|
|
60
|
-
const ChoiceInput = wrap('ChoiceInput');
|
|
61
|
-
exports.ChoiceInput = ChoiceInput;
|
|
62
|
-
const LoaderBar = wrap('LoaderBar');
|
|
63
|
-
exports.LoaderBar = LoaderBar;
|
|
64
|
-
const AnimatedButton = wrap('AnimatedButton');
|
|
65
|
-
exports.AnimatedButton = AnimatedButton;
|
|
66
|
-
const ProgressButton = wrap('ProgressButton');
|
|
67
|
-
exports.ProgressButton = ProgressButton;
|
|
68
|
-
var _default = global.shims['@zimbra-client/blocks'];
|
|
69
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/blocks'], '@zimbra-client/blocks');
|
|
16
|
+
const Dialog = exports.Dialog = wrap('Dialog');
|
|
17
|
+
const FixedDialog = exports.FixedDialog = wrap('FixedDialog');
|
|
18
|
+
const ModalDialog = exports.ModalDialog = wrap('ModalDialog');
|
|
19
|
+
const Button = exports.Button = wrap('Button');
|
|
20
|
+
const Select = exports.Select = wrap('Select');
|
|
21
|
+
const Option = exports.Option = wrap('Option');
|
|
22
|
+
const Tabs = exports.Tabs = wrap('Tabs');
|
|
23
|
+
const Tab = exports.Tab = wrap('Tab');
|
|
24
|
+
const Icon = exports.Icon = wrap('Icon');
|
|
25
|
+
const FontAwesome = exports.FontAwesome = wrap('FontAwesome');
|
|
26
|
+
const Spinner = exports.Spinner = wrap('Spinner');
|
|
27
|
+
const ClickOutsideDetector = exports.ClickOutsideDetector = wrap('ClickOutsideDetector');
|
|
28
|
+
const CloseOnClickOrKeydown = exports.CloseOnClickOrKeydown = wrap('CloseOnClickOrKeydown');
|
|
29
|
+
const ContainerSize = exports.ContainerSize = wrap('ContainerSize');
|
|
30
|
+
const Popover = exports.Popover = wrap('Popover');
|
|
31
|
+
const Tooltip = exports.Tooltip = wrap('Tooltip');
|
|
32
|
+
const Scrim = exports.Scrim = wrap('Scrim');
|
|
33
|
+
const Card = exports.Card = wrap('Card');
|
|
34
|
+
const AffixBottom = exports.AffixBottom = wrap('AffixBottom');
|
|
35
|
+
const KeyCodes = exports.KeyCodes = wrap('KeyCodes');
|
|
36
|
+
const Label = exports.Label = wrap('Label');
|
|
37
|
+
const ChoiceInput = exports.ChoiceInput = wrap('ChoiceInput');
|
|
38
|
+
const LoaderBar = exports.LoaderBar = wrap('LoaderBar');
|
|
39
|
+
const AnimatedButton = exports.AnimatedButton = wrap('AnimatedButton');
|
|
40
|
+
const ProgressButton = exports.ProgressButton = wrap('ProgressButton');
|
|
41
|
+
var _default = exports.default = global.shims['@zimbra-client/blocks'];
|
|
@@ -4,18 +4,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.openExternalBrowser = exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/browser" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/browser', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/browser'], '@zimbra-client/browser');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.openExternalBrowser = openExternalBrowser;
|
|
20
|
-
var _default = global.shims['@zimbra-client/browser'];
|
|
21
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/browser'], '@zimbra-client/browser');
|
|
16
|
+
const openExternalBrowser = exports.openExternalBrowser = wrap('openExternalBrowser');
|
|
17
|
+
var _default = exports.default = global.shims['@zimbra-client/browser'];
|
|
@@ -4,118 +4,64 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = exports.ZimletSlot = exports.ToolbarButton = exports.TinyMceComposer = exports.TextInput = exports.TextArea = exports.SmartList = exports.SignatureBox = exports.Sidebar = exports.Select = exports.SMIMEOperationDropDown = exports.ResponsiveModal = exports.PdfjsViewer = exports.NestedActionMenuItem = exports.NakedButton = exports.ModalDrawerToolbar = exports.ModalDrawer = exports.ModalDialog = exports.MenuItem = exports.MailSidebar = exports.InfiniteScroll = exports.HelpButton = exports.GenericMobileUIToolbar = exports.GenericMobileUISidebar = exports.FormGroup = exports.FolderListLight = exports.FolderList = exports.ErrorAlert = exports.DropDownWrapper = exports.DraggableCard = exports.DeleteWrapper = exports.ContextMenu = exports.ContactList = exports.ContactHoverCardWrapper = exports.ContactEditor = exports.ConfirmModalDialog = exports.ColorPicker = exports.CollapsedSubmenu = exports.CertificateModal = exports.CaptureBeforeUnload = exports.BackArrow = exports.Avatar = exports.AttachmentItem = exports.AppointmentEdit = exports.AlignedLabel = exports.AddressField = exports.AddMore = exports.ActionMenuMoveFolder = exports.ActionMenuItem = exports.ActionMenuGroup = exports.ActionMenu = exports.ActionButton = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/components" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/components', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/components'], '@zimbra-client/components');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.MenuItem = MenuItem;
|
|
20
|
-
const Sidebar = wrap('Sidebar');
|
|
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
|
|
61
|
-
exports.
|
|
62
|
-
const
|
|
63
|
-
exports.
|
|
64
|
-
const
|
|
65
|
-
exports.
|
|
66
|
-
const
|
|
67
|
-
exports.
|
|
68
|
-
const
|
|
69
|
-
exports.
|
|
70
|
-
|
|
71
|
-
exports.BackArrow = BackArrow;
|
|
72
|
-
const Select = wrap('Select');
|
|
73
|
-
exports.Select = Select;
|
|
74
|
-
const NakedButton = wrap('NakedButton');
|
|
75
|
-
exports.NakedButton = NakedButton;
|
|
76
|
-
const TextInput = wrap('TextInput');
|
|
77
|
-
exports.TextInput = TextInput;
|
|
78
|
-
const TinyMceComposer = wrap('TinyMceComposer');
|
|
79
|
-
exports.TinyMceComposer = TinyMceComposer;
|
|
80
|
-
const TextArea = wrap('TextArea');
|
|
81
|
-
exports.TextArea = TextArea;
|
|
82
|
-
const AddMore = wrap('AddMore');
|
|
83
|
-
exports.AddMore = AddMore;
|
|
84
|
-
const FormGroup = wrap('FormGroup');
|
|
85
|
-
exports.FormGroup = FormGroup;
|
|
86
|
-
const AlignedLabel = wrap('AlignedLabel');
|
|
87
|
-
exports.AlignedLabel = AlignedLabel;
|
|
88
|
-
const AttachmentItem = wrap('AttachmentItem');
|
|
89
|
-
exports.AttachmentItem = AttachmentItem;
|
|
90
|
-
const ResponsiveModal = wrap('ResponsiveModal');
|
|
91
|
-
exports.ResponsiveModal = ResponsiveModal;
|
|
92
|
-
const NestedActionMenuItem = wrap('NestedActionMenuItem');
|
|
93
|
-
exports.NestedActionMenuItem = NestedActionMenuItem;
|
|
94
|
-
const PdfjsViewer = wrap('PdfjsViewer');
|
|
95
|
-
exports.PdfjsViewer = PdfjsViewer;
|
|
96
|
-
const FolderListLight = wrap('FolderListLight');
|
|
97
|
-
exports.FolderListLight = FolderListLight;
|
|
98
|
-
const GenericMobileUIToolbar = wrap('GenericMobileUIToolbar');
|
|
99
|
-
exports.GenericMobileUIToolbar = GenericMobileUIToolbar;
|
|
100
|
-
const GenericMobileUISidebar = wrap('GenericMobileUISidebar');
|
|
101
|
-
exports.GenericMobileUISidebar = GenericMobileUISidebar;
|
|
102
|
-
const ZimletSlot = wrap('ZimletSlot');
|
|
103
|
-
exports.ZimletSlot = ZimletSlot;
|
|
104
|
-
const AddressField = wrap('AddressField');
|
|
105
|
-
exports.AddressField = AddressField;
|
|
106
|
-
const Avatar = wrap('Avatar');
|
|
107
|
-
exports.Avatar = Avatar;
|
|
108
|
-
const ContactHoverCardWrapper = wrap('ContactHoverCardWrapper');
|
|
109
|
-
exports.ContactHoverCardWrapper = ContactHoverCardWrapper;
|
|
110
|
-
const CertificateModal = wrap('CertificateModal');
|
|
111
|
-
exports.CertificateModal = CertificateModal;
|
|
112
|
-
const SMIMEOperationDropDown = wrap('SMIMEOperationDropDown');
|
|
113
|
-
exports.SMIMEOperationDropDown = SMIMEOperationDropDown;
|
|
114
|
-
const ErrorAlert = wrap('ErrorAlert');
|
|
115
|
-
exports.ErrorAlert = ErrorAlert;
|
|
116
|
-
const SignatureBox = wrap('SignatureBox');
|
|
117
|
-
exports.SignatureBox = SignatureBox;
|
|
118
|
-
const DeleteWrapper = wrap('DeleteWrapper');
|
|
119
|
-
exports.DeleteWrapper = DeleteWrapper;
|
|
120
|
-
var _default = global.shims['@zimbra-client/components'];
|
|
121
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/components'], '@zimbra-client/components');
|
|
16
|
+
const MenuItem = exports.MenuItem = wrap('MenuItem');
|
|
17
|
+
const Sidebar = exports.Sidebar = wrap('Sidebar');
|
|
18
|
+
const MailSidebar = exports.MailSidebar = wrap('MailSidebar');
|
|
19
|
+
const FolderList = exports.FolderList = wrap('FolderList');
|
|
20
|
+
const SmartList = exports.SmartList = wrap('SmartList');
|
|
21
|
+
const ActionMenuMoveFolder = exports.ActionMenuMoveFolder = wrap('ActionMenuMoveFolder');
|
|
22
|
+
const ActionButton = exports.ActionButton = wrap('ActionButton');
|
|
23
|
+
const CaptureBeforeUnload = exports.CaptureBeforeUnload = wrap('CaptureBeforeUnload');
|
|
24
|
+
const ConfirmModalDialog = exports.ConfirmModalDialog = wrap('ConfirmModalDialog');
|
|
25
|
+
const ModalDialog = exports.ModalDialog = wrap('ModalDialog');
|
|
26
|
+
const ActionMenu = exports.ActionMenu = wrap('ActionMenu');
|
|
27
|
+
const DropDownWrapper = exports.DropDownWrapper = wrap('DropDownWrapper');
|
|
28
|
+
const ActionMenuItem = exports.ActionMenuItem = wrap('ActionMenuItem');
|
|
29
|
+
const ActionMenuGroup = exports.ActionMenuGroup = wrap('ActionMenuGroup');
|
|
30
|
+
const DraggableCard = exports.DraggableCard = wrap('DraggableCard');
|
|
31
|
+
const ContextMenu = exports.ContextMenu = wrap('ContextMenu');
|
|
32
|
+
const ToolbarButton = exports.ToolbarButton = wrap('ToolbarButton');
|
|
33
|
+
const CollapsedSubmenu = exports.CollapsedSubmenu = wrap('CollapsedSubmenu');
|
|
34
|
+
const InfiniteScroll = exports.InfiniteScroll = wrap('InfiniteScroll');
|
|
35
|
+
const ContactList = exports.ContactList = wrap('ContactList');
|
|
36
|
+
const ContactEditor = exports.ContactEditor = wrap('ContactEditor');
|
|
37
|
+
const HelpButton = exports.HelpButton = wrap('HelpButton');
|
|
38
|
+
const AppointmentEdit = exports.AppointmentEdit = wrap('AppointmentEdit');
|
|
39
|
+
const ColorPicker = exports.ColorPicker = wrap('ColorPicker');
|
|
40
|
+
const ModalDrawer = exports.ModalDrawer = wrap('ModalDrawer');
|
|
41
|
+
const ModalDrawerToolbar = exports.ModalDrawerToolbar = wrap('ModalDrawerToolbar');
|
|
42
|
+
const BackArrow = exports.BackArrow = wrap('BackArrow');
|
|
43
|
+
const Select = exports.Select = wrap('Select');
|
|
44
|
+
const NakedButton = exports.NakedButton = wrap('NakedButton');
|
|
45
|
+
const TextInput = exports.TextInput = wrap('TextInput');
|
|
46
|
+
const TinyMceComposer = exports.TinyMceComposer = wrap('TinyMceComposer');
|
|
47
|
+
const TextArea = exports.TextArea = wrap('TextArea');
|
|
48
|
+
const AddMore = exports.AddMore = wrap('AddMore');
|
|
49
|
+
const FormGroup = exports.FormGroup = wrap('FormGroup');
|
|
50
|
+
const AlignedLabel = exports.AlignedLabel = wrap('AlignedLabel');
|
|
51
|
+
const AttachmentItem = exports.AttachmentItem = wrap('AttachmentItem');
|
|
52
|
+
const ResponsiveModal = exports.ResponsiveModal = wrap('ResponsiveModal');
|
|
53
|
+
const NestedActionMenuItem = exports.NestedActionMenuItem = wrap('NestedActionMenuItem');
|
|
54
|
+
const PdfjsViewer = exports.PdfjsViewer = wrap('PdfjsViewer');
|
|
55
|
+
const FolderListLight = exports.FolderListLight = wrap('FolderListLight');
|
|
56
|
+
const GenericMobileUIToolbar = exports.GenericMobileUIToolbar = wrap('GenericMobileUIToolbar');
|
|
57
|
+
const GenericMobileUISidebar = exports.GenericMobileUISidebar = wrap('GenericMobileUISidebar');
|
|
58
|
+
const ZimletSlot = exports.ZimletSlot = wrap('ZimletSlot');
|
|
59
|
+
const AddressField = exports.AddressField = wrap('AddressField');
|
|
60
|
+
const Avatar = exports.Avatar = wrap('Avatar');
|
|
61
|
+
const ContactHoverCardWrapper = exports.ContactHoverCardWrapper = wrap('ContactHoverCardWrapper');
|
|
62
|
+
const CertificateModal = exports.CertificateModal = wrap('CertificateModal');
|
|
63
|
+
const SMIMEOperationDropDown = exports.SMIMEOperationDropDown = wrap('SMIMEOperationDropDown');
|
|
64
|
+
const ErrorAlert = exports.ErrorAlert = wrap('ErrorAlert');
|
|
65
|
+
const SignatureBox = exports.SignatureBox = wrap('SignatureBox');
|
|
66
|
+
const DeleteWrapper = exports.DeleteWrapper = wrap('DeleteWrapper');
|
|
67
|
+
var _default = exports.default = global.shims['@zimbra-client/components'];
|
|
@@ -4,24 +4,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.supportedMimes = exports.default = exports.ZIMBRA_ZIMLET_EVENTS = exports.PARTICIPATION_STATUS = exports.ATTENDEE_ROLE = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/constants" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/constants', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/constants'], '@zimbra-client/constants');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.ATTENDEE_ROLE = ATTENDEE_ROLE;
|
|
20
|
-
const PARTICIPATION_STATUS = wrap('PARTICIPATION_STATUS');
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const ZIMBRA_ZIMLET_EVENTS = wrap('ZIMBRA_ZIMLET_EVENTS');
|
|
25
|
-
exports.ZIMBRA_ZIMLET_EVENTS = ZIMBRA_ZIMLET_EVENTS;
|
|
26
|
-
var _default = global.shims['@zimbra-client/constants'];
|
|
27
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/constants'], '@zimbra-client/constants');
|
|
16
|
+
const ATTENDEE_ROLE = exports.ATTENDEE_ROLE = wrap('ATTENDEE_ROLE');
|
|
17
|
+
const PARTICIPATION_STATUS = exports.PARTICIPATION_STATUS = wrap('PARTICIPATION_STATUS');
|
|
18
|
+
const supportedMimes = exports.supportedMimes = wrap('supportedMimes');
|
|
19
|
+
const ZIMBRA_ZIMLET_EVENTS = exports.ZIMBRA_ZIMLET_EVENTS = wrap('ZIMBRA_ZIMLET_EVENTS');
|
|
20
|
+
var _default = exports.default = global.shims['@zimbra-client/constants'];
|
|
@@ -4,30 +4,20 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.withZimletIntlWrapper = exports.withTracking = exports.withTabManager = exports.withMediaQuery = exports.withIntlWrapper = exports.withIntlConsumer = exports.default = exports.clientConfiguration = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/enhancers" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/enhancers', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/enhancers'], '@zimbra-client/enhancers');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.withMediaQuery = withMediaQuery;
|
|
20
|
-
const withTabManager = wrap('withTabManager');
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
|
|
27
|
-
exports.clientConfiguration = clientConfiguration;
|
|
28
|
-
const withTracking = wrap('withTracking');
|
|
29
|
-
exports.withTracking = withTracking;
|
|
30
|
-
const withIntlConsumer = wrap('withIntlConsumer');
|
|
31
|
-
exports.withIntlConsumer = withIntlConsumer;
|
|
32
|
-
var _default = global.shims['@zimbra-client/enhancers'];
|
|
33
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/enhancers'], '@zimbra-client/enhancers');
|
|
16
|
+
const withMediaQuery = exports.withMediaQuery = wrap('withMediaQuery');
|
|
17
|
+
const withTabManager = exports.withTabManager = wrap('withTabManager');
|
|
18
|
+
const withIntlWrapper = exports.withIntlWrapper = wrap('withIntlWrapper');
|
|
19
|
+
const withZimletIntlWrapper = exports.withZimletIntlWrapper = wrap('withZimletIntlWrapper');
|
|
20
|
+
const clientConfiguration = exports.clientConfiguration = wrap('clientConfiguration');
|
|
21
|
+
const withTracking = exports.withTracking = wrap('withTracking');
|
|
22
|
+
const withIntlConsumer = exports.withIntlConsumer = wrap('withIntlConsumer');
|
|
23
|
+
var _default = exports.default = global.shims['@zimbra-client/enhancers'];
|
|
@@ -4,20 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.faultCode = exports.errorMessage = exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _ = require("../../");
|
|
9
|
-
|
|
10
8
|
/** This file is an auto-generated shim, aliased in for "@zimbra-client/errors" in the webpack config.
|
|
11
9
|
* When components import '@zimbra-client/errors', we want to give them back the copy
|
|
12
10
|
* Zimbra passed down when it called the factory provided to zimlet().
|
|
13
11
|
*/
|
|
14
12
|
|
|
15
13
|
/* eslint-disable camelcase, dot-notation */
|
|
16
|
-
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/errors'], '@zimbra-client/errors');
|
|
17
14
|
|
|
18
|
-
const
|
|
19
|
-
exports.errorMessage = errorMessage;
|
|
20
|
-
const faultCode = wrap('faultCode');
|
|
21
|
-
exports.
|
|
22
|
-
var _default = global.shims['@zimbra-client/errors'];
|
|
23
|
-
exports.default = _default;
|
|
15
|
+
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/errors'], '@zimbra-client/errors');
|
|
16
|
+
const errorMessage = exports.errorMessage = wrap('errorMessage');
|
|
17
|
+
const faultCode = exports.faultCode = wrap('faultCode');
|
|
18
|
+
var _default = exports.default = global.shims['@zimbra-client/errors'];
|