@heylemon/lemonade 0.0.4 → 0.0.6
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/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/gateway/skills-http.js +74 -19
- package/package.json +1 -1
- package/skills/docx/SKILL.md +25 -30
- package/skills/docx/scripts/accept_changes.py +0 -17
- package/skills/docx/scripts/comment.py +10 -39
- package/skills/docx/scripts/office/helpers/merge_runs.py +1 -33
- package/skills/docx/scripts/office/helpers/simplify_redlines.py +0 -43
- package/skills/docx/scripts/office/pack.py +0 -30
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
- package/skills/docx/scripts/office/soffice.py +0 -55
- package/skills/docx/scripts/office/unpack.py +5 -27
- package/skills/docx/scripts/office/validate.py +19 -14
- package/skills/docx/scripts/office/validators/base.py +48 -224
- package/skills/docx/scripts/office/validators/docx.py +44 -117
- package/skills/docx/scripts/office/validators/pptx.py +2 -42
- package/skills/docx/scripts/office/validators/redlining.py +3 -40
- package/skills/pdf/SKILL.md +22 -15
- package/skills/pdf/{FORMS.md → forms.md} +0 -14
- package/skills/pdf/scripts/check_bounding_boxes.py +0 -5
- package/skills/pdf/scripts/check_fillable_fields.py +0 -1
- package/skills/pdf/scripts/convert_pdf_to_images.py +0 -2
- package/skills/pdf/scripts/create_validation_image.py +0 -4
- package/skills/pdf/scripts/extract_form_field_info.py +1 -31
- package/skills/pdf/scripts/extract_form_structure.py +0 -9
- package/skills/pdf/scripts/fill_fillable_fields.py +0 -23
- package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +3 -38
- package/skills/pptx/SKILL.md +2 -29
- package/skills/pptx/editing.md +2 -2
- package/skills/pptx/pptxgenjs.md +53 -8
- package/skills/pptx/scripts/add_slide.py +0 -30
- package/skills/pptx/scripts/clean.py +0 -23
- package/skills/pptx/scripts/office/helpers/merge_runs.py +1 -33
- package/skills/pptx/scripts/office/helpers/simplify_redlines.py +0 -43
- package/skills/pptx/scripts/office/pack.py +0 -30
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
- package/skills/pptx/scripts/office/soffice.py +0 -55
- package/skills/pptx/scripts/office/unpack.py +5 -27
- package/skills/pptx/scripts/office/validate.py +19 -14
- package/skills/pptx/scripts/office/validators/base.py +48 -224
- package/skills/pptx/scripts/office/validators/docx.py +44 -117
- package/skills/pptx/scripts/office/validators/pptx.py +2 -42
- package/skills/pptx/scripts/office/validators/redlining.py +3 -40
- package/skills/pptx/scripts/thumbnail.py +0 -31
- package/skills/xlsx/SKILL.md +3 -26
- package/skills/xlsx/scripts/office/helpers/merge_runs.py +1 -33
- package/skills/xlsx/scripts/office/helpers/simplify_redlines.py +0 -43
- package/skills/xlsx/scripts/office/pack.py +0 -30
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
- package/skills/xlsx/scripts/office/soffice.py +0 -55
- package/skills/xlsx/scripts/office/unpack.py +5 -27
- package/skills/xlsx/scripts/office/validate.py +19 -14
- package/skills/xlsx/scripts/office/validators/base.py +48 -224
- package/skills/xlsx/scripts/office/validators/docx.py +44 -117
- package/skills/xlsx/scripts/office/validators/pptx.py +2 -42
- package/skills/xlsx/scripts/office/validators/redlining.py +3 -40
- package/skills/xlsx/scripts/recalc.py +2 -26
- package/skills/docx/scripts/__init__.py +0 -1
- package/skills/docx/scripts/office/helpers/__init__.py +0 -0
- package/skills/docx/scripts/office/validators/__init__.py +0 -15
- package/skills/pptx/scripts/__init__.py +0 -0
- package/skills/pptx/scripts/office/helpers/__init__.py +0 -0
- package/skills/pptx/scripts/office/validators/__init__.py +0 -15
- package/skills/xlsx/scripts/office/helpers/__init__.py +0 -0
- package/skills/xlsx/scripts/office/validators/__init__.py +0 -15
- /package/skills/pdf/{REFERENCE.md → reference.md} +0 -0
|
@@ -1,174 +1,174 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
-
xmlns="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
4
|
-
targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
5
|
-
elementFormDefault="qualified">
|
|
6
|
-
<xsd:simpleType name="ST_Lang">
|
|
7
|
-
<xsd:restriction base="xsd:string"/>
|
|
8
|
-
</xsd:simpleType>
|
|
9
|
-
<xsd:simpleType name="ST_HexColorRGB">
|
|
10
|
-
<xsd:restriction base="xsd:hexBinary">
|
|
11
|
-
<xsd:length value="3" fixed="true"/>
|
|
12
|
-
</xsd:restriction>
|
|
13
|
-
</xsd:simpleType>
|
|
14
|
-
<xsd:simpleType name="ST_Panose">
|
|
15
|
-
<xsd:restriction base="xsd:hexBinary">
|
|
16
|
-
<xsd:length value="10"/>
|
|
17
|
-
</xsd:restriction>
|
|
18
|
-
</xsd:simpleType>
|
|
19
|
-
<xsd:simpleType name="ST_CalendarType">
|
|
20
|
-
<xsd:restriction base="xsd:string">
|
|
21
|
-
<xsd:enumeration value="gregorian"/>
|
|
22
|
-
<xsd:enumeration value="gregorianUs"/>
|
|
23
|
-
<xsd:enumeration value="gregorianMeFrench"/>
|
|
24
|
-
<xsd:enumeration value="gregorianArabic"/>
|
|
25
|
-
<xsd:enumeration value="hijri"/>
|
|
26
|
-
<xsd:enumeration value="hebrew"/>
|
|
27
|
-
<xsd:enumeration value="taiwan"/>
|
|
28
|
-
<xsd:enumeration value="japan"/>
|
|
29
|
-
<xsd:enumeration value="thai"/>
|
|
30
|
-
<xsd:enumeration value="korea"/>
|
|
31
|
-
<xsd:enumeration value="saka"/>
|
|
32
|
-
<xsd:enumeration value="gregorianXlitEnglish"/>
|
|
33
|
-
<xsd:enumeration value="gregorianXlitFrench"/>
|
|
34
|
-
<xsd:enumeration value="none"/>
|
|
35
|
-
</xsd:restriction>
|
|
36
|
-
</xsd:simpleType>
|
|
37
|
-
<xsd:simpleType name="ST_AlgClass">
|
|
38
|
-
<xsd:restriction base="xsd:string">
|
|
39
|
-
<xsd:enumeration value="hash"/>
|
|
40
|
-
<xsd:enumeration value="custom"/>
|
|
41
|
-
</xsd:restriction>
|
|
42
|
-
</xsd:simpleType>
|
|
43
|
-
<xsd:simpleType name="ST_CryptProv">
|
|
44
|
-
<xsd:restriction base="xsd:string">
|
|
45
|
-
<xsd:enumeration value="rsaAES"/>
|
|
46
|
-
<xsd:enumeration value="rsaFull"/>
|
|
47
|
-
<xsd:enumeration value="custom"/>
|
|
48
|
-
</xsd:restriction>
|
|
49
|
-
</xsd:simpleType>
|
|
50
|
-
<xsd:simpleType name="ST_AlgType">
|
|
51
|
-
<xsd:restriction base="xsd:string">
|
|
52
|
-
<xsd:enumeration value="typeAny"/>
|
|
53
|
-
<xsd:enumeration value="custom"/>
|
|
54
|
-
</xsd:restriction>
|
|
55
|
-
</xsd:simpleType>
|
|
56
|
-
<xsd:simpleType name="ST_ColorType">
|
|
57
|
-
<xsd:restriction base="xsd:string"/>
|
|
58
|
-
</xsd:simpleType>
|
|
59
|
-
<xsd:simpleType name="ST_Guid">
|
|
60
|
-
<xsd:restriction base="xsd:token">
|
|
61
|
-
<xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/>
|
|
62
|
-
</xsd:restriction>
|
|
63
|
-
</xsd:simpleType>
|
|
64
|
-
<xsd:simpleType name="ST_OnOff">
|
|
65
|
-
<xsd:union memberTypes="xsd:boolean ST_OnOff1"/>
|
|
66
|
-
</xsd:simpleType>
|
|
67
|
-
<xsd:simpleType name="ST_OnOff1">
|
|
68
|
-
<xsd:restriction base="xsd:string">
|
|
69
|
-
<xsd:enumeration value="on"/>
|
|
70
|
-
<xsd:enumeration value="off"/>
|
|
71
|
-
</xsd:restriction>
|
|
72
|
-
</xsd:simpleType>
|
|
73
|
-
<xsd:simpleType name="ST_String">
|
|
74
|
-
<xsd:restriction base="xsd:string"/>
|
|
75
|
-
</xsd:simpleType>
|
|
76
|
-
<xsd:simpleType name="ST_XmlName">
|
|
77
|
-
<xsd:restriction base="xsd:NCName">
|
|
78
|
-
<xsd:minLength value="1"/>
|
|
79
|
-
<xsd:maxLength value="255"/>
|
|
80
|
-
</xsd:restriction>
|
|
81
|
-
</xsd:simpleType>
|
|
82
|
-
<xsd:simpleType name="ST_TrueFalse">
|
|
83
|
-
<xsd:restriction base="xsd:string">
|
|
84
|
-
<xsd:enumeration value="t"/>
|
|
85
|
-
<xsd:enumeration value="f"/>
|
|
86
|
-
<xsd:enumeration value="true"/>
|
|
87
|
-
<xsd:enumeration value="false"/>
|
|
88
|
-
</xsd:restriction>
|
|
89
|
-
</xsd:simpleType>
|
|
90
|
-
<xsd:simpleType name="ST_TrueFalseBlank">
|
|
91
|
-
<xsd:restriction base="xsd:string">
|
|
92
|
-
<xsd:enumeration value="t"/>
|
|
93
|
-
<xsd:enumeration value="f"/>
|
|
94
|
-
<xsd:enumeration value="true"/>
|
|
95
|
-
<xsd:enumeration value="false"/>
|
|
96
|
-
<xsd:enumeration value=""/>
|
|
97
|
-
<xsd:enumeration value="True"/>
|
|
98
|
-
<xsd:enumeration value="False"/>
|
|
99
|
-
</xsd:restriction>
|
|
100
|
-
</xsd:simpleType>
|
|
101
|
-
<xsd:simpleType name="ST_UnsignedDecimalNumber">
|
|
102
|
-
<xsd:restriction base="xsd:decimal">
|
|
103
|
-
<xsd:minInclusive value="0"/>
|
|
104
|
-
</xsd:restriction>
|
|
105
|
-
</xsd:simpleType>
|
|
106
|
-
<xsd:simpleType name="ST_TwipsMeasure">
|
|
107
|
-
<xsd:union memberTypes="ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure"/>
|
|
108
|
-
</xsd:simpleType>
|
|
109
|
-
<xsd:simpleType name="ST_VerticalAlignRun">
|
|
110
|
-
<xsd:restriction base="xsd:string">
|
|
111
|
-
<xsd:enumeration value="baseline"/>
|
|
112
|
-
<xsd:enumeration value="superscript"/>
|
|
113
|
-
<xsd:enumeration value="subscript"/>
|
|
114
|
-
</xsd:restriction>
|
|
115
|
-
</xsd:simpleType>
|
|
116
|
-
<xsd:simpleType name="ST_Xstring">
|
|
117
|
-
<xsd:restriction base="xsd:string"/>
|
|
118
|
-
</xsd:simpleType>
|
|
119
|
-
<xsd:simpleType name="ST_XAlign">
|
|
120
|
-
<xsd:restriction base="xsd:string">
|
|
121
|
-
<xsd:enumeration value="left"/>
|
|
122
|
-
<xsd:enumeration value="center"/>
|
|
123
|
-
<xsd:enumeration value="right"/>
|
|
124
|
-
<xsd:enumeration value="inside"/>
|
|
125
|
-
<xsd:enumeration value="outside"/>
|
|
126
|
-
</xsd:restriction>
|
|
127
|
-
</xsd:simpleType>
|
|
128
|
-
<xsd:simpleType name="ST_YAlign">
|
|
129
|
-
<xsd:restriction base="xsd:string">
|
|
130
|
-
<xsd:enumeration value="inline"/>
|
|
131
|
-
<xsd:enumeration value="top"/>
|
|
132
|
-
<xsd:enumeration value="center"/>
|
|
133
|
-
<xsd:enumeration value="bottom"/>
|
|
134
|
-
<xsd:enumeration value="inside"/>
|
|
135
|
-
<xsd:enumeration value="outside"/>
|
|
136
|
-
</xsd:restriction>
|
|
137
|
-
</xsd:simpleType>
|
|
138
|
-
<xsd:simpleType name="ST_ConformanceClass">
|
|
139
|
-
<xsd:restriction base="xsd:string">
|
|
140
|
-
<xsd:enumeration value="strict"/>
|
|
141
|
-
<xsd:enumeration value="transitional"/>
|
|
142
|
-
</xsd:restriction>
|
|
143
|
-
</xsd:simpleType>
|
|
144
|
-
<xsd:simpleType name="ST_UniversalMeasure">
|
|
145
|
-
<xsd:restriction base="xsd:string">
|
|
146
|
-
<xsd:pattern value="-?[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/>
|
|
147
|
-
</xsd:restriction>
|
|
148
|
-
</xsd:simpleType>
|
|
149
|
-
<xsd:simpleType name="ST_PositiveUniversalMeasure">
|
|
150
|
-
<xsd:restriction base="ST_UniversalMeasure">
|
|
151
|
-
<xsd:pattern value="[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/>
|
|
152
|
-
</xsd:restriction>
|
|
153
|
-
</xsd:simpleType>
|
|
154
|
-
<xsd:simpleType name="ST_Percentage">
|
|
155
|
-
<xsd:restriction base="xsd:string">
|
|
156
|
-
<xsd:pattern value="-?[0-9]+(\.[0-9]+)?%"/>
|
|
157
|
-
</xsd:restriction>
|
|
158
|
-
</xsd:simpleType>
|
|
159
|
-
<xsd:simpleType name="ST_FixedPercentage">
|
|
160
|
-
<xsd:restriction base="ST_Percentage">
|
|
161
|
-
<xsd:pattern value="-?((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/>
|
|
162
|
-
</xsd:restriction>
|
|
163
|
-
</xsd:simpleType>
|
|
164
|
-
<xsd:simpleType name="ST_PositivePercentage">
|
|
165
|
-
<xsd:restriction base="ST_Percentage">
|
|
166
|
-
<xsd:pattern value="[0-9]+(\.[0-9]+)?%"/>
|
|
167
|
-
</xsd:restriction>
|
|
168
|
-
</xsd:simpleType>
|
|
169
|
-
<xsd:simpleType name="ST_PositiveFixedPercentage">
|
|
170
|
-
<xsd:restriction base="ST_Percentage">
|
|
171
|
-
<xsd:pattern value="((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/>
|
|
172
|
-
</xsd:restriction>
|
|
173
|
-
</xsd:simpleType>
|
|
174
|
-
</xsd:schema>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
4
|
+
targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
5
|
+
elementFormDefault="qualified">
|
|
6
|
+
<xsd:simpleType name="ST_Lang">
|
|
7
|
+
<xsd:restriction base="xsd:string"/>
|
|
8
|
+
</xsd:simpleType>
|
|
9
|
+
<xsd:simpleType name="ST_HexColorRGB">
|
|
10
|
+
<xsd:restriction base="xsd:hexBinary">
|
|
11
|
+
<xsd:length value="3" fixed="true"/>
|
|
12
|
+
</xsd:restriction>
|
|
13
|
+
</xsd:simpleType>
|
|
14
|
+
<xsd:simpleType name="ST_Panose">
|
|
15
|
+
<xsd:restriction base="xsd:hexBinary">
|
|
16
|
+
<xsd:length value="10"/>
|
|
17
|
+
</xsd:restriction>
|
|
18
|
+
</xsd:simpleType>
|
|
19
|
+
<xsd:simpleType name="ST_CalendarType">
|
|
20
|
+
<xsd:restriction base="xsd:string">
|
|
21
|
+
<xsd:enumeration value="gregorian"/>
|
|
22
|
+
<xsd:enumeration value="gregorianUs"/>
|
|
23
|
+
<xsd:enumeration value="gregorianMeFrench"/>
|
|
24
|
+
<xsd:enumeration value="gregorianArabic"/>
|
|
25
|
+
<xsd:enumeration value="hijri"/>
|
|
26
|
+
<xsd:enumeration value="hebrew"/>
|
|
27
|
+
<xsd:enumeration value="taiwan"/>
|
|
28
|
+
<xsd:enumeration value="japan"/>
|
|
29
|
+
<xsd:enumeration value="thai"/>
|
|
30
|
+
<xsd:enumeration value="korea"/>
|
|
31
|
+
<xsd:enumeration value="saka"/>
|
|
32
|
+
<xsd:enumeration value="gregorianXlitEnglish"/>
|
|
33
|
+
<xsd:enumeration value="gregorianXlitFrench"/>
|
|
34
|
+
<xsd:enumeration value="none"/>
|
|
35
|
+
</xsd:restriction>
|
|
36
|
+
</xsd:simpleType>
|
|
37
|
+
<xsd:simpleType name="ST_AlgClass">
|
|
38
|
+
<xsd:restriction base="xsd:string">
|
|
39
|
+
<xsd:enumeration value="hash"/>
|
|
40
|
+
<xsd:enumeration value="custom"/>
|
|
41
|
+
</xsd:restriction>
|
|
42
|
+
</xsd:simpleType>
|
|
43
|
+
<xsd:simpleType name="ST_CryptProv">
|
|
44
|
+
<xsd:restriction base="xsd:string">
|
|
45
|
+
<xsd:enumeration value="rsaAES"/>
|
|
46
|
+
<xsd:enumeration value="rsaFull"/>
|
|
47
|
+
<xsd:enumeration value="custom"/>
|
|
48
|
+
</xsd:restriction>
|
|
49
|
+
</xsd:simpleType>
|
|
50
|
+
<xsd:simpleType name="ST_AlgType">
|
|
51
|
+
<xsd:restriction base="xsd:string">
|
|
52
|
+
<xsd:enumeration value="typeAny"/>
|
|
53
|
+
<xsd:enumeration value="custom"/>
|
|
54
|
+
</xsd:restriction>
|
|
55
|
+
</xsd:simpleType>
|
|
56
|
+
<xsd:simpleType name="ST_ColorType">
|
|
57
|
+
<xsd:restriction base="xsd:string"/>
|
|
58
|
+
</xsd:simpleType>
|
|
59
|
+
<xsd:simpleType name="ST_Guid">
|
|
60
|
+
<xsd:restriction base="xsd:token">
|
|
61
|
+
<xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/>
|
|
62
|
+
</xsd:restriction>
|
|
63
|
+
</xsd:simpleType>
|
|
64
|
+
<xsd:simpleType name="ST_OnOff">
|
|
65
|
+
<xsd:union memberTypes="xsd:boolean ST_OnOff1"/>
|
|
66
|
+
</xsd:simpleType>
|
|
67
|
+
<xsd:simpleType name="ST_OnOff1">
|
|
68
|
+
<xsd:restriction base="xsd:string">
|
|
69
|
+
<xsd:enumeration value="on"/>
|
|
70
|
+
<xsd:enumeration value="off"/>
|
|
71
|
+
</xsd:restriction>
|
|
72
|
+
</xsd:simpleType>
|
|
73
|
+
<xsd:simpleType name="ST_String">
|
|
74
|
+
<xsd:restriction base="xsd:string"/>
|
|
75
|
+
</xsd:simpleType>
|
|
76
|
+
<xsd:simpleType name="ST_XmlName">
|
|
77
|
+
<xsd:restriction base="xsd:NCName">
|
|
78
|
+
<xsd:minLength value="1"/>
|
|
79
|
+
<xsd:maxLength value="255"/>
|
|
80
|
+
</xsd:restriction>
|
|
81
|
+
</xsd:simpleType>
|
|
82
|
+
<xsd:simpleType name="ST_TrueFalse">
|
|
83
|
+
<xsd:restriction base="xsd:string">
|
|
84
|
+
<xsd:enumeration value="t"/>
|
|
85
|
+
<xsd:enumeration value="f"/>
|
|
86
|
+
<xsd:enumeration value="true"/>
|
|
87
|
+
<xsd:enumeration value="false"/>
|
|
88
|
+
</xsd:restriction>
|
|
89
|
+
</xsd:simpleType>
|
|
90
|
+
<xsd:simpleType name="ST_TrueFalseBlank">
|
|
91
|
+
<xsd:restriction base="xsd:string">
|
|
92
|
+
<xsd:enumeration value="t"/>
|
|
93
|
+
<xsd:enumeration value="f"/>
|
|
94
|
+
<xsd:enumeration value="true"/>
|
|
95
|
+
<xsd:enumeration value="false"/>
|
|
96
|
+
<xsd:enumeration value=""/>
|
|
97
|
+
<xsd:enumeration value="True"/>
|
|
98
|
+
<xsd:enumeration value="False"/>
|
|
99
|
+
</xsd:restriction>
|
|
100
|
+
</xsd:simpleType>
|
|
101
|
+
<xsd:simpleType name="ST_UnsignedDecimalNumber">
|
|
102
|
+
<xsd:restriction base="xsd:decimal">
|
|
103
|
+
<xsd:minInclusive value="0"/>
|
|
104
|
+
</xsd:restriction>
|
|
105
|
+
</xsd:simpleType>
|
|
106
|
+
<xsd:simpleType name="ST_TwipsMeasure">
|
|
107
|
+
<xsd:union memberTypes="ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure"/>
|
|
108
|
+
</xsd:simpleType>
|
|
109
|
+
<xsd:simpleType name="ST_VerticalAlignRun">
|
|
110
|
+
<xsd:restriction base="xsd:string">
|
|
111
|
+
<xsd:enumeration value="baseline"/>
|
|
112
|
+
<xsd:enumeration value="superscript"/>
|
|
113
|
+
<xsd:enumeration value="subscript"/>
|
|
114
|
+
</xsd:restriction>
|
|
115
|
+
</xsd:simpleType>
|
|
116
|
+
<xsd:simpleType name="ST_Xstring">
|
|
117
|
+
<xsd:restriction base="xsd:string"/>
|
|
118
|
+
</xsd:simpleType>
|
|
119
|
+
<xsd:simpleType name="ST_XAlign">
|
|
120
|
+
<xsd:restriction base="xsd:string">
|
|
121
|
+
<xsd:enumeration value="left"/>
|
|
122
|
+
<xsd:enumeration value="center"/>
|
|
123
|
+
<xsd:enumeration value="right"/>
|
|
124
|
+
<xsd:enumeration value="inside"/>
|
|
125
|
+
<xsd:enumeration value="outside"/>
|
|
126
|
+
</xsd:restriction>
|
|
127
|
+
</xsd:simpleType>
|
|
128
|
+
<xsd:simpleType name="ST_YAlign">
|
|
129
|
+
<xsd:restriction base="xsd:string">
|
|
130
|
+
<xsd:enumeration value="inline"/>
|
|
131
|
+
<xsd:enumeration value="top"/>
|
|
132
|
+
<xsd:enumeration value="center"/>
|
|
133
|
+
<xsd:enumeration value="bottom"/>
|
|
134
|
+
<xsd:enumeration value="inside"/>
|
|
135
|
+
<xsd:enumeration value="outside"/>
|
|
136
|
+
</xsd:restriction>
|
|
137
|
+
</xsd:simpleType>
|
|
138
|
+
<xsd:simpleType name="ST_ConformanceClass">
|
|
139
|
+
<xsd:restriction base="xsd:string">
|
|
140
|
+
<xsd:enumeration value="strict"/>
|
|
141
|
+
<xsd:enumeration value="transitional"/>
|
|
142
|
+
</xsd:restriction>
|
|
143
|
+
</xsd:simpleType>
|
|
144
|
+
<xsd:simpleType name="ST_UniversalMeasure">
|
|
145
|
+
<xsd:restriction base="xsd:string">
|
|
146
|
+
<xsd:pattern value="-?[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/>
|
|
147
|
+
</xsd:restriction>
|
|
148
|
+
</xsd:simpleType>
|
|
149
|
+
<xsd:simpleType name="ST_PositiveUniversalMeasure">
|
|
150
|
+
<xsd:restriction base="ST_UniversalMeasure">
|
|
151
|
+
<xsd:pattern value="[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/>
|
|
152
|
+
</xsd:restriction>
|
|
153
|
+
</xsd:simpleType>
|
|
154
|
+
<xsd:simpleType name="ST_Percentage">
|
|
155
|
+
<xsd:restriction base="xsd:string">
|
|
156
|
+
<xsd:pattern value="-?[0-9]+(\.[0-9]+)?%"/>
|
|
157
|
+
</xsd:restriction>
|
|
158
|
+
</xsd:simpleType>
|
|
159
|
+
<xsd:simpleType name="ST_FixedPercentage">
|
|
160
|
+
<xsd:restriction base="ST_Percentage">
|
|
161
|
+
<xsd:pattern value="-?((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/>
|
|
162
|
+
</xsd:restriction>
|
|
163
|
+
</xsd:simpleType>
|
|
164
|
+
<xsd:simpleType name="ST_PositivePercentage">
|
|
165
|
+
<xsd:restriction base="ST_Percentage">
|
|
166
|
+
<xsd:pattern value="[0-9]+(\.[0-9]+)?%"/>
|
|
167
|
+
</xsd:restriction>
|
|
168
|
+
</xsd:simpleType>
|
|
169
|
+
<xsd:simpleType name="ST_PositiveFixedPercentage">
|
|
170
|
+
<xsd:restriction base="ST_Percentage">
|
|
171
|
+
<xsd:pattern value="((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/>
|
|
172
|
+
</xsd:restriction>
|
|
173
|
+
</xsd:simpleType>
|
|
174
|
+
</xsd:schema>
|