@capyx/components-library 0.0.15 → 0.0.16

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.
@@ -0,0 +1,18 @@
1
+ .ql-rich-text-wrapper {
2
+ display: flex;
3
+ flex-direction: column;
4
+ min-height: 0;
5
+ }
6
+
7
+ /* Override Quill snow's height:100% so the container grows with content
8
+ instead of collapsing when no ancestor has a fixed height.
9
+ Three-class specificity (0,3,0) beats Quill's own .ql-container.ql-snow (0,2,0). */
10
+ .ql-rich-text-wrapper .ql-container.ql-snow {
11
+ height: auto;
12
+ }
13
+
14
+ /* The editor is the scrollable unit; give it a sensible minimum. */
15
+ .ql-rich-text-wrapper .ql-editor {
16
+ overflow-y: auto;
17
+ min-height: 150px;
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capyx/components-library",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Shared React component library for Capyx applications",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -37,7 +37,8 @@
37
37
  "lib": "lib"
38
38
  },
39
39
  "scripts": {
40
- "build": "tsc && npm run build:cjs",
40
+ "build": "tsc && npm run build:css && npm run build:cjs",
41
+ "build:css": "node scripts/copy-css.js",
41
42
  "build:cjs": "tsc --module commonjs --outDir dist-cjs && node scripts/rename-cjs.js",
42
43
  "prepublishOnly": "npm run build",
43
44
  "lint": "biome lint .",