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

@nativescript-community/ui-share-file

Package Overview
Dependencies
Maintainers
18
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nativescript-community/ui-share-file - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

4

CHANGELOG.md

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

## [1.3.1](https://github.com/nativescript-community/ui-share-file/compare/v1.3.0...v1.3.1) (2023-02-27)
**Note:** Version bump only for package @nativescript-community/ui-share-file
# [1.3.0](https://github.com/nativescript-community/ui-share-file/compare/v1.2.5...v1.3.0) (2023-02-22)

@@ -8,0 +12,0 @@

4

package.json
{
"name": "@nativescript-community/ui-share-file",
"version": "1.3.0",
"version": "1.3.1",
"description": "Send/share file to other apps.",

@@ -34,3 +34,3 @@ "main": "share-file",

"bootstrapper": "nativescript-plugin-seed",
"gitHead": "c9dadb321bc4577a2a4cc0eaa3a9afc781937f3e"
"gitHead": "bd7d4751b84d9bf1bef4709f24e037247672880d"
}

@@ -91,12 +91,16 @@ import { Application } from '@nativescript/core';

}
let UIDocumentInteractionControllerDelegateImpl = class UIDocumentInteractionControllerDelegateImpl extends NSObject {
static new() {
return super.new();
var UIDocumentInteractionControllerDelegateImpl = /** @class */ (function (_super) {
__extends(UIDocumentInteractionControllerDelegateImpl, _super);
function UIDocumentInteractionControllerDelegateImpl() {
return _super !== null && _super.apply(this, arguments) || this;
}
initWithOwnerController(owner, controller) {
UIDocumentInteractionControllerDelegateImpl.new = function () {
return _super.new.call(this);
};
UIDocumentInteractionControllerDelegateImpl.prototype.initWithOwnerController = function (owner, controller) {
this._owner = owner;
this.controller = controller;
return this;
}
documentInteractionControllerWillBeginSendingToApplication(controller, app) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerWillBeginSendingToApplication = function (controller, app) {
// console.log(

@@ -106,35 +110,33 @@ // "documentInteractionControllerWillBeginSendingToApplication",

// );
const owner = this._owner;
var owner = this._owner;
if (owner) {
owner.dismissed();
}
}
documentInteractionControllerDidDismissOpenInMenu(controller) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerDidDismissOpenInMenu = function (controller) {
// console.log("documentInteractionControllerDidDismissOpenInMenu");
const owner = this._owner;
var owner = this._owner;
if (owner) {
owner.dismissed();
}
}
documentInteractionControllerDidDismissOptionsMenu(controller) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerDidDismissOptionsMenu = function (controller) {
// console.log("documentInteractionControllerDidDismissOptionsMenu");
const owner = this._owner;
var owner = this._owner;
if (owner) {
owner.dismissed();
}
}
documentInteractionControllerViewControllerForPreview(controller) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerViewControllerForPreview = function (controller) {
return this.controller;
}
documentInteractionControllerViewForPreview(controller) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerViewForPreview = function (controller) {
return this.controller.view;
}
documentInteractionControllerRectForPreview(controller) {
};
UIDocumentInteractionControllerDelegateImpl.prototype.documentInteractionControllerRectForPreview = function (controller) {
return this.controller.view.bounds;
}
};
UIDocumentInteractionControllerDelegateImpl.ObjCProtocols = [UIDocumentInteractionControllerDelegate];
UIDocumentInteractionControllerDelegateImpl = __decorate([
NativeClass
], UIDocumentInteractionControllerDelegateImpl);
};
UIDocumentInteractionControllerDelegateImpl.ObjCProtocols = [UIDocumentInteractionControllerDelegate];
return UIDocumentInteractionControllerDelegateImpl;
}(NSObject));
//# sourceMappingURL=share-file.ios.js.map
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