@finanzritter/nativescript-pdf-view
Advanced tools
Comparing version 3.0.1 to 3.0.2
{ | ||
"name": "@finanzritter/nativescript-pdf-view", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "A basic PDF viewer plugin for NativeScript, to display PDF documents on iOS and Android.", | ||
@@ -5,0 +5,0 @@ "main": "pdf-view", |
@@ -1,17 +0,18 @@ | ||
var PDFViewDelegate_1; | ||
import { PDFViewCommon, srcProperty } from './pdf-view.common'; | ||
let PDFViewDelegate = PDFViewDelegate_1 = class PDFViewDelegate extends NSObject { | ||
static initWithOwner(owner) { | ||
const delegate = PDFViewDelegate_1.new(); | ||
var PDFViewDelegate = /** @class */ (function (_super) { | ||
__extends(PDFViewDelegate, _super); | ||
function PDFViewDelegate() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
PDFViewDelegate.initWithOwner = function (owner) { | ||
var delegate = PDFViewDelegate.new(); | ||
delegate.owner = owner; | ||
return delegate; | ||
} | ||
webViewDidFinishNavigation(webView) { | ||
}; | ||
PDFViewDelegate.prototype.webViewDidFinishNavigation = function (webView) { | ||
PDFViewCommon.notifyOfEvent(PDFViewCommon.loadEvent, this.owner); | ||
} | ||
}; | ||
PDFViewDelegate.ObjCProtocols = [WKNavigationDelegate]; | ||
PDFViewDelegate = PDFViewDelegate_1 = __decorate([ | ||
NativeClass() | ||
], PDFViewDelegate); | ||
}; | ||
PDFViewDelegate.ObjCProtocols = [WKNavigationDelegate]; | ||
return PDFViewDelegate; | ||
}(NSObject)); | ||
export class PDFView extends PDFViewCommon { | ||
@@ -18,0 +19,0 @@ constructor() { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16422
292