feat: Add new UI components for appointment and room management, including badges, appointment slots, and room grid elements.

This commit is contained in:
Ho Ngoc Hai
2026-02-03 03:17:27 +07:00
parent 0f76a60dfc
commit 56a5185119
3 changed files with 2266 additions and 2 deletions

View File

@@ -363,8 +363,8 @@ class PencilBuilder:
continue
print(f"Scanning {atom_dir}...")
# Sorting ensures deterministic order
for pen_file in sorted(dir_path.glob('*.pen')):
# Sorting ensures deterministic order - use rglob for subdirectories
for pen_file in sorted(dir_path.rglob('*.pen')):
with open(pen_file, 'r') as f:
data = json.load(f)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff