singularity-components 0.1.78 → 0.1.79
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/main.cjs +23 -0
- package/dist/main.cjs.map +1 -1
- package/dist/main.css +23 -0
- package/dist/main.css.map +1 -1
- package/dist/main.d.cts +4 -1
- package/dist/main.d.ts +4 -1
- package/dist/main.js +22 -1
- package/dist/main.js.map +1 -1
- package/package.json +2 -1
package/dist/main.cjs
CHANGED
|
@@ -7,6 +7,7 @@ var tailwindMerge = require('tailwind-merge');
|
|
|
7
7
|
var jsxRuntime = require('react/jsx-runtime');
|
|
8
8
|
var classVarianceAuthority = require('class-variance-authority');
|
|
9
9
|
var reactSlot = require('@radix-ui/react-slot');
|
|
10
|
+
var SeparatorPrimitive = require('@radix-ui/react-separator');
|
|
10
11
|
var reactSpinners = require('react-spinners');
|
|
11
12
|
|
|
12
13
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -32,6 +33,7 @@ function _interopNamespace(e) {
|
|
|
32
33
|
var AccordionPrimitive__namespace = /*#__PURE__*/_interopNamespace(AccordionPrimitive);
|
|
33
34
|
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
34
35
|
var clsx2__default = /*#__PURE__*/_interopDefault(clsx2);
|
|
36
|
+
var SeparatorPrimitive__namespace = /*#__PURE__*/_interopNamespace(SeparatorPrimitive);
|
|
35
37
|
|
|
36
38
|
var __defProp = Object.defineProperty;
|
|
37
39
|
var __export = (target, all) => {
|
|
@@ -20403,6 +20405,26 @@ Layout.Col1 = Col;
|
|
|
20403
20405
|
Layout.Col2 = Col;
|
|
20404
20406
|
Layout.Col3 = Col;
|
|
20405
20407
|
Layout.Col4 = Col;
|
|
20408
|
+
function Separator({
|
|
20409
|
+
className,
|
|
20410
|
+
orientation = "horizontal",
|
|
20411
|
+
decorative = true,
|
|
20412
|
+
...props
|
|
20413
|
+
}) {
|
|
20414
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
20415
|
+
SeparatorPrimitive__namespace.Root,
|
|
20416
|
+
{
|
|
20417
|
+
"data-slot": "separator",
|
|
20418
|
+
decorative,
|
|
20419
|
+
orientation,
|
|
20420
|
+
className: cn(
|
|
20421
|
+
"sg:bg-border sg:shrink-0 sg:data-[orientation=horizontal]:h-px sg:data-[orientation=horizontal]:w-full sg:data-[orientation=vertical]:h-full sg:data-[orientation=vertical]:w-px",
|
|
20422
|
+
className
|
|
20423
|
+
),
|
|
20424
|
+
...props
|
|
20425
|
+
}
|
|
20426
|
+
);
|
|
20427
|
+
}
|
|
20406
20428
|
function Skeleton({ className, ...props }) {
|
|
20407
20429
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
20408
20430
|
"div",
|
|
@@ -33514,6 +33536,7 @@ exports.Heading = Heading7;
|
|
|
33514
33536
|
exports.Icon = Icon2;
|
|
33515
33537
|
exports.Input = Input;
|
|
33516
33538
|
exports.Layout = Layout;
|
|
33539
|
+
exports.Separator = Separator;
|
|
33517
33540
|
exports.Skeleton = Skeleton;
|
|
33518
33541
|
exports.Spinner = Spinner;
|
|
33519
33542
|
exports.Table = Table3;
|