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/autocomplete-demo/autocomplete-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

184 lines
3.8 KiB
SCSS

@use 'ui-design-system/src/styles/semantic/index' as *;
.demo-container {
padding: 32px;
max-width: 1200px;
margin: 0 auto;
h2 {
color: $semantic-color-text-primary;
font-size: 32px;
margin-bottom: 48px;
border-bottom: $semantic-border-width-1 solid $semantic-color-border-primary;
padding-bottom: 16px;
}
h3 {
color: $semantic-color-text-primary;
font-size: 24px;
margin-bottom: 32px;
}
h4 {
color: $semantic-color-text-primary;
font-size: 20px;
margin-bottom: 16px;
}
}
.demo-section {
margin-bottom: 64px;
padding: 32px;
background: $semantic-color-surface-primary;
border: $semantic-border-width-1 solid $semantic-color-border-primary;
border-radius: $semantic-border-radius-lg;
box-shadow: $semantic-shadow-elevation-1;
}
.demo-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
align-items: start;
}
.demo-item {
display: flex;
flex-direction: column;
gap: 12px;
> label {
font-weight: 500;
color: $semantic-color-text-secondary;
font-size: 14px;
}
}
.demo-form {
.form-values {
margin-top: 32px;
padding: 16px;
background: $semantic-color-surface-secondary;
border-radius: $semantic-border-radius-md;
border: $semantic-border-width-1 solid $semantic-color-border-subtle;
h4 {
margin-bottom: 12px;
}
pre {
background: $semantic-color-background;
padding: 12px;
border-radius: $semantic-border-radius-sm;
border: $semantic-border-width-1 solid $semantic-color-border-primary;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 12px;
color: $semantic-color-text-primary;
overflow-x: auto;
margin-bottom: 12px;
}
p {
margin: 0;
color: $semantic-color-text-secondary;
font-size: 14px;
}
}
}
.event-log {
margin-top: 32px;
.log-container {
max-height: 300px;
overflow-y: auto;
background: $semantic-color-background;
border: $semantic-border-width-1 solid $semantic-color-border-primary;
border-radius: $semantic-border-radius-md;
margin-bottom: 16px;
}
.log-entry {
display: grid;
grid-template-columns: 120px 1fr auto;
gap: 12px;
padding: 8px 12px;
border-bottom: $semantic-border-width-1 solid $semantic-color-border-subtle;
font-size: 12px;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
&:last-child {
border-bottom: none;
}
.log-event {
font-weight: 500;
color: $semantic-color-brand-primary;
}
.log-data {
color: $semantic-color-text-primary;
overflow-wrap: break-word;
}
.log-time {
color: $semantic-color-text-tertiary;
font-size: 11px;
}
}
.clear-log-btn {
padding: 8px 12px;
background: $semantic-color-surface-secondary;
border: $semantic-border-width-1 solid $semantic-color-border-primary;
border-radius: $semantic-border-radius-sm;
color: $semantic-color-text-secondary;
font-size: 12px;
cursor: pointer;
transition: all 0.2s ease;
&:hover {
background: $semantic-color-surface-elevated;
border-color: $semantic-color-border-focus;
}
&:focus-visible {
outline: 2px solid $semantic-color-brand-primary;
outline-offset: 2px;
}
}
}
// Responsive design
@media (max-width: 1024px - 1) {
.demo-row {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 24px;
}
}
@media (max-width: 768px - 1) {
.demo-container {
padding: 24px;
}
.demo-section {
padding: 24px;
}
.demo-row {
grid-template-columns: 1fr;
gap: 24px;
}
.event-log {
.log-entry {
grid-template-columns: 1fr;
gap: 8px;
.log-time {
text-align: right;
}
}
}
}