Update API doc
parent
f492825569
commit
a93100de73
|
@ -79541,31 +79541,31 @@
|
|||
"description": "Font weight of root"
|
||||
},
|
||||
{
|
||||
"name": "focus.fontSize",
|
||||
"token": "floatlabel.focus.font.size",
|
||||
"name": "active.fontSize",
|
||||
"token": "floatlabel.active.font.size",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus font size of root"
|
||||
"description": "Active font size of root"
|
||||
},
|
||||
{
|
||||
"name": "focus.fontWeight",
|
||||
"token": "floatlabel.focus.font.weight",
|
||||
"name": "active.fontWeight",
|
||||
"token": "floatlabel.active.font.weight",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus font weight of root"
|
||||
"description": "Active font weight of root"
|
||||
},
|
||||
{
|
||||
"name": "focus.top",
|
||||
"token": "floatlabel.over.focus.top",
|
||||
"name": "active.top",
|
||||
"token": "floatlabel.over.active.top",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus top of over"
|
||||
"description": "Active top of over"
|
||||
},
|
||||
{
|
||||
"name": "input.paddingTop",
|
||||
|
@ -79577,13 +79577,13 @@
|
|||
"description": "Input padding top of in"
|
||||
},
|
||||
{
|
||||
"name": "focus.top",
|
||||
"token": "floatlabel.in.focus.top",
|
||||
"name": "active.top",
|
||||
"token": "floatlabel.in.active.top",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus top of in"
|
||||
"description": "Active top of in"
|
||||
},
|
||||
{
|
||||
"name": "input.paddingTop",
|
||||
|
@ -79604,22 +79604,22 @@
|
|||
"description": "Input padding bottom of on"
|
||||
},
|
||||
{
|
||||
"name": "focus.background",
|
||||
"token": "floatlabel.on.focus.background",
|
||||
"name": "active.background",
|
||||
"token": "floatlabel.on.active.background",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus background of on"
|
||||
"description": "Active background of on"
|
||||
},
|
||||
{
|
||||
"name": "focus.padding",
|
||||
"token": "floatlabel.on.focus.padding",
|
||||
"name": "active.padding",
|
||||
"token": "floatlabel.on.active.padding",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Focus padding of on"
|
||||
"description": "Active padding of on"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -64,19 +64,19 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
|
|||
*/
|
||||
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;
|
||||
/**
|
||||
* Focus font weight of root
|
||||
* Active font weight of root
|
||||
*
|
||||
* @designToken floatlabel.focus.font.weight
|
||||
* @designToken floatlabel.active.font.weight
|
||||
*/
|
||||
fontWeight?: string;
|
||||
};
|
||||
|
@ -86,13 +86,13 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
|
|||
*/
|
||||
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;
|
||||
};
|
||||
|
@ -113,13 +113,13 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
|
|||
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;
|
||||
};
|
||||
|
@ -146,19 +146,19 @@ export interface FloatLabelDesignTokens extends ColorSchemeDesignToken<FloatLabe
|
|||
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;
|
||||
/**
|
||||
* Focus padding of on
|
||||
* Active padding of on
|
||||
*
|
||||
* @designToken floatlabel.on.focus.padding
|
||||
* @designToken floatlabel.on.active.padding
|
||||
*/
|
||||
padding?: string;
|
||||
};
|
||||
|
|
500
pnpm-lock.yaml
500
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue