@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,13 +13,8 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/constants'], '@zimbra-client/constants');
|
|
16
|
-
const ATTENDEE_ROLE = wrap('ATTENDEE_ROLE');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
|
|
21
|
-
exports.supportedMimes = supportedMimes;
|
|
22
|
-
const ZIMBRA_ZIMLET_EVENTS = wrap('ZIMBRA_ZIMLET_EVENTS');
|
|
23
|
-
exports.ZIMBRA_ZIMLET_EVENTS = ZIMBRA_ZIMLET_EVENTS;
|
|
24
|
-
var _default = global.shims['@zimbra-client/constants'];
|
|
25
|
-
exports.default = _default;
|
|
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'];
|
|
@@ -13,19 +13,11 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/enhancers'], '@zimbra-client/enhancers');
|
|
16
|
-
const withMediaQuery = wrap('withMediaQuery');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const clientConfiguration = wrap('clientConfiguration');
|
|
25
|
-
exports.clientConfiguration = clientConfiguration;
|
|
26
|
-
const withTracking = wrap('withTracking');
|
|
27
|
-
exports.withTracking = withTracking;
|
|
28
|
-
const withIntlConsumer = wrap('withIntlConsumer');
|
|
29
|
-
exports.withIntlConsumer = withIntlConsumer;
|
|
30
|
-
var _default = global.shims['@zimbra-client/enhancers'];
|
|
31
|
-
exports.default = _default;
|
|
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'];
|
|
@@ -13,9 +13,6 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/errors'], '@zimbra-client/errors');
|
|
16
|
-
const errorMessage = wrap('errorMessage');
|
|
17
|
-
exports.
|
|
18
|
-
|
|
19
|
-
exports.faultCode = faultCode;
|
|
20
|
-
var _default = global.shims['@zimbra-client/errors'];
|
|
21
|
-
exports.default = _default;
|
|
16
|
+
const errorMessage = exports.errorMessage = wrap('errorMessage');
|
|
17
|
+
const faultCode = exports.faultCode = wrap('faultCode');
|
|
18
|
+
var _default = exports.default = global.shims['@zimbra-client/errors'];
|
|
@@ -13,63 +13,33 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/graphql'], '@zimbra-client/graphql');
|
|
16
|
-
const AppointmentsQuery = wrap('AppointmentsQuery');
|
|
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 CalendarCreateMutation = wrap('CalendarCreateMutation');
|
|
47
|
-
exports.CalendarCreateMutation = CalendarCreateMutation;
|
|
48
|
-
const withCreateCalendar = wrap('withCreateCalendar');
|
|
49
|
-
exports.withCreateCalendar = withCreateCalendar;
|
|
50
|
-
const withSetCustomMetaData = wrap('withSetCustomMetaData');
|
|
51
|
-
exports.withSetCustomMetaData = withSetCustomMetaData;
|
|
52
|
-
const withGetCustomMetaData = wrap('withGetCustomMetaData');
|
|
53
|
-
exports.withGetCustomMetaData = withGetCustomMetaData;
|
|
54
|
-
const withActionMutation = wrap('withActionMutation');
|
|
55
|
-
exports.withActionMutation = withActionMutation;
|
|
56
|
-
const withTags = wrap('withTags');
|
|
57
|
-
exports.withTags = withTags;
|
|
58
|
-
const withTagCreate = wrap('withTagCreate');
|
|
59
|
-
exports.withTagCreate = withTagCreate;
|
|
60
|
-
const withTagAction = wrap('withTagAction');
|
|
61
|
-
exports.withTagAction = withTagAction;
|
|
62
|
-
const SearchFragment = wrap('SearchFragment');
|
|
63
|
-
exports.SearchFragment = SearchFragment;
|
|
64
|
-
const SendShareNotificationMutation = wrap('SendShareNotificationMutation');
|
|
65
|
-
exports.SendShareNotificationMutation = SendShareNotificationMutation;
|
|
66
|
-
const SetMailboxMetadataMutation = wrap('SetMailboxMetadataMutation');
|
|
67
|
-
exports.SetMailboxMetadataMutation = SetMailboxMetadataMutation;
|
|
68
|
-
const withDataSources = wrap('withDataSources');
|
|
69
|
-
exports.withDataSources = withDataSources;
|
|
70
|
-
const withGetSmimeCertificateInfo = wrap('withGetSmimeCertificateInfo');
|
|
71
|
-
exports.withGetSmimeCertificateInfo = withGetSmimeCertificateInfo;
|
|
72
|
-
const withSaveSmimeCertificate = wrap('withSaveSmimeCertificate');
|
|
73
|
-
exports.withSaveSmimeCertificate = withSaveSmimeCertificate;
|
|
74
|
-
var _default = global.shims['@zimbra-client/graphql'];
|
|
75
|
-
exports.default = _default;
|
|
16
|
+
const AppointmentsQuery = exports.AppointmentsQuery = wrap('AppointmentsQuery');
|
|
17
|
+
const CalendarsAndAppointmentsQuery = exports.CalendarsAndAppointmentsQuery = wrap('CalendarsAndAppointmentsQuery');
|
|
18
|
+
const GetDocumentShareURLQuery = exports.GetDocumentShareURLQuery = wrap('GetDocumentShareURLQuery');
|
|
19
|
+
const GetMailboxMetadataQuery = exports.GetMailboxMetadataQuery = wrap('GetMailboxMetadataQuery');
|
|
20
|
+
const GetFilterRules = exports.GetFilterRules = wrap('GetFilterRules');
|
|
21
|
+
const modifyFilterRules = exports.modifyFilterRules = wrap('modifyFilterRules');
|
|
22
|
+
const cloneWithoutTypeName = exports.cloneWithoutTypeName = wrap('cloneWithoutTypeName');
|
|
23
|
+
const withCreateAppointment = exports.withCreateAppointment = wrap('withCreateAppointment');
|
|
24
|
+
const withCalendars = exports.withCalendars = wrap('withCalendars');
|
|
25
|
+
const withSearch = exports.withSearch = wrap('withSearch');
|
|
26
|
+
const withAccountInfo = exports.withAccountInfo = wrap('withAccountInfo');
|
|
27
|
+
const withPreference = exports.withPreference = wrap('withPreference');
|
|
28
|
+
const withIdentities = exports.withIdentities = wrap('withIdentities');
|
|
29
|
+
const withCreateContact = exports.withCreateContact = wrap('withCreateContact');
|
|
30
|
+
const withContactAction = exports.withContactAction = wrap('withContactAction');
|
|
31
|
+
const CalendarCreateMutation = exports.CalendarCreateMutation = wrap('CalendarCreateMutation');
|
|
32
|
+
const withCreateCalendar = exports.withCreateCalendar = wrap('withCreateCalendar');
|
|
33
|
+
const withSetCustomMetaData = exports.withSetCustomMetaData = wrap('withSetCustomMetaData');
|
|
34
|
+
const withGetCustomMetaData = exports.withGetCustomMetaData = wrap('withGetCustomMetaData');
|
|
35
|
+
const withActionMutation = exports.withActionMutation = wrap('withActionMutation');
|
|
36
|
+
const withTags = exports.withTags = wrap('withTags');
|
|
37
|
+
const withTagCreate = exports.withTagCreate = wrap('withTagCreate');
|
|
38
|
+
const withTagAction = exports.withTagAction = wrap('withTagAction');
|
|
39
|
+
const SearchFragment = exports.SearchFragment = wrap('SearchFragment');
|
|
40
|
+
const SendShareNotificationMutation = exports.SendShareNotificationMutation = wrap('SendShareNotificationMutation');
|
|
41
|
+
const SetMailboxMetadataMutation = exports.SetMailboxMetadataMutation = wrap('SetMailboxMetadataMutation');
|
|
42
|
+
const withDataSources = exports.withDataSources = wrap('withDataSources');
|
|
43
|
+
const withGetSmimeCertificateInfo = exports.withGetSmimeCertificateInfo = wrap('withGetSmimeCertificateInfo');
|
|
44
|
+
const withSaveSmimeCertificate = exports.withSaveSmimeCertificate = wrap('withSaveSmimeCertificate');
|
|
45
|
+
var _default = exports.default = global.shims['@zimbra-client/graphql'];
|
|
@@ -13,15 +13,9 @@ var _ = require("../../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/hooks/graphql'], '@zimbra-client/hooks/graphql');
|
|
16
|
-
const useFoldersQuery = wrap('useFoldersQuery');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const useBriefcaseFoldersQuery = wrap('useBriefcaseFoldersQuery');
|
|
23
|
-
exports.useBriefcaseFoldersQuery = useBriefcaseFoldersQuery;
|
|
24
|
-
const useSaveDocumentMutation = wrap('useSaveDocumentMutation');
|
|
25
|
-
exports.useSaveDocumentMutation = useSaveDocumentMutation;
|
|
26
|
-
var _default = global.shims['@zimbra-client/hooks/graphql'];
|
|
27
|
-
exports.default = _default;
|
|
16
|
+
const useFoldersQuery = exports.useFoldersQuery = wrap('useFoldersQuery');
|
|
17
|
+
const useAccountInfo = exports.useAccountInfo = wrap('useAccountInfo');
|
|
18
|
+
const useDocumentAction = exports.useDocumentAction = wrap('useDocumentAction');
|
|
19
|
+
const useBriefcaseFoldersQuery = exports.useBriefcaseFoldersQuery = wrap('useBriefcaseFoldersQuery');
|
|
20
|
+
const useSaveDocumentMutation = exports.useSaveDocumentMutation = wrap('useSaveDocumentMutation');
|
|
21
|
+
var _default = exports.default = global.shims['@zimbra-client/hooks/graphql'];
|
|
@@ -13,15 +13,9 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/hooks'], '@zimbra-client/hooks');
|
|
16
|
-
const useClientConfig = wrap('useClientConfig');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const usePreferences = wrap('usePreferences');
|
|
23
|
-
exports.usePreferences = usePreferences;
|
|
24
|
-
const useSendMessageMutation = wrap('useSendMessageMutation');
|
|
25
|
-
exports.useSendMessageMutation = useSendMessageMutation;
|
|
26
|
-
var _default = global.shims['@zimbra-client/hooks'];
|
|
27
|
-
exports.default = _default;
|
|
16
|
+
const useClientConfig = exports.useClientConfig = wrap('useClientConfig');
|
|
17
|
+
const useTracking = exports.useTracking = wrap('useTracking');
|
|
18
|
+
const useMediaQuery = exports.useMediaQuery = wrap('useMediaQuery');
|
|
19
|
+
const usePreferences = exports.usePreferences = wrap('usePreferences');
|
|
20
|
+
const useSendMessageMutation = exports.useSendMessageMutation = wrap('useSendMessageMutation');
|
|
21
|
+
var _default = exports.default = global.shims['@zimbra-client/hooks'];
|
|
@@ -13,9 +13,6 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/platform'], '@zimbra-client/platform');
|
|
16
|
-
const getPlatformType = wrap('getPlatformType');
|
|
17
|
-
exports.
|
|
18
|
-
|
|
19
|
-
exports.PLATFORM_TYPES = PLATFORM_TYPES;
|
|
20
|
-
var _default = global.shims['@zimbra-client/platform'];
|
|
21
|
-
exports.default = _default;
|
|
16
|
+
const getPlatformType = exports.getPlatformType = wrap('getPlatformType');
|
|
17
|
+
const PLATFORM_TYPES = exports.PLATFORM_TYPES = wrap('PLATFORM_TYPES');
|
|
18
|
+
var _default = exports.default = global.shims['@zimbra-client/platform'];
|
|
@@ -13,7 +13,5 @@ var _ = require("../../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/util/contacts'], '@zimbra-client/util/contacts');
|
|
16
|
-
const getName = wrap('getName');
|
|
17
|
-
exports.
|
|
18
|
-
var _default = global.shims['@zimbra-client/util/contacts'];
|
|
19
|
-
exports.default = _default;
|
|
16
|
+
const getName = exports.getName = wrap('getName');
|
|
17
|
+
var _default = exports.default = global.shims['@zimbra-client/util/contacts'];
|
|
@@ -13,27 +13,15 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/util'], '@zimbra-client/util');
|
|
16
|
-
const array = wrap('array');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const
|
|
23
|
-
exports.
|
|
24
|
-
const
|
|
25
|
-
exports.
|
|
26
|
-
const
|
|
27
|
-
exports.
|
|
28
|
-
const PageVisibility = wrap('PageVisibility');
|
|
29
|
-
exports.PageVisibility = PageVisibility;
|
|
30
|
-
const zimletEventEmitter = wrap('zimletEventEmitter');
|
|
31
|
-
exports.zimletEventEmitter = zimletEventEmitter;
|
|
32
|
-
const smimeHandler = wrap('smimeHandler');
|
|
33
|
-
exports.smimeHandler = smimeHandler;
|
|
34
|
-
const isServerSMIMEFeatureAvailable = wrap('isServerSMIMEFeatureAvailable');
|
|
35
|
-
exports.isServerSMIMEFeatureAvailable = isServerSMIMEFeatureAvailable;
|
|
36
|
-
const htmlToText = wrap('htmlToText');
|
|
37
|
-
exports.htmlToText = htmlToText;
|
|
38
|
-
var _default = global.shims['@zimbra-client/util'];
|
|
39
|
-
exports.default = _default;
|
|
16
|
+
const array = exports.array = wrap('array');
|
|
17
|
+
const getDataTransferJSON = exports.getDataTransferJSON = wrap('getDataTransferJSON');
|
|
18
|
+
const setDataTransferJSON = exports.setDataTransferJSON = wrap('setDataTransferJSON');
|
|
19
|
+
const breakpoints = exports.breakpoints = wrap('breakpoints');
|
|
20
|
+
const callWith = exports.callWith = wrap('callWith');
|
|
21
|
+
const pruneEmpty = exports.pruneEmpty = wrap('pruneEmpty');
|
|
22
|
+
const PageVisibility = exports.PageVisibility = wrap('PageVisibility');
|
|
23
|
+
const zimletEventEmitter = exports.zimletEventEmitter = wrap('zimletEventEmitter');
|
|
24
|
+
const smimeHandler = exports.smimeHandler = wrap('smimeHandler');
|
|
25
|
+
const isServerSMIMEFeatureAvailable = exports.isServerSMIMEFeatureAvailable = wrap('isServerSMIMEFeatureAvailable');
|
|
26
|
+
const htmlToText = exports.htmlToText = wrap('htmlToText');
|
|
27
|
+
var _default = exports.default = global.shims['@zimbra-client/util'];
|
|
@@ -13,15 +13,9 @@ var _ = require("../../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['@zimbra-client/util/redux'], '@zimbra-client/util/redux');
|
|
16
|
-
const paginate = wrap('paginate');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const
|
|
21
|
-
exports.
|
|
22
|
-
const fulfilledAction = wrap('fulfilledAction');
|
|
23
|
-
exports.fulfilledAction = fulfilledAction;
|
|
24
|
-
const rejectedAction = wrap('rejectedAction');
|
|
25
|
-
exports.rejectedAction = rejectedAction;
|
|
26
|
-
var _default = global.shims['@zimbra-client/util/redux'];
|
|
27
|
-
exports.default = _default;
|
|
16
|
+
const paginate = exports.paginate = wrap('paginate');
|
|
17
|
+
const createAsyncAction = exports.createAsyncAction = wrap('createAsyncAction');
|
|
18
|
+
const pendingAction = exports.pendingAction = wrap('pendingAction');
|
|
19
|
+
const fulfilledAction = exports.fulfilledAction = wrap('fulfilledAction');
|
|
20
|
+
const rejectedAction = exports.rejectedAction = wrap('rejectedAction');
|
|
21
|
+
var _default = exports.default = global.shims['@zimbra-client/util/redux'];
|
|
@@ -13,11 +13,7 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['dompurify'], 'dompurify');
|
|
16
|
-
const version = wrap('version');
|
|
17
|
-
exports.
|
|
18
|
-
const
|
|
19
|
-
exports.
|
|
20
|
-
const isSupported = wrap('isSupported');
|
|
21
|
-
exports.isSupported = isSupported;
|
|
22
|
-
var _default = global.shims['dompurify'];
|
|
23
|
-
exports.default = _default;
|
|
16
|
+
const version = exports.version = wrap('version');
|
|
17
|
+
const removed = exports.removed = wrap('removed');
|
|
18
|
+
const isSupported = exports.isSupported = wrap('isSupported');
|
|
19
|
+
var _default = exports.default = global.shims['dompurify'];
|
|
@@ -13,85 +13,44 @@ var _ = require("../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['moment'], 'moment');
|
|
16
|
-
const momentProperties = wrap('momentProperties');
|
|
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
|
-
|
|
57
|
-
exports.isDate = isDate;
|
|
58
|
-
const locale = wrap('locale');
|
|
59
|
-
exports.locale = locale;
|
|
60
|
-
const invalid = wrap('invalid');
|
|
61
|
-
exports.invalid = invalid;
|
|
62
|
-
const duration = wrap('duration');
|
|
63
|
-
exports.duration = duration;
|
|
64
|
-
const isMoment = wrap('isMoment');
|
|
65
|
-
exports.isMoment = isMoment;
|
|
66
|
-
const weekdays = wrap('weekdays');
|
|
67
|
-
exports.weekdays = weekdays;
|
|
68
|
-
const parseZone = wrap('parseZone');
|
|
69
|
-
exports.parseZone = parseZone;
|
|
70
|
-
const localeData = wrap('localeData');
|
|
71
|
-
exports.localeData = localeData;
|
|
72
|
-
const isDuration = wrap('isDuration');
|
|
73
|
-
exports.isDuration = isDuration;
|
|
74
|
-
const monthsShort = wrap('monthsShort');
|
|
75
|
-
exports.monthsShort = monthsShort;
|
|
76
|
-
const weekdaysMin = wrap('weekdaysMin');
|
|
77
|
-
exports.weekdaysMin = weekdaysMin;
|
|
78
|
-
const defineLocale = wrap('defineLocale');
|
|
79
|
-
exports.defineLocale = defineLocale;
|
|
80
|
-
const updateLocale = wrap('updateLocale');
|
|
81
|
-
exports.updateLocale = updateLocale;
|
|
82
|
-
const locales = wrap('locales');
|
|
83
|
-
exports.locales = locales;
|
|
84
|
-
const weekdaysShort = wrap('weekdaysShort');
|
|
85
|
-
exports.weekdaysShort = weekdaysShort;
|
|
86
|
-
const normalizeUnits = wrap('normalizeUnits');
|
|
87
|
-
exports.normalizeUnits = normalizeUnits;
|
|
88
|
-
const relativeTimeRounding = wrap('relativeTimeRounding');
|
|
89
|
-
exports.relativeTimeRounding = relativeTimeRounding;
|
|
90
|
-
const relativeTimeThreshold = wrap('relativeTimeThreshold');
|
|
91
|
-
exports.relativeTimeThreshold = relativeTimeThreshold;
|
|
92
|
-
const calendarFormat = wrap('calendarFormat');
|
|
93
|
-
exports.calendarFormat = calendarFormat;
|
|
94
|
-
const HTML5_FMT = wrap('HTML5_FMT');
|
|
95
|
-
exports.HTML5_FMT = HTML5_FMT;
|
|
96
|
-
var _default = global.shims['moment'];
|
|
97
|
-
exports.default = _default;
|
|
16
|
+
const momentProperties = exports.momentProperties = wrap('momentProperties');
|
|
17
|
+
const suppressDeprecationWarnings = exports.suppressDeprecationWarnings = wrap('suppressDeprecationWarnings');
|
|
18
|
+
const deprecationHandler = exports.deprecationHandler = wrap('deprecationHandler');
|
|
19
|
+
const parseTwoDigitYear = exports.parseTwoDigitYear = wrap('parseTwoDigitYear');
|
|
20
|
+
const createFromInputFallback = exports.createFromInputFallback = wrap('createFromInputFallback');
|
|
21
|
+
const ISO_8601 = exports.ISO_8601 = wrap('ISO_8601');
|
|
22
|
+
const RFC_2822 = exports.RFC_2822 = wrap('RFC_2822');
|
|
23
|
+
const updateOffset = exports.updateOffset = wrap('updateOffset');
|
|
24
|
+
const defaultFormat = exports.defaultFormat = wrap('defaultFormat');
|
|
25
|
+
const defaultFormatUtc = exports.defaultFormatUtc = wrap('defaultFormatUtc');
|
|
26
|
+
const lang = exports.lang = wrap('lang');
|
|
27
|
+
const langData = exports.langData = wrap('langData');
|
|
28
|
+
const version = exports.version = wrap('version');
|
|
29
|
+
const fn = exports.fn = wrap('fn');
|
|
30
|
+
const min = exports.min = wrap('min');
|
|
31
|
+
const max = exports.max = wrap('max');
|
|
32
|
+
const now = exports.now = wrap('now');
|
|
33
|
+
const utc = exports.utc = wrap('utc');
|
|
34
|
+
const unix = exports.unix = wrap('unix');
|
|
35
|
+
const months = exports.months = wrap('months');
|
|
36
|
+
const isDate = exports.isDate = wrap('isDate');
|
|
37
|
+
const locale = exports.locale = wrap('locale');
|
|
38
|
+
const invalid = exports.invalid = wrap('invalid');
|
|
39
|
+
const duration = exports.duration = wrap('duration');
|
|
40
|
+
const isMoment = exports.isMoment = wrap('isMoment');
|
|
41
|
+
const weekdays = exports.weekdays = wrap('weekdays');
|
|
42
|
+
const parseZone = exports.parseZone = wrap('parseZone');
|
|
43
|
+
const localeData = exports.localeData = wrap('localeData');
|
|
44
|
+
const isDuration = exports.isDuration = wrap('isDuration');
|
|
45
|
+
const monthsShort = exports.monthsShort = wrap('monthsShort');
|
|
46
|
+
const weekdaysMin = exports.weekdaysMin = wrap('weekdaysMin');
|
|
47
|
+
const defineLocale = exports.defineLocale = wrap('defineLocale');
|
|
48
|
+
const updateLocale = exports.updateLocale = wrap('updateLocale');
|
|
49
|
+
const locales = exports.locales = wrap('locales');
|
|
50
|
+
const weekdaysShort = exports.weekdaysShort = wrap('weekdaysShort');
|
|
51
|
+
const normalizeUnits = exports.normalizeUnits = wrap('normalizeUnits');
|
|
52
|
+
const relativeTimeRounding = exports.relativeTimeRounding = wrap('relativeTimeRounding');
|
|
53
|
+
const relativeTimeThreshold = exports.relativeTimeThreshold = wrap('relativeTimeThreshold');
|
|
54
|
+
const calendarFormat = exports.calendarFormat = wrap('calendarFormat');
|
|
55
|
+
const HTML5_FMT = exports.HTML5_FMT = wrap('HTML5_FMT');
|
|
56
|
+
var _default = exports.default = global.shims['moment'];
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.version = exports.useTransition = exports.useSyncExternalStore = exports.useState = exports.useRef = exports.useReducer = exports.useMemo = exports.useLayoutEffect = exports.useInsertionEffect = exports.useImperativeHandle = exports.useId = exports.useErrorBoundary = exports.useEffect = exports.useDeferredValue = exports.useDebugValue = exports.useContext = exports.useCallback = exports.unstable_batchedUpdates = exports.unmountComponentAtNode = exports.startTransition = exports.render = exports.memo = exports.lazy = exports.isValidElement = exports.hydrate = exports.forwardRef = exports.flushSync = exports.findDOMNode = exports.default = exports.createRef = exports.createPortal = exports.createFactory = exports.createElement = exports.createContext = exports.cloneElement = exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = exports.SuspenseList = exports.Suspense = exports.StrictMode = exports.PureComponent = exports.Fragment = exports.Component = exports.Children = void 0;
|
|
6
|
+
exports.version = exports.useTransition = exports.useSyncExternalStore = exports.useState = exports.useRef = exports.useReducer = exports.useMemo = exports.useLayoutEffect = exports.useInsertionEffect = exports.useImperativeHandle = exports.useId = exports.useErrorBoundary = exports.useEffect = exports.useDeferredValue = exports.useDebugValue = exports.useContext = exports.useCallback = exports.unstable_batchedUpdates = exports.unmountComponentAtNode = exports.startTransition = exports.render = exports.memo = exports.lazy = exports.isValidElement = exports.isFragment = exports.isElement = exports.hydrate = exports.forwardRef = exports.flushSync = exports.findDOMNode = exports.default = exports.createRef = exports.createPortal = exports.createFactory = exports.createElement = exports.createContext = exports.cloneElement = exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = exports.SuspenseList = exports.Suspense = exports.StrictMode = exports.PureComponent = exports.Fragment = exports.Component = exports.Children = void 0;
|
|
7
7
|
var _ = require("../../");
|
|
8
8
|
/** This file is an auto-generated shim, aliased in for "preact/compat" in the webpack config.
|
|
9
9
|
* When components import 'preact/compat', we want to give them back the copy
|
|
@@ -13,89 +13,48 @@ var _ = require("../../");
|
|
|
13
13
|
/* eslint-disable camelcase, dot-notation */
|
|
14
14
|
|
|
15
15
|
const wrap = _.warnOnMissingExport.bind(null, global.shims['preact/compat'], 'preact/compat');
|
|
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
|
-
const
|
|
29
|
-
exports.
|
|
30
|
-
|
|
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.
|
|
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.render = render;
|
|
62
|
-
const startTransition = wrap('startTransition');
|
|
63
|
-
exports.startTransition = startTransition;
|
|
64
|
-
const unmountComponentAtNode = wrap('unmountComponentAtNode');
|
|
65
|
-
exports.unmountComponentAtNode = unmountComponentAtNode;
|
|
66
|
-
const unstable_batchedUpdates = wrap('unstable_batchedUpdates');
|
|
67
|
-
exports.unstable_batchedUpdates = unstable_batchedUpdates;
|
|
68
|
-
const useDeferredValue = wrap('useDeferredValue');
|
|
69
|
-
exports.useDeferredValue = useDeferredValue;
|
|
70
|
-
const useInsertionEffect = wrap('useInsertionEffect');
|
|
71
|
-
exports.useInsertionEffect = useInsertionEffect;
|
|
72
|
-
const useSyncExternalStore = wrap('useSyncExternalStore');
|
|
73
|
-
exports.useSyncExternalStore = useSyncExternalStore;
|
|
74
|
-
const useTransition = wrap('useTransition');
|
|
75
|
-
exports.useTransition = useTransition;
|
|
76
|
-
const version = wrap('version');
|
|
77
|
-
exports.version = version;
|
|
78
|
-
const useCallback = wrap('useCallback');
|
|
79
|
-
exports.useCallback = useCallback;
|
|
80
|
-
const useContext = wrap('useContext');
|
|
81
|
-
exports.useContext = useContext;
|
|
82
|
-
const useDebugValue = wrap('useDebugValue');
|
|
83
|
-
exports.useDebugValue = useDebugValue;
|
|
84
|
-
const useEffect = wrap('useEffect');
|
|
85
|
-
exports.useEffect = useEffect;
|
|
86
|
-
const useErrorBoundary = wrap('useErrorBoundary');
|
|
87
|
-
exports.useErrorBoundary = useErrorBoundary;
|
|
88
|
-
const useId = wrap('useId');
|
|
89
|
-
exports.useId = useId;
|
|
90
|
-
const useImperativeHandle = wrap('useImperativeHandle');
|
|
91
|
-
exports.useImperativeHandle = useImperativeHandle;
|
|
92
|
-
const useLayoutEffect = wrap('useLayoutEffect');
|
|
93
|
-
exports.useLayoutEffect = useLayoutEffect;
|
|
94
|
-
const useMemo = wrap('useMemo');
|
|
95
|
-
exports.useMemo = useMemo;
|
|
96
|
-
const useReducer = wrap('useReducer');
|
|
97
|
-
exports.useReducer = useReducer;
|
|
98
|
-
const useRef = wrap('useRef');
|
|
99
|
-
exports.useRef = useRef;
|
|
100
|
-
const useState = wrap('useState');
|
|
101
|
-
exports.useState = useState;
|
|
16
|
+
const Component = exports.Component = wrap('Component');
|
|
17
|
+
const Fragment = exports.Fragment = wrap('Fragment');
|
|
18
|
+
const createContext = exports.createContext = wrap('createContext');
|
|
19
|
+
const createElement = exports.createElement = wrap('createElement');
|
|
20
|
+
const createRef = exports.createRef = wrap('createRef');
|
|
21
|
+
const Children = exports.Children = wrap('Children');
|
|
22
|
+
const PureComponent = exports.PureComponent = wrap('PureComponent');
|
|
23
|
+
const StrictMode = exports.StrictMode = wrap('StrictMode');
|
|
24
|
+
const Suspense = exports.Suspense = wrap('Suspense');
|
|
25
|
+
const SuspenseList = exports.SuspenseList = wrap('SuspenseList');
|
|
26
|
+
const __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = wrap('__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED');
|
|
27
|
+
const cloneElement = exports.cloneElement = wrap('cloneElement');
|
|
28
|
+
const createFactory = exports.createFactory = wrap('createFactory');
|
|
29
|
+
const createPortal = exports.createPortal = wrap('createPortal');
|
|
30
|
+
var _default = exports.default = wrap('default');
|
|
31
|
+
const findDOMNode = exports.findDOMNode = wrap('findDOMNode');
|
|
32
|
+
const flushSync = exports.flushSync = wrap('flushSync');
|
|
33
|
+
const forwardRef = exports.forwardRef = wrap('forwardRef');
|
|
34
|
+
const hydrate = exports.hydrate = wrap('hydrate');
|
|
35
|
+
const isElement = exports.isElement = wrap('isElement');
|
|
36
|
+
const isFragment = exports.isFragment = wrap('isFragment');
|
|
37
|
+
const isValidElement = exports.isValidElement = wrap('isValidElement');
|
|
38
|
+
const lazy = exports.lazy = wrap('lazy');
|
|
39
|
+
const memo = exports.memo = wrap('memo');
|
|
40
|
+
const render = exports.render = wrap('render');
|
|
41
|
+
const startTransition = exports.startTransition = wrap('startTransition');
|
|
42
|
+
const unmountComponentAtNode = exports.unmountComponentAtNode = wrap('unmountComponentAtNode');
|
|
43
|
+
const unstable_batchedUpdates = exports.unstable_batchedUpdates = wrap('unstable_batchedUpdates');
|
|
44
|
+
const useDeferredValue = exports.useDeferredValue = wrap('useDeferredValue');
|
|
45
|
+
const useInsertionEffect = exports.useInsertionEffect = wrap('useInsertionEffect');
|
|
46
|
+
const useSyncExternalStore = exports.useSyncExternalStore = wrap('useSyncExternalStore');
|
|
47
|
+
const useTransition = exports.useTransition = wrap('useTransition');
|
|
48
|
+
const version = exports.version = wrap('version');
|
|
49
|
+
const useCallback = exports.useCallback = wrap('useCallback');
|
|
50
|
+
const useContext = exports.useContext = wrap('useContext');
|
|
51
|
+
const useDebugValue = exports.useDebugValue = wrap('useDebugValue');
|
|
52
|
+
const useEffect = exports.useEffect = wrap('useEffect');
|
|
53
|
+
const useErrorBoundary = exports.useErrorBoundary = wrap('useErrorBoundary');
|
|
54
|
+
const useId = exports.useId = wrap('useId');
|
|
55
|
+
const useImperativeHandle = exports.useImperativeHandle = wrap('useImperativeHandle');
|
|
56
|
+
const useLayoutEffect = exports.useLayoutEffect = wrap('useLayoutEffect');
|
|
57
|
+
const useMemo = exports.useMemo = wrap('useMemo');
|
|
58
|
+
const useReducer = exports.useReducer = wrap('useReducer');
|
|
59
|
+
const useRef = exports.useRef = wrap('useRef');
|
|
60
|
+
const useState = exports.useState = wrap('useState');
|