Skip to content

Commit

Permalink
updated at 2024-02-05T06:51:36-05:00
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed Feb 5, 2024
1 parent fc6d997 commit 05353cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 68 files
+1 −1 Dockerfile
+323 −0 app/client/apiconsole.ts
+4 −11 app/client/app.js
+13 −0 app/client/components/BaseView.js
+11 −0 app/client/components/CustomView.ts
+14 −14 app/client/components/GridView.js
+87 −79 app/client/components/GristDoc.ts
+1 −1 app/client/components/LayoutEditor.ts
+1 −1 app/client/components/LayoutTray.ts
+4 −4 app/client/components/RawDataPage.ts
+1 −0 app/client/components/RecordCardPopup.ts
+1 −0 app/client/components/ViewLayout.css
+1 −0 app/client/components/WidgetFrame.ts
+2 −0 app/client/declarations.d.ts
+1 −1 app/client/exposeModulesForTests.js
+0 −19 app/client/lib/loadScript.js
+23 −0 app/client/lib/loadScript.ts
+3 −5 app/client/models/entities/ViewSectionRec.ts
+15 −0 app/client/ui/DocumentSettings.ts
+3 −1 app/client/ui/RightPanel.ts
+0 −11 app/client/ui/Tools.ts
+2 −6 app/client/ui/ViewLayoutMenu.ts
+1 −0 app/client/ui2018/cssVars.ts
+1 −1 app/client/ui2018/search.ts
+17 −0 app/client/widgets/NumericEditor.ts
+2 −2 app/client/widgets/UserType.ts
+2 −0 app/client/widgets/UserTypeImpl.ts
+8 −1 app/common/NumberParse.ts
+5 −3 app/common/UserAPI.ts
+14 −1 app/common/ValueGuesser.ts
+5 −6 app/common/gristUrls.ts
+1 −1 app/common/gutil.ts
+98 −57 app/gen-server/lib/HomeDBManager.ts
+4 −4 app/server/lib/ActiveDoc.ts
+8 −7 app/server/lib/AppEndpoint.ts
+2 −2 app/server/lib/DocApi.ts
+3 −0 app/server/lib/FlexServer.ts
+6 −2 app/server/lib/TableMetadataLoader.ts
+1 −0 buildtools/webpack.config.js
+3 −0 package.json
+12 −5 sandbox/grist/functions/info.py
+69 −1 sandbox/grist/test_useractions.py
+24 −14 sandbox/grist/testscript.json
+84 −18 sandbox/grist/useractions.py
+1 −1 sandbox/run.sh
+11 −213 static/apiconsole.html
+7 −2 static/locales/de.client.json
+11 −4 static/locales/en.client.json
+7 −2 static/locales/pt_BR.client.json
+79 −5 static/locales/sl.client.json
+1 −0 static/swagger-ui-bundle.js
+1 −0 static/swagger-ui.css
+1 −1 test/common/NumberParse.ts
+24 −1 test/common/gristUrls.ts
+1 −0 test/common/gutil.js
+22 −0 test/gen-server/ApiServerAccess.ts
+2 −1 test/gen-server/apiUtils.ts
+4 −0 test/nbrowser/CellColor.ts
+1 −0 test/nbrowser/CustomView.ts
+950 −916 test/nbrowser/FormView.ts
+17 −16 test/nbrowser/GridViewNewColumnMenu.ts
+15 −8 test/nbrowser/LanguageSettings.ts
+149 −0 test/nbrowser/NumericEditor.ts
+8 −2 test/nbrowser/RawData.ts
+51 −8 test/nbrowser/RecordCards.ts
+7 −2 test/nbrowser/ReferenceColumns.ts
+8 −2 test/nbrowser/ReferenceList.ts
+15 −0 yarn.lock

0 comments on commit 05353cc

Please sign in to comment.