AyCode.Blazor/AyCode.Blazor.Components/Components
Loretta d5fdd57ddd Enforce strict AI agent protocol, doc sync, and glossary
- Added "AI AGENT CORE PROTOCOL" to all copilot-instructions.md files: mandates [LOADED_DOCS] prefix, hard-gates tool usage, enforces no-re-read of .md files, and requires user consent for doc/code changes.
- Updated CLAUDE.md to require reading copilot-instructions.md first.
- Added topic-based doc separation and folder navigation rules.
- Changed doc sync: agent now passively detects discrepancies and asks before updating docs.
- Every code-modifying response must end with a [DOCUMENTATION CHECK] section.
- Centralized measurement system and domain traps in new FruitBank.Common/docs/GLOSSARY.md; updated references in FruitBankHybridApp GLOSSARY.md.
- Clarified schema and doc locations in FruitBankHybridApp README.md.
- Added hybrid execution model section to AyCode.Core BINARY_FEATURES.md.
- Removed unnecessary BeginUpdate/EndUpdate calls in MgGridBase.cs for layout persistence.
- Removed full Toon schema from plugin SCHEMA.md to avoid duplication.
2026-04-02 09:02:54 +02:00
..
CardViews Update docs: enforce .md sync, clarify structure & TFMs 2026-03-29 09:26:15 +02:00
Grids Enforce strict AI agent protocol, doc sync, and glossary 2026-04-02 09:02:54 +02:00
AcButton.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcComboBox.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcComponentBase.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcDxDateEdit.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcFormLayoutItem.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcMaskedInput.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcMemo.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcSpinEdit.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
AcTextBox.cs Add Revenue to Transfer; improvements, fixes, etc... 2024-07-08 07:31:22 +02:00
MgComponentsHelper.cs Refactor MgGridInfoPanel for theme, UX, and PDF perf 2025-12-19 13:59:00 +01:00
MgLazyLoadContent.razor Add MgLazyLoadContent, grid layout refactor, tests 2025-12-21 16:29:36 +01:00
README.md Update docs: enforce .md sync, clarify structure & TFMs 2026-03-29 09:26:15 +02:00

README.md

Components

DevExpress component wrappers and grid infrastructure for the AyCode Blazor component library. Each Ac* class extends a DevExpress Blazor control to allow project-wide customization from a single point.

Key Files

  • AcComponentBase.cs -- Abstract base class extending DxComponentBase.
  • AcButton.cs -- Extends DxButton.
  • AcTextBox.cs -- Extends DxTextBox.
  • AcComboBox.cs -- Generic wrapper for DxComboBox<TData, TValue>.
  • AcDxDateEdit.cs -- Generic wrapper for DxDateEdit<T>.
  • AcFormLayoutItem.cs -- Extends DxFormLayoutItem.
  • AcMaskedInput.cs -- Generic wrapper for DxMaskedInput<T>.
  • AcMemo.cs -- Extends DxMemo.
  • AcSpinEdit.cs -- Generic wrapper for DxSpinEdit<T>.
  • MgComponentsHelper.cs -- Placeholder helper class (currently empty).

Subfolders

  • CardViews/ -- Generic card-based view component with pagination.
  • Grids/ -- Core grid system with SignalR data binding, toolbar, info panel, and layout persistence.