@adobe/exc-app 1.0.5 → 1.0.6

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.
@@ -43,6 +43,7 @@
43
43
  * [MARKETO\_ENGAGE](appapi.appids.md#marketo_engage)
44
44
  * [OFFERS](appapi.appids.md#offers)
45
45
  * [PEOPLE](appapi.appids.md#people)
46
+ * [PERMISSIONS](appapi.appids.md#permissions)
46
47
  * [PLACES\_SERVICE](appapi.appids.md#places_service)
47
48
  * [PRIMETIME](appapi.appids.md#primetime)
48
49
  * [PRIVACY\_UI](appapi.appids.md#privacy_ui)
@@ -266,6 +267,12 @@ ___
266
267
 
267
268
  ___
268
269
 
270
+ ### PERMISSIONS
271
+
272
+ • **PERMISSIONS**: = "permissionsUI"
273
+
274
+ ___
275
+
269
276
  ### PLACES\_SERVICE
270
277
 
271
278
  • **PLACES\_SERVICE**: = "places"
@@ -0,0 +1,24 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / StandardVariables
4
+
5
+ # Enumeration: StandardVariables
6
+
7
+ ## Index
8
+
9
+ ### Enumeration members
10
+
11
+ * [ACP\_FD](network.standardvariables.md#acp_fd)
12
+ * [CACHED\_TS](network.standardvariables.md#cached_ts)
13
+
14
+ ## Enumeration members
15
+
16
+ ### ACP\_FD
17
+
18
+ • **ACP\_FD**: = "acpFulfillableData"
19
+
20
+ ___
21
+
22
+ ### CACHED\_TS
23
+
24
+ • **CACHED\_TS**: = "cached.createdAt"
@@ -0,0 +1,32 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / DataDedupConfig
4
+
5
+ # Interface: DataDedupConfig
6
+
7
+ ## Hierarchy
8
+
9
+ * **DataDedupConfig**
10
+
11
+ ## Index
12
+
13
+ ### Properties
14
+
15
+ * [arrayElement](network.datadedupconfig.md#arrayelement)
16
+ * [keyField](network.datadedupconfig.md#keyfield)
17
+
18
+ ## Properties
19
+
20
+ ### arrayElement
21
+
22
+ • **arrayElement**: string
23
+
24
+ An array of elements that needs to be merged and deduped across fresh and cached data.
25
+
26
+ ___
27
+
28
+ ### keyField
29
+
30
+ • **keyField**: string
31
+
32
+ A key that will be used to deduplicate the array element.
@@ -0,0 +1,129 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / DataPrefetchContract
4
+
5
+ # Interface: DataPrefetchContract<T\>
6
+
7
+ Defines a data contract which will be executed by Unified Shell on behalf ot the requesting application.
8
+
9
+ ## Type parameters
10
+
11
+ Name |
12
+ ------ |
13
+ `T` |
14
+
15
+ ## Hierarchy
16
+
17
+ * **DataPrefetchContract**
18
+
19
+ ## Index
20
+
21
+ ### Properties
22
+
23
+ * [defaultValue](network.dataprefetchcontract.md#defaultvalue)
24
+ * [expiry](network.dataprefetchcontract.md#expiry)
25
+ * [fetchWhen](network.dataprefetchcontract.md#fetchwhen)
26
+ * [gql](network.dataprefetchcontract.md#gql)
27
+ * [isSensitive](network.dataprefetchcontract.md#issensitive)
28
+ * [key](network.dataprefetchcontract.md#key)
29
+ * [refreshData](network.dataprefetchcontract.md#refreshdata)
30
+ * [revalidate](network.dataprefetchcontract.md#revalidate)
31
+ * [scope](network.dataprefetchcontract.md#scope)
32
+ * [shared](network.dataprefetchcontract.md#shared)
33
+
34
+ ## Properties
35
+
36
+ ### defaultValue
37
+
38
+ • **defaultValue**: T
39
+
40
+ Default value to return if the data execution is skipped.
41
+
42
+ ___
43
+
44
+ ### expiry
45
+
46
+ • **expiry**: [CacheExpiry](../modules/cache.md#cacheexpiry)
47
+
48
+ Cache expiry. Can be one of the set values defined by the Cache API, or a numeric cache ttl (in seconds).
49
+
50
+ ___
51
+
52
+ ### fetchWhen
53
+
54
+ • `Optional` **fetchWhen**: [FetchCondition](network.fetchcondition.md)
55
+
56
+ Defines the conditions when certain data can be fetched.
57
+ When conditions are not met, the default value above will be returned (But not cached).
58
+
59
+ ___
60
+
61
+ ### gql
62
+
63
+ • `Optional` **gql**: [QueryDefinition](network.querydefinition.md)
64
+
65
+ GraphQL used to fulfill this data contract.
66
+ Note: Currently GraphQL is the only supported method for data contracts.
67
+
68
+ ___
69
+
70
+ ### isSensitive
71
+
72
+ • **isSensitive**: boolean
73
+
74
+ Is the data sensitive? (PII or other sensitive data).
75
+ Sensitive data can only be cached in the browser's session storage
76
+ Non-sensitive data can be cached in the standard Cache storage.
77
+
78
+ ___
79
+
80
+ ### key
81
+
82
+ • **key**: string
83
+
84
+ Unique key associated with this contract.
85
+ Will be used by the calling application to get access to the data.
86
+
87
+ ___
88
+
89
+ ### refreshData
90
+
91
+ • `Optional` **refreshData**: undefined \| { dedup?: [DataDedupConfig](network.datadedupconfig.md) ; gql?: [QueryDefinition](network.querydefinition.md) ; keepOriginal?: string[] }
92
+
93
+ Defines specific behavior for refresh.
94
+ This is optional, by default refreshing data and fetching new will yield the same results.
95
+
96
+ ___
97
+
98
+ ### revalidate
99
+
100
+ • **revalidate**: { enabled: boolean ; immediate?: undefined \| false \| true ; revalidateAfterSec?: undefined \| number }
101
+
102
+ When true, data will be fetched even when a cache is available.
103
+ In this case, the query will return the cached data and at the same time fetch fresh data from the network.
104
+ (stale-while-revalidate strategy)
105
+
106
+ #### Type declaration:
107
+
108
+ Name | Type | Description |
109
+ ------ | ------ | ------ |
110
+ `enabled` | boolean | When true, data will be fetched even when a cache is available. In this case, the query will return the cached data and at the same time fetch fresh data from the network. (stale-while-revalidate strategy) |
111
+ `immediate?` | undefined \| false \| true | If true, revalidation will be done right away If false, revalidation will be done when the browser is idle (On browsers where requestIdleCallback is supported, otherwise right away) Optional - Defaults to false |
112
+ `revalidateAfterSec?` | undefined \| number | Used in conjunction with revalidate = true. Threshold for revalidating data from the network. When set the query will return the cached data and if the cache is older than the set threshold, fetch fresh data from the network. Optional - Defaults to 0 (immediate) |
113
+
114
+ ___
115
+
116
+ ### scope
117
+
118
+ • **scope**: CacheScope
119
+
120
+ Cache scope as defined by the Cache API.
121
+
122
+ ___
123
+
124
+ ### shared
125
+
126
+ • **shared**: boolean
127
+
128
+ If true, this data will be accessible to all experience cloud applications.
129
+ Otherwise, data will be cached against the requesting application.
@@ -0,0 +1,27 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / FetchCondition
4
+
5
+ # Interface: FetchCondition
6
+
7
+ Defines the conditions when certain data can be fetched.
8
+ When conditions are not met, default data will be returned but not cached.
9
+
10
+ ## Hierarchy
11
+
12
+ * **FetchCondition**
13
+
14
+ ## Index
15
+
16
+ ### Properties
17
+
18
+ * [serviceCodes](network.fetchcondition.md#servicecodes)
19
+
20
+ ## Properties
21
+
22
+ ### serviceCodes
23
+
24
+ • `Optional` **serviceCodes**: string \| string[]
25
+
26
+ Service Codes that needs to be present (For the current org) in order to execute the query.
27
+ This is useful when a query only makes sense if a certain product is provisioned for the current user.
@@ -10,6 +10,8 @@ GQL Query containing graphql query and variables.
10
10
 
11
11
  * **GraphQLQuery**
12
12
 
13
+ ↳ [QueryDefinition](network.querydefinition.md)
14
+
13
15
  ## Index
14
16
 
15
17
  ### Properties
@@ -14,6 +14,7 @@
14
14
 
15
15
  * [fetch](network.networkapi.md#fetch)
16
16
  * [getApolloClient](network.networkapi.md#getapolloclient)
17
+ * [getPrefetched](network.networkapi.md#getprefetched)
17
18
  * [query](network.networkapi.md#query)
18
19
 
19
20
  ## Methods
@@ -87,6 +88,34 @@ GraphQL query response
87
88
 
88
89
  ___
89
90
 
91
+ ### getPrefetched
92
+
93
+ ▸ **getPrefetched**<T\>(`key`: string, `options?`: [PrefetchOptions](network.prefetchoptions.md)): Promise<[PrefetchResponse](../modules/network.md#prefetchresponse)<T\>\>
94
+
95
+ Provides an interface for querying known data.
96
+ Data querying and caching are managed in Unified Shell in advance.
97
+
98
+ This is an experimental feature.
99
+
100
+ #### Type parameters:
101
+
102
+ Name |
103
+ ------ |
104
+ `T` |
105
+
106
+ #### Parameters:
107
+
108
+ Name | Type | Description |
109
+ ------ | ------ | ------ |
110
+ `key` | string | Data Contract key |
111
+ `options?` | [PrefetchOptions](network.prefetchoptions.md) | Prefetch options |
112
+
113
+ **Returns:** Promise<[PrefetchResponse](../modules/network.md#prefetchresponse)<T\>\>
114
+
115
+ Promise for the contract execution response
116
+
117
+ ___
118
+
90
119
  ### query
91
120
 
92
121
  ▸ **query**(`request`: [QueryRequest](network.queryrequest.md)): Promise<Response\>
@@ -0,0 +1,34 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / PrefetchOptions
4
+
5
+ # Interface: PrefetchOptions
6
+
7
+ Data prefetch options
8
+
9
+ ## Hierarchy
10
+
11
+ * **PrefetchOptions**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [createdAfter](network.prefetchoptions.md#createdafter)
18
+ * [revalidateImmediately](network.prefetchoptions.md#revalidateimmediately)
19
+
20
+ ## Properties
21
+
22
+ ### createdAfter
23
+
24
+ • `Optional` **createdAfter**: undefined \| number
25
+
26
+ Must return recent data - Created after provided time
27
+
28
+ ___
29
+
30
+ ### revalidateImmediately
31
+
32
+ • `Optional` **revalidateImmediately**: undefined \| false \| true
33
+
34
+ If returning cached result, revalidate immediatelly.
@@ -0,0 +1,100 @@
1
+ **[@adobe/exc-app](../README.md)**
2
+
3
+ > [Globals](../README.md) / [network](../modules/network.md) / QueryDefinition
4
+
5
+ # Interface: QueryDefinition
6
+
7
+ Defines a GraphQL query that will be executed to fetch the data exposed by this contract.
8
+
9
+ ## Hierarchy
10
+
11
+ * [GraphQLQuery](network.graphqlquery.md)
12
+
13
+ ↳ **QueryDefinition**
14
+
15
+ ## Index
16
+
17
+ ### Properties
18
+
19
+ * [dataPath](network.querydefinition.md#datapath)
20
+ * [fetchScope](network.querydefinition.md#fetchscope)
21
+ * [ignoreErrorsOnPaths](network.querydefinition.md#ignoreerrorsonpaths)
22
+ * [query](network.querydefinition.md#query)
23
+ * [variables](network.querydefinition.md#variables)
24
+
25
+ ## Properties
26
+
27
+ ### dataPath
28
+
29
+ • `Optional` **dataPath**: undefined \| string
30
+
31
+ When provided, the data at the certain path will be returned.
32
+ If not provided, the entire GraphQL response will be returned.
33
+
34
+ ___
35
+
36
+ ### fetchScope
37
+
38
+ • **fetchScope**: [FetchScope](../enums/network.fetchscope.md)
39
+
40
+ Fetch scope. Controls which headers are sent with the query.
41
+ See fetch documentation for more info.
42
+
43
+ ___
44
+
45
+ ### ignoreErrorsOnPaths
46
+
47
+ • `Optional` **ignoreErrorsOnPaths**: string[]
48
+
49
+ Do not fail (throw) when encountering errors while processing the query if the errors
50
+ happened on certain paths.
51
+
52
+ ___
53
+
54
+ ### query
55
+
56
+ • **query**: string
57
+
58
+ *Inherited from [GraphQLQuery](network.graphqlquery.md).[query](network.graphqlquery.md#query)*
59
+
60
+ GQL Query.
61
+
62
+ ***Example:***
63
+
64
+ ```typescript
65
+ {query: `
66
+ query userBehanceQuery($userId: String!, $apiKey: String!) {
67
+ userBehance(userId: $userId, apiKey: $apiKey) {
68
+ images
69
+ }
70
+ }`
71
+ };
72
+
73
+ {query: `
74
+ query userBehanceQuery {
75
+ userBehance(userId: "123@AdobeID", apiKey: "test-app") {
76
+ images
77
+ }
78
+ }`
79
+ };
80
+ ```
81
+
82
+ ___
83
+
84
+ ### variables
85
+
86
+ • `Optional` **variables**: Record<string, any\>
87
+
88
+ *Inherited from [GraphQLQuery](network.graphqlquery.md).[variables](network.graphqlquery.md#variables)*
89
+
90
+ Query specific variables- key value pairs.
91
+
92
+ ***Example:***
93
+
94
+ ```typescript
95
+ {variables: {
96
+ apiKey: 'test-app',
97
+ userId: '123@AdobeID'
98
+ }
99
+ };
100
+ ```
@@ -21,6 +21,7 @@ External Runtime Configuration Interface
21
21
  * [baseFrameUrl](root.runtimeconfiguration.md#baseframeurl)
22
22
  * [basePath](root.runtimeconfiguration.md#basepath)
23
23
  * [baseUrl](root.runtimeconfiguration.md#baseurl)
24
+ * [cdn](root.runtimeconfiguration.md#cdn)
24
25
  * [changedProperties](root.runtimeconfiguration.md#changedproperties)
25
26
  * [discovery](root.runtimeconfiguration.md#discovery)
26
27
  * [environment](root.runtimeconfiguration.md#environment)
@@ -117,6 +118,14 @@ Base URL
117
118
 
118
119
  ___
119
120
 
121
+ ### cdn
122
+
123
+ • **cdn**: string
124
+
125
+ Environment specific CDN string.
126
+
127
+ ___
128
+
120
129
  ### changedProperties
121
130
 
122
131
  • **changedProperties**: keyof [RuntimeConfiguration](root.runtimeconfiguration.md)[]
@@ -12,12 +12,19 @@
12
12
 
13
13
  ### Properties
14
14
 
15
+ * [cdn](shell.shellinfo.md#cdn)
15
16
  * [environment](shell.shellinfo.md#environment)
16
17
  * [imsEnvironment](shell.shellinfo.md#imsenvironment)
17
18
  * [shellInfo](shell.shellinfo.md#shellinfo)
18
19
 
19
20
  ## Properties
20
21
 
22
+ ### cdn
23
+
24
+ • **cdn**: string
25
+
26
+ ___
27
+
21
28
  ### environment
22
29
 
23
30
  • **environment**: string
@@ -50,29 +50,38 @@ const queryResponse = await query({
50
50
 
51
51
  * [FetchScope](../enums/network.fetchscope.md)
52
52
  * [ROUTING](../enums/network.routing.md)
53
+ * [StandardVariables](../enums/network.standardvariables.md)
53
54
 
54
55
  ### Interfaces
55
56
 
56
57
  * [ApolloClientOptions](../interfaces/network.apolloclientoptions.md)
58
+ * [DataDedupConfig](../interfaces/network.datadedupconfig.md)
59
+ * [DataPrefetchContract](../interfaces/network.dataprefetchcontract.md)
57
60
  * [DefaultMetaData](../interfaces/network.defaultmetadata.md)
61
+ * [FetchCondition](../interfaces/network.fetchcondition.md)
58
62
  * [FetchOptions](../interfaces/network.fetchoptions.md)
59
63
  * [GraphQLQuery](../interfaces/network.graphqlquery.md)
60
64
  * [NetworkApi](../interfaces/network.networkapi.md)
65
+ * [PrefetchOptions](../interfaces/network.prefetchoptions.md)
66
+ * [QueryDefinition](../interfaces/network.querydefinition.md)
61
67
  * [QueryRequest](../interfaces/network.queryrequest.md)
62
68
 
63
69
  ### Type aliases
64
70
 
65
71
  * [FetchInit](network.md#fetchinit)
66
72
  * [GraphQLRegion](network.md#graphqlregion)
73
+ * [PrefetchResponse](network.md#prefetchresponse)
67
74
 
68
75
  ### Variables
69
76
 
70
77
  * [DEFAULT\_STATUS\_CODES\_TO\_RETRY](network.md#default_status_codes_to_retry)
78
+ * [FRESH\_MS](network.md#fresh_ms)
71
79
 
72
80
  ### Functions
73
81
 
74
82
  * [fetch](network.md#fetch)
75
83
  * [getApolloClient](network.md#getapolloclient)
84
+ * [getPrefetched](network.md#getprefetched)
76
85
  * [query](network.md#query)
77
86
 
78
87
  ## Type aliases
@@ -96,6 +105,18 @@ ___
96
105
 
97
106
  Ƭ **GraphQLRegion**: \"va7\" \| \"aus5\" \| \"nld2\"
98
107
 
108
+ ___
109
+
110
+ ### PrefetchResponse
111
+
112
+ Ƭ **PrefetchResponse**<T\>: [CacheEntry](cache.md#cacheentry)<T\> & { getFresh?: undefined \| () => Promise<[PrefetchResponse](network.md#prefetchresponse)<T\>\> }
113
+
114
+ #### Type parameters:
115
+
116
+ Name |
117
+ ------ |
118
+ `T` |
119
+
99
120
  ## Variables
100
121
 
101
122
  ### DEFAULT\_STATUS\_CODES\_TO\_RETRY
@@ -104,6 +125,12 @@ ___
104
125
 
105
126
  Default status codes which imply a transient error and can be retried.
106
127
 
128
+ ___
129
+
130
+ ### FRESH\_MS
131
+
132
+ • `Const` **FRESH\_MS**: number = 60 * 1000
133
+
107
134
  ## Functions
108
135
 
109
136
  ### fetch
@@ -175,6 +202,34 @@ GraphQL query response
175
202
 
176
203
  ___
177
204
 
205
+ ### getPrefetched
206
+
207
+ ▸ **getPrefetched**<T\>(`key`: string, `options?`: [PrefetchOptions](../interfaces/network.prefetchoptions.md)): Promise<[PrefetchResponse](network.md#prefetchresponse)<T\>\>
208
+
209
+ Provides an interface for querying known data.
210
+ Data querying and caching are managed in Unified Shell in advance.
211
+
212
+ This is an experimental feature.
213
+
214
+ #### Type parameters:
215
+
216
+ Name |
217
+ ------ |
218
+ `T` |
219
+
220
+ #### Parameters:
221
+
222
+ Name | Type | Description |
223
+ ------ | ------ | ------ |
224
+ `key` | string | Data Contract key |
225
+ `options?` | [PrefetchOptions](../interfaces/network.prefetchoptions.md) | Prefetch options |
226
+
227
+ **Returns:** Promise<[PrefetchResponse](network.md#prefetchresponse)<T\>\>
228
+
229
+ Promise for the contract execution response
230
+
231
+ ___
232
+
178
233
  ### query
179
234
 
180
235
  ▸ **query**(`input`: [QueryRequest](../interfaces/network.queryrequest.md)): Promise<Response\>
@@ -15,6 +15,10 @@ import { FetchScope, GraphQLQuery } from '../network';
15
15
  * @module network
16
16
  */
17
17
  export declare const FRESH_MS: number;
18
+ export declare enum StandardVariables {
19
+ ACP_FD = "acpFulfillableData",
20
+ CACHED_TS = "cached.createdAt"
21
+ }
18
22
  /**
19
23
  * Defines the conditions when certain data can be fetched.
20
24
  * When conditions are not met, default data will be returned but not cached.
@@ -46,6 +50,16 @@ export interface QueryDefinition extends GraphQLQuery {
46
50
  */
47
51
  ignoreErrorsOnPaths?: string[];
48
52
  }
53
+ export interface DataDedupConfig {
54
+ /**
55
+ * An array of elements that needs to be merged and deduped across fresh and cached data.
56
+ */
57
+ arrayElement: string;
58
+ /**
59
+ * A key that will be used to deduplicate the array element.
60
+ */
61
+ keyField: string;
62
+ }
49
63
  /**
50
64
  * Defines a data contract which will be executed by Unified Shell on behalf ot the requesting application.
51
65
  */
@@ -79,6 +93,24 @@ export default interface DataPrefetchContract<T> {
79
93
  * Will be used by the calling application to get access to the data.
80
94
  */
81
95
  key: string;
96
+ /**
97
+ * Defines specific behavior for refresh.
98
+ * This is optional, by default refreshing data and fetching new will yield the same results.
99
+ */
100
+ refreshData?: {
101
+ /**
102
+ * Cached & Fresh Data deduplication and merge configuration.
103
+ */
104
+ dedup?: DataDedupConfig;
105
+ /**
106
+ * GraphQL query to use for refresh.
107
+ */
108
+ gql?: QueryDefinition;
109
+ /**
110
+ * An optional array of root level elements that need to be retained from the cached data.
111
+ */
112
+ keepOriginal?: string[];
113
+ };
82
114
  /**
83
115
  * When true, data will be fetched even when a cache is available.
84
116
  * In this case, the query will return the cached data and at the same time fetch fresh data from the network.
@@ -1,9 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FRESH_MS = void 0;
3
+ exports.StandardVariables = exports.FRESH_MS = void 0;
4
4
  /**
5
5
  * @packageDocumentation
6
6
  * @module network
7
7
  */
8
8
  exports.FRESH_MS = 60 * 1000; // One minute.
9
+ var StandardVariables;
10
+ (function (StandardVariables) {
11
+ StandardVariables["ACP_FD"] = "acpFulfillableData";
12
+ StandardVariables["CACHED_TS"] = "cached.createdAt";
13
+ })(StandardVariables = exports.StandardVariables || (exports.StandardVariables = {}));
9
14
  //# sourceMappingURL=DataPrefetchContract.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DataPrefetchContract.js","sourceRoot":"","sources":["DataPrefetchContract.ts"],"names":[],"mappings":";;;AAaA;;;GAGG;AAEU,QAAA,QAAQ,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,cAAc"}
1
+ {"version":3,"file":"DataPrefetchContract.js","sourceRoot":"","sources":["DataPrefetchContract.ts"],"names":[],"mappings":";;;AAaA;;;GAGG;AAEU,QAAA,QAAQ,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,cAAc;AAEjD,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,kDAA6B,CAAA;IAC7B,mDAA8B,CAAA;AAChC,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/exc-app",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "index.js",
5
5
  "source": "index.ts",
6
6
  "scripts": {
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.5";
11
+ declare const EXC_APP_VERSION = "1.0.6";
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.5';
13
+ const EXC_APP_VERSION = '1.0.6';
14
14
  exports.default = EXC_APP_VERSION;
15
15
  //# sourceMappingURL=version.js.map
@@ -1,79 +0,0 @@
1
- /* eslint-disable */
2
- var jumpToCode = (function init() {
3
- // Classes of code we would like to highlight in the file view
4
- var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
5
-
6
- // Elements to highlight in the file listing view
7
- var fileListingElements = ['td.pct.low'];
8
-
9
- // We don't want to select elements that are direct descendants of another match
10
- var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
11
-
12
- // Selecter that finds elements on the page to which we can jump
13
- var selector =
14
- fileListingElements.join(', ') +
15
- ', ' +
16
- notSelector +
17
- missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
18
-
19
- // The NodeList of matching elements
20
- var missingCoverageElements = document.querySelectorAll(selector);
21
-
22
- var currentIndex;
23
-
24
- function toggleClass(index) {
25
- missingCoverageElements
26
- .item(currentIndex)
27
- .classList.remove('highlighted');
28
- missingCoverageElements.item(index).classList.add('highlighted');
29
- }
30
-
31
- function makeCurrent(index) {
32
- toggleClass(index);
33
- currentIndex = index;
34
- missingCoverageElements.item(index).scrollIntoView({
35
- behavior: 'smooth',
36
- block: 'center',
37
- inline: 'center'
38
- });
39
- }
40
-
41
- function goToPrevious() {
42
- var nextIndex = 0;
43
- if (typeof currentIndex !== 'number' || currentIndex === 0) {
44
- nextIndex = missingCoverageElements.length - 1;
45
- } else if (missingCoverageElements.length > 1) {
46
- nextIndex = currentIndex - 1;
47
- }
48
-
49
- makeCurrent(nextIndex);
50
- }
51
-
52
- function goToNext() {
53
- var nextIndex = 0;
54
-
55
- if (
56
- typeof currentIndex === 'number' &&
57
- currentIndex < missingCoverageElements.length - 1
58
- ) {
59
- nextIndex = currentIndex + 1;
60
- }
61
-
62
- makeCurrent(nextIndex);
63
- }
64
-
65
- return function jump(event) {
66
- switch (event.which) {
67
- case 78: // n
68
- case 74: // j
69
- goToNext();
70
- break;
71
- case 66: // b
72
- case 75: // k
73
- case 80: // p
74
- goToPrevious();
75
- break;
76
- }
77
- };
78
- })();
79
- window.addEventListener('keydown', jumpToCode);
@@ -1,2 +0,0 @@
1
- /* eslint-disable */
2
- window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.ignoreCase){ac=true}else{if(/[a-z]/i.test(ae.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){S=true;ac=false;break}}}var Y={b:8,t:9,n:10,v:11,f:12,r:13};function ab(ah){var ag=ah.charCodeAt(0);if(ag!==92){return ag}var af=ah.charAt(1);ag=Y[af];if(ag){return ag}else{if("0"<=af&&af<="7"){return parseInt(ah.substring(1),8)}else{if(af==="u"||af==="x"){return parseInt(ah.substring(2),16)}else{return ah.charCodeAt(1)}}}}function T(af){if(af<32){return(af<16?"\\x0":"\\x")+af.toString(16)}var ag=String.fromCharCode(af);if(ag==="\\"||ag==="-"||ag==="["||ag==="]"){ag="\\"+ag}return ag}function X(am){var aq=am.substring(1,am.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g"));var ak=[];var af=[];var ao=aq[0]==="^";for(var ar=ao?1:0,aj=aq.length;ar<aj;++ar){var ah=aq[ar];if(/\\[bdsw]/i.test(ah)){ak.push(ah)}else{var ag=ab(ah);var al;if(ar+2<aj&&"-"===aq[ar+1]){al=ab(aq[ar+2]);ar+=2}else{al=ag}af.push([ag,al]);if(!(al<65||ag>122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;ar<af.length;++ar){var at=af[ar];if(at[0]<=ap[1]+1){ap[1]=Math.max(ap[1],at[1])}else{ai.push(ap=at)}}var an=["["];if(ao){an.push("^")}an.push.apply(an,ak);for(var ar=0;ar<ai.length;++ar){var at=ai[ar];an.push(T(at[0]));if(at[1]>at[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){an[af]=-1}}}}for(var ak=1;ak<an.length;++ak){if(-1===an[ak]){an[ak]=++ad}}for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am;if(an[am]===undefined){aj[ak]="(?:"}}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){aj[ak]="\\"+an[am]}}}}for(var ak=0,am=0;ak<ah;++ak){if("^"===aj[ak]&&"^"!==aj[ak+1]){aj[ak]=""}}if(al.ignoreCase&&S){for(var ak=0;ak<ah;++ak){var ag=aj[ak];var ai=ag.charAt(0);if(ag.length>=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.global||ae.multiline){throw new Error(""+ae)}aa.push("(?:"+W(ae)+")")}return new RegExp(aa.join("|"),ac?"gi":"g")}function a(V){var U=/(?:^|\s)nocode(?:\s|$)/;var X=[];var T=0;var Z=[];var W=0;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=document.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Y=S&&"pre"===S.substring(0,3);function aa(ab){switch(ab.nodeType){case 1:if(U.test(ab.className)){return}for(var ae=ab.firstChild;ae;ae=ae.nextSibling){aa(ae)}var ad=ab.nodeName;if("BR"===ad||"LI"===ad){X[W]="\n";Z[W<<1]=T++;Z[(W++<<1)|1]=ab}break;case 3:case 4:var ac=ab.nodeValue;if(ac.length){if(!Y){ac=ac.replace(/[ \t\r\n]+/g," ")}else{ac=ac.replace(/\r\n?/g,"\n")}X[W]=ac;Z[W<<1]=T;T+=ac.length;Z[(W++<<1)|1]=ab}break}}aa(V);return{sourceCode:X.join("").replace(/\n$/,""),spans:Z}}function B(S,U,W,T){if(!U){return}var V={sourceCode:U,basePos:S};W(V);T.push.apply(T,V.decorations)}var v=/\S/;function o(S){var V=undefined;for(var U=S.firstChild;U;U=U.nextSibling){var T=U.nodeType;V=(T===1)?(V?S:U):(T===3)?(v.test(U.nodeValue)?S:V):V}return V===S?undefined:V}function g(U,T){var S={};var V;(function(){var ad=U.concat(T);var ah=[];var ag={};for(var ab=0,Z=ad.length;ab<Z;++ab){var Y=ad[ab];var ac=Y[3];if(ac){for(var ae=ac.length;--ae>=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae<aq;++ae){var ag=an[ae];var ap=aj[ag];var ai=void 0;var am;if(typeof ap==="string"){am=false}else{var aa=S[ag.charAt(0)];if(aa){ai=ag.match(aa[1]);ap=aa[0]}else{for(var ao=0;ao<X;++ao){aa=T[ao];ai=ag.match(aa[1]);if(ai){ap=aa[0];break}}if(!ai){ap=F}}am=ap.length>=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y<W.length;++Y){ae(W[Y])}if(ag===(ag|0)){W[0].setAttribute("value",ag)}var aa=ac.createElement("OL");aa.className="linenums";var X=Math.max(0,((ag-1))|0)||0;for(var Y=0,T=W.length;Y<T;++Y){af=W[Y];af.className="L"+((Y+X)%10);if(!af.firstChild){af.appendChild(ac.createTextNode("\xA0"))}aa.appendChild(af)}V.appendChild(aa)}function D(ac){var aj=/\bMSIE\b/.test(navigator.userAgent);var am=/\n/g;var al=ac.sourceCode;var an=al.length;var V=0;var aa=ac.spans;var T=aa.length;var ah=0;var X=ac.decorations;var Y=X.length;var Z=0;X[Y]=an;var ar,aq;for(aq=ar=0;aq<Y;){if(X[aq]!==X[aq+2]){X[ar++]=X[aq++];X[ar++]=X[aq++]}else{aq+=2}}Y=ar;for(aq=ar=0;aq<Y;){var at=X[aq];var ab=X[aq+1];var W=aq+2;while(W+2<=Y&&X[W+1]===ab){W+=2}X[ar++]=at;X[ar++]=ab;aq=W}Y=X.length=ar;var ae=null;while(ah<T){var af=aa[ah];var S=aa[ah+2]||an;var ag=X[Z];var ap=X[Z+2]||an;var W=Math.min(S,ap);var ak=aa[ah+1];var U;if(ak.nodeType!==1&&(U=al.substring(V,W))){if(aj){U=U.replace(am,"\r")}ak.nodeValue=U;var ai=ak.ownerDocument;var ao=ai.createElement("SPAN");ao.className=X[Z+1];var ad=ak.parentNode;ad.replaceChild(ao,ak);ao.appendChild(ak);if(V<S){aa[ah+1]=ak=ai.createTextNode(al.substring(W,S));ad.insertBefore(ak,ao.nextSibling)}}V=W;if(V>=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*</.test(S)?"default-markup":"default-code"}return t[T]}c(K,["default-code"]);c(g([],[[F,/^[^<?]+/],[E,/^<!\w[^>]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa<ac.length;++aa){for(var Z=0,V=ac[aa].length;Z<V;++Z){T.push(ac[aa][Z])}}ac=null;var W=Date;if(!W.now){W={now:function(){return +(new Date)}}}var X=0;var S;var ab=/\blang(?:uage)?-([\w.]+)(?!\S)/;var ae=/\bprettyprint\b/;function U(){var ag=(window.PR_SHOULD_USE_CONTINUATION?W.now()+250:Infinity);for(;X<T.length&&W.now()<ag;X++){var aj=T[X];var ai=aj.className;if(ai.indexOf("prettyprint")>=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X<T.length){setTimeout(U,250)}else{if(ad){ad()}}}U()}window.prettyPrintOne=y;window.prettyPrint=b;window.PR={createSimpleLexer:g,registerLangHandler:c,sourceDecorator:i,PR_ATTRIB_NAME:P,PR_ATTRIB_VALUE:n,PR_COMMENT:j,PR_DECLARATION:E,PR_KEYWORD:z,PR_LITERAL:G,PR_NOCODE:N,PR_PLAIN:F,PR_PUNCTUATION:L,PR_SOURCE:J,PR_STRING:C,PR_TAG:m,PR_TYPE:O}})();PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_DECLARATION,/^<!\w[^>]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^<script\b[^>]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:<!--|-->)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]);
@@ -1,170 +0,0 @@
1
- /* eslint-disable */
2
- var addSorting = (function() {
3
- 'use strict';
4
- var cols,
5
- currentSort = {
6
- index: 0,
7
- desc: false
8
- };
9
-
10
- // returns the summary table element
11
- function getTable() {
12
- return document.querySelector('.coverage-summary');
13
- }
14
- // returns the thead element of the summary table
15
- function getTableHeader() {
16
- return getTable().querySelector('thead tr');
17
- }
18
- // returns the tbody element of the summary table
19
- function getTableBody() {
20
- return getTable().querySelector('tbody');
21
- }
22
- // returns the th element for nth column
23
- function getNthColumn(n) {
24
- return getTableHeader().querySelectorAll('th')[n];
25
- }
26
-
27
- // loads all columns
28
- function loadColumns() {
29
- var colNodes = getTableHeader().querySelectorAll('th'),
30
- colNode,
31
- cols = [],
32
- col,
33
- i;
34
-
35
- for (i = 0; i < colNodes.length; i += 1) {
36
- colNode = colNodes[i];
37
- col = {
38
- key: colNode.getAttribute('data-col'),
39
- sortable: !colNode.getAttribute('data-nosort'),
40
- type: colNode.getAttribute('data-type') || 'string'
41
- };
42
- cols.push(col);
43
- if (col.sortable) {
44
- col.defaultDescSort = col.type === 'number';
45
- colNode.innerHTML =
46
- colNode.innerHTML + '<span class="sorter"></span>';
47
- }
48
- }
49
- return cols;
50
- }
51
- // attaches a data attribute to every tr element with an object
52
- // of data values keyed by column name
53
- function loadRowData(tableRow) {
54
- var tableCols = tableRow.querySelectorAll('td'),
55
- colNode,
56
- col,
57
- data = {},
58
- i,
59
- val;
60
- for (i = 0; i < tableCols.length; i += 1) {
61
- colNode = tableCols[i];
62
- col = cols[i];
63
- val = colNode.getAttribute('data-value');
64
- if (col.type === 'number') {
65
- val = Number(val);
66
- }
67
- data[col.key] = val;
68
- }
69
- return data;
70
- }
71
- // loads all row data
72
- function loadData() {
73
- var rows = getTableBody().querySelectorAll('tr'),
74
- i;
75
-
76
- for (i = 0; i < rows.length; i += 1) {
77
- rows[i].data = loadRowData(rows[i]);
78
- }
79
- }
80
- // sorts the table using the data for the ith column
81
- function sortByIndex(index, desc) {
82
- var key = cols[index].key,
83
- sorter = function(a, b) {
84
- a = a.data[key];
85
- b = b.data[key];
86
- return a < b ? -1 : a > b ? 1 : 0;
87
- },
88
- finalSorter = sorter,
89
- tableBody = document.querySelector('.coverage-summary tbody'),
90
- rowNodes = tableBody.querySelectorAll('tr'),
91
- rows = [],
92
- i;
93
-
94
- if (desc) {
95
- finalSorter = function(a, b) {
96
- return -1 * sorter(a, b);
97
- };
98
- }
99
-
100
- for (i = 0; i < rowNodes.length; i += 1) {
101
- rows.push(rowNodes[i]);
102
- tableBody.removeChild(rowNodes[i]);
103
- }
104
-
105
- rows.sort(finalSorter);
106
-
107
- for (i = 0; i < rows.length; i += 1) {
108
- tableBody.appendChild(rows[i]);
109
- }
110
- }
111
- // removes sort indicators for current column being sorted
112
- function removeSortIndicators() {
113
- var col = getNthColumn(currentSort.index),
114
- cls = col.className;
115
-
116
- cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
117
- col.className = cls;
118
- }
119
- // adds sort indicators for current column being sorted
120
- function addSortIndicators() {
121
- getNthColumn(currentSort.index).className += currentSort.desc
122
- ? ' sorted-desc'
123
- : ' sorted';
124
- }
125
- // adds event listeners for all sorter widgets
126
- function enableUI() {
127
- var i,
128
- el,
129
- ithSorter = function ithSorter(i) {
130
- var col = cols[i];
131
-
132
- return function() {
133
- var desc = col.defaultDescSort;
134
-
135
- if (currentSort.index === i) {
136
- desc = !currentSort.desc;
137
- }
138
- sortByIndex(i, desc);
139
- removeSortIndicators();
140
- currentSort.index = i;
141
- currentSort.desc = desc;
142
- addSortIndicators();
143
- };
144
- };
145
- for (i = 0; i < cols.length; i += 1) {
146
- if (cols[i].sortable) {
147
- // add the click event handler on the th so users
148
- // dont have to click on those tiny arrows
149
- el = getNthColumn(i).querySelector('.sorter').parentElement;
150
- if (el.addEventListener) {
151
- el.addEventListener('click', ithSorter(i));
152
- } else {
153
- el.attachEvent('onclick', ithSorter(i));
154
- }
155
- }
156
- }
157
- }
158
- // adds sorting functionality to the UI
159
- return function() {
160
- if (!getTable()) {
161
- return;
162
- }
163
- cols = loadColumns();
164
- loadData();
165
- addSortIndicators();
166
- enableUI();
167
- };
168
- })();
169
-
170
- window.addEventListener('load', addSorting);
@@ -1,35 +0,0 @@
1
- /*************************************************************************
2
- * Copyright 2022 Adobe
3
- * All Rights Reserved.
4
- *
5
- * NOTICE: Adobe permits you to use, modify, and distribute this file in
6
- * accordance with the terms of the Adobe license agreement accompanying
7
- * it. If you have received this file from a source other than Adobe,
8
- * then your use, modification, or distribution of it requires the prior
9
- * written permission of Adobe.
10
- **************************************************************************/
11
- import { CacheExpiry, CacheScope } from '../cache';
12
- import { FetchScope } from '../network';
13
- export interface FetchCondition {
14
- serviceCodes?: string | string[];
15
- }
16
- export interface QueryContract<V> {
17
- fetchScope: FetchScope;
18
- ignoreErrorsOnPaths?: string[];
19
- query: string;
20
- root?: string;
21
- variables: V;
22
- }
23
- interface DataContract<T, V = undefined> {
24
- defaultValue: T;
25
- expiry: CacheExpiry;
26
- fetchWhen?: FetchCondition;
27
- gql?: QueryContract<V>;
28
- isSensitive: boolean;
29
- key: string;
30
- revalidate: boolean;
31
- revalidateAfterSec?: number;
32
- scope: CacheScope;
33
- shared: boolean;
34
- }
35
- export default DataContract;
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=DataContract.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DataContract.js","sourceRoot":"","sources":["DataContract.ts"],"names":[],"mappings":""}