@common-stack/components-pro 0.1.23 → 0.2.10

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 (61) hide show
  1. package/lib/index.d.ts +1 -0
  2. package/lib/index.js +10 -0
  3. package/lib/index.js.map +1 -0
  4. package/lib/index.native.d.ts +1 -0
  5. package/lib/index.native.js +9 -0
  6. package/lib/index.native.js.map +1 -0
  7. package/{esm → lib}/slot-fill/__tests__/filler-slot.test.d.ts +0 -0
  8. package/{esm → lib}/slot-fill/__tests__/filler-slot.test.js +0 -0
  9. package/{esm → lib}/slot-fill/__tests__/filler-slot.test.js.map +0 -0
  10. package/{esm → lib}/slot-fill/__tests__/slot-features.test.d.ts +0 -0
  11. package/{esm → lib}/slot-fill/__tests__/slot-features.test.js +0 -0
  12. package/{esm → lib}/slot-fill/__tests__/slot-features.test.js.map +0 -0
  13. package/{esm → lib}/slot-fill/base/context.d.ts +0 -0
  14. package/{esm → lib}/slot-fill/base/context.js +0 -0
  15. package/{esm → lib}/slot-fill/base/context.js.map +0 -0
  16. package/{esm → lib}/slot-fill/base/fill.d.ts +0 -0
  17. package/{esm → lib}/slot-fill/base/fill.js +0 -0
  18. package/{esm → lib}/slot-fill/base/fill.js.map +0 -0
  19. package/{esm → lib}/slot-fill/base/provider.d.ts +0 -0
  20. package/{esm → lib}/slot-fill/base/provider.js +0 -0
  21. package/{esm → lib}/slot-fill/base/provider.js.map +0 -0
  22. package/{esm → lib}/slot-fill/base/slot.d.ts +0 -0
  23. package/{esm → lib}/slot-fill/base/slot.js +0 -0
  24. package/{esm → lib}/slot-fill/base/slot.js.map +0 -0
  25. package/{esm → lib}/slot-fill/base/use-slot.d.ts +0 -0
  26. package/{esm → lib}/slot-fill/base/use-slot.js +0 -0
  27. package/{esm → lib}/slot-fill/base/use-slot.js.map +0 -0
  28. package/{esm → lib}/slot-fill/bubbles-virtually/fill.d.ts +0 -1
  29. package/{esm → lib}/slot-fill/bubbles-virtually/fill.js +0 -0
  30. package/{esm → lib}/slot-fill/bubbles-virtually/fill.js.map +0 -0
  31. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.d.ts +0 -1
  32. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.js +0 -0
  33. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.js.map +0 -0
  34. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.d.ts +0 -1
  35. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.js +0 -0
  36. package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.js.map +0 -0
  37. package/{esm → lib}/slot-fill/bubbles-virtually/slot.d.ts +0 -0
  38. package/{esm → lib}/slot-fill/bubbles-virtually/slot.js +0 -0
  39. package/{esm → lib}/slot-fill/bubbles-virtually/slot.js.map +0 -0
  40. package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.d.ts +0 -0
  41. package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.js +0 -0
  42. package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.js.map +0 -0
  43. package/{esm → lib}/slot-fill/index.d.ts +0 -0
  44. package/{esm → lib}/slot-fill/index.js +0 -0
  45. package/{esm → lib}/slot-fill/index.js.map +0 -0
  46. package/{esm → lib}/slot-fill/index.native.d.ts +0 -1
  47. package/{esm → lib}/slot-fill/index.native.js +0 -0
  48. package/{esm → lib}/slot-fill/index.native.js.map +0 -0
  49. package/{esm → lib}/slot-fill/interfaces/index.d.ts +0 -0
  50. package/{esm → lib}/slot-fill/interfaces/index.js +0 -0
  51. package/{esm → lib}/slot-fill/interfaces/index.js.map +0 -0
  52. package/{esm → lib}/slot-fill/utils/index.d.ts +0 -0
  53. package/{esm → lib}/slot-fill/utils/index.js +0 -0
  54. package/{esm → lib}/slot-fill/utils/index.js.map +0 -0
  55. package/{esm → lib}/slot-fill/utils/isEmptyElement.d.ts +0 -0
  56. package/{esm → lib}/slot-fill/utils/isEmptyElement.js +0 -0
  57. package/{esm → lib}/slot-fill/utils/isEmptyElement.js.map +0 -0
  58. package/package.json +9 -8
  59. package/esm/index.d.ts +0 -0
  60. package/esm/index.js +0 -2
  61. package/esm/index.js.map +0 -1
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { createSlotFill, Slot, Fill, Provider as SlotFillProvider, useSlot as __experimentalUseSlot, } from './slot-fill';
package/lib/index.js ADDED
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.__experimentalUseSlot = exports.SlotFillProvider = exports.Fill = exports.Slot = exports.createSlotFill = void 0;
4
+ var slot_fill_1 = require("./slot-fill");
5
+ Object.defineProperty(exports, "createSlotFill", { enumerable: true, get: function () { return slot_fill_1.createSlotFill; } });
6
+ Object.defineProperty(exports, "Slot", { enumerable: true, get: function () { return slot_fill_1.Slot; } });
7
+ Object.defineProperty(exports, "Fill", { enumerable: true, get: function () { return slot_fill_1.Fill; } });
8
+ Object.defineProperty(exports, "SlotFillProvider", { enumerable: true, get: function () { return slot_fill_1.Provider; } });
9
+ Object.defineProperty(exports, "__experimentalUseSlot", { enumerable: true, get: function () { return slot_fill_1.useSlot; } });
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,yCAMqB;AALpB,2GAAA,cAAc,OAAA;AACd,iGAAA,IAAI,OAAA;AACJ,iGAAA,IAAI,OAAA;AACJ,6GAAA,QAAQ,OAAoB;AAC5B,kHAAA,OAAO,OAAyB"}
@@ -0,0 +1 @@
1
+ export { createSlotFill, Slot, Fill, Provider as SlotFillProvider, } from './slot-fill';
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SlotFillProvider = exports.Fill = exports.Slot = exports.createSlotFill = void 0;
4
+ var slot_fill_1 = require("./slot-fill");
5
+ Object.defineProperty(exports, "createSlotFill", { enumerable: true, get: function () { return slot_fill_1.createSlotFill; } });
6
+ Object.defineProperty(exports, "Slot", { enumerable: true, get: function () { return slot_fill_1.Slot; } });
7
+ Object.defineProperty(exports, "Fill", { enumerable: true, get: function () { return slot_fill_1.Fill; } });
8
+ Object.defineProperty(exports, "SlotFillProvider", { enumerable: true, get: function () { return slot_fill_1.Provider; } });
9
+ //# sourceMappingURL=index.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.native.js","sourceRoot":"","sources":["../src/index.native.ts"],"names":[],"mappings":";;;AAAA,yCAKqB;AAJpB,2GAAA,cAAc,OAAA;AACd,iGAAA,IAAI,OAAA;AACJ,iGAAA,IAAI,OAAA;AACJ,6GAAA,QAAQ,OAAoB"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export default function Fill({ name, children }: {
3
2
  name: any;
4
3
  children: any;
File without changes
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IReactContext } from '../interfaces';
3
2
  declare const SlotFillContext: import("react").Context<IReactContext>;
4
3
  export default SlotFillContext;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export default function SlotFillProvider({ children }: {
3
2
  children: any;
4
3
  }): JSX.Element;
File without changes
File without changes
File without changes
File without changes
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import Fill from './base/fill';
3
2
  import Provider from './base/provider';
4
3
  import { ISlotProps } from './interfaces';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/components-pro",
3
- "version": "0.1.23",
3
+ "version": "0.2.10",
4
4
  "description": "browser plugin for git",
5
5
  "homepage": "https://github.com/cdmbase/fullstack-pro#readme",
6
6
  "bugs": {
@@ -12,8 +12,9 @@
12
12
  },
13
13
  "license": "MIT",
14
14
  "author": "CDMBase LLC",
15
- "main": "esm/index.js",
16
- "typings": "esm/index.d.ts",
15
+ "main": "lib/index.js",
16
+ "react-native": "lib/index.native.js",
17
+ "typings": "lib/index.d.ts",
17
18
  "scripts": {
18
19
  "build": "npm run build:clean && npm run build:lib",
19
20
  "build:clean": "rimraf esm",
@@ -27,10 +28,10 @@
27
28
  "watch": "npm run build:lib:watch"
28
29
  },
29
30
  "dependencies": {
30
- "@wordpress/compose": "^5.2.1",
31
- "@wordpress/hooks": "^2.10.0",
32
- "@wordpress/is-shallow-equal": "^4.4.1",
33
- "@wordpress/warning": "^2.4.1",
31
+ "@wordpress/compose": "~5.12.0",
32
+ "@wordpress/hooks": "~3.14.0",
33
+ "@wordpress/is-shallow-equal": "~4.14.0",
34
+ "@wordpress/warning": "~2.14.0",
34
35
  "history-with-query": "^4.10.4",
35
36
  "sort-keys": "^4.1.0"
36
37
  },
@@ -47,7 +48,7 @@
47
48
  "publishConfig": {
48
49
  "access": "public"
49
50
  },
50
- "gitHead": "e0e6edd7c24adc4acff324968a8a41a55066aad5",
51
+ "gitHead": "f6e1150855551461e5854306c7e8ac180cf8fdc4",
51
52
  "typescript": {
52
53
  "definition": "lib/index.d.ts"
53
54
  }
package/esm/index.d.ts DELETED
File without changes
package/esm/index.js DELETED
@@ -1,2 +0,0 @@
1
- console.log('This is sample');
2
- //# sourceMappingURL=index.js.map
package/esm/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA"}