@frockbot/plugin-settings 0.3.16 → 0.3.17

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 CHANGED
@@ -43,6 +43,7 @@
43
43
  }
44
44
  ],
45
45
  "outlets": [
46
+ "frockbot.user-settings-primary-sections",
46
47
  "frockbot.user-settings-sections",
47
48
  "frockbot.bot-settings-sections",
48
49
  "frockbot.bot-settings-primary-sections",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-settings",
3
- "version": "0.3.16",
3
+ "version": "0.3.17",
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.16",
25
- "@frockbot/client-core": "0.3.16",
26
- "@frockbot/client-ui": "0.3.16",
27
- "@frockbot/configuration-core": "0.3.16",
28
- "@frockbot/connection-core": "0.3.16",
29
- "@frockbot/kernel-composition": "0.3.16",
30
- "@frockbot/kernel-contracts": "0.3.16",
31
- "@frockbot/plugin-auth": "0.3.16",
32
- "@frockbot/plugin-shell": "0.3.16",
24
+ "@frockbot/catalog-core": "0.3.17",
25
+ "@frockbot/client-core": "0.3.17",
26
+ "@frockbot/client-ui": "0.3.17",
27
+ "@frockbot/configuration-core": "0.3.17",
28
+ "@frockbot/connection-core": "0.3.17",
29
+ "@frockbot/kernel-composition": "0.3.17",
30
+ "@frockbot/kernel-contracts": "0.3.17",
31
+ "@frockbot/plugin-auth": "0.3.17",
32
+ "@frockbot/plugin-shell": "0.3.17",
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;