Keita Watanabe
Keita Watanabe
## Checklist - [x] All tests are passed. - [x] Added tests. - [x] Documented the code using [Xcode markup](https://developer.apple.com/library/mac/documentation/Xcode/Reference/xcode_markup_formatting_ref). - [x] Searched [existing pull requests](https://github.com/ra1028/Carbon/pulls) for ensure not duplicated....
I fixed it for null safety. #49
Before ```swift let constraint: Constraint? = view.leadingToSuperview() ... if let c = constraint { Constraint.deactivate([c]) } ``` After ```swift let constraint: Constraint? = view.leadingToSuperview() ... constraint?.deactivate() ```
fix #284 . Since it is undesirable to depend on a specific image library, removed `SDWebImage` dependency. If developers use `LightboxImage(imageURL:)`, they must also implement `LightboxConfig.loadImage` at the same time....
In #401, `PagingTitleItem` was renamed to `PagingIndexItem`, but there was an omission in the change. I fixed it for replace `PagingTitleItem` to `PagingIndexItem`.
use repository: https://github.com/kitwtnb/JASidePanels branch: `add-swift-package-manager` `import JASidePanels` -> `import JASidePanelsSPM`
Apple has declared that it will reject applications and SDKs without a privacy manifest starting in the spring of 2024. SDKs that use `modificationDate` , `contentModificationDateKey` need a privacy manifest,...
For SPM `PrivacyInfo.xcprivacy` has been moved as it needs to be included in the module.
This pull request respect to #522 . If you use Swift Package Manager, please refer to this branch. https://github.com/kitwtnb/MMDrawerController `support-swift-package-manager`