parse-dashboard 8.2.0-alpha.3 → 8.2.0-alpha.4

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/README.md CHANGED
@@ -99,6 +99,7 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
99
99
  - [Pointer](#pointer)
100
100
  - [Link](#link)
101
101
  - [Image](#image)
102
+ - [Video](#video)
102
103
  - [Contributing](#contributing)
103
104
 
104
105
  # Getting Started
@@ -1633,6 +1634,24 @@ Example:
1633
1634
  > [!Warning]
1634
1635
  > The URL will be directly invoked by the browser when trying to display the image. For security reasons, make sure you either control the full URL, including the image file name, or sanitize the URL before returning it to the dashboard. URLs containing `javascript:` or `<script` will be blocked automatically and replaced with a placeholder.
1635
1636
 
1637
+ #### Video
1638
+
1639
+ Videos are rendered directly in the output table with a `<video>` tag that includes playback controls. The content mode is always "scale to fit", meaning that the video maintains its aspect ratio within the specified dimensions.
1640
+
1641
+ Example:
1642
+
1643
+ ```json
1644
+ {
1645
+ "__type": "Video",
1646
+ "url": "https://example.com/video.mp4",
1647
+ "width": "320",
1648
+ "height": "240"
1649
+ }
1650
+ ```
1651
+
1652
+ > [!Warning]
1653
+ > The URL will be directly invoked by the browser when trying to display the video. For security reasons, make sure you either control the full URL, including the video file name, or sanitize the URL before returning it to the dashboard. URLs containing `javascript:` or `<script` will be blocked automatically and replaced with a placeholder.
1654
+
1636
1655
  # Contributing
1637
1656
 
1638
1657
  We really want Parse to be yours, to see it grow and thrive in the open source community. Please see the [Contributing to Parse Dashboard guide](CONTRIBUTING.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-dashboard",
3
- "version": "8.2.0-alpha.3",
3
+ "version": "8.2.0-alpha.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/parse-community/parse-dashboard"
@@ -78,7 +78,7 @@
78
78
  },
79
79
  "devDependencies": {
80
80
  "@actions/core": "1.11.1",
81
- "@babel/core": "7.27.4",
81
+ "@babel/core": "7.28.5",
82
82
  "@babel/eslint-parser": "7.28.0",
83
83
  "@babel/plugin-proposal-decorators": "7.27.1",
84
84
  "@babel/plugin-transform-runtime": "7.28.0",
@@ -118,7 +118,7 @@
118
118
  "semver": "7.7.3",
119
119
  "style-loader": "3.3.1",
120
120
  "svg-prep": "1.0.4",
121
- "typescript": "5.8.2",
121
+ "typescript": "5.9.3",
122
122
  "webpack": "5.103.0",
123
123
  "webpack-cli": "6.0.1",
124
124
  "yaml": "2.8.0"