aab-prompts 1.1.4__py3-none-any.whl → 1.1.5__py3-none-any.whl

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.
@@ -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
@@ -3,7 +3,7 @@ prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  prompts/breadcrumbs.py,sha256=GrcI7w_6VbOG7vo3F5afHMJQKTpClePllEW1OMdHcps,5621
4
4
  prompts/constants.py,sha256=3QtDlHG1jr5KRK1kfX5F_1CEtc2QEB0JWl0Cir-bbp4,53274
5
5
  prompts/expressions.py,sha256=O7MGKCFNrDn5Wm8V_JvP5Q-3NVKdREkgFwVnlL0CYac,22740
6
- prompts/menu_navigations.py,sha256=dQRs2nQR18oTUqykJ4AJNyGlg79IuuaZ5gc0MDfiWgw,14005
6
+ prompts/menu_navigations.py,sha256=LcNr0JcZlaj8kfXR1ryKi3p4mSawBvBRnE-Y4i9nQ5M,14109
7
7
  prompts/objects_fields.py,sha256=1-BA4Tm7UOxJxtIyfSQ0xZLotkHe6uiFey8uoAXdOJE,35926
8
8
  prompts/page_planner.py,sha256=C1DXktj-O2LvJpapHgv1X2AL8zrLY5LtDaRl1fxOwX8,6686
9
9
  prompts/pages.py,sha256=j_hg7waPG81wB5ZMyEdCaCj3iLrBr24y6EjbP6U2rEc,7177
@@ -13,8 +13,8 @@ prompts/solutions_applications.py,sha256=mDlFM04p2q173zCsH_Ykrp6f37kiwPXUvlPYgEV
13
13
  prompts/view_filter_planner.py,sha256=DtYZQ7qfFZiXMYosjSGPiPmUu8cSFYAjcAgpCbZf9LA,3466
14
14
  prompts/view_links_planner.py,sha256=Bb7UUO15LIDmNjzkFZyzT3eAWCWnzcrm4vvyc8NsJJA,2341
15
15
  prompts/view_planner.py,sha256=Og1bOeDqcMIGLAKzYiJAJLgPLaxQ9Wf7nydfFAzivRY,3803
16
- prompts/views.py,sha256=4curDW2U_gMnQsTkoDQy193MvF_EAEMPpnZxIiNsp0A,21617
17
- aab_prompts-1.1.4.dist-info/METADATA,sha256=rsz4RfUHbUi0elE6ZqTt_re7Sl8HyAenEKj5opG2YgU,712
18
- aab_prompts-1.1.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
19
- aab_prompts-1.1.4.dist-info/top_level.txt,sha256=bvREqxmC7tnWTsG-q-oA5Qzkt1SLk0sK3aD5wlHjhII,20
20
- aab_prompts-1.1.4.dist-info/RECORD,,
16
+ prompts/views.py,sha256=l2U2i6he2I8G-fOE4Ws6mnAriCpMGmqT40oAjsdrKYc,21672
17
+ aab_prompts-1.1.5.dist-info/METADATA,sha256=0OHGOUJ2ADnGlLNzC4h0yUNLgFIdyR9QUhPbHy4i9ug,712
18
+ aab_prompts-1.1.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
19
+ aab_prompts-1.1.5.dist-info/top_level.txt,sha256=bvREqxmC7tnWTsG-q-oA5Qzkt1SLk0sK3aD5wlHjhII,20
20
+ aab_prompts-1.1.5.dist-info/RECORD,,
@@ -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.
prompts/views.py CHANGED
@@ -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