Skip to content

Release 2.2.1 #586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 48 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
70a2284
Link accounts based on common authid(email)
aq-ikhwa-tech Dec 5, 2023
e2bc358
Merge branch 'dev' into fix-oauth-issues
aq-ikhwa-tech Dec 5, 2023
afa3104
Finalize fixes
aq-ikhwa-tech Dec 6, 2023
5cc8acd
Merge branch 'dev' into fix-oauth-issues
aq-ikhwa-tech Dec 6, 2023
0bc105c
fixing plugin creator
Dec 6, 2023
5772a7a
fixing plugin creator 2
Dec 6, 2023
6d02703
fix plugin creator
Dec 6, 2023
2d345e8
fix plugin creator 3
Dec 6, 2023
f615728
fix documentation for plugin creator
Dec 6, 2023
cf6b9fe
plugin creator fix dependencies
Dec 6, 2023
7440e1a
plugin creator fix dependencies
Dec 6, 2023
756b294
Merge pull request #567 from lowcoder-org/fix-plugin-creator
FalkWolsky Dec 6, 2023
669b379
plugin creator fix dependencies
Dec 6, 2023
885d0dc
Bump Vite to 4.5.1
Dec 6, 2023
efa905a
Updated Component Plugin Demo
Dec 6, 2023
02327cf
Updated Component Plugin Demo
Dec 6, 2023
53afb73
Merge pull request #566 from lowcoder-org/fix-oauth-issues
FalkWolsky Dec 7, 2023
2f4504f
fix: fix build issues
raheeliftikhar5 Dec 7, 2023
1873519
small fix
raheeliftikhar5 Dec 7, 2023
d516538
lock file
raheeliftikhar5 Dec 7, 2023
9979f42
Merge pull request #568 from raheeliftikhar5/build-fix
FalkWolsky Dec 7, 2023
98ab214
Fixes in workspaces anc comp includes
Dec 7, 2023
9595937
Fixes in workspaces anc comp includes
Dec 7, 2023
71148c1
fix: avoid editor popup close on selecting suggeston using mouse
raheeliftikhar5 Dec 7, 2023
f606a4c
fix: enable scroll in table columns configs popup
raheeliftikhar5 Dec 7, 2023
b1e50c4
fix: avoid editor popup close when open from config popup
raheeliftikhar5 Dec 8, 2023
89d21d0
fix: date input validation fix
raheeliftikhar5 Dec 8, 2023
a41adbe
fix: table status column's text color fix
raheeliftikhar5 Dec 8, 2023
fab5301
Reverted changes for Workspaces.
Dec 8, 2023
8d7b3d1
Merge pull request #569 from raheeliftikhar5/editor-fixes
FalkWolsky Dec 8, 2023
c0896af
Merge pull request #570 from raheeliftikhar5/issue-369/date-input-val…
FalkWolsky Dec 8, 2023
cb5bff0
Merge pull request #571 from raheeliftikhar5/table-status-column-style
FalkWolsky Dec 8, 2023
2b20d3f
Reverted changes for Workspaces.
Dec 8, 2023
6845453
Add functionality to allow users to link to auth providers while bein…
aq-ikhwa-tech Dec 9, 2023
95aae3c
Add handling for LOWCODER_CREATE_SIGNUP_WORKSPACE
aq-ikhwa-tech Dec 9, 2023
0a96750
Merge branch 'dev' into link-oauth-providers-for-existing-users
FalkWolsky Dec 9, 2023
b7c4928
new: simplify api service build
ludomikula Dec 6, 2023
b0d08a8
new: allow serving static files from mounted volume
ludomikula Dec 10, 2023
b106575
Merge pull request #572 from lowcoder-org/link-oauth-providers-for-ex…
FalkWolsky Dec 10, 2023
6292b35
Merge branch 'dev' into docker_build_update
FalkWolsky Dec 10, 2023
4304708
Merge pull request #574 from lowcoder-org/docker_build_update
FalkWolsky Dec 11, 2023
757d772
removed lowcoder-dev-utils
raheeliftikhar5 Dec 13, 2023
8130928
fix build issues
raheeliftikhar5 Dec 13, 2023
e9a75c0
Merge pull request #578 from raheeliftikhar5/remove-dev-utils
FalkWolsky Dec 13, 2023
3a74b79
remove create-lowcoder-plugin + version upgrade for publish
raheeliftikhar5 Dec 13, 2023
6170b11
Merge pull request #579 from raheeliftikhar5/publish-modules
FalkWolsky Dec 13, 2023
990ff84
Custom plugin publishing issues (#583)
raheeliftikhar5 Dec 14, 2023
ed99678
added hover and active color options in link styles (#585)
raheeliftikhar5 Dec 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Custom plugin publishing issues (#583)
* fixed issues in publishing custom plugin
* yarn lock updated
  • Loading branch information
raheeliftikhar5 authored Dec 14, 2023
commit 990ff84fe77d61738ff83be8a1db654ad8b37dc5
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,13 @@ yarn build

npm run build
```

## Publish
To publish your plugin on NPM, use following command.
```bash
yarn build_publish

# or

npm run build_publish
```
5 changes: 3 additions & 2 deletions client/packages/lowcoder-cli-template-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "lowcoder-cli-template-typescript",
"version": "0.0.13",
"version": "0.0.14",
"type": "module",
"scripts": {
"start": "vite",
"build": "lowcoder-cli build"
"build": "lowcoder-cli build",
"build_publish": "lowcoder-cli build --publish"
},
"lowcoder": {
"description": "",
Expand Down
1 change: 1 addition & 0 deletions client/packages/lowcoder-cli/actions/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export default async function initAction(options) {
appPackageJson.scripts = {
start: "vite",
build: "lowcoder-cli build",
build_publish: "lowcoder-cli build --publish",
};
fs.writeFileSync(paths.appPackageJson, JSON.stringify(appPackageJson, null, 2));
console.log("package.json updated");
Expand Down
2 changes: 1 addition & 1 deletion client/packages/lowcoder-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lowcoder-cli",
"description": "CLI tool used to start build publish lowcoder components",
"version": "0.0.26",
"version": "0.0.27",
"license": "MIT",
"bin": "./index.js",
"type": "module",
Expand Down
55 changes: 21 additions & 34 deletions client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4274,14 +4274,14 @@ __metadata:
linkType: hard

"@types/react-redux@npm:^7.1.20":
version: 7.1.32
resolution: "@types/react-redux@npm:7.1.32"
version: 7.1.33
resolution: "@types/react-redux@npm:7.1.33"
dependencies:
"@types/hoist-non-react-statics": ^3.3.0
"@types/react": "*"
hoist-non-react-statics: ^3.3.0
redux: ^4.0.0
checksum: f09eeb27956914ce40451c2581db3dc18cabe50bebbe111230b45635894e93c6547dead5589319bf66e7e99cc1687497020bddc5c9fd336041e0eac3f9a966dd
checksum: 063e98c0d8cdc7cc2da1663716260ffb8d504b2f8be2d92cabb630cae31eb05aa0e389175265caa9a160bb7c4b66646d4a4171d4aa2dc292722088dcf593cdc3
languageName: node
linkType: hard

Expand Down Expand Up @@ -4345,13 +4345,13 @@ __metadata:
linkType: hard

"@types/react@npm:^17":
version: 17.0.71
resolution: "@types/react@npm:17.0.71"
version: 17.0.73
resolution: "@types/react@npm:17.0.73"
dependencies:
"@types/prop-types": "*"
"@types/scheduler": "*"
csstype: ^3.0.2
checksum: c72dbebdced882fa39de867b0179ed91259331172458d69250ff30fdb3c61e3d1f3373dacca3771c3de4b19162fd65758179252b17961729213496a016b918d7
checksum: 08107645acdd734c8ddb4d26f1b43dfa0d75f7a8d268eaacb897337e103eaa620fe8c3c6972dab9860aaa47bbee1da587cf06b11bb4e655588e38485daf48a6c
languageName: node
linkType: hard

Expand Down Expand Up @@ -5123,8 +5123,8 @@ __metadata:
linkType: hard

"antd-mobile@npm:^5.28.0":
version: 5.33.0
resolution: "antd-mobile@npm:5.33.0"
version: 5.33.1
resolution: "antd-mobile@npm:5.33.1"
dependencies:
"@floating-ui/dom": ^1.4.2
"@rc-component/mini-decimal": ^1.1.0
Expand All @@ -5145,7 +5145,7 @@ __metadata:
use-sync-external-store: ^1.2.0
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 9d44affe8331a2f802a8525c6d3d3c94d656f6d2a0ae410b5fd73081063c0bc66befe832a7511c3e5f0e657b73841a364501aefdb442d455fa784546da6f5402
checksum: e57c563460ea5cc89a7e4d0a97d78c53a5532d7f5100c3766054b3a51c229e324bf111c51448b3e7b5dc019cbd26d59f8e2f467e322cfbd53228286db3da92ac
languageName: node
linkType: hard

Expand Down Expand Up @@ -6087,9 +6087,9 @@ __metadata:
linkType: hard

"caniuse-lite@npm:^1.0.30001565":
version: 1.0.30001568
resolution: "caniuse-lite@npm:1.0.30001568"
checksum: 7092aaa246dc8531fbca5b47be91e92065db7e5c04cc9e3d864e848f8f1be769ac6754429e843a5e939f7331a771e8b0a1bc3b13495c66b748c65e2f5bdb1220
version: 1.0.30001570
resolution: "caniuse-lite@npm:1.0.30001570"
checksum: 460be2c7a9b1c8a83b6aae4226661c276d9dada6c84209dee547699cf4b28030b9d1fc29ddd7626acee77412b6401993878ea0ef3eadbf3a63ded9034896ae20
languageName: node
linkType: hard

Expand Down Expand Up @@ -6714,19 +6714,6 @@ __metadata:
languageName: node
linkType: hard

"create-lowcoder-plugin@workspace:packages/create-lowcoder-plugin":
version: 0.0.0-use.local
resolution: "create-lowcoder-plugin@workspace:packages/create-lowcoder-plugin"
dependencies:
chalk: 4
commander: ^9.4.1
cross-spawn: ^7.0.3
fs-extra: ^10.1.0
bin:
create-lowcoder-plugin: ./index.js
languageName: unknown
linkType: soft

"crelt@npm:^1.0.5":
version: 1.0.6
resolution: "crelt@npm:1.0.6"
Expand Down Expand Up @@ -7885,9 +7872,9 @@ __metadata:
linkType: hard

"electron-to-chromium@npm:^1.4.601":
version: 1.4.610
resolution: "electron-to-chromium@npm:1.4.610"
checksum: 30e57a1483717e6e27882e7e35b167258b669f44a4e66f4f40460825b77c12646140d220f5e1f95668890fc76dd511c93fa73c6374cbf443fc78077d9634864d
version: 1.4.612
resolution: "electron-to-chromium@npm:1.4.612"
checksum: fbb044289dcea34246254520b05245549013c68c7cc25ce69604ebd496a59d3b41defd10be4a2fca2d5e6e46d92481736e3d1498093e28c96cbe86e48d19634b
languageName: node
linkType: hard

Expand Down Expand Up @@ -18995,9 +18982,9 @@ __metadata:
linkType: hard

"whatwg-fetch@npm:^3.6.2":
version: 3.6.19
resolution: "whatwg-fetch@npm:3.6.19"
checksum: 2896bc9ca867ea514392c73e2a272f65d5c4916248fe0837a9df5b1b92f247047bc76cf7c29c28a01ac6c5fb4314021d2718958c8a08292a96d56f72b2f56806
version: 3.6.20
resolution: "whatwg-fetch@npm:3.6.20"
checksum: c58851ea2c4efe5c2235f13450f426824cf0253c1d45da28f45900290ae602a20aff2ab43346f16ec58917d5562e159cd691efa368354b2e82918c2146a519c5
languageName: node
linkType: hard

Expand Down Expand Up @@ -19211,8 +19198,8 @@ __metadata:
linkType: hard

"ws@npm:^8.11.0":
version: 8.15.0
resolution: "ws@npm:8.15.0"
version: 8.15.1
resolution: "ws@npm:8.15.1"
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ">=5.0.2"
Expand All @@ -19221,7 +19208,7 @@ __metadata:
optional: true
utf-8-validate:
optional: true
checksum: ca15c590aa49bc0197223b8ab7d15e7362ae6c4011d91ed0e5cd5867cdd5497fd71470ea36314833b4b078929fe64dc4ba7748b1e58e50a0f8e41f147db2b464
checksum: 8c67365f6e6134278ad635d558bfce466d7ef7543a043baea333aaa430429f0af8a130c0c36e7dd78f918d68167a659ba9b5067330b77c4b279e91533395952b
languageName: node
linkType: hard

Expand Down