- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
let OldValue = require('../old-value')
|
|
let Value = require('../value')
|
|
|
|
function regexp(name) {
|
|
return new RegExp(`(^|[\\s,(])(${name}($|[\\s),]))`, 'gi')
|
|
}
|
|
|
|
class Intrinsic extends Value {
|
|
add(decl, prefix) {
|
|
if (decl.prop.includes('grid') && prefix !== '-webkit-') {
|
|
return undefined
|
|
}
|
|
return super.add(decl, prefix)
|
|
}
|
|
|
|
isStretch() {
|
|
return (
|
|
this.name === 'stretch' ||
|
|
this.name === 'fill' ||
|
|
this.name === 'fill-available'
|
|
)
|
|
}
|
|
|
|
old(prefix) {
|
|
let prefixed = prefix + this.name
|
|
if (this.isStretch()) {
|
|
if (prefix === '-moz-') {
|
|
prefixed = '-moz-available'
|
|
} else if (prefix === '-webkit-') {
|
|
prefixed = '-webkit-fill-available'
|
|
}
|
|
}
|
|
return new OldValue(this.name, prefixed, prefixed, regexp(prefixed))
|
|
}
|
|
|
|
regexp() {
|
|
if (!this.regexpCache) this.regexpCache = regexp(this.name)
|
|
return this.regexpCache
|
|
}
|
|
|
|
replace(string, prefix) {
|
|
if (prefix === '-moz-' && this.isStretch()) {
|
|
return string.replace(this.regexp(), '$1-moz-available$3')
|
|
}
|
|
if (prefix === '-webkit-' && this.isStretch()) {
|
|
return string.replace(this.regexp(), '$1-webkit-fill-available$3')
|
|
}
|
|
return super.replace(string, prefix)
|
|
}
|
|
}
|
|
|
|
Intrinsic.names = [
|
|
'max-content',
|
|
'min-content',
|
|
'fit-content',
|
|
'fill',
|
|
'fill-available',
|
|
'stretch'
|
|
]
|
|
|
|
module.exports = Intrinsic
|