- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
23 lines
478 B
JavaScript
23 lines
478 B
JavaScript
'use strict';
|
|
|
|
function defineStyle(styles) {
|
|
return styles;
|
|
}
|
|
function defineStyleConfig(config) {
|
|
return config;
|
|
}
|
|
function createMultiStyleConfigHelpers(parts) {
|
|
return {
|
|
definePartsStyle(config) {
|
|
return config;
|
|
},
|
|
defineMultiStyleConfig(config) {
|
|
return { parts, ...config };
|
|
}
|
|
};
|
|
}
|
|
|
|
exports.createMultiStyleConfigHelpers = createMultiStyleConfigHelpers;
|
|
exports.defineStyle = defineStyle;
|
|
exports.defineStyleConfig = defineStyleConfig;
|