@bizdoc/core 2.3.29 → 2.3.31

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.
Files changed (37) hide show
  1. package/assets/bizdoc-schema.json +31 -13
  2. package/assets/themes/deep-purple-light-blue.min.css +4 -4
  3. package/assets/themes/default.min.css +4 -4
  4. package/esm2022/lib/admin/architecture/declarations.mjs +18 -2
  5. package/esm2022/lib/admin/architecture/designer-element.component.mjs +2 -2
  6. package/esm2022/lib/admin/architecture/designer.component.mjs +41 -38
  7. package/esm2022/lib/admin/architecture/elements/analysis-view.component.mjs +3 -3
  8. package/esm2022/lib/admin/architecture/elements/analysis-widget.component.mjs +3 -3
  9. package/esm2022/lib/admin/architecture/elements/documents-report.component.mjs +3 -3
  10. package/esm2022/lib/admin/architecture/elements/parallel-view.component.mjs +3 -3
  11. package/esm2022/lib/admin/architecture/elements/sum-view.component.mjs +3 -3
  12. package/esm2022/lib/admin/architecture/elements/type.component.mjs +7 -4
  13. package/esm2022/lib/admin/architecture/icon-picker.component.mjs +3 -3
  14. package/esm2022/lib/admin/form/workflow/role-node.component.mjs +1 -1
  15. package/esm2022/lib/admin/form/workflow/workflow.component.mjs +3 -3
  16. package/esm2022/lib/compose/copy/copy.dialog.mjs +3 -3
  17. package/esm2022/lib/compose/trace/trace.component.mjs +12 -13
  18. package/esm2022/lib/core/avatar/avatar.component.mjs +5 -6
  19. package/esm2022/lib/core/fields/yesno.field.mjs +3 -3
  20. package/esm2022/lib/core/models.mjs +1 -1
  21. package/esm2022/lib/cube/spreadsheet/spreadsheet.container.mjs +1 -1
  22. package/esm2022/lib/scheduler/schedule.component.mjs +2 -2
  23. package/esm2022/lib/shared.module.mjs +2 -2
  24. package/esm2022/lib/views/timeline/{timeline.component.exp.mjs → timeline.component.mjs} +11 -13
  25. package/esm2022/public-api.mjs +3 -2
  26. package/fesm2022/bizdoc-core.mjs +99 -78
  27. package/fesm2022/bizdoc-core.mjs.map +1 -1
  28. package/lib/admin/architecture/declarations.d.ts +5 -3
  29. package/lib/admin/architecture/designer.base.d.ts +1 -1
  30. package/lib/admin/architecture/designer.component.d.ts +14 -0
  31. package/lib/admin/system.service.d.ts +1 -1
  32. package/lib/core/models.d.ts +6 -1
  33. package/lib/scheduler/schedule.component.d.ts +2 -1
  34. package/lib/shared.module.d.ts +1 -1
  35. package/lib/views/timeline/{timeline.component.exp.d.ts → timeline.component.d.ts} +2 -4
  36. package/package.json +11 -11
  37. package/public-api.d.ts +2 -1
@@ -551,7 +551,7 @@
551
551
  "properties": {
552
552
  "Name": {
553
553
  "type": "string",
554
- "pattern": "^[A-Za-z][\\w\\-]*$"
554
+ "pattern": "^[A-Za-z][\\w\\-.]*$"
555
555
  },
556
556
  "Title": {
557
557
  "type": "string"
@@ -681,6 +681,24 @@
681
681
  },
682
682
  "additionalProperties": false
683
683
  },
684
+ "Holidays": {
685
+ "type": "array",
686
+ "items": {
687
+ "allOf": [
688
+ { "$ref": "#/definitions/base" },
689
+ {
690
+ "properties": {
691
+ "FromDate": {
692
+ "type": "string"
693
+ },
694
+ "ToDate": {
695
+ "type": "string"
696
+ }
697
+ }
698
+ }
699
+ ]
700
+ }
701
+ },
684
702
  "States": {
685
703
  "type": "array",
686
704
  "items": {
@@ -693,19 +711,19 @@
693
711
  },
694
712
  "Future": {
695
713
  "type": "string"
714
+ },
715
+ "BackgroundColor": {
716
+ "type": "string",
717
+ "format": "color"
718
+ },
719
+ "Color": {
720
+ "type": "string",
721
+ "format": "color"
722
+ },
723
+ "Shape": {
724
+ "type": "string",
725
+ "description": "SVG"
696
726
  }
697
- },
698
- "BackgroundColor": {
699
- "type": "string",
700
- "format": "color"
701
- },
702
- "Color": {
703
- "type": "string",
704
- "format": "color"
705
- },
706
- "Shape": {
707
- "type": "string",
708
- "description": "SVG"
709
727
  }
710
728
  }
711
729
  ]