@a-type/ui 0.6.9 → 0.6.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.
- package/dist/cjs/components/slot.d.ts +1 -0
- package/dist/cjs/components/slot.js +8 -0
- package/dist/cjs/components/slot.js.map +1 -0
- package/dist/esm/components/slot.d.ts +1 -0
- package/dist/esm/components/slot.js +3 -0
- package/dist/esm/components/slot.js.map +1 -0
- package/package.json +1 -1
- package/src/components/slot.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Slot, type SlotProps, Slottable } from '@radix-ui/react-slot';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// @unocss-include
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Slottable = exports.Slot = void 0;
|
|
5
|
+
var react_slot_1 = require("@radix-ui/react-slot");
|
|
6
|
+
Object.defineProperty(exports, "Slot", { enumerable: true, get: function () { return react_slot_1.Slot; } });
|
|
7
|
+
Object.defineProperty(exports, "Slottable", { enumerable: true, get: function () { return react_slot_1.Slottable; } });
|
|
8
|
+
//# sourceMappingURL=slot.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slot.js","sourceRoot":"","sources":["../../../src/components/slot.ts"],"names":[],"mappings":";;;AAAA,mDAAuE;AAA9D,kGAAA,IAAI,OAAA;AAAkB,uGAAA,SAAS,OAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Slot, type SlotProps, Slottable } from '@radix-ui/react-slot';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slot.js","sourceRoot":"","sources":["../../../src/components/slot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAkB,SAAS,EAAE,MAAM,sBAAsB,CAAC"}
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Slot, type SlotProps, Slottable } from '@radix-ui/react-slot';
|