@vertigis/workflow 5.33.0 → 5.34.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.
Files changed (195) hide show
  1. package/Activator.d.ts +6 -2
  2. package/Collections.d.ts +8 -5
  3. package/EnumUtils.d.ts +1 -0
  4. package/Errors.d.ts +10 -1
  5. package/Errors.js +1 -1
  6. package/Hooks.d.ts +4 -1
  7. package/IActivityHandler.d.ts +19 -5
  8. package/LanguageStringUtils.js +1 -1
  9. package/ProgramInspectorFacility.d.ts +1 -0
  10. package/Task.d.ts +1 -0
  11. package/activities/app/GetApplicationInfo.d.ts +4 -1
  12. package/activities/app/GetUserInfo.d.ts +4 -1
  13. package/activities/app/RunCommand.d.ts +4 -1
  14. package/activities/app/RunOperation.d.ts +8 -2
  15. package/activities/arcgis/AddGraphics.d.ts +8 -2
  16. package/activities/arcgis/MapProvider.d.ts +4 -1
  17. package/activities/arcgis/QueryTask.d.ts +8 -2
  18. package/activities/arcgis/SetMap.d.ts +4 -1
  19. package/activities/arcgis/ShowResults.d.ts +3 -0
  20. package/activities/arcgis/runUtils.d.ts +5 -1
  21. package/activities/core/ChannelProvider.d.ts +1 -0
  22. package/activities/core/converters.d.ts +1 -1
  23. package/activities/forms/DisplayForm.d.ts +4 -1
  24. package/activities/forms/FormRenderer.d.ts +1 -0
  25. package/activities/forms/FormRenderer.js +1 -1
  26. package/activities/forms/SetFormElementProperty.d.ts +1 -1
  27. package/activities/index.d.ts +1 -0
  28. package/activities/index.js +1 -1
  29. package/activities/pdf/AddGeoreferenceToPdf.d.ts +19 -0
  30. package/activities/pdf/AddGeoreferenceToPdf.js +1 -0
  31. package/activities/ui/Alert.d.ts +4 -1
  32. package/activities/ui/Confirm.d.ts +8 -2
  33. package/activities/ui/Prompt.d.ts +8 -2
  34. package/definition/Program.d.ts +4 -1
  35. package/definition/ProgramInspector.d.ts +4 -1
  36. package/definition/Reference.d.ts +4 -1
  37. package/diagnostics/ConsoleDebugLogger.d.ts +4 -1
  38. package/diagnostics/logging.d.ts +4 -1
  39. package/execution/ActivityLoader.d.ts +4 -1
  40. package/execution/Engine.d.ts +16 -4
  41. package/execution/IDebugSession.d.ts +4 -1
  42. package/forms/Calendar.d.ts +1 -1
  43. package/forms/FormComponent.d.ts +4 -3
  44. package/forms/FormComponent.js +1 -1
  45. package/forms/FormDefinition.d.ts +91 -15
  46. package/forms/FormElement.d.ts +3 -17
  47. package/forms/FormElement.js +1 -1
  48. package/forms/FormHost.d.ts +20 -6
  49. package/forms/FormHost.js +1 -1
  50. package/forms/FormPresenterHost.d.ts +17 -4
  51. package/forms/common.d.ts +6 -7
  52. package/forms/common.js +1 -1
  53. package/forms/components/AccordionGroup.d.ts +15 -0
  54. package/forms/components/AccordionGroup.js +1 -0
  55. package/forms/components/AutoComplete.d.ts +7 -0
  56. package/forms/components/AutoComplete.js +1 -0
  57. package/forms/components/ButtonBar.d.ts +13 -0
  58. package/forms/components/ButtonBar.js +1 -0
  59. package/forms/components/CheckBox.d.ts +7 -0
  60. package/forms/components/CheckBox.js +1 -0
  61. package/forms/components/CheckGroup.d.ts +7 -0
  62. package/forms/components/CheckGroup.js +1 -0
  63. package/forms/components/Custom.d.ts +7 -0
  64. package/forms/components/Custom.js +1 -0
  65. package/forms/components/DatePicker.d.ts +6 -16
  66. package/forms/components/DatePicker.js +1 -1
  67. package/forms/components/DateRangePicker.d.ts +10 -8
  68. package/forms/components/DateRangePicker.js +1 -1
  69. package/forms/components/DateTimePicker.d.ts +6 -8
  70. package/forms/components/DateTimePicker.js +1 -1
  71. package/forms/components/DropDownList.d.ts +7 -0
  72. package/forms/components/DropDownList.js +1 -0
  73. package/forms/components/FilePicker.d.ts +9 -0
  74. package/forms/components/FilePicker.js +1 -0
  75. package/forms/components/Form.d.ts +23 -0
  76. package/forms/components/Form.js +1 -0
  77. package/forms/components/GeometryPicker.d.ts +4 -0
  78. package/forms/components/GeometryPicker.js +1 -0
  79. package/forms/components/GeometryPickerListItem.d.ts +23 -0
  80. package/forms/components/GeometryPickerListItem.js +1 -0
  81. package/forms/components/HorizontalRule.d.ts +7 -0
  82. package/forms/components/HorizontalRule.js +1 -0
  83. package/forms/components/Image.d.ts +7 -0
  84. package/forms/components/Image.js +1 -0
  85. package/forms/components/ItemPicker.d.ts +17 -0
  86. package/forms/components/ItemPicker.js +1 -0
  87. package/forms/components/ListBox.d.ts +7 -0
  88. package/forms/components/ListBox.js +1 -0
  89. package/forms/components/Markdown.d.ts +1 -1
  90. package/forms/components/Markdown.js +1 -1
  91. package/forms/components/Number.d.ts +7 -0
  92. package/forms/components/Number.js +1 -0
  93. package/forms/components/NumberRangeSlider.d.ts +11 -8
  94. package/forms/components/NumberRangeSlider.js +1 -1
  95. package/forms/components/NumberSlider.d.ts +9 -8
  96. package/forms/components/NumberSlider.js +1 -1
  97. package/forms/components/RadioGroup.d.ts +7 -0
  98. package/forms/components/RadioGroup.js +1 -0
  99. package/forms/components/Scanner.d.ts +9 -0
  100. package/forms/components/Scanner.js +1 -0
  101. package/forms/components/Section.d.ts +14 -0
  102. package/forms/components/Section.js +1 -0
  103. package/forms/components/Text.d.ts +1 -1
  104. package/forms/components/Text.js +1 -1
  105. package/forms/components/TextArea.d.ts +1 -1
  106. package/forms/components/TextArea.js +1 -1
  107. package/forms/components/TextBox.d.ts +1 -1
  108. package/forms/components/TextBox.js +1 -1
  109. package/forms/components/TimePicker.d.ts +7 -0
  110. package/forms/components/TimePicker.js +1 -0
  111. package/forms/constants.d.ts +2 -31
  112. package/forms/constants.js +1 -1
  113. package/forms/dateUtilities.d.ts +41 -9
  114. package/forms/dateUtilities.js +1 -1
  115. package/forms/elements/AutoComplete.d.ts +7 -0
  116. package/forms/elements/AutoComplete.js +1 -0
  117. package/forms/elements/Number.d.ts +5 -0
  118. package/forms/elements/Number.js +1 -0
  119. package/forms/elements/NumberRangeSlider.d.ts +5 -3
  120. package/forms/elements/NumberRangeSlider.js +1 -1
  121. package/forms/elements/NumberSlider.d.ts +0 -3
  122. package/forms/elements/NumberSlider.js +0 -1
  123. package/forms/elements/Scanner.d.ts +9 -0
  124. package/forms/elements/Scanner.js +1 -0
  125. package/forms/elements/types.d.ts +4 -2
  126. package/forms/index.d.ts +6 -2
  127. package/forms/index.js +1 -1
  128. package/forms/keyboard.d.ts +1 -0
  129. package/forms/numberFormatter.d.ts +5 -6
  130. package/forms/numberFormatter.js +1 -1
  131. package/forms/numberUtilities.d.ts +113 -0
  132. package/forms/numberUtilities.js +1 -0
  133. package/forms/presenter.d.ts +1 -0
  134. package/forms/presenter.js +1 -1
  135. package/forms/renderers.d.ts +29 -35
  136. package/forms/renderers.js +1 -1
  137. package/forms/textUtilities.d.ts +6 -4
  138. package/forms/textUtilities.js +1 -1
  139. package/forms/utils.d.ts +71 -18
  140. package/forms/utils.js +1 -1
  141. package/index.d.ts +1 -1
  142. package/index.js +0 -1
  143. package/libs/version.d.ts +1 -1
  144. package/libs/version.js +1 -1
  145. package/package.json +10 -11
  146. package/forms/LegacyStyles.d.ts +0 -498
  147. package/forms/LegacyStyles.js +0 -1
  148. package/forms/assets/arrow.d.ts +0 -4
  149. package/forms/assets/arrow.js +0 -1
  150. package/forms/assets/chevron.d.ts +0 -3
  151. package/forms/assets/chevron.js +0 -1
  152. package/forms/assets/cross.d.ts +0 -3
  153. package/forms/assets/cross.js +0 -1
  154. package/forms/assets/datetime.d.ts +0 -3
  155. package/forms/assets/datetime.js +0 -1
  156. package/forms/assets/remove.d.ts +0 -2
  157. package/forms/assets/remove.js +0 -1
  158. package/forms/assets/scan.d.ts +0 -4
  159. package/forms/assets/scan.js +0 -1
  160. package/forms/assets/stock.d.ts +0 -5
  161. package/forms/assets/stock.js +0 -1
  162. package/forms/components/DateRange.d.ts +0 -6
  163. package/forms/components/DateRange.js +0 -1
  164. package/forms/components/Navigator.d.ts +0 -1
  165. package/forms/components/Navigator.js +0 -1
  166. package/forms/components/ReactDateRangeCalendar.d.ts +0 -6
  167. package/forms/components/ReactDateRangeCalendar.js +0 -1
  168. package/forms/components/SyntheticButton.d.ts +0 -1
  169. package/forms/components/SyntheticButton.js +0 -1
  170. package/forms/components/TimePickerInput.d.ts +0 -24
  171. package/forms/components/TimePickerInput.js +0 -1
  172. package/forms/components/TimerManager.d.ts +0 -7
  173. package/forms/components/TimerManager.js +0 -1
  174. package/forms/components/utils.d.ts +0 -2
  175. package/forms/components/utils.js +0 -1
  176. package/forms/datetime.d.ts +0 -5
  177. package/forms/datetime.js +0 -1
  178. package/forms/files.d.ts +0 -4
  179. package/forms/files.js +0 -1
  180. package/forms/geometry.d.ts +0 -4
  181. package/forms/geometry.js +0 -1
  182. package/forms/number.d.ts +0 -11
  183. package/forms/number.js +0 -1
  184. package/forms/numberSliderUtilities.d.ts +0 -12
  185. package/forms/numberSliderUtilities.js +0 -1
  186. package/forms/scanner.d.ts +0 -4
  187. package/forms/scanner.js +0 -1
  188. package/forms/selectors.d.ts +0 -10
  189. package/forms/selectors.js +0 -1
  190. package/forms/styles/daterange.css +0 -1
  191. package/forms/styles/daterange.d.ts +0 -1
  192. package/forms/styles/daterange.js +0 -1
  193. package/forms/styles/stock.css +0 -1
  194. package/forms/styles/stock.d.ts +0 -1
  195. package/forms/styles/stock.js +0 -1
package/Activator.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import Bluebird from "bluebird";
2
- /** Implemented by workflow containers to customize the creation of various currencies. */
2
+ /**
3
+ * Implemented by workflow containers to customize the creation of various currencies.
4
+ */
3
5
  export interface IFacilityFactory {
4
6
  /** Activates an instance. */
5
7
  (type: string): PromiseLike<{}> | {};
@@ -8,7 +10,9 @@ export interface IFacilityFactory {
8
10
  export interface IFacility {
9
11
  type: string;
10
12
  }
11
- /** Exposes functionality for activating well-known facilities. */
13
+ /**
14
+ * Exposes functionality for activating well-known facilities.
15
+ */
12
16
  export declare class Activator {
13
17
  /** Provides a means to provide a factory implementations. */
14
18
  factories: IFacilityFactory[];
package/Collections.d.ts CHANGED
@@ -1,4 +1,7 @@
1
- /** Describes a dictionary oriented collection. */
1
+ /**
2
+ * Describes a dictionary oriented collection.
3
+ * @public
4
+ */
2
5
  export interface Lookup<T> {
3
6
  [id: number]: T;
4
7
  [name: string]: T;
@@ -9,14 +12,14 @@ export interface PropertySet {
9
12
  }
10
13
  /** Provides a means to iterate over a collection efficiently. */
11
14
  export declare class Iterator<T> {
12
- key: string | number;
13
- current: T;
15
+ key: string | number | undefined;
16
+ current: T | undefined;
14
17
  /** Exposes the remaining assets of the collection as an array. */
15
18
  list(): T[];
16
19
  /** Selects the next asset of the collection. */
17
20
  next(): boolean;
18
21
  /** Peeks at the next item. */
19
- peek(): T;
22
+ peek(): T | undefined;
20
23
  /** Maps the iterator to another collection. */
21
24
  map<TResult>(itemSelector: (item: T) => Iterable<TResult>, keySelector?: (result: TResult, key: string | number) => string | number): Iterator<TResult>;
22
25
  /** Returns an iterable which filters. */
@@ -49,7 +52,7 @@ export declare class Dictionary<T> {
49
52
  /** Performs an iteration of the items. */
50
53
  iterate(): Iterator<T>;
51
54
  /** Assigns the value to the given key. */
52
- assign(key: any, value: T): T;
55
+ assign(key: any, value: T): T | undefined;
53
56
  /** Removes an item given the key. */
54
57
  remove(key: any): boolean;
55
58
  /** Tests if the key exists. */
package/EnumUtils.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * This class allows us to dynamically iterate through the names or value in an
3
3
  * enumeration. It was found here: https://stackoverflow.com/a/21294925/5322405
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
4
5
  */
5
6
  export declare class EnumUtils {
6
7
  /**
package/Errors.d.ts CHANGED
@@ -7,7 +7,16 @@ export declare abstract class ActivityError extends ActivityError_base {
7
7
  /** Indicates the error code. */
8
8
  code: string;
9
9
  }
10
- /** Defines an error that occurs when an activity has been cancelled. */
10
+ /**
11
+ * Defines an error that occurs when an activity has been aborted.
12
+ * @product This is intended for internal use only within VertiGIS Studio products.
13
+ */
14
+ export declare class ActivityAbortedError extends ActivityError {
15
+ }
16
+ /**
17
+ * Defines an error that occurs when an activity has been cancelled.
18
+ * @product This is intended for internal use only within VertiGIS Studio products.
19
+ */
11
20
  export declare class ActivityCancellationError extends ActivityError {
12
21
  }
13
22
  /** Defines an error that occurs when there is an error executing an activity. */
package/Errors.js CHANGED
@@ -1 +1 @@
1
- function makeError(){function r(r){r=Error.call(this,r),this.name=r.name,this.message=r.message,this.stack=r.stack}return r.prototype=Error.prototype,r}class ActivityError extends makeError(){}class ActivityCancellationError extends ActivityError{}ActivityCancellationError.prototype.message="[WF: activity cancellation error] The activity was cancelled.",ActivityCancellationError.prototype.code="WF: activity cancellation error";class GenericActivityError extends ActivityError{constructor(r,e){super(),this.code=r||"WF: activity error",this.message="["+this.code+"] "+(e||"Some errors occurred.")}}class ProgramStartError extends makeError(){}ProgramStartError.prototype.code="WF: start error",ProgramStartError.prototype.message="[WF: start error] The given workflow program contains no start point and none was given in the options.";class UnspecifiedError extends makeError(){}UnspecifiedError.prototype.code="WF: unspecified error",UnspecifiedError.prototype.message="[WF: unspecified error] The given workflow program completed with an unspecified error.";class ActivityBindingError extends ActivityError{constructor(r,e,t){super(),this.action=e,this.error=t}}ActivityBindingError.prototype.code="WF: binding error",ActivityBindingError.prototype.message="[WF: binding error] The given workflow program contains some activities which are not valid.";class EngineRuntimeError extends makeError(){constructor(r){super(),this.error=r}}EngineRuntimeError.prototype.code="WF: runtime error",EngineRuntimeError.prototype.message="[WF: runtime error] The workflow engine experienced an internal error.";class ProgramParserError extends makeError(){constructor(r){super(),this.error=r}}ProgramParserError.prototype.code="WF: parser error",ProgramParserError.prototype.message="[WF: parsing error] The given workflow program could not be parsed.";class ExpressionEvaluationError extends ActivityError{constructor(r,e,t,i){super(),this.activityId=r,this.inputName=e,this.expression=t,this.error=i,this.code="WF: expression evaluation error",this.message="["+this.code+"] The given expression could not be evaluated.",t&&(this.message+=' "'+t+'"'),i?.message&&(this.message+=" "+i.message)}}class ExpressionSyntaxError extends ActivityError{constructor(r,e,t,i){super(),this.activityId=r,this.inputName=e,this.expression=t,this.error=i,this.code="WF: expression syntax error",this.message="["+this.code+"] The given expression could not be parsed.",t&&(this.message+=' "'+t+'"'),i?.message&&(this.message+=" "+i.message)}}class ExpressionAccessorError extends ActivityError{constructor(r,e,t,i){super(),this.activityId=r,this.accessorName=e,this.error=t,this.code="WF: expression accessor error",this.message="["+this.code+"] The requested accessor could not be resolved.",this.error=t,this.errors=i}}class ActivityActivationError extends ActivityError{constructor(r,e,t){super(),this.activityId=r,this.type=e,this.error=t,this.code="WF: activity activation error",this.message="["+this.code+"] The requested facility could not be activated.",this.error=t}}class AggregateActivityError extends ActivityError{constructor(r,e){super(),this.activityId=r,this.code="WF: aggregate error",this.message="["+this.code+"] The activity experienced multiple errors.",this.errors=e}}class ActivityInputError extends ActivityError{constructor(r,e){super(),this.inputName=r,this.assertion=e}}ActivityInputError.prototype.code="WF: activity input error",ActivityInputError.prototype.message="[WF: activity input error] The activity has invalid inputs.";class ActivityNotImplementedError extends ActivityError{constructor(r){super(),this.message=`[WF: activity not implemented] The ${r} activity has not been implemented.`}}ActivityNotImplementedError.prototype.code="WF: activity not implemented";export{ActivityError,ActivityCancellationError,GenericActivityError,ProgramStartError,UnspecifiedError,ActivityBindingError,EngineRuntimeError,ProgramParserError,ExpressionEvaluationError,ExpressionSyntaxError,ExpressionAccessorError,ActivityActivationError,AggregateActivityError,ActivityInputError,ActivityNotImplementedError};
1
+ function makeError(){function r(r){r=Error.call(this,r),this.name=r.name,this.message=r.message,this.stack=r.stack}return r.prototype=Error.prototype,r}class ActivityError extends makeError(){}class ActivityAbortedError extends ActivityError{}ActivityAbortedError.prototype.message="[WF: activity aborted error] The activity was aborted.",ActivityAbortedError.prototype.code="WF: activity aborted error";class ActivityCancellationError extends ActivityError{}ActivityCancellationError.prototype.message="[WF: activity cancellation error] The activity was cancelled.",ActivityCancellationError.prototype.code="WF: activity cancellation error";class GenericActivityError extends ActivityError{constructor(r,e){super(),this.code=r||"WF: activity error",this.message="["+this.code+"] "+(e||"Some errors occurred.")}}class ProgramStartError extends makeError(){}ProgramStartError.prototype.code="WF: start error",ProgramStartError.prototype.message="[WF: start error] The given workflow program contains no start point and none was given in the options.";class UnspecifiedError extends makeError(){}UnspecifiedError.prototype.code="WF: unspecified error",UnspecifiedError.prototype.message="[WF: unspecified error] The given workflow program completed with an unspecified error.";class ActivityBindingError extends ActivityError{constructor(r,e,t){super(),this.action=e,this.error=t}}ActivityBindingError.prototype.code="WF: binding error",ActivityBindingError.prototype.message="[WF: binding error] The given workflow program contains some activities which are not valid.";class EngineRuntimeError extends makeError(){constructor(r){super(),this.error=r}}EngineRuntimeError.prototype.code="WF: runtime error",EngineRuntimeError.prototype.message="[WF: runtime error] The workflow engine experienced an internal error.";class ProgramParserError extends makeError(){constructor(r){super(),this.error=r}}ProgramParserError.prototype.code="WF: parser error",ProgramParserError.prototype.message="[WF: parsing error] The given workflow program could not be parsed.";class ExpressionEvaluationError extends ActivityError{constructor(r,e,t,o){super(),this.activityId=r,this.inputName=e,this.expression=t,this.error=o,this.code="WF: expression evaluation error",this.message="["+this.code+"] The given expression could not be evaluated.",t&&(this.message+=' "'+t+'"'),o?.message&&(this.message+=" "+o.message)}}class ExpressionSyntaxError extends ActivityError{constructor(r,e,t,o){super(),this.activityId=r,this.inputName=e,this.expression=t,this.error=o,this.code="WF: expression syntax error",this.message="["+this.code+"] The given expression could not be parsed.",t&&(this.message+=' "'+t+'"'),o?.message&&(this.message+=" "+o.message)}}class ExpressionAccessorError extends ActivityError{constructor(r,e,t,o){super(),this.activityId=r,this.accessorName=e,this.error=t,this.code="WF: expression accessor error",this.message="["+this.code+"] The requested accessor could not be resolved.",this.error=t,this.errors=o}}class ActivityActivationError extends ActivityError{constructor(r,e,t){super(),this.activityId=r,this.type=e,this.error=t,this.code="WF: activity activation error",this.message="["+this.code+"] The requested facility could not be activated.",this.error=t}}class AggregateActivityError extends ActivityError{constructor(r,e){super(),this.activityId=r,this.code="WF: aggregate error",this.message="["+this.code+"] The activity experienced multiple errors.",this.errors=e}}class ActivityInputError extends ActivityError{constructor(r,e){super(),this.inputName=r,this.assertion=e}}ActivityInputError.prototype.code="WF: activity input error",ActivityInputError.prototype.message="[WF: activity input error] The activity has invalid inputs.";class ActivityNotImplementedError extends ActivityError{constructor(r){super(),this.message=`[WF: activity not implemented] The ${r} activity has not been implemented.`}}ActivityNotImplementedError.prototype.code="WF: activity not implemented";export{ActivityError,ActivityAbortedError,ActivityCancellationError,GenericActivityError,ProgramStartError,UnspecifiedError,ActivityBindingError,EngineRuntimeError,ProgramParserError,ExpressionEvaluationError,ExpressionSyntaxError,ExpressionAccessorError,ActivityActivationError,AggregateActivityError,ActivityInputError,ActivityNotImplementedError};
package/Hooks.d.ts CHANGED
@@ -18,7 +18,10 @@ export interface IActivityHandlerWithFacility<T> {
18
18
  export interface IActivityHandlerWithTwoFacilities<T1, T2> {
19
19
  execute(inputs: {}, context: IActivityContext, facility1: T1, facility2: T2, ...args: any[]): Deferrable<{}>;
20
20
  }
21
- /** Decorates activity handlers which require a facility. */
21
+ /**
22
+ * Decorates activity handlers which require a facility.
23
+ * @public
24
+ */
22
25
  export declare function activate<T extends IFacility>(basis: T): (target: IActivityHandlerConstructorWithFacility<T>) => void;
23
26
  /** Decorates activity handlers which require two facilities. */
24
27
  export declare function activateTwo<T1 extends IFacility, T2 extends IFacility>(basis1: T1, basis2: T2): (target: IActivityHandlerConstructorWithTwoFacilities<T1, T2>) => void;
@@ -1,14 +1,23 @@
1
1
  import Bluebird from "bluebird";
2
- import { LogLevel } from "./diagnostics/logging";
3
2
  import { Task } from "./Task";
4
- /** Shorthand for a deferrable result. */
3
+ import { LogLevel } from "./diagnostics/logging";
4
+ /**
5
+ * Shorthand for a deferrable result.
6
+ * @public
7
+ */
5
8
  export declare type Deferrable<T> = PromiseLike<T> | T;
6
- /** Implemented by activity handlers. */
9
+ /**
10
+ * Implemented by activity handlers.
11
+ * @public
12
+ */
7
13
  export interface IActivityHandler {
8
14
  /** Executes the logic for an activity. */
9
15
  execute(inputs: {}, context: IActivityContext, ...args: any[]): Deferrable<{}>;
10
16
  }
11
- /** Describes ambient-level state. */
17
+ /**
18
+ * Describes ambient-level state.
19
+ * @public
20
+ */
12
21
  export interface IAmbientState {
13
22
  /** Indicates the ActivityContexts with group name monikers that are in scope. */
14
23
  activityContexts: {};
@@ -45,7 +54,10 @@ export interface Abortable {
45
54
  */
46
55
  signal?: AbortSignal;
47
56
  }
48
- /** Describes an activity currently being executed. */
57
+ /**
58
+ * Describes an activity currently being executed.
59
+ * @public
60
+ */
49
61
  export interface IActivityContext {
50
62
  /** Indicates the locally-unique identifier that changes per-run per-activity. */
51
63
  luid: any;
@@ -81,12 +93,14 @@ export interface IActivityContext {
81
93
  /**
82
94
  * Indicates an activity has no inputs. Should only be used in
83
95
  * an activity's execute method signature.
96
+ * @public
84
97
  */
85
98
  export interface EmptyInputs {
86
99
  }
87
100
  /**
88
101
  * Indicates an activity has no outputs. Should only be used in
89
102
  * an activity's execute method signature.
103
+ * @public
90
104
  */
91
105
  export interface EmptyOutputs {
92
106
  }
@@ -1 +1 @@
1
- const defaultStrings={"common-all":"All","common-clear":"Clear","common-done":"Done","common-none":"None","common-start":"Start","common-end":"End","file-picker-remove-item-label":"Clear file","form-element-status-failure":"Failure","form-element-status-invalid":"Invalid input","form-element-status-missing":"Required","form-element-status-pending":"Working...","form-element-status-trivial":"No data"};function getStringsForProgram(e,t){const n={...defaultStrings};if(t.strings)for(const r of Object.keys(t.strings))n[r]=t.strings[r];var o=e.getStrings(t.locale);for(const s of Object.keys(o))n[s]=o[s];return n}export{getStringsForProgram};
1
+ const defaultStrings={"common-all":"All","common-cancel":"Cancel","common-clear":"Clear","common-end":"End","common-none":"None","common-ok":"OK","common-start":"Start","common-to":"to","common-today":"Today","date-range-picker-end-text":"End Date","date-range-picker-start-text":"Start Date","file-picker-remove-item-label":"Remove file","form-element-status-failure":"Failure","form-element-status-invalid":"Invalid input","form-element-status-missing":"Required","form-element-status-pending":"Working...","form-element-status-trivial":"No data","geometry-picker-remove-item-label":"Remove location"};function getStringsForProgram(e,t){const o={...defaultStrings};if(t.strings)for(const r of Object.keys(t.strings))o[r]=t.strings[r];var n=e.getStrings(t.locale);for(const a of Object.keys(n))o[a]=n[a];return o}export{getStringsForProgram};
@@ -5,6 +5,7 @@ export interface ResolveArgs {
5
5
  program?: string | {};
6
6
  url?: string;
7
7
  }
8
+ /** @product This is intended for internal use only within VertiGIS Studio products. */
8
9
  export declare class ProgramInspectorFacility {
9
10
  private _cache;
10
11
  constructor();
package/Task.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /** @product This is intended for internal use only within VertiGIS Studio products. */
1
2
  export declare class Task<T> implements PromiseLike<T> {
2
3
  private _state;
3
4
  private _value;
@@ -1,5 +1,8 @@
1
1
  import { EmptyInputs, IActivityHandler } from "../../IActivityHandler";
2
- /** Defines outputs from the GetApplicationInfo activity. */
2
+ /**
3
+ * Defines outputs from the GetApplicationInfo activity.
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
5
+ */
3
6
  export interface GetApplicationInfoOutputs {
4
7
  name: string;
5
8
  version?: string;
@@ -1,5 +1,8 @@
1
1
  import { IActivityHandler, EmptyInputs } from "../../IActivityHandler";
2
- /** Defines outputs from the GetUserInfo activity. */
2
+ /**
3
+ * Defines outputs from the GetUserInfo activity.
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
5
+ */
3
6
  export interface GetUserInfoOutputs {
4
7
  username: string;
5
8
  email: string;
@@ -1,5 +1,8 @@
1
1
  import { IActivityHandler, IActivityContext, EmptyOutputs } from "../../IActivityHandler";
2
- /** Inputs for the RunCommand activity. */
2
+ /**
3
+ * Inputs for the RunCommand activity.
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
5
+ */
3
6
  export interface RunCommandInputs {
4
7
  /** The name of the command to invoke. */
5
8
  commandName: string;
@@ -1,12 +1,18 @@
1
1
  import { IActivityHandler, IActivityContext } from "../../IActivityHandler";
2
- /** Inputs for the RunOperation activity. */
2
+ /**
3
+ * Inputs for the RunOperation activity.
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
5
+ */
3
6
  export interface RunOperationInputs {
4
7
  /** The name of the operation to invoke. */
5
8
  operationName: string;
6
9
  /** The parameter to pass to the operation. */
7
10
  operationParameter?: any;
8
11
  }
9
- /** Outputs for the RunOperation activity. */
12
+ /**
13
+ * Outputs for the RunOperation activity.
14
+ * @product This is intended for internal use only within VertiGIS Studio products.
15
+ */
10
16
  export interface RunOperationOutputs {
11
17
  /** The result of the operation. */
12
18
  result: any;
@@ -1,6 +1,9 @@
1
1
  import { IActivityHandler, IActivityContext, Deferrable } from "../../IActivityHandler";
2
2
  import { MapProvider } from "./MapProvider";
3
- /** Defines inputs for the AddGraphics activity. */
3
+ /**
4
+ * Defines inputs for the AddGraphics activity.
5
+ * @product This is intended for internal use only within VertiGIS Studio products.
6
+ */
4
7
  export interface AddGraphicsInputs {
5
8
  /** The ID of the graphics layer to add the features to. */
6
9
  layerId?: string | number;
@@ -9,7 +12,10 @@ export interface AddGraphicsInputs {
9
12
  /** Whether or not all features should be removed from the layer. Defauts to false. */
10
13
  removeAllFeatures?: boolean;
11
14
  }
12
- /** Defines outputs for the AddGraphics activity. */
15
+ /**
16
+ * Defines outputs for the AddGraphics activity.
17
+ * @product This is intended for internal use only within VertiGIS Studio products.
18
+ */
13
19
  export interface AddGraphicsOutputs {
14
20
  /** Indicates the features that were added. */
15
21
  features: __esri.Graphic[];
@@ -24,7 +24,10 @@ export interface MapInfo {
24
24
  /** Gets the spatial reference. */
25
25
  getSpatialReference(): __esri.SpatialReference;
26
26
  }
27
- /** Provides functionality which affects the map. */
27
+ /**
28
+ * Provides functionality which affects the map.
29
+ * @public
30
+ */
28
31
  export declare class MapProvider implements MapInfo {
29
32
  static type: string;
30
33
  /** Indicates the map. */
@@ -1,6 +1,9 @@
1
1
  import { IActivityHandler, IActivityContext } from "../../IActivityHandler";
2
2
  import { MapProvider } from "./MapProvider";
3
- /** Defines the inputs for the QueryTask activity. */
3
+ /**
4
+ * Defines the inputs for the QueryTask activity.
5
+ * @product This is intended for internal use only within VertiGIS Studio products.
6
+ */
4
7
  export interface QueryTaskInputs {
5
8
  /** The URL to the ArcGIS layer or table to query. Either url or layer is required. */
6
9
  url?: string;
@@ -53,7 +56,10 @@ export interface QueryTaskInputs {
53
56
  /** Distance unit. Valid only for feature services hosted on ArcGIS Online. Known values: feet, miles, nautical-miles, us-nautical-miles, meters, kilometers. Default value: meters. */
54
57
  units?: string;
55
58
  }
56
- /** Defines the outputs for the query task activity. */
59
+ /**
60
+ * Defines the outputs for the query task activity.
61
+ * @product This is intended for internal use only within VertiGIS Studio products.
62
+ */
57
63
  export interface QueryTaskOutputs {
58
64
  /** The first feature of the result feature set. */
59
65
  feature?: __esri.Graphic;
@@ -1,5 +1,8 @@
1
1
  import { IActivityHandler, IActivityContext, EmptyOutputs } from "../../IActivityHandler";
2
- /** Defines inputs for the SetMap activity. */
2
+ /**
3
+ * Defines inputs for the SetMap activity.
4
+ * @product This is intended for internal use only within VertiGIS Studio products.
5
+ */
3
6
  export interface SetMapInputs {
4
7
  /** The unique id of the map to use from now on. */
5
8
  mapId: string;
@@ -1,4 +1,5 @@
1
1
  import { IActivityHandler, IActivityContext, Deferrable, EmptyOutputs } from "../../IActivityHandler";
2
+ /** @product This is intended for internal use only within VertiGIS Studio products. */
2
3
  export interface ShowResultsInputs {
3
4
  features: __esri.Graphic | __esri.FeatureSet | __esri.Graphic[];
4
5
  featureSetDisplayName?: string;
@@ -16,6 +17,7 @@ export interface ShowResultsInputs {
16
17
  }
17
18
  /**
18
19
  * An enumeration of different ways of combining two sets.
20
+ * @product This is intended for internal use only within VertiGIS Studio products.
19
21
  */
20
22
  export declare enum CombineMode {
21
23
  /**
@@ -38,6 +40,7 @@ export declare enum CombineMode {
38
40
  }
39
41
  /**
40
42
  * Returns the combine mode enumeration value for the given string.
43
+ * @product This is intended for internal use only within VertiGIS Studio products.
41
44
  * @param combineMode The combine mode string value.
42
45
  */
43
46
  export declare function getCombineMode(combineMode: string): CombineMode;
@@ -3,6 +3,7 @@ import { ChannelProvider } from "../core/ChannelProvider";
3
3
  import { PortalItemUrlInfo } from "./shared";
4
4
  /**
5
5
  * Represents a parameter used when running a Print or Report job.
6
+ * @product This is intended for internal use only within VertiGIS Studio products.
6
7
  */
7
8
  export interface JobParameter {
8
9
  name: string;
@@ -26,7 +27,10 @@ export interface DataSource {
26
27
  name: string;
27
28
  value: any;
28
29
  }
29
- /** Minimal definition of a serialized webmap. */
30
+ /**
31
+ * Minimal definition of a serialized webmap.
32
+ * @product This is intended for internal use only within VertiGIS Studio products.
33
+ */
30
34
  export interface Webmap {
31
35
  operationalLayers: any[];
32
36
  spatialReference: __esri.SpatialReference;
@@ -33,6 +33,7 @@ export interface ChannelInfo {
33
33
  /** The response for the current request/response. */
34
34
  response: Response;
35
35
  }
36
+ /** @public */
36
37
  export declare class ChannelProvider implements ChannelInfo {
37
38
  static type: string;
38
39
  static register(activator: Activator): void;
@@ -3,7 +3,7 @@
3
3
  * the keys will be converted to a string, such as being sent using an
4
4
  * esri request. Objects are stringified to ensure they are preserved and not
5
5
  * converted to "[object Object]" via poor use of .toString().
6
- *
6
+ * @product This is intended for internal use only within VertiGIS Studio products.
7
7
  * @param query The object to be sent using an esri.request.
8
8
  */
9
9
  export declare function jsonToQueryObject(contentObject: {}): {};
@@ -16,7 +16,10 @@ export interface DisplayFormInputs {
16
16
  /** Indicates that the form should be reset. */
17
17
  reset?: boolean;
18
18
  }
19
- /** Defines the outputs for a display form activity. */
19
+ /**
20
+ * Defines the outputs for a display form activity.
21
+ * @public
22
+ */
20
23
  export interface DisplayFormOutputs {
21
24
  /** Indicates the state of the form. */
22
25
  state: Lookup<defs.Element>;
@@ -37,6 +37,7 @@ export interface FormActor {
37
37
  }
38
38
  /**
39
39
  * Renders a form on behalf of the DisplayForm activity.
40
+ * @public
40
41
  */
41
42
  export declare class FormRenderer extends FormHost implements FormActor {
42
43
  static type: string;
@@ -1 +1 @@
1
- import{ActivityCancellationError}from"../../Errors.js";import{FormComponent}from"../../forms/FormComponent.js";import{FormHost,defs}from"../../forms/FormHost.js";import{element as elementRenderers}from"../../forms/renderers.js";import{text}from"../../forms/utils.js";import{FormElementNotFoundError,NoFormElementAvailableError}from"./Errors.js";function sanitizeValue(e,t,r){if("string"!=typeof t)return t;if(!0!==r)return t;switch(e){case"description":case"error":case"label":case"prompt":case"title":case"tooltip":case"itemLabel":break;default:return t}return{markdown:t}}const guid="F889738A-EBE2-4D52-8B46-3E24CC6E30F6:";class FormRenderer extends FormHost{static create(){return new this}static createCustom(){const e=new this;return e.custom=!0,e}static register(e){e.factories.push(e=>e===this.type?this:void 0)}spinNoBlock(){return this.spin()}hideElement(e){e.visible=!1,this.invalidate()}showElement(e){e.visible=!0,this.invalidate()}setCurrentItem(e,t,r){const n=this.getElement(e);if(!n||!n.items)return!1;let s;switch(r){case"index":s=(e,t,r)=>{var s=Object.keys(n.items);return 0<s.length&&e===s[r]};break;case"item":s=(e,t,r)=>r===t;break;case"key":s=(e,t,r)=>r===e;break;case"label":s=(e,t,r)=>r===t.label;break;case"value":s=(e,t,r)=>r===t.value;break;default:throw new Error("Unsupported value for itemMatchType: "+r)}for(const i in n.items)if(s(i,n.items[i],t))return n.current=i,this.invalidate(e),this.cascade(e),!0;return!1}setElementError(e,t,r){this.errors[e]=sanitizeValue("error",t,r)}assignElementProperty(t,r,s,e){s=sanitizeValue(r,s,e);const n=this.getElement(t);if(n[r]!==s){const i={},o=this.getElementRegistration(n);if(o?.onPropertyChange)try{const a=(e,t)=>{i[e]!==t&&(i[e]=t,o.onPropertyChange({properties:{...n,...i},property:e,setProperty:a}))};a(r,s)}catch(e){throw console.error(`Error setting element property.\nElement: "${t}"\nProperty: "${r}"\nValue: ${s}\n`,e),e}else i[r]=s;for(const l of Object.keys(i))n[l]=i[l];if(o&&"value"in i&&this.post("changed",{name:t,value:i.value}),n.customType)this.refresh();else switch(r){case"autoActivate":case"collapsed":case"visible":this.invalidate();break;default:this.invalidate(t)}}}assignItemsToElement(e,t,r){const s=this.getElement(e);let n=s.items||{};!1!==r&&(n={});for(const i in t)n[i]=t[i];s.items=n,"GeometryPicker"!==s.type&&"ItemPicker"!==s.type||delete s.state,this.invalidate(e)}assignElementItemProperty(e,t,r,s,n){const i=this.getElement(e);i.items[t][r]=sanitizeValue(r,s,n),this.refresh(e)}deriveLocale(){return this.state?.locale||super.deriveLocale()}dispose(){if(super.dispose()){const e=this.state;return void 0!==e&&null!==e&&e.completion.isPending()&&e.reject(new ActivityCancellationError),!0}return!1}load(e,t){t=super.load(e,t);if(t&&this.form?.elements)for(const s in this.form.elements){var r=this.form.elements[s];const n=this.getElementRegistration(r);n&&n.getInitialProperties&&(r={...r,...n.getInitialProperties()},this.form.elements[s]=r)}return t}isRelated(e){return this.state&&this.state.trivia&&this.state.trivia.isDescendantOf&&this.state.trivia.isDescendantOf(e.state)}getElement(e,t){let r;if(e){if("string"!=typeof e)return e;r=e}else t?.name&&(r=t.name);if(r){t=this.form.elements[r];if(!t)throw new FormElementNotFoundError(r);return t}throw new NoFormElementAvailableError}getElementName(e,t){if(e){if("string"==typeof e)return e;for(const r in this.form.elements)if(this.form.elements[r]===e)return r;throw new FormElementNotFoundError(e)}if(t?.name)return t.name;throw new NoFormElementAvailableError}getElementRegistration(e){return this.state?.trivia?.getFormElementRegistration?.(e.customType??e.type)}renderHtml(e,t){return super.renderHtml(this.getText(e),t)}renderText(e){return super.renderText(this.getText(e))}translateText(e){return super.translateText(this.getText(e))}filterItems(e,t){const r=this.find(e);if(void 0===r||null===r)return!1;var s=r.items;if(null==s)return!1;if("string"!=typeof t)return t;let n=!1;const i={};var o=t.toLowerCase().split(/\s+/);for(const m in s){var a=s[m];const f=this.renderText(a.label);var l=f.toLowerCase().split(/\s+/);for(const c of o)if(0<c.length)for(const u of l)0<u.length&&(0!==c.indexOf(u)&&0!==u.indexOf(c)||(n=!0,i[m]=a))}return r.items=i,this.invalidate(e),n}getText(e){if(void 0!==this.state){const r=this.state.environment.getText;if("function"==typeof r){if(text.isMarkdown(e))return{markdown:r(e.markdown)};if(text.isStatus(e))return{markdown:r(`@form-element-status-${e.status}`)};if(e&&"@"===e[0]){var t=r(e);if(t)return t}}}return e}renderCustom(e,t){if(e instanceof FormComponent)return elementRenderers.renderCustom(e,t)}addElement(e,t,r){if(this.form.elements.hasOwnProperty(e))throw new Error(`Element already present: ${e}`);const s={};if("object"==typeof r)for(const n in r)s[n]=r[n];s.type=t;t=s.section;if(t){let e;if("object"==typeof t?e=t.name:"string"==typeof t&&(e=t),"header"===e||"footer"===e)throw new Error("Elements cannot be added to the header or footer.")}return this.form.elements[e]=s,this.invalidate(),s}}FormRenderer.type=guid+"FormRenderer";export{defs,FormRenderer};
1
+ import{ActivityAbortedError}from"../../Errors.js";import{FormComponent}from"../../forms/FormComponent.js";import{FormHost,defs}from"../../forms/FormHost.js";import{element as elementRenderers}from"../../forms/renderers.js";import{text}from"../../forms/utils.js";import{FormElementNotFoundError,NoFormElementAvailableError}from"./Errors.js";function sanitizeValue(e,t,r){if("string"!=typeof t)return t;if(!0!==r)return t;switch(e){case"description":case"error":case"label":case"prompt":case"title":case"tooltip":case"itemLabel":break;default:return t}return{markdown:t}}const guid="F889738A-EBE2-4D52-8B46-3E24CC6E30F6:";class FormRenderer extends FormHost{static create(){return new this}static createCustom(){const e=new this;return e.custom=!0,e}static register(e){e.factories.push(e=>e===this.type?this:void 0)}spinNoBlock(){return this.spin()}hideElement(e){e.visible=!1,this.invalidate()}showElement(e){e.visible=!0,this.invalidate()}setCurrentItem(e,t,r){const n=this.getElement(e);if(!n||!n.items)return!1;let s;switch(r){case"index":s=(e,t,r)=>{var s=Object.keys(n.items);return 0<s.length&&e===s[r]};break;case"item":s=(e,t,r)=>r===t;break;case"key":s=(e,t,r)=>r===e;break;case"label":s=(e,t,r)=>r===t.label;break;case"value":s=(e,t,r)=>r===t.value;break;default:throw new Error("Unsupported value for itemMatchType: "+r)}for(const i in n.items)if(s(i,n.items[i],t))return n.current=i,this.invalidate(e),this.cascade(e),!0;return!1}setElementError(e,t,r){this.errors[e]=sanitizeValue("error",t,r)}assignElementProperty(t,r,s,e){s=sanitizeValue(r,s,e);const n=this.getElement(t);if(n[r]!==s){const i={},o=this.getElementRegistration(n);if(o?.onPropertyChange)try{const a=(e,t)=>{i[e]!==t&&(i[e]=t,o.onPropertyChange({properties:{...n,...i},property:e,setProperty:a}))};a(r,s)}catch(e){throw console.error(`Error setting element property.\nElement: "${t}"\nProperty: "${r}"\nValue: ${s}\n`,e),e}else i[r]=s;for(const m of Object.keys(i))n[m]=i[m];if(o&&"value"in i&&this.post("changed",{name:t,value:i.value}),n.customType)this.refresh();else switch(r){case"autoActivate":case"collapsed":case"visible":this.invalidate();break;default:this.invalidate(t)}}}assignItemsToElement(e,t,r){const s=this.getElement(e);let n=s.items||{};!1!==r&&(n={});for(const i in t)n[i]=t[i];s.items=n,"GeometryPicker"!==s.type&&"ItemPicker"!==s.type||delete s.state,this.invalidate(e)}assignElementItemProperty(e,t,r,s,n){const i=this.getElement(e);i.items[t][r]=sanitizeValue(r,s,n),this.refresh(e)}deriveLocale(){return this.state?.locale||super.deriveLocale()}dispose(){if(super.dispose()){const e=this.state;return void 0!==e&&null!==e&&e.completion.isPending()&&e.reject(new ActivityAbortedError),!0}return!1}load(e,t){t=super.load(e,t);if(t&&this.form?.elements)for(const s in this.form.elements){var r=this.form.elements[s];const n=this.getElementRegistration(r);n&&n.getInitialProperties&&(r={...r,...n.getInitialProperties()},this.form.elements[s]=r)}return t}isRelated(e){return this.state&&this.state.trivia&&this.state.trivia.isDescendantOf&&this.state.trivia.isDescendantOf(e.state)}getElement(e,t){let r;if(e){if("string"!=typeof e)return e;r=e}else t?.name&&(r=t.name);if(r){t=this.form.elements[r];if(!t)throw new FormElementNotFoundError(r);return t}throw new NoFormElementAvailableError}getElementName(e,t){if(e){if("string"==typeof e)return e;for(const r in this.form.elements)if(this.form.elements[r]===e)return r;throw new FormElementNotFoundError(e)}if(t?.name)return t.name;throw new NoFormElementAvailableError}getElementRegistration(e){return this.state?.trivia?.getFormElementRegistration?.(e.customType??e.type)}renderHtml(e,t){return super.renderHtml(this.getText(e),t)}renderText(e){return super.renderText(this.getText(e))}translateText(e){return super.translateText(this.getText(e))}filterItems(e,t){const r=this.find(e);if(void 0===r||null===r)return!1;var s=r.items;if(null==s)return!1;if("string"!=typeof t)return t;let n=!1;const i={};var o=t.toLowerCase().split(/\s+/);for(const l in s){var a=s[l];const f=this.renderText(a.label);var m=f.toLowerCase().split(/\s+/);for(const c of o)if(0<c.length)for(const u of m)0<u.length&&(0!==c.indexOf(u)&&0!==u.indexOf(c)||(n=!0,i[l]=a))}return r.items=i,this.invalidate(e),n}getText(e){if(void 0!==this.state){const r=this.state.environment.getText;if("function"==typeof r){if(text.isMarkdown(e))return{markdown:r(e.markdown)};if(text.isStatus(e))return{markdown:r(`@form-element-status-${e.status}`)};if(e&&"@"===e[0]){var t=r(e);if(t)return t}}}return e}renderCustom(e,t){if(e instanceof FormComponent)return elementRenderers.renderCustom(e,t)}addElement(e,t,r){if(this.form.elements.hasOwnProperty(e))throw new Error(`Element already present: ${e}`);const s={};if("object"==typeof r)for(const n in r)s[n]=r[n];s.type=t;t=s.section;if(t){let e;if("object"==typeof t?e=t.name:"string"==typeof t&&(e=t),"header"===e||"footer"===e)throw new Error("Elements cannot be added to the header or footer.")}return this.form.elements[e]=s,this.invalidate(),s}}FormRenderer.type=guid+"FormRenderer";export{defs,FormRenderer};
@@ -6,7 +6,7 @@ export interface SetFormElementPropertyInputs {
6
6
  /** The ID of the form element to modify. */
7
7
  elementName?: string | defs.Element;
8
8
  /** The name of the element property to modify. */
9
- propertyName: "accessibleDescription" | "autoActivate" | "checked" | "collapsed" | "current" | "delay" | "dependsOn" | "description" | "enabled" | "error" | "fileTypes" | "format" | "itemLabel" | "items" | "label" | "manualEntry" | "maxLength" | "minLength" | "orientation" | "prompt" | "readOnly" | "require" | "rowIndex" | "rowNumber" | "selectionMode" | "showFilter" | "size" | "styleName" | "title" | "titleLocation" | "tooltip" | "type" | "validates" | "value" | "visible" | "wrap" | string;
9
+ propertyName: "accessibleDescription" | "autoActivate" | "checked" | "collapsed" | "current" | "delay" | "dependsOn" | "description" | "enabled" | "error" | "fileTypes" | "format" | "itemLabel" | "items" | "label" | "manualEntry" | "maxLength" | "minLength" | "orientation" | "prompt" | "readOnly" | "require" | "rowIndex" | "rowNumber" | "selectionMode" | "showFilter" | "showMinMaxLabels" | "showTickMarks" | "size" | "styleName" | "title" | "titleLocation" | "tooltip" | "type" | "validates" | "value" | "visible" | "wrap" | string;
10
10
  /** The value to assign to the property. */
11
11
  propertyValue: any;
12
12
  /** Controls when strings are interpreted as markdown. */
@@ -1 +1,2 @@
1
+ /** @product This is intended for internal use only within VertiGIS Studio products. */
1
2
  export declare const manifest: {};