@contractspec/example.crm-pipeline 3.7.10 → 3.7.12
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 +36 -0
- package/dist/ui/renderers/pipeline.markdown.d.ts +1 -1
- package/dist/ui/renderers/pipeline.renderer.d.ts +1 -1
- package/package.json +14 -13
- package/src/ui/renderers/pipeline.markdown.ts +1 -1
- package/src/ui/renderers/pipeline.renderer.tsx +1 -1
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=45 noBundle=false
|
|
6
|
-
Bundled 45 modules in
|
|
6
|
+
Bundled 45 modules in 157ms
|
|
7
7
|
|
|
8
8
|
./crm-pipeline.feature.js 2.54 KB (entry point)
|
|
9
9
|
seeders/index.js 1.00 KB (entry point)
|
|
@@ -52,7 +52,7 @@ Bundled 45 modules in 38ms
|
|
|
52
52
|
docs/crm-pipeline.docblock.js 4.48 KB (entry point)
|
|
53
53
|
|
|
54
54
|
[contractspec-bun-build] transpile target=node root=src entries=45 noBundle=false
|
|
55
|
-
Bundled 45 modules in
|
|
55
|
+
Bundled 45 modules in 99ms
|
|
56
56
|
|
|
57
57
|
./crm-pipeline.feature.js 2.54 KB (entry point)
|
|
58
58
|
seeders/index.js 0.99 KB (entry point)
|
|
@@ -101,7 +101,7 @@ Bundled 45 modules in 56ms
|
|
|
101
101
|
docs/crm-pipeline.docblock.js 4.46 KB (entry point)
|
|
102
102
|
|
|
103
103
|
[contractspec-bun-build] transpile target=browser root=src entries=45 noBundle=false
|
|
104
|
-
Bundled 45 modules in
|
|
104
|
+
Bundled 45 modules in 119ms
|
|
105
105
|
|
|
106
106
|
./crm-pipeline.feature.js 2.54 KB (entry point)
|
|
107
107
|
seeders/index.js 0.99 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @contractspec/example.crm-pipeline
|
|
2
2
|
|
|
3
|
+
## 3.7.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [81256ea]
|
|
8
|
+
- Updated dependencies [2619dd8]
|
|
9
|
+
- Updated dependencies [6de2f1c]
|
|
10
|
+
- Updated dependencies [81256ea]
|
|
11
|
+
- Updated dependencies [a4489bb]
|
|
12
|
+
- Updated dependencies [9cb304e]
|
|
13
|
+
- @contractspec/lib.contracts-spec@5.0.0
|
|
14
|
+
- @contractspec/lib.presentation-runtime-core@3.9.0
|
|
15
|
+
- @contractspec/lib.schema@3.7.10
|
|
16
|
+
- @contractspec/lib.design-system@3.8.5
|
|
17
|
+
- @contractspec/lib.example-shared-ui@6.0.12
|
|
18
|
+
- @contractspec/lib.identity-rbac@3.7.12
|
|
19
|
+
- @contractspec/lib.ui-kit-web@3.9.4
|
|
20
|
+
- @contractspec/module.audit-trail@3.7.12
|
|
21
|
+
- @contractspec/module.notifications@3.7.12
|
|
22
|
+
|
|
23
|
+
## 3.7.11
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- fix: release
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @contractspec/lib.example-shared-ui@6.0.11
|
|
30
|
+
- @contractspec/module.notifications@3.7.11
|
|
31
|
+
- @contractspec/lib.runtime-sandbox@2.7.10
|
|
32
|
+
- @contractspec/lib.contracts-spec@4.1.3
|
|
33
|
+
- @contractspec/module.audit-trail@3.7.11
|
|
34
|
+
- @contractspec/lib.design-system@3.8.4
|
|
35
|
+
- @contractspec/lib.identity-rbac@3.7.11
|
|
36
|
+
- @contractspec/lib.ui-kit-web@3.9.3
|
|
37
|
+
- @contractspec/lib.schema@3.7.9
|
|
38
|
+
|
|
3
39
|
## 3.7.10
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Imports handlers from the hooks module to ensure correct build order.
|
|
5
5
|
*/
|
|
6
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
6
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
7
7
|
/**
|
|
8
8
|
* Markdown renderer for CRM Pipeline Kanban view (crm-pipeline.deal.pipeline)
|
|
9
9
|
* Only handles PipelineKanbanView component
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* Renders the CRM pipeline board component.
|
|
5
5
|
* Data is fetched via the CrmPipelineBoard component's internal hooks.
|
|
6
6
|
*/
|
|
7
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
7
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
export declare const crmPipelineReactRenderer: PresentationRenderer<React.ReactElement>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.crm-pipeline",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.12",
|
|
4
4
|
"description": "CRM Pipeline - Contacts, Companies, Deals, Tasks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -338,24 +338,25 @@
|
|
|
338
338
|
"typecheck": "tsc --noEmit"
|
|
339
339
|
},
|
|
340
340
|
"dependencies": {
|
|
341
|
-
"@contractspec/lib.contracts-spec": "
|
|
342
|
-
"@contractspec/lib.design-system": "3.8.
|
|
343
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
344
|
-
"@contractspec/lib.identity-rbac": "3.7.
|
|
345
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
346
|
-
"@contractspec/lib.schema": "3.7.
|
|
347
|
-
"@contractspec/lib.ui-kit-web": "3.9.
|
|
348
|
-
"@contractspec/module.audit-trail": "3.7.
|
|
349
|
-
"@contractspec/module.notifications": "3.7.
|
|
341
|
+
"@contractspec/lib.contracts-spec": "5.0.0",
|
|
342
|
+
"@contractspec/lib.design-system": "3.8.5",
|
|
343
|
+
"@contractspec/lib.example-shared-ui": "6.0.12",
|
|
344
|
+
"@contractspec/lib.identity-rbac": "3.7.12",
|
|
345
|
+
"@contractspec/lib.runtime-sandbox": "2.7.10",
|
|
346
|
+
"@contractspec/lib.schema": "3.7.10",
|
|
347
|
+
"@contractspec/lib.ui-kit-web": "3.9.4",
|
|
348
|
+
"@contractspec/module.audit-trail": "3.7.12",
|
|
349
|
+
"@contractspec/module.notifications": "3.7.12",
|
|
350
350
|
"react": "19.2.0",
|
|
351
|
-
"react-dom": "19.2.0"
|
|
351
|
+
"react-dom": "19.2.0",
|
|
352
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.0"
|
|
352
353
|
},
|
|
353
354
|
"devDependencies": {
|
|
354
|
-
"@contractspec/tool.typescript": "3.7.
|
|
355
|
+
"@contractspec/tool.typescript": "3.7.9",
|
|
355
356
|
"typescript": "^5.9.3",
|
|
356
357
|
"@types/react": "^19.2.14",
|
|
357
358
|
"@types/react-dom": "^19.2.2",
|
|
358
|
-
"@contractspec/tool.bun": "3.7.
|
|
359
|
+
"@contractspec/tool.bun": "3.7.9",
|
|
359
360
|
"happy-dom": "^20.8.4"
|
|
360
361
|
},
|
|
361
362
|
"publishConfig": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Imports handlers from the hooks module to ensure correct build order.
|
|
5
5
|
*/
|
|
6
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
6
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
7
7
|
import {
|
|
8
8
|
mockGetPipelineStagesHandler,
|
|
9
9
|
mockListDealsHandler,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Data is fetched via the CrmPipelineBoard component's internal hooks.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
8
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
import { CrmPipelineBoard } from '../CrmPipelineBoard';
|
|
11
11
|
import { useDealList } from '../hooks/useDealList';
|