@lumir-company/editor 0.4.21 → 0.4.22
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 +9 -0
- package/dist/index.d.mts +21 -15
- package/dist/index.d.ts +21 -15
- package/dist/index.js +852 -661
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +530 -346
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +59 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -559,6 +559,65 @@
|
|
|
559
559
|
overflow-y: auto;
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
+
/* Font Size 1px Stepper (글자 크기 −/+ + 직접 입력) — 두 드롭다운(FormattingToolbar/FloatingMenu) 공용 */
|
|
563
|
+
.lumir-fs-stepper {
|
|
564
|
+
display: flex;
|
|
565
|
+
align-items: center;
|
|
566
|
+
justify-content: center;
|
|
567
|
+
gap: 4px;
|
|
568
|
+
padding: 6px 8px;
|
|
569
|
+
border-bottom: 1px solid #e5e7eb;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.lumir-fs-stepper-btn {
|
|
573
|
+
width: 24px;
|
|
574
|
+
height: 24px;
|
|
575
|
+
display: flex;
|
|
576
|
+
align-items: center;
|
|
577
|
+
justify-content: center;
|
|
578
|
+
border: 1px solid #d1d5db;
|
|
579
|
+
border-radius: 4px;
|
|
580
|
+
background: #fff;
|
|
581
|
+
color: #374151;
|
|
582
|
+
cursor: pointer;
|
|
583
|
+
font-size: 14px;
|
|
584
|
+
line-height: 1;
|
|
585
|
+
flex-shrink: 0;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.lumir-fs-stepper-btn:hover:not(:disabled) {
|
|
589
|
+
background: #f3f4f6;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.lumir-fs-stepper-btn:disabled {
|
|
593
|
+
opacity: 0.4;
|
|
594
|
+
cursor: default;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.lumir-fs-stepper-input {
|
|
598
|
+
width: 40px;
|
|
599
|
+
text-align: center;
|
|
600
|
+
border: 1px solid #d1d5db;
|
|
601
|
+
border-radius: 4px;
|
|
602
|
+
padding: 3px 2px;
|
|
603
|
+
font-size: 13px;
|
|
604
|
+
color: #111827;
|
|
605
|
+
background: #fff;
|
|
606
|
+
-moz-appearance: textfield;
|
|
607
|
+
appearance: textfield;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.lumir-fs-stepper-input:focus {
|
|
611
|
+
outline: none;
|
|
612
|
+
border-color: #3b82f6;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.lumir-fs-stepper-input::-webkit-outer-spin-button,
|
|
616
|
+
.lumir-fs-stepper-input::-webkit-inner-spin-button {
|
|
617
|
+
-webkit-appearance: none;
|
|
618
|
+
margin: 0;
|
|
619
|
+
}
|
|
620
|
+
|
|
562
621
|
/* Block Type Dropdown Button */
|
|
563
622
|
.lumir-block-type-btn {
|
|
564
623
|
min-width: 110px;
|
package/package.json
CHANGED