@livechat/platform-workflows 0.0.25 → 0.0.27

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/.DS_Store ADDED
Binary file
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use client";
1
+ "use client"
2
2
  "use strict";
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
@@ -9247,7 +9247,7 @@ var workflowBuilderUtils = {
9247
9247
  stringify(json, space = 4) {
9248
9248
  return JSON.stringify(json, null, space);
9249
9249
  },
9250
- escapeTag(value) {
9250
+ escapeTag(value = "") {
9251
9251
  const valueWithoutQuotes = value.replaceAll('"', "");
9252
9252
  return valueWithoutQuotes.substring(2, valueWithoutQuotes.length - 1);
9253
9253
  },
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- "use client";
1
+ "use client"
2
2
  var __create = Object.create;
3
3
  var __defProp = Object.defineProperty;
4
4
  var __defProps = Object.defineProperties;
@@ -9290,7 +9290,7 @@ var workflowBuilderUtils = {
9290
9290
  stringify(json, space = 4) {
9291
9291
  return JSON.stringify(json, null, space);
9292
9292
  },
9293
- escapeTag(value) {
9293
+ escapeTag(value = "") {
9294
9294
  const valueWithoutQuotes = value.replaceAll('"', "");
9295
9295
  return valueWithoutQuotes.substring(2, valueWithoutQuotes.length - 1);
9296
9296
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livechat/platform-workflows",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "Text Platform | Workflows",
5
5
  "author": "Wojciech Dudek",
6
6
  "license": "MIT",
@@ -17,6 +17,16 @@
17
17
  "main": "./dist/index.js",
18
18
  "module": "./dist/index.mjs",
19
19
  "types": "./dist/index.d.ts",
20
+ "style": "./dist/index.css",
21
+ "exports": {
22
+ ".": {
23
+ "import": "./dist/index.mjs",
24
+ "require": "./dist/index.js",
25
+ "default": "./dist/index.js"
26
+ },
27
+ "./dist/index.css": "./dist/index.css",
28
+ "./styles.css": "./dist/index.css"
29
+ },
20
30
  "files": [
21
31
  "dist/**"
22
32
  ],
@@ -38,16 +48,12 @@
38
48
  "esbuild-sass-plugin": "^3.2.0",
39
49
  "tsup": "^8.0.0",
40
50
  "typescript": "^5.1.6",
41
- "tsconfig": "0.0.1",
42
- "eslint-config-custom": "0.0.10"
51
+ "eslint-config-custom": "0.0.10",
52
+ "tsconfig": "0.0.1"
43
53
  },
44
54
  "dependencies": {
45
55
  "@amplitude/analytics-browser": "^2.11.9",
46
56
  "@lexical/react": "^0.19.0",
47
- "@livechat/accounts-sdk": "2.0.8",
48
- "@livechat/design-system": "^0.13.5",
49
- "@livechat/design-system-icons": "^2.5.3",
50
- "@livechat/design-system-react-components": "^1.34.1",
51
57
  "@monaco-editor/react": "^4.6.0",
52
58
  "@rjsf/core": "^5.22.1",
53
59
  "@rjsf/utils": "^5.22.1",
@@ -74,16 +80,20 @@
74
80
  "reactflow": "^11.11.4",
75
81
  "uuid": "^9.0.1",
76
82
  "validator": "^13.12.0",
77
- "web-worker": "^1.3.0",
78
- "@livechat/developer-studio-api": "3.3.8",
79
- "@livechat/developer-studio-ui-react": "0.0.61",
80
- "@livechat/platform-integrations": "0.0.4"
83
+ "web-worker": "^1.3.0"
81
84
  },
82
85
  "peerDependencies": {
83
86
  "@tanstack/react-query": "4.36.1",
87
+ "@livechat/accounts-sdk": "2.0.8",
88
+ "@livechat/design-system": "^0.13.5",
89
+ "@livechat/design-system-icons": "^2.5.3",
90
+ "@livechat/design-system-react-components": "^1.34.1",
84
91
  "react": "^18.2.0",
85
92
  "react-dom": "^18.2.0",
86
- "react-router-dom": "^6.17.0"
93
+ "react-router-dom": "^6.17.0",
94
+ "@livechat/developer-studio-api": "3.3.8",
95
+ "@livechat/developer-studio-ui-react": "0.0.62",
96
+ "@livechat/platform-integrations": "0.0.5"
87
97
  },
88
98
  "scripts": {
89
99
  "build": "tsup",