@taiv/ui 1.0.2 → 1.1.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 +23 -1
- package/dist/components/Data/Chart.d.ts +32 -0
- package/dist/components/Data/Chart.d.ts.map +1 -0
- package/dist/components/Data/Chart.js +97 -0
- package/dist/components/Data/PieChart.d.ts +24 -0
- package/dist/components/Data/PieChart.d.ts.map +1 -0
- package/dist/components/Data/PieChart.js +61 -0
- package/dist/components/Data/StatsCard.d.ts +17 -0
- package/dist/components/Data/StatsCard.d.ts.map +1 -0
- package/dist/components/Data/StatsCard.js +38 -0
- package/dist/components/Data/shared/dataFormats.d.ts +35 -0
- package/dist/components/Data/shared/dataFormats.d.ts.map +1 -0
- package/dist/components/Data/shared/dataFormats.js +25 -0
- package/dist/components/Info/Badge.d.ts +1 -0
- package/dist/components/Info/Badge.d.ts.map +1 -0
- package/dist/components/Info/Badge.js +1 -0
- package/dist/components/Info/InfoCard.d.ts +9 -0
- package/dist/components/Info/InfoCard.d.ts.map +1 -0
- package/dist/components/Info/InfoCard.js +18 -0
- package/dist/components/Info/Tooltips/InfoTooltip.d.ts +4 -2
- package/dist/components/Info/Tooltips/InfoTooltip.d.ts.map +1 -1
- package/dist/components/Info/Tooltips/InfoTooltip.js +2 -2
- package/dist/components/Info/Tooltips/Tooltip.d.ts +1 -1
- package/dist/components/Info/Tooltips/Tooltip.d.ts.map +1 -1
- package/dist/components/Info/Tooltips/Tooltip.js +1 -1
- package/dist/components/Inputs/Buttons/Button.d.ts +2 -1
- package/dist/components/Inputs/Buttons/Button.d.ts.map +1 -1
- package/dist/components/Inputs/Buttons/Button.js +12 -2
- package/dist/components/Inputs/Buttons/shared/variants.d.ts +50 -0
- package/dist/components/Inputs/Buttons/shared/variants.d.ts.map +1 -1
- package/dist/components/Inputs/Buttons/shared/variants.js +50 -0
- package/dist/components/Inputs/DatePickers/DatePicker.d.ts +12 -0
- package/dist/components/Inputs/DatePickers/DatePicker.d.ts.map +1 -0
- package/dist/components/Inputs/DatePickers/DatePicker.js +35 -0
- package/dist/components/Layout/AutoGrid.d.ts +8 -0
- package/dist/components/Layout/AutoGrid.d.ts.map +1 -0
- package/dist/components/Layout/AutoGrid.js +6 -0
- package/dist/components/Layout/Card.d.ts +8 -0
- package/dist/components/Layout/Card.d.ts.map +1 -0
- package/dist/components/Layout/Card.js +16 -0
- package/dist/components/Layout/Grid.d.ts +10 -0
- package/dist/components/Layout/Grid.d.ts.map +1 -0
- package/dist/components/Layout/Grid.js +9 -0
- package/dist/components/Layout/SectionCard.d.ts +11 -0
- package/dist/components/Layout/SectionCard.d.ts.map +1 -0
- package/dist/components/Layout/SectionCard.js +12 -0
- package/dist/components/Layout/Tabs.d.ts +17 -0
- package/dist/components/Layout/Tabs.d.ts.map +1 -0
- package/dist/components/Layout/Tabs.js +48 -0
- package/dist/components/Misc/IconBadge.d.ts +8 -0
- package/dist/components/Misc/IconBadge.d.ts.map +1 -0
- package/dist/components/Misc/IconBadge.js +29 -0
- package/dist/components/Typography/Fraction.d.ts +10 -0
- package/dist/components/Typography/Fraction.d.ts.map +1 -0
- package/dist/components/Typography/Fraction.js +7 -0
- package/dist/components/Typography/Text.d.ts.map +1 -1
- package/dist/components/Typography/Text.js +10 -2
- package/dist/components/index.d.ts +44 -32
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +44 -32
- package/dist/constants/colors.d.ts +97 -11
- package/dist/constants/colors.d.ts.map +1 -1
- package/dist/constants/colors.js +35 -19
- package/package.json +20 -4
- package/dist/components/Info/Modals/ConfirmationModal.d.ts +0 -18
- package/dist/components/Info/Modals/ConfirmationModal.d.ts.map +0 -1
- package/dist/components/Info/Modals/ConfirmationModal.js +0 -76
- package/dist/components/Info/Modals/InfoModal.d.ts +0 -15
- package/dist/components/Info/Modals/InfoModal.d.ts.map +0 -1
- package/dist/components/Info/Modals/InfoModal.js +0 -70
- package/dist/components/Info/Notifications/Notifications.d.ts +0 -16
- package/dist/components/Info/Notifications/Notifications.d.ts.map +0 -1
- package/dist/components/Info/Notifications/Notifications.js +0 -41
- package/dist/components/Misc/Copy.d.ts +0 -10
- package/dist/components/Misc/Copy.d.ts.map +0 -1
- package/dist/components/Misc/Copy.js +0 -18
- package/dist/components/Misc/MediaQuery.d.ts +0 -3
- package/dist/components/Misc/MediaQuery.d.ts.map +0 -1
- package/dist/components/Misc/MediaQuery.js +0 -2
|
@@ -11,6 +11,10 @@ export declare const componentVariants: {
|
|
|
11
11
|
readonly border: "1px solid #00A6F4";
|
|
12
12
|
readonly color: "#00A6F4";
|
|
13
13
|
};
|
|
14
|
+
readonly '&:toggled': {
|
|
15
|
+
readonly background: "linear-gradient(to right, #0081CE, #0081CE)";
|
|
16
|
+
readonly color: "white";
|
|
17
|
+
};
|
|
14
18
|
readonly '&:disabled': {
|
|
15
19
|
readonly background: "#EDEDED";
|
|
16
20
|
readonly color: "#D9D9D9";
|
|
@@ -35,6 +39,10 @@ export declare const componentVariants: {
|
|
|
35
39
|
readonly border: "1px solid #6D6D6D";
|
|
36
40
|
readonly color: "#6D6D6D";
|
|
37
41
|
};
|
|
42
|
+
readonly '&:toggled': {
|
|
43
|
+
readonly background: "#D9D9D9";
|
|
44
|
+
readonly color: "neutral[200]";
|
|
45
|
+
};
|
|
38
46
|
readonly '&:disabled': {
|
|
39
47
|
readonly background: "#EDEDED";
|
|
40
48
|
readonly border: "1px solid #EDEDED";
|
|
@@ -57,6 +65,10 @@ export declare const componentVariants: {
|
|
|
57
65
|
readonly border: "1px solid #C10007";
|
|
58
66
|
readonly color: "#C10007";
|
|
59
67
|
};
|
|
68
|
+
readonly '&:toggled': {
|
|
69
|
+
readonly background: "#FB2C36";
|
|
70
|
+
readonly color: "white";
|
|
71
|
+
};
|
|
60
72
|
readonly '&:disabled': {
|
|
61
73
|
readonly background: "#FFD7D9";
|
|
62
74
|
readonly border: "1px solid #FFD7D9";
|
|
@@ -79,6 +91,9 @@ export declare const componentVariants: {
|
|
|
79
91
|
readonly border: "1px solid #00A63E";
|
|
80
92
|
readonly color: "#00A63E";
|
|
81
93
|
};
|
|
94
|
+
readonly '&:toggled': {
|
|
95
|
+
readonly background: "#00C951";
|
|
96
|
+
};
|
|
82
97
|
readonly '&:disabled': {
|
|
83
98
|
readonly background: "#E6F4E7";
|
|
84
99
|
readonly border: "1px solid #E6F4E7";
|
|
@@ -101,6 +116,9 @@ export declare const componentVariants: {
|
|
|
101
116
|
readonly border: "1px solid #E17100";
|
|
102
117
|
readonly color: "#E17100";
|
|
103
118
|
};
|
|
119
|
+
readonly '&:toggled': {
|
|
120
|
+
readonly background: "#FE9A00";
|
|
121
|
+
};
|
|
104
122
|
readonly '&:disabled': {
|
|
105
123
|
readonly background: "#FFE5B4";
|
|
106
124
|
readonly border: "1px solid #FFE5B4";
|
|
@@ -127,6 +145,10 @@ export declare const componentVariants: {
|
|
|
127
145
|
readonly background: "transparent";
|
|
128
146
|
readonly color: "#00A6F4";
|
|
129
147
|
};
|
|
148
|
+
readonly '&:toggled': {
|
|
149
|
+
readonly background: "transparent";
|
|
150
|
+
readonly color: "#0081CE";
|
|
151
|
+
};
|
|
130
152
|
readonly '&:disabled': {
|
|
131
153
|
readonly background: "transparent";
|
|
132
154
|
readonly color: "#D9D9D9";
|
|
@@ -137,5 +159,33 @@ export declare const componentVariants: {
|
|
|
137
159
|
};
|
|
138
160
|
};
|
|
139
161
|
};
|
|
162
|
+
readonly nav: {
|
|
163
|
+
readonly background: "white";
|
|
164
|
+
readonly paddingLeft: "0.8rem";
|
|
165
|
+
readonly color: "#6D6D6D";
|
|
166
|
+
readonly '& .mantine-Button-inner': {
|
|
167
|
+
readonly justifyContent: "flex-start";
|
|
168
|
+
};
|
|
169
|
+
readonly '&:hover': {
|
|
170
|
+
readonly background: "#EDEDED";
|
|
171
|
+
};
|
|
172
|
+
readonly '&:active': {
|
|
173
|
+
readonly background: "#D9D9D9";
|
|
174
|
+
readonly color: "#6D6D6D";
|
|
175
|
+
};
|
|
176
|
+
readonly '&:toggled': {
|
|
177
|
+
readonly background: "#EDEDED";
|
|
178
|
+
readonly color: "#6D6D6D";
|
|
179
|
+
};
|
|
180
|
+
readonly '&:disabled': {
|
|
181
|
+
readonly background: "#EDEDED";
|
|
182
|
+
readonly color: "#D9D9D9";
|
|
183
|
+
};
|
|
184
|
+
readonly '&[data-loading]': {
|
|
185
|
+
readonly '& .mantine-Button-icon svg': {
|
|
186
|
+
readonly stroke: "#6D6D6D";
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
140
190
|
};
|
|
141
191
|
//# sourceMappingURL=variants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variants.d.ts","sourceRoot":"","sources":["../../../../../src/components/Inputs/Buttons/shared/variants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"variants.d.ts","sourceRoot":"","sources":["../../../../../src/components/Inputs/Buttons/shared/variants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6LpB,CAAC"}
|
|
@@ -12,6 +12,10 @@ export const componentVariants = {
|
|
|
12
12
|
border: `1px solid ${primary[200]}`,
|
|
13
13
|
color: primary[200],
|
|
14
14
|
},
|
|
15
|
+
'&:toggled': {
|
|
16
|
+
background: `linear-gradient(to right, ${primary[300]}, ${primary[300]})`,
|
|
17
|
+
color: 'white',
|
|
18
|
+
},
|
|
15
19
|
'&:disabled': {
|
|
16
20
|
background: neutral[50],
|
|
17
21
|
color: neutral[100],
|
|
@@ -36,6 +40,10 @@ export const componentVariants = {
|
|
|
36
40
|
border: `1px solid ${neutral[200]}`,
|
|
37
41
|
color: neutral[200],
|
|
38
42
|
},
|
|
43
|
+
'&:toggled': {
|
|
44
|
+
background: neutral[100],
|
|
45
|
+
color: 'neutral[200]',
|
|
46
|
+
},
|
|
39
47
|
'&:disabled': {
|
|
40
48
|
background: neutral[50],
|
|
41
49
|
border: `1px solid ${neutral[50]}`,
|
|
@@ -58,6 +66,10 @@ export const componentVariants = {
|
|
|
58
66
|
border: `1px solid ${error[200]}`,
|
|
59
67
|
color: error[200],
|
|
60
68
|
},
|
|
69
|
+
'&:toggled': {
|
|
70
|
+
background: error[100],
|
|
71
|
+
color: 'white',
|
|
72
|
+
},
|
|
61
73
|
'&:disabled': {
|
|
62
74
|
background: error[50],
|
|
63
75
|
border: `1px solid ${error[50]}`,
|
|
@@ -80,6 +92,9 @@ export const componentVariants = {
|
|
|
80
92
|
border: `1px solid ${success[200]}`,
|
|
81
93
|
color: success[200],
|
|
82
94
|
},
|
|
95
|
+
'&:toggled': {
|
|
96
|
+
background: success[100],
|
|
97
|
+
},
|
|
83
98
|
'&:disabled': {
|
|
84
99
|
background: success[50],
|
|
85
100
|
border: `1px solid ${success[50]}`,
|
|
@@ -102,6 +117,9 @@ export const componentVariants = {
|
|
|
102
117
|
border: `1px solid ${warning[200]}`,
|
|
103
118
|
color: warning[200],
|
|
104
119
|
},
|
|
120
|
+
'&:toggled': {
|
|
121
|
+
background: warning[100],
|
|
122
|
+
},
|
|
105
123
|
'&:disabled': {
|
|
106
124
|
background: warning[50],
|
|
107
125
|
border: `1px solid ${warning[50]}`,
|
|
@@ -128,6 +146,10 @@ export const componentVariants = {
|
|
|
128
146
|
background: 'transparent',
|
|
129
147
|
color: primary[200],
|
|
130
148
|
},
|
|
149
|
+
'&:toggled': {
|
|
150
|
+
background: 'transparent',
|
|
151
|
+
color: primary[300],
|
|
152
|
+
},
|
|
131
153
|
'&:disabled': {
|
|
132
154
|
background: 'transparent',
|
|
133
155
|
color: neutral[100],
|
|
@@ -138,4 +160,32 @@ export const componentVariants = {
|
|
|
138
160
|
},
|
|
139
161
|
},
|
|
140
162
|
},
|
|
163
|
+
nav: {
|
|
164
|
+
background: 'white',
|
|
165
|
+
paddingLeft: '0.8rem',
|
|
166
|
+
color: neutral[200],
|
|
167
|
+
'& .mantine-Button-inner': {
|
|
168
|
+
justifyContent: 'flex-start',
|
|
169
|
+
},
|
|
170
|
+
'&:hover': {
|
|
171
|
+
background: neutral[50],
|
|
172
|
+
},
|
|
173
|
+
'&:active': {
|
|
174
|
+
background: neutral[100],
|
|
175
|
+
color: neutral[200],
|
|
176
|
+
},
|
|
177
|
+
'&:toggled': {
|
|
178
|
+
background: neutral[50],
|
|
179
|
+
color: neutral[200],
|
|
180
|
+
},
|
|
181
|
+
'&:disabled': {
|
|
182
|
+
background: neutral[50],
|
|
183
|
+
color: neutral[100],
|
|
184
|
+
},
|
|
185
|
+
'&[data-loading]': {
|
|
186
|
+
'& .mantine-Button-icon svg': {
|
|
187
|
+
stroke: neutral[200],
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
},
|
|
141
191
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DatePickerInputProps as MantineDatePickerInputProps } from '@mantine/dates';
|
|
2
|
+
import { CSSObject } from '@mantine/styles';
|
|
3
|
+
import { componentSizes } from '../Dropdowns/shared/sizes';
|
|
4
|
+
export interface DatePickerProps<T extends 'default' | 'multiple' | 'range' = 'default'> extends Omit<MantineDatePickerInputProps<T>, 'styles'> {
|
|
5
|
+
size?: keyof typeof componentSizes;
|
|
6
|
+
width?: string | number;
|
|
7
|
+
fullWidth?: boolean;
|
|
8
|
+
styles?: Record<string, CSSObject>;
|
|
9
|
+
showIcon?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const DatePicker: <T extends "default" | "multiple" | "range" = "default">({ size, width, fullWidth, placeholder, styles, showIcon, ...props }: DatePickerProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=DatePicker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../../src/components/Inputs/DatePickers/DatePicker.tsx"],"names":[],"mappings":"AACA,OAAO,EAA6C,oBAAoB,IAAI,2BAA2B,EAAE,MAAM,gBAAgB,CAAC;AAChI,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAG5C,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,MAAM,WAAW,eAAe,CAAC,CAAC,SAAS,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,CAAE,SAAQ,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC;IAC7I,IAAI,CAAC,EAAE,MAAM,OAAO,cAAc,CAAC;IACnC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,UAAU,GAAI,CAAC,SAAS,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,EAAE,qEAQhF,eAAe,CAAC,CAAC,CAAC,4CAyCpB,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { DatePickerInput as MantineDatePickerInput } from '@mantine/dates';
|
|
3
|
+
import { neutral } from '../../../constants/colors';
|
|
4
|
+
import { fontBase } from '../../../constants/font';
|
|
5
|
+
import { componentSizes } from '../Dropdowns/shared/sizes';
|
|
6
|
+
export const DatePicker = ({ size = 'md', width, fullWidth = false, placeholder = 'Pick Date', styles, showIcon = true, ...props }) => {
|
|
7
|
+
const selectedSize = componentSizes[size];
|
|
8
|
+
const style = {
|
|
9
|
+
root: {
|
|
10
|
+
width: fullWidth ? '100%' : width || `${selectedSize.minWidth}rem`,
|
|
11
|
+
},
|
|
12
|
+
input: {
|
|
13
|
+
height: `${selectedSize.height}rem`,
|
|
14
|
+
paddingRight: selectedSize.inputPadding,
|
|
15
|
+
...fontBase,
|
|
16
|
+
fontSize: selectedSize.fontSize,
|
|
17
|
+
color: neutral[300],
|
|
18
|
+
borderRadius: '8px',
|
|
19
|
+
border: `1px solid ${neutral[100]}`,
|
|
20
|
+
transition: 'all 200ms ease-in-out',
|
|
21
|
+
},
|
|
22
|
+
placeholder: {
|
|
23
|
+
...fontBase,
|
|
24
|
+
fontSize: selectedSize.fontSize,
|
|
25
|
+
color: neutral[200],
|
|
26
|
+
},
|
|
27
|
+
label: {
|
|
28
|
+
...fontBase,
|
|
29
|
+
fontSize: `calc(${selectedSize.fontSize} - 0.1rem)`,
|
|
30
|
+
color: neutral[200],
|
|
31
|
+
},
|
|
32
|
+
...styles,
|
|
33
|
+
};
|
|
34
|
+
return (_jsx(MantineDatePickerInput, { icon: showIcon ? _jsx("i", { className: "far fa-calendar", style: { fontSize: 14, marginLeft: '0.25rem' } }) : undefined, radius: "lg", size: "xl", styles: style, placeholder: placeholder, popoverProps: { radius: 'lg' }, ...props }));
|
|
35
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SimpleGridProps } from '@mantine/core';
|
|
3
|
+
interface AutoGridProps extends SimpleGridProps {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
declare const AutoGrid: ({ children, ...props }: AutoGridProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { AutoGrid };
|
|
8
|
+
//# sourceMappingURL=AutoGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoGrid.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/AutoGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,UAAU,aAAc,SAAQ,eAAe;IAC7C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,QAAA,MAAM,QAAQ,GAAI,wBAAwB,aAAa,4CAEtD,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CardProps as MantineCardProps } from '@mantine/core';
|
|
3
|
+
export interface CardProps extends MantineCardProps {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
animate?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare const Card: ({ children, animate, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=Card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEnF,MAAM,WAAW,SAAU,SAAQ,gBAAgB;IACjD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,IAAI,GAAI,iCAAyC,SAAS,4CAiBtE,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Card as MantineCard } from '@mantine/core';
|
|
3
|
+
export const Card = ({ children, animate = false, ...props }) => {
|
|
4
|
+
const hoverAnimation = {
|
|
5
|
+
style: { transition: 'transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out' },
|
|
6
|
+
onMouseEnter: (e) => {
|
|
7
|
+
e.currentTarget.style.transform = 'translateY(-5px)';
|
|
8
|
+
e.currentTarget.style.boxShadow = '0px 2px 8px 0px rgba(0, 0, 0, 0.05)';
|
|
9
|
+
},
|
|
10
|
+
onMouseLeave: (e) => {
|
|
11
|
+
e.currentTarget.style.transform = 'translateY(0)';
|
|
12
|
+
e.currentTarget.style.boxShadow = 'none';
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
return (_jsx(MantineCard, { p: "1.8rem", radius: "20px", withBorder: true, ...(animate ? hoverAnimation : {}), ...props, children: children }));
|
|
16
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { GridProps as MantineGridProps } from '@mantine/core';
|
|
3
|
+
interface GridProps extends MantineGridProps {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
declare const Grid: (({ children, ...props }: GridProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
7
|
+
Col: React.ForwardRefExoticComponent<import("@mantine/core").ColProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
+
};
|
|
9
|
+
export { Grid };
|
|
10
|
+
//# sourceMappingURL=Grid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Grid.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Grid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEnF,UAAU,SAAU,SAAQ,gBAAgB;IAC1C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAMD,QAAA,MAAM,IAAI,4BAJqC,SAAS;;CAMtD,CAAC;AAEH,OAAO,EAAE,IAAI,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Grid as MantineGrid } from '@mantine/core';
|
|
3
|
+
const GridComponent = ({ children, ...props }) => {
|
|
4
|
+
return _jsx(MantineGrid, { ...props, children: children });
|
|
5
|
+
};
|
|
6
|
+
const Grid = Object.assign(GridComponent, {
|
|
7
|
+
Col: MantineGrid.Col,
|
|
8
|
+
});
|
|
9
|
+
export { Grid };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CardProps as MantineCardProps } from '@mantine/core';
|
|
3
|
+
import { colors } from '../../constants/colors';
|
|
4
|
+
export interface SectionCardProps extends Omit<MantineCardProps, 'children'> {
|
|
5
|
+
title: string;
|
|
6
|
+
subtitle?: string;
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
color?: keyof typeof colors;
|
|
9
|
+
}
|
|
10
|
+
export declare const SectionCard: ({ title, subtitle, children, color, ...props }: SectionCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=SectionCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SectionCard.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/SectionCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAKhD,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,gBAAgB,EAAE,UAAU,CAAC;IAC1E,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,OAAO,MAAM,CAAC;CAC7B;AAED,eAAO,MAAM,WAAW,GAAI,gDAA4D,gBAAgB,4CAsBvG,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Card as MantineCard } from '@mantine/core';
|
|
3
|
+
import { Stack } from './Stack';
|
|
4
|
+
import { Title } from '../Typography/Title';
|
|
5
|
+
export const SectionCard = ({ title, subtitle, children, color = 'primary', ...props }) => {
|
|
6
|
+
return (_jsxs(MantineCard, { radius: "20px", shadow: "lg", withBorder: true, padding: 0, ...props, children: [_jsx("div", { style: {
|
|
7
|
+
// background: `linear-gradient(to right, ${colors[color][300]}, ${colors[color][200]})`,
|
|
8
|
+
backgroundColor: 'white',
|
|
9
|
+
padding: '1.6rem 2rem 0 2rem',
|
|
10
|
+
borderRadius: '20px 20px 0 0',
|
|
11
|
+
}, children: _jsxs(Stack, { gap: "0.25rem", children: [_jsx(Title, { variant: "cardHeader", children: title }), subtitle && _jsx(Title, { variant: "cardSubheader", children: subtitle })] }) }), _jsx("div", { style: { padding: '2rem 3.2rem 3.2rem 3.2rem' }, children: children })] }));
|
|
12
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TabsProps as MantineTabsProps } from '@mantine/core';
|
|
3
|
+
export interface TabsProps extends Omit<MantineTabsProps, 'children' | 'onChange' | 'placement'> {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
defaultValue?: string;
|
|
6
|
+
value?: string;
|
|
7
|
+
onChange?: (value: string | null) => void;
|
|
8
|
+
orientation?: 'horizontal' | 'vertical';
|
|
9
|
+
placement?: 'left' | 'right' | 'top' | 'bottom';
|
|
10
|
+
variant?: 'default' | 'outline' | 'pills';
|
|
11
|
+
}
|
|
12
|
+
export declare const Tabs: (({ children, defaultValue, value, onChange, orientation, placement, variant, styles, ...props }: TabsProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
13
|
+
List: React.ForwardRefExoticComponent<import("@mantine/core").TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
Tab: React.ForwardRefExoticComponent<import("@mantine/core").TabProps & React.RefAttributes<HTMLButtonElement>>;
|
|
15
|
+
Panel: React.ForwardRefExoticComponent<import("@mantine/core").TabsPanelProps & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=Tabs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAInF,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,gBAAgB,EAAE,UAAU,GAAG,UAAU,GAAG,WAAW,CAAC;IAC9F,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IAC1C,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,CAAC;IAChD,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CAC3C;AAiED,eAAO,MAAM,IAAI,oGArDd,SAAS;;;;CAyDV,CAAC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Tabs as MantineTabs } from '@mantine/core';
|
|
3
|
+
import { fontBase } from '../../constants/font';
|
|
4
|
+
import { colors } from '../../constants/colors';
|
|
5
|
+
const TabsComponent = ({ children, defaultValue, value, onChange, orientation = 'horizontal', placement = 'top', variant = 'default', styles, ...props }) => {
|
|
6
|
+
const style = {
|
|
7
|
+
root: {
|
|
8
|
+
width: '100%',
|
|
9
|
+
},
|
|
10
|
+
list: {
|
|
11
|
+
borderBottom: variant === 'default' ? `1px solid ${colors.neutral[100]}` : 'none',
|
|
12
|
+
gap: '0',
|
|
13
|
+
},
|
|
14
|
+
tab: {
|
|
15
|
+
padding: '0.8rem 2.8rem',
|
|
16
|
+
backgroundColor: 'transparent',
|
|
17
|
+
color: colors.neutral[300],
|
|
18
|
+
'&:hover': {
|
|
19
|
+
backgroundColor: variant === 'pills' ? colors.neutral[25] : 'transparent',
|
|
20
|
+
color: colors.primary[300],
|
|
21
|
+
},
|
|
22
|
+
'&[data-active]': {
|
|
23
|
+
backgroundColor: variant === 'pills' ? colors.primary[200] : 'transparent',
|
|
24
|
+
color: variant === 'pills' ? 'white' : colors.primary[300],
|
|
25
|
+
borderBottom: variant === 'default' ? `2px solid ${colors.primary[200]}` : 'none',
|
|
26
|
+
},
|
|
27
|
+
'&[data-active]:hover': {
|
|
28
|
+
backgroundColor: variant === 'pills' ? colors.primary[200] : 'transparent',
|
|
29
|
+
color: variant === 'pills' ? 'white' : colors.primary[300],
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
tabLabel: {
|
|
33
|
+
...fontBase,
|
|
34
|
+
fontSize: '1.6rem',
|
|
35
|
+
lineHeight: '2.4rem',
|
|
36
|
+
},
|
|
37
|
+
panel: {
|
|
38
|
+
padding: '1.6rem 0.8rem',
|
|
39
|
+
},
|
|
40
|
+
...styles,
|
|
41
|
+
};
|
|
42
|
+
return (_jsx(MantineTabs, { styles: style, radius: "lg", defaultValue: defaultValue, value: value, orientation: orientation, variant: variant, ...props, children: children }));
|
|
43
|
+
};
|
|
44
|
+
export const Tabs = Object.assign(TabsComponent, {
|
|
45
|
+
List: MantineTabs.List,
|
|
46
|
+
Tab: MantineTabs.Tab,
|
|
47
|
+
Panel: MantineTabs.Panel,
|
|
48
|
+
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { palettes } from '../../constants/colors';
|
|
3
|
+
export interface IconBadgeProps {
|
|
4
|
+
icon: React.ReactNode;
|
|
5
|
+
color: keyof typeof palettes;
|
|
6
|
+
}
|
|
7
|
+
export declare const IconBadge: ({ icon, color }: IconBadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=IconBadge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconBadge.d.ts","sourceRoot":"","sources":["../../../src/components/Misc/IconBadge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAElD,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,KAAK,EAAE,MAAM,OAAO,QAAQ,CAAC;CAC9B;AAED,eAAO,MAAM,SAAS,GAAI,iBAAiB,cAAc,4CAkCxD,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { palettes } from '../../constants/colors';
|
|
4
|
+
export const IconBadge = ({ icon, color }) => {
|
|
5
|
+
const getIconColors = () => {
|
|
6
|
+
const colorPalette = palettes[color];
|
|
7
|
+
return {
|
|
8
|
+
background: colorPalette[50],
|
|
9
|
+
icon: colorPalette[200],
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
const getIconSize = () => {
|
|
13
|
+
if (React.isValidElement(icon) && icon.props && typeof icon.props.size === 'number') {
|
|
14
|
+
const iconSize = icon.props.size;
|
|
15
|
+
const badgeSize = iconSize + 12;
|
|
16
|
+
return `${badgeSize / 10}rem`;
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
return (_jsx("div", { style: {
|
|
20
|
+
width: getIconSize(),
|
|
21
|
+
height: getIconSize(),
|
|
22
|
+
borderRadius: '50%',
|
|
23
|
+
backgroundColor: getIconColors().background,
|
|
24
|
+
color: getIconColors().icon,
|
|
25
|
+
display: 'flex',
|
|
26
|
+
alignItems: 'center',
|
|
27
|
+
justifyContent: 'center',
|
|
28
|
+
}, children: icon }));
|
|
29
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { textStyle } from '../../constants';
|
|
3
|
+
interface FractionProps {
|
|
4
|
+
numerator: React.ReactNode;
|
|
5
|
+
denominator: React.ReactNode;
|
|
6
|
+
variant: keyof typeof textStyle;
|
|
7
|
+
}
|
|
8
|
+
declare const Fraction: ({ numerator, denominator, variant }: FractionProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export { Fraction };
|
|
10
|
+
//# sourceMappingURL=Fraction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Fraction.d.ts","sourceRoot":"","sources":["../../../src/components/Typography/Fraction.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAG5C,UAAU,aAAa;IACrB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,WAAW,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,OAAO,EAAE,MAAM,OAAO,SAAS,CAAC;CACjC;AAED,QAAA,MAAM,QAAQ,GAAI,qCAAqC,aAAa,4CAcnE,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from '@mantine/core';
|
|
3
|
+
import { Text } from './Text';
|
|
4
|
+
const Fraction = ({ numerator, denominator, variant }) => {
|
|
5
|
+
return (_jsx(Box, { component: "span", sx: { display: 'inline-flex', alignItems: 'center', lineHeight: 1 }, children: _jsxs(Box, { component: "span", sx: { display: 'inline-flex', flexDirection: 'column', alignItems: 'center', lineHeight: 1 }, children: [_jsx(Text, { variant: variant, sx: { display: 'block', textAlign: 'center' }, children: numerator }), _jsx(Box, { component: "span", sx: { width: '100%', borderTop: '1px solid currentColor', margin: '2px 0' } }), _jsx(Text, { variant: variant, sx: { display: 'block', textAlign: 'center' }, children: denominator })] }) }));
|
|
6
|
+
};
|
|
7
|
+
export { Fraction };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../src/components/Typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../src/components/Typography/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAuB,SAAS,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAY,MAAM,sBAAsB,CAAC;AAEjF,UAAU,SAAU,SAAQ,gBAAgB;IAC1C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,OAAO,SAAS,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,OAAO,QAAQ,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,OAAO,UAAU,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,aAAa,CAAC;CACxB;AAED,QAAA,MAAM,IAAI,GAAI,8DAAuE,SAAS,4CAiC7F,CAAC;AAEF,OAAO,EAAE,IAAI,EAAE,CAAC"}
|
|
@@ -9,12 +9,20 @@ const Text = ({ variant = 'body', size, children, weight, color, styles, ...prop
|
|
|
9
9
|
const style = {
|
|
10
10
|
margin: 0,
|
|
11
11
|
padding: 0,
|
|
12
|
+
...styles,
|
|
12
13
|
...selectedVariant,
|
|
13
14
|
...customSize,
|
|
14
15
|
...customWeight,
|
|
15
16
|
...customColor,
|
|
16
|
-
...styles,
|
|
17
17
|
};
|
|
18
|
-
return (_jsx(MantineText, { style: style,
|
|
18
|
+
return (_jsx(MantineText, { style: style, sx: {
|
|
19
|
+
'& b': {
|
|
20
|
+
...selectedVariant,
|
|
21
|
+
...customSize,
|
|
22
|
+
...customWeight,
|
|
23
|
+
...customColor,
|
|
24
|
+
fontWeight: fontWeight.bold,
|
|
25
|
+
},
|
|
26
|
+
}, ...props, children: children }));
|
|
19
27
|
};
|
|
20
28
|
export { Text };
|
|
@@ -1,33 +1,45 @@
|
|
|
1
|
-
export { CheckboxTable } from
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
1
|
+
export { CheckboxTable } from './Data/CheckboxTable';
|
|
2
|
+
export { Chart } from './Data/Chart';
|
|
3
|
+
export { PieChart } from './Data/PieChart';
|
|
4
|
+
export { RemovableItemList } from './Data/RemovableItemList';
|
|
5
|
+
export { StatsCard } from './Data/StatsCard';
|
|
6
|
+
export { Modal } from './Info/Modals/Modal';
|
|
7
|
+
export { ModalProvider } from './Info/Modals/ModalProvider';
|
|
8
|
+
export { NotificationProvider } from './Info/Notifications/NotificationProvider';
|
|
9
|
+
export { Tooltip } from './Info/Tooltips/Tooltip';
|
|
10
|
+
export { InfoTooltip } from './Info/Tooltips/InfoTooltip';
|
|
11
|
+
export { InfoCard } from './Info/InfoCard';
|
|
12
|
+
export { AutoComplete } from './Inputs/TextInputs/AutoComplete';
|
|
13
|
+
export { Button } from './Inputs/Buttons/Button';
|
|
14
|
+
export { UnstyledButton } from './Inputs/Buttons/UnstyledButton';
|
|
15
|
+
export { Checkbox } from './Inputs/Controls/Checkbox';
|
|
16
|
+
export { Toggle } from './Inputs/Controls/Toggle';
|
|
17
|
+
export { FontSelect } from './Inputs/Dropdowns/FontSelect';
|
|
18
|
+
export { MultiSelect } from './Inputs/Dropdowns/MultiSelect';
|
|
19
|
+
export { SearchBar } from './Inputs/TextInputs/SearchBar';
|
|
20
|
+
export { Select } from './Inputs/Dropdowns/Select';
|
|
21
|
+
export { Slider } from './Inputs/Sliders/Slider';
|
|
22
|
+
export { VolumeSlider } from './Inputs/Sliders/VolumeSlider';
|
|
23
|
+
export { TextArea } from './Inputs/TextInputs/TextArea';
|
|
24
|
+
export { TextInput } from './Inputs/TextInputs/TextInput';
|
|
25
|
+
export { PasswordInput } from './Inputs/TextInputs/PasswordInput';
|
|
26
|
+
export { DatePicker } from './Inputs/DatePickers/DatePicker';
|
|
27
|
+
export { AutoGrid } from './Layout/AutoGrid';
|
|
28
|
+
export { Grid } from './Layout/Grid';
|
|
29
|
+
export { Box } from './Layout/Box';
|
|
30
|
+
export { Center } from './Layout/Center';
|
|
31
|
+
export { Divider } from './Layout/Divider';
|
|
32
|
+
export { Frame } from './Layout/Frame';
|
|
33
|
+
export { Group } from './Layout/Group';
|
|
34
|
+
export { Loader } from './Layout/Loader';
|
|
35
|
+
export { Stack } from './Layout/Stack';
|
|
36
|
+
export { Card } from './Layout/Card';
|
|
37
|
+
export { SectionCard } from './Layout/SectionCard';
|
|
38
|
+
export { Tabs } from './Layout/Tabs';
|
|
39
|
+
export { CollapsibleText } from './Typography/CollapsibleText';
|
|
40
|
+
export { Text } from './Typography/Text';
|
|
41
|
+
export { Title } from './Typography/Title';
|
|
42
|
+
export { Fraction } from './Typography/Fraction';
|
|
43
|
+
export { Transition } from './Misc/Transition';
|
|
44
|
+
export { IconBadge } from './Misc/IconBadge';
|
|
33
45
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAG7C,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAG3C,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAChE,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACjE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAClE,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAG7D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACnC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGrC,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAGjD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}
|