pull/6447/head
Cagatay Civici 2024-09-20 12:28:12 +03:00
commit 2768fe6024
3 changed files with 305 additions and 271 deletions

View File

@ -79541,31 +79541,31 @@
"description": "Font weight of root" "description": "Font weight of root"
}, },
{ {
"name": "focus.fontSize", "name": "active.fontSize",
"token": "floatlabel.focus.font.size", "token": "floatlabel.active.font.size",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus font size of root" "description": "Active font size of root"
}, },
{ {
"name": "focus.fontWeight", "name": "active.fontWeight",
"token": "floatlabel.focus.font.weight", "token": "floatlabel.active.font.weight",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus font weight of root" "description": "Active font weight of root"
}, },
{ {
"name": "focus.top", "name": "active.top",
"token": "floatlabel.over.focus.top", "token": "floatlabel.over.active.top",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus top of over" "description": "Active top of over"
}, },
{ {
"name": "input.paddingTop", "name": "input.paddingTop",
@ -79577,13 +79577,13 @@
"description": "Input padding top of in" "description": "Input padding top of in"
}, },
{ {
"name": "focus.top", "name": "active.top",
"token": "floatlabel.in.focus.top", "token": "floatlabel.in.active.top",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus top of in" "description": "Active top of in"
}, },
{ {
"name": "input.paddingTop", "name": "input.paddingTop",
@ -79604,22 +79604,22 @@
"description": "Input padding bottom of on" "description": "Input padding bottom of on"
}, },
{ {
"name": "focus.background", "name": "active.background",
"token": "floatlabel.on.focus.background", "token": "floatlabel.on.active.background",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus background of on" "description": "Active background of on"
}, },
{ {
"name": "focus.padding", "name": "active.padding",
"token": "floatlabel.on.focus.padding", "token": "floatlabel.on.active.padding",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Focus padding of on" "description": "Active padding of on"
} }
] ]
} }

View File

@ -64,19 +64,19 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
*/ */
fontWeight?: string; fontWeight?: string;
/** /**
* Focus of root * Active of root
*/ */
focus?: { active?: {
/** /**
* Focus font size of root * Active font size of root
* *
* @designToken floatlabel.focus.font.size * @designToken floatlabel.active.font.size
*/ */
fontSize?: string; fontSize?: string;
/** /**
* Focus font weight of root * Active font weight of root
* *
* @designToken floatlabel.focus.font.weight * @designToken floatlabel.active.font.weight
*/ */
fontWeight?: string; fontWeight?: string;
}; };
@ -86,13 +86,13 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
*/ */
over?: { over?: {
/** /**
* Focus of over * Active of over
*/ */
focus?: { active?: {
/** /**
* Focus top of over * Active top of over
* *
* @designToken floatlabel.over.focus.top * @designToken floatlabel.over.active.top
*/ */
top?: string; top?: string;
}; };
@ -113,13 +113,13 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
paddingTop?: string; paddingTop?: string;
}; };
/** /**
* Focus of in * Active of in
*/ */
focus?: { active?: {
/** /**
* Focus top of in * Active top of in
* *
* @designToken floatlabel.in.focus.top * @designToken floatlabel.in.active.top
*/ */
top?: string; top?: string;
}; };
@ -146,19 +146,19 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
paddingBottom?: string; paddingBottom?: string;
}; };
/** /**
* Focus of on * Active of on
*/ */
focus?: { active?: {
/** /**
* Focus background of on * Active background of on
* *
* @designToken floatlabel.on.focus.background * @designToken floatlabel.on.active.background
*/ */
background?: string; background?: string;
/** /**
* Focus padding of on * Active padding of on
* *
* @designToken floatlabel.on.focus.padding * @designToken floatlabel.on.active.padding
*/ */
padding?: string; padding?: string;
}; };

File diff suppressed because it is too large Load Diff