bippy 0.3.13 → 0.3.14

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 (50) hide show
  1. package/LICENSE +1 -1
  2. package/dist/chunk-DWy1uDak.cjs +47 -0
  3. package/dist/core-BOYfIZ0s.d.cts +293 -0
  4. package/dist/core-C6nHUfhm.cjs +1164 -0
  5. package/dist/core-CmL25iLV.d.ts +293 -0
  6. package/dist/core-DTE079zz.js +744 -0
  7. package/dist/core.cjs +79 -286
  8. package/dist/core.d.cts +2 -221
  9. package/dist/core.d.ts +2 -221
  10. package/dist/core.js +11 -2
  11. package/dist/experiments/inspect.cjs +1109 -1400
  12. package/dist/experiments/inspect.d.cts +12 -10
  13. package/dist/experiments/inspect.d.ts +12 -10
  14. package/dist/experiments/inspect.js +1101 -1385
  15. package/dist/index-BtBZHVmz.d.cts +1 -0
  16. package/dist/index-D0E78WnU.d.ts +1 -0
  17. package/dist/index.cjs +80 -287
  18. package/dist/index.d.cts +3 -5
  19. package/dist/index.d.ts +3 -5
  20. package/dist/index.iife.js +9 -0
  21. package/dist/index.js +12 -3
  22. package/dist/jsx-dev-runtime.cjs +25 -33
  23. package/dist/jsx-dev-runtime.d.cts +7 -6
  24. package/dist/jsx-dev-runtime.d.ts +7 -6
  25. package/dist/jsx-dev-runtime.js +24 -28
  26. package/dist/jsx-runtime.cjs +16 -12
  27. package/dist/jsx-runtime.d.cts +3 -3
  28. package/dist/jsx-runtime.d.ts +3 -3
  29. package/dist/jsx-runtime.js +12 -4
  30. package/dist/source-BEL1nkP1.cjs +2429 -0
  31. package/dist/source-XJPX_wAG.js +2437 -0
  32. package/dist/source.cjs +84 -300
  33. package/dist/source.d.cts +8 -10
  34. package/dist/source.d.ts +8 -10
  35. package/dist/source.iife.js +14 -0
  36. package/dist/source.js +13 -4
  37. package/dist/src-Cm5n_5v3.cjs +14 -0
  38. package/dist/{chunk-H6ZLR634.js → src-Urb5JDZq.js} +5 -4
  39. package/package.json +6 -7
  40. package/dist/chunk-3DXHQSXK.js +0 -788
  41. package/dist/chunk-4N6XEHJD.cjs +0 -859
  42. package/dist/chunk-AQ674A4M.cjs +0 -38
  43. package/dist/chunk-EPG3GO3H.js +0 -35
  44. package/dist/chunk-FUZZZTS6.js +0 -2255
  45. package/dist/chunk-NKMRHYKS.cjs +0 -2259
  46. package/dist/chunk-TGUPYBYL.cjs +0 -15
  47. package/dist/index.global.js +0 -9
  48. package/dist/jsx-runtime-KafG0Y8O.d.cts +0 -72
  49. package/dist/jsx-runtime-KafG0Y8O.d.ts +0 -72
  50. package/dist/source.global.js +0 -9
@@ -1,37 +1,33 @@
1
- import './chunk-EPG3GO3H.js';
2
- import { jsxDEV as jsxDEV$1 } from 'react/jsx-dev-runtime';
3
- export * from 'react/jsx-dev-runtime';
4
- export { Fragment } from 'react/jsx-dev-runtime';
5
-
6
1
  /**
7
2
  * @license bippy
8
3
  *
9
- * Copyright (c) Aiden Bai, Million Software, Inc.
4
+ * Copyright (c) Aiden Bai
10
5
  *
11
6
  * This source code is licensed under the MIT license found in the
12
7
  * LICENSE file in the root directory of this source tree.
13
8
  */
14
- var jsxDEV = (type, originalProps, key, isStatic, source, self) => {
15
- let props = originalProps;
16
- try {
17
- if (originalProps && typeof originalProps === "object" && source && String(type) !== "Symbol(react.fragment)") {
18
- if (typeof type === "string") {
19
- const proto = Object.getPrototypeOf(originalProps);
20
- const descriptors = Object.getOwnPropertyDescriptors(originalProps);
21
- descriptors.__source = {
22
- value: source,
23
- enumerable: false,
24
- configurable: true,
25
- writable: true
26
- };
27
- props = Object.create(proto, descriptors);
28
- } else {
29
- props.__source = source;
30
- }
31
- }
32
- } catch {
33
- }
34
- return jsxDEV$1(type, props, key, isStatic, source, self);
9
+ import { Fragment, jsxDEV as jsxDEV$1 } from "react/jsx-dev-runtime";
10
+
11
+ export * from "react/jsx-dev-runtime"
12
+
13
+ //#region src/jsx-dev-runtime.ts
14
+ const jsxDEV = (type, originalProps, key, isStatic, source, self) => {
15
+ let props = originalProps;
16
+ try {
17
+ if (originalProps && typeof originalProps === "object" && source && String(type) !== "Symbol(react.fragment)") if (typeof type === "string") {
18
+ const proto = Object.getPrototypeOf(originalProps);
19
+ const descriptors = Object.getOwnPropertyDescriptors(originalProps);
20
+ descriptors.__source = {
21
+ value: source,
22
+ enumerable: false,
23
+ configurable: true,
24
+ writable: true
25
+ };
26
+ props = Object.create(proto, descriptors);
27
+ } else props.__source = source;
28
+ } catch {}
29
+ return jsxDEV$1(type, props, key, isStatic, source, self);
35
30
  };
36
31
 
37
- export { jsxDEV };
32
+ //#endregion
33
+ export { Fragment, jsxDEV };
@@ -1,15 +1,19 @@
1
- 'use strict';
1
+ /**
2
+ * @license bippy
3
+ *
4
+ * Copyright (c) Aiden Bai
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ require('./core-C6nHUfhm.cjs');
10
+ require('./src-Cm5n_5v3.cjs');
2
11
 
3
- require('./chunk-TGUPYBYL.cjs');
4
- require('./chunk-4N6XEHJD.cjs');
5
- require('./chunk-AQ674A4M.cjs');
6
- var jsxRuntime = require('react/jsx-runtime');
7
12
 
8
-
9
-
10
- Object.keys(jsxRuntime).forEach(function (k) {
11
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
12
- enumerable: true,
13
- get: function () { return jsxRuntime[k]; }
14
- });
13
+ var react_jsx_runtime = require("react/jsx-runtime");
14
+ Object.keys(react_jsx_runtime).forEach(function (k) {
15
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
16
+ enumerable: true,
17
+ get: function () { return react_jsx_runtime[k]; }
18
+ });
15
19
  });
@@ -1,3 +1,3 @@
1
- import './jsx-runtime-KafG0Y8O.cjs';
2
- export * from 'react/jsx-runtime';
3
- import 'react-reconciler';
1
+ import "./core-BOYfIZ0s.cjs";
2
+ import "./index-BtBZHVmz.cjs";
3
+ export * from "react/jsx-runtime";
@@ -1,3 +1,3 @@
1
- import './jsx-runtime-KafG0Y8O.js';
2
- export * from 'react/jsx-runtime';
3
- import 'react-reconciler';
1
+ import "./core-CmL25iLV.js";
2
+ import "./index-D0E78WnU.js";
3
+ export * from "react/jsx-runtime";
@@ -1,4 +1,12 @@
1
- import './chunk-H6ZLR634.js';
2
- import './chunk-3DXHQSXK.js';
3
- import './chunk-EPG3GO3H.js';
4
- export * from 'react/jsx-runtime';
1
+ /**
2
+ * @license bippy
3
+ *
4
+ * Copyright (c) Aiden Bai
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ import "./core-DTE079zz.js";
10
+ import "./src-Urb5JDZq.js";
11
+
12
+ export * from "react/jsx-runtime"