@stainless-api/docs-ui 0.1.0-beta.80 → 0.1.0-beta.82

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.
@@ -58,7 +58,7 @@ type TooltipProps = {
58
58
  declare function Tooltip({
59
59
  content,
60
60
  children
61
- }: TooltipProps): string | number | bigint | boolean | react_jsx_runtime0.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
61
+ }: TooltipProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
62
62
  type LinkProps = {
63
63
  stainlessPath?: string;
64
64
  scroll?: boolean;
@@ -69,7 +69,7 @@ declare function Link({
69
69
  scroll,
70
70
  children,
71
71
  ...props
72
- }: LinkProps): string | number | bigint | boolean | react_jsx_runtime0.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
72
+ }: LinkProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
73
73
  type InputProps = {
74
74
  left?: ReactNode;
75
75
  right?: ReactNode;
@@ -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 properties = useSettings()?.properties;
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__ */ jsx("div", {
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
 
@@ -108,7 +108,7 @@ type SDKReferenceProps = {
108
108
  declare function SDKReference({
109
109
  stainlessPath,
110
110
  children
111
- }: SDKReferenceProps): string | number | bigint | boolean | react_jsx_runtime0.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | null | undefined;
111
+ }: SDKReferenceProps): string | number | bigint | boolean | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
112
112
  type SDKLanguageBlockProps = {
113
113
  language: DocsLanguage;
114
114
  version: string;
@@ -47,7 +47,7 @@ declare function useDeclaration<Required extends boolean>(stainlessPath: string,
47
47
  declare function useAvailableLanguages(stainlessPath: string): SpecLanguage[];
48
48
  declare function useIgnoredResources(): string[];
49
49
  declare function useResource(name: string): Resource | undefined;
50
- declare function useLanguage(): "http" | "node" | "python" | "go" | "typescript" | "terraform" | "ruby" | "java" | "kotlin" | "csharp" | "php" | "cli";
50
+ declare function useLanguage(): "cli" | "csharp" | "go" | "http" | "java" | "kotlin" | "node" | "php" | "python" | "ruby" | "terraform" | "typescript";
51
51
  declare function useContentPanelLayout(): ContentPanelLayout;
52
52
  type DocsProviderProps = DocsContextType & {
53
53
  children: React$1.ReactNode;
@@ -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, implementedLanguages.length > 0 && /* @__PURE__ */ jsxs("div", {
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
- /* @__PURE__ */ jsx(Identifier, { name: decl.ident }),
380
- /* @__PURE__ */ jsx("span", {
381
- className: style_default.TextOperator,
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/routing.d.ts CHANGED
@@ -8,7 +8,7 @@ declare const Languages: readonly ["http", "node", "python", "go", "typescript",
8
8
  declare const SupportedLanguageSyntaxes: string[];
9
9
  type DocsLanguage = (typeof Languages)[number];
10
10
  declare const LanguageNames: Record<DocsLanguage, string>;
11
- declare function getLanguageSnippet(language: DocsLanguage): "http.curl" | "node.default" | "python.default" | "go.default" | "typescript.default" | "terraform.default" | "ruby.default" | "java.default" | "kotlin.default" | "csharp.default" | "php.default" | "cli.default";
11
+ declare function getLanguageSnippet(language: DocsLanguage): "http.curl" | "cli.default" | "csharp.default" | "go.default" | "java.default" | "kotlin.default" | "node.default" | "php.default" | "python.default" | "ruby.default" | "terraform.default" | "typescript.default";
12
12
  declare function isSupportedLanguage(language: string): language is DocsLanguage;
13
13
  type ParsedStainlessPath = ReturnType<typeof parseStainlessPath>;
14
14
  declare function parseStainlessPath(stainlessPath: string): {
package/dist/spec.d.ts CHANGED
@@ -36,13 +36,13 @@ declare function generateNavigation(resource: Partial<Resource>): {
36
36
  declare function generateSpecForResource(spec: Spec, name: string, lang: DocsLanguage, transforms: SpecTransforms): Partial<Spec>;
37
37
  declare function transform(spec: Spec, transforms: SpecTransforms): {
38
38
  name: string;
39
- lang: "http" | "node" | "python" | "go" | "typescript" | "terraform" | "ruby" | "java" | "kotlin" | "csharp" | "php" | "cli";
39
+ lang: "cli" | "csharp" | "go" | "http" | "java" | "kotlin" | "node" | "php" | "python" | "ruby" | "terraform" | "typescript";
40
40
  spec: Partial<Spec>;
41
41
  }[];
42
42
  declare function split(spec: Spec, transforms?: SpecTransforms): {
43
43
  resources: ReturnType<typeof transform>;
44
44
  navigation: {
45
- languages: ("http" | "node" | "python" | "go" | "typescript" | "terraform" | "ruby" | "java" | "kotlin" | "csharp" | "php" | "cli" | "sql" | "openapi")[] | undefined;
45
+ languages: ("cli" | "csharp" | "go" | "http" | "java" | "kotlin" | "node" | "php" | "python" | "ruby" | "terraform" | "typescript" | "sql" | "openapi")[] | undefined;
46
46
  resources: {
47
47
  [k: string]: {
48
48
  title: string | undefined;
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
@@ -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
- .stldocs-icon {
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'] .stldocs-type-preview-content {
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:hover) + .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
- .stldocs-icon {
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'] .stldocs-type-preview-content {
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:hover) + .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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stainless-api/docs-ui",
3
3
  "private": false,
4
- "version": "0.1.0-beta.80",
4
+ "version": "0.1.0-beta.82",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },