@uxda/appkit 4.2.82 → 4.2.83
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/appkit.css +43 -0
- package/dist/index.js +990 -531
- package/package.json +31 -32
- package/src/balance/api/index.ts +8 -2
- package/src/notice/api/endpoints.ts +38 -1
- package/src/notice/api/index.ts +14 -5
- package/src/notice/components/NoticeList2.vue +249 -0
- package/src/notice/components/index.ts +2 -1
- package/src/shared/http/Http.ts +5 -3
- package/src/shared/http/types.ts +4 -1
- package/src/user/api/index.ts +8 -2
- package/types/global.d.ts +11 -11
package/dist/appkit.css
CHANGED
|
@@ -1806,6 +1806,49 @@ page {
|
|
|
1806
1806
|
margin-left: 4px;
|
|
1807
1807
|
opacity: 0.5;
|
|
1808
1808
|
}
|
|
1809
|
+
.news-list .safe-area-space {
|
|
1810
|
+
padding-bottom: calc(var(--bottom) + 60px);
|
|
1811
|
+
padding-bottom: calc(env(safe-area-inset-bottom) + 60px);
|
|
1812
|
+
}
|
|
1813
|
+
.news-list .tabContainer.inH5 {
|
|
1814
|
+
width: 100%;
|
|
1815
|
+
position: fixed;
|
|
1816
|
+
z-index: 100;
|
|
1817
|
+
}
|
|
1818
|
+
.news-list .tabContainer .read-all {
|
|
1819
|
+
width: 100%;
|
|
1820
|
+
text-align: end;
|
|
1821
|
+
height: 22px;
|
|
1822
|
+
line-height: 22px;
|
|
1823
|
+
padding: 5px 0;
|
|
1824
|
+
background-color: var(--fill, var(--ns-background));
|
|
1825
|
+
}
|
|
1826
|
+
.news-list .tabContainer .read-all .btn {
|
|
1827
|
+
color: #017fff;
|
|
1828
|
+
font-size: 14px;
|
|
1829
|
+
font-weight: 500;
|
|
1830
|
+
margin-right: 16px;
|
|
1831
|
+
}
|
|
1832
|
+
.news-list .news-item-title {
|
|
1833
|
+
font-size: 16px;
|
|
1834
|
+
font-weight: 500;
|
|
1835
|
+
display: flex;
|
|
1836
|
+
flex-direction: row;
|
|
1837
|
+
align-items: center;
|
|
1838
|
+
}
|
|
1839
|
+
.news-list .news-item-title-icon {
|
|
1840
|
+
width: 20px;
|
|
1841
|
+
height: 20px;
|
|
1842
|
+
margin-right: 4px;
|
|
1843
|
+
}
|
|
1844
|
+
.news-list .news-item-content {
|
|
1845
|
+
font-size: 14px;
|
|
1846
|
+
}
|
|
1847
|
+
.news-list .news-item-time {
|
|
1848
|
+
font-size: 13px;
|
|
1849
|
+
color: rgba(53, 53, 53, 0.4);
|
|
1850
|
+
text-align: end;
|
|
1851
|
+
}
|
|
1809
1852
|
.user-entry {
|
|
1810
1853
|
position: absolute;
|
|
1811
1854
|
left: 0;
|