@bizdoc/core 3.5.7 → 3.6.1
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/assets/bizdoc-schema.json +14 -2
- package/fesm2022/bizdoc-core.mjs +130 -65
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +120 -86
- package/package.json +1 -1
@@ -871,11 +871,23 @@
|
|
871
871
|
"type": "array",
|
872
872
|
"items": {
|
873
873
|
"allOf": [
|
874
|
-
{ "$ref": "#/definitions/
|
874
|
+
{ "$ref": "#/definitions/base" },
|
875
875
|
{
|
876
876
|
"properties": {
|
877
|
-
"
|
877
|
+
"Icon": {
|
878
878
|
"type": "string"
|
879
|
+
},
|
880
|
+
"BackgroundColor": {
|
881
|
+
"type": "string",
|
882
|
+
"format": "color"
|
883
|
+
},
|
884
|
+
"Color": {
|
885
|
+
"type": "string",
|
886
|
+
"format": "color"
|
887
|
+
},
|
888
|
+
"System": {
|
889
|
+
"type": "boolean",
|
890
|
+
"default": true
|
879
891
|
}
|
880
892
|
}
|
881
893
|
}
|