mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 20:37:47 +02:00
* Added closest and some other elements to TJSElement
This commit is contained in:
parent
3a33eee80d
commit
44f9c22f18
@ -39,6 +39,9 @@ Type
|
|||||||
TJSElement = class;
|
TJSElement = class;
|
||||||
TJSCSSStyleSheet = Class;
|
TJSCSSStyleSheet = Class;
|
||||||
TJSNodeFilter = Class;
|
TJSNodeFilter = Class;
|
||||||
|
TJSShadowRoot = class;
|
||||||
|
TJSAnimation = class;
|
||||||
|
TJSAnimationTimeline = class;
|
||||||
|
|
||||||
TJSMouseEvent = Class;
|
TJSMouseEvent = Class;
|
||||||
TJSWheelEvent = Class;
|
TJSWheelEvent = Class;
|
||||||
@ -407,6 +410,30 @@ Type
|
|||||||
|
|
||||||
TJSClientRectArray = array of TJSClientRect;
|
TJSClientRectArray = array of TJSClientRect;
|
||||||
|
|
||||||
|
TJSCheckVisibilityOptions = class external name 'Object' (TJSObject)
|
||||||
|
contentVisibilityAuto : Boolean;
|
||||||
|
opacityProperty : Boolean;
|
||||||
|
visibilityProperty : Boolean;
|
||||||
|
checkOpacity : Boolean;
|
||||||
|
checkVisibility : Boolean;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TJSAttachShadowOptions = class external name 'Object' (TJSObject)
|
||||||
|
mode : string;
|
||||||
|
clonable : boolean;
|
||||||
|
delegatesFocus : boolean;
|
||||||
|
serializable : boolean;
|
||||||
|
slotAssignment : string;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TJSAnimateOptions = class external name 'Object' (TJSObject)
|
||||||
|
id : string;
|
||||||
|
rangeEnd: JSValue;
|
||||||
|
rangeStart : JSValue;
|
||||||
|
timeline : TJSAnimationTimeline;
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
TJSElement = class external name 'Element' (TJSNode)
|
TJSElement = class external name 'Element' (TJSNode)
|
||||||
Private
|
Private
|
||||||
FAttributes : TJSNamedNodeMap; external name 'attributes';
|
FAttributes : TJSNamedNodeMap; external name 'attributes';
|
||||||
@ -439,10 +466,20 @@ Type
|
|||||||
outerHTML : string;
|
outerHTML : string;
|
||||||
scrollLeft : NativeInt;
|
scrollLeft : NativeInt;
|
||||||
scrollTop : NativeInt;
|
scrollTop : NativeInt;
|
||||||
|
function animate(keyframes : TJSArray; options : TJSAnimateOptions) : TJSAnimation;
|
||||||
procedure append(aText : String); overload;
|
procedure append(aText : String); overload;
|
||||||
procedure append(aNode : TJSElement); overload;
|
procedure append(aNode : TJSElement); overload;
|
||||||
procedure append(aText : String; aNode : TJSElement); varargs; overload;
|
procedure append(aText : String; aNode : TJSElement); varargs; overload;
|
||||||
procedure append(aNode1,aNode2: TJSElement); varargs; overload;
|
procedure append(aNode1,aNode2: TJSElement); varargs; overload;
|
||||||
|
function attachShadow : TJSShadowRoot;
|
||||||
|
function attachShadow(aOptions : TJSAttachShadowOptions) : TJSShadowRoot;
|
||||||
|
procedure before(aText : String); overload;
|
||||||
|
procedure before(aText : String; aNode : TJSElement); varargs; overload;
|
||||||
|
procedure before(aNode : TJSElement); overload;
|
||||||
|
procedure before(aNode1,aNode2 : TJSElement); overload; varargs;
|
||||||
|
function checkVisibility : boolean;
|
||||||
|
function checkVisibility(Options : TJSCheckVisibilityOptions) : Boolean;
|
||||||
|
function closest(aSelector : String) : TJSElement;
|
||||||
function getAttribute(aName : string) : string;
|
function getAttribute(aName : string) : string;
|
||||||
function getAttributeNode(aName : string) : TJSAttr;
|
function getAttributeNode(aName : string) : TJSAttr;
|
||||||
function getAttributeNodeNS(aNameSpace, aName : string) : TJSAttr;
|
function getAttributeNodeNS(aNameSpace, aName : string) : TJSAttr;
|
||||||
@ -3304,6 +3341,41 @@ Type
|
|||||||
procedure unobserve(aTarget : TJSElement);
|
procedure unobserve(aTarget : TJSElement);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
TJSAnimationTimeline = class external name 'AnimationTimeline' (TJSObject)
|
||||||
|
currentTime : nativeInt;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TJSAnimationTiming = class external name 'Object' (TJSObject)
|
||||||
|
delay : NativeInt;
|
||||||
|
direction : string;
|
||||||
|
duration: NativeInt;
|
||||||
|
durationString : string external name 'duration';
|
||||||
|
easing : string;
|
||||||
|
endDelay : NativeInt;
|
||||||
|
fill : string;
|
||||||
|
iterations : NativeInt;
|
||||||
|
iterationStart : NativeInt;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TJSAnimationEffect = class external name 'AnimationEffect' (TJSObject)
|
||||||
|
getTiming : TJSAnimationTiming;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TJSAnimation = class external name 'Animation' (TJSObject)
|
||||||
|
currentTime : nativeInt;
|
||||||
|
effect : TJSAnimationEffect;
|
||||||
|
id : string;
|
||||||
|
overallProgress : double;
|
||||||
|
pending : boolean;
|
||||||
|
playbackRate : integer;
|
||||||
|
playState : string;
|
||||||
|
ready : TJSPromise;
|
||||||
|
replaceState : String;
|
||||||
|
startTime : double;
|
||||||
|
timeline : TJSAnimationTimeline;
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
var
|
var
|
||||||
document : TJSDocument; external name 'document';
|
document : TJSDocument; external name 'document';
|
||||||
window : TJSWindow; external name 'window';
|
window : TJSWindow; external name 'window';
|
||||||
|
Loading…
Reference in New Issue
Block a user