@droplinked_inc/editor-ui 0.3.0 → 0.3.1
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/dist/index.css +14 -0
- package/package.json +7 -4
package/dist/index.css
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @droplinked_inc/editor-ui styles
|
|
3
|
+
*
|
|
4
|
+
* Placeholder stylesheet for editor UI components.
|
|
5
|
+
* Currently minimal - component-specific styles are handled via
|
|
6
|
+
* Tailwind classes and inline styles in the consuming application.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* Reset for editor container */
|
|
10
|
+
.droplinked-editor-root *,
|
|
11
|
+
.droplinked-editor-root *::before,
|
|
12
|
+
.droplinked-editor-root *::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@droplinked_inc/editor-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Renderer + image-upload UI for the @droplinked_inc visual editor. Initial rebuild port of the page-level renderer from the hostile droplinked-editor-configs@1.9.19. Most surface area is intentionally stubbed in this 0.1.0 — see README for the porting plan.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"sideEffects":
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"./dist/index.css"
|
|
9
|
+
],
|
|
8
10
|
"main": "./dist/index.js",
|
|
9
11
|
"types": "./dist/index.d.ts",
|
|
10
12
|
"exports": {
|
|
11
13
|
".": {
|
|
12
14
|
"types": "./dist/index.d.ts",
|
|
13
15
|
"import": "./dist/index.js"
|
|
14
|
-
}
|
|
16
|
+
},
|
|
17
|
+
"./dist/index.css": "./dist/index.css"
|
|
15
18
|
},
|
|
16
19
|
"files": [
|
|
17
20
|
"dist",
|
|
@@ -53,7 +56,7 @@
|
|
|
53
56
|
"node": ">=22.0.0"
|
|
54
57
|
},
|
|
55
58
|
"scripts": {
|
|
56
|
-
"build": "tsc -p tsconfig.json",
|
|
59
|
+
"build": "tsc -p tsconfig.json && cp src/index.css dist/index.css",
|
|
57
60
|
"test": "jest",
|
|
58
61
|
"test:coverage": "jest --coverage",
|
|
59
62
|
"lint": "eslint src",
|