-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (100 loc) · 5.71 KB
/
Copy pathindex.html
File metadata and controls
107 lines (100 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Integrated Controls — Beep Documentation</title>
<link rel="stylesheet" href="sphinx-style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
</head>
<body>
<button class="mobile-menu-toggle" onclick="toggleSidebar()"><i class="bi bi-list"></i></button>
<button class="theme-toggle" onclick="toggleTheme()" title="Toggle theme"><i class="bi bi-sun-fill" id="theme-icon"></i></button>
<div class="container">
<aside class="sidebar" id="sidebar">
<div class="logo">
<h2 style="font-size:1.1rem;margin:0;padding:0 1.5rem">Integrated Controls</h2>
<span style="font-size:.75rem;color:var(--meta);padding:0 1.5rem">Beep Data Management Engine</span>
</div>
<nav><ul class="nav-menu">
<li><a href="index.html"><i class="bi bi-house"></i> Home</a></li>
<li class="has-submenu"><a href="#"><i class="bi bi-puzzle"></i> Integrated Controls</a>
<ul class="submenu">
<li><a href="integrated-controls.html#beep-forms">BeepForms & BeepBlock</a></li>
<li><a href="integrated-controls.html#data-connection">BeepDataConnection</a></li>
<li><a href="integrated-controls.html#app-tree">BeepAppTree</a></li>
<li><a href="integrated-controls.html#forms-shell">Forms Shell Components</a></li>
<li><a href="integrated-controls.html#nuggets">NuggetsManage</a></li>
<li><a href="integrated-controls.html#helpers">Dynamic Helpers</a></li>
<li><a href="integrated-controls.html#block-definition">Block Definition Model</a></li>
</ul>
</li>
</ul></nav>
</aside>
<main class="content"><div class="content-wrapper">
<div class="page-header">
<h1>Integrated Controls</h1>
<p class="page-subtitle">Data-bound application framework for BeepDM — BeepForms, BeepBlock, BeepAppTree, BeepDataConnection, and NuggetsManage</p>
</div>
<div class="toc">
<h3>Documentation</h3>
<ul>
<li><a href="integrated-controls.html">Full Reference</a> — BeepForms, BeepBlock, BeepAppTree, Data Connection, Nuggets, Block Definition Model</li>
</ul>
</div>
<section class="section">
<h2>Components Overview</h2>
<table>
<thead><tr><th>Component</th><th>Purpose</th><th>Key Feature</th></tr></thead>
<tbody>
<tr><td><strong>BeepForms</strong></td><td>Application shell with toolbar, command bar, shelfs</td><td>Zero-code form generation</td></tr>
<tr><td><strong>BeepBlock</strong></td><td>Data-bound content panel</td><td>Auto-generated field presenters from definition</td></tr>
<tr><td><strong>BeepAppTree</strong></td><td>Branch-driven navigation tree</td><td>Auto-discovery from BranchesClasses</td></tr>
<tr><td><strong>BeepDataConnection</strong></td><td>Design-time connection manager</td><td>Tray component with designer support</td></tr>
<tr><td><strong>NuggetsManage</strong></td><td>NuGet package manager</td><td>Integrated package lifecycle</td></tr>
</tbody>
</table>
</section>
<section class="section">
<h2>Source</h2>
<p><code>Beep.Winform.Data.Integrated/Beep.Winform.Data.Integrated.Controls/</code></p>
<p><strong>Namespace:</strong> <code>TheTechIdea.Beep.Winform.Controls.Integrated</code></p>
</section>
<footer class="documentation-footer">
<div class="footer-content">
<div class="footer-copyright"><p>© 2024 The Tech Idea — Beep Data Management Engine</p></div>
</div>
</footer>
</div></main>
</div>
<script>
document.querySelectorAll('.has-submenu > a').forEach(function(a) {
a.addEventListener('click', function(e) {
if (this.getAttribute('href') === '#') e.preventDefault();
var li = this.parentElement;
li.classList.toggle('open');
});
});
function toggleTheme() {
var body = document.body, icon = document.getElementById('theme-icon');
if (body.getAttribute('data-theme') === 'dark') {
body.removeAttribute('data-theme'); icon.className = 'bi bi-sun-fill';
localStorage.setItem('theme', 'light');
} else {
body.setAttribute('data-theme', 'dark'); icon.className = 'bi bi-moon-fill';
localStorage.setItem('theme', 'dark');
}
}
function toggleSidebar() { document.getElementById('sidebar').classList.toggle('open'); }
(function() {
if (localStorage.getItem('theme') === 'dark') {
document.body.setAttribute('data-theme', 'dark');
document.getElementById('theme-icon').className = 'bi bi-moon-fill';
}
})();
</script>
</body>
</html>