This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebAPI | User | Developer | Device | Network | |
---|---|---|---|---|---|
Canvas API | + | ||||
Fullscreen API | + | ||||
HTML Drag and Drop API | + | ||||
Page Visibility API | + | ||||
Pointer Lock API | + | ||||
Resize Observer API | + | ||||
Visual Viewport API | + | ||||
Web Audio API | + | ||||
WebGL API | + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebAPI | User | Developer | Device | Network | |
---|---|---|---|---|---|
Fetch API | + | ||||
Websockets API | + | ||||
DOM | + | ||||
CSSOM | + | ||||
Console API | + | ||||
History API | + | ||||
URL API | + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebAPI | User | Developer | Device | Network | |
---|---|---|---|---|---|
Beacon API | + | + | |||
Channel Messaging API | + | ||||
Encoding API | + | ||||
IndexedDB API | + | ||||
Navigation Timing | + | + | |||
Performance API | + | ||||
Resource Timing API | + | + | |||
Service Worker API | + | + | |||
Web Authentication API | + | + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebAPI | User | Developer | Device | Network | |
---|---|---|---|---|---|
Geolocation API | + | ||||
Touch events | + | + | |||
Vibration API | + | + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebAPI | User | Developer | Device | Network | |
---|---|---|---|---|---|
Bluetooth API | + | ||||
Image Capture API | + | ||||
Long Tasks API | + | ||||
Payment Request API | + | + | |||
Push API | + | + | |||
Streams API | + | ||||
Web Animations API | + | ||||
Web Notifications API | + | + | |||
WebXR Device API | + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>SW Messages</title> | |
<link rel="manifest" href="./pwa.webmanifest"> | |
<script> | |
const queue = {}; | |
const generateMsgId = () => `${(new Date()).getTime()}`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Action description. | |
* | |
* @namespace Vnd_Prj_Back_Act_Name | |
*/ | |
// MODULE'S IMPORT | |
import {join} from 'path'; | |
// MODULE'S VARS | |
const NS = 'Vnd_Prj_Back_Act_Name'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is a description of a set of utilities. | |
*/ | |
// MODULE'S IMPORT | |
import {existsSync} from 'node:fs'; | |
// MODULE'S CLASSES | |
export default class Vnd_Plugin_Back_Util_Cookie { | |
/** | |
* Declares the dependencies that should be injected by the Object Container. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Read user data from RDB. | |
* | |
* @implements TeqFw_Core_Shared_Api_Act | |
*/ | |
export default class Dialog_Back_Mod_User_A_Read { | |
/** | |
* @param {TeqFw_Db_Back_Api_RDb_CrudEngine} crud | |
* @param {Dialog_Back_Store_RDb_Schema_User} rdbUser | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The format in which the exported/imported information is organized. | |
*/ | |
// MODULE'S VARIABLES | |
const NS = 'TeqFw_Db_Back_Dto_Export'; | |
// MODULE'S CLASSES | |
/** | |
* @memberOf TeqFw_Db_Back_Dto_Export | |
*/ |
OlderNewer