@vishu1301/script-writing 0.4.8 → 0.4.9
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.css +1086 -0
- package/dist/index.css.map +1 -0
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -373,9 +373,13 @@ function ScreenplayEditorView({
|
|
|
373
373
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-12 w-full items-center pb-24", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
374
374
|
"div",
|
|
375
375
|
{
|
|
376
|
-
className: "relative bg-[#fdfdfc] shadow-2xl shadow-zinc-300/60
|
|
376
|
+
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",
|
|
377
377
|
style: {
|
|
378
|
-
fontFamily: "var(--font-courier-prime, 'Courier New', Courier, monospace)"
|
|
378
|
+
fontFamily: "var(--font-courier-prime, 'Courier Prime', 'Courier New', Courier, monospace)",
|
|
379
|
+
paddingLeft: "1.5in",
|
|
380
|
+
paddingRight: "1in",
|
|
381
|
+
paddingTop: "1in",
|
|
382
|
+
paddingBottom: "1in"
|
|
379
383
|
},
|
|
380
384
|
children: blocks.map((block) => {
|
|
381
385
|
var _a, _b;
|
|
@@ -413,6 +417,9 @@ function ScreenplayEditorView({
|
|
|
413
417
|
"aria-label": "Scene Type",
|
|
414
418
|
value: (_a = block.sceneType) != null ? _a : "INT.",
|
|
415
419
|
onChange: (e) => handleSceneTypeChange(block.id, e.target.value),
|
|
420
|
+
style: {
|
|
421
|
+
appearance: "none"
|
|
422
|
+
},
|
|
416
423
|
children: [
|
|
417
424
|
/* @__PURE__ */ jsxRuntime.jsx("option", { children: "INT." }),
|
|
418
425
|
/* @__PURE__ */ jsxRuntime.jsx("option", { children: "EXT." }),
|
|
@@ -450,6 +457,9 @@ function ScreenplayEditorView({
|
|
|
450
457
|
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",
|
|
451
458
|
"aria-label": "Time of Day",
|
|
452
459
|
value: (_b = block.timeOfDay) != null ? _b : "DAY",
|
|
460
|
+
style: {
|
|
461
|
+
appearance: "none"
|
|
462
|
+
},
|
|
453
463
|
onChange: (e) => handleTimeOfDayChange(block.id, e.target.value),
|
|
454
464
|
children: timeOfDayOptions.map((t) => /* @__PURE__ */ jsxRuntime.jsx("option", { children: t }, t))
|
|
455
465
|
}
|