Add comprehensive semantic design token system

Implement complete semantic layer for all design tokens including typography, spacing, motion, colors, borders, shadows, z-index, opacity, and glass effects. Each semantic token maps base design tokens to contextual usage patterns for improved maintainability and developer experience.

Features:
- Complete semantic typography system with font weights, sizes, line heights, and letter spacing
- Comprehensive spacing tokens for components, layouts, and interactions
- Full motion system with durations, easing, transitions, and hover transforms
- Semantic color system with individual access to all Material Design 3 colors
- Border tokens with widths, radius, and styles for all use cases
- Shadow system including standard and AI-themed shadows
- Z-index layering system for proper stacking context
- Opacity tokens for transparency and visibility states
- Glass morphism tokens with blur, opacity, and theming support

All semantic tokens provide direct access to base token values while offering meaningful contextual aliases for common UI patterns.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
skyai_dev
2025-09-02 10:24:04 +10:00
parent cd3211101c
commit c803831f60
193 changed files with 23363 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SharedUtilsComponent } from './shared-utils.component';
describe('SharedUtilsComponent', () => {
let component: SharedUtilsComponent;
let fixture: ComponentFixture<SharedUtilsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [SharedUtilsComponent]
})
.compileComponents();
fixture = TestBed.createComponent(SharedUtilsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'lib-shared-utils',
imports: [],
template: `
<p>
shared-utils works!
</p>
`,
styles: ``
})
export class SharedUtilsComponent {
}

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { SharedUtilsService } from './shared-utils.service';
describe('SharedUtilsService', () => {
let service: SharedUtilsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SharedUtilsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View File

@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class SharedUtilsService {
constructor() { }
}

View File

@@ -0,0 +1,6 @@
/*
* Public API Surface of shared-utils
*/
export * from './lib/shared-utils.service';
export * from './lib/shared-utils.component';