@gendive/slide 0.1.1 → 0.1.3
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 +87 -87
- package/dist/devdive-slide.cjs.js.map +1 -1
- package/dist/devdive-slide.es.js +2975 -2959
- package/dist/devdive-slide.es.js.map +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +10 -9
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
|
}, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gendive/slide",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "DevDive PPTX Slide Editor - React component library for creating and editing presentations",
|
|
@@ -31,6 +31,14 @@
|
|
|
31
31
|
"sideEffects": [
|
|
32
32
|
"**/*.css"
|
|
33
33
|
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"build": "tsc -b && vite build",
|
|
37
|
+
"build:lib": "vite build",
|
|
38
|
+
"lint": "eslint .",
|
|
39
|
+
"preview": "vite preview",
|
|
40
|
+
"prepublishOnly": "pnpm build:lib"
|
|
41
|
+
},
|
|
34
42
|
"peerDependencies": {
|
|
35
43
|
"@mantine/core": "^7.0.0 || ^8.0.0",
|
|
36
44
|
"@mantine/hooks": "^7.0.0 || ^8.0.0",
|
|
@@ -67,12 +75,5 @@
|
|
|
67
75
|
"typescript-eslint": "^8.18.2",
|
|
68
76
|
"vite": "^6.0.5",
|
|
69
77
|
"vite-plugin-dts": "^4.5.4"
|
|
70
|
-
},
|
|
71
|
-
"scripts": {
|
|
72
|
-
"dev": "vite",
|
|
73
|
-
"build": "tsc -b && vite build",
|
|
74
|
-
"build:lib": "vite build",
|
|
75
|
-
"lint": "eslint .",
|
|
76
|
-
"preview": "vite preview"
|
|
77
78
|
}
|
|
78
|
-
}
|
|
79
|
+
}
|