@nativescript-community/ui-share-file
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -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 @@ |
{ | ||
"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 |
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
33526
61
336