@frockbot/plugin-settings 0.3.16 → 0.3.18
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/frockbot.json +1 -0
- package/package.json +10 -10
- package/src/client/UserSettingsSurface.vue +9 -0
package/frockbot.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-settings",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@frockbot/catalog-core": "0.3.
|
|
25
|
-
"@frockbot/client-core": "0.3.
|
|
26
|
-
"@frockbot/client-ui": "0.3.
|
|
27
|
-
"@frockbot/configuration-core": "0.3.
|
|
28
|
-
"@frockbot/connection-core": "0.3.
|
|
29
|
-
"@frockbot/kernel-composition": "0.3.
|
|
30
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
31
|
-
"@frockbot/plugin-auth": "0.3.
|
|
32
|
-
"@frockbot/plugin-shell": "0.3.
|
|
24
|
+
"@frockbot/catalog-core": "0.3.18",
|
|
25
|
+
"@frockbot/client-core": "0.3.18",
|
|
26
|
+
"@frockbot/client-ui": "0.3.18",
|
|
27
|
+
"@frockbot/configuration-core": "0.3.18",
|
|
28
|
+
"@frockbot/connection-core": "0.3.18",
|
|
29
|
+
"@frockbot/kernel-composition": "0.3.18",
|
|
30
|
+
"@frockbot/kernel-contracts": "0.3.18",
|
|
31
|
+
"@frockbot/plugin-auth": "0.3.18",
|
|
32
|
+
"@frockbot/plugin-shell": "0.3.18",
|
|
33
33
|
"cordis": "4.0.0-rc.8",
|
|
34
34
|
"vue": "3.5.41"
|
|
35
35
|
},
|
|
@@ -95,6 +95,9 @@ async function save(): Promise<void> {
|
|
|
95
95
|
Open Plugins
|
|
96
96
|
</UiButton>
|
|
97
97
|
</UiAnchor>
|
|
98
|
+
<div class="primary-contributions">
|
|
99
|
+
<k-slot name="frockbot.user-settings-primary-sections" />
|
|
100
|
+
</div>
|
|
98
101
|
<p v-if="web.settingsError" class="settings-error" role="alert">
|
|
99
102
|
{{ web.settingsError }}
|
|
100
103
|
</p>
|
|
@@ -188,6 +191,12 @@ async function save(): Promise<void> {
|
|
|
188
191
|
justify-content: flex-end;
|
|
189
192
|
}
|
|
190
193
|
|
|
194
|
+
.primary-contributions {
|
|
195
|
+
display: flex;
|
|
196
|
+
flex-direction: column;
|
|
197
|
+
gap: var(--frock-radius-control);
|
|
198
|
+
}
|
|
199
|
+
|
|
191
200
|
.advanced {
|
|
192
201
|
border-top: 1px solid var(--frock-border);
|
|
193
202
|
padding-top: 12px;
|