@stainless-api/playgrounds 0.1.0-beta.27 → 0.1.0-beta.29

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @stainless-api/playgrounds
2
2
 
3
+ ## 0.1.0-beta.29
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5c36876]
8
+ - @stainless/sdk-json@0.1.0-beta.6
9
+ - @stainless-api/docs-ui@0.1.0-beta.73
10
+
11
+ ## 0.1.0-beta.28
12
+
13
+ ### Minor Changes
14
+
15
+ - 6b86a8b: Support multiple snippet examples
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [6b86a8b]
20
+ - @stainless/sdk-json@0.1.0-beta.5
21
+ - @stainless-api/docs-ui@0.1.0-beta.72
22
+
3
23
  ## 0.1.0-beta.27
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/playgrounds",
3
- "version": "0.1.0-beta.27",
3
+ "version": "0.1.0-beta.29",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -46,9 +46,9 @@
46
46
  "unenv": "^1.10.0",
47
47
  "vite-plugin-prebundle-workers": "^0.2.0",
48
48
  "vscode-languageserver-protocol": "^3.17.5",
49
- "@stainless-api/docs-ui": "0.1.0-beta.71",
49
+ "@stainless-api/docs-ui": "0.1.0-beta.73",
50
50
  "@stainless-api/ui-primitives": "0.1.0-beta.47",
51
- "@stainless/sdk-json": "^0.1.0-beta.4"
51
+ "@stainless/sdk-json": "^0.1.0-beta.6"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/is-callable": "^1.1.2",
@@ -361,7 +361,7 @@ export const Editor = ({
361
361
  .cloneNode(true) as HTMLElement;
362
362
  prefixIds(clone, idPrefix);
363
363
  initDropdown({
364
- root: clone.querySelector('#' + idPrefix + 'stldocs-snippet-select')!,
364
+ root: clone.querySelector('[data-stldocs-snippet-select]')!,
365
365
  onSelect: onLanguageSelect,
366
366
  });
367
367
  return clone;