@coast/core-api-types 1.2.170 → 1.2.171

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 @@ import { ComponentType } from '../ComponentType';
2
2
  import { Defaultable } from '../Defaultable';
3
3
  import { InputComponent } from '../InputComponent';
4
4
  import { TagType } from '../TagType';
5
+ import { TagComponentChecklistOptions } from './TagComponentChecklistOptions';
5
6
  import { TagComponentOption } from './TagComponentOption';
6
7
  import { TagDefault } from './TagDefault';
7
8
  export interface TagComponent<T extends TagType = ComponentType.TAG> extends Defaultable<TagDefault>, InputComponent<T> {
@@ -11,4 +12,6 @@ export interface TagComponent<T extends TagType = ComponentType.TAG> extends Def
11
12
  multiselect?: boolean;
12
13
  options?: TagComponentOption[];
13
14
  upcomingRecurringEntityDefault?: TagDefault;
15
+ checklistEnabled?: boolean;
16
+ checklistOptions?: TagComponentChecklistOptions;
14
17
  }
@@ -0,0 +1,4 @@
1
+ export interface TagComponentChecklistOptions {
2
+ checkedOption: string;
3
+ uncheckedOption: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TagComponentChecklistOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TagComponentChecklistOptions.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/components/tag/TagComponentChecklistOptions.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.170",
3
+ "version": "1.2.171",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {