parse-dashboard 8.2.0-alpha.1 → 8.2.0-alpha.11

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.
@@ -39,31 +39,6 @@ object-assign
39
39
 
40
40
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
41
41
 
42
- /**
43
- * @license
44
- * MIT License
45
- *
46
- * Copyright (c) 2014-present, Lee Byron and other contributors.
47
- *
48
- * Permission is hereby granted, free of charge, to any person obtaining a copy
49
- * of this software and associated documentation files (the "Software"), to deal
50
- * in the Software without restriction, including without limitation the rights
51
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
52
- * copies of the Software, and to permit persons to whom the Software is
53
- * furnished to do so, subject to the following conditions:
54
- *
55
- * The above copyright notice and this permission notice shall be included in all
56
- * copies or substantial portions of the Software.
57
- *
58
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
59
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
61
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
62
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
63
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
64
- * SOFTWARE.
65
- */
66
-
67
42
  /**
68
43
  * @remix-run/router v1.23.0
69
44
  *
package/README.md CHANGED
@@ -50,6 +50,7 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
50
50
  - [Prevent columns sorting](#prevent-columns-sorting)
51
51
  - [Custom order in the filter popup](#custom-order-in-the-filter-popup)
52
52
  - [Persistent Filters](#persistent-filters)
53
+ - [Keyboard Shortcuts](#keyboard-shortcuts)
53
54
  - [Scripts](#scripts)
54
55
  - [Resource Cache](#resource-cache)
55
56
  - [Running as Express Middleware](#running-as-express-middleware)
@@ -99,6 +100,7 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
99
100
  - [Pointer](#pointer)
100
101
  - [Link](#link)
101
102
  - [Image](#image)
103
+ - [Video](#video)
102
104
  - [Contributing](#contributing)
103
105
 
104
106
  # Getting Started
@@ -529,6 +531,12 @@ For example:
529
531
 
530
532
  You can conveniently create a filter definition without having to write it by hand by first saving a filter in the data browser, then exporting the filter definition under *App Settings > Export Class Preferences*.
531
533
 
534
+ ### Keyboard Shortcuts
535
+
536
+ Configure custom keyboard shortcuts for dashboard actions in **App Settings > Keyboard Shortcuts**.
537
+
538
+ Delete a shortcut key to disable the shortcut.
539
+
532
540
  ### Scripts
533
541
 
534
542
  You can specify scripts to execute Cloud Functions with the `scripts` option:
@@ -1633,6 +1641,24 @@ Example:
1633
1641
  > [!Warning]
1634
1642
  > 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
1643
 
1644
+ #### Video
1645
+
1646
+ 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.
1647
+
1648
+ Example:
1649
+
1650
+ ```json
1651
+ {
1652
+ "__type": "Video",
1653
+ "url": "https://example.com/video.mp4",
1654
+ "width": "320",
1655
+ "height": "240"
1656
+ }
1657
+ ```
1658
+
1659
+ > [!Warning]
1660
+ > 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.
1661
+
1636
1662
  # Contributing
1637
1663
 
1638
1664
  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.1",
3
+ "version": "8.2.0-alpha.11",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/parse-community/parse-dashboard"
@@ -36,7 +36,7 @@
36
36
  "LICENSE"
37
37
  ],
38
38
  "dependencies": {
39
- "@babel/runtime": "7.27.4",
39
+ "@babel/runtime": "7.28.4",
40
40
  "@babel/runtime-corejs3": "7.28.3",
41
41
  "bcryptjs": "3.0.2",
42
42
  "body-parser": "2.2.1",
@@ -49,7 +49,7 @@
49
49
  "express-session": "1.18.2",
50
50
  "fast-deep-equal": "3.1.3",
51
51
  "graphiql": "2.0.8",
52
- "graphql": "16.11.0",
52
+ "graphql": "16.12.0",
53
53
  "immutable": "5.1.3",
54
54
  "immutable-devtools": "0.1.5",
55
55
  "inquirer": "12.9.0",
@@ -77,29 +77,29 @@
77
77
  "regenerator-runtime": "0.14.1"
78
78
  },
79
79
  "devDependencies": {
80
- "@actions/core": "1.11.1",
81
- "@babel/core": "7.27.4",
80
+ "@actions/core": "2.0.1",
81
+ "@babel/core": "7.28.5",
82
82
  "@babel/eslint-parser": "7.28.0",
83
- "@babel/plugin-proposal-decorators": "7.27.1",
84
- "@babel/plugin-transform-runtime": "7.28.0",
83
+ "@babel/plugin-proposal-decorators": "7.28.0",
84
+ "@babel/plugin-transform-runtime": "7.28.5",
85
85
  "@babel/preset-env": "7.28.5",
86
- "@babel/preset-react": "7.27.1",
87
- "@eslint/compat": "1.3.1",
86
+ "@babel/preset-react": "7.28.5",
87
+ "@eslint/compat": "2.0.0",
88
88
  "@saithodev/semantic-release-backmerge": "4.0.1",
89
89
  "@semantic-release/changelog": "6.0.3",
90
90
  "@semantic-release/commit-analyzer": "13.0.1",
91
91
  "@semantic-release/git": "10.0.1",
92
- "@semantic-release/github": "11.0.3",
92
+ "@semantic-release/github": "12.0.2",
93
93
  "@semantic-release/npm": "12.0.1",
94
- "@semantic-release/release-notes-generator": "14.0.3",
94
+ "@semantic-release/release-notes-generator": "14.1.0",
95
95
  "@types/jest": "30.0.0",
96
96
  "all-node-versions": "13.0.1",
97
97
  "babel-loader": "10.0.0",
98
98
  "css-loader": "6.7.3",
99
- "eslint": "9.28.0",
100
- "eslint-plugin-jest": "29.0.1",
99
+ "eslint": "9.39.1",
100
+ "eslint-plugin-jest": "29.5.0",
101
101
  "eslint-plugin-react": "7.37.5",
102
- "globals": "16.2.0",
102
+ "globals": "16.5.0",
103
103
  "http-server": "14.1.1",
104
104
  "husky": "9.1.7",
105
105
  "jest": "30.0.4",
@@ -107,19 +107,19 @@
107
107
  "madge": "8.0.0",
108
108
  "marked": "15.0.12",
109
109
  "null-loader": "4.0.1",
110
- "prettier": "3.6.2",
110
+ "prettier": "3.7.4",
111
111
  "puppeteer": "24.12.1",
112
112
  "react-test-renderer": "16.13.1",
113
113
  "request": "2.88.2",
114
114
  "request-promise": "4.2.6",
115
115
  "sass": "1.89.2",
116
116
  "sass-loader": "13.2.0",
117
- "semantic-release": "24.2.7",
118
- "semver": "7.7.2",
117
+ "semantic-release": "25.0.2",
118
+ "semver": "7.7.3",
119
119
  "style-loader": "3.3.1",
120
120
  "svg-prep": "1.0.4",
121
- "typescript": "5.8.2",
122
- "webpack": "5.99.9",
121
+ "typescript": "5.9.3",
122
+ "webpack": "5.103.0",
123
123
  "webpack-cli": "6.0.1",
124
124
  "yaml": "2.8.0"
125
125
  },