@nativescript-community/ui-share-file
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -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 @@ |
{ | ||
"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 |
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
33966
338