ps99-api 2.6.2 → 2.6.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/example-web/react2/src/components/CollectionConfigIndex.tsx +1 -1
- package/example-web/react2/src/components/CollectionsIndex.tsx +3 -3
- package/example-web/react2/src/components/DynamicCollectionConfigData.tsx +1 -1
- package/example-web/react2/src/components/Sidebar.tsx +1 -1
- package/package.json +1 -1
|
@@ -675,7 +675,7 @@ const CollectionConfigIndex: React.FC<CollectionConfigIndexProps> = () => {
|
|
|
675
675
|
fontWeight: "900",
|
|
676
676
|
color: "#333",
|
|
677
677
|
textShadow: isMobile ? "2px 2px 0px #eee" : "3px 3px 0px #eee",
|
|
678
|
-
fontFamily: "'Fredoka One',
|
|
678
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif",
|
|
679
679
|
letterSpacing: "1px",
|
|
680
680
|
overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap",
|
|
681
681
|
maxWidth: isMobile ? "60%" : "auto"
|
|
@@ -59,7 +59,7 @@ const GridCellRenderer = ({ columnIndex, rowIndex, style, data }: any) => {
|
|
|
59
59
|
fontWeight: "900",
|
|
60
60
|
color: "#333",
|
|
61
61
|
textAlign: "center",
|
|
62
|
-
fontFamily: "'Fredoka One',
|
|
62
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif",
|
|
63
63
|
}}>
|
|
64
64
|
{collection}
|
|
65
65
|
</span>
|
|
@@ -118,7 +118,7 @@ const ListRowRenderer = ({ index, style, data }: any) => {
|
|
|
118
118
|
whiteSpace: "nowrap",
|
|
119
119
|
overflow: "hidden",
|
|
120
120
|
textOverflow: "ellipsis",
|
|
121
|
-
fontFamily: "'Fredoka One',
|
|
121
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif",
|
|
122
122
|
}}>
|
|
123
123
|
{collection}
|
|
124
124
|
</div>
|
|
@@ -246,7 +246,7 @@ const CollectionsIndex: React.FC = () => {
|
|
|
246
246
|
fontWeight: "900",
|
|
247
247
|
color: "#333",
|
|
248
248
|
textShadow: isMobile ? "1px 1px 0px #eee" : "3px 3px 0px #eee",
|
|
249
|
-
fontFamily: "'Fredoka One',
|
|
249
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif",
|
|
250
250
|
letterSpacing: "1px",
|
|
251
251
|
}}>
|
|
252
252
|
Collections
|
|
@@ -85,7 +85,7 @@ const DynamicCollectionConfigData: React.FC<
|
|
|
85
85
|
fontWeight: "900",
|
|
86
86
|
color: "#333",
|
|
87
87
|
textShadow: "2px 2px 0px #eee",
|
|
88
|
-
fontFamily: "'Fredoka One',
|
|
88
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif",
|
|
89
89
|
textTransform: "capitalize",
|
|
90
90
|
}}>
|
|
91
91
|
{configName}
|
|
@@ -44,7 +44,7 @@ const Sidebar: React.FC<SidebarProps> = ({ currentCollection }) => {
|
|
|
44
44
|
fontSize: "1.5rem",
|
|
45
45
|
fontWeight: "900",
|
|
46
46
|
textShadow: "2px 2px 0px #eee",
|
|
47
|
-
fontFamily: "'Fredoka One',
|
|
47
|
+
fontFamily: "'Fredoka', 'Fredoka One', sans-serif", // Assuming font availability or fallback
|
|
48
48
|
}}>
|
|
49
49
|
Terminal!
|
|
50
50
|
</h3>
|