Created
March 24, 2026 10:34
-
-
Save juniormartinxo/c46e5a0b53b25ac9fb8f45c792beea16 to your computer and use it in GitHub Desktop.
Repository Wiki — generated by GitNexus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>frontend-modern — Wiki</title> | |
| <script src="https://cdn.jsdelivr.net/npm/marked@11.0.0/marked.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js"></script> | |
| <style> | |
| *{margin:0;padding:0;box-sizing:border-box} | |
| :root{ | |
| --bg:#ffffff;--sidebar-bg:#f8f9fb;--border:#e5e7eb; | |
| --text:#1e293b;--text-muted:#64748b;--primary:#2563eb; | |
| --primary-soft:#eff6ff;--hover:#f1f5f9;--code-bg:#f1f5f9; | |
| --radius:8px;--shadow:0 1px 3px rgba(0,0,0,.08); | |
| } | |
| body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif; | |
| line-height:1.65;color:var(--text);background:var(--bg)} | |
| .layout{display:flex;min-height:100vh} | |
| .sidebar{width:280px;background:var(--sidebar-bg);border-right:1px solid var(--border); | |
| position:fixed;top:0;left:0;bottom:0;overflow-y:auto;padding:24px 16px; | |
| display:flex;flex-direction:column;z-index:10} | |
| .content{margin-left:280px;flex:1;padding:48px 64px;max-width:960px} | |
| .sidebar-header{margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--border)} | |
| .sidebar-title{font-size:16px;font-weight:700;color:var(--text);display:flex;align-items:center;gap:8px} | |
| .sidebar-title svg{flex-shrink:0} | |
| .sidebar-meta{font-size:11px;color:var(--text-muted);margin-top:6px} | |
| .nav-section{margin-bottom:2px} | |
| .nav-item{display:block;padding:7px 12px;border-radius:var(--radius);cursor:pointer; | |
| font-size:13px;color:var(--text);text-decoration:none;transition:all .15s; | |
| white-space:nowrap;overflow:hidden;text-overflow:ellipsis} | |
| .nav-item:hover{background:var(--hover)} | |
| .nav-item.active{background:var(--primary-soft);color:var(--primary);font-weight:600} | |
| .nav-item.overview{font-weight:600;margin-bottom:4px} | |
| .nav-children{padding-left:14px;border-left:1px solid var(--border);margin-left:12px} | |
| .nav-group-label{font-size:11px;font-weight:600;color:var(--text-muted); | |
| text-transform:uppercase;letter-spacing:.5px;padding:12px 12px 4px;user-select:none} | |
| .sidebar-footer{margin-top:auto;padding-top:16px;border-top:1px solid var(--border); | |
| font-size:11px;color:var(--text-muted);text-align:center} | |
| .content h1{font-size:28px;font-weight:700;margin-bottom:8px;line-height:1.3} | |
| .content h2{font-size:22px;font-weight:600;margin:32px 0 12px;padding-bottom:6px;border-bottom:1px solid var(--border)} | |
| .content h3{font-size:17px;font-weight:600;margin:24px 0 8px} | |
| .content h4{font-size:15px;font-weight:600;margin:20px 0 6px} | |
| .content p{margin:12px 0} | |
| .content ul,.content ol{margin:12px 0 12px 24px} | |
| .content li{margin:4px 0} | |
| .content a{color:var(--primary);text-decoration:none} | |
| .content a:hover{text-decoration:underline} | |
| .content blockquote{border-left:3px solid var(--primary);padding:8px 16px;margin:16px 0; | |
| background:var(--primary-soft);border-radius:0 var(--radius) var(--radius) 0; | |
| color:var(--text-muted);font-size:14px} | |
| .content code{font-family:'SF Mono',Consolas,'Courier New',monospace;font-size:13px; | |
| background:var(--code-bg);padding:2px 6px;border-radius:4px} | |
| .content pre{background:#1e293b;color:#e2e8f0;border-radius:var(--radius);padding:16px; | |
| overflow-x:auto;margin:16px 0} | |
| .content pre code{background:none;padding:0;font-size:13px;line-height:1.6;color:inherit} | |
| .content table{border-collapse:collapse;width:100%;margin:16px 0} | |
| .content th,.content td{border:1px solid var(--border);padding:8px 12px;text-align:left;font-size:14px} | |
| .content th{background:var(--sidebar-bg);font-weight:600} | |
| .content img{max-width:100%;border-radius:var(--radius)} | |
| .content hr{border:none;border-top:1px solid var(--border);margin:32px 0} | |
| .content .mermaid{margin:20px 0;text-align:center} | |
| .menu-toggle{display:none;position:fixed;top:12px;left:12px;z-index:20; | |
| background:var(--bg);border:1px solid var(--border);border-radius:var(--radius); | |
| padding:8px 12px;cursor:pointer;font-size:18px;box-shadow:var(--shadow)} | |
| @media(max-width:768px){ | |
| .sidebar{transform:translateX(-100%);transition:transform .2s} | |
| .sidebar.open{transform:translateX(0);box-shadow:2px 0 12px rgba(0,0,0,.1)} | |
| .content{margin-left:0;padding:24px 20px;padding-top:56px} | |
| .menu-toggle{display:block} | |
| } | |
| .empty-state{text-align:center;padding:80px 20px;color:var(--text-muted)} | |
| .empty-state h2{font-size:20px;margin-bottom:8px;border:none} | |
| </style> | |
| </head> | |
| <body> | |
| <button class="menu-toggle" id="menu-toggle" aria-label="Toggle menu">☰</button> | |
| <div class="layout"> | |
| <nav class="sidebar" id="sidebar"> | |
| <div class="sidebar-header"> | |
| <div class="sidebar-title"> | |
| <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M2 3h6a4 4 0 014 4v14a3 3 0 00-3-3H2z"/><path d="M22 3h-6a4 4 0 00-4 4v14a3 3 0 013-3h7z"/></svg> | |
| frontend-modern | |
| </div> | |
| <div class="sidebar-meta" id="meta-info"></div> | |
| </div> | |
| <div id="nav-tree"></div> | |
| <div class="sidebar-footer">Generated by GitNexus</div> | |
| </nav> | |
| <main class="content" id="content"> | |
| <div class="empty-state"><h2>Loading…</h2></div> | |
| </main> | |
| </div> | |
| <script> | |
| var PAGES = {"apps-cfi-next-remote":"# apps — cfi-next-remote\n\n# cfi-next-remote\n\nLegacy compatibility adapter for the CFI (Custom Formula Indicator) module federation remote.\n\n## Overview\n\n`cfi-next-remote` is a **placeholder application** (Phase 4 implementation) designed to serve as a thin compatibility layer between the modernized `@frontend-modern/cfi-core` package and legacy consumers that still operate on Next.js 12 and React 17.\n\nThis module does not contain business logic. Instead, it acts as a federation shell that imports the core package and re-exports specific components through Module Federation, preserving the existing contract for legacy applications.\n\n## Current Status\n\n**⚠️ Not yet implemented.** All npm scripts currently output placeholder messages:\n\n```bash\nnpm run dev # → \"cfi-next-remote: não implementado ainda (placeholder)\"\nnpm run build # → \"cfi-next-remote: não implementado ainda (placeholder)\"\nnpm run typecheck # → \"cfi-next-remote: não implementado ainda (placeholder)\"\n```\n\n## Architecture\n\n```mermaid\ngraph TB\n subgraph \"Legacy Consumers\"\n bui[bui - Next.js]\n cui[cui - Next.js]\n dre[dre - Next.js]\n base[base - Vite]\n end\n\n subgraph \"cfi-next-remote\"\n adapter[Compatibility Adapter]\n adapter --> |imports| core\n adapter --> |exposes| ib[IndicatorBuilder]\n adapter --> |exposes| fvm[FormulaViewModal]\n end\n\n subgraph \"Packages\"\n core[\"@frontend-modern/cfi-core\"]\n end\n\n bui --> |Module Federation| adapter\n cui --> |Module Federation| adapter\n dre --> |Module Federation| adapter\n base --> |loadRemote| adapter\n```\n\n## Responsibilities\n\n| Responsibility | Description |\n|----------------|-------------|\n| **Core Import** | Imports `@frontend-modern/cfi-core` as a workspace dependency |\n| **Federation Expose** | Exposes `IndicatorBuilder` and `FormulaViewModal` via Module Federation |\n| **Legacy Compatibility** | Maintains Next.js 12 + React 17 compatibility for consumers |\n| **Config Adaptation** | Transforms `NEXT_PUBLIC_*` environment variables to `CfiRuntimeConfig` format |\n\n## Federated Contract\n\nLegacy consumers continue to use the existing import paths:\n\n```typescript\n// Dynamic imports remain unchanged\nimport(\"cfi/IndicatorBuilder\")\nimport(\"cfi/FormulaViewModal\")\n```\n\nThe remote entry point location is preserved:\n\n```\n/_next/static/chunks/remote-cfi.js\n```\n\n## Dependencies\n\n```json\n{\n \"dependencies\": {\n \"@frontend-modern/cfi-core\": \"workspace:*\"\n }\n}\n```\n\nThe sole dependency is the extracted core package, which contains all business logic and React components.\n\n## Implementation Prerequisites\n\nThis module should be implemented when:\n\n1. **Core extraction complete** — `packages/cfi-core` has all components and logic extracted\n2. **Consumer update needed** — Legacy consumers require an updated CFI version\n3. **Migration decision made** — Team decides to replace the current Next.js app with this adapter shell\n\n## Technology Stack\n\n| Technology | Version | Rationale |\n|------------|---------|-----------|\n| Next.js | 12.x | Matches legacy consumer expectations |\n| React | 17.x | Matches legacy consumer expectations |\n| `@module-federation/nextjs-mf` | — | Module Federation plugin for Next.js 12 |\n\n## Migration Path\n\nOnce implemented, this adapter enables a clean separation:\n\n1. **Phase 1-3**: Extract CFI logic to `@frontend-modern/cfi-core`\n2. **Phase 4**: Implement this adapter to wrap the core package\n3. **Phase 5+**: Legacy consumers can be gradually migrated to newer stacks, while this adapter continues serving those that cannot migrate immediately","docs":"# docs\n\n# Documentation Module\n\nThe `docs/` directory contains comprehensive documentation for the `frontend-modern` monorepo, tracking a multi-phase migration project that consolidated two independent frontend applications into a unified workspace.\n\n## Purpose\n\nThis module serves as the source of truth for:\n\n1. **Migration History** — Detailed records of each migration phase, decisions made, and criteria verified\n2. **Deployment Conventions** — CI/CD pipeline configuration, environment strategies, and versioning policies\n3. **Technical Plans** — Future work proposals and implementation roadmaps\n4. **Templates** — Reusable templates for consistent documentation practices\n\n## Structure\n\n```\ndocs/\n├── deploy/\n│ └── conventions.md # CI/CD and deployment policies\n├── migration/\n│ ├── fase-1-workspace.md # Monorepo root creation\n│ ├── fase-2-tooling.md # Shared tooling consolidation\n│ ├── fase-2.5-compatibilidade.md # Package compatibility matrix\n│ ├── fase-3-boundaries.md # Internal package boundaries\n│ ├── fase-4-cfi.md # CFI core package preparation\n│ ├── fase-5-cfi-consumo.md # CFI direct consumption migration\n│ ├── fase-6-ci.md # CI/CD pipeline setup\n│ └── fase-7-consolidacao.md # Final cleanup and roadmap\n├── plans/\n│ └── internalizar-goapice-react-libs.md # Internalization plan\n└── templates/\n └── code-review-report.md # Code review template\n```\n\n## Migration Overview\n\nThe migration followed a deliberate sequence of phases, each with explicit exit criteria:\n\n```mermaid\nflowchart LR\n F1[Fase 1<br/>Workspace] --> F2[Fase 2<br/>Tooling]\n F2 --> F2_5[Fase 2.5<br/>Compatibility]\n F2_5 --> F3[Fase 3<br/>Boundaries]\n F3 --> F4[Fase 4<br/>CFI Core]\n F4 --> F5[Fase 5<br/>CFI Migration]\n F5 --> F6[Fase 6<br/>CI/CD]\n F6 --> F7[Fase 7<br/>Consolidation]\n```\n\n### Key Decisions by Phase\n\n| Phase | Key Decision |\n|-------|-------------|\n| **1** | Consolidate configs at root, preserve intentional divergences (Vite, react-query, ESLint versions) |\n| **2** | Create `tsconfig.base.json`, `packages/tooling-config`, defer Turborepo |\n| **2.5** | Define compatibility matrix for shared packages — React 18 as peer, avoid styled-components/react-query in packages |\n| **3** | Create `federation-contracts` and `shell-shared` packages, enforce cross-app import bans via ESLint |\n| **4** | Extract CFI types, contracts, and components into `cfi-core` with config injection pattern |\n| **5** | Replace Module Federation with direct workspace imports, remove CFI shims and flags |\n| **6** | Granular CI with impact detection, `allow_failure` for pre-existing errors |\n| **7** | Document dependency divergence roadmap, establish ownership governance |\n\n## Document Summaries\n\n### `deploy/conventions.md`\n\nDefines deployment strategy for the monorepo:\n\n- **Environments**: develop → staging → production (Vercel for `base`, TODO for `golyzer`)\n- **Branch flow**: Automatic deploys on merge to protected branches\n- **Fan-out rules**: Changes to `packages/**` trigger validation of all consuming apps\n- **Versioning**: No semantic versioning yet; apps identified by branch + commit SHA\n- **Variables**: Documents required CI variables (`VERCEL_TOKEN`, `VERCEL_PROJECT_ID`, etc.)\n\n### `migration/fase-1-workspace.md` through `fase-7-consolidacao.md`\n\nEach migration phase document follows a consistent structure:\n\n1. **Status and Date** — Completion state and timeline\n2. **What was done** — Detailed changes with file references\n3. **Exit criteria** — Checklist of verified conditions\n4. **Known issues** — Pre-existing problems not introduced by migration\n5. **Decisions** — Explicit choices with rationale\n\n### `plans/internalizar-goapice-react-libs.md`\n\nProposed plan to internalize `@goapice/react-*` packages from an external npm registry into the monorepo:\n\n- **Motivation**: Eliminate patches, shims, and slow fix cycles\n- **Inventory**: Usage analysis across both apps\n- **Execution phases**: Create packages → Adapt code → Update consumers → Cleanup\n- **Risks**: Divergence between local `src/guapo/` and upstream, version compatibility\n\n### `templates/code-review-report.md`\n\nStandardized template for code reviews with:\n\n- Metadata section (author, date, branch, scope)\n- Findings ordered by severity\n- Questions and assumptions\n- Residual risks and test gaps\n- Validation checklist\n\n## Usage Guidelines\n\n### For Developers\n\n1. **Before making architectural changes**, review `fase-2.5-compatibilidade.md` for the package compatibility matrix\n2. **When adding new packages**, follow the peer dependency rules established in Phase 2.5\n3. **For CI/CD changes**, reference `deploy/conventions.md` for branch and environment conventions\n\n### For Maintainers\n\n1. **Update migration docs** when completing phases — maintain the checklist format\n2. **Add new plans** to `docs/plans/` with clear motivation, inventory, and execution phases\n3. **Keep the compatibility matrix current** when dependency versions change\n\n## Ownership Governance\n\n| Package | Owner | Responsibility |\n|---------|-------|----------------|\n| `apps/base` | Platform team | Shell SPA, auth, routing, domain integrations |\n| `apps/golyzer` | Analytics team | BI dashboards, charts, interactivity |\n| `packages/cfi-core` | Analytics team | Indicator builder (domain logic) |\n| `packages/federation-contracts` | Shared | MFE contracts — changes require cross-team review |\n| `packages/shell-shared` | Shared | Generic hooks — minimal, stable scope |\n| `packages/tooling-config` | Shared | Tooling presets — changes affect all apps |\n\n## Dependency Divergence Roadmap\n\nFrom `fase-7-consolidacao.md`, the prioritized convergence path:\n\n| Priority | Dependency | From → To | Status |\n|----------|------------|-----------|--------|\n| 1 | axios | 0.21 → 1.x (base) | Blocks shared services |\n| 2 | react-query | v3 → @tanstack v5 (base) | Enables shared cache |\n| 3 | ESLint | legacy → flat config (golyzer) | Unifies tooling |\n| 4 | styled-components | v5 → v6 (base) | Reduces runtime duplication |\n| 5 | Vite | 5 → 8 (base) | Lowest urgency |\n\n## Related Files\n\n- **Root `README.md`** — Operational commands and architecture overview (created in Phase 7)\n- **`scripts/detect-impact.sh`** — CI impact detection script (documented in Phase 6)\n- **`.gitlab-ci.yml`** — Pipeline configuration (documented in Phase 6)\n- **`pnpm-workspace.yaml`** — Workspace definition (created in Phase 1)","overview":"# frontend-modern — Wiki\n\n# frontend-modern\n\nWelcome to the **frontend-modern** monorepo — the central repository for the **GoApice** frontend ecosystem. This workspace unifies multiple frontend applications and shared packages using pnpm workspaces, enabling code reuse while maintaining independent deployment lifecycles.\n\n## What is this project?\n\nThis monorepo hosts two main applications that work together through Module Federation:\n\n- **Base** (`apps/base`) — The host SPA serving as the primary dashboard and management interface. It integrates multiple domains (Goask, Gotime, Gonext, Golyzer, Gotrade) and dynamically loads micro-frontends at runtime.\n\n- **Golyzer** (`apps/golyzer`) — A BI panel builder and visualizer. It can run standalone on port 3004 or be loaded as a micro-frontend inside Base.\n\nThese applications share functionality through packages like [cfi-core](packages-cfi-core.md) (the financial indicator formula editor built on Slate.js) and [federation-contracts](packages-federation-contracts.md) (Module Federation types and URL resolvers).\n\n## Architecture\n\n```mermaid\ngraph TB\n subgraph \"Host Application\"\n Base[apps/base<br/>Port 3090]\n end\n \n subgraph \"Micro-Frontend\"\n Golyzer[apps/golyzer<br/>Port 3004]\n end\n \n subgraph \"Shared Packages\"\n CFICore[cfi-core]\n FedContracts[federation-contracts]\n ShellShared[shell-shared]\n end\n \n Base -->|loads via Module Federation| Golyzer\n Golyzer --> CFICore\n Base --> FedContracts\n Golyzer --> FedContracts\n Base --> ShellShared\n Golyzer --> ShellShared\n```\n\nThe architecture follows a **micro-frontend pattern** where Base acts as the shell, loading Golyzer at runtime. Both applications consume shared packages for consistent behavior. The bidirectional relationship between Base and Golyzer (over 200 cross-calls combined) reflects their tight integration while maintaining deployment independence.\n\n## Key End-to-End Flows\n\nUnderstanding the main data flows helps navigate the codebase:\n\n1. **Data Filtering Flow** — User interactions with filter components trigger a chain through `useTreeFilter` → `useDatasetsQuery` → normalization functions (`normalizeDatasetsResponse`, `normalizeRequestFilters`), producing API-ready request filters.\n\n2. **Chart Data Requests** — The `requestDataCancellable` service orchestrates cancellable data requests, generating tree filters recursively before making API calls.\n\n3. **Development Mocking** — During development, `setupMocks` initializes handlers that persist mock panel data to browser storage, enabling offline development.\n\n4. **Scatter Chart Selection** — User selections flow through operation handlers (`select` → `handleSelection` → `applySelectionVisuals`), resolving series data and accessing runtime storage.\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (check `.nvmrc` for version)\n- pnpm\n\n### Installation\n\n```bash\npnpm install\n```\n\n### Running Applications\n\n```bash\n# Run Base (host application)\npnpm dev:base\n\n# Run Golyzer standalone\npnpm dev:golyzer:standalone\n\n# Run Golyzer as MFE (requires Base running)\npnpm dev:golyzer\n```\n\n### Common Commands\n\n```bash\npnpm typecheck # Type checking\npnpm lint # Linting\npnpm test # Run tests\npnpm build # Production build\n```\n\n## Exploring the Codebase\n\nStart with these key modules:\n\n- **[apps/base](apps-base.md)** — The host application and primary entry point\n- **[apps/golyzer](apps-golyzer.md)** — The BI panel builder\n- **[packages/cfi-core](packages-cfi-core.md)** — Core indicator builder functionality\n- **[packages/federation-contracts](packages-federation-contracts.md)** — Module Federation contracts\n- **[packages/shell-shared](packages-shell-shared.md)** — Shared hooks and utilities\n\nFor migration history and deployment conventions, see the [docs](docs.md) module. For CI/CD impact detection scripts, see [scripts](scripts.md). For third-party dependency patches, see [patches](patches.md).","packages-cfi-core":"# packages — cfi-core\n\n# @frontend-modern/cfi-core\n\nA React library for building and editing financial indicators through a rich formula editor. Built on Slate.js for rich text editing capabilities with support for variables, indicators, functions, and filters.\n\n## Overview\n\nThis package provides the core functionality for the \"Construtor de Indicadores\" (Indicator Builder) feature, enabling users to:\n\n- Create and edit financial indicators using a visual formula editor\n- Reference datasets and existing indicators within formulas\n- Apply filters to variables and indicators\n- Validate formula syntax in real-time\n- Save and load indicators via API\n\n## Installation\n\n```bash\nnpm install @frontend-modern/cfi-core\n```\n\n### Peer Dependencies\n\n```json\n{\n \"react\": \"^18.0.0\",\n \"react-dom\": \"^18.0.0\",\n \"antd\": \"^4.24.0\",\n \"@ant-design/icons\": \"^4.0.0 || ^5.0.0\",\n \"@goapice/react-datasets\": \"^2.7.0\",\n \"@goapice/react-guapo\": \"^1.3.0\",\n \"@goapice/react-functions-panel\": \"^1.0.0\"\n}\n```\n\n## Architecture\n\n```mermaid\ngraph TB\n subgraph \"Entry Points\"\n IBD[IndicatorBuilderDrawer]\n FVM[FormulaViewModal]\n end\n \n subgraph \"Core Components\"\n WS[Workspace]\n EL[Elements]\n FM[FiltersModal]\n end\n \n subgraph \"Context Layer\"\n SCP[SlateProvider]\n CFI[CfiConfigProvider]\n GFP[GeneralFiltersProvider]\n end\n \n subgraph \"Services\"\n API[Api]\n IA[IndicatorApi]\n end\n \n subgraph \"State & Validation\"\n SL[Slate Editor]\n SV[SyntaxValidation]\n ZS[Zustand Store]\n end\n \n IBD --> SCP\n IBD --> GFP\n SCP --> WS\n WS --> EL\n WS --> FM\n WS --> SL\n SL --> SV\n IBD --> IA\n IA --> API\n CFI --> IA\n EL --> ZS\n```\n\n## Key Components\n\n### IndicatorBuilderDrawer\n\nThe main entry point for creating/editing indicators. Wraps the formula editor with dataset selection and function panels.\n\n```tsx\nimport { IndicatorBuilderDrawer } from '@frontend-modern/cfi-core';\nimport { CfiConfigProvider } from '@frontend-modern/cfi-core/context';\n\nfunction App() {\n const config = {\n basePlatformApiUrl: 'https://api.example.com',\n datasetsApiUrl: 'https://datasets.example.com',\n };\n\n return (\n <CfiConfigProvider config={config}>\n <IndicatorBuilderDrawer\n open={isOpen}\n onClose={() => setIsOpen(false)}\n onSave={() => refreshList()}\n edit={indicatorToEdit} // Optional: pass indicator ID to edit\n />\n </CfiConfigProvider>\n );\n}\n```\n\n**Props:**\n- `open: boolean` - Controls drawer visibility\n- `onClose: () => void` - Called when drawer closes\n- `onSave?: () => void` - Called after successful save\n- `edit?: string` - Indicator ID to edit (loads existing indicator)\n\n### FormulaViewModal\n\nRead-only modal for viewing indicator formulas.\n\n```tsx\nimport { FormulaViewModal } from '@frontend-modern/cfi-core';\n\nfunction ViewIndicator({ indicatorId }: { indicatorId: string }) {\n const [open, setOpen] = useState(false);\n\n return (\n <>\n <Button onClick={() => setOpen(true)}>View Formula</Button>\n <FormulaViewModal\n open={open}\n indicatorId={indicatorId}\n onClose={() => setOpen(false)}\n onOk={(id, title) => {\n // Add indicator to equation\n addToEquation(id, title);\n setOpen(false);\n }}\n />\n </>\n );\n}\n```\n\n### Workspace\n\nThe Slate-based formula editor with keyboard handling and drag-drop support.\n\n```tsx\nimport { Workspace } from '@frontend-modern/cfi-core';\nimport { SlateProvider } from '@frontend-modern/cfi-core/context';\n\nfunction FormulaEditor() {\n return (\n <SlateProvider>\n <Workspace onChange={(body) => console.log('Content changed:', body)} />\n </SlateProvider>\n );\n}\n```\n\n## Context Providers\n\n### CfiConfigProvider\n\nProvides runtime configuration for API endpoints.\n\n```tsx\nimport { CfiConfigProvider, useCfiConfig } from '@frontend-modern/cfi-core/context';\n\nconst config = {\n basePlatformApiUrl: string; // Base URL for platform API\n datasetsApiUrl: string; // URL for datasets service\n};\n\n// Usage\n<CfiConfigProvider config={config}>\n <App />\n</CfiConfigProvider>\n\n// Access config\nfunction Component() {\n const config = useCfiConfig();\n // config.basePlatformApiUrl, config.datasetsApiUrl\n}\n```\n\n### SlateProvider\n\nManages the Slate editor instance and provides editor operations.\n\n```tsx\nimport { SlateProvider, useSlateEditor } from '@frontend-modern/cfi-core/context';\n\nfunction EditorComponent() {\n const {\n editor, // Slate editor instance\n hasErrors, // Boolean: syntax validation status\n validateSyntax, // () => boolean - validate current formula\n addNodes, // (nodes, at?) => void - insert nodes\n setNode, // (node, at) => void - replace node at position\n deleteNode, // (position) => void - remove node\n addToEditor, // (props) => void - add variable/indicator/function\n parseSelectedColumn, // (selected) => props - parse dataset column\n } = useSlateEditor();\n}\n```\n\n### GeneralFiltersProvider\n\nManages global indicator filters.\n\n```tsx\nimport { GeneralFiltersProvider, useGeneralFilters } from '@frontend-modern/cfi-core/context';\n\nfunction FilterComponent() {\n const { generalFilters, setGeneralFilters } = useGeneralFilters();\n // generalFilters: GeneralFilters\n // setGeneralFilters: (filters: GeneralFilters) => void\n}\n```\n\n## Element Types\n\nThe editor supports multiple element types rendered as styled inline elements:\n\n| Type | Description | Styling |\n|------|-------------|---------|\n| `text` | Plain text input | Default text color |\n| `number` | Numeric values | Magenta color |\n| `operator` | Math operators (+, -, *, /) | Grey color |\n| `parentheses` | Opening/closing parentheses | Green color |\n| `variable` | Dataset variable reference | Blue color, filterable |\n| `indicator` | Reference to another indicator | Purple color, filterable |\n| `operations` | Function (Sum, Avg, etc.) | Orange color |\n| `comparison` | Time comparison (Diária, Mensal, Anual) | Cyan color |\n| `placeholder` | Empty placeholder | Grey color |\n\n## Functions\n\nThe editor supports several built-in functions:\n\n| Function | Key | Description |\n|----------|-----|-------------|\n| Soma | `sum` | Sum aggregation |\n| Máximo | `max` | Maximum value |\n| Mínimo | `min` | Minimum value |\n| Média | `avg` | Average |\n| Contagem | `count` | Count records |\n| Contagem distinta | `count distinct` | Distinct count |\n| Variação | `variation` | Time-based variation |\n| Desvio % | `deviation` | Standard deviation percentage |\n| Participação % | `participation` | Participation percentage |\n| Média ponderada | `weightedAvg` | Weighted average |\n\n## Services\n\n### IndicatorApi\n\nCRUD operations for indicators.\n\n```tsx\nimport { IndicatorApi } from '@frontend-modern/cfi-core/services';\nimport { useCfiConfig } from '@frontend-modern/cfi-core/context';\n\nfunction useIndicator() {\n const config = useCfiConfig();\n const api = useMemo(() => new IndicatorApi(config), [config]);\n\n // Create indicator\n const indicator = await api.createIndicator({\n title: 'My Indicator',\n types: ['analytic'],\n content: { value: [...], filters: [...], filtersTree: [...] }\n });\n\n // Find indicator\n const existing = await api.findIndicator('indicator-id');\n\n // Update indicator\n await api.updateIndicator('indicator-id', payload);\n}\n```\n\n## Mappers\n\n### slateMapper\n\nConverts between Slate nodes and API format.\n\n```tsx\nimport { slateMapper } from '@frontend-modern/cfi-core/mappers';\n\n// Convert API format to Slate nodes\nconst slateNodes = slateMapper.to(apiContentValue, indicators);\n\n// Convert Slate nodes to API format\nconst apiValue = slateMapper.from(slateBody);\n```\n\n## Validation\n\n### SyntaxValidation\n\nValidates formula syntax for correctness.\n\n```tsx\nimport { SyntaxValidation } from '@frontend-modern/cfi-core/validations';\n\nconst validator = new SyntaxValidation(editorChildren);\nvalidator.validate();\n\nif (validator.hasErrors()) {\n const errors = validator.getErrors();\n // errors: { position: number; message: string }[]\n}\n```\n\nValidation rules include:\n- Adjacent operators are invalid\n- Variables/indicators must be separated by operators\n- Parentheses must be balanced\n- Functions must have valid arguments\n\n## Hooks\n\n### useDatasetData\n\nAccess dataset values for autocomplete.\n\n```tsx\nimport { useDatasetData } from '@frontend-modern/cfi-core/hooks';\n\nfunction Component() {\n const { datasetValues } = useDatasetData();\n // datasetValues: DatasetData[]\n}\n```\n\n### useTreeFilter\n\nAccess tree filter data for filter UI.\n\n```tsx\nimport { useTreeFilter } from '@frontend-modern/cfi-core/hooks';\n\nfunction Component() {\n const { treeSelectData, mapFilterToTreeData } = useTreeFilter();\n // treeSelectData: { flatData, indicatorsData }\n // mapFilterToTreeData: (filter) => TreeNode\n}\n```\n\n### useSyncEditor\n\nSynchronize editor state with form inputs.\n\n```tsx\nimport { useSyncEditor } from '@frontend-modern/cfi-core/hooks';\n\nfunction FunctionEditor() {\n const { syncVariable, addParens, addComma } = useSyncEditor();\n\n // Sync a variable at position\n syncVariable({\n datasetFormValue,\n fieldFormValue,\n pathValue,\n editor,\n position,\n });\n\n // Add parentheses\n addParens(position, '(');\n addParens(position, ')');\n\n // Add comma separator\n addComma(position);\n}\n```\n\n## Constants\n\n```tsx\nimport {\n functionCaptions, // Function name translations\n indicatorTypes, // Available indicator types\n specialNodeTypes, // Node types requiring special handling\n editableNodeTypes, // Node types that can be edited inline\n slateInitialNodes, // Initial editor state\n operatorOptionsByType, // Filter operators by column type\n tags, // Color definitions for tags\n} from '@frontend-modern/cfi-core/constants';\n\n// Function captions\nconst caption = functionCaptions.findByKey('sum'); // \"Soma\"\nconst key = functionCaptions.findByValue('Soma'); // \"sum\"\n\n// Indicator types\nconst types = indicatorTypes;\n// [{ value: 'analytic', label: 'Analítico' }, ...]\n```\n\n## Types\n\n```tsx\nimport type {\n CustomElement, // Slate element with type and children\n CustomText, // Text node with text and id\n ElementType, // Union of all element types\n DatasetColumn, // Dataset column definition\n DatasetData, // Dataset with children\n DatasetFilter, // Filter configuration\n GeneralFilters, // Array of filter nodes\n IndicatorType, // 'analytic' | 'criterion' | 'income_statement'\n} from '@frontend-modern/cfi-core/types';\n```\n\n## Keyboard Shortcuts\n\nThe Workspace component handles these keyboard interactions:\n\n| Key | Action |\n|-----|--------|\n| `(` | Insert opening parenthesis |\n| `)` | Insert closing parenthesis |\n| `,` | Insert comma separator |\n| `+ - * /` | Insert operator |\n| `0-9 .` | Insert number |\n| `a-z A-Z` | Insert text (triggers autocomplete) |\n| `Backspace` | Delete previous character/node |\n| `Delete` | Delete next character/node |\n| `Arrow keys` | Navigate between nodes |\n| `Escape` | Close autocomplete dropdown |\n\n## Drag and Drop\n\nVariables and indicators can be dragged from the dataset panel into the editor:\n\n```tsx\n// Handled automatically by Workspace component\n// Uses parseElementDrop to extract column data\n// Calls addDraggedElement to insert at drop position\n```\n\n## Styling\n\nThe package uses Less for styling with variables defined in `src/styles/variables.less`. Components use CSS modules for scoped styles.\n\nKey style files:\n- `Box/styles.module.less` - Container styles\n- `Workspace/styles.module.less` - Editor layout\n- `Elements/pattern/elements/styles.module.less` - Element styling\n\n## Error Handling\n\nThe editor displays validation errors inline:\n\n```tsx\n// In Workspace component\n{hasErrors && (\n <Alert\n message=\"Fórmula inválida.\"\n type=\"warning\"\n showIcon\n />\n)}\n```\n\n## Internationalization\n\nThe package currently uses Portuguese (Brazil) for UI text:\n- Antd locale: `pt_BR`\n- Function names: Portuguese captions\n- Error messages: Portuguese","packages-federation-contracts":"# packages — federation-contracts\n\n# @frontend-modern/federation-contracts\n\nShared types and URL resolvers for Module Federation across the workspace. This package defines the contract between host applications and remote modules, eliminating duplicated URL resolution logic that was previously scattered across `apps/base` and `apps/golyzer`.\n\n## Installation\n\n```json\n{\n \"peerDependencies\": {\n \"react\": \"^18.0.0\"\n }\n}\n```\n\n## Exports\n\n| Export Path | Purpose |\n|-------------|---------|\n| `.` | Main entry — all types and resolvers |\n| `./types` | Types only |\n| `./resolvers` | URL resolvers only |\n\n---\n\n## Types\n\n### Container Protocol\n\nThese types describe the Module Federation container interface without coupling to any specific bundler or loader implementation.\n\n```typescript\nimport type { SharedModule, ShareScope, FederationContainer } from '@frontend-modern/federation-contracts';\n```\n\n**`SharedModule`** — A module exposed via share scope:\n\n```typescript\ninterface SharedModule {\n get: () => Promise<() => unknown>;\n from: string;\n loaded?: number;\n}\n```\n\n**`ShareScope`** — The share scope object that the host initializes and passes to remotes via `container.init()`:\n\n```typescript\ntype ShareScope = Record<string, Record<string, SharedModule>>;\n```\n\n**`FederationContainer`** — The container interface exposed as a global by each remote:\n\n```typescript\ninterface FederationContainer {\n init: (shareScope: ShareScope) => Promise<void> | void;\n get: (moduleName: string) => Promise<() => unknown>;\n __initialized?: boolean;\n}\n```\n\n### Remote Configuration\n\n```typescript\nimport type { RemoteConfig, RemoteRegistry } from '@frontend-modern/federation-contracts';\n```\n\n**`RemoteConfig`** — Configuration for loading a remote:\n\n```typescript\ninterface RemoteConfig {\n scriptUrl: string;\n options?: {\n crossOrigin?: \"\" | \"anonymous\" | \"use-credentials\";\n };\n}\n```\n\n**`RemoteRegistry`** — Map of remote names to their configurations:\n\n```typescript\ntype RemoteRegistry = Record<string, RemoteConfig>;\n```\n\n### CFI Remote Component Props\n\nType contracts for components exposed by the CFI remote:\n\n```typescript\nimport type { CfiIndicatorBuilderProps, CfiFormulaViewModalProps } from '@frontend-modern/federation-contracts';\n```\n\n**`CfiIndicatorBuilderProps`**:\n\n```typescript\ninterface CfiIndicatorBuilderProps {\n open: boolean;\n onClose: () => void;\n edit?: {\n id?: string;\n label?: string;\n [key: string]: unknown;\n };\n}\n```\n\n**`CfiFormulaViewModalProps`**:\n\n```typescript\ninterface CfiFormulaViewModalProps {\n open: boolean;\n indicatorId?: string;\n onClose: () => void;\n onOk: (indicatorId: string, label: string) => void;\n okText?: string;\n okButtonProps?: Record<string, unknown>;\n}\n```\n\n---\n\n## URL Resolvers\n\nThe resolvers normalize and construct remote entry URLs for different bundler types. They handle the common case where consumers provide only the origin, inferring the correct path.\n\n### Remote Entry Patterns\n\n```typescript\nimport { REMOTE_ENTRY_PATTERNS } from '@frontend-modern/federation-contracts';\n\n// Next.js: /_next/static/chunks/remote-{name}.js\nREMOTE_ENTRY_PATTERNS.nextjs('goask'); // → '/_next/static/chunks/remote-goask.js'\n\n// Vite: /var-remote-{name}.js\nREMOTE_ENTRY_PATTERNS.vite('panel'); // → '/var-remote-panel.js'\n```\n\n### resolveCfiRemoteEntryUrl\n\nResolves the complete remote entry URL for the CFI remote. Handles three cases:\n\n1. **Already a `.js` URL** → returns normalized\n2. **Origin only** → appends Next.js remote entry path\n3. **Empty/invalid** → returns empty string\n\n```typescript\nimport { resolveCfiRemoteEntryUrl } from '@frontend-modern/federation-contracts';\n\n// Origin only → appends default path\nresolveCfiRemoteEntryUrl('http://localhost:3001');\n// → 'http://localhost:3001/_next/static/chunks/remote-cfi.js'\n\n// Already a .js URL → normalizes trailing slashes\nresolveCfiRemoteEntryUrl('http://localhost:3001/_next/static/chunks/remote-cfi.js');\n// → 'http://localhost:3001/_next/static/chunks/remote-cfi.js'\n\n// Empty/undefined → returns empty string\nresolveCfiRemoteEntryUrl(undefined);\n// → ''\n```\n\n### createTimestampedCfiRemoteEntryUrl\n\nCreates a CFI remote entry URL with a cache-busting timestamp. Useful for runtime `<script>` injection to avoid stale cache after deployments.\n\n```typescript\nimport { createTimestampedCfiRemoteEntryUrl } from '@frontend-modern/federation-contracts';\n\ncreateTimestampedCfiRemoteEntryUrl('http://localhost:3001');\n// → 'http://localhost:3001/_next/static/chunks/remote-cfi.js?ts=1699876543210'\n\n// Handles URLs that already have query params\ncreateTimestampedCfiRemoteEntryUrl('http://localhost:3001/_next/static/chunks/remote-cfi.js?version=1');\n// → 'http://localhost:3001/_next/static/chunks/remote-cfi.js?version=1&ts=1699876543210'\n```\n\n### resolveNextjsRemoteEntryUrl\n\nResolves remote entry URLs for generic Next.js remotes (goask, gotime, etc.). Used by `apps/base`.\n\n```typescript\nimport { resolveNextjsRemoteEntryUrl } from '@frontend-modern/federation-contracts';\n\nresolveNextjsRemoteEntryUrl('http://localhost:3001', 'goask');\n// → 'http://localhost:3001/_next/static/chunks/remote-goask.js'\n\nresolveNextjsRemoteEntryUrl('http://localhost:3002/', 'gotime');\n// → 'http://localhost:3002/_next/static/chunks/remote-gotime.js'\n```\n\n### resolveViteRemoteEntryUrl\n\nResolves remote entry URLs for Vite remotes using `@module-federation/vite`.\n\n```typescript\nimport { resolveViteRemoteEntryUrl } from '@frontend-modern/federation-contracts';\n\nresolveViteRemoteEntryUrl('http://localhost:3004', 'panel');\n// → 'http://localhost:3004/var-remote-panel.js'\n```\n\n---\n\n## Architecture\n\n```mermaid\ngraph LR\n subgraph \"federation-contracts\"\n A[types.ts]\n B[resolvers.ts]\n end\n \n subgraph \"Consumers\"\n C[apps/base<br/>Host]\n D[apps/golyzer<br/>Remote + Consumer]\n end\n \n A --> C\n A --> D\n B --> C\n B --> D\n```\n\nThe package centralizes logic that was previously duplicated between `apps/base` and `apps/golyzer`. It provides:\n\n- **Type contracts** for Module Federation container protocol\n- **URL resolution** for different bundler types (Next.js, Vite)\n- **Component prop types** for CFI remote components\n\n---\n\n## Development\n\n```bash\n# Type checking\npnpm typecheck\n\n# Lint (not configured yet)\npnpm lint\n\n# Tests (not configured yet)\npnpm test\n```","packages-shell-shared":"# packages — shell-shared\n\n# @frontend-modern/shell-shared\n\nA shared utilities package providing reusable React hooks for the shell application.\n\n## Overview\n\n`shell-shared` is a lightweight utility package that consolidates common React hooks used across the frontend-modern monorepo. It has no external dependencies beyond React 18+, making it safe to import anywhere in the application without bundle concerns.\n\n## Installation\n\n```typescript\n// From other packages in the monorepo\nimport { useDebounce, useWindowSize, usePrevious } from \"@frontend-modern/shell-shared\";\n\n// Or import from the hooks subpath\nimport { useDebounce } from \"@frontend-modern/shell-shared/hooks\";\n```\n\n## Exports\n\n| Export | Type | Description |\n|--------|------|-------------|\n| `useDebounce` | Hook | Debounces a reactive value |\n| `DEFAULT_DEBOUNCE_DELAY_MS` | Constant | Default debounce delay (500ms) |\n| `useWindowSize` | Hook | Tracks window dimensions |\n| `usePrevious` | Hook | Returns previous value of a variable |\n\n---\n\n## Hooks\n\n### useDebounce\n\nDelays value updates until the input stabilizes. Useful for preventing excessive API calls or expensive operations during rapid user input.\n\n```typescript\nfunction useDebounce<T>(value: T, delay?: number): T\n```\n\n**Parameters:**\n- `value` — The reactive value to debounce\n- `delay` — Debounce delay in milliseconds (default: `500`)\n\n**Returns:** The debounced value, updated only after `delay` ms of stability\n\n**Example:**\n```typescript\nimport { useDebounce } from \"@frontend-modern/shell-shared\";\n\nfunction SearchInput() {\n const [query, setQuery] = useState(\"\");\n const debouncedQuery = useDebounce(query, 300);\n \n useEffect(() => {\n // This effect only fires 300ms after the user stops typing\n if (debouncedQuery) {\n fetchSearchResults(debouncedQuery);\n }\n }, [debouncedQuery]);\n \n return <input value={query} onChange={(e) => setQuery(e.target.value)} />;\n}\n```\n\n**Implementation notes:**\n- Uses `setTimeout` internally with cleanup on unmount or value change\n- The timer resets on every `value` or `delay` change\n\n---\n\n### useWindowSize\n\nTracks the browser window dimensions in real-time.\n\n```typescript\nfunction useWindowSize(): { width: number; height: number }\n```\n\n**Returns:** Object with current `width` and `height` in pixels\n\n**Example:**\n```typescript\nimport { useWindowSize } from \"@frontend-modern/shell-shared\";\n\nfunction ResponsiveComponent() {\n const { width, height } = useWindowSize();\n \n const isMobile = width < 768;\n \n return (\n <div>\n {isMobile ? <MobileLayout /> : <DesktopLayout />}\n </div>\n );\n}\n```\n\n**Implementation notes:**\n- Returns `{ width: 0, height: 0 }` during SSR (checks `typeof window !== \"undefined\"`)\n- Sets initial dimensions immediately on mount, then listens to `resize` events\n- Cleans up event listener on unmount\n\n---\n\n### usePrevious\n\nCaptures the previous value of a variable across renders.\n\n```typescript\nfunction usePrevious<T>(value: T): T | undefined\n```\n\n**Parameters:**\n- `value` — Any reactive value to track\n\n**Returns:** The value from the previous render, or `undefined` on first render\n\n**Example:**\n```typescript\nimport { usePrevious } from \"@frontend-modern/shell-shared\";\n\nfunction Counter() {\n const [count, setCount] = useState(0);\n const prevCount = usePrevious(count);\n \n const direction = prevCount === undefined \n ? \"initial\" \n : count > prevCount ? \"increased\" : \"decreased\";\n \n return (\n <div>\n <p>Current: {count} (was {prevCount ?? \"undefined\"})</p>\n <p>Direction: {direction}</p>\n <button onClick={() => setCount(c => c + 1)}>Increment</button>\n </div>\n );\n}\n```\n\n**Implementation notes:**\n- Uses a `useRef` to persist the value across renders\n- Updates the ref in an effect (after render), so the returned value is always one render behind\n\n---\n\n## Architecture\n\n```mermaid\ngraph LR\n subgraph shell-shared\n A[index.ts] --> B[hooks/index.ts]\n B --> C[useDebounce]\n B --> D[useWindowSize]\n B --> E[usePrevious]\n end\n \n F[Consumer Packages] --> A\n```\n\nThe package follows a flat export structure:\n- `src/index.ts` re-exports everything from `src/hooks/`\n- `src/hooks/index.ts` aggregates individual hook exports\n- Each hook lives in its own file for clear separation\n\n## TypeScript Configuration\n\nThe package extends `tsconfig.base.json` from the monorepo root and outputs declarations:\n\n```json\n{\n \"compilerOptions\": {\n \"declaration\": true,\n \"declarationMap\": true,\n \"outDir\": \"dist\"\n }\n}\n```\n\nThis enables type inference for consumers without requiring them to build the package.\n\n## Development\n\n```bash\n# Type checking\npnpm typecheck\n\n# Lint (placeholder)\npnpm lint\n\n# Tests (placeholder)\npnpm test\n```\n\n**Note:** Lint and test scripts are placeholders awaiting configuration.","packages-tooling-config":"# packages — tooling-config\n\n# @frontend-modern/tooling-config\n\nShared tooling configuration package for the monorepo. Provides centralized, version-controlled configurations for Prettier, TypeScript, and (planned) ESLint.\n\n## Purpose\n\nThis package eliminates configuration drift between apps by exporting reusable config presets. Instead of duplicating `prettier.config.mjs` or `tsconfig.json` across `apps/base` and `apps/golyzer`, both consume from this single source.\n\n## Exports\n\n```json\n{\n \"./prettier\": \"./prettier.config.mjs\",\n \"./tsconfig/base\": \"./tsconfig/base.json\"\n}\n```\n\n| Export | Path | Consumer Usage |\n|--------|------|----------------|\n| `prettier` | `prettier.config.mjs` | `import baseConfig from \"@frontend-modern/tooling-config/prettier\"` |\n| `tsconfig/base` | `tsconfig/base.json` | `\"extends\": \"@frontend-modern/tooling-config/tsconfig/base.json\"` |\n\n---\n\n## Prettier Configuration\n\n**File:** `prettier.config.mjs`\n\n```javascript\nexport default {\n semi: true,\n singleQuote: false,\n trailingComma: \"all\",\n printWidth: 100,\n tabWidth: 2,\n endOfLine: \"lf\",\n};\n```\n\n| Option | Value | Rationale |\n|--------|-------|-----------|\n| `semi` | `true` | Explicit semicolons for statement clarity |\n| `singleQuote` | `false` | Double quotes (aligns with ESLint `quotes` rule) |\n| `trailingComma` | `\"all\"` | Cleaner diffs, valid ES5 for trailing elements |\n| `printWidth` | `100` | Balance between readability and density |\n| `tabWidth` | `2` | Standard frontend convention |\n| `endOfLine` | `\"lf\"` | Unix line endings for cross-platform consistency |\n\n### Usage in Apps\n\n```javascript\n// apps/base/prettier.config.mjs\nimport baseConfig from \"@frontend-modern/tooling-config/prettier\";\n\nexport default {\n ...baseConfig,\n // app-specific overrides here\n};\n```\n\n---\n\n## TypeScript Configuration\n\n**File:** `tsconfig/base.json`\n\nBase configuration for React + TypeScript projects. Apps extend this file and add app-specific options (like `paths` for module aliases).\n\n```json\n{\n \"compilerOptions\": {\n \"target\": \"ES2020\",\n \"lib\": [\"dom\", \"dom.iterable\", \"esnext\"],\n \"strict\": true,\n \"jsx\": \"react-jsx\",\n \"module\": \"esnext\",\n \"moduleResolution\": \"bundler\",\n \"noEmit\": true\n }\n}\n```\n\n### Key Compiler Options\n\n| Option | Value | Purpose |\n|--------|-------|---------|\n| `target` | `\"ES2020\"` | Modern browser target |\n| `lib` | `[\"dom\", \"dom.iterable\", \"esnext\"]` | DOM APIs + latest ES features |\n| `strict` | `true` | Full type safety |\n| `isolatedModules` | `true` | Ensures transpilation-safe imports |\n| `jsx` | `\"react-jsx\"` | React 17+ JSX transform |\n| `noEmit` | `true` | Build handled by bundler (Vite) |\n\n### Usage in Apps\n\n```json\n// apps/base/tsconfig.json\n{\n \"extends\": \"@frontend-modern/tooling-config/tsconfig/base.json\",\n \"compilerOptions\": {\n \"baseUrl\": \".\",\n \"paths\": {\n \"@/*\": [\"./src/*\"]\n }\n },\n \"include\": [\"src\"]\n}\n```\n\n---\n\n## ESLint Configuration (Reference Only)\n\n**Status:** Documentation-only — no executable config exported yet.\n\nThe `eslint/README.md` documents the current state of ESLint across the monorepo and serves as a roadmap for convergence.\n\n### Current State\n\n```\n┌─────────────┬──────────────┬─────────────────────┐\n│ App │ ESLint │ Config Format │\n├─────────────┼──────────────┼─────────────────────┤\n│ apps/base │ v9 │ flat config (.mjs) │\n│ apps/golyzer│ v8 │ legacy (.json) │\n└─────────────┴──────────────┴─────────────────────┘\n```\n\n### Converged Rules (Already Identical)\n\nBoth apps use these rules identically:\n\n| Rule | Setting |\n|------|---------|\n| `semi` | `[\"error\", \"always\"]` |\n| `quotes` | `[\"error\", \"double\"]` |\n| `react/prop-types` | `\"off\"` |\n| `prefer-const` | `[\"warn\"]` |\n| `no-console` | `[\"warn\"]` |\n| `react/version` | `\"detect\"` |\n| Prettier integration | via `eslint-config-prettier` |\n\n### Key Divergences\n\n| Dimension | `apps/base` | `apps/golyzer` |\n|-----------|-------------|----------------|\n| Max line length | 100 chars | 120 chars |\n| Type-checked rules | No | Yes |\n| `react-hooks` | Not configured | `recommended` + `exhaustive-deps: error` |\n| `import/order` | No | Yes (with `newlines-between: always`) |\n| `jsx-a11y` | No | Yes |\n| Security rules | No | Yes (`no-secrets`, `security/*`) |\n| Complexity limits | No | `warn (max: 10)` |\n\n### Convergence Plan\n\n1. **Current phase:** Document shared rules as reference\n2. **Next phase:** Create `eslint.base.config.mjs` flat config export\n3. **Target:** Both apps consume shared preset with local overrides\n\n---\n\n## Architecture\n\n```mermaid\ngraph LR\n subgraph tooling-config\n P[prettier.config.mjs]\n T[tsconfig/base.json]\n E[eslint/README.md]\n end\n \n subgraph apps/base\n BP[prettier.config.mjs]\n BT[tsconfig.json]\n end\n \n subgraph apps/golyzer\n GP[prettier.config.mjs]\n GT[tsconfig.json]\n end\n \n P --> BP\n P --> GP\n T --> BT\n T --> GT\n E -.->|reference only| BP\n E -.->|reference only| GP\n```\n\n---\n\n## Adding New Config Exports\n\nTo add a new shared configuration:\n\n1. Create the config file in the appropriate subdirectory\n2. Add the export to `package.json`:\n\n```json\n{\n \"exports\": {\n \"./prettier\": \"./prettier.config.mjs\",\n \"./tsconfig/base\": \"./tsconfig/base.json\",\n \"./eslint/base\": \"./eslint/base.config.mjs\"\n }\n}\n```\n\n3. Update consumer apps to import from the package instead of local config\n\n---\n\n## Future Work\n\n- **ESLint flat config export:** When `apps/golyzer` migrates to ESLint v9, create `eslint/base.config.mjs` with converged rules\n- **TypeScript strict presets:** Consider `tsconfig/strict.json` variant for new projects\n- **Vitest config:** Shared test configuration if patterns converge between apps","packages":"# packages\n\n# packages\n\nShared packages for the `frontend-modern` monorepo. This module group provides reusable libraries, tooling configuration, and Module Federation contracts that enable consistent development across applications.\n\n## Overview\n\n| Package | Role |\n|---------|------|\n| [cfi-core](cfi-core.md) | Feature library — financial indicator formula editor built on Slate.js |\n| [federation-contracts](federation-contracts.md) | Infrastructure — Module Federation types and URL resolvers |\n| [shell-shared](shell-shared.md) | Utilities — common React hooks (`useDebounce`, `useWindowSize`, `usePrevious`) |\n| [tooling-config](tooling-config.md) | Tooling — centralized Prettier and TypeScript configurations |\n\n## Architecture\n\n```mermaid\ngraph TB\n subgraph Apps\n base[apps/base]\n golyzer[apps/golyzer]\n end\n\n subgraph Packages\n cfi[cfi-core]\n federation[federation-contracts]\n shell[shell-shared]\n tooling[tooling-config]\n end\n\n base --> federation\n golyzer --> federation\n base --> cfi\n golyzer --> cfi\n cfi --> shell\n base --> shell\n golyzer --> shell\n base -.->|remote module| cfi\n golyzer -.->|remote module| cfi\n base --> tooling\n golyzer --> tooling\n cfi --> tooling\n```\n\n## Key Integration Points\n\n### Module Federation\n\n[federation-contracts](federation-contracts.md) defines the contract between host applications (`base`, `golyzer`) and remote modules. It exports:\n\n- **Types** — `ContainerProtocol` interfaces describing the Module Federation container shape\n- **Resolvers** — `resolveCfiRemoteEntryUrl` and `resolveNextjsRemoteEntryUrl` for loading remote entries\n\nHost applications import these resolvers to dynamically load feature modules like [cfi-core](cfi-core.md) without hardcoding URLs.\n\n### Shared Utilities\n\n[shell-shared](shell-shared.md) provides lightweight React hooks with no external dependencies. Any package or app can safely import `useDebounce`, `useWindowSize`, or `usePrevious` without bundle concerns.\n\n### Tooling Consistency\n\n[tooling-config](tooling-config.md) eliminates configuration drift by exporting centralized presets:\n\n```javascript\n// Prettier\nimport baseConfig from \"@frontend-modern/tooling-config/prettier\"\n\n// TypeScript\n{\n \"extends\": \"@frontend-modern/tooling-config/tsconfig/base.json\"\n}\n```\n\n## Cross-Package Workflows\n\nThe primary cross-package flow involves **Module Federation loading**:\n\n1. Host app uses [federation-contracts](federation-contracts.md) resolvers to resolve remote entry URLs\n2. Remote module ([cfi-core](cfi-core.md)) is loaded at runtime\n3. Feature components render using shared hooks from [shell-shared](shell-shared.md)\n\nAll packages compile against the same TypeScript configuration from [tooling-config](tooling-config.md), ensuring type compatibility across the monorepo.","patches":"# patches\n\n# Patches Module\n\nThis module contains patch files for third-party npm dependencies. These patches fix bugs, address deprecation warnings, and implement workarounds that haven't been merged upstream.\n\n## Overview\n\nThe patches are applied using [patch-package](https://www.npmjs.com/package/patch-package) during the build process. Each patch file targets a specific package version and contains minimal, focused changes.\n\n```mermaid\nflowchart LR\n A[npm install] --> B[patch-package]\n B --> C{Apply patches}\n C --> D[react-datasets]\n C --> E[react-guapo]\n C --> F[react-sortable-hoc]\n D --> G[Patched node_modules]\n E --> G\n F --> G\n```\n\n## Patch Files\n\n### @goapice__react-datasets@2.7.22.patch\n\nFixes three issues in the `@goapice/react-datasets` package:\n\n#### 1. Transient Prop Pattern for styled-components\n\n**Problem:** The `active` prop was being passed directly to a styled-component, which forwards unknown props to the DOM element, causing React warnings.\n\n**Solution:** Uses the transient prop pattern with `$active` prefix:\n\n```diff\n- flex: ${({ active }) => (active ? 1 : 0)};\n+ flex: ${({ $active }) => ($active ? 1 : 0)});\n```\n\n```diff\n- return (jsxRuntime.jsx(DynamicItem, Object.assign({ active: activeIndexes[0] }\n+ return (jsxRuntime.jsx(DynamicItem, Object.assign({ $active: activeIndexes[0] }\n```\n\nThis change is applied in three locations within the `DynamicItem` styled component and its usage sites.\n\n#### 2. Ref-based DOM Access in WithSortableHandle\n\n**Problem:** The `WithSortableHandle` HOC used `ReactDOM.findDOMNode()`, which is deprecated in React Strict Mode and will be removed in React 19.\n\n**Solution:** Uses the wrapped instance's ref directly:\n\n```diff\n- var node = ReactDOM$1.findDOMNode(this);\n- node.sortableHandle = true;\n+ var current = this.wrappedInstance.current;\n+ var node = current && current.nodeType ? current : current && current.nativeElement && current.nativeElement.nodeType ? current.nativeElement : null;\n+\n+ if (node) {\n+ node.sortableHandle = true;\n+ }\n```\n\nThe fix handles both native DOM elements and component refs that expose `nativeElement` (common in wrapper libraries).\n\n#### 3. Forward Ref for Sortable Handle\n\n**Problem:** The `Handle` component didn't forward refs, preventing `sortableHandle` from accessing the underlying DOM node.\n\n**Solution:** Extracts the handle content into a forwardRef component:\n\n```diff\n- const Handle = sortableHandle(({ title, isCollected, onResize }) => (\n+ const HandleContent = React__namespace.forwardRef(({ title, isCollected, onResize }, ref) => (\n+ jsxs(Row, Object.assign({ ref: ref, ...\n+ ));\n+ const Handle = sortableHandle(HandleContent, { withRef: true });\n```\n\n---\n\n### @goapice__react-guapo@1.4.2.patch\n\nFixes a variable shadowing issue in the `util.promisify` polyfill:\n\n**Problem:** The variable `fn` was reused for both the custom promisified function and the local wrapper function, causing confusion and potential bugs.\n\n**Solution:** Renames the custom function variable:\n\n```diff\n if (kCustomPromisifiedSymbol && original[kCustomPromisifiedSymbol]) {\n- var fn = original[kCustomPromisifiedSymbol];\n- if (typeof fn !== 'function') {\n+ var customFn = original[kCustomPromisifiedSymbol];\n+ if (typeof customFn !== 'function') {\n throw new TypeError('The \"util.promisify.custom\" argument must be of type Function');\n }\n- Object.defineProperty(fn, kCustomPromisifiedSymbol, {\n- value: fn, enumerable: false, writable: false, configurable: true\n+ Object.defineProperty(customFn, kCustomPromisifiedSymbol, {\n+ value: customFn, enumerable: false, writable: false, configurable: true\n });\n- return fn;\n+ return customFn;\n }\n```\n\nThis patch is applied to both CJS and ESM build outputs.\n\n---\n\n### react-sortable-hoc@2.0.0.patch\n\nComprehensive fix to remove `findDOMNode` usage across the library's three main HOCs. This is the most extensive patch.\n\n#### sortableHandle HOC\n\n**Problem:** Used deprecated `findDOMNode` to get the DOM node for setting `sortableHandle = true`.\n\n**Solution:** Implements ref-based access with retry mechanism:\n\n```javascript\ncomponentDidMount() {\n var node = this.wrappedInstance.current && this.wrappedInstance.current.nodeType \n ? this.wrappedInstance.current \n : null;\n\n if (!node) {\n this.handleRefRetryCount = (this.handleRefRetryCount || 0) + 1;\n if (this.handleRefRetryCount <= 10 && typeof window !== 'undefined' && window.requestAnimationFrame) {\n this.handleRefRaf = window.requestAnimationFrame(() => {\n this.componentDidMount();\n });\n }\n return;\n }\n\n this.handleRefRetryCount = 0;\n node.sortableHandle = true;\n}\n\ncomponentWillUnmount() {\n if (this.handleRefRaf && typeof window !== 'undefined' && window.cancelAnimationFrame) {\n window.cancelAnimationFrame(this.handleRefRaf);\n }\n}\n```\n\nThe retry mechanism handles cases where refs aren't immediately available (e.g., during concurrent rendering).\n\n#### sortableContainer HOC\n\n**Problem:** Used `findDOMNode` to get the container element.\n\n**Solution:** Checks the wrapped instance ref first:\n\n```diff\n if (typeof getContainer !== 'function') {\n- return findDOMNode(this);\n+ var instance = this.wrappedInstance.current;\n+ return instance && instance.nodeType ? instance : findDOMNode(this);\n }\n```\n\nFalls back to `findDOMNode` only if the ref isn't available.\n\n#### sortableElement HOC\n\n**Problem:** Used `findDOMNode` in the `register` method to get the element for sortable info.\n\n**Solution:** Similar ref-based approach with retry mechanism:\n\n```javascript\nregister() {\n var node = this.wrappedInstance.current && this.wrappedInstance.current.nodeType \n ? this.wrappedInstance.current \n : null;\n\n if (!node) {\n this.registerRefRetryCount = (this.registerRefRetryCount || 0) + 1;\n if (this.registerRefRetryCount <= 10 && typeof window !== 'undefined' && window.requestAnimationFrame) {\n this.registerRefRaf = window.requestAnimationFrame(() => {\n this.register();\n });\n }\n return;\n }\n\n this.registerRefRetryCount = 0;\n node.sortableInfo = { /* ... */ };\n}\n```\n\nCleanup is added to `componentWillUnmount` to cancel any pending animation frame callbacks.\n\n## Applying Patches\n\nPatches are automatically applied after `npm install` via the postinstall hook. To manually apply or create patches:\n\n```bash\n# Apply all patches\nnpx patch-package\n\n# Create a new patch after modifying node_modules/<package>\nnpx patch-package <package-name>\n```\n\n## Maintenance Notes\n\n| Package | Issue | Upstream Status |\n|---------|-------|-----------------|\n| @goapice/react-datasets | findDOMNode deprecation, transient props | Check for upstream updates |\n| @goapice/react-guapo | Variable shadowing | Minor fix, low priority |\n| react-sortable-hoc | findDOMNode deprecation | Library is unmaintained; consider migrating to dnd-kit |\n\nWhen updating dependencies, verify patches still apply correctly. If a patch fails, the build will error with details about which hunks failed.","root":"# Root\n\n# Root Module Documentation\n\n## Overview\n\nThe **frontend-modern** monorepo is the central repository for the **GoApice** frontend ecosystem. It uses **pnpm workspaces** to manage multiple applications and shared packages in a single repository, enabling code sharing while maintaining independent deployment lifecycles.\n\n```mermaid\ngraph TB\n subgraph \"Monorepo Root\"\n A[frontend-modern]\n end\n \n subgraph \"Applications\"\n B[apps/base<br/>systems]\n C[apps/golyzer<br/>panel]\n D[apps/cfi-next-remote]\n end\n \n subgraph \"Packages\"\n E[packages/cfi-core]\n F[packages/federation-contracts]\n G[packages/shell-shared]\n H[packages/tooling-config]\n end\n \n A --> B\n A --> C\n A --> D\n A --> E\n A --> F\n A --> G\n A --> H\n \n B -->|consumes| F\n B -->|consumes| G\n C -->|consumes| E\n C -->|exposes to| B\n```\n\n## Repository Structure\n\n| Path | Type | Description |\n|------|------|-------------|\n| `apps/base` | Application | Host SPA (port 3090) — dashboard, management, and domain integration. Consumes remote micro-frontends via Module Federation. |\n| `apps/golyzer` | Application | BI panel builder/visualizer (port 3004). Runs standalone or as MFE inside base. |\n| `apps/cfi-next-remote` | Application | Legacy Next.js adapter for CFI Module Federation (placeholder). |\n| `packages/cfi-core` | Library | Core of the Indicator Builder — types, mappers, Slate contexts, components, services. |\n| `packages/federation-contracts` | Library | Contracts and resolvers for Module Federation between apps. |\n| `packages/shell-shared` | Library | Shared shell/host utilities (hooks). |\n| `packages/tooling-config` | Library | Shared Prettier and TypeScript configurations. |\n\n## Key Configuration Files\n\n### `package.json`\n\nThe root `package.json` defines workspace-level scripts that delegate to specific apps using `pnpm --filter`:\n\n```json\n{\n \"name\": \"frontend-modern\",\n \"private\": true,\n \"scripts\": {\n \"dev:base\": \"pnpm --filter systems dev\",\n \"dev:golyzer\": \"pnpm --filter panel dev:mf\",\n \"dev:golyzer:standalone\": \"pnpm --filter panel dev\",\n \"build\": \"pnpm -r build\",\n \"build:base\": \"pnpm --filter systems build\",\n \"build:golyzer\": \"pnpm --filter panel build\",\n \"lint\": \"pnpm -r lint\",\n \"lint:base\": \"pnpm --filter systems lint\",\n \"lint:golyzer\": \"pnpm --filter panel lint\",\n \"typecheck\": \"pnpm -r typecheck\",\n \"typecheck:base\": \"pnpm --filter systems typecheck\",\n \"typecheck:golyzer\": \"pnpm --filter panel typecheck\",\n \"test\": \"pnpm --filter panel test\",\n \"test:golyzer\": \"pnpm --filter panel test\"\n },\n \"packageManager\": \"pnpm@10.32.1\",\n \"engines\": {\n \"node\": \">=24.14.0\"\n }\n}\n```\n\n**Script Categories:**\n\n| Prefix | Purpose |\n|--------|---------|\n| `dev:*` | Start development servers for specific apps |\n| `build:*` | Production builds |\n| `lint:*` | ESLint checks |\n| `typecheck:*` | TypeScript type checking |\n| `test:*` | Run test suites |\n\n### `pnpm-workspace.yaml`\n\nDefines workspace packages and patched dependencies:\n\n```yaml\npackages:\n - \"apps/*\"\n - \"packages/*\"\n\npatchedDependencies:\n \"@goapice/react-datasets@2.7.22\": \"patches/@goapice__react-datasets@2.7.22.patch\"\n \"@goapice/react-guapo@1.4.2\": \"patches/@goapice__react-guapo@1.4.2.patch\"\n\nonlyBuiltDependencies:\n - \"@parcel/watcher\"\n - \"core-js\"\n - \"core-js-pure\"\n - \"unrs-resolver\"\n```\n\n**Key aspects:**\n- Workspace includes all `apps/*` and `packages/*` directories\n- Two `@goapice/*` packages have patches applied (compatibility fixes)\n- `onlyBuiltDependencies` limits which packages run postinstall scripts\n\n### `tsconfig.base.json`\n\nShared TypeScript configuration inherited by all workspace members:\n\n```json\n{\n \"compilerOptions\": {\n \"target\": \"ES2020\",\n \"lib\": [\"dom\", \"dom.iterable\", \"esnext\"],\n \"strict\": true,\n \"jsx\": \"react-jsx\",\n \"moduleResolution\": \"node\",\n \"esModuleInterop\": true,\n \"resolveJsonModule\": true,\n \"isolatedModules\": true,\n \"noEmit\": true,\n \"incremental\": true\n }\n}\n```\n\n## Prerequisites\n\n| Requirement | Version | Notes |\n|-------------|---------|-------|\n| Node.js | 24.14.0 | Defined in `.nvmrc` |\n| pnpm | 10.32.1 | Use `corepack enable` |\n| GitLab token | — | Required for `@goapice/*` private packages |\n\n## Getting Started\n\n### 1. Configure Private Registry\n\nSet up authentication for private packages:\n\n```bash\n# Recommended: environment variable\nexport GITLAB_DEV_TOKEN=\"your-token-here\"\n```\n\nObtain a token from **GitLab > Settings > Access Tokens** with `read_api` scope.\n\n### 2. Install Dependencies\n\n```bash\n# Clone and enter directory\ngit clone <url> frontend-modern\ncd frontend-modern\n\n# Use correct Node version\nnvm install\n\n# Install all workspace dependencies\npnpm install\n```\n\n### 3. Configure Environment Variables\n\nEach application requires its own `.env.local` file:\n\n**Golyzer (`apps/golyzer/.env.local`):**\n```env\nVITE_MICRO_FRONTEND=\"false\"\nVITE_GOLYZER_API_URL=\"https://...\"\nVITE_BASE_API_URL=\"https://...\"\nVITE_DATA_API_URL=\"https://...\"\nVITE_DATASETS_API_URL=\"https://...\"\nVITE_SHARING_API_URL=\"https://...\"\n```\n\n**Base (`apps/base/.env.local`):**\n```env\nVITE_BASE_URL=\"https://...\"\nVITE_PANEL_URL=\"http://localhost:3004\" # For local MFE development\n# ... additional API URLs\n```\n\n## Development Commands\n\n### From Repository Root\n\n```bash\n# Start applications\npnpm dev:base # Base on port 3090\npnpm dev:golyzer # Golyzer in MFE mode (port 3004)\npnpm dev:golyzer:standalone # Golyzer standalone (port 3004)\n\n# Build\npnpm build # All packages\npnpm build:base # Base only\npnpm build:golyzer # Golyzer only\n\n# Quality checks\npnpm typecheck # All packages\npnpm lint # All packages\n\n# Tests\npnpm test # Golyzer tests (Vitest)\n```\n\n### Environment-Specific Builds\n\n```bash\n# Golyzer\npnpm --filter panel build:develop\npnpm --filter panel build:staging\npnpm --filter panel build:main\n\n# Base\npnpm --filter systems build:develop\npnpm --filter systems build:staging\npnpm --filter systems build:main\n```\n\n## Architecture\n\n### Host + Micro-Frontend Pattern\n\nThe monorepo implements a **Module Federation** architecture where `base` acts as the host shell and `golyzer` can run as a remote micro-frontend:\n\n```mermaid\nflowchart LR\n subgraph Browser\n A[Base :3090<br/>Host Shell]\n B[Golyzer :3004<br/>Remote MFE]\n end\n \n subgraph APIs\n C[Base API]\n D[Golyzer API]\n E[Data API]\n end\n \n A -->|loads remote| B\n A --> C\n B --> D\n B --> E\n```\n\n**Key points:**\n- `base` consumes remote micro-frontends via Module Federation\n- `golyzer` can run standalone or embedded in `base`\n- `cfi-core` is used directly by `golyzer` (not federated)\n\n### Technology Stack by Application\n\n| Layer | Base (systems) | Golyzer (panel) |\n|-------|----------------|-----------------|\n| Framework | React 18.3 | React 18.3 |\n| Bundler | Vite 5.4 | Vite 8.0 |\n| TypeScript | 5.9 (strict) | 5.9 (strict) |\n| Routing | React Router v6 | React Router v7 |\n| Async State | React Query v3 | TanStack Query v5 |\n| Local State | Redux Toolkit | Zustand 5 + Immer |\n| UI | Ant Design 4.24 | Ant Design 4.24 |\n| Styling | Less + Styled Components 5 | Less + Styled Components 6 + CSS Modules |\n| Testing | — | Vitest 4 + Playwright |\n\n### Package Dependencies Flow\n\n```mermaid\ngraph TD\n subgraph Apps\n Base[apps/base]\n Golyzer[apps/golyzer]\n end\n \n subgraph Packages\n CfiCore[packages/cfi-core]\n FedContracts[packages/federation-contracts]\n ShellShared[packages/shell-shared]\n Tooling[packages/tooling-config]\n end\n \n Base --> FedContracts\n Base --> ShellShared\n Golyzer --> CfiCore\n Golyzer -.->|exposes to| Base\n```\n\n## Patches\n\nThe monorepo applies patches to external packages that have compatibility issues:\n\n| Package | Patch File | Purpose |\n|---------|------------|---------|\n| `@goapice/react-datasets@2.7.22` | `patches/@goapice__react-datasets@2.7.22.patch` | Compatibility fixes |\n| `@goapice/react-guapo@1.4.2` | `patches/@goapice__react-guapo@1.4.2.patch` | Compatibility fixes |\n\nPatches are automatically applied by pnpm during installation.\n\n## Troubleshooting\n\n### Registry Authentication Errors\n\n**Error:** `ERR_PNPM_REGISTRIES_MISMATCH` or 401 errors\n\n**Solution:**\n```bash\nexport GITLAB_DEV_TOKEN=\"new-token\"\npnpm install\n```\n\n### Node Version Mismatch\n\n**Error:** Incorrect Node version\n\n**Solution:**\n```bash\nnvm install # Reads .nvmrc automatically\nnode -v # Should show v24.14.0\n```\n\n### CfiConfigProvider Missing\n\n**Error:** `useCfiConfig must be used within a CfiConfigProvider`\n\n**Solution:** Ensure `CfiConfigProvider` wraps components that use `cfi-core`:\n```tsx\n<CfiConfigProvider config={config}>\n <IndicatorBuilderDrawer />\n</CfiConfigProvider>\n```\n\n### Type Errors in @goapice/* Packages\n\nSome `@goapice/*` packages have incompatible types (e.g., axios v0.21 vs v1.x). Intentional `as any` casts are used at integration points.\n\n### Base Build Fails with gulp\n\n**Solution:** Compile Less themes before build:\n```bash\ncd apps/base\nnpx gulp less # Runs automatically in predev\n```\n\n## Related Documentation\n\n- **apps/base** — Host application documentation\n- **apps/golyzer** — Panel builder documentation\n- **packages/cfi-core** — Indicator Builder core library\n- **packages/federation-contracts** — Module Federation contracts","scripts":"# scripts\n\n# scripts Module\n\n## Overview\n\nThe `scripts` module contains utility scripts for repository automation. Currently, it provides a single script for detecting which parts of a monorepo are affected by code changes.\n\n---\n\n## detect-impact.sh\n\nA bash script that analyzes git diffs to determine which applications and packages are impacted by changes. This enables selective CI/CD execution—only building and testing what's actually affected.\n\n### Usage\n\n```bash\n./scripts/detect-impact.sh [base_ref]\n```\n\n| Argument | Description | Default |\n|----------|-------------|---------|\n| `base_ref` | Branch or commit to compare against | `origin/develop` |\n\n### Examples\n\n```bash\n# Compare against default (origin/develop)\n./scripts/detect-impact.sh\n\n# Compare against main branch\n./scripts/detect-impact.sh origin/main\n\n# Compare against last 3 commits\n./scripts/detect-impact.sh HEAD~3\n```\n\n### How It Works\n\n```mermaid\nflowchart TD\n A[Get changed files from git diff] --> B{Analyze file paths}\n B -->|apps/base/*| C[IMPACT_BASE = true]\n B -->|apps/golyzer/*| D[IMPACT_GOLYZER = true]\n B -->|packages/*| E[IMPACT_PACKAGES = true]\n B -->|root config files| F[IMPACT_ROOT = true]\n \n E --> G{Propagate impact}\n F --> G\n G --> H[All apps affected]\n H --> C\n H --> D\n```\n\nThe script:\n\n1. **Detects changed files** — Runs `git diff --name-only` comparing HEAD against the base reference\n2. **Classifies changes** — Matches file paths against known monorepo locations\n3. **Propagates impact** — Changes to shared packages or root configuration affect all applications\n4. **Outputs results** — Prints both human-readable summary and machine-readable CI variables\n\n### Impact Classification\n\n| File Pattern | Impact Flag | Description |\n|--------------|-------------|-------------|\n| `apps/base/*` | `IMPACT_BASE` | Base application |\n| `apps/golyzer/*` | `IMPACT_GOLYZER` | Golyzer application |\n| `packages/*` | `IMPACT_PACKAGES` | Shared packages (affects all apps) |\n| Root config files | `IMPACT_ROOT` | Workspace configuration (affects all apps) |\n\n**Root configuration files** that trigger full rebuild:\n- `pnpm-workspace.yaml`\n- `pnpm-lock.yaml`\n- `tsconfig.base.json`\n- `.npmrc`\n- `.gitlab-ci.yml`\n\n### Output Format\n\nThe script produces two output sections:\n\n**Human-readable summary:**\n```\n=== Impact Detection ===\nBase ref: origin/develop\nChanged files: 5\n\nIMPACTED: packages (shared)\nIMPACTED: base\nIMPACTED: golyzer\n```\n\n**Machine-readable CI variables:**\n```\n--- CI variables ---\nIMPACT_BASE=true\nIMPACT_GOLYZER=true\nIMPACT_PACKAGES=true\nIMPACT_ROOT=false\n```\n\n### CI Integration\n\nUse in GitLab CI to dynamically control job execution:\n\n```yaml\n# Example: conditional job execution\nbuild_base:\n script:\n - if [ \"$(./scripts/detect-impact.sh | grep 'IMPACT_BASE=true')\" ]; then\n pnpm --filter base build;\n fi\n```\n\nOr parse the CI variables section for more complex logic:\n\n```bash\n# Capture CI variables for use in pipeline\neval $(./scripts/detect-impact.sh | sed -n '/--- CI variables ---/,$p' | grep 'IMPACT_')\n\nif [ \"$IMPACT_BASE\" = \"true\" ]; then\n echo \"Building base app...\"\nfi\n```\n\n### Exit Codes\n\n| Code | Meaning |\n|------|---------|\n| 0 | Success (including \"no changes\" case) |\n| Non-zero | Script error (e.g., invalid git reference) |\n\n### Dependencies\n\n- **git** — Required for diff operations\n- **bash** — Uses `set -euo pipefail` for strict error handling"}; | |
| var TREE = [{"name":"Root","slug":"root","files":["README.md","package.json","pnpm-workspace.yaml","tsconfig.base.json"]},{"name":"apps","slug":"apps","files":[],"children":[{"name":"apps — base","slug":"apps-base","files":["apps/base/README.md","apps/base/docs/MIGRATION_PLAN.md","apps/base/docs/audit/impacto-roteamento-navegacao.md","apps/base/docs/audit/mfe-antipatterns/auditoria-mfe-antipatterns.md","apps/base/docs/audit/mfe-antipatterns/claude-gitnexus-mfe-antipatterns-audit.md","apps/base/docs/audit/mfe-antipatterns/mapa-dominios.md","apps/base/docs/audit/mfe-antipatterns/proposals/001-no-ci-cd.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-common-ownership.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-cyclic-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-no-versioning.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-hub-like-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-knot-mfe.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-golden-hammer.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-mega-frontend.md","apps/base/docs/audit/mfe-antipatterns/proposta-ownership-dominios.md","apps/base/docs/breakingchanges/00-indice.md","apps/base/docs/breakingchanges/01-roteamento-navegacao.md","apps/base/docs/breakingchanges/02-module-federation-mf.md","apps/base/docs/breakingchanges/03-variaveis-ambiente.md","apps/base/docs/breakingchanges/04-build-tooling.md","apps/base/docs/breakingchanges/05-autenticacao-sessao.md","apps/base/docs/breakingchanges/06-react-18-upgrade.md","apps/base/docs/breakingchanges/07-head-meta-seo.md","apps/base/docs/breakingchanges/08-dependencias-removidas-atualizadas.md","apps/base/docs/breakingchanges/09-componentes-novos-alterados.md","apps/base/docs/breakingchanges/next-router-shim-impacto-remotes.md","apps/base/docs/changes/next-router-shim-module-federation.md","apps/base/docs/changes/share-scope-next-router.md","apps/base/docs/mapeamento-projetos-mfe.md","apps/base/docs/migration/decisao-versao-antd.md","apps/base/docs/migration/fase-0-scaffolding.md","apps/base/docs/migration/fase-1-env-e-utils.md","apps/base/docs/migration/fase-2-routing.md","apps/base/docs/migration/fase-3-module-federation.md","apps/base/docs/migration/fase-4-mfe-pages.md","apps/base/docs/migration/fase-5-css-e-temas.md","apps/base/docs/migration/fase-6-compatibilidade-react-18.md","apps/base/docs/migration/fase-7-build-e-deploy.md","apps/base/docs/migration/fase-8-limpeza.md","apps/base/docs/migration/monorepo/fase-0-decisoes.md","apps/base/docs/proposals/plano-monorepo-base-golyzer.md","apps/base/docs/proposals/proposta-cfi-core-interno-com-remote-legado.md","apps/base/docs/proposals/proposta-separacao-base-vite-golyzer-e-estrategia-cfi.md","apps/base/docs/todo/atualizacao-dependencias.md","apps/base/docs/todo/axios-e-tanstack-bloqueio-ui-components.md","apps/base/docs/todo/baselines/2026-03-21-typecheck.txt","apps/base/docs/todo/fase-0-preparacao-paralelismo.md","apps/base/docs/todo/plano-mitigacao-erros-warnings.md","apps/base/eslint.config.mjs","apps/base/firebase.json","apps/base/gulpfile.js","apps/base/index.html","apps/base/package.json","apps/base/paths.json","apps/base/src/App.tsx","apps/base/src/components/Backdrop/index.tsx","apps/base/src/components/Button/index.tsx","apps/base/src/components/Button/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ListBlocks/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccounts/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ExpandCollapseMenu/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/filter.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/title.tsx","apps/base/src/components/ChartOfAccountsExplorer/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Confirm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/context/MigrationsContext.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/confirm.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/goTo.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/menu.ts","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/navigationHandlers.ts","apps/base/src/components/ChartOfAccountsMigration/index.tsx","apps/base/src/components/ChartOfAccountsMigration/styles.module.less","apps/base/src/components/CollaboratorHierarchyDrawer/index.tsx","apps/base/src/components/CollaboratorHierarchyDrawer/styles.module.less","apps/base/src/components/Container/helpers/components/Editable/index.tsx","apps/base/src/components/Container/helpers/components/Editable/styles.module.less","apps/base/src/components/Container/helpers/components/Favorite/index.tsx","apps/base/src/components/Container/helpers/components/Favorite/styles.module.less","apps/base/src/components/Container/index.tsx","apps/base/src/components/Container/styles.module.less","apps/base/src/components/Empty/index.tsx","apps/base/src/components/Empty/styles.module.less","apps/base/src/components/EmptyCard/index.tsx","apps/base/src/components/EmptyCard/styles.module.less","apps/base/src/components/EmptySearch/index.tsx","apps/base/src/components/EmptySearch/styles.module.less","apps/base/src/components/Favorites/Item/index.tsx","apps/base/src/components/Favorites/Item/styles.module.less","apps/base/src/components/Favorites/index.tsx","apps/base/src/components/Favorites/styles.module.less","apps/base/src/components/Footer/index.tsx","apps/base/src/components/Footer/styles.module.less","apps/base/src/components/GuestLayout/index.tsx","apps/base/src/components/GuestLayout/styles.module.less","apps/base/src/components/HashBangRedirect.tsx","apps/base/src/components/Header/index.tsx","apps/base/src/components/Header/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Users/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/helpers/TreeUnitWithRadio/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/ReplicateDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/SolutionsTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/StructuralTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/Tab.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/utils/body.ts","apps/base/src/components/HierarchyDrawer/helpers/utils/modal.tsx","apps/base/src/components/HierarchyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/index.tsx","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/index.tsx","apps/base/src/components/HierarchyLevelDrawer/styles.module.less","apps/base/src/components/IndicatorBuilderDrawer/index.tsx","apps/base/src/components/IndicatorBuilderDrawer/styles.module.less","apps/base/src/components/Input/index.tsx","apps/base/src/components/Input/styles.module.less","apps/base/src/components/ItemMigration/index.tsx","apps/base/src/components/ItemMigration/styles.module.less","apps/base/src/components/Layout/index.tsx","apps/base/src/components/Loading/index.tsx","apps/base/src/components/MaskCustomInput/index.tsx","apps/base/src/components/Notifications/Empty/index.tsx","apps/base/src/components/Notifications/Empty/styles.module.less","apps/base/src/components/Notifications/List/helpers/Card/index.tsx","apps/base/src/components/Notifications/List/helpers/Card/styles.module.less","apps/base/src/components/Notifications/List/helpers/TabStyled/index.tsx","apps/base/src/components/Notifications/List/index.tsx","apps/base/src/components/Notifications/List/styles.module.less","apps/base/src/components/Notifications/index.tsx","apps/base/src/components/Notifications/styles.module.less","apps/base/src/components/OrganizationalStructure/ToolbarStructure/index.tsx","apps/base/src/components/OrganizationalStructure/ToolbarStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Edge/EdgeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/Description.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeCostCenter.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/index.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/styles.module.less","apps/base/src/components/PlansScreen/PlanCard/index.tsx","apps/base/src/components/PlansScreen/PlanCard/styles.module.less","apps/base/src/components/PlansScreen/index.tsx","apps/base/src/components/PlansScreen/styles.module.less","apps/base/src/components/PlansScreen/types.ts","apps/base/src/components/PrefetchScript.tsx","apps/base/src/components/ProfileWrappers/Appearance/index.tsx","apps/base/src/components/ProfileWrappers/Appearance/styles.module.less","apps/base/src/components/ProfileWrappers/ChangePassword/index.tsx","apps/base/src/components/ProfileWrappers/ChangePassword/styles.module.less","apps/base/src/components/ProfileWrappers/UserInformation/index.tsx","apps/base/src/components/ProfileWrappers/UserInformation/styles.module.less","apps/base/src/components/ProfileWrappers/index.tsx","apps/base/src/components/RequestDemoModal/index.tsx","apps/base/src/components/RequestDemoModal/styles.module.less","apps/base/src/components/Resizable/helpers/components/Alert/index.tsx","apps/base/src/components/Resizable/helpers/components/Alert/styles.module.less","apps/base/src/components/Resizable/helpers/components/HandleComponent/index.tsx","apps/base/src/components/Resizable/helpers/components/HandleComponent/styles.module.less","apps/base/src/components/Resizable/index.tsx","apps/base/src/components/Resizable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/CheckboxWithModal/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SearchField/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SolutionFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/context/SearchContext.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/utils/search.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/styles.module.less","apps/base/src/components/RoleManager/helpers/components/HeaderControls/index.tsx","apps/base/src/components/RoleManager/helpers/components/HeaderControls/styles.module.less","apps/base/src/components/RoleManager/helpers/components/LinkUnit/index.tsx","apps/base/src/components/RoleManager/helpers/components/LinkUnit/styles.module.less","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/index.tsx","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/styles.module.less","apps/base/src/components/RoleManager/helpers/components/SettingsMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/SettingsMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableDragable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableDragable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableExpandable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableExpandable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TitleColumn/index.tsx","apps/base/src/components/RoleManager/helpers/components/TitleColumn/styles.module.less","apps/base/src/components/RoleManager/helpers/context/RoleManagerContext.tsx","apps/base/src/components/RoleManager/helpers/enums/index.ts","apps/base/src/components/RoleManager/helpers/utils/checkeds.ts","apps/base/src/components/RoleManager/helpers/utils/columns.tsx","apps/base/src/components/RoleManager/helpers/utils/modal.tsx","apps/base/src/components/RoleManager/helpers/utils/roles.ts","apps/base/src/components/RoleManager/helpers/utils/scroll.ts","apps/base/src/components/RoleManager/helpers/utils/tree.ts","apps/base/src/components/RoleManager/index.tsx","apps/base/src/components/RoleManager/styles.module.less","apps/base/src/components/Search/index.tsx","apps/base/src/components/Search/styles.module.less","apps/base/src/components/SignatureDrawer/Email/index.tsx","apps/base/src/components/SignatureDrawer/FirstPayment/index.tsx","apps/base/src/components/SignatureDrawer/Payment/index.tsx","apps/base/src/components/SignatureDrawer/Plan/index.tsx","apps/base/src/components/SignatureDrawer/index.tsx","apps/base/src/components/SignatureDrawer/styles.module.less","apps/base/src/components/ToastAlert/index.tsx","apps/base/src/components/ToastAlert/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/Drawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/Drawer/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/index.tsx","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/ResetActions/index.tsx","apps/base/src/components/UserDrawer/helpers/components/SelectRole/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsList/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CopyDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/ReplicateDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/UnitTree/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/utils/menus.tsx","apps/base/src/components/UserDrawer/helpers/utils/modal.tsx","apps/base/src/components/UserDrawer/index.tsx","apps/base/src/components/UserDrawer/styles.module.less","apps/base/src/components/WelcomeScreen/index.tsx","apps/base/src/components/WelcomeScreen/styles.module.less","apps/base/src/components/WrapperAuth/index.tsx","apps/base/src/components/WrapperGuestForm/index.tsx","apps/base/src/components/WrapperGuestForm/styles.module.less","apps/base/src/constants/budget/index.ts","apps/base/src/constants/colors/index.ts","apps/base/src/constants/date/index.ts","apps/base/src/constants/image/index.ts","apps/base/src/constants/menu/index.tsx","apps/base/src/constants/roles.ts","apps/base/src/constants/urls.ts","apps/base/src/context/AuthContext.tsx","apps/base/src/context/CollapseContext.tsx","apps/base/src/context/FullScreenContext.tsx","apps/base/src/context/SocketContext.tsx","apps/base/src/context/TagContext.tsx","apps/base/src/context/ViewsStateContext.tsx","apps/base/src/dictionary/form/index.ts","apps/base/src/dictionary/index.ts","apps/base/src/dictionary/pagination/index.ts","apps/base/src/dictionary/table/index.ts","apps/base/src/guapo/Alert/Alert.stories.tsx","apps/base/src/guapo/Alert/Alert.tsx","apps/base/src/guapo/Alert/index.ts","apps/base/src/guapo/Avatar/Avatar.stories.tsx","apps/base/src/guapo/Avatar/Avatar.tsx","apps/base/src/guapo/Avatar/index.ts","apps/base/src/guapo/Badge/Badge.stories.tsx","apps/base/src/guapo/Badge/Badge.tsx","apps/base/src/guapo/Badge/index.ts","apps/base/src/guapo/BadgeSmall/index.tsx","apps/base/src/guapo/BadgeSmall/styles.module.less","apps/base/src/guapo/Breadcrumb/Breadcrumb.stories.tsx","apps/base/src/guapo/Breadcrumb/Breadcrumb.tsx","apps/base/src/guapo/Breadcrumb/index.ts","apps/base/src/guapo/Button/Button.stories.tsx","apps/base/src/guapo/Button/Button.tsx","apps/base/src/guapo/Button/index.ts","apps/base/src/guapo/Card/Card.stories.tsx","apps/base/src/guapo/Card/Card.tsx","apps/base/src/guapo/Card/index.tsx","apps/base/src/guapo/Checkbox/Checkbox.stories.tsx","apps/base/src/guapo/Checkbox/Checkbox.tsx","apps/base/src/guapo/Checkbox/index.ts","apps/base/src/guapo/Col/Col.stories.tsx","apps/base/src/guapo/Col/Col.tsx","apps/base/src/guapo/Col/index.tsx","apps/base/src/guapo/Collapse/Collapse.stories.tsx","apps/base/src/guapo/Collapse/Collapse.tsx","apps/base/src/guapo/Collapse/index.ts","apps/base/src/guapo/DatePicker/DatePicker.stories.tsx","apps/base/src/guapo/DatePicker/DatePicker.tsx","apps/base/src/guapo/DatePicker/index.ts","apps/base/src/guapo/Divider/Divider.stories.tsx","apps/base/src/guapo/Divider/Divider.tsx","apps/base/src/guapo/Divider/index.tsx","apps/base/src/guapo/Dropdown/Dropdown.stories.tsx","apps/base/src/guapo/Dropdown/Dropdown.tsx","apps/base/src/guapo/Dropdown/index.ts","apps/base/src/guapo/Empty/Empty.stories.tsx","apps/base/src/guapo/Empty/Empty.tsx","apps/base/src/guapo/Empty/index.ts","apps/base/src/guapo/Filter/Filter.d.tsx","apps/base/src/guapo/Filter/Filter.stories.tsx","apps/base/src/guapo/Filter/Filter.tsx","apps/base/src/guapo/Filter/index.tsx","apps/base/src/guapo/Filter/styles.module.css","apps/base/src/guapo/Form/Form.stories.tsx","apps/base/src/guapo/Form/Form.tsx","apps/base/src/guapo/Form/index.tsx","apps/base/src/guapo/Icon/Icon.stories.tsx","apps/base/src/guapo/Icon/Icon.tsx","apps/base/src/guapo/Icon/Icons/ArchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/ArchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/DotDragSVG.tsx","apps/base/src/guapo/Icon/Icons/DotMenuSVG.tsx","apps/base/src/guapo/Icon/Icons/OpenInNewSVG.tsx","apps/base/src/guapo/Icon/Icons/PixSVG.tsx","apps/base/src/guapo/Icon/Icons/RedoOutlineSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/UndoOutlineSVG.tsx","apps/base/src/guapo/Icon/index.tsx","apps/base/src/guapo/Input/Input.stories.tsx","apps/base/src/guapo/Input/Input.tsx","apps/base/src/guapo/Input/index.ts","apps/base/src/guapo/Input/styles.module.css","apps/base/src/guapo/Layout/Layout.stories.tsx","apps/base/src/guapo/Layout/Layout.tsx","apps/base/src/guapo/Layout/index.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.stories.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.tsx","apps/base/src/guapo/LayoutFenix/index.tsx","apps/base/src/guapo/List/List.action.tsx","apps/base/src/guapo/List/List.d.tsx","apps/base/src/guapo/List/List.stories.tsx","apps/base/src/guapo/List/List.tsx","apps/base/src/guapo/List/List.type.tsx","apps/base/src/guapo/List/index.tsx","apps/base/src/guapo/List/styles.module.css","apps/base/src/guapo/Menu/MenuBackOffice.stories.tsx","apps/base/src/guapo/Menu/MenuBackOffice.tsx","apps/base/src/guapo/Menu/index.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.d.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.stories.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/Settings/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/Solutions/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Menu/index.tsx","apps/base/src/guapo/MenuFenix/index.tsx","apps/base/src/guapo/MenuFenix/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.d.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.stories.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.tsx","apps/base/src/guapo/MenuGoapice/index.ts","apps/base/src/guapo/MenuGoapice/styles.module.css","apps/base/src/guapo/MenuVertical/MenuVertical.d.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.stories.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.tsx","apps/base/src/guapo/MenuVertical/index.ts","apps/base/src/guapo/Modal/Modal.stories.tsx","apps/base/src/guapo/Modal/Modal.tsx","apps/base/src/guapo/Modal/index.ts","apps/base/src/guapo/Overlay/Overlay.stories.tsx","apps/base/src/guapo/Overlay/index.tsx","apps/base/src/guapo/PageHeader/PageHeader.stories.tsx","apps/base/src/guapo/PageHeader/PageHeader.tsx","apps/base/src/guapo/PageHeader/index.tsx","apps/base/src/guapo/Pagination/Pagination.stories.tsx","apps/base/src/guapo/Pagination/Pagination.tsx","apps/base/src/guapo/Pagination/index.ts","apps/base/src/guapo/Progress/Progress.stories.tsx","apps/base/src/guapo/Progress/Progress.tsx","apps/base/src/guapo/Progress/index.ts","apps/base/src/guapo/Radio/Radio.stories.tsx","apps/base/src/guapo/Radio/Radio.tsx","apps/base/src/guapo/Radio/index.ts","apps/base/src/guapo/RangePicker/RangePicker.stories.tsx","apps/base/src/guapo/RangePicker/RangePicker.tsx","apps/base/src/guapo/RangePicker/index.ts","apps/base/src/guapo/Row/Row.stories.tsx","apps/base/src/guapo/Row/Row.tsx","apps/base/src/guapo/Row/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/ChangeCollaboratorDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/InfoDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/PrintDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/TimesTableDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/styles.module.css","apps/base/src/guapo/Schenduler/components/Icons/List.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/Appointment.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/CurrentTime.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/MouseMover.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/index.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/styles.module.css","apps/base/src/guapo/Schenduler/components/Table/TBody.tsx","apps/base/src/guapo/Schenduler/components/Table/TFooter.tsx","apps/base/src/guapo/Schenduler/components/Table/THeader.tsx","apps/base/src/guapo/Schenduler/components/Table/index.tsx","apps/base/src/guapo/Schenduler/components/Table/styles.module.css","apps/base/src/guapo/Schenduler/components/Views/DayView.tsx","apps/base/src/guapo/Schenduler/components/Views/MonthView.tsx","apps/base/src/guapo/Schenduler/components/Views/View.tsx","apps/base/src/guapo/Schenduler/components/Views/WeekView.tsx","apps/base/src/guapo/Schenduler/components/Views/styles.module.css","apps/base/src/guapo/Schenduler/hooks/useInterval.tsx","apps/base/src/guapo/Schenduler/index.ts","apps/base/src/guapo/Schenduler/template/PrintScale/index.tsx","apps/base/src/guapo/Select/Select.stories.tsx","apps/base/src/guapo/Select/Select.tsx","apps/base/src/guapo/Select/index.ts","apps/base/src/guapo/Select/styles.module.css","apps/base/src/guapo/ShouldRender/ShouldRender.tsx","apps/base/src/guapo/ShouldRender/index.ts","apps/base/src/guapo/Skeleton/Skeleton.stories.tsx","apps/base/src/guapo/Skeleton/Skeleton.tsx","apps/base/src/guapo/Skeleton/index.ts","apps/base/src/guapo/Space/Space.stories.tsx","apps/base/src/guapo/Space/Space.tsx","apps/base/src/guapo/Space/index.tsx","apps/base/src/guapo/Statistic/Statistic.stories.tsx","apps/base/src/guapo/Statistic/Statistic.tsx","apps/base/src/guapo/Statistic/index.ts","apps/base/src/guapo/Steps/Steps.stories.tsx","apps/base/src/guapo/Steps/Steps.tsx","apps/base/src/guapo/Steps/index.ts","apps/base/src/guapo/Switch/Switch.stories.tsx","apps/base/src/guapo/Switch/Switch.tsx","apps/base/src/guapo/Switch/index.ts","apps/base/src/guapo/Table/Table.stories.tsx","apps/base/src/guapo/Table/Table.tsx","apps/base/src/guapo/Table/index.ts","apps/base/src/guapo/Table/styles.module.css","apps/base/src/guapo/Tabs/Tabs.stories.tsx","apps/base/src/guapo/Tabs/Tabs.tsx","apps/base/src/guapo/Tabs/index.ts","apps/base/src/guapo/Tag/Tag.stories.tsx","apps/base/src/guapo/Tag/Tag.tsx","apps/base/src/guapo/Tag/index.ts","apps/base/src/guapo/Tooltip/Tooltip.stories.tsx","apps/base/src/guapo/Tooltip/Tooltip.tsx","apps/base/src/guapo/Tooltip/index.tsx","apps/base/src/guapo/Tree/Tree.stories.tsx","apps/base/src/guapo/Tree/Tree.tsx","apps/base/src/guapo/Tree/index.ts","apps/base/src/guapo/TreeSelect/TreeSelect.stories.tsx","apps/base/src/guapo/TreeSelect/TreeSelect.tsx","apps/base/src/guapo/TreeSelect/index.ts","apps/base/src/guapo/Typography/Typography.d.tsx","apps/base/src/guapo/Typography/Typography.stories.tsx","apps/base/src/guapo/Typography/Typography.tsx","apps/base/src/guapo/Typography/components/BodyText.tsx","apps/base/src/guapo/Typography/components/Caption.tsx","apps/base/src/guapo/Typography/components/Heading.tsx","apps/base/src/guapo/Typography/components/SubTitle.tsx","apps/base/src/guapo/Typography/constants/fontSize.ts","apps/base/src/guapo/Typography/index.tsx","apps/base/src/guapo/Upload/Upload.stories.tsx","apps/base/src/guapo/Upload/Upload.tsx","apps/base/src/guapo/Upload/index.ts","apps/base/src/guapo/index.ts","apps/base/src/hooks/useChartOfAccounts.tsx","apps/base/src/hooks/useCollaboratorPosition.tsx","apps/base/src/hooks/useCostCenters.tsx","apps/base/src/hooks/useDebounce.tsx","apps/base/src/hooks/useDepartment.tsx","apps/base/src/hooks/useHistory.tsx","apps/base/src/hooks/useIsEditPage.tsx","apps/base/src/hooks/useLoadOnPermissionsUpdate.tsx","apps/base/src/hooks/useNotifications.tsx","apps/base/src/hooks/usePageVisibility.tsx","apps/base/src/hooks/usePermission.tsx","apps/base/src/hooks/usePrevious.tsx","apps/base/src/hooks/useSolutions.tsx","apps/base/src/hooks/useWindowSize.tsx","apps/base/src/interfaces/iMapper.ts","apps/base/src/lib/compat/navigate.ts","apps/base/src/lib/compat/router.ts","apps/base/src/lib/federation/MfeLoader.tsx","apps/base/src/lib/federation/loadRemote.ts","apps/base/src/lib/federation/remoteConfig.ts","apps/base/src/lib/federation/shims/next-router.ts","apps/base/src/lib/queryClient.ts","apps/base/src/main.tsx","apps/base/src/mappers/notifications/index.ts","apps/base/src/pages/budget/helpers/components/modal/footer/index.tsx","apps/base/src/pages/budget/helpers/components/modal/index.tsx","apps/base/src/pages/budget/helpers/components/table/empty.tsx","apps/base/src/pages/budget/helpers/components/table/index.tsx","apps/base/src/pages/budget/helpers/components/table/styles.module.less","apps/base/src/pages/budget/index.tsx","apps/base/src/pages/budget/styles.module.less","apps/base/src/pages/chart-of-accounts/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/[id]/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/add/index.tsx","apps/base/src/pages/forgot/index.tsx","apps/base/src/pages/goal-sets/[id]/index.tsx","apps/base/src/pages/goal-sets/index.tsx","apps/base/src/pages/goask/answer-options-list/[id].tsx","apps/base/src/pages/goask/answer-options-list/add.tsx","apps/base/src/pages/goask/answer-options-list/index.tsx","apps/base/src/pages/goask/guests-lists/[id].tsx","apps/base/src/pages/goask/guests-lists/add.tsx","apps/base/src/pages/goask/guests-lists/index.tsx","apps/base/src/pages/goask/index.tsx","apps/base/src/pages/goask/questionnaires/[id].tsx","apps/base/src/pages/goask/questionnaires/add.tsx","apps/base/src/pages/goask/questionnaires/index.tsx","apps/base/src/pages/goask/reports/index.tsx","apps/base/src/pages/goask/surveys/[id].tsx","apps/base/src/pages/goask/surveys/add.tsx","apps/base/src/pages/goask/surveys/index.tsx","apps/base/src/pages/golyzer/[id]/index.tsx","apps/base/src/pages/golyzer/[id]/presentation.tsx","apps/base/src/pages/golyzer/add.tsx","apps/base/src/pages/golyzer/index.tsx","apps/base/src/pages/gonext/cfi/index.tsx","apps/base/src/pages/gonext/data-view/index.tsx","apps/base/src/pages/gonext/data-view/view/index.tsx","apps/base/src/pages/gonext/dre/[id]/index.tsx","apps/base/src/pages/gonext/dre/add/index.tsx","apps/base/src/pages/gonext/dre/index.tsx","apps/base/src/pages/gonext/index.tsx","apps/base/src/pages/gonext/ledger/[id]/index.tsx","apps/base/src/pages/gonext/ledger/add/index.tsx","apps/base/src/pages/gonext/ledger/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/[entryId]/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/index.tsx","apps/base/src/pages/gonext/managerial-entries/index.tsx","apps/base/src/pages/gonext/managerial-entries/new/index.tsx","apps/base/src/pages/gonext/managerial-entries/view/[id].tsx","apps/base/src/pages/gonext/reconciliation/[id]/index.tsx","apps/base/src/pages/gonext/reconciliation/add/index.tsx","apps/base/src/pages/gonext/reconciliation/index.tsx","apps/base/src/pages/gonext/trial-balance/[id]/index.tsx","apps/base/src/pages/gonext/trial-balance/add/index.tsx","apps/base/src/pages/gonext/trial-balance/index.tsx","apps/base/src/pages/gotime/index.tsx","apps/base/src/pages/gotime/manage/[id].tsx","apps/base/src/pages/gotime/settings/index.tsx","apps/base/src/pages/gotrade/assets/index.tsx","apps/base/src/pages/gotrade/campaigns/add/index.tsx","apps/base/src/pages/gotrade/campaigns/index.tsx","apps/base/src/pages/gotrade/index.tsx","apps/base/src/pages/index.tsx","apps/base/src/pages/integrations/[id]/index.tsx","apps/base/src/pages/integrations/[id]/styles.module.less","apps/base/src/pages/integrations/index.tsx","apps/base/src/pages/integrations/styles.module.less","apps/base/src/pages/login/index.tsx","apps/base/src/pages/login/styles.module.less","apps/base/src/pages/organizational/index.tsx","apps/base/src/pages/organizational/styles.module.less","apps/base/src/pages/profile/index.tsx","apps/base/src/pages/profile/styles.module.less","apps/base/src/pages/recover/index.tsx","apps/base/src/pages/recover/styles.module.less","apps/base/src/pages/roles/index.tsx","apps/base/src/pages/roles/styles.module.less","apps/base/src/pages/signature/index.tsx","apps/base/src/pages/signature/styles.module.less","apps/base/src/pages/styles.module.less","apps/base/src/pages/users/index.tsx","apps/base/src/pages/users/styles.module.less","apps/base/src/pages/welcome/index.tsx","apps/base/src/pages/welcome/styles.module.less","apps/base/src/routes.tsx","apps/base/src/services/api.ts","apps/base/src/services/auth.ts","apps/base/src/services/budget.ts","apps/base/src/services/chartOfAccounts.ts","apps/base/src/services/client.ts","apps/base/src/services/collaborator.ts","apps/base/src/services/collaboratorPosition.ts","apps/base/src/services/costCenters.ts","apps/base/src/services/data.ts","apps/base/src/services/department.ts","apps/base/src/services/errors/AuthTokenError.ts","apps/base/src/services/gotime.ts","apps/base/src/services/guardianApi.ts","apps/base/src/services/hello.ts","apps/base/src/services/hierarchy.ts","apps/base/src/services/io.ts","apps/base/src/services/notifications.ts","apps/base/src/services/plans.ts","apps/base/src/services/policie.ts","apps/base/src/services/registration.ts","apps/base/src/services/roles.ts","apps/base/src/services/signature.ts","apps/base/src/services/solutions.ts","apps/base/src/services/store/chartOfAccounts/index.ts","apps/base/src/services/store/costCenters/index.ts","apps/base/src/services/store/index.ts","apps/base/src/services/store/notifications/index.ts","apps/base/src/services/store/solutions/index.ts","apps/base/src/services/tag.ts","apps/base/src/services/units.ts","apps/base/src/services/user.ts","apps/base/src/state/data.ts","apps/base/src/state/dictionary.json","apps/base/src/store/index.tsx","apps/base/src/store/reducers/chartOfAccounts.ts","apps/base/src/store/reducers/costCenters.ts","apps/base/src/store/reducers/notifications.ts","apps/base/src/store/reducers/solutions.ts","apps/base/src/stories/Button.stories.tsx","apps/base/src/stories/Button.tsx","apps/base/src/stories/Header.stories.tsx","apps/base/src/stories/Header.tsx","apps/base/src/stories/Introduction.stories.mdx","apps/base/src/stories/Page.stories.tsx","apps/base/src/stories/Page.tsx","apps/base/src/stories/button.css","apps/base/src/stories/header.css","apps/base/src/stories/page.css","apps/base/src/styles/fonts.less","apps/base/src/styles/global.less","apps/base/src/styles/globalStyle.ts","apps/base/src/styles/overrideAnt.css","apps/base/src/styles/theme/dark.less","apps/base/src/styles/theme/light.less","apps/base/src/styles/tokens.ts","apps/base/src/styles/variables.less","apps/base/src/utils/alerts/confirm.tsx","apps/base/src/utils/alerts/error.tsx","apps/base/src/utils/alerts/index.ts","apps/base/src/utils/alerts/loading.tsx","apps/base/src/utils/alerts/success.tsx","apps/base/src/utils/csv/index.ts","apps/base/src/utils/date/index.ts","apps/base/src/utils/feedback/error.tsx","apps/base/src/utils/feedback/message.ts","apps/base/src/utils/feedback/tooltip.ts","apps/base/src/utils/flowchart/index.ts","apps/base/src/utils/formatters/cnpj.ts","apps/base/src/utils/formatters/csvToArray.ts","apps/base/src/utils/formatters/date.ts","apps/base/src/utils/formatters/money.ts","apps/base/src/utils/formatters/phone.ts","apps/base/src/utils/formatters/slug.ts","apps/base/src/utils/formatters/text.ts","apps/base/src/utils/formatters/url.ts","apps/base/src/utils/forms/getHeaders.ts","apps/base/src/utils/functions/color.ts","apps/base/src/utils/functions/deepClone.ts","apps/base/src/utils/functions/dom.ts","apps/base/src/utils/functions/equal.ts","apps/base/src/utils/functions/getDifference.ts","apps/base/src/utils/functions/immutability.ts","apps/base/src/utils/functions/index.ts","apps/base/src/utils/functions/regexp.ts","apps/base/src/utils/functions/text.ts","apps/base/src/utils/functions/tree.tsx","apps/base/src/utils/functions/uuid.ts","apps/base/src/utils/organizational/index.ts","apps/base/src/utils/permission/Restricted.tsx","apps/base/src/utils/roles/index.tsx","apps/base/src/utils/searchs/index.ts","apps/base/src/utils/session/index.ts","apps/base/src/utils/solutions/index.ts","apps/base/src/utils/storybookHideProps/index.ts","apps/base/src/utils/storybookToggleableProps/index.ts","apps/base/src/utils/template/index.ts","apps/base/src/utils/url/index.ts","apps/base/src/utils/validations/index.ts","apps/base/src/utils/validations/uuid.ts","apps/base/tsconfig.json","apps/base/vite.config.ts"]},{"name":"apps — cfi-next-remote","slug":"apps-cfi-next-remote","files":["apps/cfi-next-remote/README.md","apps/cfi-next-remote/package.json"]},{"name":"apps — golyzer","slug":"apps-golyzer","files":["apps/golyzer/docs/GITNEXUS_TUTORIAL.md","apps/golyzer/docs/MIGRATION_ANALYSIS.md","apps/golyzer/docs/MIGRATION_PLAN.md","apps/golyzer/docs/architecture/chart-adapter-proposal.md","apps/golyzer/docs/changes/antd-deep-imports-module-federation.md","apps/golyzer/docs/changes/cfi-import-dinamico-defensivo.md","apps/golyzer/docs/changes/micro-frontend-router-data-router.md","apps/golyzer/docs/changes/public-path-assets-mfe.md","apps/golyzer/docs/changes/svgr-prefix-ids-colisao-svg.md","apps/golyzer/docs/done/HOST_DEPENDENCY_MITIGATION_PLAN.md","apps/golyzer/docs/shadow-architecture/README.md","apps/golyzer/docs/shadow-architecture/chart-behavioral-model.md","apps/golyzer/docs/shadow-architecture/data-flow-optimization.md","apps/golyzer/docs/shadow-architecture/dependency-cycles.md","apps/golyzer/docs/shadow-architecture/navigation.md","apps/golyzer/docs/shadow-architecture/overview.md","apps/golyzer/docs/shadow-architecture/path-dependent-state.md","apps/golyzer/docs/shadow-architecture/team-plan.md","apps/golyzer/docs/shadow-architecture/tsconfig.typedoc.json","apps/golyzer/docs/shadow-architecture/typedoc-readme.md","apps/golyzer/docs/shadow-architecture/typedoc.json","apps/golyzer/docs/todo/dependency-upgrade-impact.md","apps/golyzer/docs/todo/hmr-invalidation.md","apps/golyzer/docs/todo/react-dom-warnings.md","apps/golyzer/docs/todo/unused-dependencies.md","apps/golyzer/index.html","apps/golyzer/package.json","apps/golyzer/playwright.config.ts","apps/golyzer/public/workers/csv.js","apps/golyzer/public/workers/pivot.js","apps/golyzer/public/workers/spreadsheet.js","apps/golyzer/src/App.tsx","apps/golyzer/src/adapters/chart/ChartAdapter.ts","apps/golyzer/src/adapters/chart/ChartAdapterFactory.ts","apps/golyzer/src/adapters/chart/EChartsAdapter.ts","apps/golyzer/src/adapters/chart/MockAdapter.ts","apps/golyzer/src/adapters/chart/index.ts","apps/golyzer/src/adapters/chart/types.ts","apps/golyzer/src/adapters/chart/useChart.ts","apps/golyzer/src/assets/icon/charts/index.ts","apps/golyzer/src/assets/img/avatar.json","apps/golyzer/src/components/AlphaPickerCustom/index.tsx","apps/golyzer/src/components/AvatarGroup/index.tsx","apps/golyzer/src/components/AvatarGroup/styles.module.less","apps/golyzer/src/components/Box/index.tsx","apps/golyzer/src/components/Box/styles.module.less","apps/golyzer/src/components/Button/index.tsx","apps/golyzer/src/components/Button/styles.module.less","apps/golyzer/src/components/CardChart/CardChart.test.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartActions/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/styles.module.less","apps/golyzer/src/components/CardChart/helpers/components/ChartWrapper/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/FocusModeRenderer/index.tsx","apps/golyzer/src/components/CardChart/helpers/constants/index.ts","apps/golyzer/src/components/CardChart/helpers/hooks/useCardBorder.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useChartPercentageLayout.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useKeyboardMove.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/usePinnedElement.tsx","apps/golyzer/src/components/CardChart/helpers/utils/fullWidth/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/gridLines/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/styles.module.less","apps/golyzer/src/components/CardChart/helpers/utils/items/README.md","apps/golyzer/src/components/CardChart/helpers/utils/items/examples.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/styles.module.less","apps/golyzer/src/components/CardChart/index.tsx","apps/golyzer/src/components/ChartWrapper/index.tsx","apps/golyzer/src/components/Charts/AreaLine/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/actions.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/styles.module.less","apps/golyzer/src/components/Charts/AvgBarChart/AvgBarChart.test.ts","apps/golyzer/src/components/Charts/AvgBarChart/index.tsx","apps/golyzer/src/components/Charts/BarLabelRotate/index.tsx","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/index.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/ensureKeyValueSource.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/helpers/highlightPartialTooltip.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/useBasicBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/usePartialHighlightState.ts","apps/golyzer/src/components/Charts/BasicBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/actions.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/styles.module.less","apps/golyzer/src/components/Charts/BasicGaugeChart/index.tsx","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.test.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicLineChart/index.tsx","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/chartOptions.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/constants.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/index.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/seriesBuilder.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/types.ts","apps/golyzer/src/components/Charts/BasicPieChart/index.tsx","apps/golyzer/src/components/Charts/BasicRadarChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterAxisChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterChart/index.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.tsx","apps/golyzer/src/components/Charts/CalendarPieChart/index.tsx","apps/golyzer/src/components/Charts/ConditionalColorLineChart/index.tsx","apps/golyzer/src/components/Charts/DoughnutChart/index.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/actions.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/index.tsx","apps/golyzer/src/components/Charts/DynamicLine/DynamicLineChart.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.tsx","apps/golyzer/src/components/Charts/DynamicLine/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/styles.module.less","apps/golyzer/src/components/Charts/GaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/GradientLineChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/HighlightedBarChart.utils.test.ts","apps/golyzer/src/components/Charts/HighlightedBarChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.test.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalStackedBarChart/index.tsx","apps/golyzer/src/components/Charts/LineRaceChart/LineRaceChart.test.tsx","apps/golyzer/src/components/Charts/LineRaceChart/actions.tsx","apps/golyzer/src/components/Charts/LineRaceChart/index.tsx","apps/golyzer/src/components/Charts/MixedChart/index.tsx","apps/golyzer/src/components/Charts/NightingaleChart/index.tsx","apps/golyzer/src/components/Charts/PolarStackBarChart/index.tsx","apps/golyzer/src/components/Charts/RotatedLabelBarChart/index.tsx","apps/golyzer/src/components/Charts/ScatterPuchCardChart/index.tsx","apps/golyzer/src/components/Charts/SmoothLineChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/utils.test.ts","apps/golyzer/src/components/Charts/SortBarChart/utils.ts","apps/golyzer/src/components/Charts/StackedAreaChart/index.tsx","apps/golyzer/src/components/Charts/StackedBarChart/index.tsx","apps/golyzer/src/components/Charts/StackedLineChart/index.tsx","apps/golyzer/src/components/Charts/StageGaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/VariationMixedChart/helpers/util/optionsVariationMixed.ts","apps/golyzer/src/components/Charts/VariationMixedChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/interaction.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.test.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.ts","apps/golyzer/src/components/Charts/helpers/partialHighlightTooltip.tsx","apps/golyzer/src/components/Charts/index.tsx","apps/golyzer/src/components/Confirm/confirmLeave.test.tsx","apps/golyzer/src/components/Confirm/index.tsx","apps/golyzer/src/components/Confirm/styles.module.less","apps/golyzer/src/components/Container/index.tsx","apps/golyzer/src/components/Container/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/constants/options.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useEditorContextMenuItems.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useWorkspaceActions.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/build.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/target.ts","apps/golyzer/src/components/ContextMenuWrapper/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/styles.module.less","apps/golyzer/src/components/DrawerCharts/ChartItem.tsx","apps/golyzer/src/components/DrawerCharts/index.tsx","apps/golyzer/src/components/DrawerCharts/styles.module.less","apps/golyzer/src/components/DrawerCharts/tabs/appearance/Axis.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/BordersAndColors.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/General.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/styles.module.less","apps/golyzer/src/components/DropdownWithTooltip/index.tsx","apps/golyzer/src/components/EChartsWrapper/EChartsClient.tsx","apps/golyzer/src/components/EChartsWrapper/index.tsx","apps/golyzer/src/components/EditorPanelAppearance/index.tsx","apps/golyzer/src/components/Elements/Button/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/DatePickerStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/Label/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/SliderStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/utils/styled.ts","apps/golyzer/src/components/Elements/Date/helpers/utils/update.ts","apps/golyzer/src/components/Elements/Date/index.tsx","apps/golyzer/src/components/Elements/Date/styles.module.less","apps/golyzer/src/components/Elements/HierarchicalMatrix/index.tsx","apps/golyzer/src/components/Elements/Image/index.tsx","apps/golyzer/src/components/Elements/Image/styles.module.less","apps/golyzer/src/components/Elements/Input/index.tsx","apps/golyzer/src/components/Elements/Input/styles.module.less","apps/golyzer/src/components/Elements/Number/index.tsx","apps/golyzer/src/components/Elements/Number/styles.module.less","apps/golyzer/src/components/Elements/NumberWithTrend/helpers/tooltip.ts","apps/golyzer/src/components/Elements/NumberWithTrend/index.tsx","apps/golyzer/src/components/Elements/NumberWithTrend/styles.module.less","apps/golyzer/src/components/Elements/Select/helpers/components/SelectStyled/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/components/SelectVirtualized/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/utils/remove.ts","apps/golyzer/src/components/Elements/Select/index.tsx","apps/golyzer/src/components/Elements/Select/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/ButtonDrillDown/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ChevronTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ConditionalTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ProgressTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/IconInfo/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/StyledGridWrapper/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/hooks/useInteractionLocationDispatcher.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionCell.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionPointer.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionVisualState.ts","apps/golyzer/src/components/Elements/Spreadsheets/constants/interactionClasses.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.test.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/clickClassification.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/columnSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/constants.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/drilldownExecution.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/rowSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/useDrilldownFocusHandler.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/useDataSourceHandler.tsx","apps/golyzer/src/components/Elements/Spreadsheets/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/utils/chevron.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/dateFormat.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/empty.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/focus.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/location.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/base-styles.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/css-generators.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/formatters.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/grid-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/header-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/label-modifiers.ts","apps/golyzer/src/components/Elements/Table/components/AutoSizedGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/styles.module.less","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/index.tsx","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/styles.module.less","apps/golyzer/src/components/Elements/Table/components/GridContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/GridContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/index.tsx","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/styles.module.less","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/StyledTableWrapper/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/styles.module.less","apps/golyzer/src/components/Elements/Table/enums/aggregators.ts","apps/golyzer/src/components/Elements/Table/index.tsx","apps/golyzer/src/components/Elements/Table/styles.module.less","apps/golyzer/src/components/Elements/Table/utils/aggregators.ts","apps/golyzer/src/components/Elements/Table/utils/appearance.ts","apps/golyzer/src/components/Elements/Table/utils/format.ts","apps/golyzer/src/components/Elements/Table/utils/sort.ts","apps/golyzer/src/components/Elements/index.tsx","apps/golyzer/src/components/Empty/index.tsx","apps/golyzer/src/components/Empty/styles.module.less","apps/golyzer/src/components/ErrorBoundary/AppErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/DatasetErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/FormErrorBoundary.tsx","apps/golyzer/src/components/EyeDropperButton/index.tsx","apps/golyzer/src/components/EyeDropperButton/styles.module.less","apps/golyzer/src/components/FilterItem/helpers/components/FilterInputRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FilterValueRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FormFilters/index.tsx","apps/golyzer/src/components/FilterItem/index.tsx","apps/golyzer/src/components/FilterItem/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/FieldsInElement/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterValueField/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/ConfirmDeletePop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/FormResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/constants/icons.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/constants/form.ts","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/helpers/components/ConfirmResetPop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/context/FilterWrapperContext.tsx","apps/golyzer/src/components/FilterWrapper/helpers/utils/filters.ts","apps/golyzer/src/components/FilterWrapper/helpers/utils/find.ts","apps/golyzer/src/components/FilterWrapper/index.tsx","apps/golyzer/src/components/FocusModeModal/index.tsx","apps/golyzer/src/components/FocusModeModal/styles.module.less","apps/golyzer/src/components/FormulaViewModal/index.tsx","apps/golyzer/src/components/FullscreenTooltip/index.tsx","apps/golyzer/src/components/ImagMask/index.tsx","apps/golyzer/src/components/IndicatorsBuilderDrawer/index.tsx","apps/golyzer/src/components/Input/index.tsx","apps/golyzer/src/components/Input/styles.module.less","apps/golyzer/src/components/InteractionModeBanner/index.tsx","apps/golyzer/src/components/InteractionModeBanner/styles.module.less","apps/golyzer/src/components/InteractionThumbnail/index.tsx","apps/golyzer/src/components/InteractionThumbnail/styles.module.less","apps/golyzer/src/components/KeyboardHandler/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/index.tsx","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/ClampedNumberInput/index.tsx","apps/golyzer/src/components/LayoutController/helpers/utils/calculateMaxValues.ts","apps/golyzer/src/components/LayoutFaker/index.tsx","apps/golyzer/src/components/ListPanels/helpers/components/ListEmpty/index.tsx","apps/golyzer/src/components/ListPanels/helpers/utils/columns.tsx","apps/golyzer/src/components/ListPanels/index.tsx","apps/golyzer/src/components/ListPanels/styles.module.less","apps/golyzer/src/components/Loading/index.tsx","apps/golyzer/src/components/MicroFrontendRouter/index.tsx","apps/golyzer/src/components/MultiSelect/index.tsx","apps/golyzer/src/components/MultiSelect/styles.module.less","apps/golyzer/src/components/Panel/Header/index.tsx","apps/golyzer/src/components/Panel/Header/styles.module.less","apps/golyzer/src/components/Panel/PanelStyled/index.tsx","apps/golyzer/src/components/Panel/SubHeader/index.tsx","apps/golyzer/src/components/Panel/SubHeader/styles.module.less","apps/golyzer/src/components/PanelContainer/PanelInteractionBridge.tsx","apps/golyzer/src/components/PanelContainer/index.tsx","apps/golyzer/src/components/PanelContainer/styles.module.less","apps/golyzer/src/components/PanelScroll/index.tsx","apps/golyzer/src/components/PanelScroll/styles.module.less","apps/golyzer/src/components/RelationConfigPanel/index.tsx","apps/golyzer/src/components/RelationConfigPanel/styles.module.less","apps/golyzer/src/components/RelationModeButtons/index.tsx","apps/golyzer/src/components/RelationModeButtons/styles.module.less","apps/golyzer/src/components/Search/index.tsx","apps/golyzer/src/components/Search/styles.module.less","apps/golyzer/src/components/Select/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementClick.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementDrag.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementRender.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementResize.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementSelect.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/dom.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/groups.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/selection.ts","apps/golyzer/src/components/SelectoAreaPanel/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/styles.module.less","apps/golyzer/src/components/TimedAlert/index.tsx","apps/golyzer/src/components/TimedAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/DataSetWrapper/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/DraggableTabNode/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabBar/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabEditable/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/renderTab/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScroll.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScrollMemory.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useTabAppearance.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/utils/background.ts","apps/golyzer/src/components/WrapperPanel/Panels/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/index.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/positions.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/size.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/spacing.ts","apps/golyzer/src/components/WrapperPanel/Visions/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/AlternateColor.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Axis.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Background.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Border.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnsLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataFormat.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataRange.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PanelStyled/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PieProperties.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DatePicker.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Divider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Gauge.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Graph.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/GridLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderRowsOrColumns.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Image.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Interaction.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Legend.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/MatrixLines.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Number.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/RowHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Select.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Shadow.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Slider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Spacing.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Text.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Tips.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/TotalsSubtotals.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Checkbox/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/ColorPickerField/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InputNumber/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/PanelHeaderInternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Radio/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Select/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/types.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/chart.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/panel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormButton.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormManyData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormOneData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/utils/axisLabel.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormConfigAdvanced.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDate.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDateFilter.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormFilters.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormImage.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormInput.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormItem.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormSort.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/styles.module.less","apps/golyzer/src/components/WrapperPanel/index.tsx","apps/golyzer/src/components/WrapperPanel/styles.module.less","apps/golyzer/src/constants/appearance.ts","apps/golyzer/src/constants/chart.ts","apps/golyzer/src/constants/columnDataTypes.ts","apps/golyzer/src/constants/date.ts","apps/golyzer/src/constants/elements.ts","apps/golyzer/src/constants/env.ts","apps/golyzer/src/constants/interactionModeRegistry.ts","apps/golyzer/src/constants/moveable.ts","apps/golyzer/src/constants/operators.ts","apps/golyzer/src/constants/options.ts","apps/golyzer/src/constants/size.ts","apps/golyzer/src/constants/tabs.ts","apps/golyzer/src/context/ActiveStateContext.tsx","apps/golyzer/src/context/CsvContext.tsx","apps/golyzer/src/context/DrilldownContext.tsx","apps/golyzer/src/context/EditorContext/helpers/utils/groups.ts","apps/golyzer/src/context/EditorContext/index.tsx","apps/golyzer/src/context/FilterResultsContext.tsx","apps/golyzer/src/context/FullScreenContext.tsx","apps/golyzer/src/context/HistoryContext/hooks/useUpdateAxisLabels.tsx","apps/golyzer/src/context/HistoryContext/index.tsx","apps/golyzer/src/context/HistoryContext/utils/elements.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.spec.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.ts","apps/golyzer/src/context/HistoryContext/utils/tabs.ts","apps/golyzer/src/context/HoverScrollContext/index.tsx","apps/golyzer/src/context/HoverScrollContext/styles.module.less","apps/golyzer/src/context/InteractionModeContext/ChartOperationsContext.tsx","apps/golyzer/src/context/InteractionModeContext/ChartOperationsFactory.ts","apps/golyzer/src/context/InteractionModeContext/ChartOperationsRegistry.ts","apps/golyzer/src/context/InteractionModeContext/InteractionOrchestratorContext.tsx","apps/golyzer/src/context/InteractionModeContext/InteractionStateStore.ts","apps/golyzer/src/context/InteractionModeContext/constants/requestMetaKeys.ts","apps/golyzer/src/context/InteractionModeContext/index.tsx","apps/golyzer/src/context/InteractionModeContext/operations/AbstractBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartPayloadBuilder.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarSeriesLayoutOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ChartOperationsInterface.ts","apps/golyzer/src/context/InteractionModeContext/operations/DrilldownBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/EChartsInteractionDriver.ts","apps/golyzer/src/context/InteractionModeContext/operations/GaugeElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HorizontalBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineRaceChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/MixedChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/NumberElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/PieChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/RadarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/BaseChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/index.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/types.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleLabelResolver.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubblePointUtils.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleVisualStateManager.ts","apps/golyzer/src/context/InteractionModeContext/operations/generateClickedData.consumers.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesVisualState.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BaseScatterOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BubbleScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.constants.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.types.ts","apps/golyzer/src/context/MatrixDrilldownContext.tsx","apps/golyzer/src/context/MinimizedContext.tsx","apps/golyzer/src/context/PanelContext/copyPaste.test.tsx","apps/golyzer/src/context/PanelContext/index.test.tsx","apps/golyzer/src/context/PanelContext/index.tsx","apps/golyzer/src/context/PanelContext/types/sub-contexts.ts","apps/golyzer/src/context/PanelContext/utils/generalFilters.ts","apps/golyzer/src/context/PanelContext/utils/interactionMode.ts","apps/golyzer/src/context/PanelContext/utils/stateComparison.ts","apps/golyzer/src/context/PanelListContext.tsx","apps/golyzer/src/context/RefreshContext.tsx","apps/golyzer/src/context/SpreadsheetsContext.tsx","apps/golyzer/src/context/UserContext.tsx","apps/golyzer/src/context/ViewsStateContext.tsx","apps/golyzer/src/enums/scope.ts","apps/golyzer/src/hooks/InteractionMode/index.ts","apps/golyzer/src/hooks/InteractionMode/useAutoApplyMasterFilter.ts","apps/golyzer/src/hooks/InteractionMode/useBasicBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicLineChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicPieChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicRadarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBubbleChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartReadyState.ts","apps/golyzer/src/hooks/InteractionMode/useDimensionFilters.ts","apps/golyzer/src/hooks/InteractionMode/useDrilldownBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyManager.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyStore.ts","apps/golyzer/src/hooks/InteractionMode/useElementAutoFilter.ts","apps/golyzer/src/hooks/InteractionMode/useGaugeInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useHorizontalBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionAbortSignal.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMasterSelection.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMode.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeConfigStore.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeListener.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeThumbnail.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeTransition.ts","apps/golyzer/src/hooks/InteractionMode/useNumbersInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useScatterChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSortBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSpreadsheetsInteractionHandlers.ts","apps/golyzer/src/hooks/useChartData.ts","apps/golyzer/src/hooks/useChartDataLoader.tsx","apps/golyzer/src/hooks/useChartDataMap.tsx","apps/golyzer/src/hooks/useChartFinishListener.ts","apps/golyzer/src/hooks/useChartInteraction.tsx","apps/golyzer/src/hooks/useChartMostUsed.tsx","apps/golyzer/src/hooks/useChartQueryData.tsx","apps/golyzer/src/hooks/useClipboardChartListener.tsx","apps/golyzer/src/hooks/useCopyPaste.tsx","apps/golyzer/src/hooks/useDebounce.tsx","apps/golyzer/src/hooks/useDeleteOnKeyDown.tsx","apps/golyzer/src/hooks/useDrilldown.tsx","apps/golyzer/src/hooks/useElementImage.tsx","apps/golyzer/src/hooks/useExportData.tsx","apps/golyzer/src/hooks/useFilterElementsOptions.tsx","apps/golyzer/src/hooks/useFilterResults.tsx","apps/golyzer/src/hooks/useFocusModal.tsx","apps/golyzer/src/hooks/useHandleComponentScroll.tsx","apps/golyzer/src/hooks/useHostAwareNavigate.ts","apps/golyzer/src/hooks/useIMESafeDebounce.tsx","apps/golyzer/src/hooks/useIndexedDBWithExpiration.tsx","apps/golyzer/src/hooks/useIndicatorsBuilderVisibleStore.tsx","apps/golyzer/src/hooks/useLeavePage.tsx","apps/golyzer/src/hooks/useLogout.tsx","apps/golyzer/src/hooks/useMicroFrontendStyles.ts","apps/golyzer/src/hooks/usePanelId.ts","apps/golyzer/src/hooks/usePanelUtilities.tsx","apps/golyzer/src/hooks/usePathname.tsx","apps/golyzer/src/hooks/usePerformanceTracking.tsx","apps/golyzer/src/hooks/usePrevious.tsx","apps/golyzer/src/hooks/useSafeAsyncState.tsx","apps/golyzer/src/hooks/useSpanAttributes.tsx","apps/golyzer/src/hooks/useTreeFilter.ts","apps/golyzer/src/hooks/useWebWorker.tsx","apps/golyzer/src/hooks/useWindowSize.tsx","apps/golyzer/src/interfaces/iMapper.ts","apps/golyzer/src/main.tsx","apps/golyzer/src/mappers/chart/chart.mapper.ts","apps/golyzer/src/mappers/chart/index.ts","apps/golyzer/src/mappers/collaborator/collaborator.mapper.ts","apps/golyzer/src/mappers/collaborator/index.ts","apps/golyzer/src/mappers/panel/index.ts","apps/golyzer/src/mappers/panel/panel.mapper.ts","apps/golyzer/src/mappers/tab/index.ts","apps/golyzer/src/mappers/tab/tab.mapper.ts","apps/golyzer/src/mocks/MockInitializer.tsx","apps/golyzer/src/mocks/adapter.ts","apps/golyzer/src/mocks/factories/chart.ts","apps/golyzer/src/mocks/factories/chartData.spec.ts","apps/golyzer/src/mocks/factories/chartData.ts","apps/golyzer/src/mocks/factories/dataset.ts","apps/golyzer/src/mocks/factories/orgStructure.ts","apps/golyzer/src/mocks/factories/panel.ts","apps/golyzer/src/mocks/factories/user.ts","apps/golyzer/src/mocks/handlers/auth.ts","apps/golyzer/src/mocks/handlers/catchAll.ts","apps/golyzer/src/mocks/handlers/charts.ts","apps/golyzer/src/mocks/handlers/datasets.ts","apps/golyzer/src/mocks/handlers/goardian.ts","apps/golyzer/src/mocks/handlers/orgStructure.ts","apps/golyzer/src/mocks/handlers/panels.ts","apps/golyzer/src/mocks/handlers/sharing.ts","apps/golyzer/src/mocks/handlers/user.ts","apps/golyzer/src/mocks/index.ts","apps/golyzer/src/mocks/store/panelStore.ts","apps/golyzer/src/pages/Information/index.tsx","apps/golyzer/src/pages/ListPanels/index.tsx","apps/golyzer/src/pages/Login/index.tsx","apps/golyzer/src/pages/Logout/index.tsx","apps/golyzer/src/pages/PanelAdd/index.tsx","apps/golyzer/src/pages/PanelEdit/index.tsx","apps/golyzer/src/pages/PanelPresentation/index.tsx","apps/golyzer/src/patches/rcTableDevWarningPatch.ts","apps/golyzer/src/router.tsx","apps/golyzer/src/services/api.ts","apps/golyzer/src/services/auth.ts","apps/golyzer/src/services/chartQuery/cacheManager.ts","apps/golyzer/src/services/chartQuery/queryKeys.ts","apps/golyzer/src/services/charts/config.ts","apps/golyzer/src/services/charts/index.ts","apps/golyzer/src/services/charts/list.ts","apps/golyzer/src/services/charts/save.ts","apps/golyzer/src/services/datasets/datasets.ts","apps/golyzer/src/services/errors/AuthTokenError.ts","apps/golyzer/src/services/organizationalStructure.ts","apps/golyzer/src/services/panel/delete.ts","apps/golyzer/src/services/panel/getPanel.ts","apps/golyzer/src/services/panel/interfaces/uploadPanelImageRequest.ts","apps/golyzer/src/services/panel/list.ts","apps/golyzer/src/services/panel/save.ts","apps/golyzer/src/services/panel/update.ts","apps/golyzer/src/services/panel/uploadPanelImage.ts","apps/golyzer/src/services/storage.ts","apps/golyzer/src/services/user/getUserData.ts","apps/golyzer/src/services/workers/csv.ts","apps/golyzer/src/services/workers/pivot.ts","apps/golyzer/src/services/workers/resultsFilter.ts","apps/golyzer/src/services/workers/spreadsheet.spec.ts","apps/golyzer/src/services/workers/spreadsheet.ts","apps/golyzer/src/shims/goapice-plugin.ts","apps/golyzer/src/shims/goapice.ts","apps/golyzer/src/shims/packages/common.tsx","apps/golyzer/src/shims/packages/empty.css","apps/golyzer/src/shims/packages/react-datasets.module.less","apps/golyzer/src/shims/packages/react-datasets.tsx","apps/golyzer/src/shims/packages/react-goardian-guard.tsx","apps/golyzer/src/shims/packages/react-guapo-operators.ts","apps/golyzer/src/shims/packages/react-guapo.tsx","apps/golyzer/src/shims/packages/react-sharing.tsx","apps/golyzer/src/styles/fonts.less","apps/golyzer/src/styles/global.less","apps/golyzer/src/styles/globalStyle.ts","apps/golyzer/src/styles/overrideAnt.css","apps/golyzer/src/styles/theme/charts/default.ts","apps/golyzer/src/styles/theme/charts/gray.ts","apps/golyzer/src/styles/theme/dark.less","apps/golyzer/src/styles/theme/light.less","apps/golyzer/src/styles/tokens.ts","apps/golyzer/src/styles/variables.less","apps/golyzer/src/test/setup.ts","apps/golyzer/src/tests/mocks/request/requestToGenerateMatrixLines.ts","apps/golyzer/src/types/form.ts","apps/golyzer/src/types/interactionMode/chartInteraction.ts","apps/golyzer/src/types/interactionMode/clickedDataTypes.ts","apps/golyzer/src/types/interactionMode/interactionConfig.ts","apps/golyzer/src/types/interactionMode/interactionEvents.ts","apps/golyzer/src/types/interactionMode/interactionState.ts","apps/golyzer/src/utils/array.ts","apps/golyzer/src/utils/charts/appearance.ts","apps/golyzer/src/utils/charts/applyAppearanceConfig.spec.ts","apps/golyzer/src/utils/charts/axis.ts","apps/golyzer/src/utils/charts/dataset.ts","apps/golyzer/src/utils/charts/defaultAggregation.test.ts","apps/golyzer/src/utils/charts/enum.ts","apps/golyzer/src/utils/charts/fieldIdentity.test.ts","apps/golyzer/src/utils/charts/fieldIdentity.ts","apps/golyzer/src/utils/charts/filter.ts","apps/golyzer/src/utils/charts/index.ts","apps/golyzer/src/utils/charts/lineChartOptions.test.ts","apps/golyzer/src/utils/charts/lineChartOptions.ts","apps/golyzer/src/utils/charts/modules/aggregation.ts","apps/golyzer/src/utils/charts/modules/appearance.ts","apps/golyzer/src/utils/charts/modules/data.ts","apps/golyzer/src/utils/charts/modules/index.ts","apps/golyzer/src/utils/charts/modules/position.ts","apps/golyzer/src/utils/charts/modules/split-map.ts","apps/golyzer/src/utils/charts/modules/tooltip.ts","apps/golyzer/src/utils/charts/modules/types.ts","apps/golyzer/src/utils/charts/modules/validation.ts","apps/golyzer/src/utils/charts/number.ts","apps/golyzer/src/utils/charts/partialHighlight.spec.ts","apps/golyzer/src/utils/charts/partialHighlight.ts","apps/golyzer/src/utils/charts/partialHighlightOperations.ts","apps/golyzer/src/utils/charts/position.ts","apps/golyzer/src/utils/charts/remove.ts","apps/golyzer/src/utils/charts/reorderElements.spec.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.test.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.ts","apps/golyzer/src/utils/charts/sizes.ts","apps/golyzer/src/utils/charts/transformProps.ts","apps/golyzer/src/utils/collaborator/enum.ts","apps/golyzer/src/utils/color.ts","apps/golyzer/src/utils/converting/size.ts","apps/golyzer/src/utils/corsWorker.ts","apps/golyzer/src/utils/date.ts","apps/golyzer/src/utils/date/range.ts","apps/golyzer/src/utils/debugLog.ts","apps/golyzer/src/utils/deepCopy.ts","apps/golyzer/src/utils/delay.ts","apps/golyzer/src/utils/echarts.ts","apps/golyzer/src/utils/errorHandling.test.ts","apps/golyzer/src/utils/errorHandling.ts","apps/golyzer/src/utils/feedback/confirm.tsx","apps/golyzer/src/utils/feedback/error.tsx","apps/golyzer/src/utils/feedback/message.ts","apps/golyzer/src/utils/feedback/saving.tsx","apps/golyzer/src/utils/feedback/tooltip.tsx","apps/golyzer/src/utils/formatting/date.ts","apps/golyzer/src/utils/formatting/responseData.ts","apps/golyzer/src/utils/formatting/text.ts","apps/golyzer/src/utils/functions.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.test.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.ts","apps/golyzer/src/utils/interactionMode/constants.ts","apps/golyzer/src/utils/interactionMode/interactionElements.ts","apps/golyzer/src/utils/interactionMode/interactionEvents.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.test.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.ts","apps/golyzer/src/utils/placeholderSource.ts","apps/golyzer/src/utils/primaryErrorCandidate.ts","apps/golyzer/src/utils/responseData/filter.ts","apps/golyzer/src/utils/storybookHideProps/index.ts","apps/golyzer/src/utils/storybookToggleableProps/index.ts","apps/golyzer/src/utils/styled/index.ts","apps/golyzer/src/utils/system.ts","apps/golyzer/src/utils/typescript/isObject.ts","apps/golyzer/src/utils/typescript/sql.ts","apps/golyzer/src/utils/typescript/text.ts","apps/golyzer/src/utils/typescript/typeGuards.ts","apps/golyzer/src/utils/unicode/normalize.ts","apps/golyzer/src/utils/url.ts","apps/golyzer/src/utils/user.ts","apps/golyzer/src/utils/uuid.ts","apps/golyzer/src/utils/validation/compare.spec.ts","apps/golyzer/src/utils/validation/compare.ts","apps/golyzer/src/utils/validation/compareDate.ts","apps/golyzer/src/utils/validation/user.ts","apps/golyzer/src/utils/validation/uuid.ts","apps/golyzer/tests/e2e/offline-drawer-charts.spec.ts","apps/golyzer/tests/e2e/offline-smoke.spec.ts","apps/golyzer/tsconfig.json","apps/golyzer/tsconfig.node.json","apps/golyzer/vite.config.ts","apps/golyzer/vitest.config.ts"]}]},{"name":"docs","slug":"docs","files":["docs/deploy/conventions.md","docs/migration/fase-1-workspace.md","docs/migration/fase-2-tooling.md","docs/migration/fase-2.5-compatibilidade.md","docs/migration/fase-3-boundaries.md","docs/migration/fase-4-cfi.md","docs/migration/fase-5-cfi-consumo.md","docs/migration/fase-6-ci.md","docs/migration/fase-7-consolidacao.md","docs/plans/internalizar-goapice-react-libs.md","docs/templates/code-review-report.md"]},{"name":"packages","slug":"packages","files":[],"children":[{"name":"packages — cfi-core","slug":"packages-cfi-core","files":["packages/cfi-core/package.json","packages/cfi-core/src/components/Box/index.tsx","packages/cfi-core/src/components/Box/styles.module.less","packages/cfi-core/src/components/FormulaViewModal/FunctionIcon.tsx","packages/cfi-core/src/components/FormulaViewModal/index.tsx","packages/cfi-core/src/components/FormulaViewModal/styles.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/DatasetWrapper.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/index.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/styles.module.less","packages/cfi-core/src/components/PopoverContent.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/index.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DefaultFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DeviationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/FunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/SumIcon.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/VariationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/WeightedAvgFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/types.ts","packages/cfi-core/src/components/Workspace/components/FilterModal/index.tsx","packages/cfi-core/src/components/Workspace/components/FilterModal/styles.module.less","packages/cfi-core/src/components/Workspace/index.tsx","packages/cfi-core/src/components/Workspace/styles.module.less","packages/cfi-core/src/components/index.ts","packages/cfi-core/src/constants/colors.ts","packages/cfi-core/src/constants/consolidatedAccountingDatasetName.ts","packages/cfi-core/src/constants/date.ts","packages/cfi-core/src/constants/editableNodeTypes.ts","packages/cfi-core/src/constants/filter.ts","packages/cfi-core/src/constants/functionCaptions.ts","packages/cfi-core/src/constants/index.ts","packages/cfi-core/src/constants/indicatorTypes.ts","packages/cfi-core/src/constants/indicatorsDatasetName.ts","packages/cfi-core/src/constants/slateInitialNodes.ts","packages/cfi-core/src/constants/specialNodeTypes.ts","packages/cfi-core/src/context/CfiConfigContext.tsx","packages/cfi-core/src/context/SlateContext.tsx","packages/cfi-core/src/context/generalFiltersContext.tsx","packages/cfi-core/src/context/index.ts","packages/cfi-core/src/contracts/index.ts","packages/cfi-core/src/hooks/index.ts","packages/cfi-core/src/hooks/useDatasetData.tsx","packages/cfi-core/src/hooks/useOpenedFunctionPopoverStore.ts","packages/cfi-core/src/hooks/useSyncVariable.tsx","packages/cfi-core/src/hooks/useTreeFilter.tsx","packages/cfi-core/src/index.ts","packages/cfi-core/src/mappers/deviationFunction.mapper.ts","packages/cfi-core/src/mappers/generalFilter.mapper.ts","packages/cfi-core/src/mappers/index.ts","packages/cfi-core/src/mappers/slate.mapper.ts","packages/cfi-core/src/mappers/variationFunction.mapper.ts","packages/cfi-core/src/mappers/weightedAvgFunction.mapper.ts","packages/cfi-core/src/services/api.ts","packages/cfi-core/src/services/dataset.ts","packages/cfi-core/src/services/index.ts","packages/cfi-core/src/services/indicator.ts","packages/cfi-core/src/styles/variables.less","packages/cfi-core/src/types/dataset.ts","packages/cfi-core/src/types/filter.ts","packages/cfi-core/src/types/index.ts","packages/cfi-core/src/types/indicator.ts","packages/cfi-core/src/types/slate.ts","packages/cfi-core/src/utils/findOpenParentheses.ts","packages/cfi-core/src/utils/index.ts","packages/cfi-core/src/utils/message.ts","packages/cfi-core/src/utils/selection.ts","packages/cfi-core/src/utils/uuid.ts","packages/cfi-core/src/validations/compare.ts","packages/cfi-core/src/validations/index.ts","packages/cfi-core/src/validations/syntaxValidation.ts","packages/cfi-core/tsconfig.json"]},{"name":"packages — federation-contracts","slug":"packages-federation-contracts","files":["packages/federation-contracts/package.json","packages/federation-contracts/src/index.ts","packages/federation-contracts/src/resolvers.ts","packages/federation-contracts/src/types.ts","packages/federation-contracts/tsconfig.json"]},{"name":"packages — shell-shared","slug":"packages-shell-shared","files":["packages/shell-shared/package.json","packages/shell-shared/src/hooks/index.ts","packages/shell-shared/src/hooks/useDebounce.ts","packages/shell-shared/src/hooks/usePrevious.ts","packages/shell-shared/src/hooks/useWindowSize.ts","packages/shell-shared/src/index.ts","packages/shell-shared/tsconfig.json"]},{"name":"packages — tooling-config","slug":"packages-tooling-config","files":["packages/tooling-config/eslint/README.md","packages/tooling-config/package.json","packages/tooling-config/prettier.config.mjs","packages/tooling-config/tsconfig/base.json"]}]},{"name":"patches","slug":"patches","files":["patches/@goapice__react-datasets@2.7.22.patch","patches/@goapice__react-guapo@1.4.2.patch","patches/react-sortable-hoc@2.0.0.patch"]},{"name":"scripts","slug":"scripts","files":["scripts/detect-impact.sh"]}]; | |
| var META = {"fromCommit":"1cd4e01da209986804d3d8bf38a99ebd42073e7b","generatedAt":"2026-03-24T10:34:38.586Z","model":"glm-5:cloud","moduleFiles":{"Root":["README.md","package.json","pnpm-workspace.yaml","tsconfig.base.json"],"apps":["apps/base/README.md","apps/base/docs/MIGRATION_PLAN.md","apps/base/docs/audit/impacto-roteamento-navegacao.md","apps/base/docs/audit/mfe-antipatterns/auditoria-mfe-antipatterns.md","apps/base/docs/audit/mfe-antipatterns/claude-gitnexus-mfe-antipatterns-audit.md","apps/base/docs/audit/mfe-antipatterns/mapa-dominios.md","apps/base/docs/audit/mfe-antipatterns/proposals/001-no-ci-cd.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-common-ownership.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-cyclic-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-no-versioning.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-hub-like-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-knot-mfe.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-golden-hammer.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-mega-frontend.md","apps/base/docs/audit/mfe-antipatterns/proposta-ownership-dominios.md","apps/base/docs/breakingchanges/00-indice.md","apps/base/docs/breakingchanges/01-roteamento-navegacao.md","apps/base/docs/breakingchanges/02-module-federation-mf.md","apps/base/docs/breakingchanges/03-variaveis-ambiente.md","apps/base/docs/breakingchanges/04-build-tooling.md","apps/base/docs/breakingchanges/05-autenticacao-sessao.md","apps/base/docs/breakingchanges/06-react-18-upgrade.md","apps/base/docs/breakingchanges/07-head-meta-seo.md","apps/base/docs/breakingchanges/08-dependencias-removidas-atualizadas.md","apps/base/docs/breakingchanges/09-componentes-novos-alterados.md","apps/base/docs/breakingchanges/next-router-shim-impacto-remotes.md","apps/base/docs/changes/next-router-shim-module-federation.md","apps/base/docs/changes/share-scope-next-router.md","apps/base/docs/mapeamento-projetos-mfe.md","apps/base/docs/migration/decisao-versao-antd.md","apps/base/docs/migration/fase-0-scaffolding.md","apps/base/docs/migration/fase-1-env-e-utils.md","apps/base/docs/migration/fase-2-routing.md","apps/base/docs/migration/fase-3-module-federation.md","apps/base/docs/migration/fase-4-mfe-pages.md","apps/base/docs/migration/fase-5-css-e-temas.md","apps/base/docs/migration/fase-6-compatibilidade-react-18.md","apps/base/docs/migration/fase-7-build-e-deploy.md","apps/base/docs/migration/fase-8-limpeza.md","apps/base/docs/migration/monorepo/fase-0-decisoes.md","apps/base/docs/proposals/plano-monorepo-base-golyzer.md","apps/base/docs/proposals/proposta-cfi-core-interno-com-remote-legado.md","apps/base/docs/proposals/proposta-separacao-base-vite-golyzer-e-estrategia-cfi.md","apps/base/docs/todo/atualizacao-dependencias.md","apps/base/docs/todo/axios-e-tanstack-bloqueio-ui-components.md","apps/base/docs/todo/baselines/2026-03-21-typecheck.txt","apps/base/docs/todo/fase-0-preparacao-paralelismo.md","apps/base/docs/todo/plano-mitigacao-erros-warnings.md","apps/base/eslint.config.mjs","apps/base/firebase.json","apps/base/gulpfile.js","apps/base/index.html","apps/base/package.json","apps/base/paths.json","apps/base/src/App.tsx","apps/base/src/components/Backdrop/index.tsx","apps/base/src/components/Button/index.tsx","apps/base/src/components/Button/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ListBlocks/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccounts/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ExpandCollapseMenu/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/filter.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/title.tsx","apps/base/src/components/ChartOfAccountsExplorer/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Confirm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/context/MigrationsContext.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/confirm.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/goTo.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/menu.ts","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/navigationHandlers.ts","apps/base/src/components/ChartOfAccountsMigration/index.tsx","apps/base/src/components/ChartOfAccountsMigration/styles.module.less","apps/base/src/components/CollaboratorHierarchyDrawer/index.tsx","apps/base/src/components/CollaboratorHierarchyDrawer/styles.module.less","apps/base/src/components/Container/helpers/components/Editable/index.tsx","apps/base/src/components/Container/helpers/components/Editable/styles.module.less","apps/base/src/components/Container/helpers/components/Favorite/index.tsx","apps/base/src/components/Container/helpers/components/Favorite/styles.module.less","apps/base/src/components/Container/index.tsx","apps/base/src/components/Container/styles.module.less","apps/base/src/components/Empty/index.tsx","apps/base/src/components/Empty/styles.module.less","apps/base/src/components/EmptyCard/index.tsx","apps/base/src/components/EmptyCard/styles.module.less","apps/base/src/components/EmptySearch/index.tsx","apps/base/src/components/EmptySearch/styles.module.less","apps/base/src/components/Favorites/Item/index.tsx","apps/base/src/components/Favorites/Item/styles.module.less","apps/base/src/components/Favorites/index.tsx","apps/base/src/components/Favorites/styles.module.less","apps/base/src/components/Footer/index.tsx","apps/base/src/components/Footer/styles.module.less","apps/base/src/components/GuestLayout/index.tsx","apps/base/src/components/GuestLayout/styles.module.less","apps/base/src/components/HashBangRedirect.tsx","apps/base/src/components/Header/index.tsx","apps/base/src/components/Header/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Users/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/helpers/TreeUnitWithRadio/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/ReplicateDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/SolutionsTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/StructuralTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/Tab.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/utils/body.ts","apps/base/src/components/HierarchyDrawer/helpers/utils/modal.tsx","apps/base/src/components/HierarchyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/index.tsx","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/index.tsx","apps/base/src/components/HierarchyLevelDrawer/styles.module.less","apps/base/src/components/IndicatorBuilderDrawer/index.tsx","apps/base/src/components/IndicatorBuilderDrawer/styles.module.less","apps/base/src/components/Input/index.tsx","apps/base/src/components/Input/styles.module.less","apps/base/src/components/ItemMigration/index.tsx","apps/base/src/components/ItemMigration/styles.module.less","apps/base/src/components/Layout/index.tsx","apps/base/src/components/Loading/index.tsx","apps/base/src/components/MaskCustomInput/index.tsx","apps/base/src/components/Notifications/Empty/index.tsx","apps/base/src/components/Notifications/Empty/styles.module.less","apps/base/src/components/Notifications/List/helpers/Card/index.tsx","apps/base/src/components/Notifications/List/helpers/Card/styles.module.less","apps/base/src/components/Notifications/List/helpers/TabStyled/index.tsx","apps/base/src/components/Notifications/List/index.tsx","apps/base/src/components/Notifications/List/styles.module.less","apps/base/src/components/Notifications/index.tsx","apps/base/src/components/Notifications/styles.module.less","apps/base/src/components/OrganizationalStructure/ToolbarStructure/index.tsx","apps/base/src/components/OrganizationalStructure/ToolbarStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Edge/EdgeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/Description.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeCostCenter.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/index.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/styles.module.less","apps/base/src/components/PlansScreen/PlanCard/index.tsx","apps/base/src/components/PlansScreen/PlanCard/styles.module.less","apps/base/src/components/PlansScreen/index.tsx","apps/base/src/components/PlansScreen/styles.module.less","apps/base/src/components/PlansScreen/types.ts","apps/base/src/components/PrefetchScript.tsx","apps/base/src/components/ProfileWrappers/Appearance/index.tsx","apps/base/src/components/ProfileWrappers/Appearance/styles.module.less","apps/base/src/components/ProfileWrappers/ChangePassword/index.tsx","apps/base/src/components/ProfileWrappers/ChangePassword/styles.module.less","apps/base/src/components/ProfileWrappers/UserInformation/index.tsx","apps/base/src/components/ProfileWrappers/UserInformation/styles.module.less","apps/base/src/components/ProfileWrappers/index.tsx","apps/base/src/components/RequestDemoModal/index.tsx","apps/base/src/components/RequestDemoModal/styles.module.less","apps/base/src/components/Resizable/helpers/components/Alert/index.tsx","apps/base/src/components/Resizable/helpers/components/Alert/styles.module.less","apps/base/src/components/Resizable/helpers/components/HandleComponent/index.tsx","apps/base/src/components/Resizable/helpers/components/HandleComponent/styles.module.less","apps/base/src/components/Resizable/index.tsx","apps/base/src/components/Resizable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/CheckboxWithModal/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SearchField/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SolutionFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/context/SearchContext.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/utils/search.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/styles.module.less","apps/base/src/components/RoleManager/helpers/components/HeaderControls/index.tsx","apps/base/src/components/RoleManager/helpers/components/HeaderControls/styles.module.less","apps/base/src/components/RoleManager/helpers/components/LinkUnit/index.tsx","apps/base/src/components/RoleManager/helpers/components/LinkUnit/styles.module.less","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/index.tsx","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/styles.module.less","apps/base/src/components/RoleManager/helpers/components/SettingsMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/SettingsMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableDragable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableDragable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableExpandable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableExpandable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TitleColumn/index.tsx","apps/base/src/components/RoleManager/helpers/components/TitleColumn/styles.module.less","apps/base/src/components/RoleManager/helpers/context/RoleManagerContext.tsx","apps/base/src/components/RoleManager/helpers/enums/index.ts","apps/base/src/components/RoleManager/helpers/utils/checkeds.ts","apps/base/src/components/RoleManager/helpers/utils/columns.tsx","apps/base/src/components/RoleManager/helpers/utils/modal.tsx","apps/base/src/components/RoleManager/helpers/utils/roles.ts","apps/base/src/components/RoleManager/helpers/utils/scroll.ts","apps/base/src/components/RoleManager/helpers/utils/tree.ts","apps/base/src/components/RoleManager/index.tsx","apps/base/src/components/RoleManager/styles.module.less","apps/base/src/components/Search/index.tsx","apps/base/src/components/Search/styles.module.less","apps/base/src/components/SignatureDrawer/Email/index.tsx","apps/base/src/components/SignatureDrawer/FirstPayment/index.tsx","apps/base/src/components/SignatureDrawer/Payment/index.tsx","apps/base/src/components/SignatureDrawer/Plan/index.tsx","apps/base/src/components/SignatureDrawer/index.tsx","apps/base/src/components/SignatureDrawer/styles.module.less","apps/base/src/components/ToastAlert/index.tsx","apps/base/src/components/ToastAlert/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/Drawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/Drawer/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/index.tsx","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/ResetActions/index.tsx","apps/base/src/components/UserDrawer/helpers/components/SelectRole/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsList/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CopyDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/ReplicateDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/UnitTree/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/utils/menus.tsx","apps/base/src/components/UserDrawer/helpers/utils/modal.tsx","apps/base/src/components/UserDrawer/index.tsx","apps/base/src/components/UserDrawer/styles.module.less","apps/base/src/components/WelcomeScreen/index.tsx","apps/base/src/components/WelcomeScreen/styles.module.less","apps/base/src/components/WrapperAuth/index.tsx","apps/base/src/components/WrapperGuestForm/index.tsx","apps/base/src/components/WrapperGuestForm/styles.module.less","apps/base/src/constants/budget/index.ts","apps/base/src/constants/colors/index.ts","apps/base/src/constants/date/index.ts","apps/base/src/constants/image/index.ts","apps/base/src/constants/menu/index.tsx","apps/base/src/constants/roles.ts","apps/base/src/constants/urls.ts","apps/base/src/context/AuthContext.tsx","apps/base/src/context/CollapseContext.tsx","apps/base/src/context/FullScreenContext.tsx","apps/base/src/context/SocketContext.tsx","apps/base/src/context/TagContext.tsx","apps/base/src/context/ViewsStateContext.tsx","apps/base/src/dictionary/form/index.ts","apps/base/src/dictionary/index.ts","apps/base/src/dictionary/pagination/index.ts","apps/base/src/dictionary/table/index.ts","apps/base/src/guapo/Alert/Alert.stories.tsx","apps/base/src/guapo/Alert/Alert.tsx","apps/base/src/guapo/Alert/index.ts","apps/base/src/guapo/Avatar/Avatar.stories.tsx","apps/base/src/guapo/Avatar/Avatar.tsx","apps/base/src/guapo/Avatar/index.ts","apps/base/src/guapo/Badge/Badge.stories.tsx","apps/base/src/guapo/Badge/Badge.tsx","apps/base/src/guapo/Badge/index.ts","apps/base/src/guapo/BadgeSmall/index.tsx","apps/base/src/guapo/BadgeSmall/styles.module.less","apps/base/src/guapo/Breadcrumb/Breadcrumb.stories.tsx","apps/base/src/guapo/Breadcrumb/Breadcrumb.tsx","apps/base/src/guapo/Breadcrumb/index.ts","apps/base/src/guapo/Button/Button.stories.tsx","apps/base/src/guapo/Button/Button.tsx","apps/base/src/guapo/Button/index.ts","apps/base/src/guapo/Card/Card.stories.tsx","apps/base/src/guapo/Card/Card.tsx","apps/base/src/guapo/Card/index.tsx","apps/base/src/guapo/Checkbox/Checkbox.stories.tsx","apps/base/src/guapo/Checkbox/Checkbox.tsx","apps/base/src/guapo/Checkbox/index.ts","apps/base/src/guapo/Col/Col.stories.tsx","apps/base/src/guapo/Col/Col.tsx","apps/base/src/guapo/Col/index.tsx","apps/base/src/guapo/Collapse/Collapse.stories.tsx","apps/base/src/guapo/Collapse/Collapse.tsx","apps/base/src/guapo/Collapse/index.ts","apps/base/src/guapo/DatePicker/DatePicker.stories.tsx","apps/base/src/guapo/DatePicker/DatePicker.tsx","apps/base/src/guapo/DatePicker/index.ts","apps/base/src/guapo/Divider/Divider.stories.tsx","apps/base/src/guapo/Divider/Divider.tsx","apps/base/src/guapo/Divider/index.tsx","apps/base/src/guapo/Dropdown/Dropdown.stories.tsx","apps/base/src/guapo/Dropdown/Dropdown.tsx","apps/base/src/guapo/Dropdown/index.ts","apps/base/src/guapo/Empty/Empty.stories.tsx","apps/base/src/guapo/Empty/Empty.tsx","apps/base/src/guapo/Empty/index.ts","apps/base/src/guapo/Filter/Filter.d.tsx","apps/base/src/guapo/Filter/Filter.stories.tsx","apps/base/src/guapo/Filter/Filter.tsx","apps/base/src/guapo/Filter/index.tsx","apps/base/src/guapo/Filter/styles.module.css","apps/base/src/guapo/Form/Form.stories.tsx","apps/base/src/guapo/Form/Form.tsx","apps/base/src/guapo/Form/index.tsx","apps/base/src/guapo/Icon/Icon.stories.tsx","apps/base/src/guapo/Icon/Icon.tsx","apps/base/src/guapo/Icon/Icons/ArchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/ArchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/DotDragSVG.tsx","apps/base/src/guapo/Icon/Icons/DotMenuSVG.tsx","apps/base/src/guapo/Icon/Icons/OpenInNewSVG.tsx","apps/base/src/guapo/Icon/Icons/PixSVG.tsx","apps/base/src/guapo/Icon/Icons/RedoOutlineSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/UndoOutlineSVG.tsx","apps/base/src/guapo/Icon/index.tsx","apps/base/src/guapo/Input/Input.stories.tsx","apps/base/src/guapo/Input/Input.tsx","apps/base/src/guapo/Input/index.ts","apps/base/src/guapo/Input/styles.module.css","apps/base/src/guapo/Layout/Layout.stories.tsx","apps/base/src/guapo/Layout/Layout.tsx","apps/base/src/guapo/Layout/index.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.stories.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.tsx","apps/base/src/guapo/LayoutFenix/index.tsx","apps/base/src/guapo/List/List.action.tsx","apps/base/src/guapo/List/List.d.tsx","apps/base/src/guapo/List/List.stories.tsx","apps/base/src/guapo/List/List.tsx","apps/base/src/guapo/List/List.type.tsx","apps/base/src/guapo/List/index.tsx","apps/base/src/guapo/List/styles.module.css","apps/base/src/guapo/Menu/MenuBackOffice.stories.tsx","apps/base/src/guapo/Menu/MenuBackOffice.tsx","apps/base/src/guapo/Menu/index.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.d.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.stories.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/Settings/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/Solutions/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Menu/index.tsx","apps/base/src/guapo/MenuFenix/index.tsx","apps/base/src/guapo/MenuFenix/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.d.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.stories.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.tsx","apps/base/src/guapo/MenuGoapice/index.ts","apps/base/src/guapo/MenuGoapice/styles.module.css","apps/base/src/guapo/MenuVertical/MenuVertical.d.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.stories.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.tsx","apps/base/src/guapo/MenuVertical/index.ts","apps/base/src/guapo/Modal/Modal.stories.tsx","apps/base/src/guapo/Modal/Modal.tsx","apps/base/src/guapo/Modal/index.ts","apps/base/src/guapo/Overlay/Overlay.stories.tsx","apps/base/src/guapo/Overlay/index.tsx","apps/base/src/guapo/PageHeader/PageHeader.stories.tsx","apps/base/src/guapo/PageHeader/PageHeader.tsx","apps/base/src/guapo/PageHeader/index.tsx","apps/base/src/guapo/Pagination/Pagination.stories.tsx","apps/base/src/guapo/Pagination/Pagination.tsx","apps/base/src/guapo/Pagination/index.ts","apps/base/src/guapo/Progress/Progress.stories.tsx","apps/base/src/guapo/Progress/Progress.tsx","apps/base/src/guapo/Progress/index.ts","apps/base/src/guapo/Radio/Radio.stories.tsx","apps/base/src/guapo/Radio/Radio.tsx","apps/base/src/guapo/Radio/index.ts","apps/base/src/guapo/RangePicker/RangePicker.stories.tsx","apps/base/src/guapo/RangePicker/RangePicker.tsx","apps/base/src/guapo/RangePicker/index.ts","apps/base/src/guapo/Row/Row.stories.tsx","apps/base/src/guapo/Row/Row.tsx","apps/base/src/guapo/Row/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/ChangeCollaboratorDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/InfoDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/PrintDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/TimesTableDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/styles.module.css","apps/base/src/guapo/Schenduler/components/Icons/List.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/Appointment.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/CurrentTime.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/MouseMover.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/index.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/styles.module.css","apps/base/src/guapo/Schenduler/components/Table/TBody.tsx","apps/base/src/guapo/Schenduler/components/Table/TFooter.tsx","apps/base/src/guapo/Schenduler/components/Table/THeader.tsx","apps/base/src/guapo/Schenduler/components/Table/index.tsx","apps/base/src/guapo/Schenduler/components/Table/styles.module.css","apps/base/src/guapo/Schenduler/components/Views/DayView.tsx","apps/base/src/guapo/Schenduler/components/Views/MonthView.tsx","apps/base/src/guapo/Schenduler/components/Views/View.tsx","apps/base/src/guapo/Schenduler/components/Views/WeekView.tsx","apps/base/src/guapo/Schenduler/components/Views/styles.module.css","apps/base/src/guapo/Schenduler/hooks/useInterval.tsx","apps/base/src/guapo/Schenduler/index.ts","apps/base/src/guapo/Schenduler/template/PrintScale/index.tsx","apps/base/src/guapo/Select/Select.stories.tsx","apps/base/src/guapo/Select/Select.tsx","apps/base/src/guapo/Select/index.ts","apps/base/src/guapo/Select/styles.module.css","apps/base/src/guapo/ShouldRender/ShouldRender.tsx","apps/base/src/guapo/ShouldRender/index.ts","apps/base/src/guapo/Skeleton/Skeleton.stories.tsx","apps/base/src/guapo/Skeleton/Skeleton.tsx","apps/base/src/guapo/Skeleton/index.ts","apps/base/src/guapo/Space/Space.stories.tsx","apps/base/src/guapo/Space/Space.tsx","apps/base/src/guapo/Space/index.tsx","apps/base/src/guapo/Statistic/Statistic.stories.tsx","apps/base/src/guapo/Statistic/Statistic.tsx","apps/base/src/guapo/Statistic/index.ts","apps/base/src/guapo/Steps/Steps.stories.tsx","apps/base/src/guapo/Steps/Steps.tsx","apps/base/src/guapo/Steps/index.ts","apps/base/src/guapo/Switch/Switch.stories.tsx","apps/base/src/guapo/Switch/Switch.tsx","apps/base/src/guapo/Switch/index.ts","apps/base/src/guapo/Table/Table.stories.tsx","apps/base/src/guapo/Table/Table.tsx","apps/base/src/guapo/Table/index.ts","apps/base/src/guapo/Table/styles.module.css","apps/base/src/guapo/Tabs/Tabs.stories.tsx","apps/base/src/guapo/Tabs/Tabs.tsx","apps/base/src/guapo/Tabs/index.ts","apps/base/src/guapo/Tag/Tag.stories.tsx","apps/base/src/guapo/Tag/Tag.tsx","apps/base/src/guapo/Tag/index.ts","apps/base/src/guapo/Tooltip/Tooltip.stories.tsx","apps/base/src/guapo/Tooltip/Tooltip.tsx","apps/base/src/guapo/Tooltip/index.tsx","apps/base/src/guapo/Tree/Tree.stories.tsx","apps/base/src/guapo/Tree/Tree.tsx","apps/base/src/guapo/Tree/index.ts","apps/base/src/guapo/TreeSelect/TreeSelect.stories.tsx","apps/base/src/guapo/TreeSelect/TreeSelect.tsx","apps/base/src/guapo/TreeSelect/index.ts","apps/base/src/guapo/Typography/Typography.d.tsx","apps/base/src/guapo/Typography/Typography.stories.tsx","apps/base/src/guapo/Typography/Typography.tsx","apps/base/src/guapo/Typography/components/BodyText.tsx","apps/base/src/guapo/Typography/components/Caption.tsx","apps/base/src/guapo/Typography/components/Heading.tsx","apps/base/src/guapo/Typography/components/SubTitle.tsx","apps/base/src/guapo/Typography/constants/fontSize.ts","apps/base/src/guapo/Typography/index.tsx","apps/base/src/guapo/Upload/Upload.stories.tsx","apps/base/src/guapo/Upload/Upload.tsx","apps/base/src/guapo/Upload/index.ts","apps/base/src/guapo/index.ts","apps/base/src/hooks/useChartOfAccounts.tsx","apps/base/src/hooks/useCollaboratorPosition.tsx","apps/base/src/hooks/useCostCenters.tsx","apps/base/src/hooks/useDebounce.tsx","apps/base/src/hooks/useDepartment.tsx","apps/base/src/hooks/useHistory.tsx","apps/base/src/hooks/useIsEditPage.tsx","apps/base/src/hooks/useLoadOnPermissionsUpdate.tsx","apps/base/src/hooks/useNotifications.tsx","apps/base/src/hooks/usePageVisibility.tsx","apps/base/src/hooks/usePermission.tsx","apps/base/src/hooks/usePrevious.tsx","apps/base/src/hooks/useSolutions.tsx","apps/base/src/hooks/useWindowSize.tsx","apps/base/src/interfaces/iMapper.ts","apps/base/src/lib/compat/navigate.ts","apps/base/src/lib/compat/router.ts","apps/base/src/lib/federation/MfeLoader.tsx","apps/base/src/lib/federation/loadRemote.ts","apps/base/src/lib/federation/remoteConfig.ts","apps/base/src/lib/federation/shims/next-router.ts","apps/base/src/lib/queryClient.ts","apps/base/src/main.tsx","apps/base/src/mappers/notifications/index.ts","apps/base/src/pages/budget/helpers/components/modal/footer/index.tsx","apps/base/src/pages/budget/helpers/components/modal/index.tsx","apps/base/src/pages/budget/helpers/components/table/empty.tsx","apps/base/src/pages/budget/helpers/components/table/index.tsx","apps/base/src/pages/budget/helpers/components/table/styles.module.less","apps/base/src/pages/budget/index.tsx","apps/base/src/pages/budget/styles.module.less","apps/base/src/pages/chart-of-accounts/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/[id]/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/add/index.tsx","apps/base/src/pages/forgot/index.tsx","apps/base/src/pages/goal-sets/[id]/index.tsx","apps/base/src/pages/goal-sets/index.tsx","apps/base/src/pages/goask/answer-options-list/[id].tsx","apps/base/src/pages/goask/answer-options-list/add.tsx","apps/base/src/pages/goask/answer-options-list/index.tsx","apps/base/src/pages/goask/guests-lists/[id].tsx","apps/base/src/pages/goask/guests-lists/add.tsx","apps/base/src/pages/goask/guests-lists/index.tsx","apps/base/src/pages/goask/index.tsx","apps/base/src/pages/goask/questionnaires/[id].tsx","apps/base/src/pages/goask/questionnaires/add.tsx","apps/base/src/pages/goask/questionnaires/index.tsx","apps/base/src/pages/goask/reports/index.tsx","apps/base/src/pages/goask/surveys/[id].tsx","apps/base/src/pages/goask/surveys/add.tsx","apps/base/src/pages/goask/surveys/index.tsx","apps/base/src/pages/golyzer/[id]/index.tsx","apps/base/src/pages/golyzer/[id]/presentation.tsx","apps/base/src/pages/golyzer/add.tsx","apps/base/src/pages/golyzer/index.tsx","apps/base/src/pages/gonext/cfi/index.tsx","apps/base/src/pages/gonext/data-view/index.tsx","apps/base/src/pages/gonext/data-view/view/index.tsx","apps/base/src/pages/gonext/dre/[id]/index.tsx","apps/base/src/pages/gonext/dre/add/index.tsx","apps/base/src/pages/gonext/dre/index.tsx","apps/base/src/pages/gonext/index.tsx","apps/base/src/pages/gonext/ledger/[id]/index.tsx","apps/base/src/pages/gonext/ledger/add/index.tsx","apps/base/src/pages/gonext/ledger/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/[entryId]/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/index.tsx","apps/base/src/pages/gonext/managerial-entries/index.tsx","apps/base/src/pages/gonext/managerial-entries/new/index.tsx","apps/base/src/pages/gonext/managerial-entries/view/[id].tsx","apps/base/src/pages/gonext/reconciliation/[id]/index.tsx","apps/base/src/pages/gonext/reconciliation/add/index.tsx","apps/base/src/pages/gonext/reconciliation/index.tsx","apps/base/src/pages/gonext/trial-balance/[id]/index.tsx","apps/base/src/pages/gonext/trial-balance/add/index.tsx","apps/base/src/pages/gonext/trial-balance/index.tsx","apps/base/src/pages/gotime/index.tsx","apps/base/src/pages/gotime/manage/[id].tsx","apps/base/src/pages/gotime/settings/index.tsx","apps/base/src/pages/gotrade/assets/index.tsx","apps/base/src/pages/gotrade/campaigns/add/index.tsx","apps/base/src/pages/gotrade/campaigns/index.tsx","apps/base/src/pages/gotrade/index.tsx","apps/base/src/pages/index.tsx","apps/base/src/pages/integrations/[id]/index.tsx","apps/base/src/pages/integrations/[id]/styles.module.less","apps/base/src/pages/integrations/index.tsx","apps/base/src/pages/integrations/styles.module.less","apps/base/src/pages/login/index.tsx","apps/base/src/pages/login/styles.module.less","apps/base/src/pages/organizational/index.tsx","apps/base/src/pages/organizational/styles.module.less","apps/base/src/pages/profile/index.tsx","apps/base/src/pages/profile/styles.module.less","apps/base/src/pages/recover/index.tsx","apps/base/src/pages/recover/styles.module.less","apps/base/src/pages/roles/index.tsx","apps/base/src/pages/roles/styles.module.less","apps/base/src/pages/signature/index.tsx","apps/base/src/pages/signature/styles.module.less","apps/base/src/pages/styles.module.less","apps/base/src/pages/users/index.tsx","apps/base/src/pages/users/styles.module.less","apps/base/src/pages/welcome/index.tsx","apps/base/src/pages/welcome/styles.module.less","apps/base/src/routes.tsx","apps/base/src/services/api.ts","apps/base/src/services/auth.ts","apps/base/src/services/budget.ts","apps/base/src/services/chartOfAccounts.ts","apps/base/src/services/client.ts","apps/base/src/services/collaborator.ts","apps/base/src/services/collaboratorPosition.ts","apps/base/src/services/costCenters.ts","apps/base/src/services/data.ts","apps/base/src/services/department.ts","apps/base/src/services/errors/AuthTokenError.ts","apps/base/src/services/gotime.ts","apps/base/src/services/guardianApi.ts","apps/base/src/services/hello.ts","apps/base/src/services/hierarchy.ts","apps/base/src/services/io.ts","apps/base/src/services/notifications.ts","apps/base/src/services/plans.ts","apps/base/src/services/policie.ts","apps/base/src/services/registration.ts","apps/base/src/services/roles.ts","apps/base/src/services/signature.ts","apps/base/src/services/solutions.ts","apps/base/src/services/store/chartOfAccounts/index.ts","apps/base/src/services/store/costCenters/index.ts","apps/base/src/services/store/index.ts","apps/base/src/services/store/notifications/index.ts","apps/base/src/services/store/solutions/index.ts","apps/base/src/services/tag.ts","apps/base/src/services/units.ts","apps/base/src/services/user.ts","apps/base/src/state/data.ts","apps/base/src/state/dictionary.json","apps/base/src/store/index.tsx","apps/base/src/store/reducers/chartOfAccounts.ts","apps/base/src/store/reducers/costCenters.ts","apps/base/src/store/reducers/notifications.ts","apps/base/src/store/reducers/solutions.ts","apps/base/src/stories/Button.stories.tsx","apps/base/src/stories/Button.tsx","apps/base/src/stories/Header.stories.tsx","apps/base/src/stories/Header.tsx","apps/base/src/stories/Introduction.stories.mdx","apps/base/src/stories/Page.stories.tsx","apps/base/src/stories/Page.tsx","apps/base/src/stories/button.css","apps/base/src/stories/header.css","apps/base/src/stories/page.css","apps/base/src/styles/fonts.less","apps/base/src/styles/global.less","apps/base/src/styles/globalStyle.ts","apps/base/src/styles/overrideAnt.css","apps/base/src/styles/theme/dark.less","apps/base/src/styles/theme/light.less","apps/base/src/styles/tokens.ts","apps/base/src/styles/variables.less","apps/base/src/utils/alerts/confirm.tsx","apps/base/src/utils/alerts/error.tsx","apps/base/src/utils/alerts/index.ts","apps/base/src/utils/alerts/loading.tsx","apps/base/src/utils/alerts/success.tsx","apps/base/src/utils/csv/index.ts","apps/base/src/utils/date/index.ts","apps/base/src/utils/feedback/error.tsx","apps/base/src/utils/feedback/message.ts","apps/base/src/utils/feedback/tooltip.ts","apps/base/src/utils/flowchart/index.ts","apps/base/src/utils/formatters/cnpj.ts","apps/base/src/utils/formatters/csvToArray.ts","apps/base/src/utils/formatters/date.ts","apps/base/src/utils/formatters/money.ts","apps/base/src/utils/formatters/phone.ts","apps/base/src/utils/formatters/slug.ts","apps/base/src/utils/formatters/text.ts","apps/base/src/utils/formatters/url.ts","apps/base/src/utils/forms/getHeaders.ts","apps/base/src/utils/functions/color.ts","apps/base/src/utils/functions/deepClone.ts","apps/base/src/utils/functions/dom.ts","apps/base/src/utils/functions/equal.ts","apps/base/src/utils/functions/getDifference.ts","apps/base/src/utils/functions/immutability.ts","apps/base/src/utils/functions/index.ts","apps/base/src/utils/functions/regexp.ts","apps/base/src/utils/functions/text.ts","apps/base/src/utils/functions/tree.tsx","apps/base/src/utils/functions/uuid.ts","apps/base/src/utils/organizational/index.ts","apps/base/src/utils/permission/Restricted.tsx","apps/base/src/utils/roles/index.tsx","apps/base/src/utils/searchs/index.ts","apps/base/src/utils/session/index.ts","apps/base/src/utils/solutions/index.ts","apps/base/src/utils/storybookHideProps/index.ts","apps/base/src/utils/storybookToggleableProps/index.ts","apps/base/src/utils/template/index.ts","apps/base/src/utils/url/index.ts","apps/base/src/utils/validations/index.ts","apps/base/src/utils/validations/uuid.ts","apps/base/tsconfig.json","apps/base/vite.config.ts","apps/cfi-next-remote/README.md","apps/cfi-next-remote/package.json","apps/golyzer/docs/GITNEXUS_TUTORIAL.md","apps/golyzer/docs/MIGRATION_ANALYSIS.md","apps/golyzer/docs/MIGRATION_PLAN.md","apps/golyzer/docs/architecture/chart-adapter-proposal.md","apps/golyzer/docs/changes/antd-deep-imports-module-federation.md","apps/golyzer/docs/changes/cfi-import-dinamico-defensivo.md","apps/golyzer/docs/changes/micro-frontend-router-data-router.md","apps/golyzer/docs/changes/public-path-assets-mfe.md","apps/golyzer/docs/changes/svgr-prefix-ids-colisao-svg.md","apps/golyzer/docs/done/HOST_DEPENDENCY_MITIGATION_PLAN.md","apps/golyzer/docs/shadow-architecture/README.md","apps/golyzer/docs/shadow-architecture/chart-behavioral-model.md","apps/golyzer/docs/shadow-architecture/data-flow-optimization.md","apps/golyzer/docs/shadow-architecture/dependency-cycles.md","apps/golyzer/docs/shadow-architecture/navigation.md","apps/golyzer/docs/shadow-architecture/overview.md","apps/golyzer/docs/shadow-architecture/path-dependent-state.md","apps/golyzer/docs/shadow-architecture/team-plan.md","apps/golyzer/docs/shadow-architecture/tsconfig.typedoc.json","apps/golyzer/docs/shadow-architecture/typedoc-readme.md","apps/golyzer/docs/shadow-architecture/typedoc.json","apps/golyzer/docs/todo/dependency-upgrade-impact.md","apps/golyzer/docs/todo/hmr-invalidation.md","apps/golyzer/docs/todo/react-dom-warnings.md","apps/golyzer/docs/todo/unused-dependencies.md","apps/golyzer/index.html","apps/golyzer/package.json","apps/golyzer/playwright.config.ts","apps/golyzer/public/workers/csv.js","apps/golyzer/public/workers/pivot.js","apps/golyzer/public/workers/spreadsheet.js","apps/golyzer/src/App.tsx","apps/golyzer/src/adapters/chart/ChartAdapter.ts","apps/golyzer/src/adapters/chart/ChartAdapterFactory.ts","apps/golyzer/src/adapters/chart/EChartsAdapter.ts","apps/golyzer/src/adapters/chart/MockAdapter.ts","apps/golyzer/src/adapters/chart/index.ts","apps/golyzer/src/adapters/chart/types.ts","apps/golyzer/src/adapters/chart/useChart.ts","apps/golyzer/src/assets/icon/charts/index.ts","apps/golyzer/src/assets/img/avatar.json","apps/golyzer/src/components/AlphaPickerCustom/index.tsx","apps/golyzer/src/components/AvatarGroup/index.tsx","apps/golyzer/src/components/AvatarGroup/styles.module.less","apps/golyzer/src/components/Box/index.tsx","apps/golyzer/src/components/Box/styles.module.less","apps/golyzer/src/components/Button/index.tsx","apps/golyzer/src/components/Button/styles.module.less","apps/golyzer/src/components/CardChart/CardChart.test.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartActions/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/styles.module.less","apps/golyzer/src/components/CardChart/helpers/components/ChartWrapper/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/FocusModeRenderer/index.tsx","apps/golyzer/src/components/CardChart/helpers/constants/index.ts","apps/golyzer/src/components/CardChart/helpers/hooks/useCardBorder.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useChartPercentageLayout.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useKeyboardMove.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/usePinnedElement.tsx","apps/golyzer/src/components/CardChart/helpers/utils/fullWidth/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/gridLines/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/styles.module.less","apps/golyzer/src/components/CardChart/helpers/utils/items/README.md","apps/golyzer/src/components/CardChart/helpers/utils/items/examples.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/styles.module.less","apps/golyzer/src/components/CardChart/index.tsx","apps/golyzer/src/components/ChartWrapper/index.tsx","apps/golyzer/src/components/Charts/AreaLine/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/actions.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/styles.module.less","apps/golyzer/src/components/Charts/AvgBarChart/AvgBarChart.test.ts","apps/golyzer/src/components/Charts/AvgBarChart/index.tsx","apps/golyzer/src/components/Charts/BarLabelRotate/index.tsx","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/index.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/ensureKeyValueSource.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/helpers/highlightPartialTooltip.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/useBasicBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/usePartialHighlightState.ts","apps/golyzer/src/components/Charts/BasicBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/actions.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/styles.module.less","apps/golyzer/src/components/Charts/BasicGaugeChart/index.tsx","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.test.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicLineChart/index.tsx","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/chartOptions.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/constants.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/index.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/seriesBuilder.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/types.ts","apps/golyzer/src/components/Charts/BasicPieChart/index.tsx","apps/golyzer/src/components/Charts/BasicRadarChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterAxisChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterChart/index.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.tsx","apps/golyzer/src/components/Charts/CalendarPieChart/index.tsx","apps/golyzer/src/components/Charts/ConditionalColorLineChart/index.tsx","apps/golyzer/src/components/Charts/DoughnutChart/index.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/actions.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/index.tsx","apps/golyzer/src/components/Charts/DynamicLine/DynamicLineChart.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.tsx","apps/golyzer/src/components/Charts/DynamicLine/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/styles.module.less","apps/golyzer/src/components/Charts/GaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/GradientLineChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/HighlightedBarChart.utils.test.ts","apps/golyzer/src/components/Charts/HighlightedBarChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.test.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalStackedBarChart/index.tsx","apps/golyzer/src/components/Charts/LineRaceChart/LineRaceChart.test.tsx","apps/golyzer/src/components/Charts/LineRaceChart/actions.tsx","apps/golyzer/src/components/Charts/LineRaceChart/index.tsx","apps/golyzer/src/components/Charts/MixedChart/index.tsx","apps/golyzer/src/components/Charts/NightingaleChart/index.tsx","apps/golyzer/src/components/Charts/PolarStackBarChart/index.tsx","apps/golyzer/src/components/Charts/RotatedLabelBarChart/index.tsx","apps/golyzer/src/components/Charts/ScatterPuchCardChart/index.tsx","apps/golyzer/src/components/Charts/SmoothLineChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/utils.test.ts","apps/golyzer/src/components/Charts/SortBarChart/utils.ts","apps/golyzer/src/components/Charts/StackedAreaChart/index.tsx","apps/golyzer/src/components/Charts/StackedBarChart/index.tsx","apps/golyzer/src/components/Charts/StackedLineChart/index.tsx","apps/golyzer/src/components/Charts/StageGaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/VariationMixedChart/helpers/util/optionsVariationMixed.ts","apps/golyzer/src/components/Charts/VariationMixedChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/interaction.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.test.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.ts","apps/golyzer/src/components/Charts/helpers/partialHighlightTooltip.tsx","apps/golyzer/src/components/Charts/index.tsx","apps/golyzer/src/components/Confirm/confirmLeave.test.tsx","apps/golyzer/src/components/Confirm/index.tsx","apps/golyzer/src/components/Confirm/styles.module.less","apps/golyzer/src/components/Container/index.tsx","apps/golyzer/src/components/Container/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/constants/options.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useEditorContextMenuItems.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useWorkspaceActions.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/build.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/target.ts","apps/golyzer/src/components/ContextMenuWrapper/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/styles.module.less","apps/golyzer/src/components/DrawerCharts/ChartItem.tsx","apps/golyzer/src/components/DrawerCharts/index.tsx","apps/golyzer/src/components/DrawerCharts/styles.module.less","apps/golyzer/src/components/DrawerCharts/tabs/appearance/Axis.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/BordersAndColors.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/General.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/styles.module.less","apps/golyzer/src/components/DropdownWithTooltip/index.tsx","apps/golyzer/src/components/EChartsWrapper/EChartsClient.tsx","apps/golyzer/src/components/EChartsWrapper/index.tsx","apps/golyzer/src/components/EditorPanelAppearance/index.tsx","apps/golyzer/src/components/Elements/Button/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/DatePickerStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/Label/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/SliderStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/utils/styled.ts","apps/golyzer/src/components/Elements/Date/helpers/utils/update.ts","apps/golyzer/src/components/Elements/Date/index.tsx","apps/golyzer/src/components/Elements/Date/styles.module.less","apps/golyzer/src/components/Elements/HierarchicalMatrix/index.tsx","apps/golyzer/src/components/Elements/Image/index.tsx","apps/golyzer/src/components/Elements/Image/styles.module.less","apps/golyzer/src/components/Elements/Input/index.tsx","apps/golyzer/src/components/Elements/Input/styles.module.less","apps/golyzer/src/components/Elements/Number/index.tsx","apps/golyzer/src/components/Elements/Number/styles.module.less","apps/golyzer/src/components/Elements/NumberWithTrend/helpers/tooltip.ts","apps/golyzer/src/components/Elements/NumberWithTrend/index.tsx","apps/golyzer/src/components/Elements/NumberWithTrend/styles.module.less","apps/golyzer/src/components/Elements/Select/helpers/components/SelectStyled/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/components/SelectVirtualized/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/utils/remove.ts","apps/golyzer/src/components/Elements/Select/index.tsx","apps/golyzer/src/components/Elements/Select/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/ButtonDrillDown/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ChevronTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ConditionalTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ProgressTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/IconInfo/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/StyledGridWrapper/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/hooks/useInteractionLocationDispatcher.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionCell.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionPointer.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionVisualState.ts","apps/golyzer/src/components/Elements/Spreadsheets/constants/interactionClasses.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.test.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/clickClassification.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/columnSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/constants.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/drilldownExecution.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/rowSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/useDrilldownFocusHandler.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/useDataSourceHandler.tsx","apps/golyzer/src/components/Elements/Spreadsheets/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/utils/chevron.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/dateFormat.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/empty.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/focus.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/location.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/base-styles.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/css-generators.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/formatters.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/grid-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/header-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/label-modifiers.ts","apps/golyzer/src/components/Elements/Table/components/AutoSizedGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/styles.module.less","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/index.tsx","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/styles.module.less","apps/golyzer/src/components/Elements/Table/components/GridContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/GridContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/index.tsx","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/styles.module.less","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/StyledTableWrapper/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/styles.module.less","apps/golyzer/src/components/Elements/Table/enums/aggregators.ts","apps/golyzer/src/components/Elements/Table/index.tsx","apps/golyzer/src/components/Elements/Table/styles.module.less","apps/golyzer/src/components/Elements/Table/utils/aggregators.ts","apps/golyzer/src/components/Elements/Table/utils/appearance.ts","apps/golyzer/src/components/Elements/Table/utils/format.ts","apps/golyzer/src/components/Elements/Table/utils/sort.ts","apps/golyzer/src/components/Elements/index.tsx","apps/golyzer/src/components/Empty/index.tsx","apps/golyzer/src/components/Empty/styles.module.less","apps/golyzer/src/components/ErrorBoundary/AppErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/DatasetErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/FormErrorBoundary.tsx","apps/golyzer/src/components/EyeDropperButton/index.tsx","apps/golyzer/src/components/EyeDropperButton/styles.module.less","apps/golyzer/src/components/FilterItem/helpers/components/FilterInputRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FilterValueRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FormFilters/index.tsx","apps/golyzer/src/components/FilterItem/index.tsx","apps/golyzer/src/components/FilterItem/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/FieldsInElement/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterValueField/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/ConfirmDeletePop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/FormResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/constants/icons.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/constants/form.ts","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/helpers/components/ConfirmResetPop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/context/FilterWrapperContext.tsx","apps/golyzer/src/components/FilterWrapper/helpers/utils/filters.ts","apps/golyzer/src/components/FilterWrapper/helpers/utils/find.ts","apps/golyzer/src/components/FilterWrapper/index.tsx","apps/golyzer/src/components/FocusModeModal/index.tsx","apps/golyzer/src/components/FocusModeModal/styles.module.less","apps/golyzer/src/components/FormulaViewModal/index.tsx","apps/golyzer/src/components/FullscreenTooltip/index.tsx","apps/golyzer/src/components/ImagMask/index.tsx","apps/golyzer/src/components/IndicatorsBuilderDrawer/index.tsx","apps/golyzer/src/components/Input/index.tsx","apps/golyzer/src/components/Input/styles.module.less","apps/golyzer/src/components/InteractionModeBanner/index.tsx","apps/golyzer/src/components/InteractionModeBanner/styles.module.less","apps/golyzer/src/components/InteractionThumbnail/index.tsx","apps/golyzer/src/components/InteractionThumbnail/styles.module.less","apps/golyzer/src/components/KeyboardHandler/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/index.tsx","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/ClampedNumberInput/index.tsx","apps/golyzer/src/components/LayoutController/helpers/utils/calculateMaxValues.ts","apps/golyzer/src/components/LayoutFaker/index.tsx","apps/golyzer/src/components/ListPanels/helpers/components/ListEmpty/index.tsx","apps/golyzer/src/components/ListPanels/helpers/utils/columns.tsx","apps/golyzer/src/components/ListPanels/index.tsx","apps/golyzer/src/components/ListPanels/styles.module.less","apps/golyzer/src/components/Loading/index.tsx","apps/golyzer/src/components/MicroFrontendRouter/index.tsx","apps/golyzer/src/components/MultiSelect/index.tsx","apps/golyzer/src/components/MultiSelect/styles.module.less","apps/golyzer/src/components/Panel/Header/index.tsx","apps/golyzer/src/components/Panel/Header/styles.module.less","apps/golyzer/src/components/Panel/PanelStyled/index.tsx","apps/golyzer/src/components/Panel/SubHeader/index.tsx","apps/golyzer/src/components/Panel/SubHeader/styles.module.less","apps/golyzer/src/components/PanelContainer/PanelInteractionBridge.tsx","apps/golyzer/src/components/PanelContainer/index.tsx","apps/golyzer/src/components/PanelContainer/styles.module.less","apps/golyzer/src/components/PanelScroll/index.tsx","apps/golyzer/src/components/PanelScroll/styles.module.less","apps/golyzer/src/components/RelationConfigPanel/index.tsx","apps/golyzer/src/components/RelationConfigPanel/styles.module.less","apps/golyzer/src/components/RelationModeButtons/index.tsx","apps/golyzer/src/components/RelationModeButtons/styles.module.less","apps/golyzer/src/components/Search/index.tsx","apps/golyzer/src/components/Search/styles.module.less","apps/golyzer/src/components/Select/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementClick.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementDrag.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementRender.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementResize.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementSelect.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/dom.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/groups.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/selection.ts","apps/golyzer/src/components/SelectoAreaPanel/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/styles.module.less","apps/golyzer/src/components/TimedAlert/index.tsx","apps/golyzer/src/components/TimedAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/DataSetWrapper/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/DraggableTabNode/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabBar/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabEditable/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/renderTab/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScroll.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScrollMemory.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useTabAppearance.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/utils/background.ts","apps/golyzer/src/components/WrapperPanel/Panels/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/index.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/positions.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/size.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/spacing.ts","apps/golyzer/src/components/WrapperPanel/Visions/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/AlternateColor.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Axis.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Background.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Border.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnsLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataFormat.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataRange.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PanelStyled/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PieProperties.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DatePicker.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Divider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Gauge.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Graph.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/GridLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderRowsOrColumns.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Image.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Interaction.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Legend.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/MatrixLines.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Number.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/RowHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Select.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Shadow.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Slider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Spacing.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Text.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Tips.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/TotalsSubtotals.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Checkbox/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/ColorPickerField/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InputNumber/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/PanelHeaderInternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Radio/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Select/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/types.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/chart.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/panel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormButton.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormManyData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormOneData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/utils/axisLabel.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormConfigAdvanced.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDate.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDateFilter.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormFilters.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormImage.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormInput.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormItem.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormSort.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/styles.module.less","apps/golyzer/src/components/WrapperPanel/index.tsx","apps/golyzer/src/components/WrapperPanel/styles.module.less","apps/golyzer/src/constants/appearance.ts","apps/golyzer/src/constants/chart.ts","apps/golyzer/src/constants/columnDataTypes.ts","apps/golyzer/src/constants/date.ts","apps/golyzer/src/constants/elements.ts","apps/golyzer/src/constants/env.ts","apps/golyzer/src/constants/interactionModeRegistry.ts","apps/golyzer/src/constants/moveable.ts","apps/golyzer/src/constants/operators.ts","apps/golyzer/src/constants/options.ts","apps/golyzer/src/constants/size.ts","apps/golyzer/src/constants/tabs.ts","apps/golyzer/src/context/ActiveStateContext.tsx","apps/golyzer/src/context/CsvContext.tsx","apps/golyzer/src/context/DrilldownContext.tsx","apps/golyzer/src/context/EditorContext/helpers/utils/groups.ts","apps/golyzer/src/context/EditorContext/index.tsx","apps/golyzer/src/context/FilterResultsContext.tsx","apps/golyzer/src/context/FullScreenContext.tsx","apps/golyzer/src/context/HistoryContext/hooks/useUpdateAxisLabels.tsx","apps/golyzer/src/context/HistoryContext/index.tsx","apps/golyzer/src/context/HistoryContext/utils/elements.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.spec.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.ts","apps/golyzer/src/context/HistoryContext/utils/tabs.ts","apps/golyzer/src/context/HoverScrollContext/index.tsx","apps/golyzer/src/context/HoverScrollContext/styles.module.less","apps/golyzer/src/context/InteractionModeContext/ChartOperationsContext.tsx","apps/golyzer/src/context/InteractionModeContext/ChartOperationsFactory.ts","apps/golyzer/src/context/InteractionModeContext/ChartOperationsRegistry.ts","apps/golyzer/src/context/InteractionModeContext/InteractionOrchestratorContext.tsx","apps/golyzer/src/context/InteractionModeContext/InteractionStateStore.ts","apps/golyzer/src/context/InteractionModeContext/constants/requestMetaKeys.ts","apps/golyzer/src/context/InteractionModeContext/index.tsx","apps/golyzer/src/context/InteractionModeContext/operations/AbstractBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartPayloadBuilder.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarSeriesLayoutOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ChartOperationsInterface.ts","apps/golyzer/src/context/InteractionModeContext/operations/DrilldownBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/EChartsInteractionDriver.ts","apps/golyzer/src/context/InteractionModeContext/operations/GaugeElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HorizontalBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineRaceChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/MixedChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/NumberElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/PieChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/RadarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/BaseChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/index.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/types.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleLabelResolver.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubblePointUtils.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleVisualStateManager.ts","apps/golyzer/src/context/InteractionModeContext/operations/generateClickedData.consumers.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesVisualState.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BaseScatterOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BubbleScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.constants.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.types.ts","apps/golyzer/src/context/MatrixDrilldownContext.tsx","apps/golyzer/src/context/MinimizedContext.tsx","apps/golyzer/src/context/PanelContext/copyPaste.test.tsx","apps/golyzer/src/context/PanelContext/index.test.tsx","apps/golyzer/src/context/PanelContext/index.tsx","apps/golyzer/src/context/PanelContext/types/sub-contexts.ts","apps/golyzer/src/context/PanelContext/utils/generalFilters.ts","apps/golyzer/src/context/PanelContext/utils/interactionMode.ts","apps/golyzer/src/context/PanelContext/utils/stateComparison.ts","apps/golyzer/src/context/PanelListContext.tsx","apps/golyzer/src/context/RefreshContext.tsx","apps/golyzer/src/context/SpreadsheetsContext.tsx","apps/golyzer/src/context/UserContext.tsx","apps/golyzer/src/context/ViewsStateContext.tsx","apps/golyzer/src/enums/scope.ts","apps/golyzer/src/hooks/InteractionMode/index.ts","apps/golyzer/src/hooks/InteractionMode/useAutoApplyMasterFilter.ts","apps/golyzer/src/hooks/InteractionMode/useBasicBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicLineChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicPieChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicRadarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBubbleChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartReadyState.ts","apps/golyzer/src/hooks/InteractionMode/useDimensionFilters.ts","apps/golyzer/src/hooks/InteractionMode/useDrilldownBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyManager.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyStore.ts","apps/golyzer/src/hooks/InteractionMode/useElementAutoFilter.ts","apps/golyzer/src/hooks/InteractionMode/useGaugeInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useHorizontalBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionAbortSignal.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMasterSelection.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMode.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeConfigStore.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeListener.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeThumbnail.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeTransition.ts","apps/golyzer/src/hooks/InteractionMode/useNumbersInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useScatterChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSortBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSpreadsheetsInteractionHandlers.ts","apps/golyzer/src/hooks/useChartData.ts","apps/golyzer/src/hooks/useChartDataLoader.tsx","apps/golyzer/src/hooks/useChartDataMap.tsx","apps/golyzer/src/hooks/useChartFinishListener.ts","apps/golyzer/src/hooks/useChartInteraction.tsx","apps/golyzer/src/hooks/useChartMostUsed.tsx","apps/golyzer/src/hooks/useChartQueryData.tsx","apps/golyzer/src/hooks/useClipboardChartListener.tsx","apps/golyzer/src/hooks/useCopyPaste.tsx","apps/golyzer/src/hooks/useDebounce.tsx","apps/golyzer/src/hooks/useDeleteOnKeyDown.tsx","apps/golyzer/src/hooks/useDrilldown.tsx","apps/golyzer/src/hooks/useElementImage.tsx","apps/golyzer/src/hooks/useExportData.tsx","apps/golyzer/src/hooks/useFilterElementsOptions.tsx","apps/golyzer/src/hooks/useFilterResults.tsx","apps/golyzer/src/hooks/useFocusModal.tsx","apps/golyzer/src/hooks/useHandleComponentScroll.tsx","apps/golyzer/src/hooks/useHostAwareNavigate.ts","apps/golyzer/src/hooks/useIMESafeDebounce.tsx","apps/golyzer/src/hooks/useIndexedDBWithExpiration.tsx","apps/golyzer/src/hooks/useIndicatorsBuilderVisibleStore.tsx","apps/golyzer/src/hooks/useLeavePage.tsx","apps/golyzer/src/hooks/useLogout.tsx","apps/golyzer/src/hooks/useMicroFrontendStyles.ts","apps/golyzer/src/hooks/usePanelId.ts","apps/golyzer/src/hooks/usePanelUtilities.tsx","apps/golyzer/src/hooks/usePathname.tsx","apps/golyzer/src/hooks/usePerformanceTracking.tsx","apps/golyzer/src/hooks/usePrevious.tsx","apps/golyzer/src/hooks/useSafeAsyncState.tsx","apps/golyzer/src/hooks/useSpanAttributes.tsx","apps/golyzer/src/hooks/useTreeFilter.ts","apps/golyzer/src/hooks/useWebWorker.tsx","apps/golyzer/src/hooks/useWindowSize.tsx","apps/golyzer/src/interfaces/iMapper.ts","apps/golyzer/src/main.tsx","apps/golyzer/src/mappers/chart/chart.mapper.ts","apps/golyzer/src/mappers/chart/index.ts","apps/golyzer/src/mappers/collaborator/collaborator.mapper.ts","apps/golyzer/src/mappers/collaborator/index.ts","apps/golyzer/src/mappers/panel/index.ts","apps/golyzer/src/mappers/panel/panel.mapper.ts","apps/golyzer/src/mappers/tab/index.ts","apps/golyzer/src/mappers/tab/tab.mapper.ts","apps/golyzer/src/mocks/MockInitializer.tsx","apps/golyzer/src/mocks/adapter.ts","apps/golyzer/src/mocks/factories/chart.ts","apps/golyzer/src/mocks/factories/chartData.spec.ts","apps/golyzer/src/mocks/factories/chartData.ts","apps/golyzer/src/mocks/factories/dataset.ts","apps/golyzer/src/mocks/factories/orgStructure.ts","apps/golyzer/src/mocks/factories/panel.ts","apps/golyzer/src/mocks/factories/user.ts","apps/golyzer/src/mocks/handlers/auth.ts","apps/golyzer/src/mocks/handlers/catchAll.ts","apps/golyzer/src/mocks/handlers/charts.ts","apps/golyzer/src/mocks/handlers/datasets.ts","apps/golyzer/src/mocks/handlers/goardian.ts","apps/golyzer/src/mocks/handlers/orgStructure.ts","apps/golyzer/src/mocks/handlers/panels.ts","apps/golyzer/src/mocks/handlers/sharing.ts","apps/golyzer/src/mocks/handlers/user.ts","apps/golyzer/src/mocks/index.ts","apps/golyzer/src/mocks/store/panelStore.ts","apps/golyzer/src/pages/Information/index.tsx","apps/golyzer/src/pages/ListPanels/index.tsx","apps/golyzer/src/pages/Login/index.tsx","apps/golyzer/src/pages/Logout/index.tsx","apps/golyzer/src/pages/PanelAdd/index.tsx","apps/golyzer/src/pages/PanelEdit/index.tsx","apps/golyzer/src/pages/PanelPresentation/index.tsx","apps/golyzer/src/patches/rcTableDevWarningPatch.ts","apps/golyzer/src/router.tsx","apps/golyzer/src/services/api.ts","apps/golyzer/src/services/auth.ts","apps/golyzer/src/services/chartQuery/cacheManager.ts","apps/golyzer/src/services/chartQuery/queryKeys.ts","apps/golyzer/src/services/charts/config.ts","apps/golyzer/src/services/charts/index.ts","apps/golyzer/src/services/charts/list.ts","apps/golyzer/src/services/charts/save.ts","apps/golyzer/src/services/datasets/datasets.ts","apps/golyzer/src/services/errors/AuthTokenError.ts","apps/golyzer/src/services/organizationalStructure.ts","apps/golyzer/src/services/panel/delete.ts","apps/golyzer/src/services/panel/getPanel.ts","apps/golyzer/src/services/panel/interfaces/uploadPanelImageRequest.ts","apps/golyzer/src/services/panel/list.ts","apps/golyzer/src/services/panel/save.ts","apps/golyzer/src/services/panel/update.ts","apps/golyzer/src/services/panel/uploadPanelImage.ts","apps/golyzer/src/services/storage.ts","apps/golyzer/src/services/user/getUserData.ts","apps/golyzer/src/services/workers/csv.ts","apps/golyzer/src/services/workers/pivot.ts","apps/golyzer/src/services/workers/resultsFilter.ts","apps/golyzer/src/services/workers/spreadsheet.spec.ts","apps/golyzer/src/services/workers/spreadsheet.ts","apps/golyzer/src/shims/goapice-plugin.ts","apps/golyzer/src/shims/goapice.ts","apps/golyzer/src/shims/packages/common.tsx","apps/golyzer/src/shims/packages/empty.css","apps/golyzer/src/shims/packages/react-datasets.module.less","apps/golyzer/src/shims/packages/react-datasets.tsx","apps/golyzer/src/shims/packages/react-goardian-guard.tsx","apps/golyzer/src/shims/packages/react-guapo-operators.ts","apps/golyzer/src/shims/packages/react-guapo.tsx","apps/golyzer/src/shims/packages/react-sharing.tsx","apps/golyzer/src/styles/fonts.less","apps/golyzer/src/styles/global.less","apps/golyzer/src/styles/globalStyle.ts","apps/golyzer/src/styles/overrideAnt.css","apps/golyzer/src/styles/theme/charts/default.ts","apps/golyzer/src/styles/theme/charts/gray.ts","apps/golyzer/src/styles/theme/dark.less","apps/golyzer/src/styles/theme/light.less","apps/golyzer/src/styles/tokens.ts","apps/golyzer/src/styles/variables.less","apps/golyzer/src/test/setup.ts","apps/golyzer/src/tests/mocks/request/requestToGenerateMatrixLines.ts","apps/golyzer/src/types/form.ts","apps/golyzer/src/types/interactionMode/chartInteraction.ts","apps/golyzer/src/types/interactionMode/clickedDataTypes.ts","apps/golyzer/src/types/interactionMode/interactionConfig.ts","apps/golyzer/src/types/interactionMode/interactionEvents.ts","apps/golyzer/src/types/interactionMode/interactionState.ts","apps/golyzer/src/utils/array.ts","apps/golyzer/src/utils/charts/appearance.ts","apps/golyzer/src/utils/charts/applyAppearanceConfig.spec.ts","apps/golyzer/src/utils/charts/axis.ts","apps/golyzer/src/utils/charts/dataset.ts","apps/golyzer/src/utils/charts/defaultAggregation.test.ts","apps/golyzer/src/utils/charts/enum.ts","apps/golyzer/src/utils/charts/fieldIdentity.test.ts","apps/golyzer/src/utils/charts/fieldIdentity.ts","apps/golyzer/src/utils/charts/filter.ts","apps/golyzer/src/utils/charts/index.ts","apps/golyzer/src/utils/charts/lineChartOptions.test.ts","apps/golyzer/src/utils/charts/lineChartOptions.ts","apps/golyzer/src/utils/charts/modules/aggregation.ts","apps/golyzer/src/utils/charts/modules/appearance.ts","apps/golyzer/src/utils/charts/modules/data.ts","apps/golyzer/src/utils/charts/modules/index.ts","apps/golyzer/src/utils/charts/modules/position.ts","apps/golyzer/src/utils/charts/modules/split-map.ts","apps/golyzer/src/utils/charts/modules/tooltip.ts","apps/golyzer/src/utils/charts/modules/types.ts","apps/golyzer/src/utils/charts/modules/validation.ts","apps/golyzer/src/utils/charts/number.ts","apps/golyzer/src/utils/charts/partialHighlight.spec.ts","apps/golyzer/src/utils/charts/partialHighlight.ts","apps/golyzer/src/utils/charts/partialHighlightOperations.ts","apps/golyzer/src/utils/charts/position.ts","apps/golyzer/src/utils/charts/remove.ts","apps/golyzer/src/utils/charts/reorderElements.spec.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.test.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.ts","apps/golyzer/src/utils/charts/sizes.ts","apps/golyzer/src/utils/charts/transformProps.ts","apps/golyzer/src/utils/collaborator/enum.ts","apps/golyzer/src/utils/color.ts","apps/golyzer/src/utils/converting/size.ts","apps/golyzer/src/utils/corsWorker.ts","apps/golyzer/src/utils/date.ts","apps/golyzer/src/utils/date/range.ts","apps/golyzer/src/utils/debugLog.ts","apps/golyzer/src/utils/deepCopy.ts","apps/golyzer/src/utils/delay.ts","apps/golyzer/src/utils/echarts.ts","apps/golyzer/src/utils/errorHandling.test.ts","apps/golyzer/src/utils/errorHandling.ts","apps/golyzer/src/utils/feedback/confirm.tsx","apps/golyzer/src/utils/feedback/error.tsx","apps/golyzer/src/utils/feedback/message.ts","apps/golyzer/src/utils/feedback/saving.tsx","apps/golyzer/src/utils/feedback/tooltip.tsx","apps/golyzer/src/utils/formatting/date.ts","apps/golyzer/src/utils/formatting/responseData.ts","apps/golyzer/src/utils/formatting/text.ts","apps/golyzer/src/utils/functions.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.test.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.ts","apps/golyzer/src/utils/interactionMode/constants.ts","apps/golyzer/src/utils/interactionMode/interactionElements.ts","apps/golyzer/src/utils/interactionMode/interactionEvents.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.test.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.ts","apps/golyzer/src/utils/placeholderSource.ts","apps/golyzer/src/utils/primaryErrorCandidate.ts","apps/golyzer/src/utils/responseData/filter.ts","apps/golyzer/src/utils/storybookHideProps/index.ts","apps/golyzer/src/utils/storybookToggleableProps/index.ts","apps/golyzer/src/utils/styled/index.ts","apps/golyzer/src/utils/system.ts","apps/golyzer/src/utils/typescript/isObject.ts","apps/golyzer/src/utils/typescript/sql.ts","apps/golyzer/src/utils/typescript/text.ts","apps/golyzer/src/utils/typescript/typeGuards.ts","apps/golyzer/src/utils/unicode/normalize.ts","apps/golyzer/src/utils/url.ts","apps/golyzer/src/utils/user.ts","apps/golyzer/src/utils/uuid.ts","apps/golyzer/src/utils/validation/compare.spec.ts","apps/golyzer/src/utils/validation/compare.ts","apps/golyzer/src/utils/validation/compareDate.ts","apps/golyzer/src/utils/validation/user.ts","apps/golyzer/src/utils/validation/uuid.ts","apps/golyzer/tests/e2e/offline-drawer-charts.spec.ts","apps/golyzer/tests/e2e/offline-smoke.spec.ts","apps/golyzer/tsconfig.json","apps/golyzer/tsconfig.node.json","apps/golyzer/vite.config.ts","apps/golyzer/vitest.config.ts"],"apps — base":["apps/base/README.md","apps/base/docs/MIGRATION_PLAN.md","apps/base/docs/audit/impacto-roteamento-navegacao.md","apps/base/docs/audit/mfe-antipatterns/auditoria-mfe-antipatterns.md","apps/base/docs/audit/mfe-antipatterns/claude-gitnexus-mfe-antipatterns-audit.md","apps/base/docs/audit/mfe-antipatterns/mapa-dominios.md","apps/base/docs/audit/mfe-antipatterns/proposals/001-no-ci-cd.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-common-ownership.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-cyclic-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-no-versioning.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-hub-like-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-knot-mfe.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-golden-hammer.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-mega-frontend.md","apps/base/docs/audit/mfe-antipatterns/proposta-ownership-dominios.md","apps/base/docs/breakingchanges/00-indice.md","apps/base/docs/breakingchanges/01-roteamento-navegacao.md","apps/base/docs/breakingchanges/02-module-federation-mf.md","apps/base/docs/breakingchanges/03-variaveis-ambiente.md","apps/base/docs/breakingchanges/04-build-tooling.md","apps/base/docs/breakingchanges/05-autenticacao-sessao.md","apps/base/docs/breakingchanges/06-react-18-upgrade.md","apps/base/docs/breakingchanges/07-head-meta-seo.md","apps/base/docs/breakingchanges/08-dependencias-removidas-atualizadas.md","apps/base/docs/breakingchanges/09-componentes-novos-alterados.md","apps/base/docs/breakingchanges/next-router-shim-impacto-remotes.md","apps/base/docs/changes/next-router-shim-module-federation.md","apps/base/docs/changes/share-scope-next-router.md","apps/base/docs/mapeamento-projetos-mfe.md","apps/base/docs/migration/decisao-versao-antd.md","apps/base/docs/migration/fase-0-scaffolding.md","apps/base/docs/migration/fase-1-env-e-utils.md","apps/base/docs/migration/fase-2-routing.md","apps/base/docs/migration/fase-3-module-federation.md","apps/base/docs/migration/fase-4-mfe-pages.md","apps/base/docs/migration/fase-5-css-e-temas.md","apps/base/docs/migration/fase-6-compatibilidade-react-18.md","apps/base/docs/migration/fase-7-build-e-deploy.md","apps/base/docs/migration/fase-8-limpeza.md","apps/base/docs/migration/monorepo/fase-0-decisoes.md","apps/base/docs/proposals/plano-monorepo-base-golyzer.md","apps/base/docs/proposals/proposta-cfi-core-interno-com-remote-legado.md","apps/base/docs/proposals/proposta-separacao-base-vite-golyzer-e-estrategia-cfi.md","apps/base/docs/todo/atualizacao-dependencias.md","apps/base/docs/todo/axios-e-tanstack-bloqueio-ui-components.md","apps/base/docs/todo/baselines/2026-03-21-typecheck.txt","apps/base/docs/todo/fase-0-preparacao-paralelismo.md","apps/base/docs/todo/plano-mitigacao-erros-warnings.md","apps/base/eslint.config.mjs","apps/base/firebase.json","apps/base/gulpfile.js","apps/base/index.html","apps/base/package.json","apps/base/paths.json","apps/base/src/App.tsx","apps/base/src/components/Backdrop/index.tsx","apps/base/src/components/Button/index.tsx","apps/base/src/components/Button/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ListBlocks/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccounts/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ExpandCollapseMenu/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/filter.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/title.tsx","apps/base/src/components/ChartOfAccountsExplorer/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Confirm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/context/MigrationsContext.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/confirm.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/goTo.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/menu.ts","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/navigationHandlers.ts","apps/base/src/components/ChartOfAccountsMigration/index.tsx","apps/base/src/components/ChartOfAccountsMigration/styles.module.less","apps/base/src/components/CollaboratorHierarchyDrawer/index.tsx","apps/base/src/components/CollaboratorHierarchyDrawer/styles.module.less","apps/base/src/components/Container/helpers/components/Editable/index.tsx","apps/base/src/components/Container/helpers/components/Editable/styles.module.less","apps/base/src/components/Container/helpers/components/Favorite/index.tsx","apps/base/src/components/Container/helpers/components/Favorite/styles.module.less","apps/base/src/components/Container/index.tsx","apps/base/src/components/Container/styles.module.less","apps/base/src/components/Empty/index.tsx","apps/base/src/components/Empty/styles.module.less","apps/base/src/components/EmptyCard/index.tsx","apps/base/src/components/EmptyCard/styles.module.less","apps/base/src/components/EmptySearch/index.tsx","apps/base/src/components/EmptySearch/styles.module.less","apps/base/src/components/Favorites/Item/index.tsx","apps/base/src/components/Favorites/Item/styles.module.less","apps/base/src/components/Favorites/index.tsx","apps/base/src/components/Favorites/styles.module.less","apps/base/src/components/Footer/index.tsx","apps/base/src/components/Footer/styles.module.less","apps/base/src/components/GuestLayout/index.tsx","apps/base/src/components/GuestLayout/styles.module.less","apps/base/src/components/HashBangRedirect.tsx","apps/base/src/components/Header/index.tsx","apps/base/src/components/Header/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Users/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/helpers/TreeUnitWithRadio/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/ReplicateDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/SolutionsTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/StructuralTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/Tab.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/utils/body.ts","apps/base/src/components/HierarchyDrawer/helpers/utils/modal.tsx","apps/base/src/components/HierarchyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/index.tsx","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/index.tsx","apps/base/src/components/HierarchyLevelDrawer/styles.module.less","apps/base/src/components/IndicatorBuilderDrawer/index.tsx","apps/base/src/components/IndicatorBuilderDrawer/styles.module.less","apps/base/src/components/Input/index.tsx","apps/base/src/components/Input/styles.module.less","apps/base/src/components/ItemMigration/index.tsx","apps/base/src/components/ItemMigration/styles.module.less","apps/base/src/components/Layout/index.tsx","apps/base/src/components/Loading/index.tsx","apps/base/src/components/MaskCustomInput/index.tsx","apps/base/src/components/Notifications/Empty/index.tsx","apps/base/src/components/Notifications/Empty/styles.module.less","apps/base/src/components/Notifications/List/helpers/Card/index.tsx","apps/base/src/components/Notifications/List/helpers/Card/styles.module.less","apps/base/src/components/Notifications/List/helpers/TabStyled/index.tsx","apps/base/src/components/Notifications/List/index.tsx","apps/base/src/components/Notifications/List/styles.module.less","apps/base/src/components/Notifications/index.tsx","apps/base/src/components/Notifications/styles.module.less","apps/base/src/components/OrganizationalStructure/ToolbarStructure/index.tsx","apps/base/src/components/OrganizationalStructure/ToolbarStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Edge/EdgeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/Description.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeCostCenter.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/index.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/styles.module.less","apps/base/src/components/PlansScreen/PlanCard/index.tsx","apps/base/src/components/PlansScreen/PlanCard/styles.module.less","apps/base/src/components/PlansScreen/index.tsx","apps/base/src/components/PlansScreen/styles.module.less","apps/base/src/components/PlansScreen/types.ts","apps/base/src/components/PrefetchScript.tsx","apps/base/src/components/ProfileWrappers/Appearance/index.tsx","apps/base/src/components/ProfileWrappers/Appearance/styles.module.less","apps/base/src/components/ProfileWrappers/ChangePassword/index.tsx","apps/base/src/components/ProfileWrappers/ChangePassword/styles.module.less","apps/base/src/components/ProfileWrappers/UserInformation/index.tsx","apps/base/src/components/ProfileWrappers/UserInformation/styles.module.less","apps/base/src/components/ProfileWrappers/index.tsx","apps/base/src/components/RequestDemoModal/index.tsx","apps/base/src/components/RequestDemoModal/styles.module.less","apps/base/src/components/Resizable/helpers/components/Alert/index.tsx","apps/base/src/components/Resizable/helpers/components/Alert/styles.module.less","apps/base/src/components/Resizable/helpers/components/HandleComponent/index.tsx","apps/base/src/components/Resizable/helpers/components/HandleComponent/styles.module.less","apps/base/src/components/Resizable/index.tsx","apps/base/src/components/Resizable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/CheckboxWithModal/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SearchField/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SolutionFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/context/SearchContext.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/utils/search.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/styles.module.less","apps/base/src/components/RoleManager/helpers/components/HeaderControls/index.tsx","apps/base/src/components/RoleManager/helpers/components/HeaderControls/styles.module.less","apps/base/src/components/RoleManager/helpers/components/LinkUnit/index.tsx","apps/base/src/components/RoleManager/helpers/components/LinkUnit/styles.module.less","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/index.tsx","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/styles.module.less","apps/base/src/components/RoleManager/helpers/components/SettingsMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/SettingsMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableDragable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableDragable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableExpandable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableExpandable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TitleColumn/index.tsx","apps/base/src/components/RoleManager/helpers/components/TitleColumn/styles.module.less","apps/base/src/components/RoleManager/helpers/context/RoleManagerContext.tsx","apps/base/src/components/RoleManager/helpers/enums/index.ts","apps/base/src/components/RoleManager/helpers/utils/checkeds.ts","apps/base/src/components/RoleManager/helpers/utils/columns.tsx","apps/base/src/components/RoleManager/helpers/utils/modal.tsx","apps/base/src/components/RoleManager/helpers/utils/roles.ts","apps/base/src/components/RoleManager/helpers/utils/scroll.ts","apps/base/src/components/RoleManager/helpers/utils/tree.ts","apps/base/src/components/RoleManager/index.tsx","apps/base/src/components/RoleManager/styles.module.less","apps/base/src/components/Search/index.tsx","apps/base/src/components/Search/styles.module.less","apps/base/src/components/SignatureDrawer/Email/index.tsx","apps/base/src/components/SignatureDrawer/FirstPayment/index.tsx","apps/base/src/components/SignatureDrawer/Payment/index.tsx","apps/base/src/components/SignatureDrawer/Plan/index.tsx","apps/base/src/components/SignatureDrawer/index.tsx","apps/base/src/components/SignatureDrawer/styles.module.less","apps/base/src/components/ToastAlert/index.tsx","apps/base/src/components/ToastAlert/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/Drawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/Drawer/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/index.tsx","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/ResetActions/index.tsx","apps/base/src/components/UserDrawer/helpers/components/SelectRole/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsList/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CopyDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/ReplicateDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/UnitTree/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/utils/menus.tsx","apps/base/src/components/UserDrawer/helpers/utils/modal.tsx","apps/base/src/components/UserDrawer/index.tsx","apps/base/src/components/UserDrawer/styles.module.less","apps/base/src/components/WelcomeScreen/index.tsx","apps/base/src/components/WelcomeScreen/styles.module.less","apps/base/src/components/WrapperAuth/index.tsx","apps/base/src/components/WrapperGuestForm/index.tsx","apps/base/src/components/WrapperGuestForm/styles.module.less","apps/base/src/constants/budget/index.ts","apps/base/src/constants/colors/index.ts","apps/base/src/constants/date/index.ts","apps/base/src/constants/image/index.ts","apps/base/src/constants/menu/index.tsx","apps/base/src/constants/roles.ts","apps/base/src/constants/urls.ts","apps/base/src/context/AuthContext.tsx","apps/base/src/context/CollapseContext.tsx","apps/base/src/context/FullScreenContext.tsx","apps/base/src/context/SocketContext.tsx","apps/base/src/context/TagContext.tsx","apps/base/src/context/ViewsStateContext.tsx","apps/base/src/dictionary/form/index.ts","apps/base/src/dictionary/index.ts","apps/base/src/dictionary/pagination/index.ts","apps/base/src/dictionary/table/index.ts","apps/base/src/guapo/Alert/Alert.stories.tsx","apps/base/src/guapo/Alert/Alert.tsx","apps/base/src/guapo/Alert/index.ts","apps/base/src/guapo/Avatar/Avatar.stories.tsx","apps/base/src/guapo/Avatar/Avatar.tsx","apps/base/src/guapo/Avatar/index.ts","apps/base/src/guapo/Badge/Badge.stories.tsx","apps/base/src/guapo/Badge/Badge.tsx","apps/base/src/guapo/Badge/index.ts","apps/base/src/guapo/BadgeSmall/index.tsx","apps/base/src/guapo/BadgeSmall/styles.module.less","apps/base/src/guapo/Breadcrumb/Breadcrumb.stories.tsx","apps/base/src/guapo/Breadcrumb/Breadcrumb.tsx","apps/base/src/guapo/Breadcrumb/index.ts","apps/base/src/guapo/Button/Button.stories.tsx","apps/base/src/guapo/Button/Button.tsx","apps/base/src/guapo/Button/index.ts","apps/base/src/guapo/Card/Card.stories.tsx","apps/base/src/guapo/Card/Card.tsx","apps/base/src/guapo/Card/index.tsx","apps/base/src/guapo/Checkbox/Checkbox.stories.tsx","apps/base/src/guapo/Checkbox/Checkbox.tsx","apps/base/src/guapo/Checkbox/index.ts","apps/base/src/guapo/Col/Col.stories.tsx","apps/base/src/guapo/Col/Col.tsx","apps/base/src/guapo/Col/index.tsx","apps/base/src/guapo/Collapse/Collapse.stories.tsx","apps/base/src/guapo/Collapse/Collapse.tsx","apps/base/src/guapo/Collapse/index.ts","apps/base/src/guapo/DatePicker/DatePicker.stories.tsx","apps/base/src/guapo/DatePicker/DatePicker.tsx","apps/base/src/guapo/DatePicker/index.ts","apps/base/src/guapo/Divider/Divider.stories.tsx","apps/base/src/guapo/Divider/Divider.tsx","apps/base/src/guapo/Divider/index.tsx","apps/base/src/guapo/Dropdown/Dropdown.stories.tsx","apps/base/src/guapo/Dropdown/Dropdown.tsx","apps/base/src/guapo/Dropdown/index.ts","apps/base/src/guapo/Empty/Empty.stories.tsx","apps/base/src/guapo/Empty/Empty.tsx","apps/base/src/guapo/Empty/index.ts","apps/base/src/guapo/Filter/Filter.d.tsx","apps/base/src/guapo/Filter/Filter.stories.tsx","apps/base/src/guapo/Filter/Filter.tsx","apps/base/src/guapo/Filter/index.tsx","apps/base/src/guapo/Filter/styles.module.css","apps/base/src/guapo/Form/Form.stories.tsx","apps/base/src/guapo/Form/Form.tsx","apps/base/src/guapo/Form/index.tsx","apps/base/src/guapo/Icon/Icon.stories.tsx","apps/base/src/guapo/Icon/Icon.tsx","apps/base/src/guapo/Icon/Icons/ArchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/ArchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/DotDragSVG.tsx","apps/base/src/guapo/Icon/Icons/DotMenuSVG.tsx","apps/base/src/guapo/Icon/Icons/OpenInNewSVG.tsx","apps/base/src/guapo/Icon/Icons/PixSVG.tsx","apps/base/src/guapo/Icon/Icons/RedoOutlineSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/UndoOutlineSVG.tsx","apps/base/src/guapo/Icon/index.tsx","apps/base/src/guapo/Input/Input.stories.tsx","apps/base/src/guapo/Input/Input.tsx","apps/base/src/guapo/Input/index.ts","apps/base/src/guapo/Input/styles.module.css","apps/base/src/guapo/Layout/Layout.stories.tsx","apps/base/src/guapo/Layout/Layout.tsx","apps/base/src/guapo/Layout/index.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.stories.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.tsx","apps/base/src/guapo/LayoutFenix/index.tsx","apps/base/src/guapo/List/List.action.tsx","apps/base/src/guapo/List/List.d.tsx","apps/base/src/guapo/List/List.stories.tsx","apps/base/src/guapo/List/List.tsx","apps/base/src/guapo/List/List.type.tsx","apps/base/src/guapo/List/index.tsx","apps/base/src/guapo/List/styles.module.css","apps/base/src/guapo/Menu/MenuBackOffice.stories.tsx","apps/base/src/guapo/Menu/MenuBackOffice.tsx","apps/base/src/guapo/Menu/index.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.d.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.stories.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/Settings/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/Solutions/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Menu/index.tsx","apps/base/src/guapo/MenuFenix/index.tsx","apps/base/src/guapo/MenuFenix/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.d.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.stories.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.tsx","apps/base/src/guapo/MenuGoapice/index.ts","apps/base/src/guapo/MenuGoapice/styles.module.css","apps/base/src/guapo/MenuVertical/MenuVertical.d.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.stories.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.tsx","apps/base/src/guapo/MenuVertical/index.ts","apps/base/src/guapo/Modal/Modal.stories.tsx","apps/base/src/guapo/Modal/Modal.tsx","apps/base/src/guapo/Modal/index.ts","apps/base/src/guapo/Overlay/Overlay.stories.tsx","apps/base/src/guapo/Overlay/index.tsx","apps/base/src/guapo/PageHeader/PageHeader.stories.tsx","apps/base/src/guapo/PageHeader/PageHeader.tsx","apps/base/src/guapo/PageHeader/index.tsx","apps/base/src/guapo/Pagination/Pagination.stories.tsx","apps/base/src/guapo/Pagination/Pagination.tsx","apps/base/src/guapo/Pagination/index.ts","apps/base/src/guapo/Progress/Progress.stories.tsx","apps/base/src/guapo/Progress/Progress.tsx","apps/base/src/guapo/Progress/index.ts","apps/base/src/guapo/Radio/Radio.stories.tsx","apps/base/src/guapo/Radio/Radio.tsx","apps/base/src/guapo/Radio/index.ts","apps/base/src/guapo/RangePicker/RangePicker.stories.tsx","apps/base/src/guapo/RangePicker/RangePicker.tsx","apps/base/src/guapo/RangePicker/index.ts","apps/base/src/guapo/Row/Row.stories.tsx","apps/base/src/guapo/Row/Row.tsx","apps/base/src/guapo/Row/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/ChangeCollaboratorDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/InfoDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/PrintDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/TimesTableDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/styles.module.css","apps/base/src/guapo/Schenduler/components/Icons/List.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/Appointment.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/CurrentTime.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/MouseMover.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/index.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/styles.module.css","apps/base/src/guapo/Schenduler/components/Table/TBody.tsx","apps/base/src/guapo/Schenduler/components/Table/TFooter.tsx","apps/base/src/guapo/Schenduler/components/Table/THeader.tsx","apps/base/src/guapo/Schenduler/components/Table/index.tsx","apps/base/src/guapo/Schenduler/components/Table/styles.module.css","apps/base/src/guapo/Schenduler/components/Views/DayView.tsx","apps/base/src/guapo/Schenduler/components/Views/MonthView.tsx","apps/base/src/guapo/Schenduler/components/Views/View.tsx","apps/base/src/guapo/Schenduler/components/Views/WeekView.tsx","apps/base/src/guapo/Schenduler/components/Views/styles.module.css","apps/base/src/guapo/Schenduler/hooks/useInterval.tsx","apps/base/src/guapo/Schenduler/index.ts","apps/base/src/guapo/Schenduler/template/PrintScale/index.tsx","apps/base/src/guapo/Select/Select.stories.tsx","apps/base/src/guapo/Select/Select.tsx","apps/base/src/guapo/Select/index.ts","apps/base/src/guapo/Select/styles.module.css","apps/base/src/guapo/ShouldRender/ShouldRender.tsx","apps/base/src/guapo/ShouldRender/index.ts","apps/base/src/guapo/Skeleton/Skeleton.stories.tsx","apps/base/src/guapo/Skeleton/Skeleton.tsx","apps/base/src/guapo/Skeleton/index.ts","apps/base/src/guapo/Space/Space.stories.tsx","apps/base/src/guapo/Space/Space.tsx","apps/base/src/guapo/Space/index.tsx","apps/base/src/guapo/Statistic/Statistic.stories.tsx","apps/base/src/guapo/Statistic/Statistic.tsx","apps/base/src/guapo/Statistic/index.ts","apps/base/src/guapo/Steps/Steps.stories.tsx","apps/base/src/guapo/Steps/Steps.tsx","apps/base/src/guapo/Steps/index.ts","apps/base/src/guapo/Switch/Switch.stories.tsx","apps/base/src/guapo/Switch/Switch.tsx","apps/base/src/guapo/Switch/index.ts","apps/base/src/guapo/Table/Table.stories.tsx","apps/base/src/guapo/Table/Table.tsx","apps/base/src/guapo/Table/index.ts","apps/base/src/guapo/Table/styles.module.css","apps/base/src/guapo/Tabs/Tabs.stories.tsx","apps/base/src/guapo/Tabs/Tabs.tsx","apps/base/src/guapo/Tabs/index.ts","apps/base/src/guapo/Tag/Tag.stories.tsx","apps/base/src/guapo/Tag/Tag.tsx","apps/base/src/guapo/Tag/index.ts","apps/base/src/guapo/Tooltip/Tooltip.stories.tsx","apps/base/src/guapo/Tooltip/Tooltip.tsx","apps/base/src/guapo/Tooltip/index.tsx","apps/base/src/guapo/Tree/Tree.stories.tsx","apps/base/src/guapo/Tree/Tree.tsx","apps/base/src/guapo/Tree/index.ts","apps/base/src/guapo/TreeSelect/TreeSelect.stories.tsx","apps/base/src/guapo/TreeSelect/TreeSelect.tsx","apps/base/src/guapo/TreeSelect/index.ts","apps/base/src/guapo/Typography/Typography.d.tsx","apps/base/src/guapo/Typography/Typography.stories.tsx","apps/base/src/guapo/Typography/Typography.tsx","apps/base/src/guapo/Typography/components/BodyText.tsx","apps/base/src/guapo/Typography/components/Caption.tsx","apps/base/src/guapo/Typography/components/Heading.tsx","apps/base/src/guapo/Typography/components/SubTitle.tsx","apps/base/src/guapo/Typography/constants/fontSize.ts","apps/base/src/guapo/Typography/index.tsx","apps/base/src/guapo/Upload/Upload.stories.tsx","apps/base/src/guapo/Upload/Upload.tsx","apps/base/src/guapo/Upload/index.ts","apps/base/src/guapo/index.ts","apps/base/src/hooks/useChartOfAccounts.tsx","apps/base/src/hooks/useCollaboratorPosition.tsx","apps/base/src/hooks/useCostCenters.tsx","apps/base/src/hooks/useDebounce.tsx","apps/base/src/hooks/useDepartment.tsx","apps/base/src/hooks/useHistory.tsx","apps/base/src/hooks/useIsEditPage.tsx","apps/base/src/hooks/useLoadOnPermissionsUpdate.tsx","apps/base/src/hooks/useNotifications.tsx","apps/base/src/hooks/usePageVisibility.tsx","apps/base/src/hooks/usePermission.tsx","apps/base/src/hooks/usePrevious.tsx","apps/base/src/hooks/useSolutions.tsx","apps/base/src/hooks/useWindowSize.tsx","apps/base/src/interfaces/iMapper.ts","apps/base/src/lib/compat/navigate.ts","apps/base/src/lib/compat/router.ts","apps/base/src/lib/federation/MfeLoader.tsx","apps/base/src/lib/federation/loadRemote.ts","apps/base/src/lib/federation/remoteConfig.ts","apps/base/src/lib/federation/shims/next-router.ts","apps/base/src/lib/queryClient.ts","apps/base/src/main.tsx","apps/base/src/mappers/notifications/index.ts","apps/base/src/pages/budget/helpers/components/modal/footer/index.tsx","apps/base/src/pages/budget/helpers/components/modal/index.tsx","apps/base/src/pages/budget/helpers/components/table/empty.tsx","apps/base/src/pages/budget/helpers/components/table/index.tsx","apps/base/src/pages/budget/helpers/components/table/styles.module.less","apps/base/src/pages/budget/index.tsx","apps/base/src/pages/budget/styles.module.less","apps/base/src/pages/chart-of-accounts/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/[id]/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/add/index.tsx","apps/base/src/pages/forgot/index.tsx","apps/base/src/pages/goal-sets/[id]/index.tsx","apps/base/src/pages/goal-sets/index.tsx","apps/base/src/pages/goask/answer-options-list/[id].tsx","apps/base/src/pages/goask/answer-options-list/add.tsx","apps/base/src/pages/goask/answer-options-list/index.tsx","apps/base/src/pages/goask/guests-lists/[id].tsx","apps/base/src/pages/goask/guests-lists/add.tsx","apps/base/src/pages/goask/guests-lists/index.tsx","apps/base/src/pages/goask/index.tsx","apps/base/src/pages/goask/questionnaires/[id].tsx","apps/base/src/pages/goask/questionnaires/add.tsx","apps/base/src/pages/goask/questionnaires/index.tsx","apps/base/src/pages/goask/reports/index.tsx","apps/base/src/pages/goask/surveys/[id].tsx","apps/base/src/pages/goask/surveys/add.tsx","apps/base/src/pages/goask/surveys/index.tsx","apps/base/src/pages/golyzer/[id]/index.tsx","apps/base/src/pages/golyzer/[id]/presentation.tsx","apps/base/src/pages/golyzer/add.tsx","apps/base/src/pages/golyzer/index.tsx","apps/base/src/pages/gonext/cfi/index.tsx","apps/base/src/pages/gonext/data-view/index.tsx","apps/base/src/pages/gonext/data-view/view/index.tsx","apps/base/src/pages/gonext/dre/[id]/index.tsx","apps/base/src/pages/gonext/dre/add/index.tsx","apps/base/src/pages/gonext/dre/index.tsx","apps/base/src/pages/gonext/index.tsx","apps/base/src/pages/gonext/ledger/[id]/index.tsx","apps/base/src/pages/gonext/ledger/add/index.tsx","apps/base/src/pages/gonext/ledger/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/[entryId]/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/index.tsx","apps/base/src/pages/gonext/managerial-entries/index.tsx","apps/base/src/pages/gonext/managerial-entries/new/index.tsx","apps/base/src/pages/gonext/managerial-entries/view/[id].tsx","apps/base/src/pages/gonext/reconciliation/[id]/index.tsx","apps/base/src/pages/gonext/reconciliation/add/index.tsx","apps/base/src/pages/gonext/reconciliation/index.tsx","apps/base/src/pages/gonext/trial-balance/[id]/index.tsx","apps/base/src/pages/gonext/trial-balance/add/index.tsx","apps/base/src/pages/gonext/trial-balance/index.tsx","apps/base/src/pages/gotime/index.tsx","apps/base/src/pages/gotime/manage/[id].tsx","apps/base/src/pages/gotime/settings/index.tsx","apps/base/src/pages/gotrade/assets/index.tsx","apps/base/src/pages/gotrade/campaigns/add/index.tsx","apps/base/src/pages/gotrade/campaigns/index.tsx","apps/base/src/pages/gotrade/index.tsx","apps/base/src/pages/index.tsx","apps/base/src/pages/integrations/[id]/index.tsx","apps/base/src/pages/integrations/[id]/styles.module.less","apps/base/src/pages/integrations/index.tsx","apps/base/src/pages/integrations/styles.module.less","apps/base/src/pages/login/index.tsx","apps/base/src/pages/login/styles.module.less","apps/base/src/pages/organizational/index.tsx","apps/base/src/pages/organizational/styles.module.less","apps/base/src/pages/profile/index.tsx","apps/base/src/pages/profile/styles.module.less","apps/base/src/pages/recover/index.tsx","apps/base/src/pages/recover/styles.module.less","apps/base/src/pages/roles/index.tsx","apps/base/src/pages/roles/styles.module.less","apps/base/src/pages/signature/index.tsx","apps/base/src/pages/signature/styles.module.less","apps/base/src/pages/styles.module.less","apps/base/src/pages/users/index.tsx","apps/base/src/pages/users/styles.module.less","apps/base/src/pages/welcome/index.tsx","apps/base/src/pages/welcome/styles.module.less","apps/base/src/routes.tsx","apps/base/src/services/api.ts","apps/base/src/services/auth.ts","apps/base/src/services/budget.ts","apps/base/src/services/chartOfAccounts.ts","apps/base/src/services/client.ts","apps/base/src/services/collaborator.ts","apps/base/src/services/collaboratorPosition.ts","apps/base/src/services/costCenters.ts","apps/base/src/services/data.ts","apps/base/src/services/department.ts","apps/base/src/services/errors/AuthTokenError.ts","apps/base/src/services/gotime.ts","apps/base/src/services/guardianApi.ts","apps/base/src/services/hello.ts","apps/base/src/services/hierarchy.ts","apps/base/src/services/io.ts","apps/base/src/services/notifications.ts","apps/base/src/services/plans.ts","apps/base/src/services/policie.ts","apps/base/src/services/registration.ts","apps/base/src/services/roles.ts","apps/base/src/services/signature.ts","apps/base/src/services/solutions.ts","apps/base/src/services/store/chartOfAccounts/index.ts","apps/base/src/services/store/costCenters/index.ts","apps/base/src/services/store/index.ts","apps/base/src/services/store/notifications/index.ts","apps/base/src/services/store/solutions/index.ts","apps/base/src/services/tag.ts","apps/base/src/services/units.ts","apps/base/src/services/user.ts","apps/base/src/state/data.ts","apps/base/src/state/dictionary.json","apps/base/src/store/index.tsx","apps/base/src/store/reducers/chartOfAccounts.ts","apps/base/src/store/reducers/costCenters.ts","apps/base/src/store/reducers/notifications.ts","apps/base/src/store/reducers/solutions.ts","apps/base/src/stories/Button.stories.tsx","apps/base/src/stories/Button.tsx","apps/base/src/stories/Header.stories.tsx","apps/base/src/stories/Header.tsx","apps/base/src/stories/Introduction.stories.mdx","apps/base/src/stories/Page.stories.tsx","apps/base/src/stories/Page.tsx","apps/base/src/stories/button.css","apps/base/src/stories/header.css","apps/base/src/stories/page.css","apps/base/src/styles/fonts.less","apps/base/src/styles/global.less","apps/base/src/styles/globalStyle.ts","apps/base/src/styles/overrideAnt.css","apps/base/src/styles/theme/dark.less","apps/base/src/styles/theme/light.less","apps/base/src/styles/tokens.ts","apps/base/src/styles/variables.less","apps/base/src/utils/alerts/confirm.tsx","apps/base/src/utils/alerts/error.tsx","apps/base/src/utils/alerts/index.ts","apps/base/src/utils/alerts/loading.tsx","apps/base/src/utils/alerts/success.tsx","apps/base/src/utils/csv/index.ts","apps/base/src/utils/date/index.ts","apps/base/src/utils/feedback/error.tsx","apps/base/src/utils/feedback/message.ts","apps/base/src/utils/feedback/tooltip.ts","apps/base/src/utils/flowchart/index.ts","apps/base/src/utils/formatters/cnpj.ts","apps/base/src/utils/formatters/csvToArray.ts","apps/base/src/utils/formatters/date.ts","apps/base/src/utils/formatters/money.ts","apps/base/src/utils/formatters/phone.ts","apps/base/src/utils/formatters/slug.ts","apps/base/src/utils/formatters/text.ts","apps/base/src/utils/formatters/url.ts","apps/base/src/utils/forms/getHeaders.ts","apps/base/src/utils/functions/color.ts","apps/base/src/utils/functions/deepClone.ts","apps/base/src/utils/functions/dom.ts","apps/base/src/utils/functions/equal.ts","apps/base/src/utils/functions/getDifference.ts","apps/base/src/utils/functions/immutability.ts","apps/base/src/utils/functions/index.ts","apps/base/src/utils/functions/regexp.ts","apps/base/src/utils/functions/text.ts","apps/base/src/utils/functions/tree.tsx","apps/base/src/utils/functions/uuid.ts","apps/base/src/utils/organizational/index.ts","apps/base/src/utils/permission/Restricted.tsx","apps/base/src/utils/roles/index.tsx","apps/base/src/utils/searchs/index.ts","apps/base/src/utils/session/index.ts","apps/base/src/utils/solutions/index.ts","apps/base/src/utils/storybookHideProps/index.ts","apps/base/src/utils/storybookToggleableProps/index.ts","apps/base/src/utils/template/index.ts","apps/base/src/utils/url/index.ts","apps/base/src/utils/validations/index.ts","apps/base/src/utils/validations/uuid.ts","apps/base/tsconfig.json","apps/base/vite.config.ts"],"apps — cfi-next-remote":["apps/cfi-next-remote/README.md","apps/cfi-next-remote/package.json"],"apps — golyzer":["apps/golyzer/docs/GITNEXUS_TUTORIAL.md","apps/golyzer/docs/MIGRATION_ANALYSIS.md","apps/golyzer/docs/MIGRATION_PLAN.md","apps/golyzer/docs/architecture/chart-adapter-proposal.md","apps/golyzer/docs/changes/antd-deep-imports-module-federation.md","apps/golyzer/docs/changes/cfi-import-dinamico-defensivo.md","apps/golyzer/docs/changes/micro-frontend-router-data-router.md","apps/golyzer/docs/changes/public-path-assets-mfe.md","apps/golyzer/docs/changes/svgr-prefix-ids-colisao-svg.md","apps/golyzer/docs/done/HOST_DEPENDENCY_MITIGATION_PLAN.md","apps/golyzer/docs/shadow-architecture/README.md","apps/golyzer/docs/shadow-architecture/chart-behavioral-model.md","apps/golyzer/docs/shadow-architecture/data-flow-optimization.md","apps/golyzer/docs/shadow-architecture/dependency-cycles.md","apps/golyzer/docs/shadow-architecture/navigation.md","apps/golyzer/docs/shadow-architecture/overview.md","apps/golyzer/docs/shadow-architecture/path-dependent-state.md","apps/golyzer/docs/shadow-architecture/team-plan.md","apps/golyzer/docs/shadow-architecture/tsconfig.typedoc.json","apps/golyzer/docs/shadow-architecture/typedoc-readme.md","apps/golyzer/docs/shadow-architecture/typedoc.json","apps/golyzer/docs/todo/dependency-upgrade-impact.md","apps/golyzer/docs/todo/hmr-invalidation.md","apps/golyzer/docs/todo/react-dom-warnings.md","apps/golyzer/docs/todo/unused-dependencies.md","apps/golyzer/index.html","apps/golyzer/package.json","apps/golyzer/playwright.config.ts","apps/golyzer/public/workers/csv.js","apps/golyzer/public/workers/pivot.js","apps/golyzer/public/workers/spreadsheet.js","apps/golyzer/src/App.tsx","apps/golyzer/src/adapters/chart/ChartAdapter.ts","apps/golyzer/src/adapters/chart/ChartAdapterFactory.ts","apps/golyzer/src/adapters/chart/EChartsAdapter.ts","apps/golyzer/src/adapters/chart/MockAdapter.ts","apps/golyzer/src/adapters/chart/index.ts","apps/golyzer/src/adapters/chart/types.ts","apps/golyzer/src/adapters/chart/useChart.ts","apps/golyzer/src/assets/icon/charts/index.ts","apps/golyzer/src/assets/img/avatar.json","apps/golyzer/src/components/AlphaPickerCustom/index.tsx","apps/golyzer/src/components/AvatarGroup/index.tsx","apps/golyzer/src/components/AvatarGroup/styles.module.less","apps/golyzer/src/components/Box/index.tsx","apps/golyzer/src/components/Box/styles.module.less","apps/golyzer/src/components/Button/index.tsx","apps/golyzer/src/components/Button/styles.module.less","apps/golyzer/src/components/CardChart/CardChart.test.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartActions/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/styles.module.less","apps/golyzer/src/components/CardChart/helpers/components/ChartWrapper/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/FocusModeRenderer/index.tsx","apps/golyzer/src/components/CardChart/helpers/constants/index.ts","apps/golyzer/src/components/CardChart/helpers/hooks/useCardBorder.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useChartPercentageLayout.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useKeyboardMove.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/usePinnedElement.tsx","apps/golyzer/src/components/CardChart/helpers/utils/fullWidth/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/gridLines/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/styles.module.less","apps/golyzer/src/components/CardChart/helpers/utils/items/README.md","apps/golyzer/src/components/CardChart/helpers/utils/items/examples.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/styles.module.less","apps/golyzer/src/components/CardChart/index.tsx","apps/golyzer/src/components/ChartWrapper/index.tsx","apps/golyzer/src/components/Charts/AreaLine/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/actions.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/styles.module.less","apps/golyzer/src/components/Charts/AvgBarChart/AvgBarChart.test.ts","apps/golyzer/src/components/Charts/AvgBarChart/index.tsx","apps/golyzer/src/components/Charts/BarLabelRotate/index.tsx","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/index.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/ensureKeyValueSource.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/helpers/highlightPartialTooltip.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/useBasicBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/usePartialHighlightState.ts","apps/golyzer/src/components/Charts/BasicBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/actions.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/styles.module.less","apps/golyzer/src/components/Charts/BasicGaugeChart/index.tsx","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.test.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicLineChart/index.tsx","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/chartOptions.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/constants.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/index.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/seriesBuilder.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/types.ts","apps/golyzer/src/components/Charts/BasicPieChart/index.tsx","apps/golyzer/src/components/Charts/BasicRadarChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterAxisChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterChart/index.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.tsx","apps/golyzer/src/components/Charts/CalendarPieChart/index.tsx","apps/golyzer/src/components/Charts/ConditionalColorLineChart/index.tsx","apps/golyzer/src/components/Charts/DoughnutChart/index.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/actions.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/index.tsx","apps/golyzer/src/components/Charts/DynamicLine/DynamicLineChart.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.tsx","apps/golyzer/src/components/Charts/DynamicLine/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/styles.module.less","apps/golyzer/src/components/Charts/GaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/GradientLineChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/HighlightedBarChart.utils.test.ts","apps/golyzer/src/components/Charts/HighlightedBarChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.test.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalStackedBarChart/index.tsx","apps/golyzer/src/components/Charts/LineRaceChart/LineRaceChart.test.tsx","apps/golyzer/src/components/Charts/LineRaceChart/actions.tsx","apps/golyzer/src/components/Charts/LineRaceChart/index.tsx","apps/golyzer/src/components/Charts/MixedChart/index.tsx","apps/golyzer/src/components/Charts/NightingaleChart/index.tsx","apps/golyzer/src/components/Charts/PolarStackBarChart/index.tsx","apps/golyzer/src/components/Charts/RotatedLabelBarChart/index.tsx","apps/golyzer/src/components/Charts/ScatterPuchCardChart/index.tsx","apps/golyzer/src/components/Charts/SmoothLineChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/utils.test.ts","apps/golyzer/src/components/Charts/SortBarChart/utils.ts","apps/golyzer/src/components/Charts/StackedAreaChart/index.tsx","apps/golyzer/src/components/Charts/StackedBarChart/index.tsx","apps/golyzer/src/components/Charts/StackedLineChart/index.tsx","apps/golyzer/src/components/Charts/StageGaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/VariationMixedChart/helpers/util/optionsVariationMixed.ts","apps/golyzer/src/components/Charts/VariationMixedChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/interaction.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.test.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.ts","apps/golyzer/src/components/Charts/helpers/partialHighlightTooltip.tsx","apps/golyzer/src/components/Charts/index.tsx","apps/golyzer/src/components/Confirm/confirmLeave.test.tsx","apps/golyzer/src/components/Confirm/index.tsx","apps/golyzer/src/components/Confirm/styles.module.less","apps/golyzer/src/components/Container/index.tsx","apps/golyzer/src/components/Container/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/constants/options.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useEditorContextMenuItems.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useWorkspaceActions.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/build.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/target.ts","apps/golyzer/src/components/ContextMenuWrapper/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/styles.module.less","apps/golyzer/src/components/DrawerCharts/ChartItem.tsx","apps/golyzer/src/components/DrawerCharts/index.tsx","apps/golyzer/src/components/DrawerCharts/styles.module.less","apps/golyzer/src/components/DrawerCharts/tabs/appearance/Axis.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/BordersAndColors.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/General.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/styles.module.less","apps/golyzer/src/components/DropdownWithTooltip/index.tsx","apps/golyzer/src/components/EChartsWrapper/EChartsClient.tsx","apps/golyzer/src/components/EChartsWrapper/index.tsx","apps/golyzer/src/components/EditorPanelAppearance/index.tsx","apps/golyzer/src/components/Elements/Button/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/DatePickerStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/Label/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/SliderStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/utils/styled.ts","apps/golyzer/src/components/Elements/Date/helpers/utils/update.ts","apps/golyzer/src/components/Elements/Date/index.tsx","apps/golyzer/src/components/Elements/Date/styles.module.less","apps/golyzer/src/components/Elements/HierarchicalMatrix/index.tsx","apps/golyzer/src/components/Elements/Image/index.tsx","apps/golyzer/src/components/Elements/Image/styles.module.less","apps/golyzer/src/components/Elements/Input/index.tsx","apps/golyzer/src/components/Elements/Input/styles.module.less","apps/golyzer/src/components/Elements/Number/index.tsx","apps/golyzer/src/components/Elements/Number/styles.module.less","apps/golyzer/src/components/Elements/NumberWithTrend/helpers/tooltip.ts","apps/golyzer/src/components/Elements/NumberWithTrend/index.tsx","apps/golyzer/src/components/Elements/NumberWithTrend/styles.module.less","apps/golyzer/src/components/Elements/Select/helpers/components/SelectStyled/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/components/SelectVirtualized/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/utils/remove.ts","apps/golyzer/src/components/Elements/Select/index.tsx","apps/golyzer/src/components/Elements/Select/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/ButtonDrillDown/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ChevronTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ConditionalTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ProgressTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/IconInfo/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/StyledGridWrapper/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/hooks/useInteractionLocationDispatcher.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionCell.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionPointer.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionVisualState.ts","apps/golyzer/src/components/Elements/Spreadsheets/constants/interactionClasses.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.test.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/clickClassification.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/columnSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/constants.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/drilldownExecution.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/rowSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/useDrilldownFocusHandler.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/useDataSourceHandler.tsx","apps/golyzer/src/components/Elements/Spreadsheets/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/utils/chevron.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/dateFormat.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/empty.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/focus.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/location.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/base-styles.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/css-generators.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/formatters.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/grid-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/header-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/label-modifiers.ts","apps/golyzer/src/components/Elements/Table/components/AutoSizedGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/styles.module.less","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/index.tsx","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/styles.module.less","apps/golyzer/src/components/Elements/Table/components/GridContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/GridContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/index.tsx","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/styles.module.less","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/StyledTableWrapper/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/styles.module.less","apps/golyzer/src/components/Elements/Table/enums/aggregators.ts","apps/golyzer/src/components/Elements/Table/index.tsx","apps/golyzer/src/components/Elements/Table/styles.module.less","apps/golyzer/src/components/Elements/Table/utils/aggregators.ts","apps/golyzer/src/components/Elements/Table/utils/appearance.ts","apps/golyzer/src/components/Elements/Table/utils/format.ts","apps/golyzer/src/components/Elements/Table/utils/sort.ts","apps/golyzer/src/components/Elements/index.tsx","apps/golyzer/src/components/Empty/index.tsx","apps/golyzer/src/components/Empty/styles.module.less","apps/golyzer/src/components/ErrorBoundary/AppErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/DatasetErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/FormErrorBoundary.tsx","apps/golyzer/src/components/EyeDropperButton/index.tsx","apps/golyzer/src/components/EyeDropperButton/styles.module.less","apps/golyzer/src/components/FilterItem/helpers/components/FilterInputRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FilterValueRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FormFilters/index.tsx","apps/golyzer/src/components/FilterItem/index.tsx","apps/golyzer/src/components/FilterItem/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/FieldsInElement/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterValueField/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/ConfirmDeletePop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/FormResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/constants/icons.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/constants/form.ts","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/helpers/components/ConfirmResetPop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/context/FilterWrapperContext.tsx","apps/golyzer/src/components/FilterWrapper/helpers/utils/filters.ts","apps/golyzer/src/components/FilterWrapper/helpers/utils/find.ts","apps/golyzer/src/components/FilterWrapper/index.tsx","apps/golyzer/src/components/FocusModeModal/index.tsx","apps/golyzer/src/components/FocusModeModal/styles.module.less","apps/golyzer/src/components/FormulaViewModal/index.tsx","apps/golyzer/src/components/FullscreenTooltip/index.tsx","apps/golyzer/src/components/ImagMask/index.tsx","apps/golyzer/src/components/IndicatorsBuilderDrawer/index.tsx","apps/golyzer/src/components/Input/index.tsx","apps/golyzer/src/components/Input/styles.module.less","apps/golyzer/src/components/InteractionModeBanner/index.tsx","apps/golyzer/src/components/InteractionModeBanner/styles.module.less","apps/golyzer/src/components/InteractionThumbnail/index.tsx","apps/golyzer/src/components/InteractionThumbnail/styles.module.less","apps/golyzer/src/components/KeyboardHandler/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/index.tsx","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/ClampedNumberInput/index.tsx","apps/golyzer/src/components/LayoutController/helpers/utils/calculateMaxValues.ts","apps/golyzer/src/components/LayoutFaker/index.tsx","apps/golyzer/src/components/ListPanels/helpers/components/ListEmpty/index.tsx","apps/golyzer/src/components/ListPanels/helpers/utils/columns.tsx","apps/golyzer/src/components/ListPanels/index.tsx","apps/golyzer/src/components/ListPanels/styles.module.less","apps/golyzer/src/components/Loading/index.tsx","apps/golyzer/src/components/MicroFrontendRouter/index.tsx","apps/golyzer/src/components/MultiSelect/index.tsx","apps/golyzer/src/components/MultiSelect/styles.module.less","apps/golyzer/src/components/Panel/Header/index.tsx","apps/golyzer/src/components/Panel/Header/styles.module.less","apps/golyzer/src/components/Panel/PanelStyled/index.tsx","apps/golyzer/src/components/Panel/SubHeader/index.tsx","apps/golyzer/src/components/Panel/SubHeader/styles.module.less","apps/golyzer/src/components/PanelContainer/PanelInteractionBridge.tsx","apps/golyzer/src/components/PanelContainer/index.tsx","apps/golyzer/src/components/PanelContainer/styles.module.less","apps/golyzer/src/components/PanelScroll/index.tsx","apps/golyzer/src/components/PanelScroll/styles.module.less","apps/golyzer/src/components/RelationConfigPanel/index.tsx","apps/golyzer/src/components/RelationConfigPanel/styles.module.less","apps/golyzer/src/components/RelationModeButtons/index.tsx","apps/golyzer/src/components/RelationModeButtons/styles.module.less","apps/golyzer/src/components/Search/index.tsx","apps/golyzer/src/components/Search/styles.module.less","apps/golyzer/src/components/Select/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementClick.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementDrag.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementRender.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementResize.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementSelect.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/dom.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/groups.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/selection.ts","apps/golyzer/src/components/SelectoAreaPanel/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/styles.module.less","apps/golyzer/src/components/TimedAlert/index.tsx","apps/golyzer/src/components/TimedAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/DataSetWrapper/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/DraggableTabNode/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabBar/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabEditable/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/renderTab/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScroll.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScrollMemory.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useTabAppearance.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/utils/background.ts","apps/golyzer/src/components/WrapperPanel/Panels/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/index.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/positions.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/size.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/spacing.ts","apps/golyzer/src/components/WrapperPanel/Visions/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/AlternateColor.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Axis.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Background.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Border.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnsLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataFormat.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataRange.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PanelStyled/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PieProperties.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DatePicker.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Divider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Gauge.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Graph.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/GridLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderRowsOrColumns.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Image.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Interaction.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Legend.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/MatrixLines.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Number.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/RowHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Select.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Shadow.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Slider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Spacing.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Text.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Tips.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/TotalsSubtotals.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Checkbox/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/ColorPickerField/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InputNumber/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/PanelHeaderInternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Radio/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Select/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/types.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/chart.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/panel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormButton.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormManyData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormOneData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/utils/axisLabel.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormConfigAdvanced.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDate.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDateFilter.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormFilters.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormImage.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormInput.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormItem.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormSort.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/styles.module.less","apps/golyzer/src/components/WrapperPanel/index.tsx","apps/golyzer/src/components/WrapperPanel/styles.module.less","apps/golyzer/src/constants/appearance.ts","apps/golyzer/src/constants/chart.ts","apps/golyzer/src/constants/columnDataTypes.ts","apps/golyzer/src/constants/date.ts","apps/golyzer/src/constants/elements.ts","apps/golyzer/src/constants/env.ts","apps/golyzer/src/constants/interactionModeRegistry.ts","apps/golyzer/src/constants/moveable.ts","apps/golyzer/src/constants/operators.ts","apps/golyzer/src/constants/options.ts","apps/golyzer/src/constants/size.ts","apps/golyzer/src/constants/tabs.ts","apps/golyzer/src/context/ActiveStateContext.tsx","apps/golyzer/src/context/CsvContext.tsx","apps/golyzer/src/context/DrilldownContext.tsx","apps/golyzer/src/context/EditorContext/helpers/utils/groups.ts","apps/golyzer/src/context/EditorContext/index.tsx","apps/golyzer/src/context/FilterResultsContext.tsx","apps/golyzer/src/context/FullScreenContext.tsx","apps/golyzer/src/context/HistoryContext/hooks/useUpdateAxisLabels.tsx","apps/golyzer/src/context/HistoryContext/index.tsx","apps/golyzer/src/context/HistoryContext/utils/elements.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.spec.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.ts","apps/golyzer/src/context/HistoryContext/utils/tabs.ts","apps/golyzer/src/context/HoverScrollContext/index.tsx","apps/golyzer/src/context/HoverScrollContext/styles.module.less","apps/golyzer/src/context/InteractionModeContext/ChartOperationsContext.tsx","apps/golyzer/src/context/InteractionModeContext/ChartOperationsFactory.ts","apps/golyzer/src/context/InteractionModeContext/ChartOperationsRegistry.ts","apps/golyzer/src/context/InteractionModeContext/InteractionOrchestratorContext.tsx","apps/golyzer/src/context/InteractionModeContext/InteractionStateStore.ts","apps/golyzer/src/context/InteractionModeContext/constants/requestMetaKeys.ts","apps/golyzer/src/context/InteractionModeContext/index.tsx","apps/golyzer/src/context/InteractionModeContext/operations/AbstractBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartPayloadBuilder.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarSeriesLayoutOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ChartOperationsInterface.ts","apps/golyzer/src/context/InteractionModeContext/operations/DrilldownBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/EChartsInteractionDriver.ts","apps/golyzer/src/context/InteractionModeContext/operations/GaugeElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HorizontalBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineRaceChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/MixedChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/NumberElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/PieChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/RadarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/BaseChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/index.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/types.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleLabelResolver.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubblePointUtils.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleVisualStateManager.ts","apps/golyzer/src/context/InteractionModeContext/operations/generateClickedData.consumers.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesVisualState.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BaseScatterOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BubbleScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.constants.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.types.ts","apps/golyzer/src/context/MatrixDrilldownContext.tsx","apps/golyzer/src/context/MinimizedContext.tsx","apps/golyzer/src/context/PanelContext/copyPaste.test.tsx","apps/golyzer/src/context/PanelContext/index.test.tsx","apps/golyzer/src/context/PanelContext/index.tsx","apps/golyzer/src/context/PanelContext/types/sub-contexts.ts","apps/golyzer/src/context/PanelContext/utils/generalFilters.ts","apps/golyzer/src/context/PanelContext/utils/interactionMode.ts","apps/golyzer/src/context/PanelContext/utils/stateComparison.ts","apps/golyzer/src/context/PanelListContext.tsx","apps/golyzer/src/context/RefreshContext.tsx","apps/golyzer/src/context/SpreadsheetsContext.tsx","apps/golyzer/src/context/UserContext.tsx","apps/golyzer/src/context/ViewsStateContext.tsx","apps/golyzer/src/enums/scope.ts","apps/golyzer/src/hooks/InteractionMode/index.ts","apps/golyzer/src/hooks/InteractionMode/useAutoApplyMasterFilter.ts","apps/golyzer/src/hooks/InteractionMode/useBasicBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicLineChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicPieChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicRadarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBubbleChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartReadyState.ts","apps/golyzer/src/hooks/InteractionMode/useDimensionFilters.ts","apps/golyzer/src/hooks/InteractionMode/useDrilldownBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyManager.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyStore.ts","apps/golyzer/src/hooks/InteractionMode/useElementAutoFilter.ts","apps/golyzer/src/hooks/InteractionMode/useGaugeInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useHorizontalBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionAbortSignal.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMasterSelection.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMode.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeConfigStore.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeListener.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeThumbnail.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeTransition.ts","apps/golyzer/src/hooks/InteractionMode/useNumbersInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useScatterChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSortBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSpreadsheetsInteractionHandlers.ts","apps/golyzer/src/hooks/useChartData.ts","apps/golyzer/src/hooks/useChartDataLoader.tsx","apps/golyzer/src/hooks/useChartDataMap.tsx","apps/golyzer/src/hooks/useChartFinishListener.ts","apps/golyzer/src/hooks/useChartInteraction.tsx","apps/golyzer/src/hooks/useChartMostUsed.tsx","apps/golyzer/src/hooks/useChartQueryData.tsx","apps/golyzer/src/hooks/useClipboardChartListener.tsx","apps/golyzer/src/hooks/useCopyPaste.tsx","apps/golyzer/src/hooks/useDebounce.tsx","apps/golyzer/src/hooks/useDeleteOnKeyDown.tsx","apps/golyzer/src/hooks/useDrilldown.tsx","apps/golyzer/src/hooks/useElementImage.tsx","apps/golyzer/src/hooks/useExportData.tsx","apps/golyzer/src/hooks/useFilterElementsOptions.tsx","apps/golyzer/src/hooks/useFilterResults.tsx","apps/golyzer/src/hooks/useFocusModal.tsx","apps/golyzer/src/hooks/useHandleComponentScroll.tsx","apps/golyzer/src/hooks/useHostAwareNavigate.ts","apps/golyzer/src/hooks/useIMESafeDebounce.tsx","apps/golyzer/src/hooks/useIndexedDBWithExpiration.tsx","apps/golyzer/src/hooks/useIndicatorsBuilderVisibleStore.tsx","apps/golyzer/src/hooks/useLeavePage.tsx","apps/golyzer/src/hooks/useLogout.tsx","apps/golyzer/src/hooks/useMicroFrontendStyles.ts","apps/golyzer/src/hooks/usePanelId.ts","apps/golyzer/src/hooks/usePanelUtilities.tsx","apps/golyzer/src/hooks/usePathname.tsx","apps/golyzer/src/hooks/usePerformanceTracking.tsx","apps/golyzer/src/hooks/usePrevious.tsx","apps/golyzer/src/hooks/useSafeAsyncState.tsx","apps/golyzer/src/hooks/useSpanAttributes.tsx","apps/golyzer/src/hooks/useTreeFilter.ts","apps/golyzer/src/hooks/useWebWorker.tsx","apps/golyzer/src/hooks/useWindowSize.tsx","apps/golyzer/src/interfaces/iMapper.ts","apps/golyzer/src/main.tsx","apps/golyzer/src/mappers/chart/chart.mapper.ts","apps/golyzer/src/mappers/chart/index.ts","apps/golyzer/src/mappers/collaborator/collaborator.mapper.ts","apps/golyzer/src/mappers/collaborator/index.ts","apps/golyzer/src/mappers/panel/index.ts","apps/golyzer/src/mappers/panel/panel.mapper.ts","apps/golyzer/src/mappers/tab/index.ts","apps/golyzer/src/mappers/tab/tab.mapper.ts","apps/golyzer/src/mocks/MockInitializer.tsx","apps/golyzer/src/mocks/adapter.ts","apps/golyzer/src/mocks/factories/chart.ts","apps/golyzer/src/mocks/factories/chartData.spec.ts","apps/golyzer/src/mocks/factories/chartData.ts","apps/golyzer/src/mocks/factories/dataset.ts","apps/golyzer/src/mocks/factories/orgStructure.ts","apps/golyzer/src/mocks/factories/panel.ts","apps/golyzer/src/mocks/factories/user.ts","apps/golyzer/src/mocks/handlers/auth.ts","apps/golyzer/src/mocks/handlers/catchAll.ts","apps/golyzer/src/mocks/handlers/charts.ts","apps/golyzer/src/mocks/handlers/datasets.ts","apps/golyzer/src/mocks/handlers/goardian.ts","apps/golyzer/src/mocks/handlers/orgStructure.ts","apps/golyzer/src/mocks/handlers/panels.ts","apps/golyzer/src/mocks/handlers/sharing.ts","apps/golyzer/src/mocks/handlers/user.ts","apps/golyzer/src/mocks/index.ts","apps/golyzer/src/mocks/store/panelStore.ts","apps/golyzer/src/pages/Information/index.tsx","apps/golyzer/src/pages/ListPanels/index.tsx","apps/golyzer/src/pages/Login/index.tsx","apps/golyzer/src/pages/Logout/index.tsx","apps/golyzer/src/pages/PanelAdd/index.tsx","apps/golyzer/src/pages/PanelEdit/index.tsx","apps/golyzer/src/pages/PanelPresentation/index.tsx","apps/golyzer/src/patches/rcTableDevWarningPatch.ts","apps/golyzer/src/router.tsx","apps/golyzer/src/services/api.ts","apps/golyzer/src/services/auth.ts","apps/golyzer/src/services/chartQuery/cacheManager.ts","apps/golyzer/src/services/chartQuery/queryKeys.ts","apps/golyzer/src/services/charts/config.ts","apps/golyzer/src/services/charts/index.ts","apps/golyzer/src/services/charts/list.ts","apps/golyzer/src/services/charts/save.ts","apps/golyzer/src/services/datasets/datasets.ts","apps/golyzer/src/services/errors/AuthTokenError.ts","apps/golyzer/src/services/organizationalStructure.ts","apps/golyzer/src/services/panel/delete.ts","apps/golyzer/src/services/panel/getPanel.ts","apps/golyzer/src/services/panel/interfaces/uploadPanelImageRequest.ts","apps/golyzer/src/services/panel/list.ts","apps/golyzer/src/services/panel/save.ts","apps/golyzer/src/services/panel/update.ts","apps/golyzer/src/services/panel/uploadPanelImage.ts","apps/golyzer/src/services/storage.ts","apps/golyzer/src/services/user/getUserData.ts","apps/golyzer/src/services/workers/csv.ts","apps/golyzer/src/services/workers/pivot.ts","apps/golyzer/src/services/workers/resultsFilter.ts","apps/golyzer/src/services/workers/spreadsheet.spec.ts","apps/golyzer/src/services/workers/spreadsheet.ts","apps/golyzer/src/shims/goapice-plugin.ts","apps/golyzer/src/shims/goapice.ts","apps/golyzer/src/shims/packages/common.tsx","apps/golyzer/src/shims/packages/empty.css","apps/golyzer/src/shims/packages/react-datasets.module.less","apps/golyzer/src/shims/packages/react-datasets.tsx","apps/golyzer/src/shims/packages/react-goardian-guard.tsx","apps/golyzer/src/shims/packages/react-guapo-operators.ts","apps/golyzer/src/shims/packages/react-guapo.tsx","apps/golyzer/src/shims/packages/react-sharing.tsx","apps/golyzer/src/styles/fonts.less","apps/golyzer/src/styles/global.less","apps/golyzer/src/styles/globalStyle.ts","apps/golyzer/src/styles/overrideAnt.css","apps/golyzer/src/styles/theme/charts/default.ts","apps/golyzer/src/styles/theme/charts/gray.ts","apps/golyzer/src/styles/theme/dark.less","apps/golyzer/src/styles/theme/light.less","apps/golyzer/src/styles/tokens.ts","apps/golyzer/src/styles/variables.less","apps/golyzer/src/test/setup.ts","apps/golyzer/src/tests/mocks/request/requestToGenerateMatrixLines.ts","apps/golyzer/src/types/form.ts","apps/golyzer/src/types/interactionMode/chartInteraction.ts","apps/golyzer/src/types/interactionMode/clickedDataTypes.ts","apps/golyzer/src/types/interactionMode/interactionConfig.ts","apps/golyzer/src/types/interactionMode/interactionEvents.ts","apps/golyzer/src/types/interactionMode/interactionState.ts","apps/golyzer/src/utils/array.ts","apps/golyzer/src/utils/charts/appearance.ts","apps/golyzer/src/utils/charts/applyAppearanceConfig.spec.ts","apps/golyzer/src/utils/charts/axis.ts","apps/golyzer/src/utils/charts/dataset.ts","apps/golyzer/src/utils/charts/defaultAggregation.test.ts","apps/golyzer/src/utils/charts/enum.ts","apps/golyzer/src/utils/charts/fieldIdentity.test.ts","apps/golyzer/src/utils/charts/fieldIdentity.ts","apps/golyzer/src/utils/charts/filter.ts","apps/golyzer/src/utils/charts/index.ts","apps/golyzer/src/utils/charts/lineChartOptions.test.ts","apps/golyzer/src/utils/charts/lineChartOptions.ts","apps/golyzer/src/utils/charts/modules/aggregation.ts","apps/golyzer/src/utils/charts/modules/appearance.ts","apps/golyzer/src/utils/charts/modules/data.ts","apps/golyzer/src/utils/charts/modules/index.ts","apps/golyzer/src/utils/charts/modules/position.ts","apps/golyzer/src/utils/charts/modules/split-map.ts","apps/golyzer/src/utils/charts/modules/tooltip.ts","apps/golyzer/src/utils/charts/modules/types.ts","apps/golyzer/src/utils/charts/modules/validation.ts","apps/golyzer/src/utils/charts/number.ts","apps/golyzer/src/utils/charts/partialHighlight.spec.ts","apps/golyzer/src/utils/charts/partialHighlight.ts","apps/golyzer/src/utils/charts/partialHighlightOperations.ts","apps/golyzer/src/utils/charts/position.ts","apps/golyzer/src/utils/charts/remove.ts","apps/golyzer/src/utils/charts/reorderElements.spec.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.test.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.ts","apps/golyzer/src/utils/charts/sizes.ts","apps/golyzer/src/utils/charts/transformProps.ts","apps/golyzer/src/utils/collaborator/enum.ts","apps/golyzer/src/utils/color.ts","apps/golyzer/src/utils/converting/size.ts","apps/golyzer/src/utils/corsWorker.ts","apps/golyzer/src/utils/date.ts","apps/golyzer/src/utils/date/range.ts","apps/golyzer/src/utils/debugLog.ts","apps/golyzer/src/utils/deepCopy.ts","apps/golyzer/src/utils/delay.ts","apps/golyzer/src/utils/echarts.ts","apps/golyzer/src/utils/errorHandling.test.ts","apps/golyzer/src/utils/errorHandling.ts","apps/golyzer/src/utils/feedback/confirm.tsx","apps/golyzer/src/utils/feedback/error.tsx","apps/golyzer/src/utils/feedback/message.ts","apps/golyzer/src/utils/feedback/saving.tsx","apps/golyzer/src/utils/feedback/tooltip.tsx","apps/golyzer/src/utils/formatting/date.ts","apps/golyzer/src/utils/formatting/responseData.ts","apps/golyzer/src/utils/formatting/text.ts","apps/golyzer/src/utils/functions.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.test.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.ts","apps/golyzer/src/utils/interactionMode/constants.ts","apps/golyzer/src/utils/interactionMode/interactionElements.ts","apps/golyzer/src/utils/interactionMode/interactionEvents.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.test.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.ts","apps/golyzer/src/utils/placeholderSource.ts","apps/golyzer/src/utils/primaryErrorCandidate.ts","apps/golyzer/src/utils/responseData/filter.ts","apps/golyzer/src/utils/storybookHideProps/index.ts","apps/golyzer/src/utils/storybookToggleableProps/index.ts","apps/golyzer/src/utils/styled/index.ts","apps/golyzer/src/utils/system.ts","apps/golyzer/src/utils/typescript/isObject.ts","apps/golyzer/src/utils/typescript/sql.ts","apps/golyzer/src/utils/typescript/text.ts","apps/golyzer/src/utils/typescript/typeGuards.ts","apps/golyzer/src/utils/unicode/normalize.ts","apps/golyzer/src/utils/url.ts","apps/golyzer/src/utils/user.ts","apps/golyzer/src/utils/uuid.ts","apps/golyzer/src/utils/validation/compare.spec.ts","apps/golyzer/src/utils/validation/compare.ts","apps/golyzer/src/utils/validation/compareDate.ts","apps/golyzer/src/utils/validation/user.ts","apps/golyzer/src/utils/validation/uuid.ts","apps/golyzer/tests/e2e/offline-drawer-charts.spec.ts","apps/golyzer/tests/e2e/offline-smoke.spec.ts","apps/golyzer/tsconfig.json","apps/golyzer/tsconfig.node.json","apps/golyzer/vite.config.ts","apps/golyzer/vitest.config.ts"],"docs":["docs/deploy/conventions.md","docs/migration/fase-1-workspace.md","docs/migration/fase-2-tooling.md","docs/migration/fase-2.5-compatibilidade.md","docs/migration/fase-3-boundaries.md","docs/migration/fase-4-cfi.md","docs/migration/fase-5-cfi-consumo.md","docs/migration/fase-6-ci.md","docs/migration/fase-7-consolidacao.md","docs/plans/internalizar-goapice-react-libs.md","docs/templates/code-review-report.md"],"packages":["packages/cfi-core/package.json","packages/cfi-core/src/components/Box/index.tsx","packages/cfi-core/src/components/Box/styles.module.less","packages/cfi-core/src/components/FormulaViewModal/FunctionIcon.tsx","packages/cfi-core/src/components/FormulaViewModal/index.tsx","packages/cfi-core/src/components/FormulaViewModal/styles.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/DatasetWrapper.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/index.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/styles.module.less","packages/cfi-core/src/components/PopoverContent.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/index.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DefaultFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DeviationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/FunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/SumIcon.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/VariationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/WeightedAvgFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/types.ts","packages/cfi-core/src/components/Workspace/components/FilterModal/index.tsx","packages/cfi-core/src/components/Workspace/components/FilterModal/styles.module.less","packages/cfi-core/src/components/Workspace/index.tsx","packages/cfi-core/src/components/Workspace/styles.module.less","packages/cfi-core/src/components/index.ts","packages/cfi-core/src/constants/colors.ts","packages/cfi-core/src/constants/consolidatedAccountingDatasetName.ts","packages/cfi-core/src/constants/date.ts","packages/cfi-core/src/constants/editableNodeTypes.ts","packages/cfi-core/src/constants/filter.ts","packages/cfi-core/src/constants/functionCaptions.ts","packages/cfi-core/src/constants/index.ts","packages/cfi-core/src/constants/indicatorTypes.ts","packages/cfi-core/src/constants/indicatorsDatasetName.ts","packages/cfi-core/src/constants/slateInitialNodes.ts","packages/cfi-core/src/constants/specialNodeTypes.ts","packages/cfi-core/src/context/CfiConfigContext.tsx","packages/cfi-core/src/context/SlateContext.tsx","packages/cfi-core/src/context/generalFiltersContext.tsx","packages/cfi-core/src/context/index.ts","packages/cfi-core/src/contracts/index.ts","packages/cfi-core/src/hooks/index.ts","packages/cfi-core/src/hooks/useDatasetData.tsx","packages/cfi-core/src/hooks/useOpenedFunctionPopoverStore.ts","packages/cfi-core/src/hooks/useSyncVariable.tsx","packages/cfi-core/src/hooks/useTreeFilter.tsx","packages/cfi-core/src/index.ts","packages/cfi-core/src/mappers/deviationFunction.mapper.ts","packages/cfi-core/src/mappers/generalFilter.mapper.ts","packages/cfi-core/src/mappers/index.ts","packages/cfi-core/src/mappers/slate.mapper.ts","packages/cfi-core/src/mappers/variationFunction.mapper.ts","packages/cfi-core/src/mappers/weightedAvgFunction.mapper.ts","packages/cfi-core/src/services/api.ts","packages/cfi-core/src/services/dataset.ts","packages/cfi-core/src/services/index.ts","packages/cfi-core/src/services/indicator.ts","packages/cfi-core/src/styles/variables.less","packages/cfi-core/src/types/dataset.ts","packages/cfi-core/src/types/filter.ts","packages/cfi-core/src/types/index.ts","packages/cfi-core/src/types/indicator.ts","packages/cfi-core/src/types/slate.ts","packages/cfi-core/src/utils/findOpenParentheses.ts","packages/cfi-core/src/utils/index.ts","packages/cfi-core/src/utils/message.ts","packages/cfi-core/src/utils/selection.ts","packages/cfi-core/src/utils/uuid.ts","packages/cfi-core/src/validations/compare.ts","packages/cfi-core/src/validations/index.ts","packages/cfi-core/src/validations/syntaxValidation.ts","packages/cfi-core/tsconfig.json","packages/federation-contracts/package.json","packages/federation-contracts/src/index.ts","packages/federation-contracts/src/resolvers.ts","packages/federation-contracts/src/types.ts","packages/federation-contracts/tsconfig.json","packages/shell-shared/package.json","packages/shell-shared/src/hooks/index.ts","packages/shell-shared/src/hooks/useDebounce.ts","packages/shell-shared/src/hooks/usePrevious.ts","packages/shell-shared/src/hooks/useWindowSize.ts","packages/shell-shared/src/index.ts","packages/shell-shared/tsconfig.json","packages/tooling-config/eslint/README.md","packages/tooling-config/package.json","packages/tooling-config/prettier.config.mjs","packages/tooling-config/tsconfig/base.json"],"packages — cfi-core":["packages/cfi-core/package.json","packages/cfi-core/src/components/Box/index.tsx","packages/cfi-core/src/components/Box/styles.module.less","packages/cfi-core/src/components/FormulaViewModal/FunctionIcon.tsx","packages/cfi-core/src/components/FormulaViewModal/index.tsx","packages/cfi-core/src/components/FormulaViewModal/styles.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/DatasetWrapper.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/index.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/styles.module.less","packages/cfi-core/src/components/PopoverContent.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/index.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DefaultFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DeviationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/FunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/SumIcon.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/VariationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/WeightedAvgFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/types.ts","packages/cfi-core/src/components/Workspace/components/FilterModal/index.tsx","packages/cfi-core/src/components/Workspace/components/FilterModal/styles.module.less","packages/cfi-core/src/components/Workspace/index.tsx","packages/cfi-core/src/components/Workspace/styles.module.less","packages/cfi-core/src/components/index.ts","packages/cfi-core/src/constants/colors.ts","packages/cfi-core/src/constants/consolidatedAccountingDatasetName.ts","packages/cfi-core/src/constants/date.ts","packages/cfi-core/src/constants/editableNodeTypes.ts","packages/cfi-core/src/constants/filter.ts","packages/cfi-core/src/constants/functionCaptions.ts","packages/cfi-core/src/constants/index.ts","packages/cfi-core/src/constants/indicatorTypes.ts","packages/cfi-core/src/constants/indicatorsDatasetName.ts","packages/cfi-core/src/constants/slateInitialNodes.ts","packages/cfi-core/src/constants/specialNodeTypes.ts","packages/cfi-core/src/context/CfiConfigContext.tsx","packages/cfi-core/src/context/SlateContext.tsx","packages/cfi-core/src/context/generalFiltersContext.tsx","packages/cfi-core/src/context/index.ts","packages/cfi-core/src/contracts/index.ts","packages/cfi-core/src/hooks/index.ts","packages/cfi-core/src/hooks/useDatasetData.tsx","packages/cfi-core/src/hooks/useOpenedFunctionPopoverStore.ts","packages/cfi-core/src/hooks/useSyncVariable.tsx","packages/cfi-core/src/hooks/useTreeFilter.tsx","packages/cfi-core/src/index.ts","packages/cfi-core/src/mappers/deviationFunction.mapper.ts","packages/cfi-core/src/mappers/generalFilter.mapper.ts","packages/cfi-core/src/mappers/index.ts","packages/cfi-core/src/mappers/slate.mapper.ts","packages/cfi-core/src/mappers/variationFunction.mapper.ts","packages/cfi-core/src/mappers/weightedAvgFunction.mapper.ts","packages/cfi-core/src/services/api.ts","packages/cfi-core/src/services/dataset.ts","packages/cfi-core/src/services/index.ts","packages/cfi-core/src/services/indicator.ts","packages/cfi-core/src/styles/variables.less","packages/cfi-core/src/types/dataset.ts","packages/cfi-core/src/types/filter.ts","packages/cfi-core/src/types/index.ts","packages/cfi-core/src/types/indicator.ts","packages/cfi-core/src/types/slate.ts","packages/cfi-core/src/utils/findOpenParentheses.ts","packages/cfi-core/src/utils/index.ts","packages/cfi-core/src/utils/message.ts","packages/cfi-core/src/utils/selection.ts","packages/cfi-core/src/utils/uuid.ts","packages/cfi-core/src/validations/compare.ts","packages/cfi-core/src/validations/index.ts","packages/cfi-core/src/validations/syntaxValidation.ts","packages/cfi-core/tsconfig.json"],"packages — federation-contracts":["packages/federation-contracts/package.json","packages/federation-contracts/src/index.ts","packages/federation-contracts/src/resolvers.ts","packages/federation-contracts/src/types.ts","packages/federation-contracts/tsconfig.json"],"packages — shell-shared":["packages/shell-shared/package.json","packages/shell-shared/src/hooks/index.ts","packages/shell-shared/src/hooks/useDebounce.ts","packages/shell-shared/src/hooks/usePrevious.ts","packages/shell-shared/src/hooks/useWindowSize.ts","packages/shell-shared/src/index.ts","packages/shell-shared/tsconfig.json"],"packages — tooling-config":["packages/tooling-config/eslint/README.md","packages/tooling-config/package.json","packages/tooling-config/prettier.config.mjs","packages/tooling-config/tsconfig/base.json"],"patches":["patches/@goapice__react-datasets@2.7.22.patch","patches/@goapice__react-guapo@1.4.2.patch","patches/react-sortable-hoc@2.0.0.patch"],"scripts":["scripts/detect-impact.sh"]},"moduleTree":[{"name":"Root","slug":"root","files":["README.md","package.json","pnpm-workspace.yaml","tsconfig.base.json"]},{"name":"apps","slug":"apps","files":[],"children":[{"name":"apps — base","slug":"apps-base","files":["apps/base/README.md","apps/base/docs/MIGRATION_PLAN.md","apps/base/docs/audit/impacto-roteamento-navegacao.md","apps/base/docs/audit/mfe-antipatterns/auditoria-mfe-antipatterns.md","apps/base/docs/audit/mfe-antipatterns/claude-gitnexus-mfe-antipatterns-audit.md","apps/base/docs/audit/mfe-antipatterns/mapa-dominios.md","apps/base/docs/audit/mfe-antipatterns/proposals/001-no-ci-cd.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-common-ownership.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-cyclic-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/002-no-versioning.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-hub-like-dependency.md","apps/base/docs/audit/mfe-antipatterns/proposals/003-knot-mfe.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-golden-hammer.md","apps/base/docs/audit/mfe-antipatterns/proposals/004-mega-frontend.md","apps/base/docs/audit/mfe-antipatterns/proposta-ownership-dominios.md","apps/base/docs/breakingchanges/00-indice.md","apps/base/docs/breakingchanges/01-roteamento-navegacao.md","apps/base/docs/breakingchanges/02-module-federation-mf.md","apps/base/docs/breakingchanges/03-variaveis-ambiente.md","apps/base/docs/breakingchanges/04-build-tooling.md","apps/base/docs/breakingchanges/05-autenticacao-sessao.md","apps/base/docs/breakingchanges/06-react-18-upgrade.md","apps/base/docs/breakingchanges/07-head-meta-seo.md","apps/base/docs/breakingchanges/08-dependencias-removidas-atualizadas.md","apps/base/docs/breakingchanges/09-componentes-novos-alterados.md","apps/base/docs/breakingchanges/next-router-shim-impacto-remotes.md","apps/base/docs/changes/next-router-shim-module-federation.md","apps/base/docs/changes/share-scope-next-router.md","apps/base/docs/mapeamento-projetos-mfe.md","apps/base/docs/migration/decisao-versao-antd.md","apps/base/docs/migration/fase-0-scaffolding.md","apps/base/docs/migration/fase-1-env-e-utils.md","apps/base/docs/migration/fase-2-routing.md","apps/base/docs/migration/fase-3-module-federation.md","apps/base/docs/migration/fase-4-mfe-pages.md","apps/base/docs/migration/fase-5-css-e-temas.md","apps/base/docs/migration/fase-6-compatibilidade-react-18.md","apps/base/docs/migration/fase-7-build-e-deploy.md","apps/base/docs/migration/fase-8-limpeza.md","apps/base/docs/migration/monorepo/fase-0-decisoes.md","apps/base/docs/proposals/plano-monorepo-base-golyzer.md","apps/base/docs/proposals/proposta-cfi-core-interno-com-remote-legado.md","apps/base/docs/proposals/proposta-separacao-base-vite-golyzer-e-estrategia-cfi.md","apps/base/docs/todo/atualizacao-dependencias.md","apps/base/docs/todo/axios-e-tanstack-bloqueio-ui-components.md","apps/base/docs/todo/baselines/2026-03-21-typecheck.txt","apps/base/docs/todo/fase-0-preparacao-paralelismo.md","apps/base/docs/todo/plano-mitigacao-erros-warnings.md","apps/base/eslint.config.mjs","apps/base/firebase.json","apps/base/gulpfile.js","apps/base/index.html","apps/base/package.json","apps/base/paths.json","apps/base/src/App.tsx","apps/base/src/components/Backdrop/index.tsx","apps/base/src/components/Button/index.tsx","apps/base/src/components/Button/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/BackdropLoading/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ChartOfAccountsBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/CollapsibleBlock/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/EmptyState/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/ListBlocks/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/helpers/components/ListItem/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/ListMigrations/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/helpers/components/TabsManagement/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/helpers/components/Management/styles.module.less","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccounts/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccounts/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ChartOfAccountsTree/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/ExpandCollapseMenu/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/helpers/components/Overlay/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/PopoverFilter/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/components/SearchFilterWrapper/styles.module.less","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/filter.tsx","apps/base/src/components/ChartOfAccountsExplorer/helpers/utils/title.tsx","apps/base/src/components/ChartOfAccountsExplorer/index.tsx","apps/base/src/components/ChartOfAccountsExplorer/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Confirm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/SavingIndicator/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/EmptyState/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/ContentForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/DayButtonGroup/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/helpers/components/MigrationAction/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/MigrationForm/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/SelectChartOfAccount/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/helpers/components/TransferSection/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/index.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/components/Workspace/styles.module.less","apps/base/src/components/ChartOfAccountsMigration/helpers/context/MigrationsContext.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/confirm.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/goTo.tsx","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/menu.ts","apps/base/src/components/ChartOfAccountsMigration/helpers/utils/navigationHandlers.ts","apps/base/src/components/ChartOfAccountsMigration/index.tsx","apps/base/src/components/ChartOfAccountsMigration/styles.module.less","apps/base/src/components/CollaboratorHierarchyDrawer/index.tsx","apps/base/src/components/CollaboratorHierarchyDrawer/styles.module.less","apps/base/src/components/Container/helpers/components/Editable/index.tsx","apps/base/src/components/Container/helpers/components/Editable/styles.module.less","apps/base/src/components/Container/helpers/components/Favorite/index.tsx","apps/base/src/components/Container/helpers/components/Favorite/styles.module.less","apps/base/src/components/Container/index.tsx","apps/base/src/components/Container/styles.module.less","apps/base/src/components/Empty/index.tsx","apps/base/src/components/Empty/styles.module.less","apps/base/src/components/EmptyCard/index.tsx","apps/base/src/components/EmptyCard/styles.module.less","apps/base/src/components/EmptySearch/index.tsx","apps/base/src/components/EmptySearch/styles.module.less","apps/base/src/components/Favorites/Item/index.tsx","apps/base/src/components/Favorites/Item/styles.module.less","apps/base/src/components/Favorites/index.tsx","apps/base/src/components/Favorites/styles.module.less","apps/base/src/components/Footer/index.tsx","apps/base/src/components/Footer/styles.module.less","apps/base/src/components/GuestLayout/index.tsx","apps/base/src/components/GuestLayout/styles.module.less","apps/base/src/components/HashBangRedirect.tsx","apps/base/src/components/Header/index.tsx","apps/base/src/components/Header/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Copy/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/CostCenter/Replicate/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Units/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/Solutions/Users/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/AllUsersDrawer/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/helpers/TreeUnitWithRadio/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/CopyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/User/ReplicateDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/ChildDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Search/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/CostCenterTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/RegistrationTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/SolutionsTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/StructuralTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/Tab.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/index.tsx","apps/base/src/components/HierarchyDrawer/helpers/components/Tabs/UsersTab/styles.module.less","apps/base/src/components/HierarchyDrawer/helpers/utils/body.ts","apps/base/src/components/HierarchyDrawer/helpers/utils/modal.tsx","apps/base/src/components/HierarchyDrawer/index.tsx","apps/base/src/components/HierarchyDrawer/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/index.tsx","apps/base/src/components/HierarchyLevelDrawer/helpers/Input/styles.module.less","apps/base/src/components/HierarchyLevelDrawer/index.tsx","apps/base/src/components/HierarchyLevelDrawer/styles.module.less","apps/base/src/components/IndicatorBuilderDrawer/index.tsx","apps/base/src/components/IndicatorBuilderDrawer/styles.module.less","apps/base/src/components/Input/index.tsx","apps/base/src/components/Input/styles.module.less","apps/base/src/components/ItemMigration/index.tsx","apps/base/src/components/ItemMigration/styles.module.less","apps/base/src/components/Layout/index.tsx","apps/base/src/components/Loading/index.tsx","apps/base/src/components/MaskCustomInput/index.tsx","apps/base/src/components/Notifications/Empty/index.tsx","apps/base/src/components/Notifications/Empty/styles.module.less","apps/base/src/components/Notifications/List/helpers/Card/index.tsx","apps/base/src/components/Notifications/List/helpers/Card/styles.module.less","apps/base/src/components/Notifications/List/helpers/TabStyled/index.tsx","apps/base/src/components/Notifications/List/index.tsx","apps/base/src/components/Notifications/List/styles.module.less","apps/base/src/components/Notifications/index.tsx","apps/base/src/components/Notifications/styles.module.less","apps/base/src/components/OrganizationalStructure/ToolbarStructure/index.tsx","apps/base/src/components/OrganizationalStructure/ToolbarStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Edge/EdgeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/Description.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeCostCenter.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/NodeDefault.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/helpers/Node/styles.module.less","apps/base/src/components/OrganizationalStructure/WrapperStructure/index.tsx","apps/base/src/components/OrganizationalStructure/WrapperStructure/styles.module.less","apps/base/src/components/OrganizationalStructure/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/index.tsx","apps/base/src/components/PlansScreen/ModuleLine/styles.module.less","apps/base/src/components/PlansScreen/PlanCard/index.tsx","apps/base/src/components/PlansScreen/PlanCard/styles.module.less","apps/base/src/components/PlansScreen/index.tsx","apps/base/src/components/PlansScreen/styles.module.less","apps/base/src/components/PlansScreen/types.ts","apps/base/src/components/PrefetchScript.tsx","apps/base/src/components/ProfileWrappers/Appearance/index.tsx","apps/base/src/components/ProfileWrappers/Appearance/styles.module.less","apps/base/src/components/ProfileWrappers/ChangePassword/index.tsx","apps/base/src/components/ProfileWrappers/ChangePassword/styles.module.less","apps/base/src/components/ProfileWrappers/UserInformation/index.tsx","apps/base/src/components/ProfileWrappers/UserInformation/styles.module.less","apps/base/src/components/ProfileWrappers/index.tsx","apps/base/src/components/RequestDemoModal/index.tsx","apps/base/src/components/RequestDemoModal/styles.module.less","apps/base/src/components/Resizable/helpers/components/Alert/index.tsx","apps/base/src/components/Resizable/helpers/components/Alert/styles.module.less","apps/base/src/components/Resizable/helpers/components/HandleComponent/index.tsx","apps/base/src/components/Resizable/helpers/components/HandleComponent/styles.module.less","apps/base/src/components/Resizable/index.tsx","apps/base/src/components/Resizable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/AssignmentMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/CheckboxWithModal/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/index.tsx","apps/base/src/components/RoleManager/helpers/components/ChildSettingsComponent/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/PaperFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SearchField/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/SolutionFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/components/UnitFilter/styles.module.less","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/context/SearchContext.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/helpers/utils/search.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/index.tsx","apps/base/src/components/RoleManager/helpers/components/FiltersDrawer/styles.module.less","apps/base/src/components/RoleManager/helpers/components/HeaderControls/index.tsx","apps/base/src/components/RoleManager/helpers/components/HeaderControls/styles.module.less","apps/base/src/components/RoleManager/helpers/components/LinkUnit/index.tsx","apps/base/src/components/RoleManager/helpers/components/LinkUnit/styles.module.less","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/index.tsx","apps/base/src/components/RoleManager/helpers/components/RoleChangeStatusIcon/styles.module.less","apps/base/src/components/RoleManager/helpers/components/SettingsMode/index.tsx","apps/base/src/components/RoleManager/helpers/components/SettingsMode/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableDragable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableDragable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TableExpandable/index.tsx","apps/base/src/components/RoleManager/helpers/components/TableExpandable/styles.module.less","apps/base/src/components/RoleManager/helpers/components/TitleColumn/index.tsx","apps/base/src/components/RoleManager/helpers/components/TitleColumn/styles.module.less","apps/base/src/components/RoleManager/helpers/context/RoleManagerContext.tsx","apps/base/src/components/RoleManager/helpers/enums/index.ts","apps/base/src/components/RoleManager/helpers/utils/checkeds.ts","apps/base/src/components/RoleManager/helpers/utils/columns.tsx","apps/base/src/components/RoleManager/helpers/utils/modal.tsx","apps/base/src/components/RoleManager/helpers/utils/roles.ts","apps/base/src/components/RoleManager/helpers/utils/scroll.ts","apps/base/src/components/RoleManager/helpers/utils/tree.ts","apps/base/src/components/RoleManager/index.tsx","apps/base/src/components/RoleManager/styles.module.less","apps/base/src/components/Search/index.tsx","apps/base/src/components/Search/styles.module.less","apps/base/src/components/SignatureDrawer/Email/index.tsx","apps/base/src/components/SignatureDrawer/FirstPayment/index.tsx","apps/base/src/components/SignatureDrawer/Payment/index.tsx","apps/base/src/components/SignatureDrawer/Plan/index.tsx","apps/base/src/components/SignatureDrawer/index.tsx","apps/base/src/components/SignatureDrawer/styles.module.less","apps/base/src/components/ToastAlert/index.tsx","apps/base/src/components/ToastAlert/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/Drawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/Drawer/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/index.tsx","apps/base/src/components/UserDrawer/helpers/components/DrawerHeader/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/PermissionsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/ResetActions/index.tsx","apps/base/src/components/UserDrawer/helpers/components/SelectRole/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsList/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CollaboratorsSteps/styles.module.less","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/CopyDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/ReplicateDrawer/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/helpers/components/UnitTree/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/index.tsx","apps/base/src/components/UserDrawer/helpers/components/UnitsTab/styles.module.less","apps/base/src/components/UserDrawer/helpers/utils/menus.tsx","apps/base/src/components/UserDrawer/helpers/utils/modal.tsx","apps/base/src/components/UserDrawer/index.tsx","apps/base/src/components/UserDrawer/styles.module.less","apps/base/src/components/WelcomeScreen/index.tsx","apps/base/src/components/WelcomeScreen/styles.module.less","apps/base/src/components/WrapperAuth/index.tsx","apps/base/src/components/WrapperGuestForm/index.tsx","apps/base/src/components/WrapperGuestForm/styles.module.less","apps/base/src/constants/budget/index.ts","apps/base/src/constants/colors/index.ts","apps/base/src/constants/date/index.ts","apps/base/src/constants/image/index.ts","apps/base/src/constants/menu/index.tsx","apps/base/src/constants/roles.ts","apps/base/src/constants/urls.ts","apps/base/src/context/AuthContext.tsx","apps/base/src/context/CollapseContext.tsx","apps/base/src/context/FullScreenContext.tsx","apps/base/src/context/SocketContext.tsx","apps/base/src/context/TagContext.tsx","apps/base/src/context/ViewsStateContext.tsx","apps/base/src/dictionary/form/index.ts","apps/base/src/dictionary/index.ts","apps/base/src/dictionary/pagination/index.ts","apps/base/src/dictionary/table/index.ts","apps/base/src/guapo/Alert/Alert.stories.tsx","apps/base/src/guapo/Alert/Alert.tsx","apps/base/src/guapo/Alert/index.ts","apps/base/src/guapo/Avatar/Avatar.stories.tsx","apps/base/src/guapo/Avatar/Avatar.tsx","apps/base/src/guapo/Avatar/index.ts","apps/base/src/guapo/Badge/Badge.stories.tsx","apps/base/src/guapo/Badge/Badge.tsx","apps/base/src/guapo/Badge/index.ts","apps/base/src/guapo/BadgeSmall/index.tsx","apps/base/src/guapo/BadgeSmall/styles.module.less","apps/base/src/guapo/Breadcrumb/Breadcrumb.stories.tsx","apps/base/src/guapo/Breadcrumb/Breadcrumb.tsx","apps/base/src/guapo/Breadcrumb/index.ts","apps/base/src/guapo/Button/Button.stories.tsx","apps/base/src/guapo/Button/Button.tsx","apps/base/src/guapo/Button/index.ts","apps/base/src/guapo/Card/Card.stories.tsx","apps/base/src/guapo/Card/Card.tsx","apps/base/src/guapo/Card/index.tsx","apps/base/src/guapo/Checkbox/Checkbox.stories.tsx","apps/base/src/guapo/Checkbox/Checkbox.tsx","apps/base/src/guapo/Checkbox/index.ts","apps/base/src/guapo/Col/Col.stories.tsx","apps/base/src/guapo/Col/Col.tsx","apps/base/src/guapo/Col/index.tsx","apps/base/src/guapo/Collapse/Collapse.stories.tsx","apps/base/src/guapo/Collapse/Collapse.tsx","apps/base/src/guapo/Collapse/index.ts","apps/base/src/guapo/DatePicker/DatePicker.stories.tsx","apps/base/src/guapo/DatePicker/DatePicker.tsx","apps/base/src/guapo/DatePicker/index.ts","apps/base/src/guapo/Divider/Divider.stories.tsx","apps/base/src/guapo/Divider/Divider.tsx","apps/base/src/guapo/Divider/index.tsx","apps/base/src/guapo/Dropdown/Dropdown.stories.tsx","apps/base/src/guapo/Dropdown/Dropdown.tsx","apps/base/src/guapo/Dropdown/index.ts","apps/base/src/guapo/Empty/Empty.stories.tsx","apps/base/src/guapo/Empty/Empty.tsx","apps/base/src/guapo/Empty/index.ts","apps/base/src/guapo/Filter/Filter.d.tsx","apps/base/src/guapo/Filter/Filter.stories.tsx","apps/base/src/guapo/Filter/Filter.tsx","apps/base/src/guapo/Filter/index.tsx","apps/base/src/guapo/Filter/styles.module.css","apps/base/src/guapo/Form/Form.stories.tsx","apps/base/src/guapo/Form/Form.tsx","apps/base/src/guapo/Form/index.tsx","apps/base/src/guapo/Icon/Icon.stories.tsx","apps/base/src/guapo/Icon/Icon.tsx","apps/base/src/guapo/Icon/Icons/ArchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/ArchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/DotDragSVG.tsx","apps/base/src/guapo/Icon/Icons/DotMenuSVG.tsx","apps/base/src/guapo/Icon/Icons/OpenInNewSVG.tsx","apps/base/src/guapo/Icon/Icons/PixSVG.tsx","apps/base/src/guapo/Icon/Icons/RedoOutlineSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveFilledSVG.tsx","apps/base/src/guapo/Icon/Icons/UnarchiveOutlinedSVG.tsx","apps/base/src/guapo/Icon/Icons/UndoOutlineSVG.tsx","apps/base/src/guapo/Icon/index.tsx","apps/base/src/guapo/Input/Input.stories.tsx","apps/base/src/guapo/Input/Input.tsx","apps/base/src/guapo/Input/index.ts","apps/base/src/guapo/Input/styles.module.css","apps/base/src/guapo/Layout/Layout.stories.tsx","apps/base/src/guapo/Layout/Layout.tsx","apps/base/src/guapo/Layout/index.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.stories.tsx","apps/base/src/guapo/LayoutFenix/LayoutFenix.tsx","apps/base/src/guapo/LayoutFenix/index.tsx","apps/base/src/guapo/List/List.action.tsx","apps/base/src/guapo/List/List.d.tsx","apps/base/src/guapo/List/List.stories.tsx","apps/base/src/guapo/List/List.tsx","apps/base/src/guapo/List/List.type.tsx","apps/base/src/guapo/List/index.tsx","apps/base/src/guapo/List/styles.module.css","apps/base/src/guapo/Menu/MenuBackOffice.stories.tsx","apps/base/src/guapo/Menu/MenuBackOffice.tsx","apps/base/src/guapo/Menu/index.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.d.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.stories.tsx","apps/base/src/guapo/MenuFenix/MenuFenix.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/FavoriteList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Drawers/Settings/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/Solutions/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Drawers/SolutionsList/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/index.tsx","apps/base/src/guapo/MenuFenix/helpers/Dropdown/Profile/styles.module.css","apps/base/src/guapo/MenuFenix/helpers/Menu/index.tsx","apps/base/src/guapo/MenuFenix/index.tsx","apps/base/src/guapo/MenuFenix/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/FavoriteList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/index.tsx","apps/base/src/guapo/MenuGoapice/Drawers/LastAccessList/styles.module.css","apps/base/src/guapo/MenuGoapice/Drawers/SolutionsList/index.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.d.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.stories.tsx","apps/base/src/guapo/MenuGoapice/MenuGoapice.tsx","apps/base/src/guapo/MenuGoapice/index.ts","apps/base/src/guapo/MenuGoapice/styles.module.css","apps/base/src/guapo/MenuVertical/MenuVertical.d.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.stories.tsx","apps/base/src/guapo/MenuVertical/MenuVertical.tsx","apps/base/src/guapo/MenuVertical/index.ts","apps/base/src/guapo/Modal/Modal.stories.tsx","apps/base/src/guapo/Modal/Modal.tsx","apps/base/src/guapo/Modal/index.ts","apps/base/src/guapo/Overlay/Overlay.stories.tsx","apps/base/src/guapo/Overlay/index.tsx","apps/base/src/guapo/PageHeader/PageHeader.stories.tsx","apps/base/src/guapo/PageHeader/PageHeader.tsx","apps/base/src/guapo/PageHeader/index.tsx","apps/base/src/guapo/Pagination/Pagination.stories.tsx","apps/base/src/guapo/Pagination/Pagination.tsx","apps/base/src/guapo/Pagination/index.ts","apps/base/src/guapo/Progress/Progress.stories.tsx","apps/base/src/guapo/Progress/Progress.tsx","apps/base/src/guapo/Progress/index.ts","apps/base/src/guapo/Radio/Radio.stories.tsx","apps/base/src/guapo/Radio/Radio.tsx","apps/base/src/guapo/Radio/index.ts","apps/base/src/guapo/RangePicker/RangePicker.stories.tsx","apps/base/src/guapo/RangePicker/RangePicker.tsx","apps/base/src/guapo/RangePicker/index.ts","apps/base/src/guapo/Row/Row.stories.tsx","apps/base/src/guapo/Row/Row.tsx","apps/base/src/guapo/Row/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/ChangeCollaboratorDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/InfoDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/PrintDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/TimesTableDrawer.tsx","apps/base/src/guapo/Schenduler/components/Drawers/index.tsx","apps/base/src/guapo/Schenduler/components/Drawers/styles.module.css","apps/base/src/guapo/Schenduler/components/Icons/List.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/Appointment.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/CurrentTime.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/MouseMover.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/index.tsx","apps/base/src/guapo/Schenduler/components/Table/Helpers/styles.module.css","apps/base/src/guapo/Schenduler/components/Table/TBody.tsx","apps/base/src/guapo/Schenduler/components/Table/TFooter.tsx","apps/base/src/guapo/Schenduler/components/Table/THeader.tsx","apps/base/src/guapo/Schenduler/components/Table/index.tsx","apps/base/src/guapo/Schenduler/components/Table/styles.module.css","apps/base/src/guapo/Schenduler/components/Views/DayView.tsx","apps/base/src/guapo/Schenduler/components/Views/MonthView.tsx","apps/base/src/guapo/Schenduler/components/Views/View.tsx","apps/base/src/guapo/Schenduler/components/Views/WeekView.tsx","apps/base/src/guapo/Schenduler/components/Views/styles.module.css","apps/base/src/guapo/Schenduler/hooks/useInterval.tsx","apps/base/src/guapo/Schenduler/index.ts","apps/base/src/guapo/Schenduler/template/PrintScale/index.tsx","apps/base/src/guapo/Select/Select.stories.tsx","apps/base/src/guapo/Select/Select.tsx","apps/base/src/guapo/Select/index.ts","apps/base/src/guapo/Select/styles.module.css","apps/base/src/guapo/ShouldRender/ShouldRender.tsx","apps/base/src/guapo/ShouldRender/index.ts","apps/base/src/guapo/Skeleton/Skeleton.stories.tsx","apps/base/src/guapo/Skeleton/Skeleton.tsx","apps/base/src/guapo/Skeleton/index.ts","apps/base/src/guapo/Space/Space.stories.tsx","apps/base/src/guapo/Space/Space.tsx","apps/base/src/guapo/Space/index.tsx","apps/base/src/guapo/Statistic/Statistic.stories.tsx","apps/base/src/guapo/Statistic/Statistic.tsx","apps/base/src/guapo/Statistic/index.ts","apps/base/src/guapo/Steps/Steps.stories.tsx","apps/base/src/guapo/Steps/Steps.tsx","apps/base/src/guapo/Steps/index.ts","apps/base/src/guapo/Switch/Switch.stories.tsx","apps/base/src/guapo/Switch/Switch.tsx","apps/base/src/guapo/Switch/index.ts","apps/base/src/guapo/Table/Table.stories.tsx","apps/base/src/guapo/Table/Table.tsx","apps/base/src/guapo/Table/index.ts","apps/base/src/guapo/Table/styles.module.css","apps/base/src/guapo/Tabs/Tabs.stories.tsx","apps/base/src/guapo/Tabs/Tabs.tsx","apps/base/src/guapo/Tabs/index.ts","apps/base/src/guapo/Tag/Tag.stories.tsx","apps/base/src/guapo/Tag/Tag.tsx","apps/base/src/guapo/Tag/index.ts","apps/base/src/guapo/Tooltip/Tooltip.stories.tsx","apps/base/src/guapo/Tooltip/Tooltip.tsx","apps/base/src/guapo/Tooltip/index.tsx","apps/base/src/guapo/Tree/Tree.stories.tsx","apps/base/src/guapo/Tree/Tree.tsx","apps/base/src/guapo/Tree/index.ts","apps/base/src/guapo/TreeSelect/TreeSelect.stories.tsx","apps/base/src/guapo/TreeSelect/TreeSelect.tsx","apps/base/src/guapo/TreeSelect/index.ts","apps/base/src/guapo/Typography/Typography.d.tsx","apps/base/src/guapo/Typography/Typography.stories.tsx","apps/base/src/guapo/Typography/Typography.tsx","apps/base/src/guapo/Typography/components/BodyText.tsx","apps/base/src/guapo/Typography/components/Caption.tsx","apps/base/src/guapo/Typography/components/Heading.tsx","apps/base/src/guapo/Typography/components/SubTitle.tsx","apps/base/src/guapo/Typography/constants/fontSize.ts","apps/base/src/guapo/Typography/index.tsx","apps/base/src/guapo/Upload/Upload.stories.tsx","apps/base/src/guapo/Upload/Upload.tsx","apps/base/src/guapo/Upload/index.ts","apps/base/src/guapo/index.ts","apps/base/src/hooks/useChartOfAccounts.tsx","apps/base/src/hooks/useCollaboratorPosition.tsx","apps/base/src/hooks/useCostCenters.tsx","apps/base/src/hooks/useDebounce.tsx","apps/base/src/hooks/useDepartment.tsx","apps/base/src/hooks/useHistory.tsx","apps/base/src/hooks/useIsEditPage.tsx","apps/base/src/hooks/useLoadOnPermissionsUpdate.tsx","apps/base/src/hooks/useNotifications.tsx","apps/base/src/hooks/usePageVisibility.tsx","apps/base/src/hooks/usePermission.tsx","apps/base/src/hooks/usePrevious.tsx","apps/base/src/hooks/useSolutions.tsx","apps/base/src/hooks/useWindowSize.tsx","apps/base/src/interfaces/iMapper.ts","apps/base/src/lib/compat/navigate.ts","apps/base/src/lib/compat/router.ts","apps/base/src/lib/federation/MfeLoader.tsx","apps/base/src/lib/federation/loadRemote.ts","apps/base/src/lib/federation/remoteConfig.ts","apps/base/src/lib/federation/shims/next-router.ts","apps/base/src/lib/queryClient.ts","apps/base/src/main.tsx","apps/base/src/mappers/notifications/index.ts","apps/base/src/pages/budget/helpers/components/modal/footer/index.tsx","apps/base/src/pages/budget/helpers/components/modal/index.tsx","apps/base/src/pages/budget/helpers/components/table/empty.tsx","apps/base/src/pages/budget/helpers/components/table/index.tsx","apps/base/src/pages/budget/helpers/components/table/styles.module.less","apps/base/src/pages/budget/index.tsx","apps/base/src/pages/budget/styles.module.less","apps/base/src/pages/chart-of-accounts/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/[id]/index.tsx","apps/base/src/pages/chart-of-accounts/migrations/add/index.tsx","apps/base/src/pages/forgot/index.tsx","apps/base/src/pages/goal-sets/[id]/index.tsx","apps/base/src/pages/goal-sets/index.tsx","apps/base/src/pages/goask/answer-options-list/[id].tsx","apps/base/src/pages/goask/answer-options-list/add.tsx","apps/base/src/pages/goask/answer-options-list/index.tsx","apps/base/src/pages/goask/guests-lists/[id].tsx","apps/base/src/pages/goask/guests-lists/add.tsx","apps/base/src/pages/goask/guests-lists/index.tsx","apps/base/src/pages/goask/index.tsx","apps/base/src/pages/goask/questionnaires/[id].tsx","apps/base/src/pages/goask/questionnaires/add.tsx","apps/base/src/pages/goask/questionnaires/index.tsx","apps/base/src/pages/goask/reports/index.tsx","apps/base/src/pages/goask/surveys/[id].tsx","apps/base/src/pages/goask/surveys/add.tsx","apps/base/src/pages/goask/surveys/index.tsx","apps/base/src/pages/golyzer/[id]/index.tsx","apps/base/src/pages/golyzer/[id]/presentation.tsx","apps/base/src/pages/golyzer/add.tsx","apps/base/src/pages/golyzer/index.tsx","apps/base/src/pages/gonext/cfi/index.tsx","apps/base/src/pages/gonext/data-view/index.tsx","apps/base/src/pages/gonext/data-view/view/index.tsx","apps/base/src/pages/gonext/dre/[id]/index.tsx","apps/base/src/pages/gonext/dre/add/index.tsx","apps/base/src/pages/gonext/dre/index.tsx","apps/base/src/pages/gonext/index.tsx","apps/base/src/pages/gonext/ledger/[id]/index.tsx","apps/base/src/pages/gonext/ledger/add/index.tsx","apps/base/src/pages/gonext/ledger/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/[entryId]/index.tsx","apps/base/src/pages/gonext/managerial-entries/[id]/index.tsx","apps/base/src/pages/gonext/managerial-entries/index.tsx","apps/base/src/pages/gonext/managerial-entries/new/index.tsx","apps/base/src/pages/gonext/managerial-entries/view/[id].tsx","apps/base/src/pages/gonext/reconciliation/[id]/index.tsx","apps/base/src/pages/gonext/reconciliation/add/index.tsx","apps/base/src/pages/gonext/reconciliation/index.tsx","apps/base/src/pages/gonext/trial-balance/[id]/index.tsx","apps/base/src/pages/gonext/trial-balance/add/index.tsx","apps/base/src/pages/gonext/trial-balance/index.tsx","apps/base/src/pages/gotime/index.tsx","apps/base/src/pages/gotime/manage/[id].tsx","apps/base/src/pages/gotime/settings/index.tsx","apps/base/src/pages/gotrade/assets/index.tsx","apps/base/src/pages/gotrade/campaigns/add/index.tsx","apps/base/src/pages/gotrade/campaigns/index.tsx","apps/base/src/pages/gotrade/index.tsx","apps/base/src/pages/index.tsx","apps/base/src/pages/integrations/[id]/index.tsx","apps/base/src/pages/integrations/[id]/styles.module.less","apps/base/src/pages/integrations/index.tsx","apps/base/src/pages/integrations/styles.module.less","apps/base/src/pages/login/index.tsx","apps/base/src/pages/login/styles.module.less","apps/base/src/pages/organizational/index.tsx","apps/base/src/pages/organizational/styles.module.less","apps/base/src/pages/profile/index.tsx","apps/base/src/pages/profile/styles.module.less","apps/base/src/pages/recover/index.tsx","apps/base/src/pages/recover/styles.module.less","apps/base/src/pages/roles/index.tsx","apps/base/src/pages/roles/styles.module.less","apps/base/src/pages/signature/index.tsx","apps/base/src/pages/signature/styles.module.less","apps/base/src/pages/styles.module.less","apps/base/src/pages/users/index.tsx","apps/base/src/pages/users/styles.module.less","apps/base/src/pages/welcome/index.tsx","apps/base/src/pages/welcome/styles.module.less","apps/base/src/routes.tsx","apps/base/src/services/api.ts","apps/base/src/services/auth.ts","apps/base/src/services/budget.ts","apps/base/src/services/chartOfAccounts.ts","apps/base/src/services/client.ts","apps/base/src/services/collaborator.ts","apps/base/src/services/collaboratorPosition.ts","apps/base/src/services/costCenters.ts","apps/base/src/services/data.ts","apps/base/src/services/department.ts","apps/base/src/services/errors/AuthTokenError.ts","apps/base/src/services/gotime.ts","apps/base/src/services/guardianApi.ts","apps/base/src/services/hello.ts","apps/base/src/services/hierarchy.ts","apps/base/src/services/io.ts","apps/base/src/services/notifications.ts","apps/base/src/services/plans.ts","apps/base/src/services/policie.ts","apps/base/src/services/registration.ts","apps/base/src/services/roles.ts","apps/base/src/services/signature.ts","apps/base/src/services/solutions.ts","apps/base/src/services/store/chartOfAccounts/index.ts","apps/base/src/services/store/costCenters/index.ts","apps/base/src/services/store/index.ts","apps/base/src/services/store/notifications/index.ts","apps/base/src/services/store/solutions/index.ts","apps/base/src/services/tag.ts","apps/base/src/services/units.ts","apps/base/src/services/user.ts","apps/base/src/state/data.ts","apps/base/src/state/dictionary.json","apps/base/src/store/index.tsx","apps/base/src/store/reducers/chartOfAccounts.ts","apps/base/src/store/reducers/costCenters.ts","apps/base/src/store/reducers/notifications.ts","apps/base/src/store/reducers/solutions.ts","apps/base/src/stories/Button.stories.tsx","apps/base/src/stories/Button.tsx","apps/base/src/stories/Header.stories.tsx","apps/base/src/stories/Header.tsx","apps/base/src/stories/Introduction.stories.mdx","apps/base/src/stories/Page.stories.tsx","apps/base/src/stories/Page.tsx","apps/base/src/stories/button.css","apps/base/src/stories/header.css","apps/base/src/stories/page.css","apps/base/src/styles/fonts.less","apps/base/src/styles/global.less","apps/base/src/styles/globalStyle.ts","apps/base/src/styles/overrideAnt.css","apps/base/src/styles/theme/dark.less","apps/base/src/styles/theme/light.less","apps/base/src/styles/tokens.ts","apps/base/src/styles/variables.less","apps/base/src/utils/alerts/confirm.tsx","apps/base/src/utils/alerts/error.tsx","apps/base/src/utils/alerts/index.ts","apps/base/src/utils/alerts/loading.tsx","apps/base/src/utils/alerts/success.tsx","apps/base/src/utils/csv/index.ts","apps/base/src/utils/date/index.ts","apps/base/src/utils/feedback/error.tsx","apps/base/src/utils/feedback/message.ts","apps/base/src/utils/feedback/tooltip.ts","apps/base/src/utils/flowchart/index.ts","apps/base/src/utils/formatters/cnpj.ts","apps/base/src/utils/formatters/csvToArray.ts","apps/base/src/utils/formatters/date.ts","apps/base/src/utils/formatters/money.ts","apps/base/src/utils/formatters/phone.ts","apps/base/src/utils/formatters/slug.ts","apps/base/src/utils/formatters/text.ts","apps/base/src/utils/formatters/url.ts","apps/base/src/utils/forms/getHeaders.ts","apps/base/src/utils/functions/color.ts","apps/base/src/utils/functions/deepClone.ts","apps/base/src/utils/functions/dom.ts","apps/base/src/utils/functions/equal.ts","apps/base/src/utils/functions/getDifference.ts","apps/base/src/utils/functions/immutability.ts","apps/base/src/utils/functions/index.ts","apps/base/src/utils/functions/regexp.ts","apps/base/src/utils/functions/text.ts","apps/base/src/utils/functions/tree.tsx","apps/base/src/utils/functions/uuid.ts","apps/base/src/utils/organizational/index.ts","apps/base/src/utils/permission/Restricted.tsx","apps/base/src/utils/roles/index.tsx","apps/base/src/utils/searchs/index.ts","apps/base/src/utils/session/index.ts","apps/base/src/utils/solutions/index.ts","apps/base/src/utils/storybookHideProps/index.ts","apps/base/src/utils/storybookToggleableProps/index.ts","apps/base/src/utils/template/index.ts","apps/base/src/utils/url/index.ts","apps/base/src/utils/validations/index.ts","apps/base/src/utils/validations/uuid.ts","apps/base/tsconfig.json","apps/base/vite.config.ts"]},{"name":"apps — cfi-next-remote","slug":"apps-cfi-next-remote","files":["apps/cfi-next-remote/README.md","apps/cfi-next-remote/package.json"]},{"name":"apps — golyzer","slug":"apps-golyzer","files":["apps/golyzer/docs/GITNEXUS_TUTORIAL.md","apps/golyzer/docs/MIGRATION_ANALYSIS.md","apps/golyzer/docs/MIGRATION_PLAN.md","apps/golyzer/docs/architecture/chart-adapter-proposal.md","apps/golyzer/docs/changes/antd-deep-imports-module-federation.md","apps/golyzer/docs/changes/cfi-import-dinamico-defensivo.md","apps/golyzer/docs/changes/micro-frontend-router-data-router.md","apps/golyzer/docs/changes/public-path-assets-mfe.md","apps/golyzer/docs/changes/svgr-prefix-ids-colisao-svg.md","apps/golyzer/docs/done/HOST_DEPENDENCY_MITIGATION_PLAN.md","apps/golyzer/docs/shadow-architecture/README.md","apps/golyzer/docs/shadow-architecture/chart-behavioral-model.md","apps/golyzer/docs/shadow-architecture/data-flow-optimization.md","apps/golyzer/docs/shadow-architecture/dependency-cycles.md","apps/golyzer/docs/shadow-architecture/navigation.md","apps/golyzer/docs/shadow-architecture/overview.md","apps/golyzer/docs/shadow-architecture/path-dependent-state.md","apps/golyzer/docs/shadow-architecture/team-plan.md","apps/golyzer/docs/shadow-architecture/tsconfig.typedoc.json","apps/golyzer/docs/shadow-architecture/typedoc-readme.md","apps/golyzer/docs/shadow-architecture/typedoc.json","apps/golyzer/docs/todo/dependency-upgrade-impact.md","apps/golyzer/docs/todo/hmr-invalidation.md","apps/golyzer/docs/todo/react-dom-warnings.md","apps/golyzer/docs/todo/unused-dependencies.md","apps/golyzer/index.html","apps/golyzer/package.json","apps/golyzer/playwright.config.ts","apps/golyzer/public/workers/csv.js","apps/golyzer/public/workers/pivot.js","apps/golyzer/public/workers/spreadsheet.js","apps/golyzer/src/App.tsx","apps/golyzer/src/adapters/chart/ChartAdapter.ts","apps/golyzer/src/adapters/chart/ChartAdapterFactory.ts","apps/golyzer/src/adapters/chart/EChartsAdapter.ts","apps/golyzer/src/adapters/chart/MockAdapter.ts","apps/golyzer/src/adapters/chart/index.ts","apps/golyzer/src/adapters/chart/types.ts","apps/golyzer/src/adapters/chart/useChart.ts","apps/golyzer/src/assets/icon/charts/index.ts","apps/golyzer/src/assets/img/avatar.json","apps/golyzer/src/components/AlphaPickerCustom/index.tsx","apps/golyzer/src/components/AvatarGroup/index.tsx","apps/golyzer/src/components/AvatarGroup/styles.module.less","apps/golyzer/src/components/Box/index.tsx","apps/golyzer/src/components/Box/styles.module.less","apps/golyzer/src/components/Button/index.tsx","apps/golyzer/src/components/Button/styles.module.less","apps/golyzer/src/components/CardChart/CardChart.test.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartActions/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/ChartContentInner/styles.module.less","apps/golyzer/src/components/CardChart/helpers/components/ChartWrapper/index.tsx","apps/golyzer/src/components/CardChart/helpers/components/FocusModeRenderer/index.tsx","apps/golyzer/src/components/CardChart/helpers/constants/index.ts","apps/golyzer/src/components/CardChart/helpers/hooks/useCardBorder.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useChartPercentageLayout.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/useKeyboardMove.tsx","apps/golyzer/src/components/CardChart/helpers/hooks/usePinnedElement.tsx","apps/golyzer/src/components/CardChart/helpers/utils/fullWidth/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/gridLines/index.ts","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/handleComponent/styles.module.less","apps/golyzer/src/components/CardChart/helpers/utils/items/README.md","apps/golyzer/src/components/CardChart/helpers/utils/items/examples.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/index.tsx","apps/golyzer/src/components/CardChart/helpers/utils/items/styles.module.less","apps/golyzer/src/components/CardChart/index.tsx","apps/golyzer/src/components/ChartWrapper/index.tsx","apps/golyzer/src/components/Charts/AreaLine/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/actions.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/index.tsx","apps/golyzer/src/components/Charts/AreaLineZoomChart/styles.module.less","apps/golyzer/src/components/Charts/AvgBarChart/AvgBarChart.test.ts","apps/golyzer/src/components/Charts/AvgBarChart/index.tsx","apps/golyzer/src/components/Charts/BarLabelRotate/index.tsx","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.test.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/helpers/source.ts","apps/golyzer/src/components/Charts/BarSeriesLayout/index.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/ensureKeyValueSource.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/helpers/highlightPartialTooltip.tsx","apps/golyzer/src/components/Charts/BasicBarChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/useBasicBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicBarChart/hooks/usePartialHighlightState.ts","apps/golyzer/src/components/Charts/BasicBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/actions.tsx","apps/golyzer/src/components/Charts/BasicClickableBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/drilldownHistory.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/mapSeriesOptions.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/domain/partialHighlightTooltip.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/runtime/chartRuntime.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownAdvance.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickDecision.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownClickHandler.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoBack.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownGoForward.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownNavigation.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.test.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/actions/useCases/drilldownRender.ts","apps/golyzer/src/components/Charts/BasicDrilldownBar/index.tsx","apps/golyzer/src/components/Charts/BasicDrilldownBar/styles.module.less","apps/golyzer/src/components/Charts/BasicGaugeChart/index.tsx","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.test.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/hooks/useHorizontalBarChartOptions.ts","apps/golyzer/src/components/Charts/BasicHorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/BasicLineChart/index.tsx","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/chartOptions.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/constants.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/dataTransform.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/index.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/seriesBuilder.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/state.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.test.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/tooltipFormatter.ts","apps/golyzer/src/components/Charts/BasicPieChart/helpers/partialHighlight/types.ts","apps/golyzer/src/components/Charts/BasicPieChart/index.tsx","apps/golyzer/src/components/Charts/BasicRadarChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterAxisChart/index.tsx","apps/golyzer/src/components/Charts/BasicScatterChart/index.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.test.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/partialHighlight.ts","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/helpers/tooltip.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.test.tsx","apps/golyzer/src/components/Charts/BubbleScatterChart/index.tsx","apps/golyzer/src/components/Charts/CalendarPieChart/index.tsx","apps/golyzer/src/components/Charts/ConditionalColorLineChart/index.tsx","apps/golyzer/src/components/Charts/DoughnutChart/index.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/actions.tsx","apps/golyzer/src/components/Charts/DynamicDataBar/index.tsx","apps/golyzer/src/components/Charts/DynamicLine/DynamicLineChart.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.test.tsx","apps/golyzer/src/components/Charts/DynamicLine/actions.tsx","apps/golyzer/src/components/Charts/DynamicLine/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/index.tsx","apps/golyzer/src/components/Charts/GaugeCustomChart/styles.module.less","apps/golyzer/src/components/Charts/GaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/GradientLineChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/HighlightedBarChart.utils.test.ts","apps/golyzer/src/components/Charts/HighlightedBarChart/index.tsx","apps/golyzer/src/components/Charts/HighlightedBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/index.tsx","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.test.ts","apps/golyzer/src/components/Charts/HorizontalBarChart/utils.ts","apps/golyzer/src/components/Charts/HorizontalStackedBarChart/index.tsx","apps/golyzer/src/components/Charts/LineRaceChart/LineRaceChart.test.tsx","apps/golyzer/src/components/Charts/LineRaceChart/actions.tsx","apps/golyzer/src/components/Charts/LineRaceChart/index.tsx","apps/golyzer/src/components/Charts/MixedChart/index.tsx","apps/golyzer/src/components/Charts/NightingaleChart/index.tsx","apps/golyzer/src/components/Charts/PolarStackBarChart/index.tsx","apps/golyzer/src/components/Charts/RotatedLabelBarChart/index.tsx","apps/golyzer/src/components/Charts/ScatterPuchCardChart/index.tsx","apps/golyzer/src/components/Charts/SmoothLineChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/index.tsx","apps/golyzer/src/components/Charts/SortBarChart/utils.test.ts","apps/golyzer/src/components/Charts/SortBarChart/utils.ts","apps/golyzer/src/components/Charts/StackedAreaChart/index.tsx","apps/golyzer/src/components/Charts/StackedBarChart/index.tsx","apps/golyzer/src/components/Charts/StackedLineChart/index.tsx","apps/golyzer/src/components/Charts/StageGaugeSpeedChart/index.tsx","apps/golyzer/src/components/Charts/VariationMixedChart/helpers/util/optionsVariationMixed.ts","apps/golyzer/src/components/Charts/VariationMixedChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/index.tsx","apps/golyzer/src/components/Charts/WaterfallBarChart/interaction.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.test.ts","apps/golyzer/src/components/Charts/WaterfallBarChart/utils.ts","apps/golyzer/src/components/Charts/helpers/partialHighlightTooltip.tsx","apps/golyzer/src/components/Charts/index.tsx","apps/golyzer/src/components/Confirm/confirmLeave.test.tsx","apps/golyzer/src/components/Confirm/index.tsx","apps/golyzer/src/components/Confirm/styles.module.less","apps/golyzer/src/components/Container/index.tsx","apps/golyzer/src/components/Container/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/CursorContextPanel/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/EditorContextMenuTrigger/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/MenuTabsPopover/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/components/PanelTabs/styles.module.less","apps/golyzer/src/components/ContextMenuWrapper/helpers/constants/options.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useEditorContextMenuItems.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/hooks/useWorkspaceActions.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/build.tsx","apps/golyzer/src/components/ContextMenuWrapper/helpers/utils/target.ts","apps/golyzer/src/components/ContextMenuWrapper/index.tsx","apps/golyzer/src/components/ContextMenuWrapper/styles.module.less","apps/golyzer/src/components/DrawerCharts/ChartItem.tsx","apps/golyzer/src/components/DrawerCharts/index.tsx","apps/golyzer/src/components/DrawerCharts/styles.module.less","apps/golyzer/src/components/DrawerCharts/tabs/appearance/Axis.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/BordersAndColors.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/General.tsx","apps/golyzer/src/components/DrawerCharts/tabs/appearance/styles.module.less","apps/golyzer/src/components/DropdownWithTooltip/index.tsx","apps/golyzer/src/components/EChartsWrapper/EChartsClient.tsx","apps/golyzer/src/components/EChartsWrapper/index.tsx","apps/golyzer/src/components/EditorPanelAppearance/index.tsx","apps/golyzer/src/components/Elements/Button/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/DatePickerStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/Label/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/components/SliderStyled/index.tsx","apps/golyzer/src/components/Elements/Date/helpers/utils/styled.ts","apps/golyzer/src/components/Elements/Date/helpers/utils/update.ts","apps/golyzer/src/components/Elements/Date/index.tsx","apps/golyzer/src/components/Elements/Date/styles.module.less","apps/golyzer/src/components/Elements/HierarchicalMatrix/index.tsx","apps/golyzer/src/components/Elements/Image/index.tsx","apps/golyzer/src/components/Elements/Image/styles.module.less","apps/golyzer/src/components/Elements/Input/index.tsx","apps/golyzer/src/components/Elements/Input/styles.module.less","apps/golyzer/src/components/Elements/Number/index.tsx","apps/golyzer/src/components/Elements/Number/styles.module.less","apps/golyzer/src/components/Elements/NumberWithTrend/helpers/tooltip.ts","apps/golyzer/src/components/Elements/NumberWithTrend/index.tsx","apps/golyzer/src/components/Elements/NumberWithTrend/styles.module.less","apps/golyzer/src/components/Elements/Select/helpers/components/SelectStyled/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/components/SelectVirtualized/index.tsx","apps/golyzer/src/components/Elements/Select/helpers/utils/remove.ts","apps/golyzer/src/components/Elements/Select/index.tsx","apps/golyzer/src/components/Elements/Select/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/ButtonDrillDown/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ChevronTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ConditionalTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/HeaderCellTemplate/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/CellTemplates/ProgressTemplate/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/CustomTooltip/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/EmptyTable/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/IconInfo/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/RenderContent/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/StyledGridWrapper/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/hooks/useInteractionLocationDispatcher.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/styles.module.less","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionCell.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionPointer.ts","apps/golyzer/src/components/Elements/Spreadsheets/components/TableGrid/utils/interactionVisualState.ts","apps/golyzer/src/components/Elements/Spreadsheets/constants/interactionClasses.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.test.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/operations.ts","apps/golyzer/src/components/Elements/Spreadsheets/drilldown/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/clickClassification.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/columnSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/constants.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/drilldownExecution.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/rowSelection.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/types.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/drilldownFocus/useDrilldownFocusHandler.ts","apps/golyzer/src/components/Elements/Spreadsheets/hooks/useDataSourceHandler.tsx","apps/golyzer/src/components/Elements/Spreadsheets/index.tsx","apps/golyzer/src/components/Elements/Spreadsheets/utils/chevron.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/dateFormat.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/empty.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/focus.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/location.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/base-styles.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/css-generators.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/formatters.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/grid-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/header-modifiers.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/index.ts","apps/golyzer/src/components/Elements/Spreadsheets/utils/styles/label-modifiers.ts","apps/golyzer/src/components/Elements/Table/components/AutoSizedGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/index.tsx","apps/golyzer/src/components/Elements/Table/components/ColumnSizerGrid/styles.module.less","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/index.tsx","apps/golyzer/src/components/Elements/Table/components/CustomScrollbar/styles.module.less","apps/golyzer/src/components/Elements/Table/components/GridContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/GridContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/index.tsx","apps/golyzer/src/components/Elements/Table/components/PivotTableUI/styles.module.less","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/index.tsx","apps/golyzer/src/components/Elements/Table/components/ResizableTableContainer/styles.module.less","apps/golyzer/src/components/Elements/Table/components/StyledTableWrapper/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/index.tsx","apps/golyzer/src/components/Elements/Table/components/VirtualizedTable/styles.module.less","apps/golyzer/src/components/Elements/Table/enums/aggregators.ts","apps/golyzer/src/components/Elements/Table/index.tsx","apps/golyzer/src/components/Elements/Table/styles.module.less","apps/golyzer/src/components/Elements/Table/utils/aggregators.ts","apps/golyzer/src/components/Elements/Table/utils/appearance.ts","apps/golyzer/src/components/Elements/Table/utils/format.ts","apps/golyzer/src/components/Elements/Table/utils/sort.ts","apps/golyzer/src/components/Elements/index.tsx","apps/golyzer/src/components/Empty/index.tsx","apps/golyzer/src/components/Empty/styles.module.less","apps/golyzer/src/components/ErrorBoundary/AppErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/DatasetErrorBoundary.tsx","apps/golyzer/src/components/ErrorBoundary/FormErrorBoundary.tsx","apps/golyzer/src/components/EyeDropperButton/index.tsx","apps/golyzer/src/components/EyeDropperButton/styles.module.less","apps/golyzer/src/components/FilterItem/helpers/components/FilterInputRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FilterValueRenderer/index.tsx","apps/golyzer/src/components/FilterItem/helpers/components/FormFilters/index.tsx","apps/golyzer/src/components/FilterItem/index.tsx","apps/golyzer/src/components/FilterItem/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/Cascader/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ButtonRadioGroup/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/Collapsible/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/FieldsInElement/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/helpers/components/PanelFields/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/DateFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterForm/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/FilterValueField/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/ConfirmDeletePop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/components/FormResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/helpers/constants/icons.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/ResultFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/helpers/components/FilterCollapse/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/components/SelectionFilter/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/helpers/constants/form.ts","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FilterContent/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/helpers/components/ConfirmResetPop/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/FooterPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/HeaderPopover/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/PopoverWrapper/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/index.tsx","apps/golyzer/src/components/FilterWrapper/helpers/components/StatusBadge/styles.module.less","apps/golyzer/src/components/FilterWrapper/helpers/context/FilterWrapperContext.tsx","apps/golyzer/src/components/FilterWrapper/helpers/utils/filters.ts","apps/golyzer/src/components/FilterWrapper/helpers/utils/find.ts","apps/golyzer/src/components/FilterWrapper/index.tsx","apps/golyzer/src/components/FocusModeModal/index.tsx","apps/golyzer/src/components/FocusModeModal/styles.module.less","apps/golyzer/src/components/FormulaViewModal/index.tsx","apps/golyzer/src/components/FullscreenTooltip/index.tsx","apps/golyzer/src/components/ImagMask/index.tsx","apps/golyzer/src/components/IndicatorsBuilderDrawer/index.tsx","apps/golyzer/src/components/Input/index.tsx","apps/golyzer/src/components/Input/styles.module.less","apps/golyzer/src/components/InteractionModeBanner/index.tsx","apps/golyzer/src/components/InteractionModeBanner/styles.module.less","apps/golyzer/src/components/InteractionThumbnail/index.tsx","apps/golyzer/src/components/InteractionThumbnail/styles.module.less","apps/golyzer/src/components/KeyboardHandler/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToElement/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToGroup/styles.module.less","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/index.tsx","apps/golyzer/src/components/LayoutController/LayoutControllerToSelection/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/index.tsx","apps/golyzer/src/components/LayoutController/helpers/components/AlignmentPicker/styles.module.less","apps/golyzer/src/components/LayoutController/helpers/components/ClampedNumberInput/index.tsx","apps/golyzer/src/components/LayoutController/helpers/utils/calculateMaxValues.ts","apps/golyzer/src/components/LayoutFaker/index.tsx","apps/golyzer/src/components/ListPanels/helpers/components/ListEmpty/index.tsx","apps/golyzer/src/components/ListPanels/helpers/utils/columns.tsx","apps/golyzer/src/components/ListPanels/index.tsx","apps/golyzer/src/components/ListPanels/styles.module.less","apps/golyzer/src/components/Loading/index.tsx","apps/golyzer/src/components/MicroFrontendRouter/index.tsx","apps/golyzer/src/components/MultiSelect/index.tsx","apps/golyzer/src/components/MultiSelect/styles.module.less","apps/golyzer/src/components/Panel/Header/index.tsx","apps/golyzer/src/components/Panel/Header/styles.module.less","apps/golyzer/src/components/Panel/PanelStyled/index.tsx","apps/golyzer/src/components/Panel/SubHeader/index.tsx","apps/golyzer/src/components/Panel/SubHeader/styles.module.less","apps/golyzer/src/components/PanelContainer/PanelInteractionBridge.tsx","apps/golyzer/src/components/PanelContainer/index.tsx","apps/golyzer/src/components/PanelContainer/styles.module.less","apps/golyzer/src/components/PanelScroll/index.tsx","apps/golyzer/src/components/PanelScroll/styles.module.less","apps/golyzer/src/components/RelationConfigPanel/index.tsx","apps/golyzer/src/components/RelationConfigPanel/styles.module.less","apps/golyzer/src/components/RelationModeButtons/index.tsx","apps/golyzer/src/components/RelationModeButtons/styles.module.less","apps/golyzer/src/components/Search/index.tsx","apps/golyzer/src/components/Search/styles.module.less","apps/golyzer/src/components/Select/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/GroupsRender/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/MoveableElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/components/SelectoElement/styles.module.less","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementClick.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementDrag.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementRender.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementResize.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useElementSelect.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/dom.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/groups.ts","apps/golyzer/src/components/SelectoAreaPanel/helpers/utils/selection.ts","apps/golyzer/src/components/SelectoAreaPanel/index.tsx","apps/golyzer/src/components/SelectoAreaPanel/styles.module.less","apps/golyzer/src/components/TimedAlert/index.tsx","apps/golyzer/src/components/TimedAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/DataSetWrapper/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/DraggableTabNode/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/FullScreenAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/GridLines/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/InteractionAction/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabBar/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/TabEditable/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/UnitLimitedAcessAlert/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/components/renderTab/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScroll.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useScrollMemory.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useTabAppearance.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/helpers/hooks/useUnitLimitedAccess/styles.module.less","apps/golyzer/src/components/WrapperPanel/Panels/helpers/utils/background.ts","apps/golyzer/src/components/WrapperPanel/Panels/index.tsx","apps/golyzer/src/components/WrapperPanel/Panels/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/helpers/hooks/useMoveableHelpers.tsx","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/index.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/positions.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/size.ts","apps/golyzer/src/components/WrapperPanel/Visions/helpers/utils/spacing.ts","apps/golyzer/src/components/WrapperPanel/Visions/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/AlternateColor.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Axis.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Background.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Border.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ColumnsLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataFormat.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataRange.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PanelStyled/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/components/PieProperties.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DataSeries/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/DatePicker.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Divider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Gauge.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Graph.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/GridLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderLine.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/HeaderRowsOrColumns.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Image.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Interaction.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Legend.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/MatrixLines.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Number.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/RowHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Select.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Shadow.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Slider.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Spacing.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Text.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/Tips.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/TotalsSubtotals.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesHeader.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/ValuesLabel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Checkbox/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/ColorPickerField/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InputNumber/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/InternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/NumberPrecisionInput/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/PanelHeaderInternalCollapse/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Radio/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/components/Select/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/form/types.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/chart.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/Appearance/tabs/panel.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormButton.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/AggregateFilterSelector/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormManyData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/FormOneData/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/components/ItemsAggregate/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/helpers/utils/axisLabel.ts","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormChart/index.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormConfigAdvanced.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDate.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormDateFilter.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormFilters.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormImage.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormInput.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormItem.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/pattern/FormSort.tsx","apps/golyzer/src/components/WrapperPanel/Visions/pattern/DataChart/styles.module.less","apps/golyzer/src/components/WrapperPanel/Visions/styles.module.less","apps/golyzer/src/components/WrapperPanel/index.tsx","apps/golyzer/src/components/WrapperPanel/styles.module.less","apps/golyzer/src/constants/appearance.ts","apps/golyzer/src/constants/chart.ts","apps/golyzer/src/constants/columnDataTypes.ts","apps/golyzer/src/constants/date.ts","apps/golyzer/src/constants/elements.ts","apps/golyzer/src/constants/env.ts","apps/golyzer/src/constants/interactionModeRegistry.ts","apps/golyzer/src/constants/moveable.ts","apps/golyzer/src/constants/operators.ts","apps/golyzer/src/constants/options.ts","apps/golyzer/src/constants/size.ts","apps/golyzer/src/constants/tabs.ts","apps/golyzer/src/context/ActiveStateContext.tsx","apps/golyzer/src/context/CsvContext.tsx","apps/golyzer/src/context/DrilldownContext.tsx","apps/golyzer/src/context/EditorContext/helpers/utils/groups.ts","apps/golyzer/src/context/EditorContext/index.tsx","apps/golyzer/src/context/FilterResultsContext.tsx","apps/golyzer/src/context/FullScreenContext.tsx","apps/golyzer/src/context/HistoryContext/hooks/useUpdateAxisLabels.tsx","apps/golyzer/src/context/HistoryContext/index.tsx","apps/golyzer/src/context/HistoryContext/utils/elements.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.spec.ts","apps/golyzer/src/context/HistoryContext/utils/reduce.ts","apps/golyzer/src/context/HistoryContext/utils/tabs.ts","apps/golyzer/src/context/HoverScrollContext/index.tsx","apps/golyzer/src/context/HoverScrollContext/styles.module.less","apps/golyzer/src/context/InteractionModeContext/ChartOperationsContext.tsx","apps/golyzer/src/context/InteractionModeContext/ChartOperationsFactory.ts","apps/golyzer/src/context/InteractionModeContext/ChartOperationsRegistry.ts","apps/golyzer/src/context/InteractionModeContext/InteractionOrchestratorContext.tsx","apps/golyzer/src/context/InteractionModeContext/InteractionStateStore.ts","apps/golyzer/src/context/InteractionModeContext/constants/requestMetaKeys.ts","apps/golyzer/src/context/InteractionModeContext/index.tsx","apps/golyzer/src/context/InteractionModeContext/operations/AbstractBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarChartPayloadBuilder.ts","apps/golyzer/src/context/InteractionModeContext/operations/BarSeriesLayoutOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/BubbleChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ChartOperationsInterface.ts","apps/golyzer/src/context/InteractionModeContext/operations/DrilldownBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/EChartsInteractionDriver.ts","apps/golyzer/src/context/InteractionModeContext/operations/GaugeElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/HelpersOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/HorizontalBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/LineRaceChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/MixedChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/NumberElementOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/PieChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/RadarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/SortBarChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/BaseChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/index.ts","apps/golyzer/src/context/InteractionModeContext/operations/base/types.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleLabelResolver.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubblePointUtils.ts","apps/golyzer/src/context/InteractionModeContext/operations/bubble/BubbleVisualStateManager.ts","apps/golyzer/src/context/InteractionModeContext/operations/generateClickedData.consumers.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/categoryFields.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/clickedData.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/echartsInstance.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/requestParams.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.test.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesOpacity.ts","apps/golyzer/src/context/InteractionModeContext/operations/helpers/seriesVisualState.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BaseScatterOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/BubbleScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterChartOperations.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.constants.ts","apps/golyzer/src/context/InteractionModeContext/operations/scatters/ScatterOperations.types.ts","apps/golyzer/src/context/MatrixDrilldownContext.tsx","apps/golyzer/src/context/MinimizedContext.tsx","apps/golyzer/src/context/PanelContext/copyPaste.test.tsx","apps/golyzer/src/context/PanelContext/index.test.tsx","apps/golyzer/src/context/PanelContext/index.tsx","apps/golyzer/src/context/PanelContext/types/sub-contexts.ts","apps/golyzer/src/context/PanelContext/utils/generalFilters.ts","apps/golyzer/src/context/PanelContext/utils/interactionMode.ts","apps/golyzer/src/context/PanelContext/utils/stateComparison.ts","apps/golyzer/src/context/PanelListContext.tsx","apps/golyzer/src/context/RefreshContext.tsx","apps/golyzer/src/context/SpreadsheetsContext.tsx","apps/golyzer/src/context/UserContext.tsx","apps/golyzer/src/context/ViewsStateContext.tsx","apps/golyzer/src/enums/scope.ts","apps/golyzer/src/hooks/InteractionMode/index.ts","apps/golyzer/src/hooks/InteractionMode/useAutoApplyMasterFilter.ts","apps/golyzer/src/hooks/InteractionMode/useBasicBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicLineChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicPieChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBasicRadarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useBubbleChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useChartReadyState.ts","apps/golyzer/src/hooks/InteractionMode/useDimensionFilters.ts","apps/golyzer/src/hooks/InteractionMode/useDrilldownBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyManager.ts","apps/golyzer/src/hooks/InteractionMode/useElementAssemblyStore.ts","apps/golyzer/src/hooks/InteractionMode/useElementAutoFilter.ts","apps/golyzer/src/hooks/InteractionMode/useGaugeInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useHorizontalBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionAbortSignal.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMasterSelection.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionMode.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeConfigStore.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeListener.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeThumbnail.ts","apps/golyzer/src/hooks/InteractionMode/useInteractionModeTransition.ts","apps/golyzer/src/hooks/InteractionMode/useNumbersInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useScatterChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSortBarChartInteractionHandlers.ts","apps/golyzer/src/hooks/InteractionMode/useSpreadsheetsInteractionHandlers.ts","apps/golyzer/src/hooks/useChartData.ts","apps/golyzer/src/hooks/useChartDataLoader.tsx","apps/golyzer/src/hooks/useChartDataMap.tsx","apps/golyzer/src/hooks/useChartFinishListener.ts","apps/golyzer/src/hooks/useChartInteraction.tsx","apps/golyzer/src/hooks/useChartMostUsed.tsx","apps/golyzer/src/hooks/useChartQueryData.tsx","apps/golyzer/src/hooks/useClipboardChartListener.tsx","apps/golyzer/src/hooks/useCopyPaste.tsx","apps/golyzer/src/hooks/useDebounce.tsx","apps/golyzer/src/hooks/useDeleteOnKeyDown.tsx","apps/golyzer/src/hooks/useDrilldown.tsx","apps/golyzer/src/hooks/useElementImage.tsx","apps/golyzer/src/hooks/useExportData.tsx","apps/golyzer/src/hooks/useFilterElementsOptions.tsx","apps/golyzer/src/hooks/useFilterResults.tsx","apps/golyzer/src/hooks/useFocusModal.tsx","apps/golyzer/src/hooks/useHandleComponentScroll.tsx","apps/golyzer/src/hooks/useHostAwareNavigate.ts","apps/golyzer/src/hooks/useIMESafeDebounce.tsx","apps/golyzer/src/hooks/useIndexedDBWithExpiration.tsx","apps/golyzer/src/hooks/useIndicatorsBuilderVisibleStore.tsx","apps/golyzer/src/hooks/useLeavePage.tsx","apps/golyzer/src/hooks/useLogout.tsx","apps/golyzer/src/hooks/useMicroFrontendStyles.ts","apps/golyzer/src/hooks/usePanelId.ts","apps/golyzer/src/hooks/usePanelUtilities.tsx","apps/golyzer/src/hooks/usePathname.tsx","apps/golyzer/src/hooks/usePerformanceTracking.tsx","apps/golyzer/src/hooks/usePrevious.tsx","apps/golyzer/src/hooks/useSafeAsyncState.tsx","apps/golyzer/src/hooks/useSpanAttributes.tsx","apps/golyzer/src/hooks/useTreeFilter.ts","apps/golyzer/src/hooks/useWebWorker.tsx","apps/golyzer/src/hooks/useWindowSize.tsx","apps/golyzer/src/interfaces/iMapper.ts","apps/golyzer/src/main.tsx","apps/golyzer/src/mappers/chart/chart.mapper.ts","apps/golyzer/src/mappers/chart/index.ts","apps/golyzer/src/mappers/collaborator/collaborator.mapper.ts","apps/golyzer/src/mappers/collaborator/index.ts","apps/golyzer/src/mappers/panel/index.ts","apps/golyzer/src/mappers/panel/panel.mapper.ts","apps/golyzer/src/mappers/tab/index.ts","apps/golyzer/src/mappers/tab/tab.mapper.ts","apps/golyzer/src/mocks/MockInitializer.tsx","apps/golyzer/src/mocks/adapter.ts","apps/golyzer/src/mocks/factories/chart.ts","apps/golyzer/src/mocks/factories/chartData.spec.ts","apps/golyzer/src/mocks/factories/chartData.ts","apps/golyzer/src/mocks/factories/dataset.ts","apps/golyzer/src/mocks/factories/orgStructure.ts","apps/golyzer/src/mocks/factories/panel.ts","apps/golyzer/src/mocks/factories/user.ts","apps/golyzer/src/mocks/handlers/auth.ts","apps/golyzer/src/mocks/handlers/catchAll.ts","apps/golyzer/src/mocks/handlers/charts.ts","apps/golyzer/src/mocks/handlers/datasets.ts","apps/golyzer/src/mocks/handlers/goardian.ts","apps/golyzer/src/mocks/handlers/orgStructure.ts","apps/golyzer/src/mocks/handlers/panels.ts","apps/golyzer/src/mocks/handlers/sharing.ts","apps/golyzer/src/mocks/handlers/user.ts","apps/golyzer/src/mocks/index.ts","apps/golyzer/src/mocks/store/panelStore.ts","apps/golyzer/src/pages/Information/index.tsx","apps/golyzer/src/pages/ListPanels/index.tsx","apps/golyzer/src/pages/Login/index.tsx","apps/golyzer/src/pages/Logout/index.tsx","apps/golyzer/src/pages/PanelAdd/index.tsx","apps/golyzer/src/pages/PanelEdit/index.tsx","apps/golyzer/src/pages/PanelPresentation/index.tsx","apps/golyzer/src/patches/rcTableDevWarningPatch.ts","apps/golyzer/src/router.tsx","apps/golyzer/src/services/api.ts","apps/golyzer/src/services/auth.ts","apps/golyzer/src/services/chartQuery/cacheManager.ts","apps/golyzer/src/services/chartQuery/queryKeys.ts","apps/golyzer/src/services/charts/config.ts","apps/golyzer/src/services/charts/index.ts","apps/golyzer/src/services/charts/list.ts","apps/golyzer/src/services/charts/save.ts","apps/golyzer/src/services/datasets/datasets.ts","apps/golyzer/src/services/errors/AuthTokenError.ts","apps/golyzer/src/services/organizationalStructure.ts","apps/golyzer/src/services/panel/delete.ts","apps/golyzer/src/services/panel/getPanel.ts","apps/golyzer/src/services/panel/interfaces/uploadPanelImageRequest.ts","apps/golyzer/src/services/panel/list.ts","apps/golyzer/src/services/panel/save.ts","apps/golyzer/src/services/panel/update.ts","apps/golyzer/src/services/panel/uploadPanelImage.ts","apps/golyzer/src/services/storage.ts","apps/golyzer/src/services/user/getUserData.ts","apps/golyzer/src/services/workers/csv.ts","apps/golyzer/src/services/workers/pivot.ts","apps/golyzer/src/services/workers/resultsFilter.ts","apps/golyzer/src/services/workers/spreadsheet.spec.ts","apps/golyzer/src/services/workers/spreadsheet.ts","apps/golyzer/src/shims/goapice-plugin.ts","apps/golyzer/src/shims/goapice.ts","apps/golyzer/src/shims/packages/common.tsx","apps/golyzer/src/shims/packages/empty.css","apps/golyzer/src/shims/packages/react-datasets.module.less","apps/golyzer/src/shims/packages/react-datasets.tsx","apps/golyzer/src/shims/packages/react-goardian-guard.tsx","apps/golyzer/src/shims/packages/react-guapo-operators.ts","apps/golyzer/src/shims/packages/react-guapo.tsx","apps/golyzer/src/shims/packages/react-sharing.tsx","apps/golyzer/src/styles/fonts.less","apps/golyzer/src/styles/global.less","apps/golyzer/src/styles/globalStyle.ts","apps/golyzer/src/styles/overrideAnt.css","apps/golyzer/src/styles/theme/charts/default.ts","apps/golyzer/src/styles/theme/charts/gray.ts","apps/golyzer/src/styles/theme/dark.less","apps/golyzer/src/styles/theme/light.less","apps/golyzer/src/styles/tokens.ts","apps/golyzer/src/styles/variables.less","apps/golyzer/src/test/setup.ts","apps/golyzer/src/tests/mocks/request/requestToGenerateMatrixLines.ts","apps/golyzer/src/types/form.ts","apps/golyzer/src/types/interactionMode/chartInteraction.ts","apps/golyzer/src/types/interactionMode/clickedDataTypes.ts","apps/golyzer/src/types/interactionMode/interactionConfig.ts","apps/golyzer/src/types/interactionMode/interactionEvents.ts","apps/golyzer/src/types/interactionMode/interactionState.ts","apps/golyzer/src/utils/array.ts","apps/golyzer/src/utils/charts/appearance.ts","apps/golyzer/src/utils/charts/applyAppearanceConfig.spec.ts","apps/golyzer/src/utils/charts/axis.ts","apps/golyzer/src/utils/charts/dataset.ts","apps/golyzer/src/utils/charts/defaultAggregation.test.ts","apps/golyzer/src/utils/charts/enum.ts","apps/golyzer/src/utils/charts/fieldIdentity.test.ts","apps/golyzer/src/utils/charts/fieldIdentity.ts","apps/golyzer/src/utils/charts/filter.ts","apps/golyzer/src/utils/charts/index.ts","apps/golyzer/src/utils/charts/lineChartOptions.test.ts","apps/golyzer/src/utils/charts/lineChartOptions.ts","apps/golyzer/src/utils/charts/modules/aggregation.ts","apps/golyzer/src/utils/charts/modules/appearance.ts","apps/golyzer/src/utils/charts/modules/data.ts","apps/golyzer/src/utils/charts/modules/index.ts","apps/golyzer/src/utils/charts/modules/position.ts","apps/golyzer/src/utils/charts/modules/split-map.ts","apps/golyzer/src/utils/charts/modules/tooltip.ts","apps/golyzer/src/utils/charts/modules/types.ts","apps/golyzer/src/utils/charts/modules/validation.ts","apps/golyzer/src/utils/charts/number.ts","apps/golyzer/src/utils/charts/partialHighlight.spec.ts","apps/golyzer/src/utils/charts/partialHighlight.ts","apps/golyzer/src/utils/charts/partialHighlightOperations.ts","apps/golyzer/src/utils/charts/position.ts","apps/golyzer/src/utils/charts/remove.ts","apps/golyzer/src/utils/charts/reorderElements.spec.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.test.ts","apps/golyzer/src/utils/charts/resolveSeriesColors.ts","apps/golyzer/src/utils/charts/sizes.ts","apps/golyzer/src/utils/charts/transformProps.ts","apps/golyzer/src/utils/collaborator/enum.ts","apps/golyzer/src/utils/color.ts","apps/golyzer/src/utils/converting/size.ts","apps/golyzer/src/utils/corsWorker.ts","apps/golyzer/src/utils/date.ts","apps/golyzer/src/utils/date/range.ts","apps/golyzer/src/utils/debugLog.ts","apps/golyzer/src/utils/deepCopy.ts","apps/golyzer/src/utils/delay.ts","apps/golyzer/src/utils/echarts.ts","apps/golyzer/src/utils/errorHandling.test.ts","apps/golyzer/src/utils/errorHandling.ts","apps/golyzer/src/utils/feedback/confirm.tsx","apps/golyzer/src/utils/feedback/error.tsx","apps/golyzer/src/utils/feedback/message.ts","apps/golyzer/src/utils/feedback/saving.tsx","apps/golyzer/src/utils/feedback/tooltip.tsx","apps/golyzer/src/utils/formatting/date.ts","apps/golyzer/src/utils/formatting/responseData.ts","apps/golyzer/src/utils/formatting/text.ts","apps/golyzer/src/utils/functions.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.test.ts","apps/golyzer/src/utils/interactionMode/clickedDataTimestamp.ts","apps/golyzer/src/utils/interactionMode/constants.ts","apps/golyzer/src/utils/interactionMode/interactionElements.ts","apps/golyzer/src/utils/interactionMode/interactionEvents.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.test.ts","apps/golyzer/src/utils/interactionMode/interactionMasterHighlight.ts","apps/golyzer/src/utils/placeholderSource.ts","apps/golyzer/src/utils/primaryErrorCandidate.ts","apps/golyzer/src/utils/responseData/filter.ts","apps/golyzer/src/utils/storybookHideProps/index.ts","apps/golyzer/src/utils/storybookToggleableProps/index.ts","apps/golyzer/src/utils/styled/index.ts","apps/golyzer/src/utils/system.ts","apps/golyzer/src/utils/typescript/isObject.ts","apps/golyzer/src/utils/typescript/sql.ts","apps/golyzer/src/utils/typescript/text.ts","apps/golyzer/src/utils/typescript/typeGuards.ts","apps/golyzer/src/utils/unicode/normalize.ts","apps/golyzer/src/utils/url.ts","apps/golyzer/src/utils/user.ts","apps/golyzer/src/utils/uuid.ts","apps/golyzer/src/utils/validation/compare.spec.ts","apps/golyzer/src/utils/validation/compare.ts","apps/golyzer/src/utils/validation/compareDate.ts","apps/golyzer/src/utils/validation/user.ts","apps/golyzer/src/utils/validation/uuid.ts","apps/golyzer/tests/e2e/offline-drawer-charts.spec.ts","apps/golyzer/tests/e2e/offline-smoke.spec.ts","apps/golyzer/tsconfig.json","apps/golyzer/tsconfig.node.json","apps/golyzer/vite.config.ts","apps/golyzer/vitest.config.ts"]}]},{"name":"docs","slug":"docs","files":["docs/deploy/conventions.md","docs/migration/fase-1-workspace.md","docs/migration/fase-2-tooling.md","docs/migration/fase-2.5-compatibilidade.md","docs/migration/fase-3-boundaries.md","docs/migration/fase-4-cfi.md","docs/migration/fase-5-cfi-consumo.md","docs/migration/fase-6-ci.md","docs/migration/fase-7-consolidacao.md","docs/plans/internalizar-goapice-react-libs.md","docs/templates/code-review-report.md"]},{"name":"packages","slug":"packages","files":[],"children":[{"name":"packages — cfi-core","slug":"packages-cfi-core","files":["packages/cfi-core/package.json","packages/cfi-core/src/components/Box/index.tsx","packages/cfi-core/src/components/Box/styles.module.less","packages/cfi-core/src/components/FormulaViewModal/FunctionIcon.tsx","packages/cfi-core/src/components/FormulaViewModal/index.tsx","packages/cfi-core/src/components/FormulaViewModal/styles.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/DatasetWrapper.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.module.less","packages/cfi-core/src/components/IndicatorBuilderDrawer/confirmEdit.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/index.tsx","packages/cfi-core/src/components/IndicatorBuilderDrawer/styles.module.less","packages/cfi-core/src/components/PopoverContent.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/index.tsx","packages/cfi-core/src/components/PopoverTooltipSpan/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DefaultFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/DeviationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/FunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/SumIcon.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/VariationFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/WeightedAvgFunctionElement.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/elements/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/index.tsx","packages/cfi-core/src/components/Workspace/components/Elements/pattern/variables/styles.module.less","packages/cfi-core/src/components/Workspace/components/Elements/types.ts","packages/cfi-core/src/components/Workspace/components/FilterModal/index.tsx","packages/cfi-core/src/components/Workspace/components/FilterModal/styles.module.less","packages/cfi-core/src/components/Workspace/index.tsx","packages/cfi-core/src/components/Workspace/styles.module.less","packages/cfi-core/src/components/index.ts","packages/cfi-core/src/constants/colors.ts","packages/cfi-core/src/constants/consolidatedAccountingDatasetName.ts","packages/cfi-core/src/constants/date.ts","packages/cfi-core/src/constants/editableNodeTypes.ts","packages/cfi-core/src/constants/filter.ts","packages/cfi-core/src/constants/functionCaptions.ts","packages/cfi-core/src/constants/index.ts","packages/cfi-core/src/constants/indicatorTypes.ts","packages/cfi-core/src/constants/indicatorsDatasetName.ts","packages/cfi-core/src/constants/slateInitialNodes.ts","packages/cfi-core/src/constants/specialNodeTypes.ts","packages/cfi-core/src/context/CfiConfigContext.tsx","packages/cfi-core/src/context/SlateContext.tsx","packages/cfi-core/src/context/generalFiltersContext.tsx","packages/cfi-core/src/context/index.ts","packages/cfi-core/src/contracts/index.ts","packages/cfi-core/src/hooks/index.ts","packages/cfi-core/src/hooks/useDatasetData.tsx","packages/cfi-core/src/hooks/useOpenedFunctionPopoverStore.ts","packages/cfi-core/src/hooks/useSyncVariable.tsx","packages/cfi-core/src/hooks/useTreeFilter.tsx","packages/cfi-core/src/index.ts","packages/cfi-core/src/mappers/deviationFunction.mapper.ts","packages/cfi-core/src/mappers/generalFilter.mapper.ts","packages/cfi-core/src/mappers/index.ts","packages/cfi-core/src/mappers/slate.mapper.ts","packages/cfi-core/src/mappers/variationFunction.mapper.ts","packages/cfi-core/src/mappers/weightedAvgFunction.mapper.ts","packages/cfi-core/src/services/api.ts","packages/cfi-core/src/services/dataset.ts","packages/cfi-core/src/services/index.ts","packages/cfi-core/src/services/indicator.ts","packages/cfi-core/src/styles/variables.less","packages/cfi-core/src/types/dataset.ts","packages/cfi-core/src/types/filter.ts","packages/cfi-core/src/types/index.ts","packages/cfi-core/src/types/indicator.ts","packages/cfi-core/src/types/slate.ts","packages/cfi-core/src/utils/findOpenParentheses.ts","packages/cfi-core/src/utils/index.ts","packages/cfi-core/src/utils/message.ts","packages/cfi-core/src/utils/selection.ts","packages/cfi-core/src/utils/uuid.ts","packages/cfi-core/src/validations/compare.ts","packages/cfi-core/src/validations/index.ts","packages/cfi-core/src/validations/syntaxValidation.ts","packages/cfi-core/tsconfig.json"]},{"name":"packages — federation-contracts","slug":"packages-federation-contracts","files":["packages/federation-contracts/package.json","packages/federation-contracts/src/index.ts","packages/federation-contracts/src/resolvers.ts","packages/federation-contracts/src/types.ts","packages/federation-contracts/tsconfig.json"]},{"name":"packages — shell-shared","slug":"packages-shell-shared","files":["packages/shell-shared/package.json","packages/shell-shared/src/hooks/index.ts","packages/shell-shared/src/hooks/useDebounce.ts","packages/shell-shared/src/hooks/usePrevious.ts","packages/shell-shared/src/hooks/useWindowSize.ts","packages/shell-shared/src/index.ts","packages/shell-shared/tsconfig.json"]},{"name":"packages — tooling-config","slug":"packages-tooling-config","files":["packages/tooling-config/eslint/README.md","packages/tooling-config/package.json","packages/tooling-config/prettier.config.mjs","packages/tooling-config/tsconfig/base.json"]}]},{"name":"patches","slug":"patches","files":["patches/@goapice__react-datasets@2.7.22.patch","patches/@goapice__react-guapo@1.4.2.patch","patches/react-sortable-hoc@2.0.0.patch"]},{"name":"scripts","slug":"scripts","files":["scripts/detect-impact.sh"]}]}; | |
| (function() { | |
| var activePage = 'overview'; | |
| document.addEventListener('DOMContentLoaded', function() { | |
| mermaid.initialize({ startOnLoad: false, theme: 'neutral', securityLevel: 'loose' }); | |
| renderMeta(); | |
| renderNav(); | |
| document.getElementById('menu-toggle').addEventListener('click', function() { | |
| document.getElementById('sidebar').classList.toggle('open'); | |
| }); | |
| if (location.hash && location.hash.length > 1) { | |
| activePage = decodeURIComponent(location.hash.slice(1)); | |
| } | |
| navigateTo(activePage); | |
| }); | |
| function renderMeta() { | |
| if (!META) return; | |
| var el = document.getElementById('meta-info'); | |
| var parts = []; | |
| if (META.generatedAt) { | |
| parts.push(new Date(META.generatedAt).toLocaleDateString()); | |
| } | |
| if (META.model) parts.push(META.model); | |
| if (META.fromCommit) parts.push(META.fromCommit.slice(0, 8)); | |
| el.textContent = parts.join(' \u00b7 '); | |
| } | |
| function renderNav() { | |
| var container = document.getElementById('nav-tree'); | |
| var html = '<div class="nav-section">'; | |
| html += '<a class="nav-item overview" data-page="overview" href="#overview">Overview</a>'; | |
| html += '</div>'; | |
| if (TREE.length > 0) { | |
| html += '<div class="nav-group-label">Modules</div>'; | |
| html += buildNavTree(TREE); | |
| } | |
| container.innerHTML = html; | |
| container.addEventListener('click', function(e) { | |
| var target = e.target; | |
| while (target && !target.dataset.page) { target = target.parentElement; } | |
| if (target && target.dataset.page) { | |
| e.preventDefault(); | |
| navigateTo(target.dataset.page); | |
| } | |
| }); | |
| } | |
| function buildNavTree(nodes) { | |
| var html = ''; | |
| for (var i = 0; i < nodes.length; i++) { | |
| var node = nodes[i]; | |
| html += '<div class="nav-section">'; | |
| html += '<a class="nav-item" data-page="' + escH(node.slug) + '" href="#' + encodeURIComponent(node.slug) + '">' + escH(node.name) + '</a>'; | |
| if (node.children && node.children.length > 0) { | |
| html += '<div class="nav-children">' + buildNavTree(node.children) + '</div>'; | |
| } | |
| html += '</div>'; | |
| } | |
| return html; | |
| } | |
| function escH(s) { | |
| var d = document.createElement('div'); | |
| d.textContent = s; | |
| return d.innerHTML; | |
| } | |
| function navigateTo(page) { | |
| activePage = page; | |
| location.hash = encodeURIComponent(page); | |
| var items = document.querySelectorAll('.nav-item'); | |
| for (var i = 0; i < items.length; i++) { | |
| if (items[i].dataset.page === page) { | |
| items[i].classList.add('active'); | |
| } else { | |
| items[i].classList.remove('active'); | |
| } | |
| } | |
| var contentEl = document.getElementById('content'); | |
| var md = PAGES[page]; | |
| if (!md) { | |
| contentEl.innerHTML = '<div class="empty-state"><h2>Page not found</h2><p>' + escH(page) + '.md does not exist.</p></div>'; | |
| return; | |
| } | |
| contentEl.innerHTML = marked.parse(md); | |
| // Rewrite .md links to hash navigation | |
| var links = contentEl.querySelectorAll('a[href]'); | |
| for (var i = 0; i < links.length; i++) { | |
| var href = links[i].getAttribute('href'); | |
| if (href && href.endsWith('.md') && href.indexOf('://') === -1) { | |
| var slug = href.replace(/\.md$/, ''); | |
| links[i].setAttribute('href', '#' + encodeURIComponent(slug)); | |
| (function(s) { | |
| links[i].addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| navigateTo(s); | |
| }); | |
| })(slug); | |
| } | |
| } | |
| // Convert mermaid code blocks into mermaid divs | |
| var mermaidBlocks = contentEl.querySelectorAll('pre code.language-mermaid'); | |
| for (var i = 0; i < mermaidBlocks.length; i++) { | |
| var pre = mermaidBlocks[i].parentElement; | |
| var div = document.createElement('div'); | |
| div.className = 'mermaid'; | |
| div.textContent = mermaidBlocks[i].textContent; | |
| pre.parentNode.replaceChild(div, pre); | |
| } | |
| try { mermaid.run({ querySelector: '.mermaid' }); } catch(e) {} | |
| window.scrollTo(0, 0); | |
| document.getElementById('sidebar').classList.remove('open'); | |
| } | |
| })(); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment