@gendive/slide 0.1.2 → 0.1.4
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/devdive-slide.cjs.js +81 -81
- package/dist/devdive-slide.cjs.js.map +1 -1
- package/dist/devdive-slide.es.js +2989 -2974
- package/dist/devdive-slide.es.js.map +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -92,8 +92,12 @@ export interface Slide {
|
|
|
92
92
|
export type EditorMode = 'select' | 'text' | 'shape';
|
|
93
93
|
/**
|
|
94
94
|
* @description 사용 가능한 폰트 목록
|
|
95
|
+
* @Todo vibecode - 맑은 고딕을 기본 폰트로 설정 (PPTX 호환성)
|
|
95
96
|
*/
|
|
96
97
|
export declare const AVAILABLE_FONTS: readonly [{
|
|
98
|
+
readonly name: "맑은 고딕";
|
|
99
|
+
readonly value: "Malgun Gothic";
|
|
100
|
+
}, {
|
|
97
101
|
readonly name: "Noto Sans KR";
|
|
98
102
|
readonly value: "Noto Sans KR";
|
|
99
103
|
}, {
|