Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 3c36342

Browse files
author
Elier Herrera
committed
feat(pwa-client): per-app PWA icon handling, maskable icons, editor display, and ApplicationV2 updates; add icon conversion utils
1 parent 5042fdd commit 3c36342

File tree

7 files changed

+1002
-706
lines changed

7 files changed

+1002
-706
lines changed

‎client/package.json

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,94 @@
11
{
2-
"name": "lowcoder-frontend",
3-
"version": "2.7.3",
4-
"type": "module",
5-
"private": true,
6-
"workspaces": [
7-
"packages/*"
8-
],
9-
"engines": {
10-
"node": "^14.18.0 || >=16.0.0"
11-
},
12-
"scripts": {
13-
"start": "yarn workspace lowcoder start",
14-
"start-win": "LOWCODER_API_SERVICE_URL=http://localhost:3000 yarn start",
15-
"start:ee": "REACT_APP_EDITION=enterprise yarn workspace lowcoder start",
16-
"translate": "node --loader ts-node/esm ./scripts/translate.js",
17-
"build": "yarn node ./scripts/build.js",
18-
"build:ee": "REACT_APP_EDITION=enterprise yarn node ./scripts/build.js",
19-
"test": "jest && yarn workspace lowcoder-comps test",
20-
"prepare": "yarn workspace lowcoder prepare",
21-
"build:core": "yarn workspace lowcoder-core build",
22-
"test:core": "yarn workspace lowcoder-core test",
23-
"lint": "eslint . --fix"
24-
},
25-
"devDependencies": {
26-
"@babel/preset-env": "^7.20.2",
27-
"@babel/preset-typescript": "^7.18.6",
28-
"@rollup/plugin-typescript": "^12.1.0",
29-
"@testing-library/jest-dom": "^5.16.5",
30-
"@types/file-saver": "^2.0.5",
31-
"@types/jest": "^29.2.2",
32-
"@types/mime": "^2.0.3",
33-
"@types/qrcode.react": "^1.0.2",
34-
"@types/react-grid-layout": "^1.3.0",
35-
"@types/react-helmet": "^6.1.5",
36-
"@types/react-resizable": "^3.0.5",
37-
"@types/react-router-dom": "^5.3.2",
38-
"@types/shelljs": "^0.8.11",
39-
"@types/simplebar": "^5.3.3",
40-
"@types/stylis": "^4.0.2",
41-
"@types/tern": "0.23.4",
42-
"@types/ua-parser-js": "^0.7.36",
43-
"@welldone-software/why-did-you-render": "^6.2.3",
44-
"add": "^2.0.6",
45-
"babel-jest": "^29.3.0",
46-
"babel-preset-react-app": "^10.0.1",
47-
"babel-preset-vite": "^1.1.3",
48-
"husky": "^8.0.1",
49-
"jest": "^29.5.0",
50-
"jest-canvas-mock": "^2.5.2",
51-
"jest-environment-jsdom": "^29.5.0",
52-
"lint-staged": "^13.0.1",
53-
"lowcoder-cli": "workspace:^",
54-
"mq-polyfill": "^1.1.8",
55-
"prettier": "^3.1.0",
56-
"rimraf": "^3.0.2",
57-
"shelljs": "^0.8.5",
58-
"svgo": "^3.0.0",
59-
"ts-node": "^10.4.0",
60-
"typescript": "^4.8.4",
61-
"whatwg-fetch": "^3.6.2"
62-
},
63-
"lint-staged": {
64-
"**/*.{mjs,ts,tsx,json,md,html}": "prettier --write --ignore-unknown",
65-
"**/*.svg": "svgo"
66-
},
67-
"packageManager": "yarn@3.6.4",
68-
"resolutions": {
69-
"@types/react": "^18",
70-
"moment": "2.29.2",
71-
"canvas": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.1.tgz",
72-
"react-virtualized@^9.22.3": "patch:react-virtualized@npm%3A9.22.3#./.yarn/patches/react-virtualized-npm-9.22.3-0fff3cbf64.patch",
73-
"eslint-plugin-only-ascii@^0.0.0": "patch:eslint-plugin-only-ascii@npm%3A0.0.0#./.yarn/patches/eslint-plugin-only-ascii-npm-0.0.0-29e3417685.patch"
74-
},
75-
"dependencies": {
76-
"@lottiefiles/react-lottie-player": "^3.5.3",
77-
"@remixicon/react": "^4.1.1",
78-
"@supabase/supabase-js": "^2.45.4",
79-
"@testing-library/react": "^14.1.2",
80-
"@testing-library/user-event": "^14.5.1",
81-
"@types/styled-components": "^5.1.34",
82-
"antd-mobile": "^5.34.0",
83-
"chalk": "4",
84-
"flag-icons": "^7.2.1",
85-
"number-precision": "^1.6.0",
86-
"react-countup": "^6.5.3",
87-
"react-github-btn": "^1.4.0",
88-
"react-player": "^2.11.0",
89-
"resize-observer-polyfill": "^1.5.1",
90-
"rollup": "^4.22.5",
91-
"simplebar": "^6.2.5",
92-
"tui-image-editor": "^3.15.3"
93-
}
2+
"name": "lowcoder-frontend",
3+
"version": "2.7.3",
4+
"type": "module",
5+
"private": true,
6+
"workspaces": [
7+
"packages/*"
8+
],
9+
"engines": {
10+
"node": "^14.18.0 || >=16.0.0"
11+
},
12+
"scripts": {
13+
"start": "yarn workspace lowcoder start",
14+
"start-win": "LOWCODER_API_SERVICE_URL=http://localhost:8080 LOWCODER_NODE_SERVICE_URL=http://localhost:6060 yarn start",
15+
"start:ee": "REACT_APP_EDITION=enterprise yarn workspace lowcoder start",
16+
"translate": "node --loader ts-node/esm ./scripts/translate.js",
17+
"build": "yarn node ./scripts/build.js",
18+
"build:ee": "REACT_APP_EDITION=enterprise yarn node ./scripts/build.js",
19+
"test": "jest && yarn workspace lowcoder-comps test",
20+
"prepare": "yarn workspace lowcoder prepare",
21+
"build:core": "yarn workspace lowcoder-core build",
22+
"test:core": "yarn workspace lowcoder-core test",
23+
"lint": "eslint . --fix"
24+
},
25+
"devDependencies": {
26+
"@babel/preset-env": "^7.20.2",
27+
"@babel/preset-typescript": "^7.18.6",
28+
"@rollup/plugin-typescript": "^12.1.0",
29+
"@testing-library/jest-dom": "^5.16.5",
30+
"@types/file-saver": "^2.0.5",
31+
"@types/jest": "^29.2.2",
32+
"@types/mime": "^2.0.3",
33+
"@types/qrcode.react": "^1.0.2",
34+
"@types/react-grid-layout": "^1.3.0",
35+
"@types/react-helmet": "^6.1.5",
36+
"@types/react-resizable": "^3.0.5",
37+
"@types/react-router-dom": "^5.3.2",
38+
"@types/shelljs": "^0.8.11",
39+
"@types/simplebar": "^5.3.3",
40+
"@types/stylis": "^4.0.2",
41+
"@types/tern": "0.23.4",
42+
"@types/ua-parser-js": "^0.7.36",
43+
"@welldone-software/why-did-you-render": "^6.2.3",
44+
"add": "^2.0.6",
45+
"babel-jest": "^29.3.0",
46+
"babel-preset-react-app": "^10.0.1",
47+
"babel-preset-vite": "^1.1.3",
48+
"husky": "^8.0.1",
49+
"jest": "^29.5.0",
50+
"jest-canvas-mock": "^2.5.2",
51+
"jest-environment-jsdom": "^29.5.0",
52+
"lint-staged": "^13.0.1",
53+
"lowcoder-cli": "workspace:^",
54+
"mq-polyfill": "^1.1.8",
55+
"prettier": "^3.1.0",
56+
"rimraf": "^3.0.2",
57+
"shelljs": "^0.8.5",
58+
"svgo": "^3.0.0",
59+
"ts-node": "^10.4.0",
60+
"typescript": "^4.8.4",
61+
"whatwg-fetch": "^3.6.2"
62+
},
63+
"lint-staged": {
64+
"**/*.{mjs,ts,tsx,json,md,html}": "prettier --write --ignore-unknown",
65+
"**/*.svg": "svgo"
66+
},
67+
"packageManager": "yarn@3.6.4",
68+
"resolutions": {
69+
"@types/react": "^18",
70+
"moment": "2.29.2",
71+
"canvas": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.1.tgz",
72+
"react-virtualized@^9.22.3": "patch:react-virtualized@npm%3A9.22.3#./.yarn/patches/react-virtualized-npm-9.22.3-0fff3cbf64.patch",
73+
"eslint-plugin-only-ascii@^0.0.0": "patch:eslint-plugin-only-ascii@npm%3A0.0.0#./.yarn/patches/eslint-plugin-only-ascii-npm-0.0.0-29e3417685.patch"
74+
},
75+
"dependencies": {
76+
"@lottiefiles/react-lottie-player": "^3.5.3",
77+
"@remixicon/react": "^4.1.1",
78+
"@supabase/supabase-js": "^2.45.4",
79+
"@testing-library/react": "^14.1.2",
80+
"@testing-library/user-event": "^14.5.1",
81+
"@types/styled-components": "^5.1.34",
82+
"antd-mobile": "^5.34.0",
83+
"chalk": "4",
84+
"flag-icons": "^7.2.1",
85+
"number-precision": "^1.6.0",
86+
"react-countup": "^6.5.3",
87+
"react-github-btn": "^1.4.0",
88+
"react-player": "^2.11.0",
89+
"resize-observer-polyfill": "^1.5.1",
90+
"rollup": "^4.22.5",
91+
"simplebar": "^6.2.5",
92+
"tui-image-editor": "^3.15.3"
93+
}
9494
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /