@lumir-company/editor 0.4.16 → 0.4.17
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 +15 -0
- package/dist/index.d.mts +24 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +1491 -319
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1541 -355
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +95 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1478,6 +1478,21 @@ const url = await uploader(imageFile);
|
|
|
1478
1478
|
|
|
1479
1479
|
## 변경 로그
|
|
1480
1480
|
|
|
1481
|
+
### v0.4.17
|
|
1482
|
+
|
|
1483
|
+
- **표 행 높이(세로) 리사이즈**
|
|
1484
|
+
- 행 경계 hover → 드래그로 행 높이 조절(가로 열 리사이즈와 대칭). 드래그 중 셀 높이가 마우스를 따라 실시간 반영
|
|
1485
|
+
- 높이는 셀 `rowHeight` attr로 저장·라운드트립. 행/열 추가·구조 편집 시에도 보존
|
|
1486
|
+
- **표 블록 정렬(좌/가운데/우)**
|
|
1487
|
+
- 상단 포매팅 툴바 + 블록 드래그핸들 메뉴에서 표 전체를 에디터 영역 기준 좌/가운데/우 정렬
|
|
1488
|
+
- **표 하단 여백 축소**: 표 아래 불필요한 예약 공백(약 16px) 제거(핸들 여백은 유지)
|
|
1489
|
+
- **2단 컬럼(다단) 레이아웃** *(신규)*
|
|
1490
|
+
- 슬래시 메뉴 `/2단 컬럼`으로 좌우 2단 삽입, 각 단에 일반 블록 자유 배치·편집
|
|
1491
|
+
- **블록 DnD**: 블록을 다른 블록의 좌/우 가장자리로 끌어다 놓으면 2단 컬럼 생성(노션식, 세로 드롭 인디케이터)
|
|
1492
|
+
- 빈 컬럼/1단 columnList 자동 정리 등 문서 불변식 보호
|
|
1493
|
+
- 공식 `@blocknote/xl-multi-column`(AGPL) 대신 MIT 안전 자체 구현
|
|
1494
|
+
- *제한(후속 예정)*: 컬럼 안↔밖 DnD/3단 추가, 컬럼 너비 리사이즈, 다중 블록 드래그
|
|
1495
|
+
|
|
1481
1496
|
### v0.4.16
|
|
1482
1497
|
|
|
1483
1498
|
- **인라인 글자 크기 (Font Size)**
|
package/dist/index.d.mts
CHANGED
|
@@ -431,6 +431,30 @@ declare const schema: BlockNoteSchema<_blocknote_core.BlockSchemaFromSpecs<{
|
|
|
431
431
|
readonly content: "none";
|
|
432
432
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
433
433
|
};
|
|
434
|
+
columnList: {
|
|
435
|
+
config: {
|
|
436
|
+
type: "columnList";
|
|
437
|
+
content: "none";
|
|
438
|
+
propSchema: {};
|
|
439
|
+
};
|
|
440
|
+
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
441
|
+
type: "columnList";
|
|
442
|
+
content: "none";
|
|
443
|
+
propSchema: {};
|
|
444
|
+
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
445
|
+
};
|
|
446
|
+
column: {
|
|
447
|
+
config: {
|
|
448
|
+
type: "column";
|
|
449
|
+
content: "none";
|
|
450
|
+
propSchema: {};
|
|
451
|
+
};
|
|
452
|
+
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
453
|
+
type: "column";
|
|
454
|
+
content: "none";
|
|
455
|
+
propSchema: {};
|
|
456
|
+
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
457
|
+
};
|
|
434
458
|
paragraph: {
|
|
435
459
|
config: {
|
|
436
460
|
type: "paragraph";
|
package/dist/index.d.ts
CHANGED
|
@@ -431,6 +431,30 @@ declare const schema: BlockNoteSchema<_blocknote_core.BlockSchemaFromSpecs<{
|
|
|
431
431
|
readonly content: "none";
|
|
432
432
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
433
433
|
};
|
|
434
|
+
columnList: {
|
|
435
|
+
config: {
|
|
436
|
+
type: "columnList";
|
|
437
|
+
content: "none";
|
|
438
|
+
propSchema: {};
|
|
439
|
+
};
|
|
440
|
+
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
441
|
+
type: "columnList";
|
|
442
|
+
content: "none";
|
|
443
|
+
propSchema: {};
|
|
444
|
+
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
445
|
+
};
|
|
446
|
+
column: {
|
|
447
|
+
config: {
|
|
448
|
+
type: "column";
|
|
449
|
+
content: "none";
|
|
450
|
+
propSchema: {};
|
|
451
|
+
};
|
|
452
|
+
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
453
|
+
type: "column";
|
|
454
|
+
content: "none";
|
|
455
|
+
propSchema: {};
|
|
456
|
+
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
457
|
+
};
|
|
434
458
|
paragraph: {
|
|
435
459
|
config: {
|
|
436
460
|
type: "paragraph";
|