@newtonedev/editor 0.1.10 → 0.1.12
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/Editor.d.ts +1 -1
- package/dist/Editor.d.ts.map +1 -1
- package/dist/components/EditorHeader.d.ts +10 -2
- package/dist/components/EditorHeader.d.ts.map +1 -1
- package/dist/components/PrimaryNav.d.ts +3 -1
- package/dist/components/PrimaryNav.d.ts.map +1 -1
- package/dist/components/Sidebar.d.ts +1 -10
- package/dist/components/Sidebar.d.ts.map +1 -1
- package/dist/components/sections/ColorsSection.d.ts.map +1 -1
- package/dist/hooks/useEditorState.d.ts.map +1 -1
- package/dist/index.cjs +190 -199
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +190 -199
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/sections/ColorsSection.tsx +15 -32
package/dist/index.js
CHANGED
|
@@ -264,11 +264,12 @@ function useEditorState({
|
|
|
264
264
|
const [colorMode, setColorMode] = useState(
|
|
265
265
|
initialState.preview.mode
|
|
266
266
|
);
|
|
267
|
+
const defaultCategoryId = CATEGORIES[0]?.id ?? "colors";
|
|
267
268
|
const [previewView, setPreviewView] = useState(
|
|
268
|
-
initialPreviewView ?? { kind: "
|
|
269
|
+
initialPreviewView ?? { kind: "category", categoryId: defaultCategoryId }
|
|
269
270
|
);
|
|
270
271
|
const [activeSectionId, setActiveSectionId] = useState(
|
|
271
|
-
|
|
272
|
+
(initialPreviewView?.kind === "category" ? initialPreviewView.categoryId : void 0) ?? defaultCategoryId
|
|
272
273
|
);
|
|
273
274
|
const [sidebarSelection, setSidebarSelection] = useState(null);
|
|
274
275
|
const [propOverrides, setPropOverrides] = useState(
|
|
@@ -368,11 +369,10 @@ function useEditorState({
|
|
|
368
369
|
(sectionId) => {
|
|
369
370
|
setActiveSectionId(sectionId);
|
|
370
371
|
const sectionComponents = getComponentsByCategory(sectionId);
|
|
372
|
+
onNavigate?.({ kind: "category", categoryId: sectionId });
|
|
371
373
|
if (sectionComponents.length === 1) {
|
|
372
374
|
const comp = sectionComponents[0];
|
|
373
|
-
|
|
374
|
-
setPreviewView(view);
|
|
375
|
-
onNavigate?.(view);
|
|
375
|
+
setPreviewView({ kind: "component", componentId: comp.id });
|
|
376
376
|
const firstVariantId = comp.variants[0]?.id;
|
|
377
377
|
setSidebarSelection(
|
|
378
378
|
firstVariantId ? { scope: "variant", componentId: comp.id, variantId: firstVariantId } : { scope: "component", componentId: comp.id }
|
|
@@ -381,7 +381,6 @@ function useEditorState({
|
|
|
381
381
|
} else {
|
|
382
382
|
const view = { kind: "category", categoryId: sectionId };
|
|
383
383
|
setPreviewView(view);
|
|
384
|
-
onNavigate?.(view);
|
|
385
384
|
setSidebarSelection(null);
|
|
386
385
|
setPropOverrides({});
|
|
387
386
|
}
|
|
@@ -637,6 +636,94 @@ function EditorShell({
|
|
|
637
636
|
}
|
|
638
637
|
);
|
|
639
638
|
}
|
|
639
|
+
var SIDEBAR_WIDTH2 = 360;
|
|
640
|
+
function Sidebar({
|
|
641
|
+
isDirty,
|
|
642
|
+
onRevert
|
|
643
|
+
}) {
|
|
644
|
+
const tokens = useTokens();
|
|
645
|
+
const borderColor = srgbToHex(tokens.border.srgb);
|
|
646
|
+
const bgColor = srgbToHex(tokens.background.srgb);
|
|
647
|
+
return /* @__PURE__ */ jsxs(
|
|
648
|
+
"div",
|
|
649
|
+
{
|
|
650
|
+
style: {
|
|
651
|
+
width: SIDEBAR_WIDTH2,
|
|
652
|
+
flexShrink: 0,
|
|
653
|
+
display: "flex",
|
|
654
|
+
flexDirection: "column",
|
|
655
|
+
height: "100vh",
|
|
656
|
+
borderLeft: `1px solid ${borderColor}`,
|
|
657
|
+
backgroundColor: bgColor
|
|
658
|
+
},
|
|
659
|
+
children: [
|
|
660
|
+
/* @__PURE__ */ jsx(
|
|
661
|
+
"div",
|
|
662
|
+
{
|
|
663
|
+
style: {
|
|
664
|
+
flexShrink: 0,
|
|
665
|
+
padding: "16px 20px",
|
|
666
|
+
borderBottom: `1px solid ${borderColor}`,
|
|
667
|
+
display: "flex",
|
|
668
|
+
alignItems: "center"
|
|
669
|
+
},
|
|
670
|
+
children: /* @__PURE__ */ jsx(
|
|
671
|
+
"span",
|
|
672
|
+
{
|
|
673
|
+
style: {
|
|
674
|
+
fontSize: 16,
|
|
675
|
+
fontWeight: 700,
|
|
676
|
+
color: srgbToHex(tokens.textPrimary.srgb)
|
|
677
|
+
},
|
|
678
|
+
children: "newtone"
|
|
679
|
+
}
|
|
680
|
+
)
|
|
681
|
+
}
|
|
682
|
+
),
|
|
683
|
+
/* @__PURE__ */ jsx(
|
|
684
|
+
"div",
|
|
685
|
+
{
|
|
686
|
+
style: {
|
|
687
|
+
flex: 1,
|
|
688
|
+
overflowY: "auto",
|
|
689
|
+
overflowX: "hidden"
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
),
|
|
693
|
+
/* @__PURE__ */ jsx(
|
|
694
|
+
"div",
|
|
695
|
+
{
|
|
696
|
+
style: {
|
|
697
|
+
flexShrink: 0,
|
|
698
|
+
padding: "12px 20px",
|
|
699
|
+
borderTop: `1px solid ${borderColor}`
|
|
700
|
+
},
|
|
701
|
+
children: /* @__PURE__ */ jsx(
|
|
702
|
+
"button",
|
|
703
|
+
{
|
|
704
|
+
disabled: !isDirty,
|
|
705
|
+
onClick: onRevert,
|
|
706
|
+
"aria-label": "Revert all changes to the last saved version",
|
|
707
|
+
style: {
|
|
708
|
+
width: "100%",
|
|
709
|
+
padding: "8px 16px",
|
|
710
|
+
borderRadius: 6,
|
|
711
|
+
border: `1px solid ${borderColor}`,
|
|
712
|
+
backgroundColor: "transparent",
|
|
713
|
+
color: isDirty ? srgbToHex(tokens.textPrimary.srgb) : srgbToHex(tokens.textSecondary.srgb),
|
|
714
|
+
fontSize: 13,
|
|
715
|
+
cursor: isDirty ? "pointer" : "not-allowed",
|
|
716
|
+
opacity: isDirty ? 1 : 0.5
|
|
717
|
+
},
|
|
718
|
+
children: "Revert Changes"
|
|
719
|
+
}
|
|
720
|
+
)
|
|
721
|
+
}
|
|
722
|
+
)
|
|
723
|
+
]
|
|
724
|
+
}
|
|
725
|
+
);
|
|
726
|
+
}
|
|
640
727
|
function PresetSelector({
|
|
641
728
|
presets,
|
|
642
729
|
activePresetId,
|
|
@@ -1040,118 +1127,6 @@ function PresetSelector({
|
|
|
1040
1127
|
)
|
|
1041
1128
|
] });
|
|
1042
1129
|
}
|
|
1043
|
-
var SIDEBAR_WIDTH2 = 360;
|
|
1044
|
-
function Sidebar({
|
|
1045
|
-
isDirty,
|
|
1046
|
-
onRevert,
|
|
1047
|
-
presets,
|
|
1048
|
-
activePresetId,
|
|
1049
|
-
publishedPresetId,
|
|
1050
|
-
onSwitchPreset,
|
|
1051
|
-
onCreatePreset,
|
|
1052
|
-
onRenamePreset,
|
|
1053
|
-
onDeletePreset,
|
|
1054
|
-
onDuplicatePreset
|
|
1055
|
-
}) {
|
|
1056
|
-
const tokens = useTokens();
|
|
1057
|
-
const borderColor = srgbToHex(tokens.border.srgb);
|
|
1058
|
-
const bgColor = srgbToHex(tokens.background.srgb);
|
|
1059
|
-
return /* @__PURE__ */ jsxs(
|
|
1060
|
-
"div",
|
|
1061
|
-
{
|
|
1062
|
-
style: {
|
|
1063
|
-
width: SIDEBAR_WIDTH2,
|
|
1064
|
-
flexShrink: 0,
|
|
1065
|
-
display: "flex",
|
|
1066
|
-
flexDirection: "column",
|
|
1067
|
-
height: "100vh",
|
|
1068
|
-
borderLeft: `1px solid ${borderColor}`,
|
|
1069
|
-
backgroundColor: bgColor
|
|
1070
|
-
},
|
|
1071
|
-
children: [
|
|
1072
|
-
/* @__PURE__ */ jsxs(
|
|
1073
|
-
"div",
|
|
1074
|
-
{
|
|
1075
|
-
style: {
|
|
1076
|
-
flexShrink: 0,
|
|
1077
|
-
padding: "16px 20px",
|
|
1078
|
-
borderBottom: `1px solid ${borderColor}`,
|
|
1079
|
-
display: "flex",
|
|
1080
|
-
alignItems: "center",
|
|
1081
|
-
justifyContent: "space-between"
|
|
1082
|
-
},
|
|
1083
|
-
children: [
|
|
1084
|
-
/* @__PURE__ */ jsx(
|
|
1085
|
-
"span",
|
|
1086
|
-
{
|
|
1087
|
-
style: {
|
|
1088
|
-
fontSize: 16,
|
|
1089
|
-
fontWeight: 700,
|
|
1090
|
-
color: srgbToHex(tokens.textPrimary.srgb)
|
|
1091
|
-
},
|
|
1092
|
-
children: "newtone"
|
|
1093
|
-
}
|
|
1094
|
-
),
|
|
1095
|
-
/* @__PURE__ */ jsx(
|
|
1096
|
-
PresetSelector,
|
|
1097
|
-
{
|
|
1098
|
-
presets,
|
|
1099
|
-
activePresetId,
|
|
1100
|
-
publishedPresetId,
|
|
1101
|
-
onSwitchPreset,
|
|
1102
|
-
onCreatePreset,
|
|
1103
|
-
onRenamePreset,
|
|
1104
|
-
onDeletePreset,
|
|
1105
|
-
onDuplicatePreset
|
|
1106
|
-
}
|
|
1107
|
-
)
|
|
1108
|
-
]
|
|
1109
|
-
}
|
|
1110
|
-
),
|
|
1111
|
-
/* @__PURE__ */ jsx(
|
|
1112
|
-
"div",
|
|
1113
|
-
{
|
|
1114
|
-
style: {
|
|
1115
|
-
flex: 1,
|
|
1116
|
-
overflowY: "auto",
|
|
1117
|
-
overflowX: "hidden"
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
),
|
|
1121
|
-
/* @__PURE__ */ jsx(
|
|
1122
|
-
"div",
|
|
1123
|
-
{
|
|
1124
|
-
style: {
|
|
1125
|
-
flexShrink: 0,
|
|
1126
|
-
padding: "12px 20px",
|
|
1127
|
-
borderTop: `1px solid ${borderColor}`
|
|
1128
|
-
},
|
|
1129
|
-
children: /* @__PURE__ */ jsx(
|
|
1130
|
-
"button",
|
|
1131
|
-
{
|
|
1132
|
-
disabled: !isDirty,
|
|
1133
|
-
onClick: onRevert,
|
|
1134
|
-
"aria-label": "Revert all changes to the last saved version",
|
|
1135
|
-
style: {
|
|
1136
|
-
width: "100%",
|
|
1137
|
-
padding: "8px 16px",
|
|
1138
|
-
borderRadius: 6,
|
|
1139
|
-
border: `1px solid ${borderColor}`,
|
|
1140
|
-
backgroundColor: "transparent",
|
|
1141
|
-
color: isDirty ? srgbToHex(tokens.textPrimary.srgb) : srgbToHex(tokens.textSecondary.srgb),
|
|
1142
|
-
fontSize: 13,
|
|
1143
|
-
cursor: isDirty ? "pointer" : "not-allowed",
|
|
1144
|
-
opacity: isDirty ? 1 : 0.5
|
|
1145
|
-
},
|
|
1146
|
-
children: "Revert Changes"
|
|
1147
|
-
}
|
|
1148
|
-
)
|
|
1149
|
-
}
|
|
1150
|
-
)
|
|
1151
|
-
]
|
|
1152
|
-
}
|
|
1153
|
-
);
|
|
1154
|
-
}
|
|
1155
1130
|
var STATUS_LABEL = {
|
|
1156
1131
|
saved: "Saved",
|
|
1157
1132
|
saving: "Saving...",
|
|
@@ -1164,7 +1139,15 @@ function EditorHeader({
|
|
|
1164
1139
|
publishing,
|
|
1165
1140
|
onPublish,
|
|
1166
1141
|
onRetry,
|
|
1167
|
-
headerSlots
|
|
1142
|
+
headerSlots,
|
|
1143
|
+
presets,
|
|
1144
|
+
activePresetId,
|
|
1145
|
+
publishedPresetId,
|
|
1146
|
+
onSwitchPreset,
|
|
1147
|
+
onCreatePreset,
|
|
1148
|
+
onRenamePreset,
|
|
1149
|
+
onDeletePreset,
|
|
1150
|
+
onDuplicatePreset
|
|
1168
1151
|
}) {
|
|
1169
1152
|
const tokens = useTokens();
|
|
1170
1153
|
const borderColor = srgbToHex(tokens.border.srgb);
|
|
@@ -1187,7 +1170,22 @@ function EditorHeader({
|
|
|
1187
1170
|
flexShrink: 0
|
|
1188
1171
|
},
|
|
1189
1172
|
children: [
|
|
1190
|
-
/* @__PURE__ */
|
|
1173
|
+
/* @__PURE__ */ jsxs("div", { style: { display: "flex", alignItems: "center", gap: 16 }, children: [
|
|
1174
|
+
headerSlots?.left,
|
|
1175
|
+
/* @__PURE__ */ jsx(
|
|
1176
|
+
PresetSelector,
|
|
1177
|
+
{
|
|
1178
|
+
presets,
|
|
1179
|
+
activePresetId,
|
|
1180
|
+
publishedPresetId,
|
|
1181
|
+
onSwitchPreset,
|
|
1182
|
+
onCreatePreset,
|
|
1183
|
+
onRenamePreset,
|
|
1184
|
+
onDeletePreset,
|
|
1185
|
+
onDuplicatePreset
|
|
1186
|
+
}
|
|
1187
|
+
)
|
|
1188
|
+
] }),
|
|
1191
1189
|
/* @__PURE__ */ jsxs("div", { style: { display: "flex", alignItems: "center", gap: 12 }, children: [
|
|
1192
1190
|
/* @__PURE__ */ jsx(
|
|
1193
1191
|
"span",
|
|
@@ -1219,7 +1217,7 @@ function EditorHeader({
|
|
|
1219
1217
|
);
|
|
1220
1218
|
}
|
|
1221
1219
|
var NAV_WIDTH = 60;
|
|
1222
|
-
function PrimaryNav({ activeSectionId, onSelectSection }) {
|
|
1220
|
+
function PrimaryNav({ activeSectionId, onSelectSection, footer }) {
|
|
1223
1221
|
const tokens = useTokens();
|
|
1224
1222
|
const [hoveredId, setHoveredId] = useState(null);
|
|
1225
1223
|
const bg = srgbToHex(tokens.background.srgb);
|
|
@@ -1227,7 +1225,7 @@ function PrimaryNav({ activeSectionId, onSelectSection }) {
|
|
|
1227
1225
|
const activeBg = srgbToHex(tokens.backgroundInteractive.srgb);
|
|
1228
1226
|
const iconColor = srgbToHex(tokens.textSecondary.srgb);
|
|
1229
1227
|
const activeIconColor = srgbToHex(tokens.textPrimary.srgb);
|
|
1230
|
-
return /* @__PURE__ */
|
|
1228
|
+
return /* @__PURE__ */ jsxs(
|
|
1231
1229
|
"nav",
|
|
1232
1230
|
{
|
|
1233
1231
|
"aria-label": "Section navigation",
|
|
@@ -1242,41 +1240,44 @@ function PrimaryNav({ activeSectionId, onSelectSection }) {
|
|
|
1242
1240
|
backgroundColor: bg,
|
|
1243
1241
|
borderRight: `1px solid ${borderColor}`
|
|
1244
1242
|
},
|
|
1245
|
-
children:
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1243
|
+
children: [
|
|
1244
|
+
CATEGORIES.map((category) => {
|
|
1245
|
+
const isActive = activeSectionId === category.id;
|
|
1246
|
+
const isHovered = hoveredId === category.id;
|
|
1247
|
+
return /* @__PURE__ */ jsx(
|
|
1248
|
+
"button",
|
|
1249
|
+
{
|
|
1250
|
+
onClick: () => onSelectSection(category.id),
|
|
1251
|
+
onMouseEnter: () => setHoveredId(category.id),
|
|
1252
|
+
onMouseLeave: () => setHoveredId(null),
|
|
1253
|
+
title: category.name,
|
|
1254
|
+
"aria-current": isActive ? "page" : void 0,
|
|
1255
|
+
style: {
|
|
1256
|
+
display: "flex",
|
|
1257
|
+
alignItems: "center",
|
|
1258
|
+
justifyContent: "center",
|
|
1259
|
+
width: 44,
|
|
1260
|
+
height: 44,
|
|
1261
|
+
borderRadius: 12,
|
|
1262
|
+
border: "none",
|
|
1263
|
+
backgroundColor: isActive ? activeBg : isHovered ? `${borderColor}20` : "transparent",
|
|
1264
|
+
cursor: "pointer",
|
|
1265
|
+
transition: "background-color 150ms"
|
|
1266
|
+
},
|
|
1267
|
+
children: /* @__PURE__ */ jsx(
|
|
1268
|
+
Icon,
|
|
1269
|
+
{
|
|
1270
|
+
name: category.icon ?? "circle",
|
|
1271
|
+
size: 24,
|
|
1272
|
+
color: isActive ? activeIconColor : iconColor
|
|
1273
|
+
}
|
|
1274
|
+
)
|
|
1267
1275
|
},
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
color: isActive ? activeIconColor : iconColor
|
|
1274
|
-
}
|
|
1275
|
-
)
|
|
1276
|
-
},
|
|
1277
|
-
category.id
|
|
1278
|
-
);
|
|
1279
|
-
})
|
|
1276
|
+
category.id
|
|
1277
|
+
);
|
|
1278
|
+
}),
|
|
1279
|
+
footer && /* @__PURE__ */ jsx("div", { style: { marginTop: "auto", paddingBottom: 12 }, children: footer })
|
|
1280
|
+
]
|
|
1280
1281
|
}
|
|
1281
1282
|
);
|
|
1282
1283
|
}
|
|
@@ -1584,33 +1585,21 @@ function ColorsSection({
|
|
|
1584
1585
|
editableValue: true
|
|
1585
1586
|
}
|
|
1586
1587
|
),
|
|
1587
|
-
/* @__PURE__ */
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
Toggle,
|
|
1603
|
-
{
|
|
1604
|
-
value: palette.desaturationDirection === "dark",
|
|
1605
|
-
onValueChange: (v) => dispatch({
|
|
1606
|
-
type: "SET_PALETTE_DESAT_DIRECTION",
|
|
1607
|
-
index: activePaletteIndex,
|
|
1608
|
-
direction: v ? "dark" : "light"
|
|
1609
|
-
}),
|
|
1610
|
-
label: "Invert"
|
|
1611
|
-
}
|
|
1612
|
-
) })
|
|
1613
|
-
] }),
|
|
1588
|
+
/* @__PURE__ */ jsx(
|
|
1589
|
+
Slider,
|
|
1590
|
+
{
|
|
1591
|
+
value: Math.round((palette.desaturation ?? 0) * 100),
|
|
1592
|
+
onValueChange: (v) => dispatch({
|
|
1593
|
+
type: "SET_PALETTE_DESATURATION",
|
|
1594
|
+
index: activePaletteIndex,
|
|
1595
|
+
desaturation: v / 100
|
|
1596
|
+
}),
|
|
1597
|
+
min: -100,
|
|
1598
|
+
max: 100,
|
|
1599
|
+
label: "Desaturation",
|
|
1600
|
+
editableValue: true
|
|
1601
|
+
}
|
|
1602
|
+
),
|
|
1614
1603
|
/* @__PURE__ */ jsxs("div", { style: { display: "flex", gap: 12, alignItems: "flex-end" }, children: [
|
|
1615
1604
|
/* @__PURE__ */ jsx("div", { style: { flex: 1 }, children: /* @__PURE__ */ jsx(
|
|
1616
1605
|
Select,
|
|
@@ -2586,7 +2575,7 @@ function OthersSection({ state, dispatch }) {
|
|
|
2586
2575
|
] })
|
|
2587
2576
|
] });
|
|
2588
2577
|
}
|
|
2589
|
-
var PANEL_WIDTH =
|
|
2578
|
+
var PANEL_WIDTH = 360;
|
|
2590
2579
|
function ConfiguratorPanel({
|
|
2591
2580
|
activeSectionId,
|
|
2592
2581
|
state,
|
|
@@ -2633,7 +2622,7 @@ function ConfiguratorPanel({
|
|
|
2633
2622
|
}
|
|
2634
2623
|
);
|
|
2635
2624
|
}
|
|
2636
|
-
var TOC_WIDTH =
|
|
2625
|
+
var TOC_WIDTH = 360;
|
|
2637
2626
|
function TableOfContents({
|
|
2638
2627
|
activeSectionId,
|
|
2639
2628
|
activeView,
|
|
@@ -3568,7 +3557,7 @@ function ComponentDetailView({
|
|
|
3568
3557
|
scopeFontMap
|
|
3569
3558
|
}) {
|
|
3570
3559
|
const tokens = useTokens();
|
|
3571
|
-
const { config } = useNewtoneTheme();
|
|
3560
|
+
const { config, mode } = useNewtoneTheme();
|
|
3572
3561
|
const component = getComponent(componentId);
|
|
3573
3562
|
const [hoveredId, setHoveredId] = useState(null);
|
|
3574
3563
|
const [previewBreakpoint, setPreviewBreakpoint] = useState("lg");
|
|
@@ -3711,7 +3700,7 @@ function ComponentDetailView({
|
|
|
3711
3700
|
);
|
|
3712
3701
|
}) })
|
|
3713
3702
|
] }),
|
|
3714
|
-
component.previewLayout === "list" ? /* @__PURE__ */ jsx(NewtoneProvider, { config: scaledConfig, children: /* @__PURE__ */ jsx("div", { style: { display: "flex", flexDirection: "column", gap: 8 }, children: component.variants.map((variant) => {
|
|
3703
|
+
component.previewLayout === "list" ? /* @__PURE__ */ jsx(NewtoneProvider, { config: scaledConfig, initialMode: mode, children: /* @__PURE__ */ jsx("div", { style: { display: "flex", flexDirection: "column", gap: 8 }, children: component.variants.map((variant) => {
|
|
3715
3704
|
const isSelected = selectedVariantId === variant.id;
|
|
3716
3705
|
const isHovered = hoveredId === variant.id;
|
|
3717
3706
|
const borderColor = isSelected ? interactiveColor : isHovered ? `${interactiveColor}66` : srgbToHex(tokens.border.srgb);
|
|
@@ -3804,7 +3793,7 @@ function ComponentDetailView({
|
|
|
3804
3793
|
},
|
|
3805
3794
|
variant.id
|
|
3806
3795
|
);
|
|
3807
|
-
}) }) }) : /* @__PURE__ */ jsx(
|
|
3796
|
+
}) }) }, mode) : /* @__PURE__ */ jsx(
|
|
3808
3797
|
"div",
|
|
3809
3798
|
{
|
|
3810
3799
|
style: {
|
|
@@ -4444,6 +4433,7 @@ function Editor({
|
|
|
4444
4433
|
chromeThemeConfig,
|
|
4445
4434
|
persistence,
|
|
4446
4435
|
headerSlots,
|
|
4436
|
+
navFooter,
|
|
4447
4437
|
onNavigate,
|
|
4448
4438
|
initialPreviewView,
|
|
4449
4439
|
manifestUrl,
|
|
@@ -4489,15 +4479,7 @@ function Editor({
|
|
|
4489
4479
|
Sidebar,
|
|
4490
4480
|
{
|
|
4491
4481
|
isDirty: editor.isDirty,
|
|
4492
|
-
onRevert: editor.handleRevert
|
|
4493
|
-
presets: editor.presets,
|
|
4494
|
-
activePresetId: editor.activePresetId,
|
|
4495
|
-
publishedPresetId: editor.publishedPresetId,
|
|
4496
|
-
onSwitchPreset: editor.switchPreset,
|
|
4497
|
-
onCreatePreset: editor.createPreset,
|
|
4498
|
-
onRenamePreset: editor.renamePreset,
|
|
4499
|
-
onDeletePreset: editor.deletePreset,
|
|
4500
|
-
onDuplicatePreset: editor.duplicatePreset
|
|
4482
|
+
onRevert: editor.handleRevert
|
|
4501
4483
|
}
|
|
4502
4484
|
),
|
|
4503
4485
|
navbar: /* @__PURE__ */ jsx(
|
|
@@ -4508,7 +4490,15 @@ function Editor({
|
|
|
4508
4490
|
publishing: editor.publishing,
|
|
4509
4491
|
onPublish: editor.handlePublish,
|
|
4510
4492
|
onRetry: () => editor.saveDraft(editor.latestStateRef.current),
|
|
4511
|
-
headerSlots
|
|
4493
|
+
headerSlots,
|
|
4494
|
+
presets: editor.presets,
|
|
4495
|
+
activePresetId: editor.activePresetId,
|
|
4496
|
+
publishedPresetId: editor.publishedPresetId,
|
|
4497
|
+
onSwitchPreset: editor.switchPreset,
|
|
4498
|
+
onCreatePreset: editor.createPreset,
|
|
4499
|
+
onRenamePreset: editor.renamePreset,
|
|
4500
|
+
onDeletePreset: editor.deletePreset,
|
|
4501
|
+
onDuplicatePreset: editor.duplicatePreset
|
|
4512
4502
|
}
|
|
4513
4503
|
),
|
|
4514
4504
|
content: /* @__PURE__ */ jsxs(
|
|
@@ -4525,7 +4515,8 @@ function Editor({
|
|
|
4525
4515
|
PrimaryNav,
|
|
4526
4516
|
{
|
|
4527
4517
|
activeSectionId: editor.activeSectionId,
|
|
4528
|
-
onSelectSection: editor.handleSectionChange
|
|
4518
|
+
onSelectSection: editor.handleSectionChange,
|
|
4519
|
+
footer: navFooter
|
|
4529
4520
|
}
|
|
4530
4521
|
),
|
|
4531
4522
|
editor.activeSectionId === "components" ? /* @__PURE__ */ jsx(
|