first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {MessageDescriptor} from '@common/i18n/message-descriptor';
export interface BackgroundSelectorConfig extends EditableBackgroundProps {
type: 'image' | 'gradient' | 'color';
id: string;
label: MessageDescriptor;
}
export interface EditableBackgroundProps {
backgroundColor?: string;
backgroundAttachment?: 'scroll' | 'fixed' | 'local' | 'initial' | 'inherit';
backgroundSize?: 'auto' | 'cover' | 'contain' | 'initial' | 'inherit';
backgroundRepeat?: 'repeat' | 'no-repeat' | 'repeat-x' | 'repeat-y';
backgroundPosition?: string;
backgroundImage?: string;
color?: string;
}