@breakside/jskit 2021.44.0 → 2022.3.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 (86) hide show
  1. package/Frameworks/DOM.jsframework/Info.json +2 -2
  2. package/Frameworks/DOM.jsframework/io.breakside.JSKit.DOM-bundle.js +2 -2
  3. package/Frameworks/FontKit.jsframework/Info.json +2 -2
  4. package/Frameworks/FontKit.jsframework/io.breakside.JSKit.FontKit-bundle.js +2 -2
  5. package/Frameworks/Foundation.jsframework/Info.json +2 -2
  6. package/Frameworks/Foundation.jsframework/JS/Deflate.js +2 -3
  7. package/Frameworks/Foundation.jsframework/JS/Error+JS.js +10 -0
  8. package/Frameworks/Foundation.jsframework/JS/JSColorSpace.js +106 -20
  9. package/Frameworks/Foundation.jsframework/JS/JSDateFormatter.js +2 -2
  10. package/Frameworks/Foundation.jsframework/JS/JSTimer.js +6 -0
  11. package/Frameworks/Foundation.jsframework/JS/JSURLResponse.js +60 -1
  12. package/Frameworks/Foundation.jsframework/JS/Zlib.js +2 -3
  13. package/Frameworks/Foundation.jsframework/io.breakside.JSKit.Foundation-bundle.js +2 -2
  14. package/Frameworks/SecurityKit.jsframework/Info.json +2 -2
  15. package/Frameworks/SecurityKit.jsframework/io.breakside.JSKit.SecurityKit-bundle.js +2 -2
  16. package/Info.json +2 -2
  17. package/Node/JavascriptCompilation.js +1 -1
  18. package/Node/io.breakside.jskit-bundle.js +2 -2
  19. package/Root/Frameworks/APIKit/APIError.js +2 -3
  20. package/Root/Frameworks/APIKit/Info.yaml +1 -1
  21. package/Root/Frameworks/APIKitTesting/Info.yaml +1 -1
  22. package/Root/Frameworks/AuthKit/Info.yaml +1 -1
  23. package/Root/Frameworks/CSSOM/Info.yaml +1 -1
  24. package/Root/Frameworks/ChartKit/Info.yaml +1 -1
  25. package/Root/Frameworks/ConferenceKit/Info.yaml +1 -1
  26. package/Root/Frameworks/DBKit/DBObjectDatabase.js +6 -5
  27. package/Root/Frameworks/DBKit/Info.yaml +1 -1
  28. package/Root/Frameworks/DOM/Info.yaml +1 -1
  29. package/Root/Frameworks/Dispatch/Info.yaml +1 -1
  30. package/Root/Frameworks/FontKit/Info.yaml +1 -1
  31. package/Root/Frameworks/Foundation/Deflate.js +2 -3
  32. package/Root/Frameworks/Foundation/Error+JS.js +10 -0
  33. package/Root/Frameworks/Foundation/Info.yaml +1 -1
  34. package/Root/Frameworks/Foundation/JSColorSpace.js +106 -20
  35. package/Root/Frameworks/Foundation/JSDateFormatter.js +2 -2
  36. package/Root/Frameworks/Foundation/JSTimer.js +6 -0
  37. package/Root/Frameworks/Foundation/JSURLResponse.js +60 -1
  38. package/Root/Frameworks/Foundation/Zlib.js +2 -3
  39. package/Root/Frameworks/ImageKit/IKColorProfile.js +979 -0
  40. package/Root/Frameworks/ImageKit/IKColorSpace.js +49 -198
  41. package/Root/Frameworks/ImageKit/IKDecoderPNG.js +1 -3
  42. package/Root/Frameworks/ImageKit/IKMatrix.js +124 -0
  43. package/Root/Frameworks/ImageKit/ImageKit.js +2 -0
  44. package/Root/Frameworks/ImageKit/Info.yaml +1 -1
  45. package/Root/Frameworks/MediaKit/Info.yaml +1 -1
  46. package/Root/Frameworks/MediaKitUI/Info.yaml +1 -1
  47. package/Root/Frameworks/NotificationKit/Info.yaml +1 -1
  48. package/Root/Frameworks/PDFKit/Info.yaml +1 -1
  49. package/Root/Frameworks/QRKit/Info.yaml +1 -1
  50. package/Root/Frameworks/SearchKit/Info.yaml +1 -1
  51. package/Root/Frameworks/SecurityKit/Info.yaml +1 -1
  52. package/Root/Frameworks/ServerKit/Info.yaml +1 -1
  53. package/Root/Frameworks/ServerKit/SKFileJobQueue.js +3 -1
  54. package/Root/Frameworks/ServerKit/SKHTTPError.js +2 -3
  55. package/Root/Frameworks/ServerKit/SKHTTPRequest.js +7 -0
  56. package/Root/Frameworks/ServerKit/SKHTTPResponder.js +9 -2
  57. package/Root/Frameworks/ServerKit/SKUserAgent.js +130 -0
  58. package/Root/Frameworks/ServerKit/SKValidatingObject.js +1 -3
  59. package/Root/Frameworks/ServerKit/ServerKit.js +1 -0
  60. package/Root/Frameworks/ServerKitTesting/Info.yaml +1 -1
  61. package/Root/Frameworks/TestKit/Info.yaml +1 -1
  62. package/Root/Frameworks/UIKit/Info.yaml +1 -1
  63. package/Root/Frameworks/UIKit/UICollectionReusableView.js +91 -0
  64. package/Root/Frameworks/UIKit/UICollectionView.js +1254 -0
  65. package/Root/Frameworks/UIKit/UICollectionViewCell.js +121 -0
  66. package/Root/Frameworks/UIKit/UICollectionViewGridLayout.js +425 -0
  67. package/Root/Frameworks/UIKit/UICollectionViewLayout.js +82 -0
  68. package/Root/Frameworks/UIKit/UIColorWell.js +12 -1
  69. package/Root/Frameworks/UIKit/UIDisplayServer.js +5 -1
  70. package/Root/Frameworks/UIKit/UIKit.js +7 -0
  71. package/Root/Frameworks/UIKit/UILayer.js +3 -0
  72. package/Root/Frameworks/UIKit/UIListView.js +39 -15
  73. package/Root/Frameworks/UIKit/UIMenu.js +1 -1
  74. package/Root/Frameworks/UIKit/UIMenuView.js +5 -1
  75. package/Root/Frameworks/UIKit/UINavigationBar.js +2 -2
  76. package/Root/Frameworks/UIKit/UIPopupButton.js +31 -3
  77. package/Root/Frameworks/UIKit/UIScrollView.js +2 -0
  78. package/Root/Frameworks/UIKit/UISplitViewController.js +52 -96
  79. package/Root/Frameworks/UIKit/UITabView.js +2 -2
  80. package/Root/Frameworks/UIKit/UITabViewController.js +6 -5
  81. package/Root/Frameworks/UIKit/UITextField.js +3 -0
  82. package/Root/Frameworks/UIKit/UIView.js +18 -0
  83. package/Root/Frameworks/UIKit/UIViewController.js +11 -0
  84. package/Root/Frameworks/UIKit/UIWindowServer.js +2 -2
  85. package/Root/Frameworks/UIKitTesting/Info.yaml +1 -1
  86. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  JSBundleType: framework
2
2
  JSBundleIdentifier: io.breakside.JSKit.UIKitTesting
3
- JSBundleVersion: 2021.44.0
3
+ JSBundleVersion: 2022.3.0
4
4
  JSDevelopmentLanguage: en
5
5
  JSCopyright: Copyright © 2020 Breakside Inc.
6
6
  JSLicenseNotice: |
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "node": ">=10.10.0"
10
10
  },
11
11
  "name": "@breakside/jskit",
12
- "version": "2021.44.0",
12
+ "version": "2022.3.0",
13
13
  "license": "SEE LICENSE IN LICENSE.txt",
14
14
  "files": [
15
15
  "*"