feat: add advanced analytics and territory management system
- Add comprehensive analytics components with export functionality - Implement territory management with manager performance tracking - Add seatmap components for venue layout management - Create customer management features with modal interface - Add advanced hooks for dashboard flags and territory data - Implement seat selection and venue management utilities - Add type definitions for ticketing and seatmap systems 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -135,7 +135,7 @@ async function testCalendarThemes() {
|
||||
const hardcodedElements = [];
|
||||
const elements = document.querySelectorAll('*');
|
||||
|
||||
for (let el of elements) {
|
||||
for (const el of elements) {
|
||||
const classes = el.className;
|
||||
if (typeof classes === 'string') {
|
||||
// Check for hardcoded gray colors
|
||||
@@ -224,7 +224,7 @@ async function testCalendarThemes() {
|
||||
const elementsWithCSSVars = [];
|
||||
const allElements = document.querySelectorAll('*');
|
||||
|
||||
for (let el of allElements) {
|
||||
for (const el of allElements) {
|
||||
const style = getComputedStyle(el);
|
||||
const bgColor = style.backgroundColor;
|
||||
const color = style.color;
|
||||
|
||||
Reference in New Issue
Block a user