com-angel-authorization 1.0.10 → 1.0.11
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/README.md +1 -1
- package/dist/react/index.cjs +27 -9
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +27 -9
- package/dist/react/index.js.map +1 -1
- package/dist/vue/index.cjs +27 -13
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +27 -13
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
package/dist/vue/index.js
CHANGED
|
@@ -1644,7 +1644,9 @@ var s2 = {
|
|
|
1644
1644
|
border: "none",
|
|
1645
1645
|
display: "flex",
|
|
1646
1646
|
flexDirection: "column",
|
|
1647
|
-
gap: "8px"
|
|
1647
|
+
gap: "8px",
|
|
1648
|
+
backgroundColor: "transparent",
|
|
1649
|
+
color: "#101828"
|
|
1648
1650
|
},
|
|
1649
1651
|
label: { fontSize: "13px", color: "#344054", fontWeight: "500" },
|
|
1650
1652
|
input: {
|
|
@@ -1658,14 +1660,29 @@ var s2 = {
|
|
|
1658
1660
|
boxSizing: "border-box",
|
|
1659
1661
|
width: "100%"
|
|
1660
1662
|
},
|
|
1661
|
-
|
|
1663
|
+
control: {
|
|
1664
|
+
width: "16px",
|
|
1665
|
+
height: "16px",
|
|
1666
|
+
margin: "0",
|
|
1667
|
+
flexShrink: "0",
|
|
1668
|
+
accentColor: "#049BAD",
|
|
1669
|
+
backgroundColor: "#ffffff",
|
|
1670
|
+
colorScheme: "light"
|
|
1671
|
+
},
|
|
1672
|
+
radioGroup: {
|
|
1673
|
+
display: "flex",
|
|
1674
|
+
flexWrap: "wrap",
|
|
1675
|
+
gap: "16px",
|
|
1676
|
+
backgroundColor: "transparent"
|
|
1677
|
+
},
|
|
1662
1678
|
radioItem: {
|
|
1663
1679
|
display: "flex",
|
|
1664
1680
|
alignItems: "center",
|
|
1665
1681
|
gap: "6px",
|
|
1666
1682
|
fontSize: "14px",
|
|
1667
1683
|
color: "#344054",
|
|
1668
|
-
cursor: "pointer"
|
|
1684
|
+
cursor: "pointer",
|
|
1685
|
+
backgroundColor: "transparent"
|
|
1669
1686
|
},
|
|
1670
1687
|
multiSelect: {
|
|
1671
1688
|
maxHeight: "160px",
|
|
@@ -1673,7 +1690,8 @@ var s2 = {
|
|
|
1673
1690
|
border: "1px solid #eaecf0",
|
|
1674
1691
|
borderRadius: "8px",
|
|
1675
1692
|
padding: "8px",
|
|
1676
|
-
|
|
1693
|
+
backgroundColor: "#ffffff",
|
|
1694
|
+
color: "#101828"
|
|
1677
1695
|
},
|
|
1678
1696
|
checkItem: {
|
|
1679
1697
|
display: "flex",
|
|
@@ -1682,7 +1700,8 @@ var s2 = {
|
|
|
1682
1700
|
padding: "6px 4px",
|
|
1683
1701
|
fontSize: "13px",
|
|
1684
1702
|
color: "#344054",
|
|
1685
|
-
cursor: "pointer"
|
|
1703
|
+
cursor: "pointer",
|
|
1704
|
+
backgroundColor: "transparent"
|
|
1686
1705
|
},
|
|
1687
1706
|
hint: { fontSize: "13px", color: "#98a2b3", padding: "8px" },
|
|
1688
1707
|
dialogFooter: {
|
|
@@ -2120,14 +2139,6 @@ var MenuManager = defineComponent3({
|
|
|
2120
2139
|
]
|
|
2121
2140
|
)
|
|
2122
2141
|
]),
|
|
2123
|
-
h2("div", { style: s2.field }, [
|
|
2124
|
-
h2("span", { style: s2.label }, "\u83DC\u5355\u5C42\u7EA7\uFF08depth\uFF09"),
|
|
2125
|
-
h2("input", {
|
|
2126
|
-
style: s2.input,
|
|
2127
|
-
value: form.depth,
|
|
2128
|
-
readOnly: true
|
|
2129
|
-
})
|
|
2130
|
-
]),
|
|
2131
2142
|
h2("fieldset", { style: s2.fieldset }, [
|
|
2132
2143
|
h2("legend", { style: s2.label }, "\u83DC\u5355\u7C7B\u578B"),
|
|
2133
2144
|
h2(
|
|
@@ -2138,6 +2149,7 @@ var MenuManager = defineComponent3({
|
|
|
2138
2149
|
h2("input", {
|
|
2139
2150
|
type: "radio",
|
|
2140
2151
|
name: "menu-type",
|
|
2152
|
+
style: s2.control,
|
|
2141
2153
|
checked: form.type === opt.value,
|
|
2142
2154
|
onChange: () => {
|
|
2143
2155
|
form.type = opt.value;
|
|
@@ -2189,6 +2201,7 @@ var MenuManager = defineComponent3({
|
|
|
2189
2201
|
[
|
|
2190
2202
|
h2("input", {
|
|
2191
2203
|
type: "checkbox",
|
|
2204
|
+
style: s2.control,
|
|
2192
2205
|
checked: form.permissionPointIds.includes(
|
|
2193
2206
|
p.resourceId
|
|
2194
2207
|
),
|
|
@@ -2222,6 +2235,7 @@ var MenuManager = defineComponent3({
|
|
|
2222
2235
|
h2("input", {
|
|
2223
2236
|
type: "radio",
|
|
2224
2237
|
name: "menu-status",
|
|
2238
|
+
style: s2.control,
|
|
2225
2239
|
checked: form.status === opt.value,
|
|
2226
2240
|
onChange: () => {
|
|
2227
2241
|
form.status = opt.value;
|