@c15t/dev-tools 0.0.1-rc.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/CHANGELOG.md +23 -0
- package/LICENSE.md +595 -0
- package/README.md +47 -0
- package/dist/components/error-state.cjs +98 -0
- package/dist/components/error-state.css +51 -0
- package/dist/components/error-state.d.ts +5 -0
- package/dist/components/error-state.d.ts.map +1 -0
- package/dist/components/error-state.js +64 -0
- package/dist/components/header.cjs +65 -0
- package/dist/components/header.css +29 -0
- package/dist/components/header.d.ts +7 -0
- package/dist/components/header.d.ts.map +1 -0
- package/dist/components/header.js +31 -0
- package/dist/components/ui/accordion.cjs +76 -0
- package/dist/components/ui/accordion.css +72 -0
- package/dist/components/ui/accordion.d.ts +8 -0
- package/dist/components/ui/accordion.d.ts.map +1 -0
- package/dist/components/ui/accordion.js +39 -0
- package/dist/components/ui/alert.cjs +73 -0
- package/dist/components/ui/alert.css +59 -0
- package/dist/components/ui/alert.d.ts +10 -0
- package/dist/components/ui/alert.d.ts.map +1 -0
- package/dist/components/ui/alert.js +37 -0
- package/dist/components/ui/badge.cjs +61 -0
- package/dist/components/ui/badge.css +52 -0
- package/dist/components/ui/badge.d.ts +11 -0
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/badge.js +26 -0
- package/dist/components/ui/button.cjs +75 -0
- package/dist/components/ui/button.css +87 -0
- package/dist/components/ui/button.d.ts +13 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/button.js +40 -0
- package/dist/components/ui/card.cjs +79 -0
- package/dist/components/ui/card.css +41 -0
- package/dist/components/ui/card.d.ts +10 -0
- package/dist/components/ui/card.d.ts.map +1 -0
- package/dist/components/ui/card.js +40 -0
- package/dist/components/ui/error-state.css +34 -0
- package/dist/components/ui/expandable-tabs.cjs +136 -0
- package/dist/components/ui/expandable-tabs.css +57 -0
- package/dist/components/ui/expandable-tabs.d.ts +23 -0
- package/dist/components/ui/expandable-tabs.d.ts.map +1 -0
- package/dist/components/ui/expandable-tabs.js +102 -0
- package/dist/components/ui/logo.cjs +101 -0
- package/dist/components/ui/logo.d.ts +8 -0
- package/dist/components/ui/logo.d.ts.map +1 -0
- package/dist/components/ui/logo.js +67 -0
- package/dist/components/ui/scroll-area.cjs +65 -0
- package/dist/components/ui/scroll-area.css +42 -0
- package/dist/components/ui/scroll-area.d.ts +6 -0
- package/dist/components/ui/scroll-area.d.ts.map +1 -0
- package/dist/components/ui/scroll-area.js +30 -0
- package/dist/components/ui/switch.cjs +49 -0
- package/dist/components/ui/switch.css +49 -0
- package/dist/components/ui/switch.d.ts +5 -0
- package/dist/components/ui/switch.d.ts.map +1 -0
- package/dist/components/ui/switch.js +15 -0
- package/dist/components/ui/tooltip.cjs +55 -0
- package/dist/components/ui/tooltip.css +101 -0
- package/dist/components/ui/tooltip.d.ts +8 -0
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/components/ui/tooltip.js +18 -0
- package/dist/components/wrapper.cjs +156 -0
- package/dist/components/wrapper.css +90 -0
- package/dist/components/wrapper.d.ts +20 -0
- package/dist/components/wrapper.d.ts.map +1 -0
- package/dist/components/wrapper.js +121 -0
- package/dist/dev-tool.cjs +124 -0
- package/dist/dev-tool.d.ts +15 -0
- package/dist/dev-tool.d.ts.map +1 -0
- package/dist/dev-tool.js +74 -0
- package/dist/index.cjs +36 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/libs/utils.cjs +54 -0
- package/dist/libs/utils.d.ts +3 -0
- package/dist/libs/utils.d.ts.map +1 -0
- package/dist/libs/utils.js +6 -0
- package/dist/router/router.cjs +158 -0
- package/dist/router/router.d.ts +6 -0
- package/dist/router/router.d.ts.map +1 -0
- package/dist/router/router.js +124 -0
- package/dist/styles/theme.css +42 -0
- package/package.json +49 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.c15t-devtool-alert {
|
|
2
|
+
border: 1px solid var(--c15t-dev-tools-border);
|
|
3
|
+
border-radius: .5rem;
|
|
4
|
+
width: 100%;
|
|
5
|
+
padding: .75rem 1rem;
|
|
6
|
+
font-size: .875rem;
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.c15t-devtool-alert > svg {
|
|
11
|
+
color: var(--c15t-dev-tools-foreground);
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 1rem;
|
|
14
|
+
left: 1rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.c15t-devtool-alert > svg + div {
|
|
18
|
+
transform: translateY(-3px);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.c15t-devtool-alert > svg ~ * {
|
|
22
|
+
padding-left: 1.75rem;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.c15t-devtool-alert-default {
|
|
26
|
+
background-color: var(--c15t-dev-tools-background);
|
|
27
|
+
color: var(--c15t-dev-tools-foreground);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.c15t-devtool-alert-destructive {
|
|
31
|
+
border-color: color-mix(in srgb, var(--c15t-dev-tools-destructive) 50%, transparent);
|
|
32
|
+
color: var(--c15t-dev-tools-destructive);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.c15t-devtool-alert-destructive > svg {
|
|
36
|
+
color: var(--c15t-dev-tools-destructive);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@media (prefers-color-scheme: dark) {
|
|
40
|
+
.c15t-devtool-alert-destructive {
|
|
41
|
+
border-color: var(--c15t-dev-tools-destructive);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.c15t-devtool-alert-title {
|
|
46
|
+
letter-spacing: -.025em;
|
|
47
|
+
margin-bottom: .25rem;
|
|
48
|
+
font-weight: 500;
|
|
49
|
+
line-height: 1;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.c15t-devtool-alert-description {
|
|
53
|
+
font-size: .875rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.c15t-devtool-alert-description p {
|
|
57
|
+
line-height: 1.625;
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { type HTMLAttributes } from 'react';
|
|
3
|
+
import './alert.css';
|
|
4
|
+
declare const Alert: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
5
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const AlertTitle: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLHeadingElement> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
8
|
+
declare const AlertDescription: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLParagraphElement> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
9
|
+
export { Alert, AlertTitle, AlertDescription };
|
|
10
|
+
//# sourceMappingURL=alert.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../src/components/ui/alert.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAO,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,KAAK,cAAc,EAAc,MAAM,OAAO,CAAC;AACxD,OAAO,aAAa,CAAC;AAcrB,QAAA,MAAM,KAAK;;gIAUT,CAAC;AAGH,QAAA,MAAM,UAAU,qIASd,CAAC;AAGH,QAAA,MAAM,gBAAgB,uIASpB,CAAC;AAGH,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__ from "class-variance-authority";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
4
|
+
import "./alert.css";
|
|
5
|
+
const alertVariants = (0, __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__.cva)('c15t-devtool-alert', {
|
|
6
|
+
variants: {
|
|
7
|
+
variant: {
|
|
8
|
+
default: 'c15t-devtool-alert-default',
|
|
9
|
+
destructive: 'c15t-devtool-alert-destructive'
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
defaultVariants: {
|
|
13
|
+
variant: 'default'
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
const Alert = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, variant, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
17
|
+
ref: ref,
|
|
18
|
+
role: "alert",
|
|
19
|
+
className: `${alertVariants({
|
|
20
|
+
variant
|
|
21
|
+
})} ${className || ''}`,
|
|
22
|
+
...props
|
|
23
|
+
}));
|
|
24
|
+
Alert.displayName = 'Alert';
|
|
25
|
+
const AlertTitle = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("h5", {
|
|
26
|
+
ref: ref,
|
|
27
|
+
className: `c15t-devtool-alert-title ${className || ''}`,
|
|
28
|
+
...props
|
|
29
|
+
}));
|
|
30
|
+
AlertTitle.displayName = 'AlertTitle';
|
|
31
|
+
const AlertDescription = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
32
|
+
ref: ref,
|
|
33
|
+
className: `c15t-devtool-alert-description ${className || ''}`,
|
|
34
|
+
...props
|
|
35
|
+
}));
|
|
36
|
+
AlertDescription.displayName = "AlertDescription";
|
|
37
|
+
export { Alert, AlertDescription, AlertTitle };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = function(exports1, definition) {
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = function(obj, prop) {
|
|
13
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
14
|
+
};
|
|
15
|
+
})();
|
|
16
|
+
(()=>{
|
|
17
|
+
__webpack_require__.r = function(exports1) {
|
|
18
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
19
|
+
value: 'Module'
|
|
20
|
+
});
|
|
21
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
22
|
+
value: true
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
})();
|
|
26
|
+
var __webpack_exports__ = {};
|
|
27
|
+
__webpack_require__.r(__webpack_exports__);
|
|
28
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
29
|
+
badgeVariants: ()=>badgeVariants,
|
|
30
|
+
Badge: ()=>Badge
|
|
31
|
+
});
|
|
32
|
+
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
33
|
+
const external_class_variance_authority_namespaceObject = require("class-variance-authority");
|
|
34
|
+
const utils_cjs_namespaceObject = require("../../libs/utils.cjs");
|
|
35
|
+
require("./badge.css");
|
|
36
|
+
const badgeVariants = (0, external_class_variance_authority_namespaceObject.cva)('c15t-devtool-badge', {
|
|
37
|
+
variants: {
|
|
38
|
+
variant: {
|
|
39
|
+
default: 'c15t-devtool-badge-default',
|
|
40
|
+
secondary: 'c15t-devtool-badge-secondary',
|
|
41
|
+
destructive: 'c15t-devtool-badge-destructive',
|
|
42
|
+
outline: 'c15t-devtool-badge-outline'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
defaultVariants: {
|
|
46
|
+
variant: 'default'
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
function Badge({ className, variant, ...props }) {
|
|
50
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
51
|
+
className: (0, utils_cjs_namespaceObject.cn)(badgeVariants({
|
|
52
|
+
variant
|
|
53
|
+
}), className),
|
|
54
|
+
...props
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
var __webpack_export_target__ = exports;
|
|
58
|
+
for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
59
|
+
if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
.c15t-devtool-badge {
|
|
2
|
+
border: 1px solid #0000;
|
|
3
|
+
border-radius: 9999px;
|
|
4
|
+
align-items: center;
|
|
5
|
+
padding: .125rem .625rem;
|
|
6
|
+
font-size: .75rem;
|
|
7
|
+
font-weight: 600;
|
|
8
|
+
transition-property: color, background-color;
|
|
9
|
+
transition-duration: .15s;
|
|
10
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.c15t-devtool-badge:focus, .c15t-devtool-badge:focus-visible {
|
|
15
|
+
outline: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.c15t-devtool-badge-default {
|
|
19
|
+
background-color: var(--c15t-dev-tools-primary);
|
|
20
|
+
color: var(--c15t-dev-tools-primary-foreground);
|
|
21
|
+
border-color: #0000;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.c15t-devtool-badge-default:hover {
|
|
25
|
+
background-color: color-mix(in srgb, var(--c15t-dev-tools-primary) 80%, transparent);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.c15t-devtool-badge-secondary {
|
|
29
|
+
background-color: var(--c15t-dev-tools-secondary);
|
|
30
|
+
color: var(--c15t-dev-tools-secondary-foreground);
|
|
31
|
+
border-color: #0000;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.c15t-devtool-badge-secondary:hover {
|
|
35
|
+
background-color: color-mix(in srgb, var(--c15t-dev-tools-secondary) 80%, transparent);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.c15t-devtool-badge-destructive {
|
|
39
|
+
background-color: var(--c15t-dev-tools-destructive);
|
|
40
|
+
color: var(--c15t-dev-tools-destructive-foreground);
|
|
41
|
+
border-color: #0000;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.c15t-devtool-badge-destructive:hover {
|
|
45
|
+
background-color: color-mix(in srgb, var(--c15t-dev-tools-destructive) 80%, transparent);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.c15t-devtool-badge-outline {
|
|
49
|
+
border-color: var(--c15t-dev-tools-border);
|
|
50
|
+
color: var(--c15t-dev-tools-foreground);
|
|
51
|
+
}
|
|
52
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
+
import type { HTMLAttributes } from 'react';
|
|
3
|
+
import './badge.css';
|
|
4
|
+
declare const badgeVariants: (props?: ({
|
|
5
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface BadgeProps extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
8
|
+
}
|
|
9
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Badge, badgeVariants };
|
|
11
|
+
//# sourceMappingURL=badge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAE5C,OAAO,aAAa,CAAC;AAErB,QAAA,MAAM,aAAa;;8EAYjB,CAAC;AAEH,MAAM,WAAW,UAChB,SAAQ,cAAc,CAAC,cAAc,CAAC,EACrC,YAAY,CAAC,OAAO,aAAa,CAAC;CAAG;AAEvC,iBAAS,KAAK,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,GAAG,KAAK,EAAE,EAAE,UAAU,2CAI1D;AAED,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__ from "class-variance-authority";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__libs_utils_js_eb00b89d__ from "../../libs/utils.js";
|
|
4
|
+
import "./badge.css";
|
|
5
|
+
const badgeVariants = (0, __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__.cva)('c15t-devtool-badge', {
|
|
6
|
+
variants: {
|
|
7
|
+
variant: {
|
|
8
|
+
default: 'c15t-devtool-badge-default',
|
|
9
|
+
secondary: 'c15t-devtool-badge-secondary',
|
|
10
|
+
destructive: 'c15t-devtool-badge-destructive',
|
|
11
|
+
outline: 'c15t-devtool-badge-outline'
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
defaultVariants: {
|
|
15
|
+
variant: 'default'
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
function Badge({ className, variant, ...props }) {
|
|
19
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
20
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE__libs_utils_js_eb00b89d__.cn)(badgeVariants({
|
|
21
|
+
variant
|
|
22
|
+
}), className),
|
|
23
|
+
...props
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
export { Badge, badgeVariants };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = function(exports1, definition) {
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = function(obj, prop) {
|
|
13
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
14
|
+
};
|
|
15
|
+
})();
|
|
16
|
+
(()=>{
|
|
17
|
+
__webpack_require__.r = function(exports1) {
|
|
18
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
19
|
+
value: 'Module'
|
|
20
|
+
});
|
|
21
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
22
|
+
value: true
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
})();
|
|
26
|
+
var __webpack_exports__ = {};
|
|
27
|
+
__webpack_require__.r(__webpack_exports__);
|
|
28
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
29
|
+
buttonVariants: ()=>buttonVariants,
|
|
30
|
+
Button: ()=>Button
|
|
31
|
+
});
|
|
32
|
+
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
33
|
+
const react_slot_namespaceObject = require("@radix-ui/react-slot");
|
|
34
|
+
const external_class_variance_authority_namespaceObject = require("class-variance-authority");
|
|
35
|
+
const external_react_namespaceObject = require("react");
|
|
36
|
+
require("./button.css");
|
|
37
|
+
const buttonVariants = (0, external_class_variance_authority_namespaceObject.cva)('c15t-devtool-button', {
|
|
38
|
+
variants: {
|
|
39
|
+
variant: {
|
|
40
|
+
default: 'c15t-devtool-button-default',
|
|
41
|
+
destructive: 'c15t-devtool-button-destructive',
|
|
42
|
+
outline: 'c15t-devtool-button-outline',
|
|
43
|
+
secondary: 'c15t-devtool-button-secondary',
|
|
44
|
+
ghost: 'c15t-devtool-button-ghost',
|
|
45
|
+
link: 'c15t-devtool-button-link'
|
|
46
|
+
},
|
|
47
|
+
size: {
|
|
48
|
+
default: 'c15t-devtool-button-size-default',
|
|
49
|
+
sm: 'c15t-devtool-button-size-sm',
|
|
50
|
+
lg: 'c15t-devtool-button-size-lg',
|
|
51
|
+
icon: 'c15t-devtool-button-size-icon'
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
defaultVariants: {
|
|
55
|
+
variant: 'default',
|
|
56
|
+
size: 'default'
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
const Button = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, variant, size, asChild = false, ...props }, ref)=>{
|
|
60
|
+
const Comp = asChild ? react_slot_namespaceObject.Slot : 'button';
|
|
61
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(Comp, {
|
|
62
|
+
className: `${buttonVariants({
|
|
63
|
+
variant,
|
|
64
|
+
size
|
|
65
|
+
})} ${className || ''}`,
|
|
66
|
+
ref: ref,
|
|
67
|
+
...props
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
Button.displayName = 'Button';
|
|
71
|
+
var __webpack_export_target__ = exports;
|
|
72
|
+
for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
73
|
+
if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
|
|
74
|
+
value: true
|
|
75
|
+
});
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
.c15t-devtool-button {
|
|
2
|
+
border-radius: .375rem;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
align-items: center;
|
|
5
|
+
gap: .5rem;
|
|
6
|
+
font-size: .875rem;
|
|
7
|
+
font-weight: 500;
|
|
8
|
+
transition-property: color, background-color, border-color;
|
|
9
|
+
transition-duration: .15s;
|
|
10
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.c15t-devtool-button:focus-visible {
|
|
15
|
+
outline: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.c15t-devtool-button:disabled {
|
|
19
|
+
pointer-events: none;
|
|
20
|
+
opacity: .5;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.c15t-devtool-button-default {
|
|
24
|
+
background-color: var(--c15t-dev-tools-primary);
|
|
25
|
+
color: var(--c15t-dev-tools-primary-foreground);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.c15t-devtool-button-destructive {
|
|
29
|
+
background-color: var(--c15t-dev-tools-destructive);
|
|
30
|
+
color: var(--c15t-dev-tools-destructive-foreground);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.c15t-devtool-button-outline {
|
|
34
|
+
border: 1px solid var(--c15t-dev-tools-input);
|
|
35
|
+
background-color: var(--c15t-dev-tools-background);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.c15t-devtool-button-outline:hover {
|
|
39
|
+
background-color: var(--c15t-dev-tools-accent);
|
|
40
|
+
color: var(--c15t-dev-tools-accent-foreground);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.c15t-devtool-button-secondary {
|
|
44
|
+
background-color: var(--c15t-dev-tools-secondary);
|
|
45
|
+
color: var(--c15t-dev-tools-secondary-foreground);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.c15t-devtool-button-secondary:hover {
|
|
49
|
+
background-color: color-mix(in srgb, var(--c15t-dev-tools-secondary) 80%, transparent);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.c15t-devtool-button-ghost:hover {
|
|
53
|
+
background-color: var(--c15t-dev-tools-accent);
|
|
54
|
+
color: var(--c15t-dev-tools-accent-foreground);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.c15t-devtool-button-link {
|
|
58
|
+
color: var(--c15t-dev-tools-primary);
|
|
59
|
+
text-underline-offset: 4px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.c15t-devtool-button-link:hover {
|
|
63
|
+
text-decoration: underline;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.c15t-devtool-button-size-default {
|
|
67
|
+
height: 2.5rem;
|
|
68
|
+
padding: .5rem 1rem;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.c15t-devtool-button-size-sm {
|
|
72
|
+
border-radius: .375rem;
|
|
73
|
+
height: 2.25rem;
|
|
74
|
+
padding: 0 .75rem;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.c15t-devtool-button-size-lg {
|
|
78
|
+
border-radius: .375rem;
|
|
79
|
+
height: 2.75rem;
|
|
80
|
+
padding: 0 2rem;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.c15t-devtool-button-size-icon {
|
|
84
|
+
width: 2.5rem;
|
|
85
|
+
height: 2.5rem;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { type ButtonHTMLAttributes } from 'react';
|
|
3
|
+
import './button.css';
|
|
4
|
+
declare const buttonVariants: (props?: ({
|
|
5
|
+
variant?: "default" | "destructive" | "link" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
6
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
7
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
9
|
+
asChild?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
12
|
+
export { Button, buttonVariants };
|
|
13
|
+
//# sourceMappingURL=button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/ui/button.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,YAAY,EAAO,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,KAAK,oBAAoB,EAAc,MAAM,OAAO,CAAC;AAC9D,OAAO,cAAc,CAAC;AAEtB,QAAA,MAAM,cAAc;;;8EAqBlB,CAAC;AAEH,MAAM,WAAW,WAChB,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC,EAC9C,YAAY,CAAC,OAAO,cAAc,CAAC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,QAAA,MAAM,MAAM,2GAWX,CAAC;AAGF,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__radix_ui_react_slot_85c2da36__ from "@radix-ui/react-slot";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__ from "class-variance-authority";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
5
|
+
import "./button.css";
|
|
6
|
+
const buttonVariants = (0, __WEBPACK_EXTERNAL_MODULE_class_variance_authority_159ad65c__.cva)('c15t-devtool-button', {
|
|
7
|
+
variants: {
|
|
8
|
+
variant: {
|
|
9
|
+
default: 'c15t-devtool-button-default',
|
|
10
|
+
destructive: 'c15t-devtool-button-destructive',
|
|
11
|
+
outline: 'c15t-devtool-button-outline',
|
|
12
|
+
secondary: 'c15t-devtool-button-secondary',
|
|
13
|
+
ghost: 'c15t-devtool-button-ghost',
|
|
14
|
+
link: 'c15t-devtool-button-link'
|
|
15
|
+
},
|
|
16
|
+
size: {
|
|
17
|
+
default: 'c15t-devtool-button-size-default',
|
|
18
|
+
sm: 'c15t-devtool-button-size-sm',
|
|
19
|
+
lg: 'c15t-devtool-button-size-lg',
|
|
20
|
+
icon: 'c15t-devtool-button-size-icon'
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
defaultVariants: {
|
|
24
|
+
variant: 'default',
|
|
25
|
+
size: 'default'
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const Button = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, variant, size, asChild = false, ...props }, ref)=>{
|
|
29
|
+
const Comp = asChild ? __WEBPACK_EXTERNAL_MODULE__radix_ui_react_slot_85c2da36__.Slot : 'button';
|
|
30
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Comp, {
|
|
31
|
+
className: `${buttonVariants({
|
|
32
|
+
variant,
|
|
33
|
+
size
|
|
34
|
+
})} ${className || ''}`,
|
|
35
|
+
ref: ref,
|
|
36
|
+
...props
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
Button.displayName = 'Button';
|
|
40
|
+
export { Button, buttonVariants };
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = function(exports1, definition) {
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = function(obj, prop) {
|
|
13
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
14
|
+
};
|
|
15
|
+
})();
|
|
16
|
+
(()=>{
|
|
17
|
+
__webpack_require__.r = function(exports1) {
|
|
18
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
19
|
+
value: 'Module'
|
|
20
|
+
});
|
|
21
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
22
|
+
value: true
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
})();
|
|
26
|
+
var __webpack_exports__ = {};
|
|
27
|
+
__webpack_require__.r(__webpack_exports__);
|
|
28
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
29
|
+
CardHeader: ()=>CardHeader,
|
|
30
|
+
CardDescription: ()=>CardDescription,
|
|
31
|
+
CardTitle: ()=>CardTitle,
|
|
32
|
+
Card: ()=>Card,
|
|
33
|
+
CardContent: ()=>CardContent,
|
|
34
|
+
CardFooter: ()=>CardFooter
|
|
35
|
+
});
|
|
36
|
+
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
37
|
+
const external_react_namespaceObject = require("react");
|
|
38
|
+
require("./card.css");
|
|
39
|
+
const Card = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
40
|
+
ref: ref,
|
|
41
|
+
className: `c15t-devtool-card ${className || ''}`,
|
|
42
|
+
...props
|
|
43
|
+
}));
|
|
44
|
+
Card.displayName = 'Card';
|
|
45
|
+
const CardHeader = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
46
|
+
ref: ref,
|
|
47
|
+
className: `c15t-devtool-card-header ${className || ''}`,
|
|
48
|
+
...props
|
|
49
|
+
}));
|
|
50
|
+
CardHeader.displayName = 'CardHeader';
|
|
51
|
+
const CardTitle = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("h3", {
|
|
52
|
+
ref: ref,
|
|
53
|
+
className: `c15t-devtool-card-title ${className || ''}`,
|
|
54
|
+
...props
|
|
55
|
+
}));
|
|
56
|
+
CardTitle.displayName = 'CardTitle';
|
|
57
|
+
const CardDescription = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("p", {
|
|
58
|
+
ref: ref,
|
|
59
|
+
className: `c15t-devtool-card-description ${className || ''}`,
|
|
60
|
+
...props
|
|
61
|
+
}));
|
|
62
|
+
CardDescription.displayName = "CardDescription";
|
|
63
|
+
const CardContent = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
64
|
+
ref: ref,
|
|
65
|
+
className: `c15t-devtool-card-content ${className || ''}`,
|
|
66
|
+
...props
|
|
67
|
+
}));
|
|
68
|
+
CardContent.displayName = 'CardContent';
|
|
69
|
+
const CardFooter = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
70
|
+
ref: ref,
|
|
71
|
+
className: `c15t-devtool-card-footer ${className || ''}`,
|
|
72
|
+
...props
|
|
73
|
+
}));
|
|
74
|
+
CardFooter.displayName = 'CardFooter';
|
|
75
|
+
var __webpack_export_target__ = exports;
|
|
76
|
+
for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
77
|
+
if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
|
|
78
|
+
value: true
|
|
79
|
+
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.c15t-devtool-card {
|
|
2
|
+
border: 1px solid var(--c15t-dev-tools-border);
|
|
3
|
+
background-color: var(--c15t-dev-tools-card);
|
|
4
|
+
color: var(--c15t-dev-tools-card-foreground);
|
|
5
|
+
border-radius: .5rem;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
box-shadow: 0 1px 2px #0000000d;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.c15t-devtool-card-header {
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
padding: 1.5rem;
|
|
13
|
+
display: flex;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.c15t-devtool-card-header > * + * {
|
|
17
|
+
margin-top: .375rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.c15t-devtool-card-title {
|
|
21
|
+
letter-spacing: -.025em;
|
|
22
|
+
font-size: 1.5rem;
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
line-height: 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.c15t-devtool-card-description {
|
|
28
|
+
color: var(--c15t-dev-tools-muted-foreground);
|
|
29
|
+
font-size: .875rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.c15t-devtool-card-content {
|
|
33
|
+
padding: 0 1.5rem 1.5rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.c15t-devtool-card-footer {
|
|
37
|
+
align-items: center;
|
|
38
|
+
padding: 0 1.5rem 1.5rem;
|
|
39
|
+
display: flex;
|
|
40
|
+
}
|
|
41
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type HTMLAttributes } from 'react';
|
|
2
|
+
import './card.css';
|
|
3
|
+
declare const Card: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
|
+
declare const CardHeader: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
|
+
declare const CardTitle: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLHeadingElement> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
6
|
+
declare const CardDescription: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLParagraphElement> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
7
|
+
declare const CardContent: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
declare const CardFooter: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent, };
|
|
10
|
+
//# sourceMappingURL=card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../src/components/ui/card.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAc,MAAM,OAAO,CAAC;AACxD,OAAO,YAAY,CAAC;AAEpB,QAAA,MAAM,IAAI,2HAQT,CAAC;AAGF,QAAA,MAAM,UAAU,2HAQf,CAAC;AAGF,QAAA,MAAM,SAAS,qIASb,CAAC;AAGH,QAAA,MAAM,eAAe,uIASnB,CAAC;AAGH,QAAA,MAAM,WAAW,2HAQhB,CAAC;AAGF,QAAA,MAAM,UAAU,2HAQf,CAAC;AAGF,OAAO,EACN,IAAI,EACJ,UAAU,EACV,UAAU,EACV,SAAS,EACT,eAAe,EACf,WAAW,GACX,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
3
|
+
import "./card.css";
|
|
4
|
+
const Card = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
5
|
+
ref: ref,
|
|
6
|
+
className: `c15t-devtool-card ${className || ''}`,
|
|
7
|
+
...props
|
|
8
|
+
}));
|
|
9
|
+
Card.displayName = 'Card';
|
|
10
|
+
const CardHeader = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
11
|
+
ref: ref,
|
|
12
|
+
className: `c15t-devtool-card-header ${className || ''}`,
|
|
13
|
+
...props
|
|
14
|
+
}));
|
|
15
|
+
CardHeader.displayName = 'CardHeader';
|
|
16
|
+
const CardTitle = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("h3", {
|
|
17
|
+
ref: ref,
|
|
18
|
+
className: `c15t-devtool-card-title ${className || ''}`,
|
|
19
|
+
...props
|
|
20
|
+
}));
|
|
21
|
+
CardTitle.displayName = 'CardTitle';
|
|
22
|
+
const CardDescription = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("p", {
|
|
23
|
+
ref: ref,
|
|
24
|
+
className: `c15t-devtool-card-description ${className || ''}`,
|
|
25
|
+
...props
|
|
26
|
+
}));
|
|
27
|
+
CardDescription.displayName = "CardDescription";
|
|
28
|
+
const CardContent = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
29
|
+
ref: ref,
|
|
30
|
+
className: `c15t-devtool-card-content ${className || ''}`,
|
|
31
|
+
...props
|
|
32
|
+
}));
|
|
33
|
+
CardContent.displayName = 'CardContent';
|
|
34
|
+
const CardFooter = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ className, ...props }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
35
|
+
ref: ref,
|
|
36
|
+
className: `c15t-devtool-card-footer ${className || ''}`,
|
|
37
|
+
...props
|
|
38
|
+
}));
|
|
39
|
+
CardFooter.displayName = 'CardFooter';
|
|
40
|
+
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
|