@iankibetsh/shframework 4.2.9 → 4.3.0
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/dist/library.mjs.css +15 -15
- package/dist/library.js +2 -1
- package/dist/library.mjs +2 -1
- package/package.json +1 -1
|
@@ -63,21 +63,6 @@
|
|
|
63
63
|
color: white;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.sh-selected-item{
|
|
67
|
-
line-height: unset!important;
|
|
68
|
-
}
|
|
69
|
-
.sh-suggestion-input{
|
|
70
|
-
padding: 0.375rem 0.75rem;
|
|
71
|
-
}
|
|
72
|
-
.sh-suggest{
|
|
73
|
-
margin-bottom: 1rem;
|
|
74
|
-
}
|
|
75
|
-
.sh-suggest-control::after{
|
|
76
|
-
margin-top: auto;
|
|
77
|
-
margin-bottom: auto;
|
|
78
|
-
margin-right: 0.255em;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
66
|
.permissions-main {
|
|
82
67
|
background: #edeff2;
|
|
83
68
|
}
|
|
@@ -110,6 +95,21 @@
|
|
|
110
95
|
flex-grow: 1;
|
|
111
96
|
}
|
|
112
97
|
|
|
98
|
+
.sh-selected-item{
|
|
99
|
+
line-height: unset!important;
|
|
100
|
+
}
|
|
101
|
+
.sh-suggestion-input{
|
|
102
|
+
padding: 0.375rem 0.75rem;
|
|
103
|
+
}
|
|
104
|
+
.sh-suggest{
|
|
105
|
+
margin-bottom: 1rem;
|
|
106
|
+
}
|
|
107
|
+
.sh-suggest-control::after{
|
|
108
|
+
margin-top: auto;
|
|
109
|
+
margin-bottom: auto;
|
|
110
|
+
margin-right: 0.255em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
113
|
.callout{
|
|
114
114
|
--bs-link-color-rgb: 110,168,254;
|
|
115
115
|
--bs-code-color: #e685b5;
|
package/dist/library.js
CHANGED
|
@@ -2203,7 +2203,8 @@ return (_ctx, _cache) => {
|
|
|
2203
2203
|
}, [
|
|
2204
2204
|
(suggestion.name)
|
|
2205
2205
|
? (vue.openBlock(), vue.createElementBlock("li", _hoisted_7$8, [
|
|
2206
|
-
vue.createElementVNode("
|
|
2206
|
+
vue.createElementVNode("span", {
|
|
2207
|
+
style: {"cursor":"pointer"},
|
|
2207
2208
|
onClick: $event => (addSuggestion(suggestion)),
|
|
2208
2209
|
class: vue.normalizeClass(["dropdown-item", vue.unref(selectedSuggestions).includes(suggestion) ? 'active':'']),
|
|
2209
2210
|
href: "#"
|
package/dist/library.mjs
CHANGED
|
@@ -2191,7 +2191,8 @@ return (_ctx, _cache) => {
|
|
|
2191
2191
|
}, [
|
|
2192
2192
|
(suggestion.name)
|
|
2193
2193
|
? (openBlock(), createElementBlock("li", _hoisted_7$8, [
|
|
2194
|
-
createElementVNode("
|
|
2194
|
+
createElementVNode("span", {
|
|
2195
|
+
style: {"cursor":"pointer"},
|
|
2195
2196
|
onClick: $event => (addSuggestion(suggestion)),
|
|
2196
2197
|
class: normalizeClass(["dropdown-item", unref(selectedSuggestions).includes(suggestion) ? 'active':'']),
|
|
2197
2198
|
href: "#"
|