@common-stack/components-pro 0.1.23 → 0.1.24
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.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +10 -0
- package/lib/index.js.map +1 -0
- package/lib/index.native.d.ts +1 -0
- package/lib/index.native.js +9 -0
- package/lib/index.native.js.map +1 -0
- package/{esm → lib}/slot-fill/__tests__/filler-slot.test.d.ts +0 -0
- package/{esm → lib}/slot-fill/__tests__/filler-slot.test.js +0 -0
- package/{esm → lib}/slot-fill/__tests__/filler-slot.test.js.map +0 -0
- package/{esm → lib}/slot-fill/__tests__/slot-features.test.d.ts +0 -0
- package/{esm → lib}/slot-fill/__tests__/slot-features.test.js +0 -0
- package/{esm → lib}/slot-fill/__tests__/slot-features.test.js.map +0 -0
- package/{esm → lib}/slot-fill/base/context.d.ts +0 -0
- package/{esm → lib}/slot-fill/base/context.js +0 -0
- package/{esm → lib}/slot-fill/base/context.js.map +0 -0
- package/{esm → lib}/slot-fill/base/fill.d.ts +0 -0
- package/{esm → lib}/slot-fill/base/fill.js +0 -0
- package/{esm → lib}/slot-fill/base/fill.js.map +0 -0
- package/{esm → lib}/slot-fill/base/provider.d.ts +0 -0
- package/{esm → lib}/slot-fill/base/provider.js +0 -0
- package/{esm → lib}/slot-fill/base/provider.js.map +0 -0
- package/{esm → lib}/slot-fill/base/slot.d.ts +0 -0
- package/{esm → lib}/slot-fill/base/slot.js +0 -0
- package/{esm → lib}/slot-fill/base/slot.js.map +0 -0
- package/{esm → lib}/slot-fill/base/use-slot.d.ts +0 -0
- package/{esm → lib}/slot-fill/base/use-slot.js +0 -0
- package/{esm → lib}/slot-fill/base/use-slot.js.map +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/fill.d.ts +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/fill.js +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/fill.js.map +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.d.ts +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.js +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-context.js.map +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.d.ts +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.js +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot-fill-provider.js.map +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot.d.ts +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot.js +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/slot.js.map +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.d.ts +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.js +0 -0
- package/{esm → lib}/slot-fill/bubbles-virtually/use-slot.js.map +0 -0
- package/{esm → lib}/slot-fill/index.d.ts +0 -0
- package/{esm → lib}/slot-fill/index.js +0 -0
- package/{esm → lib}/slot-fill/index.js.map +0 -0
- package/{esm → lib}/slot-fill/index.native.d.ts +0 -0
- package/{esm → lib}/slot-fill/index.native.js +0 -0
- package/{esm → lib}/slot-fill/index.native.js.map +0 -0
- package/{esm → lib}/slot-fill/interfaces/index.d.ts +0 -0
- package/{esm → lib}/slot-fill/interfaces/index.js +0 -0
- package/{esm → lib}/slot-fill/interfaces/index.js.map +0 -0
- package/{esm → lib}/slot-fill/utils/index.d.ts +0 -0
- package/{esm → lib}/slot-fill/utils/index.js +0 -0
- package/{esm → lib}/slot-fill/utils/index.js.map +0 -0
- package/{esm → lib}/slot-fill/utils/isEmptyElement.d.ts +0 -0
- package/{esm → lib}/slot-fill/utils/isEmptyElement.js +0 -0
- package/{esm → lib}/slot-fill/utils/isEmptyElement.js.map +0 -0
- package/package.json +5 -4
- package/esm/index.d.ts +0 -0
- package/esm/index.js +0 -2
- 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
|
package/lib/index.js.map
ADDED
|
@@ -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
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "0.1.24",
|
|
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": "
|
|
16
|
-
"
|
|
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",
|
|
@@ -47,7 +48,7 @@
|
|
|
47
48
|
"publishConfig": {
|
|
48
49
|
"access": "public"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "1318b4a3b9a55a5ad2a1d12a23264924f0fcb375",
|
|
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
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"}
|