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/range-slider-demo/range-slider-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

222 lines
5.6 KiB
SCSS

@use 'ui-design-system/src/styles/semantic/index' as *;
.demo-container {
padding: $semantic-spacing-layout-lg;
max-width: 1200px;
margin: 0 auto;
h2 {
color: $semantic-color-text-primary;
font-size: $semantic-typography-heading-h2-size;
margin-bottom: $semantic-spacing-layout-lg;
border-bottom: 1px solid $semantic-color-border-subtle;
padding-bottom: $semantic-spacing-content-paragraph;
}
h3 {
color: $semantic-color-text-secondary;
font-size: $semantic-typography-heading-h3-size;
margin-bottom: $semantic-spacing-component-lg;
margin-top: $semantic-spacing-layout-lg;
}
h4 {
color: $semantic-color-text-primary;
font-size: $semantic-typography-heading-h4-size;
margin-bottom: $semantic-spacing-component-md;
}
}
.demo-section {
margin-bottom: $semantic-spacing-layout-xl;
&:last-child {
margin-bottom: 0;
}
}
.demo-column {
display: flex;
flex-direction: column;
gap: $semantic-spacing-component-lg;
}
.demo-item {
padding: $semantic-spacing-component-lg;
border: 1px solid $semantic-color-border-subtle;
border-radius: $semantic-border-radius-md;
background: $semantic-color-surface-primary;
&:hover {
border-color: $semantic-color-border-primary;
box-shadow: $semantic-shadow-elevation-1;
}
}
.demo-controls {
display: flex;
flex-direction: column;
gap: $semantic-spacing-component-md;
margin-bottom: $semantic-spacing-component-lg;
padding: $semantic-spacing-component-lg;
background: $semantic-color-surface-secondary;
border-radius: $semantic-border-radius-lg;
border: 1px solid $semantic-color-border-subtle;
.control-row {
display: flex;
gap: $semantic-spacing-component-lg;
flex-wrap: wrap;
align-items: end;
}
.control-group {
display: flex;
flex-direction: column;
gap: $semantic-spacing-component-xs;
min-width: 150px;
label {
font-size: $semantic-typography-font-size-sm;
font-weight: $semantic-typography-font-weight-medium;
color: $semantic-color-text-primary;
}
input[type="range"] {
width: 100%;
}
input[type="checkbox"] {
margin-right: $semantic-spacing-component-xs;
}
select {
padding: $semantic-spacing-component-xs $semantic-spacing-component-sm;
border: 1px solid $semantic-color-border-primary;
border-radius: $semantic-border-radius-sm;
background: $semantic-color-surface-primary;
color: $semantic-color-text-primary;
font-size: $semantic-typography-font-size-sm;
&:focus {
outline: 2px solid $semantic-color-primary;
outline-offset: 2px;
border-color: $semantic-color-primary;
}
}
}
}
.demo-interactive-result {
padding: $semantic-spacing-component-xl;
background: $semantic-color-surface-primary;
border-radius: $semantic-border-radius-lg;
border: 2px dashed $semantic-color-border-subtle;
}
.demo-form {
padding: $semantic-spacing-component-lg;
background: $semantic-color-surface-primary;
border-radius: $semantic-border-radius-lg;
border: 1px solid $semantic-color-border-subtle;
.form-row {
margin-bottom: $semantic-spacing-component-lg;
&:last-child {
margin-bottom: 0;
}
}
.form-output {
margin-top: $semantic-spacing-component-xl;
padding: $semantic-spacing-component-md;
background: $semantic-color-surface-secondary;
border-radius: $semantic-border-radius-md;
border: 1px solid $semantic-color-border-subtle;
pre {
margin: 0;
font-size: $semantic-typography-font-size-sm;
color: $semantic-color-text-secondary;
white-space: pre-wrap;
word-break: break-word;
}
}
}
.event-log {
margin-top: $semantic-spacing-component-lg;
padding: $semantic-spacing-component-md;
background: $semantic-color-surface-secondary;
border-radius: $semantic-border-radius-md;
border: 1px solid $semantic-color-border-subtle;
.event-list {
max-height: 200px;
overflow-y: auto;
margin-bottom: $semantic-spacing-component-md;
padding: $semantic-spacing-component-sm;
background: $semantic-color-surface-primary;
border-radius: $semantic-border-radius-sm;
border: 1px solid $semantic-color-border-subtle;
.event-item {
font-size: $semantic-typography-font-size-xs;
color: $semantic-color-text-secondary;
padding: $semantic-spacing-component-xs 0;
border-bottom: 1px solid $semantic-color-border-subtle;
&:last-child {
border-bottom: none;
}
}
}
button {
padding: $semantic-spacing-component-sm $semantic-spacing-component-md;
border: 1px solid $semantic-color-border-primary;
border-radius: $semantic-border-radius-sm;
background: $semantic-color-surface-primary;
color: $semantic-color-text-primary;
font-size: $semantic-typography-font-size-sm;
cursor: pointer;
transition: all $semantic-motion-duration-fast $semantic-easing-standard;
&:hover {
background: $semantic-color-surface-secondary;
border-color: $semantic-color-border-primary;
}
&:focus {
outline: 2px solid $semantic-color-primary;
outline-offset: 2px;
}
}
}
// Responsive design
@media (max-width: $semantic-breakpoint-md - 1) {
.demo-container {
padding: $semantic-spacing-layout-md;
}
.demo-controls .control-row {
flex-direction: column;
align-items: stretch;
.control-group {
min-width: auto;
}
}
}
@media (max-width: $semantic-breakpoint-sm - 1) {
.demo-container {
padding: $semantic-spacing-layout-sm;
}
.demo-item {
padding: $semantic-spacing-component-md;
}
}