wishthis/node_modules/autoprefixer/lib/hacks/align-items.js

47 lines
968 B
JavaScript
Raw Normal View History

2023-08-17 09:47:40 +00:00
let flexSpec = require('./flex-spec')
let Declaration = require('../declaration')
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
class AlignItems extends Declaration {
/**
* Return property name by final spec
*/
normalize() {
return 'align-items'
2022-01-21 08:28:41 +00:00
}
/**
* Change property name for 2009 and 2012 specs
*/
2023-08-17 09:47:40 +00:00
prefixed(prop, prefix) {
let spec
;[spec, prefix] = flexSpec(prefix)
2022-01-21 08:28:41 +00:00
if (spec === 2009) {
2023-08-17 09:47:40 +00:00
return prefix + 'box-align'
2022-01-21 08:28:41 +00:00
}
if (spec === 2012) {
2023-08-17 09:47:40 +00:00
return prefix + 'flex-align'
2022-01-21 08:28:41 +00:00
}
2023-08-17 09:47:40 +00:00
return super.prefixed(prop, prefix)
2022-01-21 08:28:41 +00:00
}
/**
* Change value for 2009 and 2012 specs
*/
2023-08-17 09:47:40 +00:00
set(decl, prefix) {
let spec = flexSpec(prefix)[0]
2022-01-21 08:28:41 +00:00
if (spec === 2009 || spec === 2012) {
2023-08-17 09:47:40 +00:00
decl.value = AlignItems.oldValues[decl.value] || decl.value
2022-01-21 08:28:41 +00:00
}
2023-08-17 09:47:40 +00:00
return super.set(decl, prefix)
}
}
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
AlignItems.names = ['align-items', 'flex-align', 'box-align']
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
AlignItems.oldValues = {
2022-01-21 08:28:41 +00:00
'flex-end': 'end',
'flex-start': 'start'
2023-08-17 09:47:40 +00:00
}
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
module.exports = AlignItems