@vishu1301/script-writing 0.4.8 → 0.5.0
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/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -348,9 +348,13 @@ function ScreenplayEditorView({
|
|
|
348
348
|
/* @__PURE__ */ jsx("div", { className: "flex flex-col gap-12 w-full items-center pb-24", children: /* @__PURE__ */ jsx(
|
|
349
349
|
"div",
|
|
350
350
|
{
|
|
351
|
-
className: "relative bg-[#fdfdfc] shadow-2xl shadow-zinc-300/60
|
|
351
|
+
className: "relative bg-[#fdfdfc] shadow-2xl shadow-zinc-300/60 border border-zinc-100 rounded-sm md:rounded-md pl-[1.5in] py-[1in] pr-[1in] flex flex-col w-[210mm] min-h-[297mm] shrink-0",
|
|
352
352
|
style: {
|
|
353
|
-
fontFamily: "
|
|
353
|
+
fontFamily: "'Courier Prime', 'Courier New', Courier, monospace",
|
|
354
|
+
paddingLeft: "1.5in",
|
|
355
|
+
paddingRight: "1in",
|
|
356
|
+
paddingTop: "1in",
|
|
357
|
+
paddingBottom: "1in"
|
|
354
358
|
},
|
|
355
359
|
children: blocks.map((block) => {
|
|
356
360
|
var _a, _b;
|
|
@@ -388,6 +392,9 @@ function ScreenplayEditorView({
|
|
|
388
392
|
"aria-label": "Scene Type",
|
|
389
393
|
value: (_a = block.sceneType) != null ? _a : "INT.",
|
|
390
394
|
onChange: (e) => handleSceneTypeChange(block.id, e.target.value),
|
|
395
|
+
style: {
|
|
396
|
+
appearance: "none"
|
|
397
|
+
},
|
|
391
398
|
children: [
|
|
392
399
|
/* @__PURE__ */ jsx("option", { children: "INT." }),
|
|
393
400
|
/* @__PURE__ */ jsx("option", { children: "EXT." }),
|
|
@@ -425,6 +432,9 @@ function ScreenplayEditorView({
|
|
|
425
432
|
className: "rounded-md text-zinc-800 font-bold px-1.5 py-1 appearance-none bg-transparent hover:bg-zinc-200/50 outline-none cursor-pointer transition-colors",
|
|
426
433
|
"aria-label": "Time of Day",
|
|
427
434
|
value: (_b = block.timeOfDay) != null ? _b : "DAY",
|
|
435
|
+
style: {
|
|
436
|
+
appearance: "none"
|
|
437
|
+
},
|
|
428
438
|
onChange: (e) => handleTimeOfDayChange(block.id, e.target.value),
|
|
429
439
|
children: timeOfDayOptions.map((t) => /* @__PURE__ */ jsx("option", { children: t }, t))
|
|
430
440
|
}
|