@genesislcap/blank-app-seed 3.30.0-prerelease.55 → 3.30.0-prerelease.57
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/.genx/package.json +1 -1
- package/.genx/versions.json +2 -2
- package/CHANGELOG.md +14 -0
- package/README.md +1 -3
- package/client-tmp/web-components/README.md +2 -2
- package/client-tmp/web-components/src/pbc/README.md +1 -1
- package/client-tmp/web-components/test/README.md +1 -1
- package/package.json +1 -1
- package/server/README.md +1 -1
- package/server/{{appName}}-app/src/test/kotlin/global/genesis/EventHandlerTest.kt +1 -1
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.30.0-prerelease.57](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.56...v3.30.0-prerelease.57) (2024-12-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#395) f97ef08
|
|
9
|
+
|
|
10
|
+
## [3.30.0-prerelease.56](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.55...v3.30.0-prerelease.56) (2024-12-03)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 3f499f6
|
|
16
|
+
|
|
3
17
|
## [3.30.0-prerelease.55](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.54...v3.30.0-prerelease.55) (2024-12-03)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -35,9 +35,7 @@ npx -y @genesislcap/genx@latest init myapp -x -s ./blank-app-seed --enableSSO --
|
|
|
35
35
|
|
|
36
36
|
## Next steps
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
If you need an introduction to the Genesis platform and its modules it's worth heading [here](https://learn.genesis.global/docs/getting-started/learn-the-basics/simple-introduction/).
|
|
38
|
+
If you need an introduction to the Genesis platform and its modules it's worth heading [here](https://docs.genesis.global/docs/develop/platform-overview/).
|
|
41
39
|
|
|
42
40
|
## Project structure
|
|
43
41
|
|
|
@@ -46,9 +46,9 @@ npm run baseline
|
|
|
46
46
|
|
|
47
47
|
## Styling
|
|
48
48
|
|
|
49
|
-
Genesis components are registered with a
|
|
49
|
+
Genesis components are registered with a Design System,
|
|
50
50
|
and the default system is named `rapid`. Design systems are highly configurable. You can configure them by importing and
|
|
51
|
-
modifying the tokens directly, or by using our [Design System Configuration](https://learn.genesis.global/docs/
|
|
51
|
+
modifying the tokens directly, or by using our [Design System Configuration](https://learn.genesis.global/docs/develop/client-capabilities/styling/direct-customization-genesis-components/styling-direct-dsc/)
|
|
52
52
|
tool in the context of your application.
|
|
53
53
|
|
|
54
54
|
Simply run the application, configure the design system, select Save Changes, and hit Save on popup, then restart your application.
|
|
@@ -5,4 +5,4 @@ a new changeset for you and your team to review and merge. You may choose to tai
|
|
|
5
5
|
`genx add` for fine grain control, but be aware that doing so makes it more difficult to automate future PBC upgrades.
|
|
6
6
|
You may need to re-add a PBC that you have previously edited and re-merge any changes to it yourself.
|
|
7
7
|
|
|
8
|
-
See the app README.md in `@genesislcap/foundation-shell/app` or visit https://
|
|
8
|
+
See the app README.md in `@genesislcap/foundation-shell/app` or visit https://docs.genesis.global/docs/develop/client-capabilities/ to learn more.
|
package/package.json
CHANGED
package/server/README.md
CHANGED
|
@@ -10,4 +10,4 @@ By default, the main module will be detected by a module ending with -app.
|
|
|
10
10
|
You can use the Genesis Gradle Settings plugin property `mainModuleName` to specify a custom name.
|
|
11
11
|
The Genesis Settings plugin is configured in server/settings.gradle.kts with the `genesis` extension.
|
|
12
12
|
|
|
13
|
-
For more details on project structures, see the [docs](https://
|
|
13
|
+
For more details on project structures, see the [docs](https://docs.genesis.global/docs/build-deploy-operate/build/project-structure/).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Full documentation on event handler tests may be found here >> https://
|
|
2
|
+
* Full documentation on event handler tests may be found here >> https://docs.genesis.global/docs/develop/server-capabilities/core-business-logic-event-handler/#testing
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import global.genesis.db.rx.entity.multi.AsyncEntityDb
|