@esri/hub-common 20.22.0 → 20.23.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layout-shared-types.js","sourceRoot":"","sources":["../../../src/layouts/layout-shared-types.ts"],"names":[],"mappings":"AAaA,8DAA8D;AAC9D,MAAM,CAAC,MAAM,WAAW,GAA+B;IACrD,EAAE,EAAE,CAAC;IACL,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,IAAI;CACV,CAAC;
|
|
1
|
+
{"version":3,"file":"layout-shared-types.js","sourceRoot":"","sources":["../../../src/layouts/layout-shared-types.ts"],"names":[],"mappings":"AAaA,8DAA8D;AAC9D,MAAM,CAAC,MAAM,WAAW,GAA+B;IACrD,EAAE,EAAE,CAAC;IACL,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,IAAI;CACV,CAAC;AAudF;;;;GAIG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,uBAAuB;IACvB,mBAAmB;IACnB,sBAAsB;IACtB,gBAAgB;IAChB,cAAc;IACd,gBAAgB;IAChB,kBAAkB;IAClB,yBAAyB;IACzB,kBAAkB;IAClB,uBAAuB;IACvB,iBAAiB;IACjB,qBAAqB;IACrB,4BAA4B;IAC5B,oBAAoB;IACpB,qBAAqB;IACrB,gCAAgC;IAChC,qCAAqC;IACrC,+BAA+B;IAC/B,gCAAgC;IAChC,qCAAqC;IACrC,wBAAwB;IACxB,KAAK;CACG,CAAC;AAIX;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,gCAAgC;IAChC,uBAAuB;IACvB,2BAA2B;IAC3B,8BAA8B;IAC9B,4BAA4B;IAC5B,8BAA8B;CACtB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layout-shared-types.js","sourceRoot":"","sources":["../../../src/layouts/layout-shared-types.ts"],"names":[],"mappings":";;;AAaA,8DAA8D;AACjD,QAAA,WAAW,GAA+B;IACrD,EAAE,EAAE,CAAC;IACL,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,IAAI;CACV,CAAC;
|
|
1
|
+
{"version":3,"file":"layout-shared-types.js","sourceRoot":"","sources":["../../../src/layouts/layout-shared-types.ts"],"names":[],"mappings":";;;AAaA,8DAA8D;AACjD,QAAA,WAAW,GAA+B;IACrD,EAAE,EAAE,CAAC;IACL,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,GAAG;IACP,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,IAAI;CACV,CAAC;AAudF;;;;GAIG;AACU,QAAA,cAAc,GAAG;IAC5B,uBAAuB;IACvB,mBAAmB;IACnB,sBAAsB;IACtB,gBAAgB;IAChB,cAAc;IACd,gBAAgB;IAChB,kBAAkB;IAClB,yBAAyB;IACzB,kBAAkB;IAClB,uBAAuB;IACvB,iBAAiB;IACjB,qBAAqB;IACrB,4BAA4B;IAC5B,oBAAoB;IACpB,qBAAqB;IACrB,gCAAgC;IAChC,qCAAqC;IACrC,+BAA+B;IAC/B,gCAAgC;IAChC,qCAAqC;IACrC,wBAAwB;IACxB,KAAK;CACG,CAAC;AAIX;;;GAGG;AACU,QAAA,gBAAgB,GAAG;IAC9B,gCAAgC;IAChC,uBAAuB;IACvB,2BAA2B;IAC3B,8BAA8B;IAC9B,4BAA4B;IAC5B,8BAA8B;CACtB,CAAC"}
|
|
@@ -142,8 +142,8 @@ interface ILayoutNodeVisibilityBase {
|
|
|
142
142
|
}
|
|
143
143
|
export interface ILayoutNodeVisibilityStatic extends ILayoutNodeVisibilityBase {
|
|
144
144
|
kind: "static";
|
|
145
|
-
/** whether the node is
|
|
146
|
-
|
|
145
|
+
/** whether the node is hidden or not */
|
|
146
|
+
isHidden: boolean;
|
|
147
147
|
}
|
|
148
148
|
export interface ILayoutNodeVisibilityGroup extends ILayoutNodeVisibilityBase {
|
|
149
149
|
kind: "group";
|
|
@@ -269,6 +269,12 @@ export type HTMLConfigurableLayoutNodeElement = HTMLElement & IConfigurableLayou
|
|
|
269
269
|
* layout node.
|
|
270
270
|
*/
|
|
271
271
|
export interface ILayoutNodeConfig {
|
|
272
|
+
/**
|
|
273
|
+
* Human-readable name of the layout node.
|
|
274
|
+
* Used internally for logging purposes
|
|
275
|
+
* (e.g. telemetry, etc.)
|
|
276
|
+
*/
|
|
277
|
+
name: string;
|
|
272
278
|
/** Tag of the layout node. */
|
|
273
279
|
tag: LayoutNodeTag;
|
|
274
280
|
/** Whether the node is editable. */
|