scoobie 14.3.4 → 14.3.5

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
@@ -4,7 +4,7 @@
4
4
  "license": "MIT",
5
5
  "main": "src/index.ts",
6
6
  "sideEffects": false,
7
- "version": "14.3.4",
7
+ "version": "14.3.5",
8
8
  "dependencies": {
9
9
  "@capsizecss/core": "^3.0.0",
10
10
  "@mdx-js/loader": "^1.6.22",
@@ -1,12 +1,8 @@
1
- import url from 'url';
2
-
3
1
  import { IconVideo, Text, TextLink } from 'braid-design-system';
4
2
  import React from 'react';
5
3
 
6
4
  import { SIZE_TO_SMALLER, type Size } from '../../private/size';
7
5
 
8
- const URL = url.URL ?? window.URL;
9
-
10
6
  interface Props {
11
7
  query: string;
12
8
  variables: string | undefined;
@@ -1,8 +1,3 @@
1
- import url from 'url';
2
-
3
- const URL = url.URL ?? window.URL;
4
- const URLSearchParams = url.URLSearchParams ?? window.URLSearchParams;
5
-
6
1
  const EXAMPLE_BASE_URL = 'https://example.com';
7
2
 
8
3
  const parseVersionParams = (search: string) => {