@trycourier/react-designer 0.0.0-canary-20250611183605 → 0.0.0-canary-20250702160803
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/README.md +2 -2
- package/dist/components/extensions/Blockquote/Blockquote.test.d.ts +1 -0
- package/dist/components/extensions/Button/Button.test.d.ts +1 -0
- package/dist/components/extensions/ButtonRow/ButtonRow.test.d.ts +1 -0
- package/dist/components/extensions/Divider/Divider.test.d.ts +1 -0
- package/dist/components/extensions/DragPlaceholder/DragPlaceholder.test.d.ts +1 -0
- package/dist/components/extensions/FileHandler/FileHandler.test.d.ts +1 -0
- package/dist/components/extensions/Heading/Heading.test.d.ts +1 -0
- package/dist/components/extensions/Image/Image.test.d.ts +1 -0
- package/dist/components/extensions/ImageBlock/ImageBlock.test.d.ts +1 -0
- package/dist/components/extensions/Link/Link.test.d.ts +1 -0
- package/dist/components/extensions/Paragraph/Paragraph.test.d.ts +1 -0
- package/dist/components/extensions/Selection/Selection.test.d.ts +1 -0
- package/dist/components/extensions/TextBlock/TextBlock.test.d.ts +1 -0
- package/dist/components/extensions/UniqueId/UniqueId.test.d.ts +1 -0
- package/dist/components/extensions/Variable/Variable.test.d.ts +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -476,13 +476,13 @@ This will:
|
|
|
476
476
|
|
|
477
477
|
To see all available canary builds:
|
|
478
478
|
```sh
|
|
479
|
-
npm dist-tag ls @trycourier/
|
|
479
|
+
npm dist-tag ls @trycourier/courier-designer
|
|
480
480
|
```
|
|
481
481
|
|
|
482
482
|
To install a specific canary build:
|
|
483
483
|
```sh
|
|
484
484
|
# Example for a specific canary build
|
|
485
|
-
npm install @trycourier/
|
|
485
|
+
npm install @trycourier/courier-designer@canary-1718392847
|
|
486
486
|
```
|
|
487
487
|
|
|
488
488
|
### Manual publishing
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "@testing-library/jest-dom/vitest";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trycourier/react-designer",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20250702160803",
|
|
4
4
|
"description": "React-based rich text designer component",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -128,10 +128,10 @@
|
|
|
128
128
|
],
|
|
129
129
|
"repository": {
|
|
130
130
|
"type": "git",
|
|
131
|
-
"url": "https://github.com/trycourier/
|
|
131
|
+
"url": "https://github.com/trycourier/courier-designer.git"
|
|
132
132
|
},
|
|
133
133
|
"bugs": {
|
|
134
|
-
"url": "https://github.com/trycourier/
|
|
134
|
+
"url": "https://github.com/trycourier/courier-designer/issues"
|
|
135
135
|
},
|
|
136
136
|
"scripts": {
|
|
137
137
|
"build": "tsc && node build.js",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
140
140
|
"test": "vitest run",
|
|
141
141
|
"test:watch": "vitest",
|
|
142
|
-
"test:e2e": "playwright test --workers=
|
|
142
|
+
"test:e2e": "playwright test --workers=4",
|
|
143
143
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
144
144
|
"analyze": "node build.js --analyze",
|
|
145
145
|
"release": "node scripts/publish.js",
|