@esri/hub-common 9.46.1 → 9.47.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.
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Hub Timeline Definition
|
|
3
3
|
*/
|
|
4
4
|
export interface IHubTimeline {
|
|
5
|
+
schemaVersion: number;
|
|
5
6
|
title: string;
|
|
6
7
|
description: string;
|
|
7
8
|
stages: IHubStage[];
|
|
@@ -27,8 +28,22 @@ export interface IHubStage {
|
|
|
27
28
|
* Stage Description
|
|
28
29
|
*/
|
|
29
30
|
description: string;
|
|
31
|
+
/**
|
|
32
|
+
* Stage Link
|
|
33
|
+
*/
|
|
34
|
+
link?: IHubStageLink;
|
|
30
35
|
/**
|
|
31
36
|
* Stage status
|
|
32
37
|
*/
|
|
33
38
|
status: string;
|
|
34
39
|
}
|
|
40
|
+
export interface IHubStageLink {
|
|
41
|
+
/**
|
|
42
|
+
* Link href
|
|
43
|
+
*/
|
|
44
|
+
href: string;
|
|
45
|
+
/**
|
|
46
|
+
* Link display title text
|
|
47
|
+
*/
|
|
48
|
+
title?: string;
|
|
49
|
+
}
|
package/dist/umd/common.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* @preserve
|
|
2
|
-
* @esri/hub-common - v9.46.
|
|
2
|
+
* @esri/hub-common - v9.46.1 - Tue Jul 19 2022 15:08:51 GMT+0000 (Coordinated Universal Time)
|
|
3
3
|
* Copyright (c) 2022 Environmental Systems Research Institute, Inc.
|
|
4
4
|
* Apache-2.0
|
|
5
5
|
*/
|