hdoc-tools 0.14.5 → 0.15.0
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/package.json
CHANGED
@@ -242,6 +242,150 @@ video {
|
|
242
242
|
background-color: var(--htl-custom-block-warning-code-bg);
|
243
243
|
}
|
244
244
|
|
245
|
+
|
246
|
+
/* HTL inline styles */
|
247
|
+
.badge {
|
248
|
+
white-space: nowrap;
|
249
|
+
border-radius: 4px;
|
250
|
+
padding: 0.1rem 0.5rem;
|
251
|
+
font-size: 0.8em;
|
252
|
+
margin-right: 4px;
|
253
|
+
color: white;
|
254
|
+
font-weight: unset;
|
255
|
+
}
|
256
|
+
|
257
|
+
.badge:empty {
|
258
|
+
display: inline-block;
|
259
|
+
}
|
260
|
+
|
261
|
+
.badge:after {
|
262
|
+
border-radius: 4px;
|
263
|
+
padding: 0.05rem 0.25rem;
|
264
|
+
}
|
265
|
+
|
266
|
+
.badge.badge-schema:after {
|
267
|
+
/* MINT */
|
268
|
+
content: "Schema";
|
269
|
+
border: solid 1px #34bc9d;
|
270
|
+
background-color: #46cfb0;
|
271
|
+
}
|
272
|
+
|
273
|
+
.badge.badge-simple:after {
|
274
|
+
/* AQUA */
|
275
|
+
content: "Simple";
|
276
|
+
border: solid 1px #3bd0d6;
|
277
|
+
background-color: #4fc2e5;
|
278
|
+
}
|
279
|
+
|
280
|
+
.badge.badge-complex:after {
|
281
|
+
/* GRAPEFRUIT */
|
282
|
+
content: "Complex";
|
283
|
+
border: solid 1px #da4453;
|
284
|
+
background-color: #ed5565;
|
285
|
+
color: white;
|
286
|
+
}
|
287
|
+
|
288
|
+
.badge.badge-method:after {
|
289
|
+
/* BLUEJEANS */
|
290
|
+
content: "Method";
|
291
|
+
border: solid 1px #4b8ad5;
|
292
|
+
background-color: #5e96e6;
|
293
|
+
color: white;
|
294
|
+
}
|
295
|
+
|
296
|
+
.badge.badge-experimental:after {
|
297
|
+
content: "Experimental";
|
298
|
+
border: solid 1px #da4453;
|
299
|
+
background-color: #ed5565;
|
300
|
+
}
|
301
|
+
|
302
|
+
.badge.badge-production:after {
|
303
|
+
content: "In Production";
|
304
|
+
border: solid 1px #185e0f;
|
305
|
+
background-color: #3d9719;
|
306
|
+
}
|
307
|
+
|
308
|
+
.badge.badge-development:after {
|
309
|
+
content: "In Development";
|
310
|
+
border: solid 1px #4b8ad5;
|
311
|
+
background-color: #5e96e6;
|
312
|
+
}
|
313
|
+
|
314
|
+
.badge.badge-preliminary:after {
|
315
|
+
content: "Preliminary";
|
316
|
+
border: solid 1px #bdaa58;
|
317
|
+
background-color: #ddaf19;
|
318
|
+
}
|
319
|
+
|
320
|
+
.badge.badge-depreciated:after {
|
321
|
+
content: "Deprecated";
|
322
|
+
border: solid 1px #494949;
|
323
|
+
background-color: #666666;
|
324
|
+
}
|
325
|
+
|
326
|
+
.badge.badge-info:after {
|
327
|
+
content: "Info";
|
328
|
+
white-space: nowrap;
|
329
|
+
border: solid 1px rgb(48, 121, 0);
|
330
|
+
background-color: rgb(57, 150, 3);
|
331
|
+
}
|
332
|
+
|
333
|
+
.badge.badge-warn:after {
|
334
|
+
content: "Warning";
|
335
|
+
white-space: nowrap;
|
336
|
+
border: solid 1px rgb(173, 137, 19);
|
337
|
+
background-color: rgb(211, 168, 29);
|
338
|
+
}
|
339
|
+
|
340
|
+
.badge.badge-error:after {
|
341
|
+
content: "Error";
|
342
|
+
white-space: nowrap;
|
343
|
+
border: solid 1px rgb(121, 0, 0);
|
344
|
+
background-color: rgb(184, 0, 0);
|
345
|
+
}
|
346
|
+
|
347
|
+
.badge.badge-endpoint-internal:after {
|
348
|
+
content: "internal";
|
349
|
+
white-space: nowrap;
|
350
|
+
border: solid 1px #4A536B;
|
351
|
+
background-color: #4A536B;
|
352
|
+
}
|
353
|
+
|
354
|
+
.badge.badge-endpoint-api:after {
|
355
|
+
content: "api";
|
356
|
+
white-space: nowrap;
|
357
|
+
border: solid 1px #1194DE;
|
358
|
+
background-color: #1194DE;
|
359
|
+
}
|
360
|
+
|
361
|
+
.badge.badge-user-api:after {
|
362
|
+
content: "user";
|
363
|
+
white-space: nowrap;
|
364
|
+
border: solid 1px #51C17D;
|
365
|
+
background-color: #51C17D;
|
366
|
+
}
|
367
|
+
|
368
|
+
.badge.badge-portal-api:after {
|
369
|
+
content: "portal";
|
370
|
+
white-space: nowrap;
|
371
|
+
border: solid 1px #F18929;
|
372
|
+
background-color: #F18929;
|
373
|
+
}
|
374
|
+
|
375
|
+
.badge.badge-mobile-api:after {
|
376
|
+
content: "mobile";
|
377
|
+
white-space: nowrap;
|
378
|
+
border: solid 1px #C7004F;
|
379
|
+
background-color: #C7004F;
|
380
|
+
}
|
381
|
+
|
382
|
+
.badge.badge-integration-api:after {
|
383
|
+
content: "integration";
|
384
|
+
white-space: nowrap;
|
385
|
+
border: solid 1px #224187;
|
386
|
+
background-color: #224187;
|
387
|
+
}
|
388
|
+
|
245
389
|
code {
|
246
390
|
font-size: 0.9em;
|
247
391
|
}
|
@@ -665,6 +665,70 @@
|
|
665
665
|
background-color: #224187;
|
666
666
|
}
|
667
667
|
|
668
|
+
.HTL-doc .badge.badge-http-delete:after {
|
669
|
+
content: "DELETE";
|
670
|
+
white-space: nowrap;
|
671
|
+
border: solid 1px #C7004F;
|
672
|
+
background-color: #C7004F;
|
673
|
+
}
|
674
|
+
|
675
|
+
.HTL-doc .badge.badge-http-get:after {
|
676
|
+
content: "GET";
|
677
|
+
white-space: nowrap;
|
678
|
+
border: solid 1px rgb(12, 139, 63);
|
679
|
+
background-color: rgb(12, 139, 63);
|
680
|
+
}
|
681
|
+
|
682
|
+
.HTL-doc .badge.badge-http-head:after {
|
683
|
+
content: "HEAD";
|
684
|
+
white-space: nowrap;
|
685
|
+
border: solid 1px #51C17D;
|
686
|
+
background-color: #51C17D;
|
687
|
+
}
|
688
|
+
|
689
|
+
.HTL-doc .badge.badge-http-options:after {
|
690
|
+
content: "OPTIONS";
|
691
|
+
white-space: nowrap;
|
692
|
+
border: solid 1px rgb(158, 28, 167);
|
693
|
+
background-color: rgb(158, 28, 167);
|
694
|
+
}
|
695
|
+
|
696
|
+
.HTL-doc .badge.badge-http-patch:after {
|
697
|
+
content: "PATCH";
|
698
|
+
white-space: nowrap;
|
699
|
+
border: solid 1px #58178c;
|
700
|
+
background-color: #58178c;
|
701
|
+
}
|
702
|
+
|
703
|
+
.HTL-doc .badge.badge-http-post:after {
|
704
|
+
content: "POST";
|
705
|
+
white-space: nowrap;
|
706
|
+
border: solid 1px #F18229;
|
707
|
+
background-color: #F18229;
|
708
|
+
}
|
709
|
+
|
710
|
+
.HTL-doc .badge.badge-http-put:after {
|
711
|
+
content: "PUT";
|
712
|
+
white-space: nowrap;
|
713
|
+
border: solid 1px #1194DE;
|
714
|
+
background-color: #1194DE;
|
715
|
+
}
|
716
|
+
|
717
|
+
.HTL-doc .badge.badge-rest:after {
|
718
|
+
content: "REST";
|
719
|
+
white-space: nowrap;
|
720
|
+
border: solid 1px #00B0E9;
|
721
|
+
background-color: #00B0E9;
|
722
|
+
}
|
723
|
+
|
724
|
+
.HTL-doc .badge.badge-rpc:after {
|
725
|
+
content: "RPC";
|
726
|
+
white-space: nowrap;
|
727
|
+
border: solid 1px #4A536B;
|
728
|
+
background-color: #4A536B;
|
729
|
+
}
|
730
|
+
|
731
|
+
|
668
732
|
.HTL-doc .error-msg {
|
669
733
|
color: rgb(184, 0, 0);
|
670
734
|
}
|