parse-dashboard 7.3.0-alpha.1 → 7.3.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.
package/README.md
CHANGED
|
@@ -70,10 +70,12 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
|
|
|
70
70
|
- [Audio Item](#audio-item)
|
|
71
71
|
- [Button Item](#button-item)
|
|
72
72
|
- [Panel Item](#panel-item)
|
|
73
|
+
- [Freeze Columns](#freeze-columns)
|
|
73
74
|
- [Browse as User](#browse-as-user)
|
|
74
75
|
- [Change Pointer Key](#change-pointer-key)
|
|
75
76
|
- [Limitations](#limitations)
|
|
76
77
|
- [CSV Export](#csv-export)
|
|
78
|
+
- [Views](#views)
|
|
77
79
|
- [Contributing](#contributing)
|
|
78
80
|
|
|
79
81
|
# Getting Started
|
|
@@ -1154,6 +1156,12 @@ Example:
|
|
|
1154
1156
|
}
|
|
1155
1157
|
```
|
|
1156
1158
|
|
|
1159
|
+
### Freeze Columns
|
|
1160
|
+
|
|
1161
|
+
▶️ *Core > Browser > Freeze column*
|
|
1162
|
+
|
|
1163
|
+
Right-click on a table column header to freeze columns from the left up to the clicked column in the data browser. When scrolling horizontally, the frozen columns remain visible while the other columns scroll underneath.
|
|
1164
|
+
|
|
1157
1165
|
## Browse as User
|
|
1158
1166
|
|
|
1159
1167
|
▶️ *Core > Browser > Browse*
|
|
@@ -1182,6 +1190,12 @@ This feature allows you to change how a pointer is represented in the browser. B
|
|
|
1182
1190
|
This feature will take either selected rows or all rows of an individual class and saves them to a CSV file, which is then downloaded. CSV headers are added to the top of the file matching the column names.
|
|
1183
1191
|
|
|
1184
1192
|
> ⚠️ There is currently a 10,000 row limit when exporting all data. If more than 10,000 rows are present in the class, the CSV file will only contain 10,000 rows.
|
|
1193
|
+
## Views
|
|
1194
|
+
|
|
1195
|
+
▶️ *Core > Views*
|
|
1196
|
+
|
|
1197
|
+
Views are saved queries that display aggregated data from your classes. Create a view by providing a name, selecting a class and defining an aggregation pipeline. Optionally enable the object counter to show how many items match the view. Saved views appear in the sidebar, where you can select, edit, or delete them.
|
|
1198
|
+
|
|
1185
1199
|
|
|
1186
1200
|
# Contributing
|
|
1187
1201
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-dashboard",
|
|
3
|
-
"version": "7.3.0-alpha.
|
|
3
|
+
"version": "7.3.0-alpha.11",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/parse-community/parse-dashboard"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"fast-deep-equal": "3.1.3",
|
|
50
50
|
"graphiql": "2.0.8",
|
|
51
51
|
"graphql": "16.11.0",
|
|
52
|
-
"immutable": "5.1.
|
|
52
|
+
"immutable": "5.1.3",
|
|
53
53
|
"immutable-devtools": "0.1.5",
|
|
54
54
|
"inquirer": "12.6.3",
|
|
55
55
|
"js-beautify": "1.15.4",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@actions/core": "1.11.1",
|
|
79
79
|
"@babel/core": "7.27.4",
|
|
80
|
-
"@babel/eslint-parser": "7.
|
|
80
|
+
"@babel/eslint-parser": "7.28.0",
|
|
81
81
|
"@babel/plugin-proposal-decorators": "7.27.1",
|
|
82
82
|
"@babel/plugin-transform-runtime": "7.27.3",
|
|
83
83
|
"@babel/preset-env": "7.27.2",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"babel-loader": "10.0.0",
|
|
96
96
|
"css-loader": "6.7.3",
|
|
97
97
|
"eslint": "9.28.0",
|
|
98
|
-
"eslint-plugin-jest": "
|
|
98
|
+
"eslint-plugin-jest": "29.0.1",
|
|
99
99
|
"eslint-plugin-react": "7.37.5",
|
|
100
100
|
"globals": "16.2.0",
|
|
101
101
|
"http-server": "14.1.1",
|