@tachybase/module-workflow 1.3.17 → 1.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/index.js +38 -38
- package/dist/externalVersion.js +15 -15
- package/dist/node_modules/@babel/core/lib/index.js +23 -23
- package/dist/node_modules/@babel/core/node_modules/.bin/parser +4 -4
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/@babel/preset-env/lib/available-plugins.js +4 -0
- package/dist/node_modules/@babel/preset-env/lib/index.js +54 -35
- package/dist/node_modules/@babel/preset-env/package.json +1 -1
- package/dist/node_modules/@babel/preset-react/lib/index.js +24 -24
- package/dist/node_modules/@babel/preset-react/package.json +1 -1
- package/dist/node_modules/@babel/preset-typescript/lib/index.js +23 -23
- package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
- package/dist/node_modules/cron-parser/LICENSE +1 -1
- package/dist/node_modules/cron-parser/dist/CronDate.js +497 -0
- package/dist/node_modules/cron-parser/dist/CronExpression.js +376 -0
- package/dist/node_modules/cron-parser/dist/CronExpressionParser.js +384 -0
- package/dist/node_modules/cron-parser/dist/CronFieldCollection.js +371 -0
- package/dist/node_modules/cron-parser/dist/CronFileParser.js +109 -0
- package/dist/node_modules/cron-parser/dist/fields/CronDayOfMonth.js +44 -0
- package/dist/node_modules/cron-parser/dist/fields/CronDayOfWeek.js +51 -0
- package/dist/node_modules/cron-parser/dist/fields/CronField.js +183 -0
- package/dist/node_modules/cron-parser/dist/fields/CronHour.js +40 -0
- package/dist/node_modules/cron-parser/dist/fields/CronMinute.js +40 -0
- package/dist/node_modules/cron-parser/dist/fields/CronMonth.js +44 -0
- package/dist/node_modules/cron-parser/dist/fields/CronSecond.js +40 -0
- package/dist/node_modules/cron-parser/dist/fields/index.js +24 -0
- package/dist/node_modules/cron-parser/dist/fields/types.js +2 -0
- package/dist/node_modules/cron-parser/dist/index.js +1 -0
- package/dist/node_modules/cron-parser/dist/types/CronDate.d.ts +273 -0
- package/dist/node_modules/cron-parser/dist/types/CronExpression.d.ts +110 -0
- package/dist/node_modules/cron-parser/dist/types/CronExpressionParser.d.ts +70 -0
- package/dist/node_modules/cron-parser/dist/types/CronFieldCollection.d.ts +153 -0
- package/dist/node_modules/cron-parser/dist/types/CronFileParser.d.ts +30 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronDayOfMonth.d.ts +25 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronDayOfWeek.d.ts +30 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronField.d.ts +114 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronHour.d.ts +23 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronMinute.d.ts +23 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronMonth.d.ts +24 -0
- package/dist/node_modules/cron-parser/dist/types/fields/CronSecond.d.ts +23 -0
- package/dist/node_modules/cron-parser/dist/types/fields/index.d.ts +8 -0
- package/dist/node_modules/cron-parser/dist/types/fields/types.d.ts +18 -0
- package/dist/node_modules/cron-parser/dist/types/index.d.ts +8 -0
- package/dist/node_modules/cron-parser/dist/types/utils/random.d.ts +10 -0
- package/dist/node_modules/cron-parser/dist/utils/random.js +38 -0
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/form-data/package.json +1 -1
- package/dist/node_modules/jsonata/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/node_modules/mime-types/package.json +1 -1
- package/dist/node_modules/qrcode/package.json +1 -1
- package/package.json +21 -21
- package/dist/node_modules/cron-parser/lib/date.js +0 -252
- package/dist/node_modules/cron-parser/lib/expression.js +0 -1002
- package/dist/node_modules/cron-parser/lib/field_compactor.js +0 -70
- package/dist/node_modules/cron-parser/lib/field_stringify.js +0 -58
- package/dist/node_modules/cron-parser/lib/parser.js +0 -1
- package/dist/node_modules/cron-parser/types/common.d.ts +0 -131
- package/dist/node_modules/cron-parser/types/index.d.ts +0 -45
- package/dist/node_modules/cron-parser/types/ts3/index.d.ts +0 -28
package/dist/externalVersion.js
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"react": "18.3.1",
|
|
3
|
-
"@tachybase/client": "1.3.
|
|
3
|
+
"@tachybase/client": "1.3.18",
|
|
4
4
|
"@ant-design/icons": "5.3.7",
|
|
5
5
|
"antd": "5.22.5",
|
|
6
6
|
"lodash": "4.17.21",
|
|
7
|
-
"@tachybase/utils": "1.3.
|
|
7
|
+
"@tachybase/utils": "1.3.18",
|
|
8
8
|
"react-i18next": "15.2.0",
|
|
9
9
|
"react-router-dom": "6.28.1",
|
|
10
|
-
"@tachybase/schema": "1.3.
|
|
11
|
-
"@tachybase/database": "1.3.
|
|
12
|
-
"@tachybase/logger": "1.3.
|
|
13
|
-
"@tachybase/server": "1.3.
|
|
14
|
-
"@tachybase/evaluators": "1.3.
|
|
15
|
-
"@tachybase/components": "1.3.
|
|
10
|
+
"@tachybase/schema": "1.3.18",
|
|
11
|
+
"@tachybase/database": "1.3.18",
|
|
12
|
+
"@tachybase/logger": "1.3.18",
|
|
13
|
+
"@tachybase/server": "1.3.18",
|
|
14
|
+
"@tachybase/evaluators": "1.3.18",
|
|
15
|
+
"@tachybase/components": "1.3.18",
|
|
16
16
|
"@dnd-kit/core": "6.3.1",
|
|
17
|
-
"@tachybase/actions": "1.3.
|
|
18
|
-
"@tachybase/data-source": "1.3.
|
|
17
|
+
"@tachybase/actions": "1.3.18",
|
|
18
|
+
"@tachybase/data-source": "1.3.18",
|
|
19
19
|
"axios": "1.7.7",
|
|
20
20
|
"sequelize": "6.37.5",
|
|
21
|
-
"@tachybase/plugin-workflow-test": "1.3.
|
|
22
|
-
"@tachybase/test": "1.3.
|
|
23
|
-
"@tachybase/module-error-handler": "1.3.
|
|
24
|
-
"@tachybase/resourcer": "1.3.
|
|
25
|
-
"@tachybase/module-ui-schema": "1.3.
|
|
21
|
+
"@tachybase/plugin-workflow-test": "1.3.18",
|
|
22
|
+
"@tachybase/test": "1.3.18",
|
|
23
|
+
"@tachybase/module-error-handler": "1.3.18",
|
|
24
|
+
"@tachybase/resourcer": "1.3.18",
|
|
25
|
+
"@tachybase/module-ui-schema": "1.3.18"
|
|
26
26
|
};
|