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.cjs
CHANGED
|
@@ -1696,7 +1696,9 @@ var s2 = {
|
|
|
1696
1696
|
border: "none",
|
|
1697
1697
|
display: "flex",
|
|
1698
1698
|
flexDirection: "column",
|
|
1699
|
-
gap: "8px"
|
|
1699
|
+
gap: "8px",
|
|
1700
|
+
backgroundColor: "transparent",
|
|
1701
|
+
color: "#101828"
|
|
1700
1702
|
},
|
|
1701
1703
|
label: { fontSize: "13px", color: "#344054", fontWeight: "500" },
|
|
1702
1704
|
input: {
|
|
@@ -1710,14 +1712,29 @@ var s2 = {
|
|
|
1710
1712
|
boxSizing: "border-box",
|
|
1711
1713
|
width: "100%"
|
|
1712
1714
|
},
|
|
1713
|
-
|
|
1715
|
+
control: {
|
|
1716
|
+
width: "16px",
|
|
1717
|
+
height: "16px",
|
|
1718
|
+
margin: "0",
|
|
1719
|
+
flexShrink: "0",
|
|
1720
|
+
accentColor: "#049BAD",
|
|
1721
|
+
backgroundColor: "#ffffff",
|
|
1722
|
+
colorScheme: "light"
|
|
1723
|
+
},
|
|
1724
|
+
radioGroup: {
|
|
1725
|
+
display: "flex",
|
|
1726
|
+
flexWrap: "wrap",
|
|
1727
|
+
gap: "16px",
|
|
1728
|
+
backgroundColor: "transparent"
|
|
1729
|
+
},
|
|
1714
1730
|
radioItem: {
|
|
1715
1731
|
display: "flex",
|
|
1716
1732
|
alignItems: "center",
|
|
1717
1733
|
gap: "6px",
|
|
1718
1734
|
fontSize: "14px",
|
|
1719
1735
|
color: "#344054",
|
|
1720
|
-
cursor: "pointer"
|
|
1736
|
+
cursor: "pointer",
|
|
1737
|
+
backgroundColor: "transparent"
|
|
1721
1738
|
},
|
|
1722
1739
|
multiSelect: {
|
|
1723
1740
|
maxHeight: "160px",
|
|
@@ -1725,7 +1742,8 @@ var s2 = {
|
|
|
1725
1742
|
border: "1px solid #eaecf0",
|
|
1726
1743
|
borderRadius: "8px",
|
|
1727
1744
|
padding: "8px",
|
|
1728
|
-
|
|
1745
|
+
backgroundColor: "#ffffff",
|
|
1746
|
+
color: "#101828"
|
|
1729
1747
|
},
|
|
1730
1748
|
checkItem: {
|
|
1731
1749
|
display: "flex",
|
|
@@ -1734,7 +1752,8 @@ var s2 = {
|
|
|
1734
1752
|
padding: "6px 4px",
|
|
1735
1753
|
fontSize: "13px",
|
|
1736
1754
|
color: "#344054",
|
|
1737
|
-
cursor: "pointer"
|
|
1755
|
+
cursor: "pointer",
|
|
1756
|
+
backgroundColor: "transparent"
|
|
1738
1757
|
},
|
|
1739
1758
|
hint: { fontSize: "13px", color: "#98a2b3", padding: "8px" },
|
|
1740
1759
|
dialogFooter: {
|
|
@@ -2172,14 +2191,6 @@ var MenuManager = (0, import_vue4.defineComponent)({
|
|
|
2172
2191
|
]
|
|
2173
2192
|
)
|
|
2174
2193
|
]),
|
|
2175
|
-
(0, import_vue4.h)("div", { style: s2.field }, [
|
|
2176
|
-
(0, import_vue4.h)("span", { style: s2.label }, "\u83DC\u5355\u5C42\u7EA7\uFF08depth\uFF09"),
|
|
2177
|
-
(0, import_vue4.h)("input", {
|
|
2178
|
-
style: s2.input,
|
|
2179
|
-
value: form.depth,
|
|
2180
|
-
readOnly: true
|
|
2181
|
-
})
|
|
2182
|
-
]),
|
|
2183
2194
|
(0, import_vue4.h)("fieldset", { style: s2.fieldset }, [
|
|
2184
2195
|
(0, import_vue4.h)("legend", { style: s2.label }, "\u83DC\u5355\u7C7B\u578B"),
|
|
2185
2196
|
(0, import_vue4.h)(
|
|
@@ -2190,6 +2201,7 @@ var MenuManager = (0, import_vue4.defineComponent)({
|
|
|
2190
2201
|
(0, import_vue4.h)("input", {
|
|
2191
2202
|
type: "radio",
|
|
2192
2203
|
name: "menu-type",
|
|
2204
|
+
style: s2.control,
|
|
2193
2205
|
checked: form.type === opt.value,
|
|
2194
2206
|
onChange: () => {
|
|
2195
2207
|
form.type = opt.value;
|
|
@@ -2241,6 +2253,7 @@ var MenuManager = (0, import_vue4.defineComponent)({
|
|
|
2241
2253
|
[
|
|
2242
2254
|
(0, import_vue4.h)("input", {
|
|
2243
2255
|
type: "checkbox",
|
|
2256
|
+
style: s2.control,
|
|
2244
2257
|
checked: form.permissionPointIds.includes(
|
|
2245
2258
|
p.resourceId
|
|
2246
2259
|
),
|
|
@@ -2274,6 +2287,7 @@ var MenuManager = (0, import_vue4.defineComponent)({
|
|
|
2274
2287
|
(0, import_vue4.h)("input", {
|
|
2275
2288
|
type: "radio",
|
|
2276
2289
|
name: "menu-status",
|
|
2290
|
+
style: s2.control,
|
|
2277
2291
|
checked: form.status === opt.value,
|
|
2278
2292
|
onChange: () => {
|
|
2279
2293
|
form.status = opt.value;
|