@contractspec/lib.example-shared-ui 1.10.1 → 1.11.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$colon$bundle.log +4 -4
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +18 -0
- package/dist/index.mjs +2 -2
- package/package.json +8 -8
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
$ tsdown
|
|
2
|
-
[34mℹ[39m tsdown [2mv0.
|
|
2
|
+
[34mℹ[39m tsdown [2mv0.20.3[22m powered by rolldown [2mv1.0.0-rc.3[22m
|
|
3
3
|
[34mℹ[39m entry: [34msrc/index.ts[39m
|
|
4
4
|
[34mℹ[39m tsconfig: [34mtsconfig.json[39m
|
|
5
5
|
[34mℹ[39m Build start
|
|
6
6
|
[34mℹ[39m Cleaning 1 files
|
|
7
|
-
[34mℹ[39m [2mdist/[22m[1mindex.mjs[22m [2m95.
|
|
8
|
-
[34mℹ[39m 1 files, total: 95.
|
|
9
|
-
[32m✔[39m Build complete in [
|
|
7
|
+
[34mℹ[39m [2mdist/[22m[1mindex.mjs[22m [2m95.80 kB[22m [2m│ gzip: 21.10 kB[22m
|
|
8
|
+
[34mℹ[39m 1 files, total: 95.80 kB
|
|
9
|
+
[32m✔[39m Build complete in [32m129ms[39m
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
$ bun build:types && bun build:bundle
|
|
2
2
|
$ tsc --noEmit
|
|
3
3
|
$ tsdown
|
|
4
|
-
[34mℹ[39m tsdown [2mv0.
|
|
4
|
+
[34mℹ[39m tsdown [2mv0.20.3[22m powered by rolldown [2mv1.0.0-rc.3[22m
|
|
5
5
|
[34mℹ[39m entry: [34msrc/index.ts[39m
|
|
6
6
|
[34mℹ[39m tsconfig: [34mtsconfig.json[39m
|
|
7
7
|
[34mℹ[39m Build start
|
|
8
8
|
[34mℹ[39m Cleaning 1 files
|
|
9
|
-
[34mℹ[39m [2mdist/[22m[1mindex.mjs[22m [2m95.
|
|
10
|
-
[34mℹ[39m 1 files, total: 95.
|
|
11
|
-
[32m✔[39m Build complete in [
|
|
9
|
+
[34mℹ[39m [2mdist/[22m[1mindex.mjs[22m [2m95.80 kB[22m [2m│ gzip: 21.10 kB[22m
|
|
10
|
+
[34mℹ[39m 1 files, total: 95.80 kB
|
|
11
|
+
[32m✔[39m Build complete in [32m177ms[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @contractspec/lib.example-shared-ui
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 11a5a05: feat: improve product intent
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8ecf3c1]
|
|
12
|
+
- Updated dependencies [47c48c2]
|
|
13
|
+
- Updated dependencies [a119963]
|
|
14
|
+
- Updated dependencies [4651e06]
|
|
15
|
+
- Updated dependencies [ad9d10a]
|
|
16
|
+
- Updated dependencies [11a5a05]
|
|
17
|
+
- @contractspec/lib.contracts@1.57.0
|
|
18
|
+
- @contractspec/lib.design-system@1.57.0
|
|
19
|
+
- @contractspec/lib.ui-kit-web@1.57.0
|
|
20
|
+
|
|
3
21
|
## 1.10.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.mjs
CHANGED
|
@@ -2260,8 +2260,8 @@ function useBehaviorTracking(templateId) {
|
|
|
2260
2260
|
const count = templateCounts.get(event.templateId) ?? 0;
|
|
2261
2261
|
templateCounts.set(event.templateId, count + 1);
|
|
2262
2262
|
}
|
|
2263
|
-
const mostUsedTemplates = Array.from(templateCounts.entries()).map(([templateId
|
|
2264
|
-
templateId
|
|
2263
|
+
const mostUsedTemplates = Array.from(templateCounts.entries()).map(([templateId, count]) => ({
|
|
2264
|
+
templateId,
|
|
2265
2265
|
count
|
|
2266
2266
|
})).sort((a, b) => b.count - a.count).slice(0, 3);
|
|
2267
2267
|
const modeCounts = /* @__PURE__ */ new Map();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.example-shared-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts"
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"registry": "https://registry.npmjs.org/"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@apollo/client": "^4.
|
|
27
|
-
"@contractspec/lib.contracts": "1.
|
|
28
|
-
"@contractspec/lib.design-system": "1.
|
|
29
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
26
|
+
"@apollo/client": "^4.1.4",
|
|
27
|
+
"@contractspec/lib.contracts": "1.57.0",
|
|
28
|
+
"@contractspec/lib.design-system": "1.57.0",
|
|
29
|
+
"@contractspec/lib.ui-kit-web": "1.57.0",
|
|
30
30
|
"@tanstack/react-query": "^5.90.16",
|
|
31
|
-
"framer-motion": "^12.
|
|
31
|
+
"framer-motion": "^12.33.0",
|
|
32
32
|
"lucide-react": "^0.563.0",
|
|
33
33
|
"react": "19.2.4",
|
|
34
34
|
"react-dom": "19.2.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@contractspec/tool.typescript": "1.
|
|
38
|
-
"@types/react": "^19.2.
|
|
37
|
+
"@contractspec/tool.typescript": "1.57.0",
|
|
38
|
+
"@types/react": "^19.2.13",
|
|
39
39
|
"@types/react-dom": "^19.2.2",
|
|
40
40
|
"eslint": "^9.39.2",
|
|
41
41
|
"typescript": "^5.9.3"
|