@contractspec/lib.example-shared-ui 1.12.0 → 1.14.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +26 -0
- package/package.json +181 -31
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=23
|
|
6
|
-
Bundled 23 modules in
|
|
6
|
+
Bundled 23 modules in 43ms
|
|
7
7
|
|
|
8
8
|
./EvolutionDashboard.js 31.40 KB (entry point)
|
|
9
9
|
./index.js 120.97 KB (entry point)
|
|
@@ -30,7 +30,7 @@ Bundled 23 modules in 41ms
|
|
|
30
30
|
lib/runtime-context.js 430 bytes (entry point)
|
|
31
31
|
|
|
32
32
|
[contractspec-bun-build] transpile target=node root=src entries=23
|
|
33
|
-
Bundled 23 modules in
|
|
33
|
+
Bundled 23 modules in 43ms
|
|
34
34
|
|
|
35
35
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
36
36
|
./index.js 120.91 KB (entry point)
|
|
@@ -57,7 +57,7 @@ Bundled 23 modules in 61ms
|
|
|
57
57
|
lib/runtime-context.js 422 bytes (entry point)
|
|
58
58
|
|
|
59
59
|
[contractspec-bun-build] transpile target=browser root=src entries=23
|
|
60
|
-
Bundled 23 modules in
|
|
60
|
+
Bundled 23 modules in 33ms
|
|
61
61
|
|
|
62
62
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
63
63
|
./index.js 120.91 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @contractspec/lib.example-shared-ui
|
|
2
2
|
|
|
3
|
+
## 1.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/lib.design-system@1.60.0
|
|
13
|
+
- @contractspec/lib.ui-kit-web@1.60.0
|
|
14
|
+
- @contractspec/lib.contracts@1.60.0
|
|
15
|
+
|
|
16
|
+
## 1.13.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [1a0cf44]
|
|
25
|
+
- @contractspec/lib.design-system@1.59.0
|
|
26
|
+
- @contractspec/lib.ui-kit-web@1.59.0
|
|
27
|
+
- @contractspec/lib.contracts@1.59.0
|
|
28
|
+
|
|
3
29
|
## 1.12.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,33 +1,183 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.example-shared-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
|
-
".":
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"./
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"./
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"./
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bun": "./dist/index.js",
|
|
9
|
+
"node": "./dist/node/index.mjs",
|
|
10
|
+
"browser": "./dist/browser/index.js",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./EvolutionDashboard": {
|
|
14
|
+
"types": "./dist/EvolutionDashboard.d.ts",
|
|
15
|
+
"bun": "./dist/EvolutionDashboard.js",
|
|
16
|
+
"node": "./dist/node/EvolutionDashboard.mjs",
|
|
17
|
+
"browser": "./dist/browser/EvolutionDashboard.js",
|
|
18
|
+
"default": "./dist/EvolutionDashboard.js"
|
|
19
|
+
},
|
|
20
|
+
"./EvolutionSidebar": {
|
|
21
|
+
"types": "./dist/EvolutionSidebar.d.ts",
|
|
22
|
+
"bun": "./dist/EvolutionSidebar.js",
|
|
23
|
+
"node": "./dist/node/EvolutionSidebar.mjs",
|
|
24
|
+
"browser": "./dist/browser/EvolutionSidebar.js",
|
|
25
|
+
"default": "./dist/EvolutionSidebar.js"
|
|
26
|
+
},
|
|
27
|
+
"./hooks": {
|
|
28
|
+
"types": "./dist/hooks/index.d.ts",
|
|
29
|
+
"bun": "./dist/hooks/index.js",
|
|
30
|
+
"node": "./dist/node/hooks/index.mjs",
|
|
31
|
+
"browser": "./dist/browser/hooks/index.js",
|
|
32
|
+
"default": "./dist/hooks/index.js"
|
|
33
|
+
},
|
|
34
|
+
"./hooks/index": {
|
|
35
|
+
"types": "./dist/hooks/index.d.ts",
|
|
36
|
+
"bun": "./dist/hooks/index.js",
|
|
37
|
+
"node": "./dist/node/hooks/index.mjs",
|
|
38
|
+
"browser": "./dist/browser/hooks/index.js",
|
|
39
|
+
"default": "./dist/hooks/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./hooks/useBehaviorTracking": {
|
|
42
|
+
"types": "./dist/hooks/useBehaviorTracking.d.ts",
|
|
43
|
+
"bun": "./dist/hooks/useBehaviorTracking.js",
|
|
44
|
+
"node": "./dist/node/hooks/useBehaviorTracking.mjs",
|
|
45
|
+
"browser": "./dist/browser/hooks/useBehaviorTracking.js",
|
|
46
|
+
"default": "./dist/hooks/useBehaviorTracking.js"
|
|
47
|
+
},
|
|
48
|
+
"./hooks/useEvolution": {
|
|
49
|
+
"types": "./dist/hooks/useEvolution.d.ts",
|
|
50
|
+
"bun": "./dist/hooks/useEvolution.js",
|
|
51
|
+
"node": "./dist/node/hooks/useEvolution.mjs",
|
|
52
|
+
"browser": "./dist/browser/hooks/useEvolution.js",
|
|
53
|
+
"default": "./dist/hooks/useEvolution.js"
|
|
54
|
+
},
|
|
55
|
+
"./hooks/useRegistryTemplates": {
|
|
56
|
+
"types": "./dist/hooks/useRegistryTemplates.d.ts",
|
|
57
|
+
"bun": "./dist/hooks/useRegistryTemplates.js",
|
|
58
|
+
"node": "./dist/node/hooks/useRegistryTemplates.mjs",
|
|
59
|
+
"browser": "./dist/browser/hooks/useRegistryTemplates.js",
|
|
60
|
+
"default": "./dist/hooks/useRegistryTemplates.js"
|
|
61
|
+
},
|
|
62
|
+
"./hooks/useSpecContent": {
|
|
63
|
+
"types": "./dist/hooks/useSpecContent.d.ts",
|
|
64
|
+
"bun": "./dist/hooks/useSpecContent.js",
|
|
65
|
+
"node": "./dist/node/hooks/useSpecContent.mjs",
|
|
66
|
+
"browser": "./dist/browser/hooks/useSpecContent.js",
|
|
67
|
+
"default": "./dist/hooks/useSpecContent.js"
|
|
68
|
+
},
|
|
69
|
+
"./hooks/useWorkflowComposer": {
|
|
70
|
+
"types": "./dist/hooks/useWorkflowComposer.d.ts",
|
|
71
|
+
"bun": "./dist/hooks/useWorkflowComposer.js",
|
|
72
|
+
"node": "./dist/node/hooks/useWorkflowComposer.mjs",
|
|
73
|
+
"browser": "./dist/browser/hooks/useWorkflowComposer.js",
|
|
74
|
+
"default": "./dist/hooks/useWorkflowComposer.js"
|
|
75
|
+
},
|
|
76
|
+
"./lib/component-registry": {
|
|
77
|
+
"types": "./dist/lib/component-registry.d.ts",
|
|
78
|
+
"bun": "./dist/lib/component-registry.js",
|
|
79
|
+
"node": "./dist/node/lib/component-registry.mjs",
|
|
80
|
+
"browser": "./dist/browser/lib/component-registry.js",
|
|
81
|
+
"default": "./dist/lib/component-registry.js"
|
|
82
|
+
},
|
|
83
|
+
"./lib/runtime-context": {
|
|
84
|
+
"types": "./dist/lib/runtime-context.d.ts",
|
|
85
|
+
"bun": "./dist/lib/runtime-context.js",
|
|
86
|
+
"node": "./dist/node/lib/runtime-context.mjs",
|
|
87
|
+
"browser": "./dist/browser/lib/runtime-context.js",
|
|
88
|
+
"default": "./dist/lib/runtime-context.js"
|
|
89
|
+
},
|
|
90
|
+
"./lib/types": {
|
|
91
|
+
"types": "./dist/lib/types.d.ts",
|
|
92
|
+
"bun": "./dist/lib/types.js",
|
|
93
|
+
"node": "./dist/node/lib/types.mjs",
|
|
94
|
+
"browser": "./dist/browser/lib/types.js",
|
|
95
|
+
"default": "./dist/lib/types.js"
|
|
96
|
+
},
|
|
97
|
+
"./LocalDataIndicator": {
|
|
98
|
+
"types": "./dist/LocalDataIndicator.d.ts",
|
|
99
|
+
"bun": "./dist/LocalDataIndicator.js",
|
|
100
|
+
"node": "./dist/node/LocalDataIndicator.mjs",
|
|
101
|
+
"browser": "./dist/browser/LocalDataIndicator.js",
|
|
102
|
+
"default": "./dist/LocalDataIndicator.js"
|
|
103
|
+
},
|
|
104
|
+
"./MarkdownView": {
|
|
105
|
+
"types": "./dist/MarkdownView.d.ts",
|
|
106
|
+
"bun": "./dist/MarkdownView.js",
|
|
107
|
+
"node": "./dist/node/MarkdownView.mjs",
|
|
108
|
+
"browser": "./dist/browser/MarkdownView.js",
|
|
109
|
+
"default": "./dist/MarkdownView.js"
|
|
110
|
+
},
|
|
111
|
+
"./overlay-types": {
|
|
112
|
+
"types": "./dist/overlay-types.d.ts",
|
|
113
|
+
"bun": "./dist/overlay-types.js",
|
|
114
|
+
"node": "./dist/node/overlay-types.mjs",
|
|
115
|
+
"browser": "./dist/browser/overlay-types.js",
|
|
116
|
+
"default": "./dist/overlay-types.js"
|
|
117
|
+
},
|
|
118
|
+
"./OverlayContextProvider": {
|
|
119
|
+
"types": "./dist/OverlayContextProvider.d.ts",
|
|
120
|
+
"bun": "./dist/OverlayContextProvider.js",
|
|
121
|
+
"node": "./dist/node/OverlayContextProvider.mjs",
|
|
122
|
+
"browser": "./dist/browser/OverlayContextProvider.js",
|
|
123
|
+
"default": "./dist/OverlayContextProvider.js"
|
|
124
|
+
},
|
|
125
|
+
"./PersonalizationInsights": {
|
|
126
|
+
"types": "./dist/PersonalizationInsights.d.ts",
|
|
127
|
+
"bun": "./dist/PersonalizationInsights.js",
|
|
128
|
+
"node": "./dist/node/PersonalizationInsights.mjs",
|
|
129
|
+
"browser": "./dist/browser/PersonalizationInsights.js",
|
|
130
|
+
"default": "./dist/PersonalizationInsights.js"
|
|
131
|
+
},
|
|
132
|
+
"./SaveToStudioButton": {
|
|
133
|
+
"types": "./dist/SaveToStudioButton.d.ts",
|
|
134
|
+
"bun": "./dist/SaveToStudioButton.js",
|
|
135
|
+
"node": "./dist/node/SaveToStudioButton.mjs",
|
|
136
|
+
"browser": "./dist/browser/SaveToStudioButton.js",
|
|
137
|
+
"default": "./dist/SaveToStudioButton.js"
|
|
138
|
+
},
|
|
139
|
+
"./SpecEditorPanel": {
|
|
140
|
+
"types": "./dist/SpecEditorPanel.d.ts",
|
|
141
|
+
"bun": "./dist/SpecEditorPanel.js",
|
|
142
|
+
"node": "./dist/node/SpecEditorPanel.mjs",
|
|
143
|
+
"browser": "./dist/browser/SpecEditorPanel.js",
|
|
144
|
+
"default": "./dist/SpecEditorPanel.js"
|
|
145
|
+
},
|
|
146
|
+
"./TemplateShell": {
|
|
147
|
+
"types": "./dist/TemplateShell.d.ts",
|
|
148
|
+
"bun": "./dist/TemplateShell.js",
|
|
149
|
+
"node": "./dist/node/TemplateShell.mjs",
|
|
150
|
+
"browser": "./dist/browser/TemplateShell.js",
|
|
151
|
+
"default": "./dist/TemplateShell.js"
|
|
152
|
+
},
|
|
153
|
+
"./utils": {
|
|
154
|
+
"types": "./dist/utils/index.d.ts",
|
|
155
|
+
"bun": "./dist/utils/index.js",
|
|
156
|
+
"node": "./dist/node/utils/index.mjs",
|
|
157
|
+
"browser": "./dist/browser/utils/index.js",
|
|
158
|
+
"default": "./dist/utils/index.js"
|
|
159
|
+
},
|
|
160
|
+
"./utils/fetchPresentationData": {
|
|
161
|
+
"types": "./dist/utils/fetchPresentationData.d.ts",
|
|
162
|
+
"bun": "./dist/utils/fetchPresentationData.js",
|
|
163
|
+
"node": "./dist/node/utils/fetchPresentationData.mjs",
|
|
164
|
+
"browser": "./dist/browser/utils/fetchPresentationData.js",
|
|
165
|
+
"default": "./dist/utils/fetchPresentationData.js"
|
|
166
|
+
},
|
|
167
|
+
"./utils/generateSpecFromTemplate": {
|
|
168
|
+
"types": "./dist/utils/generateSpecFromTemplate.d.ts",
|
|
169
|
+
"bun": "./dist/utils/generateSpecFromTemplate.js",
|
|
170
|
+
"node": "./dist/node/utils/generateSpecFromTemplate.mjs",
|
|
171
|
+
"browser": "./dist/browser/utils/generateSpecFromTemplate.js",
|
|
172
|
+
"default": "./dist/utils/generateSpecFromTemplate.js"
|
|
173
|
+
},
|
|
174
|
+
"./utils/index": {
|
|
175
|
+
"types": "./dist/utils/index.d.ts",
|
|
176
|
+
"bun": "./dist/utils/index.js",
|
|
177
|
+
"node": "./dist/node/utils/index.mjs",
|
|
178
|
+
"browser": "./dist/browser/utils/index.js",
|
|
179
|
+
"default": "./dist/utils/index.js"
|
|
180
|
+
}
|
|
31
181
|
},
|
|
32
182
|
"scripts": {
|
|
33
183
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -227,9 +377,9 @@
|
|
|
227
377
|
},
|
|
228
378
|
"dependencies": {
|
|
229
379
|
"@apollo/client": "^4.1.4",
|
|
230
|
-
"@contractspec/lib.contracts": "1.
|
|
231
|
-
"@contractspec/lib.design-system": "1.
|
|
232
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
380
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
381
|
+
"@contractspec/lib.design-system": "1.60.0",
|
|
382
|
+
"@contractspec/lib.ui-kit-web": "1.60.0",
|
|
233
383
|
"@tanstack/react-query": "^5.90.16",
|
|
234
384
|
"framer-motion": "^12.33.0",
|
|
235
385
|
"lucide-react": "^0.563.0",
|
|
@@ -237,12 +387,12 @@
|
|
|
237
387
|
"react-dom": "19.2.4"
|
|
238
388
|
},
|
|
239
389
|
"devDependencies": {
|
|
240
|
-
"@contractspec/tool.typescript": "1.
|
|
390
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
241
391
|
"@types/react": "^19.2.13",
|
|
242
392
|
"@types/react-dom": "^19.2.2",
|
|
243
393
|
"eslint": "^9.39.2",
|
|
244
394
|
"typescript": "^5.9.3",
|
|
245
|
-
"@contractspec/tool.bun": "1.
|
|
395
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
246
396
|
},
|
|
247
397
|
"types": "./dist/index.d.ts"
|
|
248
398
|
}
|