@openframe-org/criteria-set-protocol 2.6.6-beta.2 → 2.6.6-beta.4

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.
@@ -8,13 +8,16 @@ interface ApplyTextFormattingPlaceholdersForCriterionFunction {
8
8
  interface ApplyTextFormattingPlaceholdersForTaskFunction {
9
9
  (options: TaskOptions, element: Pick<Task, "title" | "code">): string;
10
10
  }
11
- interface ApplyBreadcrumbTextFormattingPlaceholdersFunction extends ApplyTextFormattingPlaceholdersForThemeFunction, ApplyTextFormattingPlaceholdersForCriterionFunction, ApplyTextFormattingPlaceholdersForTaskFunction {
11
+ interface ApplyBreadcrumbTextFormattingPlaceholdersFunction {
12
+ (options: ThemeOptions, element: Pick<Criterion, "title" | "code">): string;
13
+ (options: CriterionOptions, element: Pick<Criterion, "title" | "code">): string;
14
+ (options: TaskOptions, element: Pick<Task, "title" | "code">): string;
12
15
  }
13
16
  interface ApplyDocumentTreeFolderTextFormattingPlaceholdersFunction extends ApplyTextFormattingPlaceholdersForThemeFunction, ApplyTextFormattingPlaceholdersForCriterionFunction, ApplyTextFormattingPlaceholdersForTaskFunction {
14
17
  }
15
18
  interface ApplyCriteriaTreeElementTextFormatFormattingPlaceholdersFunction {
16
- (options: CriterionOptions, element: Pick<Criterion, "title" | "code">): string;
17
- (options: TaskOptions, element: Pick<Task, "title" | "code">): string;
19
+ (options: Pick<CriterionOptions, 'criteriaTreeElementTextFormat'>, element: Pick<Criterion, "title" | "code">): string;
20
+ (options: Pick<TaskOptions, 'criteriaTreeElementTextFormat'>, element: Pick<Task, "title" | "code">): string;
18
21
  }
19
22
  interface ApplyReportTitleTextFormatFormattingPlaceholdersFunction extends ApplyTextFormattingPlaceholdersForThemeFunction, ApplyTextFormattingPlaceholdersForCriterionFunction, ApplyTextFormattingPlaceholdersForTaskFunction {
20
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openframe-org/criteria-set-protocol",
3
- "version": "2.6.6-beta.2",
3
+ "version": "2.6.6-beta.4",
4
4
  "description": "A protocol and tools for defining and working with criteria sets",
5
5
  "private": false,
6
6
  "author": "Andrés Angulo <aa@openframe.org>",