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
19
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.2 to 1.3.3

4

CHANGELOG.md

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

## [1.3.3](https://github.com/nativescript-community/ui-share-file/compare/v1.3.2...v1.3.3) (2023-10-30)
**Note:** Version bump only for package @nativescript-community/ui-share-file
## [1.3.2](https://github.com/nativescript-community/ui-share-file/compare/v1.3.1...v1.3.2) (2023-10-27)

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

4

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

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

"bootstrapper": "nativescript-plugin-seed",
"gitHead": "77f84ac9e12c51d9264541ad99a049f30e47d52c"
"gitHead": "58010955131ec4b5b77d532bfa8e0fcfe6fec2ce"
}

@@ -94,12 +94,16 @@ import { Application, Utils } 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(

@@ -109,35 +113,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