koishi-plugin-warframe 1.4.9 → 1.4.10
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/lib/index.js +264 -389
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -2119,7 +2119,7 @@ var incarnons = [
|
|
|
2119
2119
|
"/Lotus/Language/Items/ShotgunName"
|
|
2120
2120
|
],
|
|
2121
2121
|
[
|
|
2122
|
-
"/Lotus/Language/
|
|
2122
|
+
"/Lotus/Language/Items/HeavyPistolName",
|
|
2123
2123
|
"/Lotus/Language/Items/PaladinMaceName",
|
|
2124
2124
|
"/Lotus/Language/Items/BoltoRifleName",
|
|
2125
2125
|
"/Lotus/Language/Items/HandCannonName",
|
|
@@ -50822,412 +50822,287 @@ var ArbitrationComponent = /* @__PURE__ */ __name((arbi) => {
|
|
|
50822
50822
|
);
|
|
50823
50823
|
}, "ArbitrationComponent");
|
|
50824
50824
|
var CircuitComponent = /* @__PURE__ */ __name((currentIncarnons, currentWarframes, allIncarnons, allWarframes) => {
|
|
50825
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.
|
|
50825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50826
50826
|
"div",
|
|
50827
50827
|
{
|
|
50828
50828
|
style: `
|
|
50829
50829
|
background: linear-gradient(135deg, #f5f0e8 0%, #fff8f0 100%);
|
|
50830
|
-
|
|
50831
|
-
padding:
|
|
50832
|
-
font-family: '
|
|
50830
|
+
border-radius: 8px;
|
|
50831
|
+
padding: 16px;
|
|
50832
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
50833
|
+
width: 1000px;
|
|
50834
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
50835
|
+
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
50833
50836
|
`,
|
|
50834
|
-
children:
|
|
50835
|
-
|
|
50836
|
-
|
|
50837
|
-
|
|
50838
|
-
|
|
50839
|
-
|
|
50837
|
+
children: [
|
|
50838
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50839
|
+
"div",
|
|
50840
|
+
{
|
|
50841
|
+
style: `
|
|
50842
|
+
text-align: center;
|
|
50843
|
+
margin-bottom: 20px;
|
|
50844
|
+
padding-bottom: 12px;
|
|
50845
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
50840
50846
|
`,
|
|
50841
|
-
|
|
50842
|
-
|
|
50843
|
-
|
|
50844
|
-
|
|
50845
|
-
|
|
50846
|
-
|
|
50847
|
-
|
|
50847
|
+
children: [
|
|
50848
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50849
|
+
"h1",
|
|
50850
|
+
{
|
|
50851
|
+
style: `
|
|
50852
|
+
font-size: 22px;
|
|
50853
|
+
font-weight: bold;
|
|
50854
|
+
color: #1a1a1a;
|
|
50855
|
+
margin: 0 0 8px 0;
|
|
50848
50856
|
`,
|
|
50849
|
-
|
|
50850
|
-
|
|
50851
|
-
|
|
50852
|
-
|
|
50853
|
-
|
|
50854
|
-
|
|
50855
|
-
|
|
50856
|
-
|
|
50857
|
-
|
|
50858
|
-
|
|
50859
|
-
color: transparent;
|
|
50860
|
-
margin: 0;
|
|
50861
|
-
letter-spacing: -1px;
|
|
50862
|
-
`,
|
|
50863
|
-
children: "🌀 回廊奖励总览"
|
|
50864
|
-
}
|
|
50865
|
-
),
|
|
50866
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50867
|
-
"p",
|
|
50868
|
-
{
|
|
50869
|
-
style: `
|
|
50870
|
-
color: #8b7355;
|
|
50871
|
-
font-size: 1.1rem;
|
|
50872
|
-
margin-top: 12px;
|
|
50873
|
-
opacity: 0.8;
|
|
50874
|
-
`,
|
|
50875
|
-
children: [
|
|
50876
|
-
"共 ",
|
|
50877
|
-
Math.max(allIncarnons.length, allWarframes.length),
|
|
50878
|
-
" 周 · 当前灵化周第 ",
|
|
50879
|
-
currentIncarnons + 1,
|
|
50880
|
-
" 周 · 当前战甲周第",
|
|
50881
|
-
" ",
|
|
50882
|
-
currentWarframes + 1,
|
|
50883
|
-
" 周"
|
|
50884
|
-
]
|
|
50885
|
-
}
|
|
50886
|
-
)
|
|
50887
|
-
]
|
|
50888
|
-
}
|
|
50889
|
-
),
|
|
50890
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50891
|
-
"div",
|
|
50892
|
-
{
|
|
50893
|
-
style: `
|
|
50894
|
-
display: flex;
|
|
50895
|
-
flex-direction: column;
|
|
50896
|
-
gap: 24px;
|
|
50857
|
+
children: "回廊奖励总览"
|
|
50858
|
+
}
|
|
50859
|
+
),
|
|
50860
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50861
|
+
"p",
|
|
50862
|
+
{
|
|
50863
|
+
style: `
|
|
50864
|
+
color: #666666;
|
|
50865
|
+
font-size: 11px;
|
|
50866
|
+
margin: 0;
|
|
50897
50867
|
`,
|
|
50898
|
-
|
|
50899
|
-
|
|
50900
|
-
|
|
50901
|
-
|
|
50902
|
-
|
|
50903
|
-
|
|
50904
|
-
|
|
50905
|
-
|
|
50906
|
-
|
|
50907
|
-
|
|
50868
|
+
children: [
|
|
50869
|
+
"灵化周 ",
|
|
50870
|
+
currentIncarnons + 1,
|
|
50871
|
+
"/",
|
|
50872
|
+
allIncarnons.length,
|
|
50873
|
+
" · 战甲周",
|
|
50874
|
+
" ",
|
|
50875
|
+
currentWarframes + 1,
|
|
50876
|
+
"/",
|
|
50877
|
+
allWarframes.length
|
|
50878
|
+
]
|
|
50879
|
+
}
|
|
50880
|
+
)
|
|
50881
|
+
]
|
|
50882
|
+
}
|
|
50883
|
+
),
|
|
50884
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50885
|
+
"div",
|
|
50886
|
+
{
|
|
50887
|
+
style: `
|
|
50888
|
+
display: flex;
|
|
50889
|
+
gap: 16px;
|
|
50890
|
+
`,
|
|
50891
|
+
children: [
|
|
50892
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50893
|
+
"div",
|
|
50894
|
+
{
|
|
50895
|
+
style: `
|
|
50896
|
+
flex: 1;
|
|
50897
|
+
background: rgba(255, 255, 255, 0.8);
|
|
50898
|
+
border-radius: 8px;
|
|
50899
|
+
padding: 12px;
|
|
50900
|
+
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
50901
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
50902
|
+
`,
|
|
50903
|
+
children: [
|
|
50904
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50905
|
+
"div",
|
|
50906
|
+
{
|
|
50907
|
+
style: `
|
|
50908
|
+
font-weight: bold;
|
|
50909
|
+
font-size: 15px;
|
|
50910
|
+
color: #333333;
|
|
50911
|
+
margin-bottom: 12px;
|
|
50912
|
+
padding-bottom: 8px;
|
|
50913
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
50908
50914
|
`,
|
|
50909
|
-
|
|
50910
|
-
|
|
50911
|
-
|
|
50912
|
-
|
|
50913
|
-
|
|
50914
|
-
|
|
50915
|
-
|
|
50916
|
-
|
|
50917
|
-
|
|
50918
|
-
|
|
50919
|
-
|
|
50920
|
-
|
|
50921
|
-
|
|
50922
|
-
|
|
50923
|
-
|
|
50924
|
-
|
|
50925
|
-
|
|
50926
|
-
|
|
50927
|
-
|
|
50928
|
-
|
|
50929
|
-
|
|
50930
|
-
|
|
50931
|
-
|
|
50932
|
-
|
|
50933
|
-
|
|
50934
|
-
|
|
50935
|
-
|
|
50936
|
-
|
|
50937
|
-
|
|
50938
|
-
|
|
50939
|
-
|
|
50940
|
-
|
|
50941
|
-
|
|
50942
|
-
|
|
50943
|
-
|
|
50944
|
-
|
|
50945
|
-
|
|
50946
|
-
|
|
50947
|
-
|
|
50948
|
-
|
|
50949
|
-
|
|
50950
|
-
|
|
50951
|
-
|
|
50952
|
-
|
|
50953
|
-
|
|
50954
|
-
|
|
50955
|
-
|
|
50956
|
-
|
|
50957
|
-
|
|
50958
|
-
|
|
50959
|
-
|
|
50960
|
-
gap: 20px;
|
|
50961
|
-
`,
|
|
50962
|
-
children: allIncarnons.map((incarnons2, weekIdx) => {
|
|
50963
|
-
const isCurrentWeek = weekIdx === currentIncarnons;
|
|
50964
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50965
|
-
"div",
|
|
50966
|
-
{
|
|
50967
|
-
style: `
|
|
50968
|
-
background: ${isCurrentWeek ? "linear-gradient(135deg, #fff8e7, #fff2e0)" : "rgba(250, 245, 238, 0.8)"};
|
|
50969
|
-
border-radius: 20px;
|
|
50970
|
-
padding: 16px 20px;
|
|
50971
|
-
box-shadow: ${isCurrentWeek ? "0 8px 20px rgba(255, 107, 53, 0.15), 0 0 0 2px #ff8c42 inset" : "0 2px 6px rgba(0, 0, 0, 0.02)"};
|
|
50972
|
-
transition: all 0.2s ease;
|
|
50973
|
-
transform: ${isCurrentWeek ? "scale(1.01)" : "scale(1)"};
|
|
50974
|
-
`,
|
|
50975
|
-
children: [
|
|
50976
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50977
|
-
"div",
|
|
50915
|
+
children: "灵化之源"
|
|
50916
|
+
}
|
|
50917
|
+
),
|
|
50918
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50919
|
+
"div",
|
|
50920
|
+
{
|
|
50921
|
+
style: `
|
|
50922
|
+
display: flex;
|
|
50923
|
+
flex-direction: column;
|
|
50924
|
+
gap: 8px;
|
|
50925
|
+
`,
|
|
50926
|
+
children: allIncarnons.map((incarnons2, weekIdx) => {
|
|
50927
|
+
const isCurrent = weekIdx === currentIncarnons;
|
|
50928
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50929
|
+
"div",
|
|
50930
|
+
{
|
|
50931
|
+
style: `
|
|
50932
|
+
background: ${isCurrent ? "#fff8f0" : "#ffffff"};
|
|
50933
|
+
border-radius: 4px;
|
|
50934
|
+
padding: 8px 10px;
|
|
50935
|
+
border-left: 4px solid ${isCurrent ? "#ff8c42" : "#e0e0e0"};
|
|
50936
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
|
|
50937
|
+
`,
|
|
50938
|
+
children: [
|
|
50939
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50940
|
+
"div",
|
|
50941
|
+
{
|
|
50942
|
+
style: `
|
|
50943
|
+
font-size: 10px;
|
|
50944
|
+
font-weight: bold;
|
|
50945
|
+
color: ${isCurrent ? "#ff8c42" : "#999999"};
|
|
50946
|
+
margin-bottom: 6px;
|
|
50947
|
+
`,
|
|
50948
|
+
children: [
|
|
50949
|
+
"第",
|
|
50950
|
+
weekIdx + 1,
|
|
50951
|
+
"周 ",
|
|
50952
|
+
isCurrent ? "· 当前" : null
|
|
50953
|
+
]
|
|
50954
|
+
}
|
|
50955
|
+
),
|
|
50956
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50957
|
+
"div",
|
|
50958
|
+
{
|
|
50959
|
+
style: `
|
|
50960
|
+
display: flex;
|
|
50961
|
+
flex-wrap: wrap;
|
|
50962
|
+
gap: 6px;
|
|
50963
|
+
`,
|
|
50964
|
+
children: incarnons2.map((item) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50965
|
+
"span",
|
|
50978
50966
|
{
|
|
50979
50967
|
style: `
|
|
50980
|
-
|
|
50981
|
-
|
|
50982
|
-
|
|
50983
|
-
|
|
50984
|
-
|
|
50985
|
-
|
|
50986
|
-
|
|
50987
|
-
"span",
|
|
50988
|
-
{
|
|
50989
|
-
style: `
|
|
50990
|
-
font-weight: 700;
|
|
50991
|
-
font-size: 1.2rem;
|
|
50992
|
-
color: ${isCurrentWeek ? "#ff6b3d" : "#b87c4f"};
|
|
50968
|
+
background: ${isCurrent ? "#fff0e0" : "#f5f5f5"};
|
|
50969
|
+
padding: 3px 10px;
|
|
50970
|
+
border-radius: 4px;
|
|
50971
|
+
font-size: 11px;
|
|
50972
|
+
font-weight: 500;
|
|
50973
|
+
color: #333333;
|
|
50974
|
+
border: 1px solid ${isCurrent ? "#ffe0b5" : "#e8e8e8"};
|
|
50993
50975
|
`,
|
|
50994
|
-
|
|
50995
|
-
"第 ",
|
|
50996
|
-
weekIdx + 1,
|
|
50997
|
-
" 周"
|
|
50998
|
-
]
|
|
50999
|
-
}
|
|
51000
|
-
),
|
|
51001
|
-
isCurrentWeek ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51002
|
-
"span",
|
|
51003
|
-
{
|
|
51004
|
-
style: `
|
|
51005
|
-
background: #ff6b3d;
|
|
51006
|
-
color: white;
|
|
51007
|
-
padding: 2px 10px;
|
|
51008
|
-
border-radius: 40px;
|
|
51009
|
-
font-size: 0.7rem;
|
|
51010
|
-
font-weight: 600;
|
|
51011
|
-
`,
|
|
51012
|
-
children: "🔥 当前周"
|
|
51013
|
-
}
|
|
51014
|
-
) : null
|
|
51015
|
-
]
|
|
50976
|
+
children: item
|
|
51016
50977
|
}
|
|
51017
|
-
)
|
|
51018
|
-
|
|
51019
|
-
|
|
51020
|
-
|
|
51021
|
-
|
|
51022
|
-
|
|
51023
|
-
|
|
51024
|
-
|
|
51025
|
-
|
|
51026
|
-
|
|
51027
|
-
|
|
51028
|
-
|
|
51029
|
-
|
|
51030
|
-
|
|
51031
|
-
|
|
51032
|
-
|
|
51033
|
-
|
|
51034
|
-
|
|
51035
|
-
|
|
51036
|
-
|
|
51037
|
-
|
|
51038
|
-
|
|
51039
|
-
|
|
51040
|
-
|
|
51041
|
-
|
|
51042
|
-
|
|
51043
|
-
|
|
51044
|
-
|
|
51045
|
-
|
|
51046
|
-
|
|
51047
|
-
|
|
51048
|
-
|
|
51049
|
-
|
|
51050
|
-
|
|
51051
|
-
)
|
|
51052
|
-
]
|
|
51053
|
-
}
|
|
51054
|
-
),
|
|
51055
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
51056
|
-
"div",
|
|
51057
|
-
{
|
|
51058
|
-
style: `
|
|
51059
|
-
background: rgba(255, 255, 255, 0.7);
|
|
51060
|
-
backdrop-filter: blur(8px);
|
|
51061
|
-
border-radius: 28px;
|
|
51062
|
-
padding: 24px 28px;
|
|
51063
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
50978
|
+
))
|
|
50979
|
+
}
|
|
50980
|
+
)
|
|
50981
|
+
]
|
|
50982
|
+
}
|
|
50983
|
+
);
|
|
50984
|
+
})
|
|
50985
|
+
}
|
|
50986
|
+
)
|
|
50987
|
+
]
|
|
50988
|
+
}
|
|
50989
|
+
),
|
|
50990
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
50991
|
+
"div",
|
|
50992
|
+
{
|
|
50993
|
+
style: `
|
|
50994
|
+
flex: 1;
|
|
50995
|
+
background: rgba(255, 255, 255, 0.8);
|
|
50996
|
+
border-radius: 8px;
|
|
50997
|
+
padding: 12px;
|
|
50998
|
+
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
50999
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
51000
|
+
`,
|
|
51001
|
+
children: [
|
|
51002
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51003
|
+
"div",
|
|
51004
|
+
{
|
|
51005
|
+
style: `
|
|
51006
|
+
font-weight: bold;
|
|
51007
|
+
font-size: 15px;
|
|
51008
|
+
color: #333333;
|
|
51009
|
+
margin-bottom: 12px;
|
|
51010
|
+
padding-bottom: 8px;
|
|
51011
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
51064
51012
|
`,
|
|
51065
|
-
|
|
51066
|
-
|
|
51067
|
-
|
|
51068
|
-
|
|
51069
|
-
|
|
51070
|
-
|
|
51071
|
-
|
|
51072
|
-
|
|
51073
|
-
|
|
51074
|
-
|
|
51075
|
-
|
|
51076
|
-
|
|
51077
|
-
|
|
51078
|
-
|
|
51079
|
-
|
|
51080
|
-
|
|
51081
|
-
|
|
51082
|
-
|
|
51083
|
-
|
|
51084
|
-
|
|
51085
|
-
|
|
51086
|
-
|
|
51087
|
-
|
|
51088
|
-
|
|
51089
|
-
|
|
51090
|
-
|
|
51091
|
-
|
|
51092
|
-
|
|
51093
|
-
|
|
51094
|
-
|
|
51095
|
-
|
|
51096
|
-
|
|
51097
|
-
|
|
51098
|
-
|
|
51099
|
-
|
|
51100
|
-
|
|
51101
|
-
|
|
51102
|
-
|
|
51103
|
-
|
|
51104
|
-
|
|
51105
|
-
|
|
51106
|
-
|
|
51107
|
-
|
|
51108
|
-
|
|
51109
|
-
|
|
51110
|
-
|
|
51111
|
-
|
|
51112
|
-
|
|
51113
|
-
|
|
51114
|
-
|
|
51115
|
-
|
|
51116
|
-
gap: 20px;
|
|
51117
|
-
`,
|
|
51118
|
-
children: allWarframes.map((warframes2, weekIdx) => {
|
|
51119
|
-
const isCurrentWeek = weekIdx === currentWarframes;
|
|
51120
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
51121
|
-
"div",
|
|
51122
|
-
{
|
|
51123
|
-
style: `
|
|
51124
|
-
background: ${isCurrentWeek ? "linear-gradient(135deg, #e6f9f5, #dcf3ef)" : "rgba(240, 248, 246, 0.8)"};
|
|
51125
|
-
border-radius: 20px;
|
|
51126
|
-
padding: 16px 20px;
|
|
51127
|
-
box-shadow: ${isCurrentWeek ? "0 8px 20px rgba(71, 181, 165, 0.15), 0 0 0 2px #47b5a5 inset" : "0 2px 6px rgba(0, 0, 0, 0.02)"};
|
|
51128
|
-
transition: all 0.2s ease;
|
|
51129
|
-
transform: ${isCurrentWeek ? "scale(1.01)" : "scale(1)"};
|
|
51130
|
-
`,
|
|
51131
|
-
children: [
|
|
51132
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
51133
|
-
"div",
|
|
51013
|
+
children: "战甲"
|
|
51014
|
+
}
|
|
51015
|
+
),
|
|
51016
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51017
|
+
"div",
|
|
51018
|
+
{
|
|
51019
|
+
style: `
|
|
51020
|
+
display: flex;
|
|
51021
|
+
flex-direction: column;
|
|
51022
|
+
gap: 8px;
|
|
51023
|
+
`,
|
|
51024
|
+
children: allWarframes.map((warframes2, weekIdx) => {
|
|
51025
|
+
const isCurrent = weekIdx === currentWarframes;
|
|
51026
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
51027
|
+
"div",
|
|
51028
|
+
{
|
|
51029
|
+
style: `
|
|
51030
|
+
background: ${isCurrent ? "#f0faf8" : "#ffffff"};
|
|
51031
|
+
border-radius: 4px;
|
|
51032
|
+
padding: 8px 10px;
|
|
51033
|
+
border-left: 4px solid ${isCurrent ? "#47b5a5" : "#e0e0e0"};
|
|
51034
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
|
|
51035
|
+
`,
|
|
51036
|
+
children: [
|
|
51037
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
51038
|
+
"div",
|
|
51039
|
+
{
|
|
51040
|
+
style: `
|
|
51041
|
+
font-size: 10px;
|
|
51042
|
+
font-weight: bold;
|
|
51043
|
+
color: ${isCurrent ? "#47b5a5" : "#999999"};
|
|
51044
|
+
margin-bottom: 6px;
|
|
51045
|
+
`,
|
|
51046
|
+
children: [
|
|
51047
|
+
"第",
|
|
51048
|
+
weekIdx + 1,
|
|
51049
|
+
"周 ",
|
|
51050
|
+
isCurrent ? "· 当前" : null
|
|
51051
|
+
]
|
|
51052
|
+
}
|
|
51053
|
+
),
|
|
51054
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51055
|
+
"div",
|
|
51056
|
+
{
|
|
51057
|
+
style: `
|
|
51058
|
+
display: flex;
|
|
51059
|
+
flex-wrap: wrap;
|
|
51060
|
+
gap: 6px;
|
|
51061
|
+
`,
|
|
51062
|
+
children: warframes2.map((item) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51063
|
+
"span",
|
|
51134
51064
|
{
|
|
51135
51065
|
style: `
|
|
51136
|
-
|
|
51137
|
-
|
|
51138
|
-
|
|
51139
|
-
|
|
51140
|
-
|
|
51141
|
-
|
|
51142
|
-
|
|
51143
|
-
"span",
|
|
51144
|
-
{
|
|
51145
|
-
style: `
|
|
51146
|
-
font-weight: 700;
|
|
51147
|
-
font-size: 1.2rem;
|
|
51148
|
-
color: ${isCurrentWeek ? "#2e8b7a" : "#5f9e8e"};
|
|
51066
|
+
background: ${isCurrent ? "#e0f7f2" : "#f5f5f5"};
|
|
51067
|
+
padding: 3px 10px;
|
|
51068
|
+
border-radius: 4px;
|
|
51069
|
+
font-size: 11px;
|
|
51070
|
+
font-weight: 500;
|
|
51071
|
+
color: #333333;
|
|
51072
|
+
border: 1px solid ${isCurrent ? "#c0e0d8" : "#e8e8e8"};
|
|
51149
51073
|
`,
|
|
51150
|
-
|
|
51151
|
-
"第 ",
|
|
51152
|
-
weekIdx + 1,
|
|
51153
|
-
" 周"
|
|
51154
|
-
]
|
|
51155
|
-
}
|
|
51156
|
-
),
|
|
51157
|
-
isCurrentWeek ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51158
|
-
"span",
|
|
51159
|
-
{
|
|
51160
|
-
style: `
|
|
51161
|
-
background: #47b5a5;
|
|
51162
|
-
color: white;
|
|
51163
|
-
padding: 2px 10px;
|
|
51164
|
-
border-radius: 40px;
|
|
51165
|
-
font-size: 0.7rem;
|
|
51166
|
-
font-weight: 600;
|
|
51167
|
-
`,
|
|
51168
|
-
children: "🔥 当前周"
|
|
51169
|
-
}
|
|
51170
|
-
) : null
|
|
51171
|
-
]
|
|
51172
|
-
}
|
|
51173
|
-
),
|
|
51174
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51175
|
-
"ul",
|
|
51176
|
-
{
|
|
51177
|
-
style: `
|
|
51178
|
-
display: flex;
|
|
51179
|
-
flex-wrap: wrap;
|
|
51180
|
-
gap: 10px;
|
|
51181
|
-
margin: 0;
|
|
51182
|
-
padding: 0;
|
|
51183
|
-
list-style: none;
|
|
51184
|
-
`,
|
|
51185
|
-
children: warframes2.map((item) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51186
|
-
"li",
|
|
51187
|
-
{
|
|
51188
|
-
style: `
|
|
51189
|
-
background: ${isCurrentWeek ? "#e0f7f2" : "#f0f8f6"};
|
|
51190
|
-
padding: 6px 18px;
|
|
51191
|
-
border-radius: 40px;
|
|
51192
|
-
font-size: 0.95rem;
|
|
51193
|
-
font-weight: 500;
|
|
51194
|
-
color: #2c6b5e;
|
|
51195
|
-
border: ${isCurrentWeek ? "1px solid #9ed9ce" : "1px solid #dcece8"};
|
|
51196
|
-
`,
|
|
51197
|
-
children: item
|
|
51198
|
-
}
|
|
51199
|
-
))
|
|
51074
|
+
children: item
|
|
51200
51075
|
}
|
|
51201
|
-
)
|
|
51202
|
-
|
|
51203
|
-
|
|
51204
|
-
|
|
51205
|
-
}
|
|
51206
|
-
|
|
51207
|
-
)
|
|
51208
|
-
|
|
51209
|
-
|
|
51210
|
-
|
|
51211
|
-
|
|
51212
|
-
|
|
51213
|
-
|
|
51214
|
-
|
|
51215
|
-
|
|
51216
|
-
|
|
51217
|
-
|
|
51218
|
-
|
|
51219
|
-
|
|
51220
|
-
|
|
51221
|
-
|
|
51222
|
-
|
|
51223
|
-
|
|
51224
|
-
|
|
51225
|
-
|
|
51226
|
-
|
|
51227
|
-
|
|
51228
|
-
|
|
51229
|
-
|
|
51230
|
-
|
|
51076
|
+
))
|
|
51077
|
+
}
|
|
51078
|
+
)
|
|
51079
|
+
]
|
|
51080
|
+
}
|
|
51081
|
+
);
|
|
51082
|
+
})
|
|
51083
|
+
}
|
|
51084
|
+
)
|
|
51085
|
+
]
|
|
51086
|
+
}
|
|
51087
|
+
)
|
|
51088
|
+
]
|
|
51089
|
+
}
|
|
51090
|
+
),
|
|
51091
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51092
|
+
"div",
|
|
51093
|
+
{
|
|
51094
|
+
style: `
|
|
51095
|
+
margin-top: 16px;
|
|
51096
|
+
padding-top: 12px;
|
|
51097
|
+
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
|
51098
|
+
font-size: 10px;
|
|
51099
|
+
color: #999999;
|
|
51100
|
+
text-align: center;
|
|
51101
|
+
`,
|
|
51102
|
+
children: "每周一更新"
|
|
51103
|
+
}
|
|
51104
|
+
)
|
|
51105
|
+
]
|
|
51231
51106
|
}
|
|
51232
51107
|
);
|
|
51233
51108
|
}, "CircuitComponent");
|