@stainless-api/docs-ui 0.1.0-beta.80 → 0.1.0-beta.81
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/components/properties.js +13 -7
- package/dist/languages/http.js +5 -9
- package/dist/style.d.ts +1 -0
- package/dist/style.js +2 -1
- package/dist/styles/main.css +1 -5
- package/dist/styles/primitives.css +102 -8
- package/dist/styles.css +103 -13
- package/package.json +1 -1
|
@@ -4,7 +4,8 @@ import "../contexts/index.js";
|
|
|
4
4
|
import { useComponents } from "../contexts/use-components.js";
|
|
5
5
|
import style_default from "../style.js";
|
|
6
6
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
-
import { ArrowDownWideNarrowIcon, ArrowUpNarrowWideIcon } from "lucide-react";
|
|
7
|
+
import { ArrowDownWideNarrowIcon, ArrowUpNarrowWideIcon, LinkIcon } from "lucide-react";
|
|
8
|
+
import { Button } from "@stainless-api/ui-primitives";
|
|
8
9
|
|
|
9
10
|
//#region src/components/properties.tsx
|
|
10
11
|
function PropertyToggle({ target }) {
|
|
@@ -49,10 +50,8 @@ function splitDescription(description) {
|
|
|
49
50
|
function Property({ id, name, typeName, badges, type, declaration, description, title, deprecated, expand, additional, constraints, children }) {
|
|
50
51
|
const Docs = useComponents();
|
|
51
52
|
const language = useLanguage();
|
|
52
|
-
const
|
|
53
|
+
const { collapseDescription, showTitle, types } = useSettings()?.properties ?? {};
|
|
53
54
|
if (useIgnoredResources().includes(id || "")) return null;
|
|
54
|
-
const { collapseDescription, showTitle } = properties ?? {};
|
|
55
|
-
const types = properties?.types;
|
|
56
55
|
const [descFirstLine, descRest] = collapseDescription === "show-first-line" ? splitDescription(description) : [null, description];
|
|
57
56
|
const textContent = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
58
57
|
typeof deprecated === "string" && /* @__PURE__ */ jsx("div", {
|
|
@@ -117,10 +116,10 @@ function Property({ id, name, typeName, badges, type, declaration, description,
|
|
|
117
116
|
className: style_default.PropertyInfo,
|
|
118
117
|
children: types === "simple" ? simple : rich
|
|
119
118
|
});
|
|
120
|
-
return /* @__PURE__ */
|
|
119
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
121
120
|
className: style_default.Property,
|
|
122
121
|
"data-stldocs-language": language,
|
|
123
|
-
children: children || collapseDescription !== false && descRest ? /* @__PURE__ */ jsxs(Docs.Expander, {
|
|
122
|
+
children: [children || collapseDescription !== false && descRest ? /* @__PURE__ */ jsxs(Docs.Expander, {
|
|
124
123
|
summary: content,
|
|
125
124
|
muted: !children,
|
|
126
125
|
open: expand,
|
|
@@ -132,7 +131,14 @@ function Property({ id, name, typeName, badges, type, declaration, description,
|
|
|
132
131
|
children
|
|
133
132
|
})
|
|
134
133
|
]
|
|
135
|
-
}) : content
|
|
134
|
+
}) : content, id && /* @__PURE__ */ jsx(Button, {
|
|
135
|
+
className: style_default.DeepLinkButton,
|
|
136
|
+
variant: "outline",
|
|
137
|
+
size: "sm",
|
|
138
|
+
href: `#${encodeURIComponent(id)}`,
|
|
139
|
+
"aria-label": "Link to this property",
|
|
140
|
+
children: /* @__PURE__ */ jsx(Button.Icon, { icon: LinkIcon })
|
|
141
|
+
})]
|
|
136
142
|
});
|
|
137
143
|
}
|
|
138
144
|
|
package/dist/languages/http.js
CHANGED
|
@@ -297,7 +297,7 @@ function MethodInfo({ decl, children }) {
|
|
|
297
297
|
});
|
|
298
298
|
return /* @__PURE__ */ jsxs("div", {
|
|
299
299
|
className: style_default.MethodInfo,
|
|
300
|
-
children: [children,
|
|
300
|
+
children: [children, availableLanguageLinks.length > 0 && /* @__PURE__ */ jsxs("div", {
|
|
301
301
|
className: clsx("stl-ui-prose", style_default.MethodAvailableLanguages),
|
|
302
302
|
children: [/* @__PURE__ */ jsx("h5", { children: "Supported Languages" }), /* @__PURE__ */ jsxs("div", {
|
|
303
303
|
className: style_default.MethodAvailableLanguages,
|
|
@@ -375,14 +375,10 @@ function Declaration({ decl }) {
|
|
|
375
375
|
}),
|
|
376
376
|
/* @__PURE__ */ jsx(Lang.Type, { type: decl.type })
|
|
377
377
|
] });
|
|
378
|
-
case "HttpDeclTypeAlias": return /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
children: " = "
|
|
383
|
-
}),
|
|
384
|
-
/* @__PURE__ */ jsx(Lang.Type, { type: decl.type })
|
|
385
|
-
] });
|
|
378
|
+
case "HttpDeclTypeAlias": return /* @__PURE__ */ jsxs(Fragment$1, { children: [/^UnionMember/.test(decl.ident) ? null : /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx(Identifier, { name: decl.ident }), /* @__PURE__ */ jsx("span", {
|
|
379
|
+
className: style_default.TextOperator,
|
|
380
|
+
children: " = "
|
|
381
|
+
})] }), /* @__PURE__ */ jsx(Lang.Type, { type: decl.type })] });
|
|
386
382
|
case "HttpDeclReference": return /* @__PURE__ */ jsx(Lang.Type, { type: decl.type });
|
|
387
383
|
}
|
|
388
384
|
}
|
package/dist/style.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ declare const _default: {
|
|
|
172
172
|
readonly BreadcrumbsItem: "stldocs-breadcrumbs-item";
|
|
173
173
|
readonly BreadcrumbsLink: "stldocs-breadcrumbs-link";
|
|
174
174
|
readonly BreadcrumbsNonLink: "stldocs-breadcrumbs-non-link";
|
|
175
|
+
readonly DeepLinkButton: "stldocs-deep-link-button";
|
|
175
176
|
};
|
|
176
177
|
//#endregion
|
|
177
178
|
export { _default as default };
|
package/dist/style.js
CHANGED
|
@@ -171,7 +171,8 @@ var style_default = {
|
|
|
171
171
|
Breadcrumbs: "stldocs-breadcrumbs",
|
|
172
172
|
BreadcrumbsItem: "stldocs-breadcrumbs-item",
|
|
173
173
|
BreadcrumbsLink: "stldocs-breadcrumbs-link",
|
|
174
|
-
BreadcrumbsNonLink: "stldocs-breadcrumbs-non-link"
|
|
174
|
+
BreadcrumbsNonLink: "stldocs-breadcrumbs-non-link",
|
|
175
|
+
DeepLinkButton: "stldocs-deep-link-button"
|
|
175
176
|
};
|
|
176
177
|
|
|
177
178
|
//#endregion
|
package/dist/styles/main.css
CHANGED
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.stldocs-expander-summary-content {
|
|
179
|
-
width: 100%;
|
|
179
|
+
max-width: 100%;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.stldocs-property-header {
|
|
@@ -340,10 +340,6 @@
|
|
|
340
340
|
|
|
341
341
|
.stldocs-root .stldocs-property {
|
|
342
342
|
padding: 0.2rem 0;
|
|
343
|
-
|
|
344
|
-
[open] > .stldocs-expander-summary {
|
|
345
|
-
padding-bottom: 0;
|
|
346
|
-
}
|
|
347
343
|
}
|
|
348
344
|
|
|
349
345
|
.stldocs-root .stldocs-property:not(.stldocs-property .stldocs-property) > .stldocs-property-info {
|
|
@@ -135,21 +135,18 @@
|
|
|
135
135
|
/* Generic expand/collapse button */
|
|
136
136
|
.stldocs-root .stldocs-expander {
|
|
137
137
|
&[data-stldocs-expander-muted='true'] {
|
|
138
|
-
.stldocs-icon {
|
|
138
|
+
.stldocs-expander-summary-icon {
|
|
139
139
|
visibility: hidden;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
&:hover {
|
|
143
|
-
|
|
144
|
-
visibility: visible;
|
|
145
|
-
}
|
|
142
|
+
&:hover .stldocs-expander-summary-icon {
|
|
143
|
+
visibility: visible;
|
|
146
144
|
}
|
|
147
145
|
}
|
|
148
146
|
|
|
149
147
|
.stldocs-expander-summary {
|
|
150
148
|
cursor: pointer;
|
|
151
149
|
display: flex;
|
|
152
|
-
/* padding: 0.4rem 0; */
|
|
153
150
|
|
|
154
151
|
& > .stldocs-expander-summary-icon {
|
|
155
152
|
margin-right: 8px;
|
|
@@ -170,7 +167,8 @@
|
|
|
170
167
|
&[open],
|
|
171
168
|
&[data-open='true'] {
|
|
172
169
|
& > .stldocs-expander-summary {
|
|
173
|
-
.stldocs-type-preview[data-stldocs-type-preview='properties']
|
|
170
|
+
.stldocs-type-preview[data-stldocs-type-preview='properties']
|
|
171
|
+
:is(.stldocs-type-preview-content, .stldocs-type-brace) {
|
|
174
172
|
display: none;
|
|
175
173
|
}
|
|
176
174
|
|
|
@@ -186,7 +184,6 @@
|
|
|
186
184
|
}
|
|
187
185
|
|
|
188
186
|
& > .stldocs-expander-content {
|
|
189
|
-
margin-left: var(--stldocs-expander-margin-shift);
|
|
190
187
|
line-height: 150%;
|
|
191
188
|
|
|
192
189
|
& > .stldocs-property-children {
|
|
@@ -200,6 +197,11 @@
|
|
|
200
197
|
}
|
|
201
198
|
}
|
|
202
199
|
}
|
|
200
|
+
|
|
201
|
+
/* makes a big perf difference in browser calculating layout, even though the UA should do this? */
|
|
202
|
+
&:not([open], [data-open='true']) .stldocs-expander-content {
|
|
203
|
+
display: none;
|
|
204
|
+
}
|
|
203
205
|
}
|
|
204
206
|
|
|
205
207
|
/* Markdown content */
|
|
@@ -438,3 +440,95 @@
|
|
|
438
440
|
}
|
|
439
441
|
}
|
|
440
442
|
|
|
443
|
+
/* Deeplink button */
|
|
444
|
+
|
|
445
|
+
/* Link is not inside <summary> because interactive content in <summary> considered harmful
|
|
446
|
+
* Subgrid must be applied from the top-level .stldocs-property all the way down to where the
|
|
447
|
+
* inline summary content is rendered, so that the link button can be positioned at the “end” of
|
|
448
|
+
* the summary line without actually shrinking the <details> or summary element.
|
|
449
|
+
*/
|
|
450
|
+
.stldocs-root .stldocs-property:has(.stldocs-deep-link-button) {
|
|
451
|
+
display: grid;
|
|
452
|
+
/* expander | summary content | deeplink */
|
|
453
|
+
grid-template-columns: auto minmax(0, max-content) 1fr;
|
|
454
|
+
grid-template-rows: auto auto;
|
|
455
|
+
gap: 0;
|
|
456
|
+
width: 100%;
|
|
457
|
+
|
|
458
|
+
/* expander child */
|
|
459
|
+
& > .stldocs-expander {
|
|
460
|
+
grid-column: 1 / -1;
|
|
461
|
+
grid-row: 1 / -1;
|
|
462
|
+
|
|
463
|
+
display: grid;
|
|
464
|
+
grid-template-columns: subgrid;
|
|
465
|
+
grid-template-rows: subgrid;
|
|
466
|
+
|
|
467
|
+
& > .stldocs-expander-summary {
|
|
468
|
+
grid-column: 1 / -1;
|
|
469
|
+
grid-row: 1;
|
|
470
|
+
display: grid;
|
|
471
|
+
grid-template-columns: subgrid;
|
|
472
|
+
grid-template-rows: subgrid;
|
|
473
|
+
& > .stldocs-expander-summary-icon {
|
|
474
|
+
grid-column: 1;
|
|
475
|
+
}
|
|
476
|
+
& > .stldocs-expander-summary-content {
|
|
477
|
+
grid-column: 2;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
&::details-content,
|
|
482
|
+
& > .stldocs-expander-content {
|
|
483
|
+
grid-row: 2;
|
|
484
|
+
grid-column: 2 / -1;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
/* non-expanding child */
|
|
489
|
+
& > .stldocs-property-info {
|
|
490
|
+
grid-column: 2;
|
|
491
|
+
grid-row: 1;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
& > .stldocs-deep-link-button {
|
|
495
|
+
grid-column: span 1 / -1;
|
|
496
|
+
grid-row: 1;
|
|
497
|
+
align-self: center;
|
|
498
|
+
justify-self: start;
|
|
499
|
+
margin-left: 0.25em;
|
|
500
|
+
display: none;
|
|
501
|
+
margin-top: -1rem;
|
|
502
|
+
margin-bottom: -1rem;
|
|
503
|
+
animation: stldocs-deep-link-delay-enter 0.2s ease-out;
|
|
504
|
+
animation-delay: 0.3s;
|
|
505
|
+
animation-fill-mode: both;
|
|
506
|
+
|
|
507
|
+
svg {
|
|
508
|
+
width: 1em;
|
|
509
|
+
height: 1em;
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
/* show link button when expander summary is hovered */
|
|
514
|
+
& > .stldocs-expander:has(> .stldocs-expander-summary:is(:hover, :focus-within)) + .stldocs-deep-link-button,
|
|
515
|
+
/* show link button when non-expander rows are hovered */
|
|
516
|
+
&:not(:has(> .stldocs-expander)):hover > .stldocs-deep-link-button,
|
|
517
|
+
/* keep it visible when it itself is hovered or focused */
|
|
518
|
+
& > .stldocs-deep-link-button:is(:hover, :focus) {
|
|
519
|
+
display: flex;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
@keyframes stldocs-deep-link-delay-enter {
|
|
524
|
+
from {
|
|
525
|
+
display: none;
|
|
526
|
+
opacity: 0;
|
|
527
|
+
scale: 0.85;
|
|
528
|
+
}
|
|
529
|
+
to {
|
|
530
|
+
opacity: 1;
|
|
531
|
+
scale: 0.99;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
package/dist/styles.css
CHANGED
|
@@ -1527,21 +1527,18 @@ a.stl-ui-button {
|
|
|
1527
1527
|
/* Generic expand/collapse button */
|
|
1528
1528
|
.stldocs-root .stldocs-expander {
|
|
1529
1529
|
&[data-stldocs-expander-muted='true'] {
|
|
1530
|
-
.stldocs-icon {
|
|
1530
|
+
.stldocs-expander-summary-icon {
|
|
1531
1531
|
visibility: hidden;
|
|
1532
1532
|
}
|
|
1533
1533
|
|
|
1534
|
-
&:hover {
|
|
1535
|
-
|
|
1536
|
-
visibility: visible;
|
|
1537
|
-
}
|
|
1534
|
+
&:hover .stldocs-expander-summary-icon {
|
|
1535
|
+
visibility: visible;
|
|
1538
1536
|
}
|
|
1539
1537
|
}
|
|
1540
1538
|
|
|
1541
1539
|
.stldocs-expander-summary {
|
|
1542
1540
|
cursor: pointer;
|
|
1543
1541
|
display: flex;
|
|
1544
|
-
/* padding: 0.4rem 0; */
|
|
1545
1542
|
|
|
1546
1543
|
& > .stldocs-expander-summary-icon {
|
|
1547
1544
|
margin-right: 8px;
|
|
@@ -1562,7 +1559,8 @@ a.stl-ui-button {
|
|
|
1562
1559
|
&[open],
|
|
1563
1560
|
&[data-open='true'] {
|
|
1564
1561
|
& > .stldocs-expander-summary {
|
|
1565
|
-
.stldocs-type-preview[data-stldocs-type-preview='properties']
|
|
1562
|
+
.stldocs-type-preview[data-stldocs-type-preview='properties']
|
|
1563
|
+
:is(.stldocs-type-preview-content, .stldocs-type-brace) {
|
|
1566
1564
|
display: none;
|
|
1567
1565
|
}
|
|
1568
1566
|
|
|
@@ -1578,7 +1576,6 @@ a.stl-ui-button {
|
|
|
1578
1576
|
}
|
|
1579
1577
|
|
|
1580
1578
|
& > .stldocs-expander-content {
|
|
1581
|
-
margin-left: var(--stldocs-expander-margin-shift);
|
|
1582
1579
|
line-height: 150%;
|
|
1583
1580
|
|
|
1584
1581
|
& > .stldocs-property-children {
|
|
@@ -1592,6 +1589,11 @@ a.stl-ui-button {
|
|
|
1592
1589
|
}
|
|
1593
1590
|
}
|
|
1594
1591
|
}
|
|
1592
|
+
|
|
1593
|
+
/* makes a big perf difference in browser calculating layout, even though the UA should do this? */
|
|
1594
|
+
&:not([open], [data-open='true']) .stldocs-expander-content {
|
|
1595
|
+
display: none;
|
|
1596
|
+
}
|
|
1595
1597
|
}
|
|
1596
1598
|
|
|
1597
1599
|
/* Markdown content */
|
|
@@ -1830,6 +1832,98 @@ a.stl-ui-button {
|
|
|
1830
1832
|
}
|
|
1831
1833
|
}
|
|
1832
1834
|
|
|
1835
|
+
/* Deeplink button */
|
|
1836
|
+
|
|
1837
|
+
/* Link is not inside <summary> because interactive content in <summary> considered harmful
|
|
1838
|
+
* Subgrid must be applied from the top-level .stldocs-property all the way down to where the
|
|
1839
|
+
* inline summary content is rendered, so that the link button can be positioned at the “end” of
|
|
1840
|
+
* the summary line without actually shrinking the <details> or summary element.
|
|
1841
|
+
*/
|
|
1842
|
+
.stldocs-root .stldocs-property:has(.stldocs-deep-link-button) {
|
|
1843
|
+
display: grid;
|
|
1844
|
+
/* expander | summary content | deeplink */
|
|
1845
|
+
grid-template-columns: auto minmax(0, max-content) 1fr;
|
|
1846
|
+
grid-template-rows: auto auto;
|
|
1847
|
+
gap: 0;
|
|
1848
|
+
width: 100%;
|
|
1849
|
+
|
|
1850
|
+
/* expander child */
|
|
1851
|
+
& > .stldocs-expander {
|
|
1852
|
+
grid-column: 1 / -1;
|
|
1853
|
+
grid-row: 1 / -1;
|
|
1854
|
+
|
|
1855
|
+
display: grid;
|
|
1856
|
+
grid-template-columns: subgrid;
|
|
1857
|
+
grid-template-rows: subgrid;
|
|
1858
|
+
|
|
1859
|
+
& > .stldocs-expander-summary {
|
|
1860
|
+
grid-column: 1 / -1;
|
|
1861
|
+
grid-row: 1;
|
|
1862
|
+
display: grid;
|
|
1863
|
+
grid-template-columns: subgrid;
|
|
1864
|
+
grid-template-rows: subgrid;
|
|
1865
|
+
& > .stldocs-expander-summary-icon {
|
|
1866
|
+
grid-column: 1;
|
|
1867
|
+
}
|
|
1868
|
+
& > .stldocs-expander-summary-content {
|
|
1869
|
+
grid-column: 2;
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
&::details-content,
|
|
1874
|
+
& > .stldocs-expander-content {
|
|
1875
|
+
grid-row: 2;
|
|
1876
|
+
grid-column: 2 / -1;
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
/* non-expanding child */
|
|
1881
|
+
& > .stldocs-property-info {
|
|
1882
|
+
grid-column: 2;
|
|
1883
|
+
grid-row: 1;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
& > .stldocs-deep-link-button {
|
|
1887
|
+
grid-column: span 1 / -1;
|
|
1888
|
+
grid-row: 1;
|
|
1889
|
+
align-self: center;
|
|
1890
|
+
justify-self: start;
|
|
1891
|
+
margin-left: 0.25em;
|
|
1892
|
+
display: none;
|
|
1893
|
+
margin-top: -1rem;
|
|
1894
|
+
margin-bottom: -1rem;
|
|
1895
|
+
animation: stldocs-deep-link-delay-enter 0.2s ease-out;
|
|
1896
|
+
animation-delay: 0.3s;
|
|
1897
|
+
animation-fill-mode: both;
|
|
1898
|
+
|
|
1899
|
+
svg {
|
|
1900
|
+
width: 1em;
|
|
1901
|
+
height: 1em;
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
/* show link button when expander summary is hovered */
|
|
1906
|
+
& > .stldocs-expander:has(> .stldocs-expander-summary:is(:hover, :focus-within)) + .stldocs-deep-link-button,
|
|
1907
|
+
/* show link button when non-expander rows are hovered */
|
|
1908
|
+
&:not(:has(> .stldocs-expander)):hover > .stldocs-deep-link-button,
|
|
1909
|
+
/* keep it visible when it itself is hovered or focused */
|
|
1910
|
+
& > .stldocs-deep-link-button:is(:hover, :focus) {
|
|
1911
|
+
display: flex;
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
@keyframes stldocs-deep-link-delay-enter {
|
|
1916
|
+
from {
|
|
1917
|
+
display: none;
|
|
1918
|
+
opacity: 0;
|
|
1919
|
+
scale: 0.85;
|
|
1920
|
+
}
|
|
1921
|
+
to {
|
|
1922
|
+
opacity: 1;
|
|
1923
|
+
scale: 0.99;
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1833
1927
|
/* Overview page content */
|
|
1834
1928
|
.stldocs-root .stldocs-overview {
|
|
1835
1929
|
.stldocs-overview-header {
|
|
@@ -2008,7 +2102,7 @@ a.stl-ui-button {
|
|
|
2008
2102
|
}
|
|
2009
2103
|
|
|
2010
2104
|
.stldocs-expander-summary-content {
|
|
2011
|
-
width: 100%;
|
|
2105
|
+
max-width: 100%;
|
|
2012
2106
|
}
|
|
2013
2107
|
|
|
2014
2108
|
.stldocs-property-header {
|
|
@@ -2172,10 +2266,6 @@ a.stl-ui-button {
|
|
|
2172
2266
|
|
|
2173
2267
|
.stldocs-root .stldocs-property {
|
|
2174
2268
|
padding: 0.2rem 0;
|
|
2175
|
-
|
|
2176
|
-
[open] > .stldocs-expander-summary {
|
|
2177
|
-
padding-bottom: 0;
|
|
2178
|
-
}
|
|
2179
2269
|
}
|
|
2180
2270
|
|
|
2181
2271
|
.stldocs-root .stldocs-property:not(.stldocs-property .stldocs-property) > .stldocs-property-info {
|