@gradio/button 0.2.48 → 0.2.50

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/main.ts +2 -0
  3. package/package.json +10 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.2.50
4
+
5
+ ### Features
6
+
7
+ - [#9118](https://github.com/gradio-app/gradio/pull/9118) [`e1c404d`](https://github.com/gradio-app/gradio/commit/e1c404da1143fb52b659d03e028bdba1badf443d) - setup npm-previews of all packages. Thanks @pngwn!
8
+ - [#9102](https://github.com/gradio-app/gradio/pull/9102) [`efdc323`](https://github.com/gradio-app/gradio/commit/efdc3231a7bde38cfe45d10086d0d36a24c1b9b4) - Initial SSR refactor. Thanks @pngwn!
9
+
10
+ ### Dependency updates
11
+
12
+ - @gradio/utils@0.6.0
13
+ - @gradio/upload@0.12.3
14
+ - @gradio/client@1.5.1
15
+
16
+ ## 0.2.49
17
+
18
+ ### Dependency updates
19
+
20
+ - @gradio/client@1.5.0
21
+ - @gradio/upload@0.12.2
22
+
3
23
  ## 0.2.48
4
24
 
5
25
  ### Dependency updates
package/main.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { default as default } from "./Index.svelte";
2
+ export { default as BaseButton } from "./shared/Button.svelte";
package/package.json CHANGED
@@ -1,23 +1,28 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.2.48",
3
+ "version": "0.2.50",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
7
7
  "license": "ISC",
8
8
  "private": false,
9
9
  "dependencies": {
10
- "@gradio/utils": "^0.5.2",
11
- "@gradio/client": "^1.4.0",
12
- "@gradio/upload": "^0.12.1"
10
+ "@gradio/client": "^1.5.1",
11
+ "@gradio/upload": "^0.12.3",
12
+ "@gradio/utils": "^0.6.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@gradio/preview": "^0.10.2"
15
+ "@gradio/preview": "^0.11.0"
16
16
  },
17
17
  "main": "./Index.svelte",
18
18
  "main_changeset": true,
19
19
  "exports": {
20
20
  ".": "./Index.svelte",
21
21
  "./package.json": "./package.json"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/gradio-app/gradio.git",
26
+ "directory": "js/button"
22
27
  }
23
28
  }