aab-prompts 1.1.4__tar.gz → 1.1.5__tar.gz

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.
Files changed (24) hide show
  1. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/PKG-INFO +1 -1
  2. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/aab_prompts.egg-info/PKG-INFO +1 -1
  3. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/menu_navigations.py +3 -1
  4. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/views.py +2 -1
  5. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/pyproject.toml +1 -1
  6. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/aab_prompts.egg-info/SOURCES.txt +0 -0
  7. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/aab_prompts.egg-info/dependency_links.txt +0 -0
  8. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/aab_prompts.egg-info/top_level.txt +0 -0
  9. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/aab_service.py +0 -0
  10. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/__init__.py +0 -0
  11. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/breadcrumbs.py +0 -0
  12. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/constants.py +0 -0
  13. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/expressions.py +0 -0
  14. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/objects_fields.py +0 -0
  15. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/page_planner.py +0 -0
  16. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/pages.py +0 -0
  17. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/planner.py +0 -0
  18. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/router.py +0 -0
  19. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/solutions_applications.py +0 -0
  20. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/view_filter_planner.py +0 -0
  21. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/view_links_planner.py +0 -0
  22. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/prompts/view_planner.py +0 -0
  23. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/setup.cfg +0 -0
  24. {aab_prompts-1.1.4 → aab_prompts-1.1.5}/tests/test_prompts.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aab-prompts
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Summary: AAB Prompts - Application Builder prompt management library
5
5
  Author: AAB Prompts
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aab-prompts
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Summary: AAB Prompts - Application Builder prompt management library
5
5
  Author: AAB Prompts
6
6
  License: MIT
@@ -39,7 +39,8 @@ When to create a menu:
39
39
  - When organizing large features requires isolated navigation groups.
40
40
 
41
41
  When NOT to create a menu:
42
- - If a menu for that location already exists.
42
+ - If the same menu already exists
43
+ - If a menu for the same location and the same application already exists.
43
44
  - For workflow steps or temporary flows (those belong inside views).
44
45
  - For pages that do not need a dedicated navigation region.
45
46
 
@@ -102,6 +103,7 @@ When navigations are used:
102
103
  - CRM → Leads, Deals, Contacts
103
104
 
104
105
  When NOT to use navigations:
106
+ - if the same navigation already exists.
105
107
  - For form steps or workflow states.
106
108
  - For view configuration logic (handled by the View Agent).
107
109
  - For system-level features hidden from user navigation.
@@ -162,7 +162,8 @@ Create a View when:
162
162
  - You want a unique set of fields, filter conditions, field show logic (SHOWIF), field edit logic (EDITIF), field validity logic (VALIDIF) for a particular role or function.
163
163
 
164
164
  Do NOT create a View when:
165
- - it is satisfied with a custom page
165
+ - the view already exists. do not duplicate views.
166
+ - it can be satisfied with a custom page
166
167
 
167
168
 
168
169
  ## View Types
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aab-prompts"
7
- version = "1.1.4"
7
+ version = "1.1.5"
8
8
  description = "AAB Prompts - Application Builder prompt management library"
9
9
  requires-python = ">=3.8"
10
10
  license = {text = "MIT"}
File without changes
File without changes