@builder.io/sdk 2.2.0 → 2.2.2

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 (51) hide show
  1. package/.yarnrc.yml +1 -0
  2. package/CHANGELOG.md +6 -0
  3. package/dist/index.browser.js +3 -2
  4. package/dist/index.browser.js.map +1 -1
  5. package/dist/index.cjs.js +3 -2
  6. package/dist/index.cjs.js.map +1 -1
  7. package/dist/index.esm.js +3 -2
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/index.umd.js +3 -2
  10. package/dist/index.umd.js.map +1 -1
  11. package/dist/package.json +1 -3
  12. package/dist/src/builder.class.d.ts +1 -0
  13. package/dist/src/builder.class.js.map +1 -1
  14. package/dist/src/url.js +2 -1
  15. package/dist/src/url.js.map +1 -1
  16. package/dist/tsconfig.tsbuildinfo +1 -1
  17. package/package.json +2 -4
  18. package/coverage/clover.xml +0 -3918
  19. package/coverage/coverage-final.json +0 -19
  20. package/coverage/lcov-report/base.css +0 -224
  21. package/coverage/lcov-report/block-navigation.js +0 -87
  22. package/coverage/lcov-report/favicon.png +0 -0
  23. package/coverage/lcov-report/index.html +0 -176
  24. package/coverage/lcov-report/prettify.css +0 -1
  25. package/coverage/lcov-report/prettify.js +0 -2
  26. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  27. package/coverage/lcov-report/sorter.js +0 -196
  28. package/coverage/lcov-report/src/builder.class.ts.html +0 -8323
  29. package/coverage/lcov-report/src/classes/animator.class.ts.html +0 -847
  30. package/coverage/lcov-report/src/classes/cookies.class.ts.html +0 -559
  31. package/coverage/lcov-report/src/classes/index.html +0 -176
  32. package/coverage/lcov-report/src/classes/observable.class.ts.html +0 -400
  33. package/coverage/lcov-report/src/classes/promise.class.ts.html +0 -607
  34. package/coverage/lcov-report/src/classes/query-string.class.ts.html +0 -328
  35. package/coverage/lcov-report/src/functions/assign.function.ts.html +0 -139
  36. package/coverage/lcov-report/src/functions/fetch.function.ts.html +0 -427
  37. package/coverage/lcov-report/src/functions/get-top-level-domain.ts.html +0 -121
  38. package/coverage/lcov-report/src/functions/index.html +0 -236
  39. package/coverage/lcov-report/src/functions/next-tick.function.ts.html +0 -166
  40. package/coverage/lcov-report/src/functions/omit.function.ts.html +0 -106
  41. package/coverage/lcov-report/src/functions/server-only-require.function.ts.html +0 -121
  42. package/coverage/lcov-report/src/functions/throttle.function.ts.html +0 -181
  43. package/coverage/lcov-report/src/functions/to-error.ts.html +0 -133
  44. package/coverage/lcov-report/src/functions/uuid.ts.html +0 -136
  45. package/coverage/lcov-report/src/index.html +0 -131
  46. package/coverage/lcov-report/src/polyfills/custom-event-polyfill.js.html +0 -121
  47. package/coverage/lcov-report/src/polyfills/index.html +0 -116
  48. package/coverage/lcov-report/src/types/api-version.ts.html +0 -91
  49. package/coverage/lcov-report/src/types/index.html +0 -116
  50. package/coverage/lcov-report/src/url.ts.html +0 -253
  51. package/coverage/lcov.info +0 -4426
package/.yarnrc.yml ADDED
@@ -0,0 +1 @@
1
+ npmPublishAccess: "public"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @builder.io/sdk
2
2
 
3
+ ## 2.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f67242f: types: add `meta` property to Input
8
+
3
9
  ## 2.2.0
4
10
 
5
11
  - Stricter checking of trusted hosts.
@@ -152,7 +152,7 @@
152
152
  throw new Error("Property name \"".concat(name, "\" is not allowed"));
153
153
  }
154
154
 
155
- var version = "2.1.2";
155
+ var version = "2.2.2";
156
156
 
157
157
  var Subscription = /** @class */ (function () {
158
158
  function Subscription(listeners, listener) {
@@ -952,13 +952,14 @@
952
952
  // Replacement for `url.parse` using `URL` global object that works with relative paths.
953
953
  // Assumptions: this function operates in a NodeJS environment.
954
954
  function parse$1(url) {
955
+ var _a;
955
956
  var out = emptyUrl();
956
957
  var u;
957
958
  var pathOnly = url === '' || url[0] === '/';
958
959
  if (pathOnly) {
959
960
  u = new URL(url, 'http://0.0.0.0/');
960
961
  out.href = u.href;
961
- out.href = out.href.slice(14); // remove 'http://0.0.0.0/'
962
+ out.href = (_a = out.href) === null || _a === void 0 ? void 0 : _a.slice(14); // remove 'http://0.0.0.0/'
962
963
  }
963
964
  else {
964
965
  u = new URL(url);