@openframe-org/criteria-set-protocol 2.6.6-beta.2 → 2.6.6-beta.3
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.
- package/dist/v1/utils.d.ts +2 -2
- package/package.json +1 -1
package/dist/v1/utils.d.ts
CHANGED
|
@@ -13,8 +13,8 @@ interface ApplyBreadcrumbTextFormattingPlaceholdersFunction extends ApplyTextFor
|
|
|
13
13
|
interface ApplyDocumentTreeFolderTextFormattingPlaceholdersFunction extends ApplyTextFormattingPlaceholdersForThemeFunction, ApplyTextFormattingPlaceholdersForCriterionFunction, ApplyTextFormattingPlaceholdersForTaskFunction {
|
|
14
14
|
}
|
|
15
15
|
interface ApplyCriteriaTreeElementTextFormatFormattingPlaceholdersFunction {
|
|
16
|
-
(options: CriterionOptions, element: Pick<Criterion, "title" | "code">): string;
|
|
17
|
-
(options: TaskOptions, element: Pick<Task, "title" | "code">): string;
|
|
16
|
+
(options: Pick<CriterionOptions, 'criteriaTreeElementTextFormat'>, element: Pick<Criterion, "title" | "code">): string;
|
|
17
|
+
(options: Pick<TaskOptions, 'criteriaTreeElementTextFormat'>, element: Pick<Task, "title" | "code">): string;
|
|
18
18
|
}
|
|
19
19
|
interface ApplyReportTitleTextFormatFormattingPlaceholdersFunction extends ApplyTextFormattingPlaceholdersForThemeFunction, ApplyTextFormattingPlaceholdersForCriterionFunction, ApplyTextFormattingPlaceholdersForTaskFunction {
|
|
20
20
|
}
|
package/package.json
CHANGED