@syntrologie/runtime-sdk 2.8.0-canary.8 → 2.8.0
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/CAPABILITIES.md +22 -0
- package/dist/{chunk-OB5AKUQT.js → chunk-4J6BCKWS.js} +262 -140
- package/dist/chunk-4J6BCKWS.js.map +7 -0
- package/dist/components/TileIcon.d.ts +2 -2
- package/dist/components/emojiToIcon.d.ts +24 -0
- package/dist/index.js +2271 -54
- package/dist/index.js.map +4 -4
- package/dist/react.js +1 -1
- package/dist/smart-canvas.esm.js +113 -47
- package/dist/smart-canvas.esm.js.map +4 -4
- package/dist/smart-canvas.js +3395 -939
- package/dist/smart-canvas.js.map +4 -4
- package/dist/smart-canvas.min.js +113 -47
- package/dist/smart-canvas.min.js.map +4 -4
- package/dist/version.d.ts +1 -1
- package/package.json +7 -7
- package/schema/canvas-config.schema.json +100 -2
- package/dist/chunk-OB5AKUQT.js.map +0 -7
package/dist/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syntrologie/runtime-sdk",
|
|
3
|
-
"version": "2.8.0
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "Syntrologie Runtime SDK for web experimentation and analytics",
|
|
5
5
|
"license": "Proprietary",
|
|
6
6
|
"private": false,
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"@floating-ui/dom": "^1.7.5",
|
|
68
68
|
"@growthbook/growthbook": "~1.6.2",
|
|
69
69
|
"@growthbook/growthbook-react": "^1.6.4",
|
|
70
|
-
"@syntrologie/adapt-chatbot": "2.8.0
|
|
71
|
-
"@syntrologie/adapt-content": "2.8.0
|
|
72
|
-
"@syntrologie/adapt-faq": "2.8.0
|
|
73
|
-
"@syntrologie/adapt-gamification": "2.8.0
|
|
74
|
-
"@syntrologie/adapt-nav": "2.8.0
|
|
75
|
-
"@syntrologie/adapt-overlays": "2.8.0
|
|
70
|
+
"@syntrologie/adapt-chatbot": "2.8.0",
|
|
71
|
+
"@syntrologie/adapt-content": "2.8.0",
|
|
72
|
+
"@syntrologie/adapt-faq": "2.8.0",
|
|
73
|
+
"@syntrologie/adapt-gamification": "2.8.0",
|
|
74
|
+
"@syntrologie/adapt-nav": "2.8.0",
|
|
75
|
+
"@syntrologie/adapt-overlays": "2.8.0",
|
|
76
76
|
"lucide-react": "^0.576.0",
|
|
77
77
|
"posthog-js": "~1.302.2",
|
|
78
78
|
"zod": "^3.25.76"
|
|
@@ -11071,7 +11071,30 @@
|
|
|
11071
11071
|
]
|
|
11072
11072
|
},
|
|
11073
11073
|
"anchorId": {
|
|
11074
|
-
"type": "
|
|
11074
|
+
"type": "object",
|
|
11075
|
+
"properties": {
|
|
11076
|
+
"selector": {
|
|
11077
|
+
"type": "string"
|
|
11078
|
+
},
|
|
11079
|
+
"route": {
|
|
11080
|
+
"anyOf": [
|
|
11081
|
+
{
|
|
11082
|
+
"type": "string"
|
|
11083
|
+
},
|
|
11084
|
+
{
|
|
11085
|
+
"type": "array",
|
|
11086
|
+
"items": {
|
|
11087
|
+
"type": "string"
|
|
11088
|
+
}
|
|
11089
|
+
}
|
|
11090
|
+
]
|
|
11091
|
+
}
|
|
11092
|
+
},
|
|
11093
|
+
"required": [
|
|
11094
|
+
"selector",
|
|
11095
|
+
"route"
|
|
11096
|
+
],
|
|
11097
|
+
"additionalProperties": false
|
|
11075
11098
|
}
|
|
11076
11099
|
},
|
|
11077
11100
|
"required": [
|
|
@@ -11091,7 +11114,30 @@
|
|
|
11091
11114
|
"type": "string"
|
|
11092
11115
|
},
|
|
11093
11116
|
"anchorId": {
|
|
11094
|
-
"type": "
|
|
11117
|
+
"type": "object",
|
|
11118
|
+
"properties": {
|
|
11119
|
+
"selector": {
|
|
11120
|
+
"type": "string"
|
|
11121
|
+
},
|
|
11122
|
+
"route": {
|
|
11123
|
+
"anyOf": [
|
|
11124
|
+
{
|
|
11125
|
+
"type": "string"
|
|
11126
|
+
},
|
|
11127
|
+
{
|
|
11128
|
+
"type": "array",
|
|
11129
|
+
"items": {
|
|
11130
|
+
"type": "string"
|
|
11131
|
+
}
|
|
11132
|
+
}
|
|
11133
|
+
]
|
|
11134
|
+
}
|
|
11135
|
+
},
|
|
11136
|
+
"required": [
|
|
11137
|
+
"selector",
|
|
11138
|
+
"route"
|
|
11139
|
+
],
|
|
11140
|
+
"additionalProperties": false
|
|
11095
11141
|
},
|
|
11096
11142
|
"label": {
|
|
11097
11143
|
"type": "string"
|
|
@@ -11984,6 +12030,32 @@
|
|
|
11984
12030
|
"type": "string",
|
|
11985
12031
|
"minLength": 1
|
|
11986
12032
|
},
|
|
12033
|
+
"anchor": {
|
|
12034
|
+
"type": "object",
|
|
12035
|
+
"properties": {
|
|
12036
|
+
"selector": {
|
|
12037
|
+
"type": "string"
|
|
12038
|
+
},
|
|
12039
|
+
"route": {
|
|
12040
|
+
"anyOf": [
|
|
12041
|
+
{
|
|
12042
|
+
"type": "string"
|
|
12043
|
+
},
|
|
12044
|
+
{
|
|
12045
|
+
"type": "array",
|
|
12046
|
+
"items": {
|
|
12047
|
+
"type": "string"
|
|
12048
|
+
}
|
|
12049
|
+
}
|
|
12050
|
+
]
|
|
12051
|
+
}
|
|
12052
|
+
},
|
|
12053
|
+
"required": [
|
|
12054
|
+
"selector",
|
|
12055
|
+
"route"
|
|
12056
|
+
],
|
|
12057
|
+
"additionalProperties": false
|
|
12058
|
+
},
|
|
11987
12059
|
"href": {
|
|
11988
12060
|
"type": "string"
|
|
11989
12061
|
},
|
|
@@ -14700,6 +14772,32 @@
|
|
|
14700
14772
|
"type": "string",
|
|
14701
14773
|
"minLength": 1
|
|
14702
14774
|
},
|
|
14775
|
+
"anchor": {
|
|
14776
|
+
"type": "object",
|
|
14777
|
+
"properties": {
|
|
14778
|
+
"selector": {
|
|
14779
|
+
"type": "string"
|
|
14780
|
+
},
|
|
14781
|
+
"route": {
|
|
14782
|
+
"anyOf": [
|
|
14783
|
+
{
|
|
14784
|
+
"type": "string"
|
|
14785
|
+
},
|
|
14786
|
+
{
|
|
14787
|
+
"type": "array",
|
|
14788
|
+
"items": {
|
|
14789
|
+
"type": "string"
|
|
14790
|
+
}
|
|
14791
|
+
}
|
|
14792
|
+
]
|
|
14793
|
+
}
|
|
14794
|
+
},
|
|
14795
|
+
"required": [
|
|
14796
|
+
"selector",
|
|
14797
|
+
"route"
|
|
14798
|
+
],
|
|
14799
|
+
"additionalProperties": false
|
|
14800
|
+
},
|
|
14703
14801
|
"href": {
|
|
14704
14802
|
"type": "string"
|
|
14705
14803
|
},
|