### Example Renewal/Opportunity Entry Object (JSON) Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_data.md Illustrates the structure and typical data types for a single renewal or opportunity entry object used within the application's state and data handling. ```json { "id": "unique-entry-id-123", "name": "Acme Corp", "renewalDate": "2024-09-15", "sentDate": "2024-07-01", "closeDate": "2024-08-30", "amount": 1250.75, "opportunityId": "OPP-00123", "isChecked": false, "notes": "Follow up scheduled for Aug 15th." } ``` -------------------------------- ### HTML Structure for Chat Pro Sidebar Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML structure for the SolidCAM AI Chat sidebar, including a drag handle, header with title and close button, and an iframe for content. ```HTML

SolidCAM AI Chat

``` -------------------------------- ### Defining Key Stats Card HTML Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md This HTML snippet represents the structure for the Key Stats card within the totals summary, displaying placeholders for total entered and average confirmed amounts. ```html

Key Stats

Total Entered: ...

Average Confirmed: ...

``` -------------------------------- ### Defining Totals Summary Container HTML Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md This HTML snippet defines the main container div for the totals summary section, which holds various KPI cards like Progress Overview, Key Stats, and Total Confirmed Whole Value. ```html
``` -------------------------------- ### JSON File Save/Load Schema (JSON) Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_data.md Defines the structure of the JSON object used when saving or loading the entire application state to/from a file. It includes the array of client entries, the receipts goal, checked row IDs, and the current search term. ```json { "clients": [ // ... array of renewal objects ... ], "receiptsGoal": 55, "checkedRows": ["id1", "id2"], "searchTerm": "Acme" } ``` -------------------------------- ### HTML Script Tag for Main JavaScript Module Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Includes the main client-side JavaScript file (src/js/main.js) as a module, serving as the entry point for application logic. ```HTML ``` -------------------------------- ### Main HTML Structure - index.html Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md This snippet provides the core HTML layout for the iBramah application's main page. It defines the primary sections like the header, commander card for quick actions, modal for adding new entries, summary/totals area, search bar, and the main container where dynamic content (like month sections) is loaded. ```HTML

iBramah

Opportunity Tracker

Quick % Calc

System

AI Chats

Utilities

Progress Overview


Key Stats

Total Entered:

Average Confirmed:

Total Confirmed

``` -------------------------------- ### HTML Structure for Confirmation Modal Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML structure for a generic confirmation modal, including placeholders for header, content, and footer with action buttons. ```HTML ``` -------------------------------- ### HTML for Edit Modal Header and Close Button Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md Defines the structure for the header of the edit modal, including the title 'Edit License' and a close button that calls a JavaScript function when clicked. ```HTML ``` -------------------------------- ### HTML Structure for Generic Content Modal Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML structure for a generic modal capable of displaying arbitrary content, typically loaded into an iframe. ```HTML ``` -------------------------------- ### Defining Total Confirmed Whole Value Card HTML Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md This HTML snippet defines the structure for the Total Confirmed (Whole Value) card, showing the sum of confirmed opportunity amounts formatted as a whole number. ```html

Total Confirmed

$0

``` -------------------------------- ### HTML for Auto-Save Indicator Element Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md Defines the basic HTML structure for a simple text element used to display auto-save status messages to the user. ```HTML
Changes saved
``` -------------------------------- ### HTML Structure for Logo Hover Message Window Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML structure for a fancy message window that appears when hovering over the logo, along with its overlay. ```HTML ``` -------------------------------- ### HTML Structure for Edit Renewal Modal Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML structure for the modal used to edit renewal entries, including header, form area with a hidden input for the row ID, and action buttons. ```HTML ``` -------------------------------- ### HTML Structure for Auto-save Indicator Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/_context_structure.md Defines the HTML element used to display the auto-save status message to the user. ```HTML
Changes saved
``` -------------------------------- ### HTML for Edit Modal Save Changes Button Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md Defines the HTML structure for the Save Changes button within the edit modal's action area. This button calls a JavaScript function when clicked to save the edited data. ```HTML ``` -------------------------------- ### JavaScript Call to Save Edit Changes Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md This is a JavaScript function call used within an HTML onclick attribute to trigger the saving of data from the edit modal form. ```JavaScript saveEditChanges() ``` -------------------------------- ### JavaScript Call to Close Edit Modal Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md This is a JavaScript function call used within HTML onclick attributes to trigger the closing of the edit modal. ```JavaScript closeEditModal() ``` -------------------------------- ### HTML for Edit Modal Cancel Button Source: https://github.com/codyrf1990/ibrahma/blob/main/docs/UI_Guide.md Defines the HTML structure for the Cancel button within the edit modal's action area. This button calls a JavaScript function when clicked to close the modal without saving changes. ```HTML ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.