@openframe-org/criteria-set-protocol 2.2.0 → 2.2.2
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/schemas/common.d.ts +24 -162
- package/dist/v1/schemas/common.js +7 -34
- package/dist/v1/schemas/criteria-set.js +1 -2
- package/dist/v1/schemas/criteria-tree.d.ts +639 -3787
- package/dist/v1/schemas/criteria-tree.js +1 -2
- package/dist/v1/schemas/criterion.d.ts +111 -668
- package/dist/v1/schemas/criterion.js +1 -2
- package/dist/v1/schemas/data-map.d.ts +41 -299
- package/dist/v1/schemas/task-group.d.ts +71 -438
- package/dist/v1/schemas/task-group.js +4 -2
- package/dist/v1/schemas/task-item.d.ts +22 -163
- package/dist/v1/schemas/task-item.js +5 -6
- package/dist/v1/schemas/task.d.ts +39 -250
- package/dist/v1/schemas/task.js +5 -4
- package/dist/v1/schemas/theme.d.ts +159 -940
- package/dist/v1/schemas/theme.js +1 -2
- package/package.json +1 -1
package/dist/v1/schemas/theme.js
CHANGED
|
@@ -28,7 +28,6 @@ exports.themeSchema = common_1.abstractElementSchema
|
|
|
28
28
|
.optional()
|
|
29
29
|
.describe("Visual styling configuration for the theme"),
|
|
30
30
|
items: zod_1.z.array(criterion_1.criterionSchema).describe("The criteria in this theme"),
|
|
31
|
-
options: exports.themeOptionsSchema
|
|
32
|
-
.describe("Configuration options for the theme display and behavior"),
|
|
31
|
+
options: exports.themeOptionsSchema.describe("Configuration options for the theme display and behavior"),
|
|
33
32
|
})
|
|
34
33
|
.describe("Theme - Represents a theme, which is the top layer of the criteria tree");
|
package/package.json
CHANGED