@adobe/exc-app 1.0.8 → 1.0.11
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/appapi.d.ts +3 -1
- package/appapi.js +4 -2
- package/appapi.js.map +1 -1
- package/build/preBuild.js +1 -1
- package/cache.js +3 -3
- package/cache.js.map +1 -1
- package/capabilityapi.d.ts +2 -0
- package/capabilityapi.js +3 -1
- package/capabilityapi.js.map +1 -1
- package/component.js +3 -3
- package/component.js.map +1 -1
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/helpcenter.d.ts +34 -0
- package/helpcenter.js +8 -1
- package/helpcenter.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/internal.js +12 -12
- package/internal.js.map +1 -1
- package/jest.config.js +0 -1
- package/metrics.js +1 -1
- package/metrics.js.map +1 -1
- package/network/DataContract.d.ts +35 -0
- package/network/DataContract.js +3 -0
- package/network/DataContract.js.map +1 -0
- package/network.js +4 -4
- package/network.js.map +1 -1
- package/nps.js +1 -1
- package/nps.js.map +1 -1
- package/orgswitcher.js +1 -1
- package/orgswitcher.js.map +1 -1
- package/package.json +3 -3
- package/page.js +1 -1
- package/page.js.map +1 -1
- package/permissions.js +1 -1
- package/permissions.js.map +1 -1
- package/pulse.js +3 -3
- package/pulse.js.map +1 -1
- package/session.js +3 -3
- package/session.js.map +1 -1
- package/settings.js +2 -2
- package/settings.js.map +1 -1
- package/shell.js +4 -4
- package/shell.js.map +1 -1
- package/sidebar.js +1 -1
- package/sidebar.js.map +1 -1
- package/sidenav.js +10 -10
- package/sidenav.js.map +1 -1
- package/tests/appapi.test.js +1 -1
- package/tests/capabilityapi.test.js +1 -1
- package/tests/component.test.js +1 -1
- package/tests/helpCenter.test.js +30 -1
- package/tests/helpCenter.test.js.map +1 -1
- package/tests/index.test.js +4 -4
- package/tests/index.test.js.map +1 -1
- package/tests/network.test.js +4 -4
- package/tests/network.test.js.map +1 -1
- package/topbar.js +1 -1
- package/topbar.js.map +1 -1
- package/user.js +10 -10
- package/user.js.map +1 -1
- package/userprofile.js +1 -1
- package/userprofile.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
package/user.js
CHANGED
|
@@ -13,38 +13,38 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
13
13
|
const Global_1 = require("./src/Global");
|
|
14
14
|
const user = {
|
|
15
15
|
authExpired: () => {
|
|
16
|
-
return Global_1.getImpl('user')().authExpired();
|
|
16
|
+
return (0, Global_1.getImpl)('user')().authExpired();
|
|
17
17
|
},
|
|
18
18
|
emit: (type, evt) => {
|
|
19
|
-
return Global_1.getImpl('user')().emit(type, evt);
|
|
19
|
+
return (0, Global_1.getImpl)('user')().emit(type, evt);
|
|
20
20
|
},
|
|
21
21
|
get: params => {
|
|
22
|
-
return Global_1.getImpl('user')().get(params);
|
|
22
|
+
return (0, Global_1.getImpl)('user')().get(params);
|
|
23
23
|
},
|
|
24
24
|
getCustomToken: (ims) => {
|
|
25
|
-
return Global_1.getImpl('user')().getCustomToken(ims);
|
|
25
|
+
return (0, Global_1.getImpl)('user')().getCustomToken(ims);
|
|
26
26
|
},
|
|
27
27
|
off: (type, handler) => {
|
|
28
|
-
return Global_1.getImpl('user')().off(type, handler);
|
|
28
|
+
return (0, Global_1.getImpl)('user')().off(type, handler);
|
|
29
29
|
},
|
|
30
30
|
on: (type, handler) => {
|
|
31
|
-
return Global_1.getImpl('user')().on(type, handler);
|
|
31
|
+
return (0, Global_1.getImpl)('user')().on(type, handler);
|
|
32
32
|
}
|
|
33
33
|
};
|
|
34
34
|
Object.defineProperty(user, 'logoutUrl', {
|
|
35
35
|
get: () => {
|
|
36
|
-
return Global_1.getImpl('user')().logoutUrl;
|
|
36
|
+
return (0, Global_1.getImpl)('user')().logoutUrl;
|
|
37
37
|
},
|
|
38
38
|
set: (value) => {
|
|
39
|
-
Global_1.getImpl('user')().logoutUrl = value;
|
|
39
|
+
(0, Global_1.getImpl)('user')().logoutUrl = value;
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
Object.defineProperty(user, 'showLanguagePicker', {
|
|
43
43
|
get: () => {
|
|
44
|
-
return Global_1.getImpl('user')().showLanguagePicker;
|
|
44
|
+
return (0, Global_1.getImpl)('user')().showLanguagePicker;
|
|
45
45
|
},
|
|
46
46
|
set: (value) => {
|
|
47
|
-
Global_1.getImpl('user')().showLanguagePicker = value;
|
|
47
|
+
(0, Global_1.getImpl)('user')().showLanguagePicker = value;
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
50
|
exports.default = user;
|
package/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["user.ts"],"names":[],"mappings":";AAAA;;;;;;;;;4EAS4E;;AAqF5E,yCAAqC;AAqGrC,MAAM,IAAI,GAAG;IACX,WAAW,EAAE,GAAG,EAAE;QAChB,OAAO,gBAAO,
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["user.ts"],"names":[],"mappings":";AAAA;;;;;;;;;4EAS4E;;AAqF5E,yCAAqC;AAqGrC,MAAM,IAAI,GAAG;IACX,WAAW,EAAE,GAAG,EAAE;QAChB,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,WAAW,EAAE,CAAC;IACzC,CAAC;IACD,IAAI,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE;QAClB,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC3C,CAAC;IACD,GAAG,EAAE,MAAM,CAAC,EAAE;QACZ,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACvC,CAAC;IACD,cAAc,EAAE,CAAC,GAAG,EAAE,EAAE;QACtB,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;IAC/C,CAAC;IACD,GAAG,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;QACrB,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC9C,CAAC;IACD,EAAE,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;QACpB,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC7C,CAAC;CACS,CAAC;AAEb,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE;IACvC,GAAG,EAAE,GAAG,EAAE;QACR,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,SAAS,CAAC;IACrC,CAAC;IACD,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;QACb,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,SAAS,GAAG,KAAK,CAAC;IACtC,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,oBAAoB,EAAE;IAChD,GAAG,EAAE,GAAwB,EAAE;QAC7B,OAAO,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,kBAAkB,CAAC;IAC9C,CAAC;IACD,GAAG,EAAE,CAAC,KAAc,EAAE,EAAE;QACtB,IAAA,gBAAO,EAAC,MAAM,CAAC,EAAE,CAAC,kBAAkB,GAAG,KAAK,CAAC;IAC/C,CAAC;CACF,CAAC,CAAC;AAEH,kBAAe,IAAI,CAAC"}
|
package/userprofile.js
CHANGED
|
@@ -40,7 +40,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40
40
|
* @module userProfile
|
|
41
41
|
*/
|
|
42
42
|
const Global_1 = require("./src/Global");
|
|
43
|
-
const userProfile = Global_1.connect('userProfile', [
|
|
43
|
+
const userProfile = (0, Global_1.connect)('userProfile', [
|
|
44
44
|
['setButtons', true]
|
|
45
45
|
]);
|
|
46
46
|
exports.default = userProfile;
|
package/userprofile.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userprofile.js","sourceRoot":"","sources":["userprofile.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,yCAAqC;AAiDrC,MAAM,WAAW,GAAG,gBAAO,
|
|
1
|
+
{"version":3,"file":"userprofile.js","sourceRoot":"","sources":["userprofile.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,yCAAqC;AAiDrC,MAAM,WAAW,GAAG,IAAA,gBAAO,EAAC,aAAa,EAAE;IACzC,CAAC,YAAY,EAAE,IAAI,CAAC;CACrB,CAAC,CAAC;AAEH,kBAAe,WAAW,CAAC"}
|
package/version.d.ts
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* then your use, modification, or distribution of it requires the prior
|
|
9
9
|
* written permission of Adobe.
|
|
10
10
|
**************************************************************************/
|
|
11
|
-
declare const EXC_APP_VERSION = "1.0.
|
|
11
|
+
declare const EXC_APP_VERSION = "1.0.11";
|
|
12
12
|
export default EXC_APP_VERSION;
|
package/version.js
CHANGED
|
@@ -10,6 +10,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
* then your use, modification, or distribution of it requires the prior
|
|
11
11
|
* written permission of Adobe.
|
|
12
12
|
**************************************************************************/
|
|
13
|
-
const EXC_APP_VERSION = '1.0.
|
|
13
|
+
const EXC_APP_VERSION = '1.0.11';
|
|
14
14
|
exports.default = EXC_APP_VERSION;
|
|
15
15
|
//# sourceMappingURL=version.js.map
|
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E,MAAM,eAAe,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E,MAAM,eAAe,GAAG,QAAQ,CAAC;AAEjC,kBAAe,eAAe,CAAC"}
|