@industry-theme/repository-composition-panels 0.7.37 → 0.7.39
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/{browserAll-DENAMTng.js → browserAll-BEVDrdRp.js} +3 -3
- package/dist/{browserAll-DENAMTng.js.map → browserAll-BEVDrdRp.js.map} +1 -1
- package/dist/{index-CZAoI_5z.js → index-B_C6nP2H.js} +22 -10
- package/dist/{index-CZAoI_5z.js.map → index-B_C6nP2H.js.map} +1 -1
- package/dist/{init-BajOuol5.js → init-D4a2aDAJ.js} +2 -2
- package/dist/{init-BajOuol5.js.map → init-D4a2aDAJ.js.map} +1 -1
- package/dist/panels/overworld-map/components/CardLayout.d.ts.map +1 -1
- package/dist/panels.bundle.js +1 -1
- package/dist/webworkerAll-RaJ1XtNz.js +3 -0
- package/dist/webworkerAll-RaJ1XtNz.js.map +1 -0
- package/package.json +1 -1
- package/dist/webworkerAll-D817B3aZ.js +0 -3
- package/dist/webworkerAll-D817B3aZ.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { e as extensions, A as AccessibilitySystem, C as Container, b as accessibilityTarget, E as EventSystem, c as FederatedContainer } from "./index-
|
|
2
|
-
import "./init-
|
|
1
|
+
import { e as extensions, A as AccessibilitySystem, C as Container, b as accessibilityTarget, E as EventSystem, c as FederatedContainer } from "./index-B_C6nP2H.js";
|
|
2
|
+
import "./init-D4a2aDAJ.js";
|
|
3
3
|
extensions.add(AccessibilitySystem);
|
|
4
4
|
extensions.mixin(Container, accessibilityTarget);
|
|
5
5
|
extensions.add(EventSystem);
|
|
6
6
|
extensions.mixin(Container, FederatedContainer);
|
|
7
|
-
//# sourceMappingURL=browserAll-
|
|
7
|
+
//# sourceMappingURL=browserAll-BEVDrdRp.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browserAll-
|
|
1
|
+
{"version":3,"file":"browserAll-BEVDrdRp.js","sources":["../node_modules/pixi.js/lib/accessibility/init.mjs","../node_modules/pixi.js/lib/events/init.mjs"],"sourcesContent":["import { extensions } from '../extensions/Extensions.mjs';\nimport { Container } from '../scene/container/Container.mjs';\nimport { AccessibilitySystem } from './AccessibilitySystem.mjs';\nimport { accessibilityTarget } from './accessibilityTarget.mjs';\n\n\"use strict\";\nextensions.add(AccessibilitySystem);\nextensions.mixin(Container, accessibilityTarget);\n//# sourceMappingURL=init.mjs.map\n","import { extensions } from '../extensions/Extensions.mjs';\nimport { Container } from '../scene/container/Container.mjs';\nimport { EventSystem } from './EventSystem.mjs';\nimport { FederatedContainer } from './FederatedEventTarget.mjs';\n\n\"use strict\";\nextensions.add(EventSystem);\nextensions.mixin(Container, FederatedContainer);\n//# sourceMappingURL=init.mjs.map\n"],"names":[],"mappings":";;AAMA,WAAW,IAAI,mBAAmB;AAClC,WAAW,MAAM,WAAW,mBAAmB;ACD/C,WAAW,IAAI,WAAW;AAC1B,WAAW,MAAM,WAAW,kBAAkB;","x_google_ignoreList":[0,1]}
|
|
@@ -106214,7 +106214,7 @@ const browserExt = {
|
|
|
106214
106214
|
},
|
|
106215
106215
|
test: () => true,
|
|
106216
106216
|
load: async () => {
|
|
106217
|
-
await import("./browserAll-
|
|
106217
|
+
await import("./browserAll-BEVDrdRp.js");
|
|
106218
106218
|
}
|
|
106219
106219
|
};
|
|
106220
106220
|
const webworkerExt = {
|
|
@@ -106225,7 +106225,7 @@ const webworkerExt = {
|
|
|
106225
106225
|
},
|
|
106226
106226
|
test: () => typeof self !== "undefined" && self.WorkerGlobalScope !== void 0,
|
|
106227
106227
|
load: async () => {
|
|
106228
|
-
await import("./webworkerAll-
|
|
106228
|
+
await import("./webworkerAll-RaJ1XtNz.js");
|
|
106229
106229
|
}
|
|
106230
106230
|
};
|
|
106231
106231
|
class ObservablePoint {
|
|
@@ -154043,6 +154043,12 @@ function formatCount(count2) {
|
|
|
154043
154043
|
if (count2 < 1e6) return `${(count2 / 1e3).toFixed(1)}k`;
|
|
154044
154044
|
return `${(count2 / 1e6).toFixed(1)}M`;
|
|
154045
154045
|
}
|
|
154046
|
+
const getStarColor = (count2) => {
|
|
154047
|
+
if (count2 >= 1e5) return "#ffd700";
|
|
154048
|
+
if (count2 >= 1e4) return "#c0c0c0";
|
|
154049
|
+
if (count2 >= 5e3) return "#cd7f32";
|
|
154050
|
+
return "#f97316";
|
|
154051
|
+
};
|
|
154046
154052
|
const STARFIELD_BACKGROUND = `
|
|
154047
154053
|
radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.4) 50%, transparent 50%),
|
|
154048
154054
|
radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.3) 50%, transparent 50%),
|
|
@@ -154171,7 +154177,7 @@ const CardLayout = ({
|
|
|
154171
154177
|
alignItems: "flex-start",
|
|
154172
154178
|
marginBottom: "0",
|
|
154173
154179
|
marginLeft: "-12px",
|
|
154174
|
-
marginRight: "-
|
|
154180
|
+
marginRight: "-12px",
|
|
154175
154181
|
marginTop: "-8px",
|
|
154176
154182
|
minHeight: "24px",
|
|
154177
154183
|
flexShrink: 0
|
|
@@ -154236,7 +154242,8 @@ const CardLayout = ({
|
|
|
154236
154242
|
alignItems: "center",
|
|
154237
154243
|
gap: "4px",
|
|
154238
154244
|
flexShrink: 0,
|
|
154239
|
-
alignSelf: "flex-end"
|
|
154245
|
+
alignSelf: "flex-end",
|
|
154246
|
+
marginRight: "12px"
|
|
154240
154247
|
},
|
|
154241
154248
|
children: [
|
|
154242
154249
|
/* @__PURE__ */ jsx(
|
|
@@ -154245,7 +154252,7 @@ const CardLayout = ({
|
|
|
154245
154252
|
style: {
|
|
154246
154253
|
fontSize: theme2.fontSizes[2],
|
|
154247
154254
|
fontWeight: theme2.fontWeights.medium,
|
|
154248
|
-
color:
|
|
154255
|
+
color: getStarColor(stars),
|
|
154249
154256
|
textShadow: "0 1px 2px rgba(0,0,0,0.5)",
|
|
154250
154257
|
fontFamily: theme2.fonts.body
|
|
154251
154258
|
},
|
|
@@ -154258,7 +154265,7 @@ const CardLayout = ({
|
|
|
154258
154265
|
style: {
|
|
154259
154266
|
fontSize: theme2.fontSizes[2],
|
|
154260
154267
|
fontWeight: theme2.fontWeights.medium,
|
|
154261
|
-
color:
|
|
154268
|
+
color: getStarColor(stars),
|
|
154262
154269
|
textShadow: "0 1px 2px rgba(0,0,0,0.5)"
|
|
154263
154270
|
},
|
|
154264
154271
|
children: "★"
|
|
@@ -154279,6 +154286,7 @@ const CardLayout = ({
|
|
|
154279
154286
|
position: "relative",
|
|
154280
154287
|
background: `linear-gradient(180deg, ${colors.windowGradient[0]} 0%, ${colors.windowGradient[1]} 100%)`,
|
|
154281
154288
|
border: `2px solid ${colors.cardHighlight}`,
|
|
154289
|
+
boxSizing: "border-box",
|
|
154282
154290
|
boxShadow: "inset 0 2px 4px rgba(0,0,0,0.3)",
|
|
154283
154291
|
overflow: "hidden",
|
|
154284
154292
|
display: "flex",
|
|
@@ -154391,11 +154399,15 @@ const CardLayout = ({
|
|
|
154391
154399
|
"div",
|
|
154392
154400
|
{
|
|
154393
154401
|
style: {
|
|
154394
|
-
marginTop: "
|
|
154402
|
+
marginTop: "0",
|
|
154395
154403
|
padding: "8px",
|
|
154396
154404
|
background: `linear-gradient(180deg, ${colors.panelGradient[0]} 0%, ${colors.panelGradient[1]} 100%)`,
|
|
154397
|
-
|
|
154398
|
-
|
|
154405
|
+
borderLeft: `1px solid ${colors.panelBorder}`,
|
|
154406
|
+
borderRight: `1px solid ${colors.panelBorder}`,
|
|
154407
|
+
borderBottom: `1px solid ${colors.panelBorder}`,
|
|
154408
|
+
flex: 1,
|
|
154409
|
+
minHeight: 0,
|
|
154410
|
+
overflow: "hidden"
|
|
154399
154411
|
},
|
|
154400
154412
|
children: [
|
|
154401
154413
|
description && /* @__PURE__ */ jsx(
|
|
@@ -156115,4 +156127,4 @@ export {
|
|
|
156115
156127
|
RepoCardStatic as y,
|
|
156116
156128
|
CardBack as z
|
|
156117
156129
|
};
|
|
156118
|
-
//# sourceMappingURL=index-
|
|
156130
|
+
//# sourceMappingURL=index-B_C6nP2H.js.map
|