This repository has been archived on 2026-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ui-essentials/projects/demo-ui-essentials/src/app/demos/grid-system-demo/grid-system-demo.component.scss
Jules 2a28a8abbd Complete library submodule standardization and consumer integration
🎯 Major Achievements:
- Standardized 193+ SCSS imports across all libraries
- Created 12 independent Git repositories with clean submodule structure
- Eliminated relative path dependencies for true library portability
- Added comprehensive consumer integration documentation

📦 Libraries Successfully Published:
• ui-design-system (foundation)
• ui-essentials (components)
• shared-utils (utilities)
• auth-client (authentication)
• ui-landing-pages (marketing components)
• ui-code-display (syntax highlighting)
• ui-accessibility (WCAG compliance)
• hcl-studio (color management)
• ui-animations (CSS animations)
• ui-backgrounds (background effects)
• ui-font-manager (typography)
• ui-data-utils (data manipulation)

🔧 Technical Improvements:
- All SCSS imports now use standardized 'ui-design-system/' paths
- Libraries work independently as Git submodules
- Consumer projects can selectively include only needed libraries
- Professional Git history with initial commits for each library
- Updated integration guides with step-by-step workflows

📋 Documentation Added:
- CONSUMER_INTEGRATION_GUIDE.md - Complete setup instructions
- Updated SUBMODULE_INTEGRATION_GUIDE.md - Enhanced with dependency info
- Library-specific README files for all repositories

🚀 Ready for Production:
- All libraries pushed to https://git.sky-ai.com/jules/*
- Clean separation of concerns across library boundaries
- Independent versioning and release cycles possible
- Optimal structure for LLM analysis and maintenance

This completes the monorepo-to-submodule transformation, making the SSuite library ecosystem ready for professional distribution and consumption.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-12 14:42:01 +10:00

81 lines
1.6 KiB
SCSS

@use 'ui-design-system/src/styles/semantic' as tokens;
.demo-container {
padding: tokens.$semantic-spacing-layout-md;
max-width: 1200px;
margin: 0 auto;
}
.demo-section {
margin-bottom: tokens.$semantic-spacing-layout-lg;
h3 {
margin-bottom: tokens.$semantic-spacing-component-md;
color: tokens.$semantic-color-text-primary;
font-size: 1.25rem;
font-weight: 600;
}
h4 {
margin-bottom: tokens.$semantic-spacing-component-sm;
color: tokens.$semantic-color-text-secondary;
font-size: 1.125rem;
font-weight: 500;
}
p {
color: tokens.$semantic-color-text-secondary;
margin-bottom: tokens.$semantic-spacing-component-md;
}
}
.demo-row {
display: flex;
flex-wrap: wrap;
gap: tokens.$semantic-spacing-layout-md;
}
.demo-grid-container {
flex: 1;
min-width: 300px;
margin-bottom: tokens.$semantic-spacing-layout-sm;
}
.demo-grid {
border: 2px dashed tokens.$semantic-color-border-subtle;
border-radius: tokens.$semantic-border-radius-md;
padding: tokens.$semantic-spacing-component-md;
&--fixed-height {
min-height: 200px;
}
}
.demo-grid-item {
background: tokens.$semantic-color-container-primary;
color: tokens.$semantic-color-on-container-primary;
padding: tokens.$semantic-spacing-component-sm;
border-radius: tokens.$semantic-border-radius-sm;
text-align: center;
font-weight: 500;
min-height: 60px;
display: flex;
align-items: center;
justify-content: center;
&--small {
width: 80px;
height: 40px;
min-height: auto;
}
}
@media (max-width: 768px) {
.demo-row {
flex-direction: column;
}
.demo-grid-container {
min-width: auto;
}
}