Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@enact/webos

Package Overview
Dependencies
Maintainers
1
Versions
218
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enact/webos - npm Package Compare versions

Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.3

10

application/application.js

@@ -0,1 +1,6 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
/* eslint-disable no-console */

@@ -95,2 +100,5 @@ /* global console */

export { fetchAppId, fetchAppInfo, fetchAppRootPath, platformBack };
exports.fetchAppId = fetchAppId;
exports.fetchAppInfo = fetchAppInfo;
exports.fetchAppRootPath = fetchAppRootPath;
exports.platformBack = platformBack;

@@ -5,2 +5,6 @@ # Change Log

## [2.0.0-alpha.3] - 2018-01-18
No significant changes.
## [2.0.0-alpha.2] - 2017-08-29

@@ -14,2 +18,64 @@

## [1.13.3] - 2017-01-16
No significant changes.
## [1.13.2] - 2017-12-14
No significant changes.
## [1.13.1] - 2017-12-06
No significant changes.
## [1.13.0] - 2017-11-28
No significant changes.
## [1.12.2] - 2017-11-15
### Fixed
- `ui/Transition` to revert 1.12.1 change to support `clip` transition-type directions and endering optimizations
## [1.12.1] - 2017-11-07
No significant changes.
## [1.12.0] - 2017-10-27
No significant changes.
## [1.11.0] - 2017-10-24
No significant changes.
## [1.10.1] - 2017-10-16
No significant changes.
## [1.10.0] - 2017-10-09
No significant changes.
## [1.9.3] - 2017-10-03
No significant changes.
## [1.9.2] - 2017-09-26
No significant changes.
## [1.9.1] - 2017-09-25
No significant changes.
## [1.9.0] - 2017-09-22
No significant changes.
## [1.8.0] - 2017-09-07
No significant changes.
## [1.7.0] - 2017-08-23

@@ -16,0 +82,0 @@

24

deviceinfo/deviceinfo.js

@@ -1,4 +0,16 @@

import LS2Request from '../LS2Request';
import { platform } from '../platform';
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.deviceinfo = undefined;
var _LS2Request = require('../LS2Request');
var _LS2Request2 = _interopRequireDefault(_LS2Request);
var _platform = require('../platform');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var device = {};

@@ -45,4 +57,4 @@

if (platform.tv) {
new LS2Request().send({
if (_platform.platform.tv) {
new _LS2Request2.default().send({
service: 'luna://com.webos.service.tv.systemproperty',

@@ -83,3 +95,3 @@ method: 'getSystemInfo',

export default deviceinfo;
export { deviceinfo };
exports.default = deviceinfo;
exports.deviceinfo = deviceinfo;

@@ -1,1 +0,2 @@

// This space intentionally left blank
// This space intentionally left blank
"use strict";

@@ -0,1 +1,6 @@

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
/**

@@ -9,2 +14,2 @@ * Checks if the virtual keyboard is visible (only works on SmartTV platform)

export { isShowing };
exports.isShowing = isShowing;

@@ -0,1 +1,7 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };

@@ -127,2 +133,2 @@

export default LS2Request;
exports.default = LS2Request;
{
"name": "@enact/webos",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"description": "webOS support library",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,1 +1,6 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
/**

@@ -96,3 +101,4 @@ * Exports the {@link webos/platform.platform} object that contains basic device

export default platform;
export { detect, platform };
exports.default = platform;
exports.detect = detect;
exports.platform = platform;

@@ -0,1 +1,7 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };

@@ -158,2 +164,10 @@

export { emergency, alert, critical, error, warning, notice, info, debug, perfLog };
exports.emergency = emergency;
exports.alert = alert;
exports.critical = critical;
exports.error = error;
exports.warning = warning;
exports.notice = notice;
exports.info = info;
exports.debug = debug;
exports.perfLog = perfLog;

@@ -15,3 +15,3 @@ # @enact/webos

Copyright (c) 2012-2017 LG Electronics
Copyright (c) 2012-2018 LG Electronics

@@ -18,0 +18,0 @@ Unless otherwise specified or set forth in the NOTICE file, all content, including all source code files and documentation files in this repository are: Licensed under the Apache License, Version 2.0 (the "License"); you may not use this content except in compliance with the License. You may obtain a copy of the License at

@@ -1,7 +0,16 @@

/* eslint-disable no-console */
/* global console */
'use strict';
import LS2Request from '../LS2Request';
import { platform } from '../platform';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.readAlert = undefined;
var _LS2Request = require('../LS2Request');
var _LS2Request2 = _interopRequireDefault(_LS2Request);
var _platform = require('../platform');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**

@@ -13,8 +22,11 @@ * Read alert text when accessibility VoiceReadout enabled.

*/
/* eslint-disable no-console */
/* global console */
var readAlert = function readAlert(string) {
var clear = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
if (platform.tv) {
if (_platform.platform.tv) {
var checkAudioGuidance = function checkAudioGuidance(callback) {
return new LS2Request().send({
return new _LS2Request2.default().send({
service: 'luna://com.webos.settingsservice',

@@ -35,3 +47,3 @@ method: 'getSystemSettings',

var readAlertMessage = function readAlertMessage() {
return new LS2Request().send({
return new _LS2Request2.default().send({
service: 'luna://com.webos.service.tts',

@@ -52,3 +64,3 @@ method: 'speak',

export default readAlert;
export { readAlert };
exports.default = readAlert;
exports.readAlert = readAlert;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc