Skip to content
Snippets Groups Projects
Commit 2211ebef authored by Sebastian Pongratz's avatar Sebastian Pongratz :ping_pong:
Browse files

Merge branch 'removeAlienModuleElements' into 'main'

move other code elements to their related modules + refactor extensionpoint names

See merge request !12
parents 9edd46ed d17c8d10
No related branches found
Tags 4.0.0
1 merge request!12move other code elements to their related modules + refactor extensionpoint names
Pipeline #38793 passed
......@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [4.0.0] - 2024-06-25
### Removed
- `openTopicTreeFavorite` and it's usages
- `openTopicTreePreset` and it's usages
### Changed
- Moved `Settings_FieldExtensionPoint` to the Field-type (from actions)
### Added
- `Settings_ActionFieldExtensionPoint` as a drop in replacement for the old `Settings_FieldExtensionPoint`
## [3.0.0]
### Changed
......
......@@ -124,16 +124,6 @@
<fieldName>Employees</fieldName>
</dependency>
</entityConsumer>
<entityActionField>
<name>openTopicTreeFavorite</name>
<title>manage Topic Tree Favorites</title>
<onActionProcess>%aditoprj%/entity/Usersettings_entity/entityfields/opentopictreefavorite/onActionProcess.js</onActionProcess>
</entityActionField>
<entityActionField>
<name>openTopicTreePreset</name>
<title>manage Topic Tree Presets</title>
<onActionProcess>%aditoprj%/entity/Usersettings_entity/entityfields/opentopictreepreset/onActionProcess.js</onActionProcess>
</entityActionField>
<entityField>
<name>sendNotificationAsMail</name>
<title>Get mail notifications</title>
......@@ -142,8 +132,11 @@
<state>AUTO</state>
</entityField>
<entityActionFieldExtensionPoint>
<name>Settings_FieldExtensionPoint</name>
<name>Settings_ActionFieldExtensionPoint</name>
</entityActionFieldExtensionPoint>
<entityFieldExtensionPoint>
<name>Settings_FieldExtensionPoint</name>
</entityFieldExtensionPoint>
</entityFields>
<recordContainers>
<jDitoRecordContainer>
......
import { neon, neonFilter } from "@aditosoftware/jdito-types";
//kind is being set using the provider that is behind the view, since the recipe params are only set when initially loading the view, but set to null once you edit or create a dataset
var recipe = neonFilter.createEntityRecordsRecipeBuilder()
.uidsIncludelist(null);
neon.openContextWithRecipe("TopicTreeTopicConfiguration", "TopicTreeTopicConfigurationFavoriteFilter_view", recipe.toString(), neon.OPERATINGSTATE_SEARCH);
\ No newline at end of file
import { neon, neonFilter } from "@aditosoftware/jdito-types";
//kind is being set using the provider that is behind the view, since the recipe params are only set when initially loading the view, but set to null once you edit or create a dataset
var recipe = neonFilter.createEntityRecordsRecipeBuilder()
.uidsIncludelist(null);
neon.openContextWithRecipe("TopicTreeTopicConfiguration", "TopicTreeTopicConfigurationPresetFilter_view", recipe.toString(), neon.OPERATINGSTATE_SEARCH);
\ No newline at end of file
......@@ -67,19 +67,6 @@
</entityFieldLink>
</fields>
</genericViewTemplate>
<genericViewTemplate>
<name>TopicTreeDrawer</name>
<showDrawer v="true" />
<drawerCaption>Topic Tree Configuration</drawerCaption>
<fixedDrawer v="true" />
</genericViewTemplate>
<actionsViewTemplate>
<name>TopicTreeActions</name>
<actions>
<element>openTopicTreeFavorite</element>
<element>openTopicTreePreset</element>
</actions>
</actionsViewTemplate>
<genericViewTemplate>
<name>Notification</name>
<editMode v="true" />
......
{
"name": "@aditosoftware/root",
"version": "3.0.0",
"version": "4.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@aditosoftware/root",
"version": "3.0.0",
"version": "4.0.0",
"devDependencies": {
"@aditosoftware/devtools": "^1.0.6",
"@aditosoftware/eslint-config-adito": "^3.2.0",
......
{
"name": "@aditosoftware/root",
"version": "3.0.0",
"version": "4.0.0",
"adito": {
"type": "module"
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment