@leafer-ui/interface 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/IUI.ts +2 -0
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/interface",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "@leafer-ui/interface",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@leafer/interface": "1.3.
|
|
25
|
+
"@leafer/interface": "1.3.3"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/IUI.ts
CHANGED
|
@@ -445,6 +445,7 @@ interface IUIAttrData {
|
|
|
445
445
|
focusStyle?: IStateStyle
|
|
446
446
|
selectedStyle?: IStateStyle
|
|
447
447
|
disabledStyle?: IStateStyle
|
|
448
|
+
placeholderStyle?: IStateStyle
|
|
448
449
|
}
|
|
449
450
|
|
|
450
451
|
export interface IFindUIMethod {
|
|
@@ -474,6 +475,7 @@ export interface IUIData extends IUIAttrData, IUIComputedData, ILeafData {
|
|
|
474
475
|
|
|
475
476
|
__drawAfterFill?: boolean
|
|
476
477
|
readonly __clipAfterFill?: boolean
|
|
478
|
+
readonly __hasSurface?: boolean
|
|
477
479
|
|
|
478
480
|
__isOverflow?: boolean
|
|
479
481
|
__blendLayer?: boolean
|
package/types/index.d.ts
CHANGED
|
@@ -895,6 +895,7 @@ interface IUIAttrData {
|
|
|
895
895
|
focusStyle?: IStateStyle;
|
|
896
896
|
selectedStyle?: IStateStyle;
|
|
897
897
|
disabledStyle?: IStateStyle;
|
|
898
|
+
placeholderStyle?: IStateStyle;
|
|
898
899
|
}
|
|
899
900
|
interface IFindUIMethod {
|
|
900
901
|
(leaf: IUI, options?: any): IAnswer;
|
|
@@ -913,6 +914,7 @@ interface IUIData extends IUIAttrData, IUIComputedData, ILeafData {
|
|
|
913
914
|
__opacityStroke?: boolean;
|
|
914
915
|
__drawAfterFill?: boolean;
|
|
915
916
|
readonly __clipAfterFill?: boolean;
|
|
917
|
+
readonly __hasSurface?: boolean;
|
|
916
918
|
__isOverflow?: boolean;
|
|
917
919
|
__blendLayer?: boolean;
|
|
918
920
|
__boxStroke?: boolean;
|