@ptsecurity/mosaic 14.1.1 → 14.2.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.
Files changed (39) hide show
  1. package/_theming.scss +7326 -90
  2. package/_visual.scss +3032 -6
  3. package/design-tokens/legacy-2017/tokens/components/markdown.json5 +294 -0
  4. package/design-tokens/legacy-2017/tokens/properties/md-typography.json5 +103 -0
  5. package/design-tokens/legacy-2017/tokens.d.ts +204 -0
  6. package/design-tokens/pt-2022/tokens/components/markdown.json5 +294 -0
  7. package/design-tokens/pt-2022/tokens/properties/md-typography.json5 +103 -0
  8. package/design-tokens/pt-2022/tokens.d.ts +204 -0
  9. package/design-tokens/style-dictionary/build.js +2 -0
  10. package/design-tokens/style-dictionary/configs/scss.js +6 -0
  11. package/design-tokens/style-dictionary/filters/color.js +3 -1
  12. package/design-tokens/style-dictionary/filters/md-typography.js +7 -0
  13. package/design-tokens/style-dictionary/transformGroups/scss.js +1 -0
  14. package/design-tokens/style-dictionary/transforms/attribute/md-typography.js +9 -0
  15. package/esm2020/design-tokens/legacy-2017/tokens.mjs +205 -1
  16. package/esm2020/design-tokens/pt-2022/tokens.mjs +205 -1
  17. package/esm2020/markdown/index.mjs +2 -0
  18. package/esm2020/markdown/markdown.component.mjs +45 -0
  19. package/esm2020/markdown/markdown.module.mjs +23 -0
  20. package/esm2020/markdown/markdown.service.mjs +52 -0
  21. package/esm2020/markdown/ptsecurity-mosaic-markdown.mjs +5 -0
  22. package/esm2020/markdown/public-api.mjs +4 -0
  23. package/fesm2015/ptsecurity-mosaic-design-tokens.mjs +613 -1
  24. package/fesm2015/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
  25. package/fesm2015/ptsecurity-mosaic-markdown.mjs +120 -0
  26. package/fesm2015/ptsecurity-mosaic-markdown.mjs.map +1 -0
  27. package/fesm2020/ptsecurity-mosaic-design-tokens.mjs +613 -1
  28. package/fesm2020/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
  29. package/fesm2020/ptsecurity-mosaic-markdown.mjs +119 -0
  30. package/fesm2020/ptsecurity-mosaic-markdown.mjs.map +1 -0
  31. package/markdown/README.md +0 -0
  32. package/markdown/index.d.ts +1 -0
  33. package/markdown/markdown.component.d.ts +16 -0
  34. package/markdown/markdown.module.d.ts +11 -0
  35. package/markdown/markdown.service.d.ts +7 -0
  36. package/markdown/public-api.d.ts +3 -0
  37. package/package.json +12 -4
  38. package/prebuilt-themes/dark-theme.css +1 -1
  39. package/prebuilt-themes/default-theme.css +1 -1
@@ -0,0 +1,294 @@
1
+ {
2
+ markdown: {
3
+ h1: {
4
+ 'light-color-scheme': {
5
+ color: { value: '{light-color-scheme.foreground.text}' }
6
+ },
7
+ 'dark-color-scheme': {
8
+ color: { value: '{dark-color-scheme.foreground.text}' }
9
+ },
10
+ size: {
11
+ 'max-width': { value: '{markdown.size.max-width}'},
12
+ 'margin-top': { value: '0' },
13
+ 'margin-bottom': { value: '{size.l}' },
14
+ },
15
+ font: {
16
+ default: { value: 'md-h1' }
17
+ }
18
+ },
19
+ h2: {
20
+ 'light-color-scheme': {
21
+ color: { value: '{light-color-scheme.foreground.text}' }
22
+ },
23
+ 'dark-color-scheme': {
24
+ color: { value: '{dark-color-scheme.foreground.text}' }
25
+ },
26
+ size: {
27
+ 'max-width': { value: '{markdown.size.max-width}'},
28
+ 'margin-top': { value: '{size.xxl}' },
29
+ 'margin-bottom': { value: '{size.m}' },
30
+ },
31
+ font: {
32
+ default: { value: 'md-h2' }
33
+ }
34
+ },
35
+ h3: {
36
+ 'light-color-scheme': {
37
+ color: { value: '{light-color-scheme.foreground.text}' }
38
+ },
39
+ 'dark-color-scheme': {
40
+ color: { value: '{dark-color-scheme.foreground.text}' }
41
+ },
42
+ size: {
43
+ 'max-width': { value: '{markdown.size.max-width}'},
44
+ 'margin-top': { value: '{size.xxl}' },
45
+ 'margin-bottom': { value: '{size.m}' },
46
+ },
47
+ font: {
48
+ default: { value: 'md-h3' }
49
+ }
50
+ },
51
+ h4: {
52
+ 'light-color-scheme': {
53
+ color: { value: '{light-color-scheme.foreground.text}' }
54
+ },
55
+ 'dark-color-scheme': {
56
+ color: { value: '{dark-color-scheme.foreground.text}' }
57
+ },
58
+ size: {
59
+ 'max-width': { value: '{markdown.size.max-width}'},
60
+ 'margin-top': { value: '{size.xxl}' },
61
+ 'margin-bottom': { value: '{size.m}' },
62
+ },
63
+ font: {
64
+ default: { value: 'md-h4' }
65
+ }
66
+ },
67
+ h5: {
68
+ 'light-color-scheme': {
69
+ color: { value: '{light-color-scheme.foreground.text}' }
70
+ },
71
+ 'dark-color-scheme': {
72
+ color: { value: '{dark-color-scheme.foreground.text}' }
73
+ },
74
+ size: {
75
+ 'max-width': { value: '{markdown.size.max-width}'},
76
+ 'margin-top': { value: '{size.xxl}' },
77
+ 'margin-bottom': { value: '{size.s}' },
78
+ },
79
+ font: {
80
+ default: { value: 'md-h5' }
81
+ }
82
+ },
83
+ h6: {
84
+ 'light-color-scheme': {
85
+ color: { value: '{light-color-scheme.foreground.text}' }
86
+ },
87
+ 'dark-color-scheme': {
88
+ color: { value: '{dark-color-scheme.foreground.text}' }
89
+ },
90
+ size: {
91
+ 'max-width': { value: '{markdown.size.max-width}'},
92
+ 'margin-top': { value: '{size.xxl}' },
93
+ 'margin-bottom': { value: '{size.s}' },
94
+ },
95
+ font: {
96
+ default: { value: 'md-h6' }
97
+ }
98
+ },
99
+ p: {
100
+ 'light-color-scheme': {
101
+ color: { value: '{light-color-scheme.foreground.text}' }
102
+ },
103
+ 'dark-color-scheme': {
104
+ color: { value: '{dark-color-scheme.foreground.text}' }
105
+ },
106
+ size: {
107
+ 'max-width': { value: '{markdown.size.max-width}'},
108
+ 'margin-top': { value: '{size.m}' },
109
+ 'margin-bottom': { value: '{size.m}' },
110
+ },
111
+ font: {
112
+ default: { value: 'md-body' }
113
+ }
114
+ },
115
+ list: {
116
+ 'light-color-scheme': {
117
+ color: { value: '{light-color-scheme.foreground.text}' }
118
+ },
119
+ 'dark-color-scheme': {
120
+ color: { value: '{dark-color-scheme.foreground.text}' }
121
+ },
122
+ size: {
123
+ 'max-width': { value: '{markdown.size.max-width}'},
124
+ 'margin-top': { value: '{size.m}' },
125
+ 'margin-bottom': { value: '{size.m}' },
126
+ 'margin-top-after-paragraph': { value: '-{size.s}' },
127
+ 'ol-number-padding-right': { value: '{size.xxs}' },
128
+ 'ul-padding': { value: '0 0 0 {size.xxl}' },
129
+ 'item-margin-bottom': { value: '{size.xxs}' }
130
+ },
131
+ font: {
132
+ default: { value: 'md-body' }
133
+ }
134
+ },
135
+ blockquote: {
136
+ 'light-color-scheme': {
137
+ text: { value: '{light-color-scheme.foreground.text}' },
138
+ line: { value: '{light-color-scheme.foreground.border}' },
139
+ background: { value: 'transparent' },
140
+ border: { value: 'transparent' }
141
+ },
142
+ 'dark-color-scheme': {
143
+ text: { value: '{dark-color-scheme.foreground.text}' },
144
+ line: { value: '{dark-color-scheme.foreground.border}' },
145
+ background: { value: 'transparent' },
146
+ border: { value: 'transparent' }
147
+ },
148
+ size: {
149
+ 'max-width': { value: '{markdown.size.max-width}'},
150
+ 'margin-top': { value: '{size.m}' },
151
+ 'margin-bottom': { value: '{size.m}' },
152
+ 'padding': { value: '{size.3xs} {size.m}' },
153
+ 'line-width': { value: '{size.xxs}' },
154
+ 'border-radius': { value: '0' },
155
+ 'border-width': { value: '0' },
156
+ },
157
+ font: {
158
+ default: { value: 'md-body' }
159
+ }
160
+ },
161
+ code: {
162
+ 'light-color-scheme': {
163
+ text: { value: '{light-color-scheme.foreground.text}' },
164
+ background: { value: '{light-color-scheme.background.background-less-contrast}' },
165
+ border: { value: '{light-color-scheme.foreground.divider}' }
166
+ },
167
+ 'dark-color-scheme': {
168
+ text: { value: '{dark-color-scheme.foreground.text}' },
169
+ background: { value: '{dark-color-scheme.background.background-less-contrast}' },
170
+ border: { value: '{dark-color-scheme.foreground.divider}' }
171
+ },
172
+ size: {
173
+ 'max-width': { value: '{markdown.size.max-width}'},
174
+ 'multiline-margin-top': { value: '{size.m}' },
175
+ 'multiline-margin-bottom': { value: '{size.xxl}' },
176
+ 'inline-padding': { value: '1px {size.xxs}' },
177
+ 'multiline-padding': { value: '{size.m} {size.l}' },
178
+ 'border-radius': { value: '{size.border-radius}' },
179
+ 'border-width': { value: '{size.border-width}' },
180
+ },
181
+ font: {
182
+ default: { value: 'md-body-mono' }
183
+ }
184
+ },
185
+ link: {
186
+ 'light-color-scheme': {
187
+ text: { value: '{link.light-color-scheme.text}' },
188
+ 'border-bottom': { value: '{link.light-color-scheme.border-bottom}' },
189
+
190
+ 'state-visited': {
191
+ 'text': { value: '{link.light-color-scheme.state-visited.text}' },
192
+ 'border-bottom': { value: '{link.light-color-scheme.state-visited.border-bottom}' }
193
+ },
194
+ 'state-hover': {
195
+ 'text': { value: '{link.light-color-scheme.state-hover.text}' },
196
+ 'border-bottom': { value: '{link.light-color-scheme.state-hover.border-bottom}' }
197
+ },
198
+
199
+ 'state-active': { value: '{link.light-color-scheme.state-active}' },
200
+
201
+ 'state-focused': {
202
+ outline: { value: '{link.light-color-scheme.state-focused.outline}' }
203
+ }
204
+ },
205
+ 'dark-color-scheme': {
206
+ text: { value: '{link.dark-color-scheme.text}' },
207
+ 'border-bottom': { value: '{link.dark-color-scheme.border-bottom}' },
208
+
209
+ 'state-visited': {
210
+ 'text': { value: '{link.dark-color-scheme.state-visited.text}' },
211
+ 'border-bottom': { value: '{link.dark-color-scheme.state-visited.border-bottom}' }
212
+ },
213
+ 'state-hover': {
214
+ 'text': { value: '{link.dark-color-scheme.state-hover.text}' },
215
+ 'border-bottom': { value: '{link.dark-color-scheme.state-hover.border-bottom}' }
216
+ },
217
+
218
+ 'state-active': { value: '{link.dark-color-scheme.state-active}' },
219
+
220
+ 'state-focused': {
221
+ outline: { value: '{link.dark-color-scheme.state-focused.outline}' }
222
+ }
223
+ },
224
+ size: {
225
+ 'icon-margin': { value: '{link.size.icon-margin}' },
226
+ 'state-focused': {
227
+ 'outline-offset': { value: '{link.size.state-focused.outline-offset}' },
228
+ 'outline-width': { value: '{link.size.state-focused.outline-width}' }
229
+ }
230
+ },
231
+ font: {
232
+ default: { value: 'md-body' }
233
+ }
234
+ },
235
+ image: {
236
+ 'light-color-scheme': {
237
+ 'caption-text': { value: '{light-color-scheme.foreground.text-less-contrast}' }
238
+ },
239
+ 'dark-color-scheme': {
240
+ 'caption-text': { value: '{dark-color-scheme.foreground.text-less-contrast}' }
241
+ },
242
+ size: {
243
+ 'max-width': { value: '{markdown.size.max-width}'},
244
+ 'margin-top': { value: '{size.m}' },
245
+ 'margin-bottom': { value: '{size.m}' },
246
+
247
+ 'caption-margin-top': { value: '-{size.s}' },
248
+ 'caption-margin-bottom': { value: '{size.xxl}' },
249
+ },
250
+ font: {
251
+ 'caption': { value: 'md-caption' }
252
+ }
253
+ },
254
+ hr: {
255
+ 'light-color-scheme': {
256
+ color: { value: '{light-color-scheme.foreground.divider}' },
257
+ },
258
+ 'dark-color-scheme': {
259
+ color: { value: '{dark-color-scheme.foreground.divider}' }
260
+ },
261
+ size: {
262
+ 'width': { value: '1px'},
263
+ 'margin-vertical': { value: '{size.xxl}' },
264
+ },
265
+ },
266
+ table: {
267
+ 'light-color-scheme': {
268
+ header: { value: '{light-color-scheme.foreground.text-less-contrast}' },
269
+ body: { value: '{light-color-scheme.foreground.text}' },
270
+ border: { value: '{light-color-scheme.foreground.divider}' }
271
+ },
272
+ 'dark-color-scheme': {
273
+ header: { value: '{dark-color-scheme.foreground.text-less-contrast}' },
274
+ body: { value: '{dark-color-scheme.foreground.text}' },
275
+ border: { value: '{dark-color-scheme.foreground.divider}' }
276
+ },
277
+ size: {
278
+ 'border-width': { value: '{size.border-width}'},
279
+ 'padding': { value: '{size.s}' },
280
+ 'margin-bottom': { value: '{size.m}' }
281
+ },
282
+ font: {
283
+ header: { value: 'md-table-header' },
284
+ body: { value: 'md-table-cell' }
285
+ }
286
+ },
287
+ size: {
288
+ 'max-width': { value: '650px' }
289
+ },
290
+ font: {
291
+ default: { value: 'md-body' }
292
+ }
293
+ }
294
+ }
@@ -0,0 +1,103 @@
1
+ {
2
+ "md-typography": {
3
+ 'md-h1': {
4
+ 'font-size': { value: '{typography.display-2.font-size}' },
5
+ 'line-height': { value: '48px' },
6
+ 'letter-spacing': { value: '{typography.display-2.letter-spacing}' },
7
+ 'font-weight': { value: '{typography.display-2.font-weight}' },
8
+ 'font-family': { value: '{typography.display-2.font-family}' },
9
+ 'text-transform': { value: '{typography.display-2.text-transform}' },
10
+ 'font-feature-settings': { value: '{typography.display-2.font-feature-settings}' }
11
+ },
12
+ 'md-h2': {
13
+ 'font-size': { value: '{typography.display-3.font-size}' },
14
+ 'line-height': { value: '38px' },
15
+ 'letter-spacing': { value: '{typography.display-3.letter-spacing}' },
16
+ 'font-weight': { value: '{typography.display-3.font-weight}' },
17
+ 'font-family': { value: '{typography.display-3.font-family}' },
18
+ 'text-transform': { value: '{typography.display-3.text-transform}' },
19
+ 'font-feature-settings': { value: '{typography.display-3.font-feature-settings}' }
20
+ },
21
+ 'md-h3': {
22
+ 'font-size': { value: '{typography.headline.font-size}' },
23
+ 'line-height': { value: '28px' },
24
+ 'letter-spacing': { value: '{typography.headline.letter-spacing}' },
25
+ 'font-weight': { value: '{typography.headline.font-weight}' },
26
+ 'font-family': { value: '{typography.headline.font-family}' },
27
+ 'text-transform': { value: '{typography.headline.text-transform}' },
28
+ 'font-feature-settings': { value: '{typography.headline.font-feature-settings}' }
29
+ },
30
+ 'md-h4': {
31
+ 'font-size': { value: '{typography.title.font-size}' },
32
+ 'line-height': { value: '24px' },
33
+ 'letter-spacing': { value: '{typography.title.letter-spacing}' },
34
+ 'font-weight': { value: '{typography.title.font-weight}' },
35
+ 'font-family': { value: '{typography.title.font-family}' },
36
+ 'text-transform': { value: '{typography.title.text-transform}' },
37
+ 'font-feature-settings': { value: '{typography.title.font-feature-settings}' }
38
+ },
39
+ 'md-h5': {
40
+ 'font-size': { value: '{typography.subheading.font-size}' },
41
+ 'line-height': { value: '24px' },
42
+ 'letter-spacing': { value: '{typography.subheading.letter-spacing}' },
43
+ 'font-weight': { value: '{typography.subheading.font-weight}' },
44
+ 'font-family': { value: '{typography.subheading.font-family}' },
45
+ 'text-transform': { value: '{typography.subheading.text-transform}' },
46
+ 'font-feature-settings': { value: '{typography.subheading.font-feature-settings}' }
47
+ },
48
+ 'md-h6': {
49
+ 'font-size': { value: '{typography.subheading.font-size}' },
50
+ 'line-height': { value: '24px' },
51
+ 'letter-spacing': { value: '{typography.subheading.letter-spacing}' },
52
+ 'font-weight': { value: '{typography.subheading.font-weight}' },
53
+ 'font-family': { value: '{typography.subheading.font-family}' },
54
+ 'text-transform': { value: '{typography.subheading.text-transform}' },
55
+ 'font-feature-settings': { value: '{typography.subheading.font-feature-settings}' }
56
+ },
57
+ 'md-body': {
58
+ 'font-size': { value: '{typography.body.font-size}' },
59
+ 'line-height': { value: '24px' },
60
+ 'letter-spacing': { value: '{typography.body.letter-spacing}' },
61
+ 'font-weight': { value: '{typography.body.font-weight}' },
62
+ 'font-family': { value: '{typography.body.font-family}' },
63
+ 'text-transform': { value: '{typography.body.text-transform}' },
64
+ 'font-feature-settings': { value: '{typography.body.font-feature-settings}' }
65
+ },
66
+ 'md-body-mono': {
67
+ 'font-size': { value: '14px' },
68
+ 'line-height': { value: '20px' },
69
+ 'letter-spacing': { value: '{typography.body-mono.letter-spacing}' },
70
+ 'font-weight': { value: '{typography.body-mono.font-weight}' },
71
+ 'font-family': { value: '{typography.body-mono.font-family}' },
72
+ 'text-transform': { value: '{typography.body-mono.text-transform}' },
73
+ 'font-feature-settings': { value: '{typography.body-mono.font-feature-settings}' }
74
+ },
75
+ 'md-caption': {
76
+ 'font-size': { value: '{typography.caption.font-size}' },
77
+ 'line-height': { value: '{typography.caption.line-height}' },
78
+ 'letter-spacing': { value: '{typography.caption.letter-spacing}' },
79
+ 'font-weight': { value: '{typography.caption.font-weight}' },
80
+ 'font-family': { value: '{typography.caption.font-family}' },
81
+ 'text-transform': { value: '{typography.caption.text-transform}' },
82
+ 'font-feature-settings': { value: '{typography.caption.font-feature-settings}' }
83
+ },
84
+ 'md-table-cell': {
85
+ 'font-size': { value: '{typography.body-tabular.font-size}' },
86
+ 'line-height': { value: '{typography.body-tabular.line-height}' },
87
+ 'letter-spacing': { value: '{typography.body-tabular.letter-spacing}' },
88
+ 'font-weight': { value: '{typography.body-tabular.font-weight}' },
89
+ 'font-family': { value: '{typography.body-tabular.font-family}' },
90
+ 'text-transform': { value: '{typography.body-tabular.text-transform}' },
91
+ 'font-feature-settings': { value: '{typography.body-tabular.font-feature-settings}' }
92
+ },
93
+ 'md-table-header': {
94
+ 'font-size': { value: '{typography.caption-tabular.font-size}' },
95
+ 'line-height': { value: '{typography.caption-tabular.line-height}' },
96
+ 'letter-spacing': { value: '{typography.caption-tabular.letter-spacing}' },
97
+ 'font-weight': { value: '{typography.caption-tabular.font-weight}' },
98
+ 'font-family': { value: '{typography.caption-tabular.font-family}' },
99
+ 'text-transform': { value: '{typography.caption-tabular.text-transform}' },
100
+ 'font-feature-settings': { value: '{typography.caption-tabular.font-feature-settings}' }
101
+ }
102
+ }
103
+ }
@@ -4838,6 +4838,83 @@ export declare const PaddingHeaderFooterHorizontal = "16px";
4838
4838
  export declare const MarginControlGroupSVertical = "8px";
4839
4839
  export declare const MarginIconTextMHorizontal = "8px";
4840
4840
  export declare const MarginIconTextSHorizontal = "4px";
4841
+ export declare const MdTypographyMdH1FontSize = "45px";
4842
+ export declare const MdTypographyMdH1LineHeight = "48px";
4843
+ export declare const MdTypographyMdH1LetterSpacing = "normal";
4844
+ export declare const MdTypographyMdH1FontWeight = "normal";
4845
+ export declare const MdTypographyMdH1FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4846
+ export declare const MdTypographyMdH1TextTransform = "initial";
4847
+ export declare const MdTypographyMdH1FontFeatureSettings = "initial";
4848
+ export declare const MdTypographyMdH2FontSize = "34px";
4849
+ export declare const MdTypographyMdH2LineHeight = "38px";
4850
+ export declare const MdTypographyMdH2LetterSpacing = "0.25px";
4851
+ export declare const MdTypographyMdH2FontWeight = "normal";
4852
+ export declare const MdTypographyMdH2FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4853
+ export declare const MdTypographyMdH2TextTransform = "initial";
4854
+ export declare const MdTypographyMdH2FontFeatureSettings = "initial";
4855
+ export declare const MdTypographyMdH3FontSize = "24px";
4856
+ export declare const MdTypographyMdH3LineHeight = "28px";
4857
+ export declare const MdTypographyMdH3LetterSpacing = "normal";
4858
+ export declare const MdTypographyMdH3FontWeight = "normal";
4859
+ export declare const MdTypographyMdH3FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4860
+ export declare const MdTypographyMdH3TextTransform = "initial";
4861
+ export declare const MdTypographyMdH3FontFeatureSettings = "initial";
4862
+ export declare const MdTypographyMdH4FontSize = "20px";
4863
+ export declare const MdTypographyMdH4LineHeight = "24px";
4864
+ export declare const MdTypographyMdH4LetterSpacing = "0.15px";
4865
+ export declare const MdTypographyMdH4FontWeight = "500";
4866
+ export declare const MdTypographyMdH4FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4867
+ export declare const MdTypographyMdH4TextTransform = "initial";
4868
+ export declare const MdTypographyMdH4FontFeatureSettings = "initial";
4869
+ export declare const MdTypographyMdH5FontSize = "15px";
4870
+ export declare const MdTypographyMdH5LineHeight = "24px";
4871
+ export declare const MdTypographyMdH5LetterSpacing = "0.15px";
4872
+ export declare const MdTypographyMdH5FontWeight = "700";
4873
+ export declare const MdTypographyMdH5FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4874
+ export declare const MdTypographyMdH5TextTransform = "initial";
4875
+ export declare const MdTypographyMdH5FontFeatureSettings = "initial";
4876
+ export declare const MdTypographyMdH6FontSize = "15px";
4877
+ export declare const MdTypographyMdH6LineHeight = "24px";
4878
+ export declare const MdTypographyMdH6LetterSpacing = "0.15px";
4879
+ export declare const MdTypographyMdH6FontWeight = "700";
4880
+ export declare const MdTypographyMdH6FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4881
+ export declare const MdTypographyMdH6TextTransform = "initial";
4882
+ export declare const MdTypographyMdH6FontFeatureSettings = "initial";
4883
+ export declare const MdTypographyMdBodyFontSize = "15px";
4884
+ export declare const MdTypographyMdBodyLineHeight = "24px";
4885
+ export declare const MdTypographyMdBodyLetterSpacing = "0.15px";
4886
+ export declare const MdTypographyMdBodyFontWeight = "normal";
4887
+ export declare const MdTypographyMdBodyFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4888
+ export declare const MdTypographyMdBodyTextTransform = "initial";
4889
+ export declare const MdTypographyMdBodyFontFeatureSettings = "initial";
4890
+ export declare const MdTypographyMdBodyMonoFontSize = "14px";
4891
+ export declare const MdTypographyMdBodyMonoLineHeight = "20px";
4892
+ export declare const MdTypographyMdBodyMonoLetterSpacing = "normal";
4893
+ export declare const MdTypographyMdBodyMonoFontWeight = "normal";
4894
+ export declare const MdTypographyMdBodyMonoFontFamily = "'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace";
4895
+ export declare const MdTypographyMdBodyMonoTextTransform = "initial";
4896
+ export declare const MdTypographyMdBodyMonoFontFeatureSettings = "initial";
4897
+ export declare const MdTypographyMdCaptionFontSize = "13px";
4898
+ export declare const MdTypographyMdCaptionLineHeight = "16px";
4899
+ export declare const MdTypographyMdCaptionLetterSpacing = "0.25px";
4900
+ export declare const MdTypographyMdCaptionFontWeight = "normal";
4901
+ export declare const MdTypographyMdCaptionFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4902
+ export declare const MdTypographyMdCaptionTextTransform = "initial";
4903
+ export declare const MdTypographyMdCaptionFontFeatureSettings = "initial";
4904
+ export declare const MdTypographyMdTableCellFontSize = "15px";
4905
+ export declare const MdTypographyMdTableCellLineHeight = "20px";
4906
+ export declare const MdTypographyMdTableCellLetterSpacing = "0.15px";
4907
+ export declare const MdTypographyMdTableCellFontWeight = "normal";
4908
+ export declare const MdTypographyMdTableCellFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4909
+ export declare const MdTypographyMdTableCellTextTransform = "initial";
4910
+ export declare const MdTypographyMdTableCellFontFeatureSettings = "\"tnum\" on";
4911
+ export declare const MdTypographyMdTableHeaderFontSize = "13px";
4912
+ export declare const MdTypographyMdTableHeaderLineHeight = "16px";
4913
+ export declare const MdTypographyMdTableHeaderLetterSpacing = "0.25px";
4914
+ export declare const MdTypographyMdTableHeaderFontWeight = "normal";
4915
+ export declare const MdTypographyMdTableHeaderFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
4916
+ export declare const MdTypographyMdTableHeaderTextTransform = "initial";
4917
+ export declare const MdTypographyMdTableHeaderFontFeatureSettings = "\"tnum\" on";
4841
4918
  export declare const PaletteBlue40 = "#F5FAFD";
4842
4919
  export declare const PaletteBlue60 = "#EBF4FB";
4843
4920
  export declare const PaletteBlue100 = "#D8EAF7";
@@ -7544,6 +7621,133 @@ export declare const LoaderOverlaySizeFixedTopPadding = "72px";
7544
7621
  export declare const LoaderOverlaySizeCenterOpticalCompensation = "-40%";
7545
7622
  export declare const LoaderOverlayFontText = "body";
7546
7623
  export declare const LoaderOverlayFontCaption = "caption";
7624
+ export declare const MarkdownH1LightColorSchemeColor = "#4D4D4D";
7625
+ export declare const MarkdownH1DarkColorSchemeColor = "#F0F0F0";
7626
+ export declare const MarkdownH1SizeMaxWidth = "650px";
7627
+ export declare const MarkdownH1SizeMarginTop = "0";
7628
+ export declare const MarkdownH1SizeMarginBottom = "16px";
7629
+ export declare const MarkdownH1FontDefault = "md-h1";
7630
+ export declare const MarkdownH2LightColorSchemeColor = "#4D4D4D";
7631
+ export declare const MarkdownH2DarkColorSchemeColor = "#F0F0F0";
7632
+ export declare const MarkdownH2SizeMaxWidth = "650px";
7633
+ export declare const MarkdownH2SizeMarginTop = "24px";
7634
+ export declare const MarkdownH2SizeMarginBottom = "12px";
7635
+ export declare const MarkdownH2FontDefault = "md-h2";
7636
+ export declare const MarkdownH3LightColorSchemeColor = "#4D4D4D";
7637
+ export declare const MarkdownH3DarkColorSchemeColor = "#F0F0F0";
7638
+ export declare const MarkdownH3SizeMaxWidth = "650px";
7639
+ export declare const MarkdownH3SizeMarginTop = "24px";
7640
+ export declare const MarkdownH3SizeMarginBottom = "12px";
7641
+ export declare const MarkdownH3FontDefault = "md-h3";
7642
+ export declare const MarkdownH4LightColorSchemeColor = "#4D4D4D";
7643
+ export declare const MarkdownH4DarkColorSchemeColor = "#F0F0F0";
7644
+ export declare const MarkdownH4SizeMaxWidth = "650px";
7645
+ export declare const MarkdownH4SizeMarginTop = "24px";
7646
+ export declare const MarkdownH4SizeMarginBottom = "12px";
7647
+ export declare const MarkdownH4FontDefault = "md-h4";
7648
+ export declare const MarkdownH5LightColorSchemeColor = "#4D4D4D";
7649
+ export declare const MarkdownH5DarkColorSchemeColor = "#F0F0F0";
7650
+ export declare const MarkdownH5SizeMaxWidth = "650px";
7651
+ export declare const MarkdownH5SizeMarginTop = "24px";
7652
+ export declare const MarkdownH5SizeMarginBottom = "8px";
7653
+ export declare const MarkdownH5FontDefault = "md-h5";
7654
+ export declare const MarkdownH6LightColorSchemeColor = "#4D4D4D";
7655
+ export declare const MarkdownH6DarkColorSchemeColor = "#F0F0F0";
7656
+ export declare const MarkdownH6SizeMaxWidth = "650px";
7657
+ export declare const MarkdownH6SizeMarginTop = "24px";
7658
+ export declare const MarkdownH6SizeMarginBottom = "8px";
7659
+ export declare const MarkdownH6FontDefault = "md-h6";
7660
+ export declare const MarkdownPLightColorSchemeColor = "#4D4D4D";
7661
+ export declare const MarkdownPDarkColorSchemeColor = "#F0F0F0";
7662
+ export declare const MarkdownPSizeMaxWidth = "650px";
7663
+ export declare const MarkdownPSizeMarginTop = "12px";
7664
+ export declare const MarkdownPSizeMarginBottom = "12px";
7665
+ export declare const MarkdownPFontDefault = "md-body";
7666
+ export declare const MarkdownListLightColorSchemeColor = "#4D4D4D";
7667
+ export declare const MarkdownListDarkColorSchemeColor = "#F0F0F0";
7668
+ export declare const MarkdownListSizeMaxWidth = "650px";
7669
+ export declare const MarkdownListSizeMarginTop = "12px";
7670
+ export declare const MarkdownListSizeMarginBottom = "12px";
7671
+ export declare const MarkdownListSizeMarginTopAfterParagraph = "-8px";
7672
+ export declare const MarkdownListSizeOlNumberPaddingRight = "4px";
7673
+ export declare const MarkdownListSizeUlPadding = "0 0 0 24px";
7674
+ export declare const MarkdownListSizeItemMarginBottom = "4px";
7675
+ export declare const MarkdownListFontDefault = "md-body";
7676
+ export declare const MarkdownBlockquoteLightColorSchemeText = "#4D4D4D";
7677
+ export declare const MarkdownBlockquoteLightColorSchemeLine = "#B3B3B3";
7678
+ export declare const MarkdownBlockquoteLightColorSchemeBackground = "transparent";
7679
+ export declare const MarkdownBlockquoteLightColorSchemeBorder = "transparent";
7680
+ export declare const MarkdownBlockquoteDarkColorSchemeText = "#F0F0F0";
7681
+ export declare const MarkdownBlockquoteDarkColorSchemeLine = "#808080";
7682
+ export declare const MarkdownBlockquoteDarkColorSchemeBackground = "transparent";
7683
+ export declare const MarkdownBlockquoteDarkColorSchemeBorder = "transparent";
7684
+ export declare const MarkdownBlockquoteSizeMaxWidth = "650px";
7685
+ export declare const MarkdownBlockquoteSizeMarginTop = "12px";
7686
+ export declare const MarkdownBlockquoteSizeMarginBottom = "12px";
7687
+ export declare const MarkdownBlockquoteSizePadding = "2px 12px";
7688
+ export declare const MarkdownBlockquoteSizeLineWidth = "4px";
7689
+ export declare const MarkdownBlockquoteSizeBorderRadius = "0";
7690
+ export declare const MarkdownBlockquoteSizeBorderWidth = "0";
7691
+ export declare const MarkdownBlockquoteFontDefault = "md-body";
7692
+ export declare const MarkdownCodeLightColorSchemeText = "#4D4D4D";
7693
+ export declare const MarkdownCodeLightColorSchemeBackground = "#F0F0F0";
7694
+ export declare const MarkdownCodeLightColorSchemeBorder = "#E6E6E6";
7695
+ export declare const MarkdownCodeDarkColorSchemeText = "#F0F0F0";
7696
+ export declare const MarkdownCodeDarkColorSchemeBackground = "#666666";
7697
+ export declare const MarkdownCodeDarkColorSchemeBorder = "#666666";
7698
+ export declare const MarkdownCodeSizeMaxWidth = "650px";
7699
+ export declare const MarkdownCodeSizeMultilineMarginTop = "12px";
7700
+ export declare const MarkdownCodeSizeMultilineMarginBottom = "24px";
7701
+ export declare const MarkdownCodeSizeInlinePadding = "1px 4px";
7702
+ export declare const MarkdownCodeSizeMultilinePadding = "12px 16px";
7703
+ export declare const MarkdownCodeSizeBorderRadius = "4px";
7704
+ export declare const MarkdownCodeSizeBorderWidth = "1px";
7705
+ export declare const MarkdownCodeFontDefault = "md-body-mono";
7706
+ export declare const MarkdownLinkLightColorSchemeText = "#338FCC";
7707
+ export declare const MarkdownLinkLightColorSchemeBorderBottom = "rgba(#338FCC, 0.32)";
7708
+ export declare const MarkdownLinkLightColorSchemeStateVisitedText = "#6A2795";
7709
+ export declare const MarkdownLinkLightColorSchemeStateVisitedBorderBottom = "rgba(106, 39, 149, 0.32)";
7710
+ export declare const MarkdownLinkLightColorSchemeStateHoverText = "#206EA2";
7711
+ export declare const MarkdownLinkLightColorSchemeStateHoverBorderBottom = "rgba(#206EA2, 0.32)";
7712
+ export declare const MarkdownLinkLightColorSchemeStateActive = "#114E77";
7713
+ export declare const MarkdownLinkLightColorSchemeStateFocusedOutline = "#338FCC";
7714
+ export declare const MarkdownLinkDarkColorSchemeText = "#57A4D7";
7715
+ export declare const MarkdownLinkDarkColorSchemeBorderBottom = "rgba(#57A4D7, 0.32)";
7716
+ export declare const MarkdownLinkDarkColorSchemeStateVisitedText = "#a23ee2";
7717
+ export declare const MarkdownLinkDarkColorSchemeStateVisitedBorderBottom = "rgba(162, 62, 226, 0.32)";
7718
+ export declare const MarkdownLinkDarkColorSchemeStateHoverText = "#7FBAE1";
7719
+ export declare const MarkdownLinkDarkColorSchemeStateHoverBorderBottom = "rgba(#7FBAE1, 0.32)";
7720
+ export declare const MarkdownLinkDarkColorSchemeStateActive = "#7FBAE1";
7721
+ export declare const MarkdownLinkDarkColorSchemeStateFocusedOutline = "#57A4D7";
7722
+ export declare const MarkdownLinkSizeIconMargin = "4px";
7723
+ export declare const MarkdownLinkSizeStateFocusedOutlineOffset = "2px";
7724
+ export declare const MarkdownLinkSizeStateFocusedOutlineWidth = "2px";
7725
+ export declare const MarkdownLinkFontDefault = "md-body";
7726
+ export declare const MarkdownImageLightColorSchemeCaptionText = "#999999";
7727
+ export declare const MarkdownImageDarkColorSchemeCaptionText = "#999999";
7728
+ export declare const MarkdownImageSizeMaxWidth = "650px";
7729
+ export declare const MarkdownImageSizeMarginTop = "12px";
7730
+ export declare const MarkdownImageSizeMarginBottom = "12px";
7731
+ export declare const MarkdownImageSizeCaptionMarginTop = "-8px";
7732
+ export declare const MarkdownImageSizeCaptionMarginBottom = "24px";
7733
+ export declare const MarkdownImageFontCaption = "md-caption";
7734
+ export declare const MarkdownHrLightColorSchemeColor = "#E6E6E6";
7735
+ export declare const MarkdownHrDarkColorSchemeColor = "#666666";
7736
+ export declare const MarkdownHrSizeWidth = "1px";
7737
+ export declare const MarkdownHrSizeMarginVertical = "24px";
7738
+ export declare const MarkdownTableLightColorSchemeHeader = "#999999";
7739
+ export declare const MarkdownTableLightColorSchemeBody = "#4D4D4D";
7740
+ export declare const MarkdownTableLightColorSchemeBorder = "#E6E6E6";
7741
+ export declare const MarkdownTableDarkColorSchemeHeader = "#999999";
7742
+ export declare const MarkdownTableDarkColorSchemeBody = "#F0F0F0";
7743
+ export declare const MarkdownTableDarkColorSchemeBorder = "#666666";
7744
+ export declare const MarkdownTableSizeBorderWidth = "1px";
7745
+ export declare const MarkdownTableSizePadding = "8px";
7746
+ export declare const MarkdownTableSizeMarginBottom = "12px";
7747
+ export declare const MarkdownTableFontHeader = "md-table-header";
7748
+ export declare const MarkdownTableFontBody = "md-table-cell";
7749
+ export declare const MarkdownSizeMaxWidth = "650px";
7750
+ export declare const MarkdownFontDefault = "md-body";
7547
7751
  export declare const ModalLightColorSchemeShadow = "(0 0 0 1px #B3B3B3, 0 6px 12px 0 rgba(0, 0, 0, 0.5))";
7548
7752
  export declare const ModalLightColorSchemeBodyTopShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.16)";
7549
7753
  export declare const ModalLightColorSchemeBodyBottomShadow = "0 -2px 4px 0 rgba(0, 0, 0, 0.16)";