详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
33 lines
830 B
JavaScript
33 lines
830 B
JavaScript
let Declaration = require('../declaration')
|
|
let utils = require('./grid-utils')
|
|
|
|
class PlaceSelf extends Declaration {
|
|
/**
|
|
* Translate place-self to separate -ms- prefixed properties
|
|
*/
|
|
insert(decl, prefix, prefixes) {
|
|
if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
|
|
|
|
// prevent doubling of prefixes
|
|
if (decl.parent.some(i => i.prop === '-ms-grid-row-align')) {
|
|
return undefined
|
|
}
|
|
|
|
let [[first, second]] = utils.parse(decl)
|
|
|
|
if (second) {
|
|
utils.insertDecl(decl, 'grid-row-align', first)
|
|
utils.insertDecl(decl, 'grid-column-align', second)
|
|
} else {
|
|
utils.insertDecl(decl, 'grid-row-align', first)
|
|
utils.insertDecl(decl, 'grid-column-align', first)
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
}
|
|
|
|
PlaceSelf.names = ['place-self']
|
|
|
|
module.exports = PlaceSelf
|