@nymphjs/tilmeld-setup 1.0.0-beta.60 → 1.0.0-beta.62
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/CHANGELOG.md +10 -0
- package/app/src/routes/UserEdit.svelte +11 -1
- package/dist/app/index.js +357 -306
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-beta.62](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.61...v1.0.0-beta.62) (2024-06-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- assign generated and default groups to users created through admin app ([7ea0baa](https://github.com/sciactive/nymphjs/commit/7ea0baaf3a2c1285a63ee95ec153f38c169af6b6))
|
|
11
|
+
|
|
12
|
+
# [1.0.0-beta.61](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.60...v1.0.0-beta.61) (2024-06-14)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @nymphjs/tilmeld-setup
|
|
15
|
+
|
|
6
16
|
# [1.0.0-beta.60](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.59...v1.0.0-beta.60) (2024-06-14)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @nymphjs/tilmeld-setup
|
|
@@ -162,7 +162,17 @@
|
|
|
162
162
|
{/if}
|
|
163
163
|
|
|
164
164
|
{#if activeTab === 'Groups'}
|
|
165
|
-
|
|
165
|
+
{#if entity.guid == null}
|
|
166
|
+
<p style="margin-top: 0;">
|
|
167
|
+
When you leave primary group empty, if Nymph is configured to generate
|
|
168
|
+
primary groups, one will be generated for this new user. Otherwise,
|
|
169
|
+
Nymph will assign the default primary group. Likewise, when you leave
|
|
170
|
+
secondary groups empty, Nymph will assign the default secondary
|
|
171
|
+
groups.
|
|
172
|
+
</p>
|
|
173
|
+
{/if}
|
|
174
|
+
|
|
175
|
+
<h5 style={entity.guid == null ? '' : 'margin-top: 0;'}>Primary Group</h5>
|
|
166
176
|
|
|
167
177
|
<Paper
|
|
168
178
|
style="display: flex; justify-content: space-between; align-items: center;"
|