mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-24 16:00:53 +08:00
Merge remote-tracking branch 'origin/develop' into enterprise
# Conflicts: # packages/servers/server-community/package.json # packages/servers/server-dev/package.json # pnpm-lock.yaml
This commit is contained in:
commit
e8a357ca0e
.github/workflows
CHANGELOG.mdlerna.jsonpackage.jsonpackages
api
build
cli
client
docs
engine
layout
operators
plugins
actions
blocks
blocks-aggrid
blocks-algolia
blocks-antd
CHANGELOG.mdpackage.json
src/blocks
AutoComplete
Card
MultipleSelector
NumberInput
PasswordInput
PhoneNumberInput
Selector
Tabs
TextArea
TextInput
blocks-basic
blocks-color-selectors
blocks-echarts
blocks-google-maps
blocks-loaders
blocks-markdown
blocks-qr
connections
connection-axios-http
connection-elasticsearch
connection-google-sheets
connection-knex
connection-mongodb
connection-redis
connection-sendgrid
connection-stripe
operators
operators-change-case
operators-diff
operators-js
operators-moment
operators-mql
operators-nunjucks
operators-uuid
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
@ -24,6 +24,7 @@ jobs:
|
||||
# --yes to autoconfirm in ci
|
||||
# --pre-dist-tag do not tag prereleases as latest
|
||||
- name: publish to npm
|
||||
run: pnpm lerna:publish --ignore-scripts --yes --no-verify-access --pre-dist-tag rc
|
||||
run: pnpm lerna:publish --ignore-scripts --yes --no-verify-access
|
||||
# run: pnpm lerna:publish --ignore-scripts --yes --no-verify-access --pre-dist-tag rc
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||
|
3028
CHANGELOG.md
3028
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"packages": [
|
||||
"src/packages/*",
|
||||
"src/packages/blocks/*",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/lowdefy",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"private": true,
|
||||
"description": "Lowdefy monorepo",
|
||||
|
@ -3,6 +3,28 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** Add connectionId to request object. ([df16dbc](https://github.com/lowdefy/lowdefy/commit/df16dbca8545128cb51f78d173a2a96e47cbf729))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** Add connectionId to request object. ([df16dbc](https://github.com/lowdefy/lowdefy/commit/df16dbca8545128cb51f78d173a2a96e47cbf729))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/api",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -40,12 +40,12 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12"
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
|
@ -363,6 +363,7 @@ test('deserialize inputs', async () => {
|
||||
connection: {
|
||||
connectionProperty: 'connectionProperty',
|
||||
},
|
||||
connectionId: 'testConnection',
|
||||
pageId: 'pageId',
|
||||
requestId: 'requestId',
|
||||
blockId: 'contextId',
|
||||
|
@ -24,6 +24,7 @@ async function callRequestResolver(
|
||||
const response = await requestResolver({
|
||||
blockId,
|
||||
connection: connectionProperties,
|
||||
connectionId: requestConfig.connectionId,
|
||||
pageId: requestConfig.pageId,
|
||||
payload,
|
||||
request: requestProperties,
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/build
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/build
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/build",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -51,14 +51,14 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-basic": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-loaders": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.14",
|
||||
"ajv": "8.12.0",
|
||||
"json5": "2.2.3",
|
||||
"yaml": "2.3.2",
|
||||
@ -66,35 +66,35 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-pdf-make": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-elasticsearch": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-google-sheets": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-knex": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-redis": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-sendgrid": "4.0.0-rc.12",
|
||||
"@lowdefy/connection-stripe": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-auth0": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-csv": "4.0.0-rc.12",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.14",
|
||||
"@lowdefy/actions-pdf-make": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-aggrid": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-algolia": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-color-selectors": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-echarts": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-google-maps": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-markdown": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-qr": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-axios-http": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-elasticsearch": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-google-sheets": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-knex": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-mongodb": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-redis": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-sendgrid": "4.0.0-rc.14",
|
||||
"@lowdefy/connection-stripe": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-change-case": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-diff": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-moment": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-nunjucks": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-uuid": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-yaml": "4.0.0-rc.14",
|
||||
"@lowdefy/plugin-auth0": "4.0.0-rc.14",
|
||||
"@lowdefy/plugin-aws": "4.0.0-rc.14",
|
||||
"@lowdefy/plugin-csv": "4.0.0-rc.14",
|
||||
"@lowdefy/plugin-next-auth": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -33,6 +33,7 @@ const iconPackages = {
|
||||
'react-icons/io5': /"(Io[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/lu': /"(Lu[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/md': /"(Md[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/pi': /"(Pi[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/ri': /"(Ri[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/rx': /"(Rx[A-Z0-9]\w*)"/gm,
|
||||
'react-icons/si': /"(Si[A-Z0-9]\w*)"/gm,
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package lowdefy
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package lowdefy
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lowdefy",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy CLI",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -39,8 +39,8 @@
|
||||
"test": "FORCE_COLOR=3 node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.14",
|
||||
"axios": "1.5.1",
|
||||
"commander": "11.0.0",
|
||||
"decompress": "4.2.1",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/client
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/client
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/client",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy Client",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,10 +41,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons": "4.8.0",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/engine": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/layout": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/engine": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/layout": "4.0.0-rc.14",
|
||||
"classnames": "2.3.2",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
@ -52,7 +52,7 @@
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,38 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **docs:** Add connectionId field to request docs. ([9f67461](https://github.com/lowdefy/lowdefy/commit/9f67461bed5f56a6a2f089bb6723a0bef9f358bf))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **docs:** Add connectionId field to request docs. ([9f67461](https://github.com/lowdefy/lowdefy/commit/9f67461bed5f56a6a2f089bb6723a0bef9f358bf))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -25,5 +25,6 @@ _ref:
|
||||
|
||||
areas:
|
||||
- content
|
||||
- cover
|
||||
- extra
|
||||
- title
|
||||
|
@ -39,3 +39,13 @@ _ref:
|
||||
- tab3
|
||||
- panel3
|
||||
- extra
|
||||
methods:
|
||||
- name: setActiveKey
|
||||
onClick:
|
||||
- id: setActiveKey
|
||||
type: CallMethod
|
||||
params:
|
||||
blockId: block_id
|
||||
method: setActiveKey
|
||||
args:
|
||||
- activeKey: tab3
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/docs",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,7 +42,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
|
@ -32,6 +32,7 @@ _ref:
|
||||
|
||||
Request parameters:
|
||||
- `connection: object`: The connection `properties` defined by the user in the Lowdefy configuration. Operators are evaluated before the properties are passed to the request.
|
||||
- `connectionId: string`: The connectionId used by the request and as set on the request.
|
||||
- `pageId: string`: The pageId from which the request was called.
|
||||
- `payload: object`: The payload data object passed to the request. Operators are evaluated on the client before the payload is passed to the server request function.
|
||||
- `request: object`: The request `properties` defined by the user in the Lowdefy configuration. Operators are evaluated before the properties are passed to the request.
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/engine
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/engine
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/engine",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -36,15 +36,15 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.12",
|
||||
"@lowdefy/build": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.12",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
||||
"@lowdefy/actions-core": "4.0.0-rc.14",
|
||||
"@lowdefy/build": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-js": "4.0.0-rc.14",
|
||||
"@lowdefy/operators-mql": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/layout
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/layout
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/layout",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,8 +41,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"antd": "4.24.14",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
@ -50,8 +50,8 @@
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -40,7 +40,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-core
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-core
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/actions-core",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -49,7 +49,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-pdf-make
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-pdf-make
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/actions-pdf-make
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/actions-pdf-make",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-aggrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-aggrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-aggrid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "AgGrid Blocks for Lowdefy.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -54,15 +54,15 @@
|
||||
"@ag-grid-community/csv-export": "29.3.5",
|
||||
"@ag-grid-community/react": "29.3.5",
|
||||
"@ag-grid-community/styles": "29.3.5",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-algolia
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-algolia
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-algolia",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Algolia Lowdefy blocks.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -46,14 +46,14 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/react": "3.5.2",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,50 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Change to controlled tab, closes [#1705](https://github.com/lowdefy/lowdefy/issues/1705) ([c804c18](https://github.com/lowdefy/lowdefy/commit/c804c18c7753782e301b7e1d077f27f4138939a7))
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
* **blocks-antd:** Mention html support in title schema. ([6929fa3](https://github.com/lowdefy/lowdefy/commit/6929fa3cc83ca50e4bdd38ce6dc9b1ceb7794ff0))
|
||||
* **blocks-antd:** Set ant-tabs-tabpane-hidden class to display none. ([c354acb](https://github.com/lowdefy/lowdefy/commit/c354acb0e8937d9c025bb810d34914ca66d57fe1))
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **blocks-antd:** Add onFocus and onBlur events to inputs ([ac9f342](https://github.com/lowdefy/lowdefy/commit/ac9f342c6bcd2b0c5df940fc9cc4783013f44714))
|
||||
* **blocks-antd:** Render HTML in tabs titles. ([28421cc](https://github.com/lowdefy/lowdefy/commit/28421cc2ae644f0924d876d1b276334e20cfdfa3))
|
||||
* **blocks-antd:** Trigger onChange event when active key changes. ([0c1908e](https://github.com/lowdefy/lowdefy/commit/0c1908e2c4887c4b492a8a2c6994b0bf63eb02b7))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **blocks-antd:** Change to controlled tab, closes [#1705](https://github.com/lowdefy/lowdefy/issues/1705) ([c804c18](https://github.com/lowdefy/lowdefy/commit/c804c18c7753782e301b7e1d077f27f4138939a7))
|
||||
* **blocks-antd:** Control tabs using setActiveKey method. ([1d2845c](https://github.com/lowdefy/lowdefy/commit/1d2845c3a73d8cf536fb081f5c61c823ec98375f))
|
||||
* **blocks-antd:** Mention html support in title schema. ([6929fa3](https://github.com/lowdefy/lowdefy/commit/6929fa3cc83ca50e4bdd38ce6dc9b1ceb7794ff0))
|
||||
* **blocks-antd:** Set ant-tabs-tabpane-hidden class to display none. ([c354acb](https://github.com/lowdefy/lowdefy/commit/c354acb0e8937d9c025bb810d34914ca66d57fe1))
|
||||
* **deps:** Revert less to 4.1.3. ([ea298c9](https://github.com/lowdefy/lowdefy/commit/ea298c9f49d0a30b7877f28c12cde944e2c1b803))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **blocks-antd:** Add onFocus and onBlur events to inputs ([ac9f342](https://github.com/lowdefy/lowdefy/commit/ac9f342c6bcd2b0c5df940fc9cc4783013f44714))
|
||||
* **blocks-antd:** Render HTML in tabs titles. ([28421cc](https://github.com/lowdefy/lowdefy/commit/28421cc2ae644f0924d876d1b276334e20cfdfa3))
|
||||
* **blocks-antd:** Trigger onChange event when active key changes. ([0c1908e](https://github.com/lowdefy/lowdefy/commit/0c1908e2c4887c4b492a8a2c6994b0bf63eb02b7))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-antd",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy Ant Design Blocks",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -50,8 +50,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons": "4.8.0",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"antd": "4.24.14",
|
||||
"classnames": "2.3.2",
|
||||
"moment": "2.29.4",
|
||||
@ -62,9 +62,9 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@lowdefy/node-utils": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -62,6 +62,15 @@ const AutoCompleteInput = ({
|
||||
methods.setValue(newVal);
|
||||
methods.triggerEvent({ name: 'onChange' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onClear={() => {
|
||||
methods.triggerEvent({ name: 'onClear' });
|
||||
}}
|
||||
onSearch={(newVal) => {
|
||||
methods.triggerEvent({ name: 'onSearch', event: { value: newVal } });
|
||||
}}
|
||||
|
@ -135,10 +135,22 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when selector loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger actions when selection is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when an selector gets focus."
|
||||
},
|
||||
"onClear": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selector gets cleared."
|
||||
},
|
||||
"onSearch": {
|
||||
"type": "array",
|
||||
"description": "Called when searching items."
|
||||
|
@ -25,6 +25,7 @@ const CardBlock = ({ blockId, content, properties, methods, events }) => (
|
||||
headStyle={methods.makeCssClass(properties.headerStyle, true)}
|
||||
bodyStyle={methods.makeCssClass(properties.bodyStyle, true)}
|
||||
bordered={properties.bordered}
|
||||
cover={content.cover && content.cover()}
|
||||
extra={content.extra && content.extra()}
|
||||
hoverable={properties.hoverable}
|
||||
size={properties.size}
|
||||
|
@ -131,6 +131,15 @@ const MultipleSelector = ({
|
||||
methods.setValue(val);
|
||||
methods.triggerEvent({ name: 'onChange' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
onClear={() => {
|
||||
methods.triggerEvent({ name: 'onClear' });
|
||||
}}
|
||||
onSearch={async (value) => {
|
||||
setFetch(true);
|
||||
const result = await methods.triggerEvent({ name: 'onSearch', event: { value } });
|
||||
|
@ -261,6 +261,18 @@
|
||||
"type": "array",
|
||||
"description": "Trigger actions when selection is changed."
|
||||
},
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when selector loses focus."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selector gets focus."
|
||||
},
|
||||
"onClear": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selector gets cleared."
|
||||
},
|
||||
"onSearch": {
|
||||
"type": "array",
|
||||
"description": "Trigger actions when input is changed. 'value' is passed to the _event operator to be used in actions such as search queries."
|
||||
|
@ -67,6 +67,12 @@ const NumberInput = ({
|
||||
onPressEnter={() => {
|
||||
methods.triggerEvent({ name: 'onPressEnter' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
value={value}
|
||||
/>
|
||||
),
|
||||
|
@ -151,9 +151,17 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when number input loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger actions when number is changed."
|
||||
"description": "Trigger action when number input is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when number input gets focus."
|
||||
},
|
||||
"onPressEnter": {
|
||||
"type": "array",
|
||||
|
@ -62,6 +62,12 @@ const PasswordInput = ({
|
||||
onPressEnter={() => {
|
||||
methods.triggerEvent({ name: 'onPressEnter' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
placeholder={properties.placeholder}
|
||||
value={value}
|
||||
size={properties.size}
|
||||
|
@ -110,10 +110,18 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when text input loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input gets focus."
|
||||
},
|
||||
"onPressEnter": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when enter is pressed while text input is focused."
|
||||
|
@ -86,6 +86,12 @@ function AddOnSelect({
|
||||
methods.triggerEvent({ name: 'onCodeChange' });
|
||||
methods.triggerEvent({ name: 'onChange' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
optionFilterProp="filterString"
|
||||
optionLabelProp="label"
|
||||
placeholder={'Select item'}
|
||||
@ -216,6 +222,12 @@ const PhoneNumberInput = ({
|
||||
onPressEnter={() => {
|
||||
methods.triggerEvent({ name: 'onPressEnter' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
prefix={
|
||||
properties.prefix ||
|
||||
(properties.prefixIcon && (
|
||||
|
@ -199,6 +199,14 @@
|
||||
"type": "array",
|
||||
"description": "Trigger action when the number is changed."
|
||||
},
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when input loses focus."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when input gets focus."
|
||||
},
|
||||
"onPressEnter": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when enter is pressed while text input is focused."
|
||||
|
@ -96,6 +96,15 @@ const Selector = ({
|
||||
);
|
||||
methods.triggerEvent({ name: 'onChange' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
onClear={() => {
|
||||
methods.triggerEvent({ name: 'onClear' });
|
||||
}}
|
||||
onSearch={async (value) => {
|
||||
setFetch(true);
|
||||
const result = await methods.triggerEvent({ name: 'onSearch', event: { value } });
|
||||
|
@ -223,10 +223,22 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when selector loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selection is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selector gets focus."
|
||||
},
|
||||
"onClear": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when selector is cleared."
|
||||
},
|
||||
"onSearch": {
|
||||
"type": "array",
|
||||
"description": "Trigger actions when input is changed. 'value' is passed to the _event operator to be used in actions such as search queries."
|
||||
|
@ -14,8 +14,8 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { blockDefaultProps } from '@lowdefy/block-utils';
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { blockDefaultProps, renderHtml } from '@lowdefy/block-utils';
|
||||
import { Tabs } from 'antd';
|
||||
|
||||
const getTabs = ({ content, properties }) => {
|
||||
@ -29,27 +29,33 @@ const getTabs = ({ content, properties }) => {
|
||||
return tabs.filter((tab) => tab.key !== properties.extraAreaKey);
|
||||
};
|
||||
|
||||
const getAdditionalProps = ({ content, properties }) => {
|
||||
const TabsBlock = ({ blockId, components: { Icon }, events, content, methods, properties }) => {
|
||||
const tabs = getTabs({ content, properties });
|
||||
const additionalProps = {};
|
||||
if (properties.activeKey) {
|
||||
additionalProps.activeKey = properties.activeKey;
|
||||
}
|
||||
if (properties.extraAreaKey) {
|
||||
additionalProps.tabBarExtraContent =
|
||||
content[properties.extraAreaKey] && content[properties.extraAreaKey]();
|
||||
}
|
||||
return additionalProps;
|
||||
};
|
||||
|
||||
const TabsBlock = ({ blockId, components: { Icon }, events, content, methods, properties }) => {
|
||||
const tabs = getTabs({ content, properties });
|
||||
const additionalProps = getAdditionalProps({ content, properties });
|
||||
const [key, setKey] = useState(properties.defaultActiveKey ?? tabs[0].key);
|
||||
useEffect(() => {
|
||||
methods.registerMethod('setActiveKey', ({ activeKey }) => {
|
||||
if (activeKey !== key) {
|
||||
setKey(activeKey);
|
||||
methods.triggerEvent({ name: 'onChange', event: { activeKey } });
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return (
|
||||
<Tabs
|
||||
activeKey={key}
|
||||
animated={properties.animated !== undefined ? properties.animated : true}
|
||||
defaultActiveKey={properties.defaultActiveKey ?? tabs[0].key}
|
||||
id={blockId}
|
||||
onChange={(activeKey) => methods.triggerEvent({ name: 'onChange', event: { activeKey } })}
|
||||
onChange={(activeKey) => {
|
||||
setKey(activeKey);
|
||||
methods.triggerEvent({ name: 'onChange', event: { activeKey } });
|
||||
}}
|
||||
size={properties.size ?? 'default'}
|
||||
tabBarStyle={methods.makeCssClass(properties.tabBarStyle, true)}
|
||||
tabPosition={properties.tabPosition ?? 'top'}
|
||||
@ -57,7 +63,9 @@ const TabsBlock = ({ blockId, components: { Icon }, events, content, methods, pr
|
||||
onTabScroll={({ direction }) =>
|
||||
methods.triggerEvent({ name: 'onTabScroll', event: { direction } })
|
||||
}
|
||||
onTabClick={(key) => methods.triggerEvent({ name: 'onTabClick', event: { key } })}
|
||||
onTabClick={(key) => {
|
||||
methods.triggerEvent({ name: 'onTabClick', event: { key } });
|
||||
}}
|
||||
items={tabs.map((tab) => ({
|
||||
id: `${blockId}_${tab.key}`,
|
||||
key: tab.key,
|
||||
@ -65,7 +73,7 @@ const TabsBlock = ({ blockId, components: { Icon }, events, content, methods, pr
|
||||
label: (
|
||||
<span className={methods.makeCssClass(tab.titleStyle)}>
|
||||
{tab.icon && <Icon blockId={`${blockId}_icon`} events={events} properties={tab.icon} />}
|
||||
{tab.title ?? tab.key}
|
||||
{tab.title ? renderHtml({ html: tab.title, methods }) : tab.key}
|
||||
</span>
|
||||
),
|
||||
children: content[tab.key] && content[tab.key](),
|
||||
|
@ -4,10 +4,6 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"activeKey": {
|
||||
"type": "string",
|
||||
"description": "Current TabPane's key."
|
||||
},
|
||||
"animated": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
@ -43,7 +39,7 @@
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"description": "Title of the tab."
|
||||
"description": "Title of the tab - supports html."
|
||||
},
|
||||
"key": {
|
||||
"type": "string",
|
||||
|
@ -15,8 +15,3 @@
|
||||
*/
|
||||
|
||||
@import 'antd/lib/tabs/style/index.less';
|
||||
|
||||
//! Remove with ant v5 update
|
||||
.ant-tabs-tabpane-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
@ -75,6 +75,12 @@ const TextAreaBlock = ({
|
||||
event.target.setSelectionRange(cStart, cEnd);
|
||||
});
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onPressEnter={() => {
|
||||
methods.triggerEvent({ name: 'onPressEnter' });
|
||||
}}
|
||||
|
@ -151,10 +151,18 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when text input loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input gets focus."
|
||||
},
|
||||
"onPressEnter": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when enter is pressed while text input is focused."
|
||||
|
@ -78,6 +78,12 @@ const TextInput = ({
|
||||
onPressEnter={() => {
|
||||
methods.triggerEvent({ name: 'onPressEnter' });
|
||||
}}
|
||||
onBlur={() => {
|
||||
methods.triggerEvent({ name: 'onBlur' });
|
||||
}}
|
||||
onFocus={() => {
|
||||
methods.triggerEvent({ name: 'onFocus' });
|
||||
}}
|
||||
prefix={
|
||||
properties.prefix ||
|
||||
(properties.prefixIcon && (
|
||||
|
@ -157,10 +157,18 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"onBlur": {
|
||||
"type": "array",
|
||||
"description": "Trigger action event occurs when text input loses focus."
|
||||
},
|
||||
"onChange": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input is changed."
|
||||
},
|
||||
"onFocus": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when text input gets focus."
|
||||
},
|
||||
"onPressEnter": {
|
||||
"type": "array",
|
||||
"description": "Trigger action when enter is pressed while text input is focused."
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-basic
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-basic
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-basic",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Basic html Lowdefy blocks.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -47,16 +47,16 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"dompurify": "3.0.6",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-color-selectors
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-color-selectors",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "A Lowdefy color selector blocks based on react-color.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -49,8 +49,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/blocks-antd": "4.0.0-rc.14",
|
||||
"classnames": "2.3.2",
|
||||
"react": "18.2.0",
|
||||
"react-colorful": "5.6.1",
|
||||
@ -58,8 +58,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-echarts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-echarts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-echarts",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "ECharts Blocks for Lowdefy.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -49,7 +49,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"echarts": "5.4.3",
|
||||
"echarts-for-react": "3.0.2",
|
||||
"react": "18.2.0",
|
||||
@ -57,8 +57,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-google-maps
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-google-maps
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-google-maps",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Google Maps Blocks for Lowdefy.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,15 +41,15 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@react-google-maps/api": "2.19.2",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-loaders
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-loaders
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-loaders",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy loader blocks.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -47,15 +47,15 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-markdown
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-markdown
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-markdown",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy markdown blocks.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -45,7 +45,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"dompurify": "3.0.6",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
@ -56,8 +56,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-qr
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/blocks-qr
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/blocks-qr",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Lowdefy qr blocks.",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -48,15 +48,15 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/block-utils": "4.0.0-rc.12",
|
||||
"@lowdefy/block-utils": "4.0.0-rc.14",
|
||||
"html5-qrcode": "2.3.8",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/jest": "11.10.5",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.12",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.12",
|
||||
"@lowdefy/block-dev": "4.0.0-rc.14",
|
||||
"@lowdefy/jest-yaml-transform": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-axios-http
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-axios-http
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-axios-http
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-axios-http",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,11 +41,11 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"axios": "1.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-elasticsearch
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-elasticsearch",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,11 +42,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@elastic/elasticsearch": "7.17.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-google-sheets
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-google-sheets
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-google-sheets",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,14 +41,14 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"google-spreadsheet": "3.3.0",
|
||||
"mingo": "6.4.6",
|
||||
"moment": "2.29.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-knex
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-knex
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-knex
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-knex",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,7 +41,7 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"knex": "2.5.1",
|
||||
"mssql": "10.0.1",
|
||||
"mysql": "2.18.1",
|
||||
@ -50,7 +50,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-mongodb
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-mongodb
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-mongodb",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,13 +42,13 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@next-auth/mongodb-adapter": "1.1.3",
|
||||
"mongodb": "4.17.1",
|
||||
"saslprep": "1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@shelf/jest-mongodb": "4.1.7",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-redis
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-redis
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-redis",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -45,12 +45,12 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"redis": "4.6.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-sendgrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-sendgrid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-sendgrid
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-sendgrid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,12 +41,12 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@sendgrid/mail": "7.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-stripe
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-stripe
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/connection-stripe
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/connection-stripe",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -41,12 +41,12 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"stripe": "13.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
"@lowdefy/ajv": "4.0.0-rc.12",
|
||||
"@lowdefy/ajv": "4.0.0-rc.14",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.92",
|
||||
"@swc/jest": "0.2.29",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-change-case
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-change-case
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-change-case",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,8 +42,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"change-case": "4.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-diff
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-diff
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-diff
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-diff",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,8 +42,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"deep-diff": "1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-js
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-js",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -48,8 +48,8 @@
|
||||
"test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "28.1.3",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-moment
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-moment
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-moment
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-moment",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -46,7 +46,7 @@
|
||||
"test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"moment": "2.29.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-mql
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-mql
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-mql",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,8 +42,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"mingo": "6.4.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-nunjucks
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-nunjucks
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-nunjucks",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,9 +42,9 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12"
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/nunjucks": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/cli": "0.1.62",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [4.0.0-rc.14](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.14) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-uuid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.13](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.12...v4.0.0-rc.13) (2023-11-17)
|
||||
|
||||
**Note:** Version bump only for package @lowdefy/operators-uuid
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.0.0-rc.12](https://github.com/lowdefy/lowdefy/compare/v4.0.0-rc.11...v4.0.0-rc.12) (2023-10-19)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lowdefy/operators-uuid",
|
||||
"version": "4.0.0-rc.12",
|
||||
"version": "4.0.0-rc.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "",
|
||||
"homepage": "https://lowdefy.com",
|
||||
@ -42,8 +42,8 @@
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lowdefy/helpers": "4.0.0-rc.12",
|
||||
"@lowdefy/operators": "4.0.0-rc.12",
|
||||
"@lowdefy/helpers": "4.0.0-rc.14",
|
||||
"@lowdefy/operators": "4.0.0-rc.14",
|
||||
"uuid": "9.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user