@lotte-innovate/ui-component-test 0.1.126 → 0.1.127-beta.0
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/README.md +222 -222
- package/dist/globals.css +4 -4
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.d.ts +6 -2
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.js +18 -3
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.mjs +1 -1
- package/dist/lib/components/Grid/useGrid.js +8 -4
- package/dist/lib/components/Grid/useGrid.mjs +1 -1
- package/dist/lib/components/Timeline/TimelineConnector.js +1 -3
- package/dist/lib/components/Timeline/TimelineConnector.mjs +2 -0
- package/dist/lib/components/Timeline/TimelineConnector.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineContent.mjs +2 -0
- package/dist/lib/components/Timeline/TimelineContent.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineDescription.mjs +2 -0
- package/dist/lib/components/Timeline/TimelineDescription.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineHeader.mjs +2 -0
- package/dist/lib/components/Timeline/TimelineHeader.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineIcon.js +4 -3
- package/dist/lib/components/Timeline/TimelineIcon.mjs +3 -0
- package/dist/lib/components/Timeline/TimelineIcon.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineItem.js +1 -1
- package/dist/lib/components/Timeline/TimelineItem.mjs +2 -0
- package/dist/lib/components/Timeline/TimelineItem.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineRoot.js +5 -5
- package/dist/lib/components/Timeline/TimelineRoot.mjs +3 -0
- package/dist/lib/components/Timeline/TimelineRoot.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineTime.d.ts +3 -1
- package/dist/lib/components/Timeline/TimelineTime.js +16 -4
- package/dist/lib/components/Timeline/TimelineTime.mjs +3 -0
- package/dist/lib/components/Timeline/TimelineTime.mjs.map +1 -0
- package/dist/lib/components/Timeline/TimelineTitle.d.ts +3 -1
- package/dist/lib/components/Timeline/TimelineTitle.js +16 -4
- package/dist/lib/components/Timeline/TimelineTitle.mjs +3 -0
- package/dist/lib/components/Timeline/TimelineTitle.mjs.map +1 -0
- package/dist/lib/components/Timeline/index.mjs +2 -0
- package/dist/lib/components/Timeline/index.mjs.map +1 -0
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/components/index.js +1 -0
- package/dist/lib/constants.mjs +1 -1
- package/dist/lib/constants.mjs.map +1 -1
- package/dist/lib/index.mjs +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/tailwind.config.js +3 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +147 -147
@@ -3,13 +3,17 @@ import { CheckboxGroup as CheckboxGroupTheme } from '@radix-ui/themes';
|
|
3
3
|
import { CheckboxVariants } from '../../../lib/components/Checkbox';
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
5
5
|
import { IAppearance, IColor } from '../../../lib/types';
|
6
|
-
export interface CheckboxGroupRootProps extends VariantProps<typeof
|
6
|
+
export interface CheckboxGroupRootProps extends VariantProps<typeof CheckboxGroupVerticalVariants>, VariantProps<typeof CheckboxVariants> {
|
7
7
|
children?: ReactNode;
|
8
8
|
defaultValue?: string[];
|
9
9
|
color?: IColor;
|
10
10
|
appearance?: Exclude<IAppearance, 'ghost' | 'outline' | 'solid'>;
|
11
|
+
orientation?: 'horizontal' | 'vertical';
|
11
12
|
}
|
12
|
-
export declare const
|
13
|
+
export declare const CheckboxGroupVerticalVariants: (props?: ({
|
14
|
+
size?: "small" | "medium" | "large" | null | undefined;
|
15
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
16
|
+
export declare const CheckboxGroupHorizontalVariants: (props?: ({
|
13
17
|
size?: "small" | "medium" | "large" | null | undefined;
|
14
18
|
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
15
19
|
export declare const useCheckboxGroupContext: () => CheckboxGroupRootProps;
|
@@ -6,7 +6,7 @@ import { cva } from 'class-variance-authority';
|
|
6
6
|
import { cn } from '../../../lib/utils/utils';
|
7
7
|
import { useTheme } from '../../../lib/theme';
|
8
8
|
import { MAIN_COLOR } from '../../../lib/color/constants';
|
9
|
-
export var
|
9
|
+
export var CheckboxGroupVerticalVariants = cva("", {
|
10
10
|
variants: {
|
11
11
|
size: {
|
12
12
|
small: 'space-y-1',
|
@@ -18,6 +18,18 @@ export var CheckboxGroupVariants = cva("", {
|
|
18
18
|
size: 'medium',
|
19
19
|
},
|
20
20
|
});
|
21
|
+
export var CheckboxGroupHorizontalVariants = cva("flex-row", {
|
22
|
+
variants: {
|
23
|
+
size: {
|
24
|
+
small: 'space-x-2',
|
25
|
+
medium: 'space-x-3',
|
26
|
+
large: 'space-x-4',
|
27
|
+
},
|
28
|
+
},
|
29
|
+
defaultVariants: {
|
30
|
+
size: 'medium',
|
31
|
+
},
|
32
|
+
});
|
21
33
|
var CheckboxGroupContext = createContext({
|
22
34
|
size: 'medium',
|
23
35
|
color: MAIN_COLOR,
|
@@ -29,7 +41,7 @@ export var useCheckboxGroupContext = function () {
|
|
29
41
|
return useContext(CheckboxGroupContext);
|
30
42
|
};
|
31
43
|
export var CheckboxGroupRoot = forwardRef(function (_a, ref) {
|
32
|
-
var className = _a.className, children = _a.children, defaultValue = _a.defaultValue, scaling = _a.scaling, size = _a.size, color = _a.color, radius = _a.radius, appearance = _a.appearance;
|
44
|
+
var className = _a.className, children = _a.children, defaultValue = _a.defaultValue, scaling = _a.scaling, size = _a.size, color = _a.color, radius = _a.radius, appearance = _a.appearance, _b = _a.orientation, orientation = _b === void 0 ? 'vertical' : _b;
|
33
45
|
var theme = useTheme().theme;
|
34
46
|
var contextValue = {
|
35
47
|
radius: radius !== null && radius !== void 0 ? radius : theme.themeRadius,
|
@@ -38,7 +50,10 @@ export var CheckboxGroupRoot = forwardRef(function (_a, ref) {
|
|
38
50
|
size: size,
|
39
51
|
appearance: appearance,
|
40
52
|
};
|
41
|
-
|
53
|
+
var sizeClassName = orientation === 'vertical'
|
54
|
+
? CheckboxGroupVerticalVariants({ size: size })
|
55
|
+
: CheckboxGroupHorizontalVariants({ size: size });
|
56
|
+
return (_jsx(CheckboxGroupContext.Provider, { value: contextValue, children: _jsx(CheckboxGroupTheme.Root, { ref: ref, defaultValue: defaultValue, className: cn(sizeClassName, className), children: Children.map(children, function (child) { return React.cloneElement(child, { defaultValue: defaultValue }); }) }) }));
|
42
57
|
});
|
43
58
|
CheckboxGroupRoot.displayName = 'CheckboxGroup.Root';
|
44
59
|
export default CheckboxGroupRoot;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
"use client";
|
2
|
-
import{jsx as e}from"react/jsx-runtime";import a,{createContext as r,forwardRef as i,Children as
|
2
|
+
import{jsx as e}from"react/jsx-runtime";import a,{createContext as r,forwardRef as i,Children as s,useContext as t}from"react";import{CheckboxGroup as l}from"@radix-ui/themes";import{cva as m}from"class-variance-authority";import{cn as o}from"../../utils/utils.mjs";import{useTheme as u}from"../../theme/ThemeProvider.mjs";import{MAIN_COLOR as c}from"../../color/constants.mjs";var n=m("",{variants:{size:{small:"space-y-1",medium:"space-y-2",large:"space-y-3"}},defaultVariants:{size:"medium"}}),d=m("flex-row",{variants:{size:{small:"space-x-2",medium:"space-x-3",large:"space-x-4"}},defaultVariants:{size:"medium"}}),p=r({size:"medium",color:c,scaling:"100%",radius:"medium",appearance:"surface"}),f=function(){return t(p)},h=i((function(r,i){var t=r.className,m=r.children,c=r.defaultValue,f=r.scaling,h=r.size,v=r.color,z=r.radius,x=r.appearance,g=r.orientation,y=void 0===g?"vertical":g,V=u().theme,j={radius:null!=z?z:V.themeRadius,scaling:null!=f?f:V.themeScaling,color:null!=v?v:V.themeColor,size:h,appearance:x},N="vertical"===y?n({size:h}):d({size:h});return e(p.Provider,{value:j,children:e(l.Root,{ref:i,defaultValue:c,className:o(N,t),children:s.map(m,(function(e){return a.cloneElement(e,{defaultValue:c})}))})})}));h.displayName="CheckboxGroup.Root";export{d as CheckboxGroupHorizontalVariants,h as CheckboxGroupRoot,n as CheckboxGroupVerticalVariants,h as default,f as useCheckboxGroupContext};
|
3
3
|
//# sourceMappingURL=CheckboxGroupRoot.mjs.map
|
@@ -30,6 +30,11 @@ import Checkbox from '../Checkbox';
|
|
30
30
|
function IndeterminateCheckbox(_a) {
|
31
31
|
var indeterminate = _a.indeterminate, checked = _a.checked, disabled = _a.disabled, onChange = _a.onChange;
|
32
32
|
var ref = useRef();
|
33
|
+
React.useEffect(function () {
|
34
|
+
if (typeof indeterminate === 'boolean') {
|
35
|
+
ref.current.indeterminate = checked && indeterminate;
|
36
|
+
}
|
37
|
+
}, [ref, indeterminate]);
|
33
38
|
return (_jsx(Checkbox, { ref: ref, id: "checkbox", checked: checked, disabled: disabled, onCheckedChange: onChange, indeterminate: indeterminate }));
|
34
39
|
}
|
35
40
|
export var useGrid = function (_a) {
|
@@ -56,13 +61,12 @@ export var useGrid = function (_a) {
|
|
56
61
|
var table = _a.table;
|
57
62
|
return (_jsx("div", { className: "header-checkbox", children: _jsx(IndeterminateCheckbox, { checked: table.getIsAllRowsSelected() || table.getIsSomeRowsSelected(),
|
58
63
|
indeterminate: table.getIsSomeRowsSelected(),
|
59
|
-
onChange: table.
|
64
|
+
onChange: table.getToggleAllRowsSelectedHandler() }) }));
|
60
65
|
},
|
61
66
|
cell: function (_a) {
|
62
67
|
var row = _a.row;
|
63
|
-
return (_jsx("div", { className: "px-1", style: { paddingLeft: "".concat(row.depth * 10, "px") }, children: _jsx(IndeterminateCheckbox, { checked: row.getIsSelected(),
|
64
|
-
|
65
|
-
indeterminate: row.getIsSomeSelected(),
|
68
|
+
return (_jsx("div", { className: "px-1", style: { paddingLeft: "".concat(row.depth * 10, "px") }, children: _jsx(IndeterminateCheckbox, { checked: row.getIsSelected() || row.getIsSomeSelected() || row.getIsAllSubRowsSelected(),
|
69
|
+
indeterminate: row.getIsSomeSelected() && !row.getIsAllSubRowsSelected(),
|
66
70
|
onChange: row.getToggleSelectedHandler() }) }));
|
67
71
|
},
|
68
72
|
});
|
@@ -1,3 +1,3 @@
|
|
1
1
|
"use client";
|
2
|
-
import{jsxs as e,jsx as
|
2
|
+
import{jsxs as e,jsx as t,Fragment as n}from"react/jsx-runtime";import{createColumnHelper as o,getSortedRowModel as r,getCoreRowModel as a,getExpandedRowModel as l,getPaginationRowModel as c,useReactTable as d}from"@tanstack/react-table";import i,{useRef as s}from"react";import{IconButton as g}from"../IconButton/index.mjs";import{ChevronDownIcon as u,ChevronRightIcon as p}from"@radix-ui/react-icons";import{Checkbox as f}from"../Checkbox/index.mjs";var m=function(){return m=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},m.apply(this,arguments)},h=function(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(e);r<o.length;r++)t.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]])}return n};function w(e){var n=e.indeterminate,o=e.checked,r=e.disabled,a=e.onChange,l=s();return i.useEffect((function(){"boolean"==typeof n&&(l.current.indeterminate=o&&n)}),[l,n]),t(f,{ref:l,id:"checkbox",checked:o,disabled:r,onCheckedChange:a,indeterminate:n})}var S=function(s){var f,S,b=h(s,[]),x=i.useState([]),v=x[0],R=x[1],y=i.useState({}),C=y[0],O=y[1],E=i.useState({}),I=E[0],k=E[1],j=o(),P=null===(f=null==b?void 0:b.columns)||void 0===f?void 0:f.map((function(e){return j.accessor(e.id,m({},e))}));if(b.enableExpanding){var A=P[0].cell;P[0]=m(m({},P[0]),{cell:function(o){var r;return e("div",{className:"flex",style:{paddingLeft:"".concat(10*o.row.depth,"px")},children:[o.row.getCanExpand()?t(g,{onClick:o.row.getToggleExpandedHandler(),appearance:"ghost",className:"h-3 w-3",color:null!==(r=o.color)&&void 0!==r?r:"red",children:o.row.getIsExpanded()?t(u,{}):t(p,{})}):t(n,{}),t("div",{children:A?A(o):o.getValue()})]})}})}b.enableRowSelection&&(null==P||P.unshift({id:"select",header:function(e){var n=e.table;return t("div",{className:"header-checkbox",children:t(w,{checked:n.getIsAllRowsSelected()||n.getIsSomeRowsSelected(),indeterminate:n.getIsSomeRowsSelected(),onChange:n.getToggleAllRowsSelectedHandler()})})},cell:function(e){var n=e.row;return t("div",{className:"px-1",style:{paddingLeft:"".concat(10*n.depth,"px")},children:t(w,{checked:n.getIsSelected()||n.getIsSomeSelected()||n.getIsAllSubRowsSelected(),indeterminate:n.getIsSomeSelected()&&!n.getIsAllSubRowsSelected(),onChange:n.getToggleSelectedHandler()})})}}));var M=m(m({state:{sorting:v,rowSelection:I,expanded:C}},b),{data:b.data,columns:P,color:null!==(S=b.color)&&void 0!==S?S:"red",paginateExpandedRows:!0,enableExpanding:!!b.enableExpanding,getSubRows:function(e){return e.subRows},onExpandedChange:O,onSortingChange:R,onRowSelectionChange:k,getSortedRowModel:r(),getCoreRowModel:a(),getExpandedRowModel:l()});return b.enableRowPagination&&(M.getPaginationRowModel=c()),d(M)};export{S as useGrid};
|
3
3
|
//# sourceMappingURL=useGrid.mjs.map
|
@@ -24,9 +24,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
24
|
import { forwardRef } from 'react';
|
25
25
|
import { cva } from 'class-variance-authority';
|
26
26
|
import { cn } from '../../../lib/utils/utils';
|
27
|
-
export var timelineConnectorVariants = cva('absolute top-[
|
28
|
-
// `absolute left-[30px] top-[5px] h-full w-px -translate-x-1/2 translate-y-2 bg-slateA-7 dark:bg-slateDarkA-7`,
|
29
|
-
{
|
27
|
+
export var timelineConnectorVariants = cva('absolute top-[10px] left-[3px] h-[60px] w-0.5 bg-slateA-6 dark:bg-slateDarkA-6 z-5', {
|
30
28
|
variants: {},
|
31
29
|
});
|
32
30
|
export var TimelineConnector = forwardRef(function (_a, ref) {
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as t}from"react";import{cva as e}from"class-variance-authority";import{cn as o}from"../../utils/utils.mjs";var a=function(){return a=Object.assign||function(r){for(var t,e=1,o=arguments.length;e<o;e++)for(var a in t=arguments[e])Object.prototype.hasOwnProperty.call(t,a)&&(r[a]=t[a]);return r},a.apply(this,arguments)},n=function(r,t){var e={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&t.indexOf(o)<0&&(e[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(o=Object.getOwnPropertySymbols(r);a<o.length;a++)t.indexOf(o[a])<0&&Object.prototype.propertyIsEnumerable.call(r,o[a])&&(e[o[a]]=r[o[a]])}return e},i=e("absolute top-[10px] left-[3px] h-[60px] w-0.5 bg-slateA-6 dark:bg-slateDarkA-6 z-5",{variants:{}}),l=t((function(t,e){var l=t.className,p=n(t,["className"]);return r("div",a({ref:e,className:o(i({}),l)},p))}));l.displayName="Timeline.Connector";export{l as TimelineConnector,i as timelineConnectorVariants};
|
2
|
+
//# sourceMappingURL=TimelineConnector.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineConnector.mjs","sources":["../../../lib/components/Timeline/TimelineConnector.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport { cva } from 'class-variance-authority';\nimport { cn } from '../../../lib/utils/utils';\nexport var timelineConnectorVariants = cva('absolute top-[10px] left-[3px] h-[60px] w-0.5 bg-slateA-6 dark:bg-slateDarkA-6 z-5', {\n variants: {},\n});\nexport var TimelineConnector = forwardRef(function (_a, ref) {\n var className = _a.className, props = __rest(_a, [\"className\"]);\n return (_jsx(\"div\", __assign({ ref: ref, className: cn(timelineConnectorVariants({}), className) }, props)));\n});\nTimelineConnector.displayName = 'Timeline.Connector';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","timelineConnectorVariants","cva","variants","TimelineConnector","forwardRef","_a","ref","className","props","_jsx","cn","displayName"],"mappings":"qKAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAA4BC,EAAI,qFAAsF,CAC7HC,SAAU,CAAE,IAELC,EAAoBC,GAAW,SAAUC,EAAIC,GACpD,IAAIC,EAAYF,EAAGE,UAAWC,EAAQb,EAAOU,EAAI,CAAC,cAClD,OAAQI,EAAK,MAAO7B,EAAS,CAAE0B,IAAKA,EAAKC,UAAWG,EAAGV,EAA0B,CAAE,GAAGO,IAAcC,GACxG,IACAL,EAAkBQ,YAAc"}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as t}from"react/jsx-runtime";import{forwardRef as r}from"react";import{cva as e}from"class-variance-authority";import{cn as o}from"../../utils/utils.mjs";var n=function(){return n=Object.assign||function(t){for(var r,e=1,o=arguments.length;e<o;e++)for(var n in r=arguments[e])Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n]);return t},n.apply(this,arguments)},a=function(t,r){var e={};for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&r.indexOf(o)<0&&(e[o]=t[o]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(o=Object.getOwnPropertySymbols(t);n<o.length;n++)r.indexOf(o[n])<0&&Object.prototype.propertyIsEnumerable.call(t,o[n])&&(e[o[n]]=t[o[n]])}return e},i=e("flex flex-col items-start p-6 pt-0",{variants:{}}),l=r((function(r,e){var l=r.className,s=a(r,["className"]);return t("div",n({ref:e,className:o(i({}),l)},s))}));l.displayName="Timeline.Content";export{l as TimelineContent,i as timelineContentVariants};
|
2
|
+
//# sourceMappingURL=TimelineContent.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineContent.mjs","sources":["../../../lib/components/Timeline/TimelineContent.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport { cva } from 'class-variance-authority';\nimport { cn } from '../../../lib/utils/utils';\nexport var timelineContentVariants = cva(\"flex flex-col items-start p-6 pt-0\", {\n variants: {},\n});\nexport var TimelineContent = forwardRef(function (_a, ref) {\n var className = _a.className, props = __rest(_a, [\"className\"]);\n return (_jsx(\"div\", __assign({ ref: ref, className: cn(timelineContentVariants({}), className) }, props)));\n});\nTimelineContent.displayName = 'Timeline.Content';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","timelineContentVariants","cva","variants","TimelineContent","forwardRef","_a","ref","className","props","_jsx","cn","displayName"],"mappings":"qKAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAA0BC,EAAI,qCAAsC,CAC3EC,SAAU,CAAE,IAELC,EAAkBC,GAAW,SAAUC,EAAIC,GAClD,IAAIC,EAAYF,EAAGE,UAAWC,EAAQb,EAAOU,EAAI,CAAC,cAClD,OAAQI,EAAK,MAAO7B,EAAS,CAAE0B,IAAKA,EAAKC,UAAWG,EAAGV,EAAwB,CAAE,GAAGO,IAAcC,GACtG,IACAL,EAAgBQ,YAAc"}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as t}from"react/jsx-runtime";import{forwardRef as r}from"react";import{cva as e}from"class-variance-authority";import{cn as a}from"../../utils/utils.mjs";var o=function(){return o=Object.assign||function(t){for(var r,e=1,a=arguments.length;e<a;e++)for(var o in r=arguments[e])Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o]);return t},o.apply(this,arguments)},n=function(t,r){var e={};for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&r.indexOf(a)<0&&(e[a]=t[a]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(a=Object.getOwnPropertySymbols(t);o<a.length;o++)r.indexOf(a[o])<0&&Object.prototype.propertyIsEnumerable.call(t,a[o])&&(e[a[o]]=t[a[o]])}return e},i=e("text-muted-foreground max-w-sm text-sm text-slate-12 dark:text-slateDark-12",{variants:{}}),s=r((function(r,e){var s=r.className,l=n(r,["className"]);return t("p",o({ref:e,className:a(i({}),s)},l))}));s.displayName="Timeline.Description";export{s as TimelineDescription,i as timelineDescriptionVariants};
|
2
|
+
//# sourceMappingURL=TimelineDescription.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineDescription.mjs","sources":["../../../lib/components/Timeline/TimelineDescription.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport { cva } from 'class-variance-authority';\nimport { cn } from '../../../lib/utils/utils';\nexport var timelineDescriptionVariants = cva(\"text-muted-foreground max-w-sm text-sm text-slate-12 dark:text-slateDark-12\", {\n variants: {},\n});\nexport var TimelineDescription = forwardRef(function (_a, ref) {\n var className = _a.className, props = __rest(_a, [\"className\"]);\n return (_jsx(\"p\", __assign({ ref: ref, className: cn(timelineDescriptionVariants({}), className) }, props)));\n});\nTimelineDescription.displayName = 'Timeline.Description';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","timelineDescriptionVariants","cva","variants","TimelineDescription","forwardRef","_a","ref","className","props","_jsx","cn","displayName"],"mappings":"qKAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAA8BC,EAAI,8EAA+E,CACxHC,SAAU,CAAE,IAELC,EAAsBC,GAAW,SAAUC,EAAIC,GACtD,IAAIC,EAAYF,EAAGE,UAAWC,EAAQb,EAAOU,EAAI,CAAC,cAClD,OAAQI,EAAK,IAAK7B,EAAS,CAAE0B,IAAKA,EAAKC,UAAWG,EAAGV,EAA4B,CAAE,GAAGO,IAAcC,GACxG,IACAL,EAAoBQ,YAAc"}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as t}from"react";import{cva as e}from"class-variance-authority";import{cn as a}from"../../utils/utils.mjs";var o=function(){return o=Object.assign||function(r){for(var t,e=1,a=arguments.length;e<a;e++)for(var o in t=arguments[e])Object.prototype.hasOwnProperty.call(t,o)&&(r[o]=t[o]);return r},o.apply(this,arguments)},n=function(r,t){var e={};for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&t.indexOf(a)<0&&(e[a]=r[a]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(a=Object.getOwnPropertySymbols(r);o<a.length;o++)t.indexOf(a[o])<0&&Object.prototype.propertyIsEnumerable.call(r,a[o])&&(e[a[o]]=r[a[o]])}return e},i=e("flex items-center gap-4",{variants:{}}),l=t((function(t,e){var l=t.className,s=n(t,["className"]);return r("div",o({ref:e,className:a(i({}),l)},s))}));l.displayName="Timeline.Header";export{l as TimelineHeader,i as timelineHeaderVariants};
|
2
|
+
//# sourceMappingURL=TimelineHeader.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineHeader.mjs","sources":["../../../lib/components/Timeline/TimelineHeader.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport { cva } from 'class-variance-authority';\nimport { cn } from '../../../lib/utils/utils';\nexport var timelineHeaderVariants = cva(\"flex items-center gap-4\", {\n variants: {},\n});\nexport var TimelineHeader = forwardRef(function (_a, ref) {\n var className = _a.className, props = __rest(_a, [\"className\"]);\n return (_jsx(\"div\", __assign({ ref: ref, className: cn(timelineHeaderVariants({}), className) }, props)));\n});\nTimelineHeader.displayName = 'Timeline.Header';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","timelineHeaderVariants","cva","variants","TimelineHeader","forwardRef","_a","ref","className","props","_jsx","cn","displayName"],"mappings":"qKAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAAyBC,EAAI,0BAA2B,CAC/DC,SAAU,CAAE,IAELC,EAAiBC,GAAW,SAAUC,EAAIC,GACjD,IAAIC,EAAYF,EAAGE,UAAWC,EAAQb,EAAOU,EAAI,CAAC,cAClD,OAAQI,EAAK,MAAO7B,EAAS,CAAE0B,IAAKA,EAAKC,UAAWG,EAAGV,EAAuB,CAAE,GAAGO,IAAcC,GACrG,IACAL,EAAeQ,YAAc"}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
'use client';
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
2
3
|
__assign = Object.assign || function(t) {
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
@@ -26,7 +27,7 @@ import { cva } from 'class-variance-authority';
|
|
26
27
|
import { TimelineContext } from './TimelineRoot';
|
27
28
|
import { borderColorStyle } from '../../../lib/constants';
|
28
29
|
import { cn } from '../../../lib/utils/utils';
|
29
|
-
export var timelineIconVariants = cva("flex size-3 flex-col rounded-full border-2 bg-white z-
|
30
|
+
export var timelineIconVariants = cva("relative flex size-3 flex-col rounded-full border-2 bg-white z-10", {
|
30
31
|
variants: {
|
31
32
|
color: borderColorStyle(),
|
32
33
|
},
|
@@ -35,8 +36,8 @@ export var timelineIconVariants = cva("flex size-3 flex-col rounded-full border-
|
|
35
36
|
},
|
36
37
|
});
|
37
38
|
export var TimelineIcon = forwardRef(function (_a, ref) {
|
38
|
-
var className = _a.className, props = __rest(_a, ["className"]);
|
39
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
39
40
|
var color = useContext(TimelineContext).color;
|
40
|
-
return _jsx("div", __assign({ ref: ref, className: cn(timelineIconVariants({ color: color }), className) }, props));
|
41
|
+
return (_jsx("div", __assign({ ref: ref, className: cn(timelineIconVariants({ color: color }), className) }, props, { children: children })));
|
41
42
|
});
|
42
43
|
TimelineIcon.displayName = 'Timeline.Icon';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
"use client";
|
2
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as e,useContext as t}from"react";import{cva as o}from"class-variance-authority";import{TimelineContext as n}from"./TimelineRoot.mjs";import{borderColorStyle as i}from"../../constants.mjs";import{cn as l}from"../../utils/utils.mjs";var a=function(){return a=Object.assign||function(r){for(var e,t=1,o=arguments.length;t<o;t++)for(var n in e=arguments[t])Object.prototype.hasOwnProperty.call(e,n)&&(r[n]=e[n]);return r},a.apply(this,arguments)},c=function(r,e){var t={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&e.indexOf(o)<0&&(t[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(o=Object.getOwnPropertySymbols(r);n<o.length;n++)e.indexOf(o[n])<0&&Object.prototype.propertyIsEnumerable.call(r,o[n])&&(t[o[n]]=r[o[n]])}return t},s=o("relative flex size-3 flex-col rounded-full border-2 bg-white z-10",{variants:{color:i()},defaultVariants:{color:"red"}}),m=e((function(e,o){var i=e.className,m=e.children,f=c(e,["className","children"]),p=t(n).color;return r("div",a({ref:o,className:l(s({color:p}),i)},f,{children:m}))}));m.displayName="Timeline.Icon";export{m as TimelineIcon,s as timelineIconVariants};
|
3
|
+
//# sourceMappingURL=TimelineIcon.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineIcon.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
@@ -24,7 +24,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
24
|
import { forwardRef } from 'react';
|
25
25
|
import { cva } from 'class-variance-authority';
|
26
26
|
import { cn } from '../../../lib/utils/utils';
|
27
|
-
export var timelineItemVariants = cva('
|
27
|
+
export var timelineItemVariants = cva('flex flex-col p-6 pt-3 [&>*]:mb-3', {
|
28
28
|
variants: {},
|
29
29
|
});
|
30
30
|
export var TimelineItem = forwardRef(function (_a, ref) {
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as t}from"react";import{cva as e}from"class-variance-authority";import{cn as o}from"../../utils/utils.mjs";var a=function(){return a=Object.assign||function(r){for(var t,e=1,o=arguments.length;e<o;e++)for(var a in t=arguments[e])Object.prototype.hasOwnProperty.call(t,a)&&(r[a]=t[a]);return r},a.apply(this,arguments)},n=function(r,t){var e={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&t.indexOf(o)<0&&(e[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(o=Object.getOwnPropertySymbols(r);a<o.length;a++)t.indexOf(o[a])<0&&Object.prototype.propertyIsEnumerable.call(r,o[a])&&(e[o[a]]=r[o[a]])}return e},i=e("flex flex-col p-6 pt-3 [&>*]:mb-3",{variants:{}}),l=t((function(t,e){var l=t.className,p=n(t,["className"]);return r("li",a({ref:e,className:o(i({}),l)},p))}));l.displayName="Timeline.Item";export{l as TimelineItem,i as timelineItemVariants};
|
2
|
+
//# sourceMappingURL=TimelineItem.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineItem.mjs","sources":["../../../lib/components/Timeline/TimelineItem.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport { cva } from 'class-variance-authority';\nimport { cn } from '../../../lib/utils/utils';\nexport var timelineItemVariants = cva('flex flex-col p-6 pt-3 [&>*]:mb-3', {\n variants: {},\n});\nexport var TimelineItem = forwardRef(function (_a, ref) {\n var className = _a.className, props = __rest(_a, [\"className\"]);\n return (_jsx(\"li\", __assign({ ref: ref, className: cn(timelineItemVariants({}), className) }, props)));\n});\nTimelineItem.displayName = 'Timeline.Item';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","timelineItemVariants","cva","variants","TimelineItem","forwardRef","_a","ref","className","props","_jsx","cn","displayName"],"mappings":"qKAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAAuBC,EAAI,oCAAqC,CACvEC,SAAU,CAAE,IAELC,EAAeC,GAAW,SAAUC,EAAIC,GAC/C,IAAIC,EAAYF,EAAGE,UAAWC,EAAQb,EAAOU,EAAI,CAAC,cAClD,OAAQI,EAAK,KAAM7B,EAAS,CAAE0B,IAAKA,EAAKC,UAAWG,EAAGV,EAAqB,CAAE,GAAGO,IAAcC,GAClG,IACAL,EAAaQ,YAAc"}
|
@@ -26,13 +26,13 @@ import { forwardRef, createContext } from 'react';
|
|
26
26
|
import { cva } from 'class-variance-authority';
|
27
27
|
import { scalingVariants, textColorStyle } from '../../../lib/constants';
|
28
28
|
import { cn } from '../../../lib/utils/utils';
|
29
|
-
export var timelineRootVariants = cva("flex flex-col
|
29
|
+
export var timelineRootVariants = cva("flex flex-col", {
|
30
30
|
variants: {
|
31
31
|
scaling: __assign({}, scalingVariants),
|
32
32
|
size: {
|
33
|
-
small: 'text-xs',
|
34
|
-
medium: 'text-sm',
|
35
|
-
large: 'text-base',
|
33
|
+
small: 'text-xs w-[350px]',
|
34
|
+
medium: 'text-sm w-[400px]',
|
35
|
+
large: 'text-base w-[450px]',
|
36
36
|
},
|
37
37
|
color: textColorStyle(),
|
38
38
|
},
|
@@ -47,7 +47,7 @@ export var TimelineContext = createContext({
|
|
47
47
|
});
|
48
48
|
export var TimelineRoot = forwardRef(function (_a, ref) {
|
49
49
|
var className = _a.className, scaling = _a.scaling, size = _a.size, color = _a.color, props = __rest(_a, ["className", "scaling", "size", "color"]);
|
50
|
-
var contextValue = { color: color };
|
50
|
+
var contextValue = { color: color, size: size };
|
51
51
|
return (_jsx(TimelineContext.Provider, { value: contextValue, children: _jsx("ol", __assign({ ref: ref, className: cn(timelineRootVariants({ scaling: scaling, size: size, color: color }), className) }, props)) }));
|
52
52
|
});
|
53
53
|
TimelineRoot.displayName = 'Timeline.Root';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
"use client";
|
2
|
+
import{jsx as r}from"react/jsx-runtime";import{createContext as e,forwardRef as t}from"react";import{cva as o}from"class-variance-authority";import{scalingVariants as a,textColorStyle as l}from"../../constants.mjs";import{cn as i}from"../../utils/utils.mjs";var s=function(){return s=Object.assign||function(r){for(var e,t=1,o=arguments.length;t<o;t++)for(var a in e=arguments[t])Object.prototype.hasOwnProperty.call(e,a)&&(r[a]=e[a]);return r},s.apply(this,arguments)},n=function(r,e){var t={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&e.indexOf(o)<0&&(t[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(o=Object.getOwnPropertySymbols(r);a<o.length;a++)e.indexOf(o[a])<0&&Object.prototype.propertyIsEnumerable.call(r,o[a])&&(t[o[a]]=r[o[a]])}return t},c=o("flex flex-col",{variants:{scaling:s({},a),size:{small:"text-xs w-[350px]",medium:"text-sm w-[400px]",large:"text-base w-[450px]"},color:l()},defaultVariants:{scaling:"100%",size:"medium",color:"red"}}),m=e({color:"red"}),p=t((function(e,t){var o=e.className,a=e.scaling,l=e.size,p=e.color,f=n(e,["className","scaling","size","color"]),u={color:p,size:l};return r(m.Provider,{value:u,children:r("ol",s({ref:t,className:i(c({scaling:a,size:l,color:p}),o)},f))})}));p.displayName="Timeline.Root";export{m as TimelineContext,p as TimelineRoot,c as timelineRootVariants};
|
3
|
+
//# sourceMappingURL=TimelineRoot.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineRoot.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
@@ -2,5 +2,7 @@ import React from 'react';
|
|
2
2
|
import { VariantProps } from 'class-variance-authority';
|
3
3
|
export interface TimelineTimeProps extends VariantProps<typeof timelineTimeVariants> {
|
4
4
|
}
|
5
|
-
export declare const timelineTimeVariants: (props?: ({
|
5
|
+
export declare const timelineTimeVariants: (props?: ({
|
6
|
+
size?: "small" | "medium" | "large" | null | undefined;
|
7
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
6
8
|
export declare const TimelineTime: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
'use client';
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
2
3
|
__assign = Object.assign || function(t) {
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
@@ -21,14 +22,25 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
21
22
|
return t;
|
22
23
|
};
|
23
24
|
import { jsx as _jsx } from "react/jsx-runtime";
|
24
|
-
import { forwardRef } from 'react';
|
25
|
+
import { forwardRef, useContext } from 'react';
|
25
26
|
import { cva } from 'class-variance-authority';
|
27
|
+
import { TimelineContext } from './TimelineRoot';
|
26
28
|
import { cn } from '../../../lib/utils/utils';
|
27
|
-
export var timelineTimeVariants = cva('
|
28
|
-
variants: {
|
29
|
+
export var timelineTimeVariants = cva('flex-6 font-medium text-right leading-none text-slate-11 dark:text-slateDark-11', {
|
30
|
+
variants: {
|
31
|
+
size: {
|
32
|
+
small: 'text-[11px]',
|
33
|
+
medium: 'text-xs',
|
34
|
+
large: 'text-sm',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
size: 'medium',
|
39
|
+
},
|
29
40
|
});
|
30
41
|
export var TimelineTime = forwardRef(function (_a, ref) {
|
31
42
|
var className = _a.className, props = __rest(_a, ["className"]);
|
32
|
-
|
43
|
+
var size = useContext(TimelineContext).size;
|
44
|
+
return _jsx("p", __assign({ ref: ref, className: cn(timelineTimeVariants({ size: size }), className) }, props));
|
33
45
|
});
|
34
46
|
TimelineTime.displayName = 'Timeline.Time';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
"use client";
|
2
|
+
import{jsx as t}from"react/jsx-runtime";import{forwardRef as e,useContext as r}from"react";import{cva as a}from"class-variance-authority";import{TimelineContext as i}from"./TimelineRoot.mjs";import{cn as o}from"../../utils/utils.mjs";var n=function(){return n=Object.assign||function(t){for(var e,r=1,a=arguments.length;r<a;r++)for(var i in e=arguments[r])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},n.apply(this,arguments)},s=function(t,e){var r={};for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&e.indexOf(a)<0&&(r[a]=t[a]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(a=Object.getOwnPropertySymbols(t);i<a.length;i++)e.indexOf(a[i])<0&&Object.prototype.propertyIsEnumerable.call(t,a[i])&&(r[a[i]]=t[a[i]])}return r},l=a("flex-6 font-medium text-right leading-none text-slate-11 dark:text-slateDark-11",{variants:{size:{small:"text-[11px]",medium:"text-xs",large:"text-sm"}},defaultVariants:{size:"medium"}}),m=e((function(e,a){var m=e.className,p=s(e,["className"]),f=r(i).size;return t("p",n({ref:a,className:o(l({size:f}),m)},p))}));m.displayName="Timeline.Time";export{m as TimelineTime,l as timelineTimeVariants};
|
3
|
+
//# sourceMappingURL=TimelineTime.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineTime.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
@@ -2,5 +2,7 @@ import React from 'react';
|
|
2
2
|
import { VariantProps } from 'class-variance-authority';
|
3
3
|
export interface TimelineTitleProps extends VariantProps<typeof timelineTitleVariants> {
|
4
4
|
}
|
5
|
-
export declare const timelineTitleVariants: (props?: ({
|
5
|
+
export declare const timelineTitleVariants: (props?: ({
|
6
|
+
size?: "small" | "medium" | "large" | null | undefined;
|
7
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
6
8
|
export declare const TimelineTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
'use client';
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
2
3
|
__assign = Object.assign || function(t) {
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
@@ -21,14 +22,25 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
21
22
|
return t;
|
22
23
|
};
|
23
24
|
import { jsx as _jsx } from "react/jsx-runtime";
|
24
|
-
import { forwardRef } from 'react';
|
25
|
+
import { forwardRef, useContext } from 'react';
|
25
26
|
import { cva } from 'class-variance-authority';
|
27
|
+
import { TimelineContext } from './TimelineRoot';
|
26
28
|
import { cn } from '../../../lib/utils/utils';
|
27
|
-
export var timelineTitleVariants = cva("font-normal leading-none tracking-tight text-slate-12 dark:text-slateDark-12", {
|
28
|
-
variants: {
|
29
|
+
export var timelineTitleVariants = cva("flex-6 font-normal leading-none tracking-tight text-slate-12 dark:text-slateDark-12", {
|
30
|
+
variants: {
|
31
|
+
size: {
|
32
|
+
small: 'text-xs',
|
33
|
+
medium: 'text-sm',
|
34
|
+
large: 'text-base',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
size: 'medium',
|
39
|
+
},
|
29
40
|
});
|
30
41
|
export var TimelineTitle = forwardRef(function (_a, ref) {
|
31
42
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
32
|
-
|
43
|
+
var size = useContext(TimelineContext).size;
|
44
|
+
return (_jsx("h3", __assign({ ref: ref, className: cn(timelineTitleVariants({ size: size }), className) }, props, { children: children })));
|
33
45
|
});
|
34
46
|
TimelineTitle.displayName = 'Timeline.Title';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
"use client";
|
2
|
+
import{jsx as t}from"react/jsx-runtime";import{forwardRef as e,useContext as r}from"react";import{cva as a}from"class-variance-authority";import{TimelineContext as i}from"./TimelineRoot.mjs";import{cn as n}from"../../utils/utils.mjs";var o=function(){return o=Object.assign||function(t){for(var e,r=1,a=arguments.length;r<a;r++)for(var i in e=arguments[r])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},o.apply(this,arguments)},l=function(t,e){var r={};for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&e.indexOf(a)<0&&(r[a]=t[a]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(a=Object.getOwnPropertySymbols(t);i<a.length;i++)e.indexOf(a[i])<0&&Object.prototype.propertyIsEnumerable.call(t,a[i])&&(r[a[i]]=t[a[i]])}return r},s=a("flex-6 font-normal leading-none tracking-tight text-slate-12 dark:text-slateDark-12",{variants:{size:{small:"text-xs",medium:"text-sm",large:"text-base"}},defaultVariants:{size:"medium"}}),m=e((function(e,a){var m=e.className,c=e.children,f=l(e,["className","children"]),p=r(i).size;return t("h3",o({ref:a,className:n(s({size:p}),m)},f,{children:c}))}));m.displayName="Timeline.Title";export{m as TimelineTitle,s as timelineTitleVariants};
|
3
|
+
//# sourceMappingURL=TimelineTitle.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"TimelineTitle.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{TimelineRoot as m}from"./TimelineRoot.mjs";import{TimelineItem as e}from"./TimelineItem.mjs";import{TimelineConnector as i}from"./TimelineConnector.mjs";import{TimelineHeader as o}from"./TimelineHeader.mjs";import{TimelineTime as r}from"./TimelineTime.mjs";import{TimelineIcon as t}from"./TimelineIcon.mjs";import{TimelineTitle as n}from"./TimelineTitle.mjs";import{TimelineContent as T}from"./TimelineContent.mjs";import{TimelineDescription as l}from"./TimelineDescription.mjs";var p={Root:m,Item:e,Connector:i,Header:o,Time:r,Icon:t,Title:n,Content:T,Description:l};export{p as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../lib/components/Timeline/index.js"],"sourcesContent":["import { TimelineRoot as Root } from './TimelineRoot';\nimport { TimelineItem as Item } from './TimelineItem';\nimport { TimelineConnector as Connector } from './TimelineConnector';\nimport { TimelineHeader as Header } from './TimelineHeader';\nimport { TimelineTime as Time } from './TimelineTime';\nimport { TimelineIcon as Icon } from './TimelineIcon';\nimport { TimelineTitle as Title } from './TimelineTitle';\nimport { TimelineContent as Content } from './TimelineContent';\nimport { TimelineDescription as Description } from './TimelineDescription';\nvar Timeline = {\n Root: Root,\n Item: Item,\n Connector: Connector,\n Header: Header,\n Time: Time,\n Icon: Icon,\n Title: Title,\n Content: Content,\n Description: Description,\n};\nexport default Timeline;\n"],"names":["Timeline","Root","Item","Connector","Header","Time","Icon","Title","Content","Description"],"mappings":"seASG,IAACA,EAAW,CACXC,KAAMA,EACNC,KAAMA,EACNC,UAAWA,EACXC,OAAQA,EACRC,KAAMA,EACNC,KAAMA,EACNC,MAAOA,EACPC,QAASA,EACTC,YAAaA"}
|
@@ -40,6 +40,7 @@ export { default as TabNav } from './TabNav';
|
|
40
40
|
export { default as Tabs } from './Tabs';
|
41
41
|
export { default as TextArea } from './TextArea';
|
42
42
|
export { default as TextField } from './TextField';
|
43
|
+
export { default as Timeline } from './Timeline';
|
43
44
|
export { default as Toast } from './Toast';
|
44
45
|
export { default as Toggle } from './Toggle';
|
45
46
|
export { default as ToggleWithText } from './Toggle/ToggleWithText';
|
@@ -41,6 +41,7 @@ export { default as TabNav } from './TabNav';
|
|
41
41
|
export { default as Tabs } from './Tabs';
|
42
42
|
export { default as TextArea } from './TextArea';
|
43
43
|
export { default as TextField } from './TextField';
|
44
|
+
export { default as Timeline } from './Timeline';
|
44
45
|
export { default as Toast } from './Toast';
|
45
46
|
export { default as Toggle } from './Toggle';
|
46
47
|
export { default as ToggleWithText } from './Toggle/ToggleWithText';
|