@kesbyte/capacitor-exif-gallery 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CapacitorExifGallery.podspec +17 -0
  2. package/LICENSE +8 -0
  3. package/Package.swift +28 -0
  4. package/README.md +813 -0
  5. package/dist/esm/ExifGalleryImpl.d.ts +176 -0
  6. package/dist/esm/ExifGalleryImpl.js +295 -0
  7. package/dist/esm/ExifGalleryImpl.js.map +1 -0
  8. package/dist/esm/FilterValidator.d.ts +126 -0
  9. package/dist/esm/FilterValidator.js +274 -0
  10. package/dist/esm/FilterValidator.js.map +1 -0
  11. package/dist/esm/PluginState.d.ts +128 -0
  12. package/dist/esm/PluginState.js +166 -0
  13. package/dist/esm/PluginState.js.map +1 -0
  14. package/dist/esm/PolylineDecoder.d.ts +23 -0
  15. package/dist/esm/PolylineDecoder.js +34 -0
  16. package/dist/esm/PolylineDecoder.js.map +1 -0
  17. package/dist/esm/TranslationLoader.d.ts +140 -0
  18. package/dist/esm/TranslationLoader.js +218 -0
  19. package/dist/esm/TranslationLoader.js.map +1 -0
  20. package/dist/esm/definitions.d.ts +539 -0
  21. package/dist/esm/definitions.js +2 -0
  22. package/dist/esm/definitions.js.map +1 -0
  23. package/dist/esm/errors.d.ts +252 -0
  24. package/dist/esm/errors.js +276 -0
  25. package/dist/esm/errors.js.map +1 -0
  26. package/dist/esm/index.d.ts +40 -0
  27. package/dist/esm/index.js +42 -0
  28. package/dist/esm/index.js.map +1 -0
  29. package/dist/esm/translations/de.json +20 -0
  30. package/dist/esm/translations/en.json +20 -0
  31. package/dist/esm/translations/es.json +20 -0
  32. package/dist/esm/translations/fr.json +20 -0
  33. package/dist/esm/web.d.ts +6 -0
  34. package/dist/esm/web.js +14 -0
  35. package/dist/esm/web.js.map +1 -0
  36. package/dist/plugin.cjs.js +1820 -0
  37. package/dist/plugin.cjs.js.map +1 -0
  38. package/dist/plugin.js +1823 -0
  39. package/dist/plugin.js.map +1 -0
  40. package/package.json +121 -0
@@ -0,0 +1,17 @@
1
+ require 'json'
2
+
3
+ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
+
5
+ Pod::Spec.new do |s|
6
+ s.name = 'CapacitorExifGallery'
7
+ s.version = package['version']
8
+ s.summary = package['description']
9
+ s.license = package['license']
10
+ s.homepage = package['repository']['url']
11
+ s.author = package['author']
12
+ s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
+ s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
+ s.ios.deployment_target = '15.0'
15
+ s.dependency 'Capacitor'
16
+ s.swift_version = '5.1'
17
+ end
package/LICENSE ADDED
@@ -0,0 +1,8 @@
1
+ Commercial License
2
+
3
+ Copyright (c) 2026 KesByte Digital
4
+
5
+ This software is proprietary and confidential.
6
+ Unauthorized copying, modification, or distribution is prohibited.
7
+
8
+ Contact: contact@kesbyte.digital
package/Package.swift ADDED
@@ -0,0 +1,28 @@
1
+ // swift-tools-version: 5.9
2
+ import PackageDescription
3
+
4
+ let package = Package(
5
+ name: "CapacitorExifGallery",
6
+ platforms: [.iOS(.v15)],
7
+ products: [
8
+ .library(
9
+ name: "CapacitorExifGallery",
10
+ targets: ["ExifGallery"])
11
+ ],
12
+ dependencies: [
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0")
14
+ ],
15
+ targets: [
16
+ .target(
17
+ name: "ExifGallery",
18
+ dependencies: [
19
+ .product(name: "Capacitor", package: "capacitor-swift-pm"),
20
+ .product(name: "Cordova", package: "capacitor-swift-pm")
21
+ ],
22
+ path: "ios/Sources/ExifGalleryPlugin"),
23
+ .testTarget(
24
+ name: "ExifGalleryPluginTests",
25
+ dependencies: ["ExifGallery"],
26
+ path: "ios/Tests/ExifGalleryPluginTests")
27
+ ]
28
+ )