Added minimal functionality for Robot teaching
- Added minimal HMI - Added possibility to open and close all chamber doors
This commit is contained in:
13440
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/JQuery.d.ts
vendored
Normal file
13440
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/JQuery.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
13944
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/JQueryStatic.d.ts
vendored
Normal file
13944
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/JQueryStatic.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
204
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/legacy.d.ts
vendored
Normal file
204
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/legacy.d.ts
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
// tslint:disable:no-irregular-whitespace
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQueryCallback extends JQuery.Callbacks {}
|
||||
interface JQueryDeferred<T> extends JQuery.Deferred<T> {}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQueryEventConstructor extends JQuery.EventStatic {}
|
||||
interface JQueryDeferred<T> extends JQuery.Deferred<T> {}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQueryAjaxSettings extends JQuery.AjaxSettings {}
|
||||
interface JQueryAnimationOptions extends JQuery.EffectsOptions<Element> {}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQueryCoordinates extends JQuery.Coordinates {}
|
||||
interface JQueryGenericPromise<T> extends JQuery.Thenable<T> {}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQueryXHR extends JQuery.jqXHR {}
|
||||
interface JQueryPromise<T> extends JQuery.Promise<T> {}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQuerySerializeArrayElement extends JQuery.NameValuePair {}
|
||||
|
||||
/**
|
||||
* @deprecated Deprecated since 1.9. See \`{@link https://api.jquery.com/jQuery.support/ }\`.
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface JQuerySupport extends JQuery.PlainObject {}
|
||||
|
||||
// Legacy types that are not represented in the current type definitions are marked deprecated.
|
||||
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Deferred.Callback }\` or \`{@link JQuery.Deferred.CallbackBase }\`.
|
||||
*/
|
||||
interface JQueryPromiseCallback<T> {
|
||||
(value?: T, ...args: any[]): void;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQueryStatic.param JQueryStatic['param']}\`.
|
||||
*/
|
||||
interface JQueryParam {
|
||||
/**
|
||||
* Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
|
||||
* @param obj An array or object to serialize.
|
||||
* @param traditional A Boolean indicating whether to perform a traditional "shallow" serialization.
|
||||
*/
|
||||
(obj: any, traditional?: boolean): string;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Event }\`.
|
||||
*/
|
||||
interface BaseJQueryEventObject extends Event {
|
||||
/**
|
||||
* The current DOM element within the event bubbling phase.
|
||||
* @see \`{@link https://api.jquery.com/event.currentTarget/ }\`
|
||||
*/
|
||||
currentTarget: Element;
|
||||
/**
|
||||
* An optional object of data passed to an event method when the current executing handler is bound.
|
||||
* @see \`{@link https://api.jquery.com/event.data/ }\`
|
||||
*/
|
||||
data: any;
|
||||
/**
|
||||
* The element where the currently-called jQuery event handler was attached.
|
||||
* @see \`{@link https://api.jquery.com/event.delegateTarget/ }\`
|
||||
*/
|
||||
delegateTarget: Element;
|
||||
/**
|
||||
* Returns whether event.preventDefault() was ever called on this event object.
|
||||
* @see \`{@link https://api.jquery.com/event.isDefaultPrevented/ }\`
|
||||
*/
|
||||
isDefaultPrevented(): boolean;
|
||||
/**
|
||||
* Returns whether event.stopImmediatePropagation() was ever called on this event object.
|
||||
* @see \`{@link https://api.jquery.com/event.isImmediatePropagationStopped/ }\`
|
||||
*/
|
||||
isImmediatePropagationStopped(): boolean;
|
||||
/**
|
||||
* Returns whether event.stopPropagation() was ever called on this event object.
|
||||
* @see \`{@link https://api.jquery.com/event.isPropagationStopped/ }\`
|
||||
*/
|
||||
isPropagationStopped(): boolean;
|
||||
/**
|
||||
* The namespace specified when the event was triggered.
|
||||
* @see \`{@link https://api.jquery.com/event.namespace/ }\`
|
||||
*/
|
||||
namespace: string;
|
||||
/**
|
||||
* The browser's original Event object.
|
||||
* @see \`{@link https://api.jquery.com/category/events/event-object/ }\`
|
||||
*/
|
||||
originalEvent: Event;
|
||||
/**
|
||||
* If this method is called, the default action of the event will not be triggered.
|
||||
* @see \`{@link https://api.jquery.com/event.preventDefault/ }\`
|
||||
*/
|
||||
preventDefault(): any;
|
||||
/**
|
||||
* The other DOM element involved in the event, if any.
|
||||
* @see \`{@link https://api.jquery.com/event.relatedTarget/ }\`
|
||||
*/
|
||||
relatedTarget: Element;
|
||||
/**
|
||||
* The last value returned by an event handler that was triggered by this event, unless the value was undefined.
|
||||
* @see \`{@link https://api.jquery.com/event.result/ }\`
|
||||
*/
|
||||
result: any;
|
||||
/**
|
||||
* Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.
|
||||
* @see \`{@link https://api.jquery.com/event.stopImmediatePropagation/ }\`
|
||||
*/
|
||||
stopImmediatePropagation(): void;
|
||||
/**
|
||||
* Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
|
||||
* @see \`{@link https://api.jquery.com/event.stopPropagation/ }\`
|
||||
*/
|
||||
stopPropagation(): void;
|
||||
/**
|
||||
* The DOM element that initiated the event.
|
||||
* @see \`{@link https://api.jquery.com/event.target/ }\`
|
||||
*/
|
||||
target: Element;
|
||||
/**
|
||||
* The mouse position relative to the left edge of the document.
|
||||
* @see \`{@link https://api.jquery.com/event.pageX/ }\`
|
||||
*/
|
||||
pageX: number;
|
||||
/**
|
||||
* The mouse position relative to the top edge of the document.
|
||||
* @see \`{@link https://api.jquery.com/event.pageY/ }\`
|
||||
*/
|
||||
pageY: number;
|
||||
/**
|
||||
* For key or mouse events, this property indicates the specific key or button that was pressed.
|
||||
* @see \`{@link https://api.jquery.com/event.which/ }\`
|
||||
*/
|
||||
which: number;
|
||||
/**
|
||||
* Indicates whether the META key was pressed when the event fired.
|
||||
* @see \`{@link https://api.jquery.com/event.metaKey/ }\`
|
||||
*/
|
||||
metaKey: boolean;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Event }\`.
|
||||
*/
|
||||
interface JQueryInputEventObject extends BaseJQueryEventObject {
|
||||
altKey: boolean;
|
||||
ctrlKey: boolean;
|
||||
metaKey: boolean;
|
||||
shiftKey: boolean;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Event }\`.
|
||||
*/
|
||||
interface JQueryMouseEventObject extends JQueryInputEventObject {
|
||||
button: number;
|
||||
clientX: number;
|
||||
clientY: number;
|
||||
offsetX: number;
|
||||
offsetY: number;
|
||||
pageX: number;
|
||||
pageY: number;
|
||||
screenX: number;
|
||||
screenY: number;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Event }\`.
|
||||
*/
|
||||
interface JQueryKeyEventObject extends JQueryInputEventObject {
|
||||
/** @deprecated */
|
||||
char: string;
|
||||
/** @deprecated */
|
||||
charCode: number;
|
||||
key: string;
|
||||
/** @deprecated */
|
||||
keyCode: number;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Use \`{@link JQuery.Event }\`.
|
||||
*/
|
||||
interface JQueryEventObject
|
||||
extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject
|
||||
{}
|
||||
/**
|
||||
* @deprecated Deprecated.
|
||||
*/
|
||||
interface JQueryPromiseOperator<T, U> {
|
||||
(
|
||||
callback1: JQuery.TypeOrArray<JQueryPromiseCallback<T>>,
|
||||
...callbacksN: Array<JQuery.TypeOrArray<JQueryPromiseCallback<any>>>
|
||||
): JQueryPromise<U>;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`.
|
||||
*/
|
||||
interface JQueryEasingFunction {
|
||||
(percent: number): number;
|
||||
}
|
||||
/**
|
||||
* @deprecated Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`.
|
||||
*/
|
||||
interface JQueryEasingFunctions {
|
||||
[name: string]: JQueryEasingFunction;
|
||||
linear: JQueryEasingFunction;
|
||||
swing: JQueryEasingFunction;
|
||||
}
|
||||
7388
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/misc.d.ts
vendored
Normal file
7388
Packages/Beckhoff.TwinCAT.HMI.Framework.14.3.360/runtimes/native1.12-tchmi/Lib/jQuery/misc.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
export as namespace Sizzle;
|
||||
|
||||
declare const Sizzle: SizzleStatic;
|
||||
export = Sizzle;
|
||||
|
||||
// For users who don't have "dom" types
|
||||
// See: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/73082
|
||||
type Element = typeof globalThis extends { Element: { new(): infer T } } ? T : never;
|
||||
type Document = typeof globalThis extends { Document: { new(): infer T } } ? T : never;
|
||||
type DocumentFragment = typeof globalThis extends { DocumentFragment: { new(): infer T } } ? T : never;
|
||||
|
||||
interface SizzleStatic {
|
||||
selectors: Sizzle.Selectors;
|
||||
<TArrayLike extends ArrayLike<Element>>(
|
||||
selector: string,
|
||||
context: Element | Document | DocumentFragment,
|
||||
results: TArrayLike,
|
||||
): TArrayLike;
|
||||
(selector: string, context?: Element | Document | DocumentFragment): Element[];
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
||||
compile(selector: string): Function;
|
||||
matchesSelector(element: Element, selector: string): boolean;
|
||||
matches(selector: string, elements: Element[]): Element[];
|
||||
}
|
||||
|
||||
declare namespace Sizzle {
|
||||
interface Selectors {
|
||||
cacheLength: number;
|
||||
match: Selectors.Matches;
|
||||
find: Selectors.FindFunctions;
|
||||
preFilter: Selectors.PreFilterFunctions;
|
||||
filter: Selectors.FilterFunctions;
|
||||
attrHandle: Selectors.AttrHandleFunctions;
|
||||
pseudos: Selectors.PseudoFunctions;
|
||||
setFilters: Selectors.SetFilterFunctions;
|
||||
createPseudo(fn: Selectors.CreatePseudoFunction): Selectors.PseudoFunction;
|
||||
}
|
||||
|
||||
namespace Selectors {
|
||||
interface Matches {
|
||||
[name: string]: RegExp;
|
||||
}
|
||||
|
||||
interface FindFunction {
|
||||
// eslint-disable-next-line @typescript-eslint/no-invalid-void-type
|
||||
(match: RegExpMatchArray, context: Element | Document, isXML: boolean): Element[] | void;
|
||||
}
|
||||
|
||||
interface FindFunctions {
|
||||
[name: string]: FindFunction;
|
||||
}
|
||||
|
||||
interface PreFilterFunction {
|
||||
(match: RegExpMatchArray): string[];
|
||||
}
|
||||
|
||||
interface PreFilterFunctions {
|
||||
[name: string]: PreFilterFunction;
|
||||
}
|
||||
|
||||
interface FilterFunction {
|
||||
(element: string, ...matches: string[]): boolean;
|
||||
}
|
||||
|
||||
interface FilterFunctions {
|
||||
[name: string]: FilterFunction;
|
||||
}
|
||||
|
||||
interface AttrHandleFunction {
|
||||
(elem: any, casePreservedName: string, isXML: boolean): string;
|
||||
}
|
||||
|
||||
interface AttrHandleFunctions {
|
||||
[name: string]: AttrHandleFunction;
|
||||
}
|
||||
|
||||
interface PseudoFunction {
|
||||
(elem: Element): boolean;
|
||||
}
|
||||
|
||||
interface PseudoFunctions {
|
||||
[name: string]: PseudoFunction;
|
||||
}
|
||||
|
||||
interface SetFilterFunction {
|
||||
(elements: Element[], argument: number, not: boolean): Element[];
|
||||
}
|
||||
|
||||
interface SetFilterFunctions {
|
||||
[name: string]: SetFilterFunction;
|
||||
}
|
||||
|
||||
interface CreatePseudoFunction {
|
||||
(...args: any[]): PseudoFunction;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user