@openframe-org/criteria-set-protocol 1.3.6 → 1.3.8
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.
|
@@ -98,8 +98,9 @@ export type BooleanType = AbstractDefinition<'boolean'> & {
|
|
|
98
98
|
export type PointOption = {
|
|
99
99
|
id?: string;
|
|
100
100
|
text: string;
|
|
101
|
+
intro?: string;
|
|
102
|
+
outro?: string;
|
|
101
103
|
value: string | number | boolean | null;
|
|
102
|
-
annotations?: string[];
|
|
103
104
|
};
|
|
104
105
|
export type TaskItemScalarValue = string | number | boolean | null;
|
|
105
106
|
export type TaskItemValue = TaskItemScalarValue | Array<TaskItemScalarValue>;
|
package/dist/v1/utils.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ export declare const isTaskGroup: (element: CriteriaTreeElement) => element is T
|
|
|
5
5
|
export declare const isTask: (element: CriteriaTreeElement) => element is Task;
|
|
6
6
|
export declare const isTaskItem: (element: CriteriaTreeElement) => element is TaskItem;
|
|
7
7
|
export declare const toColorHexString: (color: Color) => string;
|
|
8
|
-
export declare const shouldHideCode: (element:
|
|
8
|
+
export declare const shouldHideCode: (element: CriteriaTreeElement | {
|
|
9
9
|
code: string;
|
|
10
10
|
} | string) => boolean;
|
|
11
11
|
export declare const getQualifiedName: (element: Quality | Criterion | TaskGroup | Task | {
|
|
12
12
|
code: string;
|
|
13
13
|
title: string;
|
|
14
14
|
}) => string;
|
|
15
|
-
export declare const resolveCode: (element:
|
|
15
|
+
export declare const resolveCode: (element: CriteriaTreeElement | {
|
|
16
16
|
code: string;
|
|
17
17
|
} | string) => string;
|
package/package.json
CHANGED