frst-components 0.31.8 → 0.32.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/dist/index.js
CHANGED
|
@@ -2387,6 +2387,14 @@ function AvatarWithInfo(props) {
|
|
|
2387
2387
|
return (jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsxs("div", { className: style$e.container, style: { ...props.style }, onClick: () => props?.onClick ? props.onClick() : {}, children: [jsxRuntime.jsx(Avatar, { size: '40px', src: props.fotoAvatar, isActiveClick: !!props?.onClick }), jsxRuntime.jsx("span", { style: { fontWeight: 600, marginLeft: 8, marginRight: 4 }, children: props.nomeCompleto }), " ", props.cargo ? jsxRuntime.jsx(Vector, {}) : '', " ", jsxRuntime.jsx("span", { style: { fontWeight: 400, marginLeft: 4, marginRight: 8, textAlign: 'center' }, children: props.cargo })] }) }));
|
|
2388
2388
|
}
|
|
2389
2389
|
|
|
2390
|
+
const colorVariants = {
|
|
2391
|
+
'#F26818': { hover: '#ee4c15', pressed: '#d14211' },
|
|
2392
|
+
'#E7AD00': { hover: '#D49F00', pressed: '#C79500' },
|
|
2393
|
+
'#2457E3': { hover: '#2652CC', pressed: '#2A4DAC' },
|
|
2394
|
+
'#27AA3D': { hover: '#1F9B33', pressed: '#238D35' },
|
|
2395
|
+
'#9A37E1': { hover: '#8E29D6', pressed: '#7F28BE' },
|
|
2396
|
+
'#E64040': { hover: '#D13A3A', pressed: '#C23636' } //vermelho
|
|
2397
|
+
};
|
|
2390
2398
|
const LinkButton$1 = styled__default["default"].a `
|
|
2391
2399
|
border: none;
|
|
2392
2400
|
text-decoration: none;
|
|
@@ -2498,31 +2506,41 @@ const LinkButtonEndIcon = styled__default["default"].a `
|
|
|
2498
2506
|
color: ${({ theme }) => theme.colors.linkDisabled};
|
|
2499
2507
|
`}
|
|
2500
2508
|
`;
|
|
2501
|
-
const variantStyles$1 = (variant = 'contained') => ({
|
|
2502
|
-
primary:
|
|
2503
|
-
|
|
2504
|
-
|
|
2509
|
+
const variantStyles$1 = (variant = 'contained', backgroundColor) => ({
|
|
2510
|
+
primary: ({ theme }) => {
|
|
2511
|
+
const isDefault = !backgroundColor || backgroundColor === '#F26818';
|
|
2512
|
+
const baseColor = isDefault ? '#F26818' : backgroundColor;
|
|
2513
|
+
const hoverColor = isDefault
|
|
2514
|
+
? colorVariants['#F26818'].hover
|
|
2515
|
+
: colorVariants[backgroundColor]?.hover || baseColor;
|
|
2516
|
+
const pressedColor = isDefault
|
|
2517
|
+
? colorVariants['#F26818'].pressed
|
|
2518
|
+
: colorVariants[backgroundColor]?.pressed || baseColor;
|
|
2519
|
+
return styled.css `
|
|
2520
|
+
background-color: ${baseColor};
|
|
2521
|
+
color: ${theme.colors.shadeWhite};
|
|
2505
2522
|
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2523
|
+
&:hover {
|
|
2524
|
+
background-color: ${hoverColor};
|
|
2525
|
+
}
|
|
2509
2526
|
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2527
|
+
&:active {
|
|
2528
|
+
background-color: ${pressedColor};
|
|
2529
|
+
}
|
|
2513
2530
|
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2531
|
+
&:focus {
|
|
2532
|
+
border: 2px solid ${baseColor}4D;
|
|
2533
|
+
-webkit-background-clip: padding-box;
|
|
2534
|
+
background-clip: padding-box;
|
|
2535
|
+
}
|
|
2519
2536
|
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2537
|
+
&:disabled {
|
|
2538
|
+
background-color: ${theme.colors.neutralsGrey5};
|
|
2539
|
+
cursor: not-allowed;
|
|
2540
|
+
pointer-events: none;
|
|
2541
|
+
}
|
|
2542
|
+
`;
|
|
2543
|
+
},
|
|
2526
2544
|
secondary: styled.css `
|
|
2527
2545
|
background-color: transparent;
|
|
2528
2546
|
color: ${({ theme }) => theme.colors.primary1};
|
|
@@ -2551,30 +2569,41 @@ const variantStyles$1 = (variant = 'contained') => ({
|
|
|
2551
2569
|
pointer-events: none;
|
|
2552
2570
|
}
|
|
2553
2571
|
`,
|
|
2554
|
-
expandedPrimary:
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2572
|
+
expandedPrimary: ({ theme }) => {
|
|
2573
|
+
const isDefault = !backgroundColor || backgroundColor === '#F26818';
|
|
2574
|
+
const baseColor = isDefault ? '#F26818' : backgroundColor;
|
|
2575
|
+
const hoverColor = isDefault
|
|
2576
|
+
? colorVariants['#F26818'].hover
|
|
2577
|
+
: colorVariants[backgroundColor]?.hover || baseColor;
|
|
2578
|
+
const pressedColor = isDefault
|
|
2579
|
+
? colorVariants['#F26818'].pressed
|
|
2580
|
+
: colorVariants[backgroundColor]?.pressed || baseColor;
|
|
2581
|
+
return styled.css `
|
|
2582
|
+
background-color: ${baseColor};
|
|
2583
|
+
color: ${theme.colors.shadeWhite};
|
|
2584
|
+
width: 100%;
|
|
2561
2585
|
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2586
|
+
&:hover {
|
|
2587
|
+
background-color: ${hoverColor};
|
|
2588
|
+
}
|
|
2565
2589
|
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
background-clip: padding-box;
|
|
2570
|
-
}
|
|
2590
|
+
&:active {
|
|
2591
|
+
background-color: ${pressedColor};
|
|
2592
|
+
}
|
|
2571
2593
|
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2594
|
+
&:focus {
|
|
2595
|
+
border: 2px solid ${baseColor}4D;
|
|
2596
|
+
-webkit-background-clip: padding-box;
|
|
2597
|
+
background-clip: padding-box;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
&:disabled {
|
|
2601
|
+
background-color: ${theme.colors.neutralsGrey5};
|
|
2602
|
+
cursor: not-allowed;
|
|
2603
|
+
pointer-events: none;
|
|
2604
|
+
}
|
|
2605
|
+
`;
|
|
2606
|
+
},
|
|
2578
2607
|
expandedSecondary: styled.css `
|
|
2579
2608
|
background-color: transparent;
|
|
2580
2609
|
color: ${({ theme }) => theme.colors.primary1};
|
|
@@ -2624,7 +2653,7 @@ const Button$6 = styled__default["default"].button `
|
|
|
2624
2653
|
line-height: 19px;
|
|
2625
2654
|
box-shadow: none;
|
|
2626
2655
|
|
|
2627
|
-
${({ variant }) => variantStyles$1(variant)}
|
|
2656
|
+
${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
|
|
2628
2657
|
|
|
2629
2658
|
${({ theme, length }) => theme.type === 'group' &&
|
|
2630
2659
|
length === 2 &&
|
|
@@ -2641,7 +2670,7 @@ const Button$6 = styled__default["default"].button `
|
|
|
2641
2670
|
}
|
|
2642
2671
|
`}
|
|
2643
2672
|
|
|
2644
|
-
|
|
2673
|
+
${({ theme, length }) => theme.type === 'group' &&
|
|
2645
2674
|
length > 2 &&
|
|
2646
2675
|
`
|
|
2647
2676
|
border-radius: 0px;
|
|
@@ -2666,10 +2695,26 @@ const Button$6 = styled__default["default"].button `
|
|
|
2666
2695
|
}
|
|
2667
2696
|
`}
|
|
2668
2697
|
|
|
2669
|
-
|
|
2698
|
+
${({ active }) => active === true &&
|
|
2670
2699
|
styled.css `
|
|
2671
2700
|
background: #d14211;
|
|
2672
2701
|
`}
|
|
2702
|
+
|
|
2703
|
+
/* AQUI COMEÇA A ADIÇÃO NOVA: */
|
|
2704
|
+
|
|
2705
|
+
${({ backgroundColor }) => backgroundColor &&
|
|
2706
|
+
backgroundColor !== '#F26818' &&
|
|
2707
|
+
styled.css `
|
|
2708
|
+
background-color: ${backgroundColor};
|
|
2709
|
+
|
|
2710
|
+
&:hover {
|
|
2711
|
+
background-color: ${colorVariants[backgroundColor]?.hover || backgroundColor};
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
&:active {
|
|
2715
|
+
background-color: ${colorVariants[backgroundColor]?.pressed || backgroundColor};
|
|
2716
|
+
}
|
|
2717
|
+
`}
|
|
2673
2718
|
`;
|
|
2674
2719
|
const ButtonStartIcon$1 = styled__default["default"].button `
|
|
2675
2720
|
display: flex;
|
|
@@ -2697,7 +2742,7 @@ const ButtonStartIcon$1 = styled__default["default"].button `
|
|
|
2697
2742
|
width: auto;
|
|
2698
2743
|
}
|
|
2699
2744
|
|
|
2700
|
-
${({ variant }) => variantStyles$1(variant)}
|
|
2745
|
+
${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
|
|
2701
2746
|
`;
|
|
2702
2747
|
const ButtonEndIcon = styled__default["default"].button `
|
|
2703
2748
|
display: flex;
|
|
@@ -2725,10 +2770,10 @@ const ButtonEndIcon = styled__default["default"].button `
|
|
|
2725
2770
|
width: auto;
|
|
2726
2771
|
}
|
|
2727
2772
|
|
|
2728
|
-
${({ variant }) => variantStyles$1(variant)}
|
|
2773
|
+
${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
|
|
2729
2774
|
`;
|
|
2730
2775
|
|
|
2731
|
-
function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps }) {
|
|
2776
|
+
function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps, backgroundColor, }) {
|
|
2732
2777
|
React.useEffect(() => {
|
|
2733
2778
|
if (handleMount && id) {
|
|
2734
2779
|
handleMount(id);
|
|
@@ -2738,17 +2783,17 @@ function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, hand
|
|
|
2738
2783
|
(variant === 'link') ?
|
|
2739
2784
|
jsxRuntime.jsxs(LinkButtonStartIcon, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
|
|
2740
2785
|
:
|
|
2741
|
-
jsxRuntime.jsxs(ButtonStartIcon$1, { ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
|
|
2786
|
+
jsxRuntime.jsxs(ButtonStartIcon$1, { backgroundColor: backgroundColor, ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
|
|
2742
2787
|
: endIcon ?
|
|
2743
2788
|
(variant === 'link') ?
|
|
2744
2789
|
jsxRuntime.jsxs(LinkButtonEndIcon, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
|
|
2745
2790
|
:
|
|
2746
|
-
jsxRuntime.jsxs(ButtonEndIcon, { ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
|
|
2791
|
+
jsxRuntime.jsxs(ButtonEndIcon, { backgroundColor: backgroundColor, ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
|
|
2747
2792
|
:
|
|
2748
2793
|
(variant === 'link') ?
|
|
2749
2794
|
jsxRuntime.jsx(LinkButton$1, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, id: id, children: label })
|
|
2750
2795
|
:
|
|
2751
|
-
jsxRuntime.jsx(Button$6, { ...buttonProps, ref: ref, style: { ...style }, length: length, active: active, value: value, variant: variant, disabled: disabled, onClick: handleClick, id: id, children: label }) }));
|
|
2796
|
+
jsxRuntime.jsx(Button$6, { ...buttonProps, backgroundColor: backgroundColor, ref: ref, style: { ...style }, length: length, active: active, value: value, variant: variant, disabled: disabled, onClick: handleClick, id: id, children: label }) }));
|
|
2752
2797
|
}
|
|
2753
2798
|
|
|
2754
2799
|
var css_248z$k = ".BannerProblem-module_container__iitVU {\n padding: 50px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n position: relative;\n flex-direction: row;\n flex-wrap: wrap;\n background-color: white;\n font-family: 'Work Sans';\n font-style: normal;\n\n}\n\n@media (max-width:570px) {\n\n .BannerProblem-module_container__iitVU {\n padding: 10px !important;\n display: flex;\n justify-content: space-between;\n align-items: center;\n position: relative;\n flex-direction: row;\n flex-wrap: wrap;\n background-color: white;\n font-family: 'Work Sans';\n font-style: normal;\n \n }\n }\n\n.BannerProblem-module_titleProblem__BeJIN{\n font-weight: 700;\n font-size: 18px;\n word-wrap: break-word;\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 4px;\n}\n\n.BannerProblem-module_created__OrSsa{\n font-size: 12px;\n\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 12px;\n line-height: 14px;\n /* identical to box height, or 117% */\n\n display: flex;\n align-items: center;\n letter-spacing: -0.02em;\n\n color: #757575;\n}\n\n.BannerProblem-module_description__olZ05{\n font-style: normal;\n font-weight: 600;\n font-size: 32px;\n text-align: left;\n display: flex;\n margin-top: 8px;\n width: 100%;\n color: #FF4D0D;\n margin-bottom: 0px;\n}\n\n@media(max-width: 880px){\n .BannerProblem-module_description__olZ05{\n word-wrap: break-word;\n }\n}\n\n.BannerProblem-module_missaoTitle__300kZ{\n font-style: normal;\n font-weight: 600;\n font-size: 16px;\n display: flex;\n align-items: center;\n width: 100%;\n \n color: #0645AD;\n}\n\nh2{\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 700;\n font-size: 16px;\n display: flex;\n align-items: center;\n width: 100%;\n margin-top: 16;\n margin-bottom: 0;\n}\n\nh3{\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n line-height: 21px;\n margin: 0;\n word-wrap: break-word;\n}\n\n.BannerProblem-module_contentInput__YXpxk {\n background-color: #F2F2F2; \n border-width: 1px; \n border-radius: 4px;\n padding: 24px 16px 24px 16px;\n border: 1px solid #BDBDBD;\n}\n\n.BannerProblem-module_contentInput__YXpxk input {\n width: 100% !important;\n margin: 4px;\n padding: 16px;\n border-radius: 8px;\n border: 1px solid #BDBDBD;\n background-color: white;\n}\n\n.BannerProblem-module_goal_invite__B0T5N svg {\n max-width: none;\n max-height: none !important;\n}\n";
|
|
@@ -23667,7 +23712,7 @@ const SelectTag = styled__default["default"].div `
|
|
|
23667
23712
|
gap: 8px;
|
|
23668
23713
|
padding: 4px 8px;
|
|
23669
23714
|
margin: 5px 10px 5px 0;
|
|
23670
|
-
z-index:
|
|
23715
|
+
z-index: 1;
|
|
23671
23716
|
|
|
23672
23717
|
:hover {
|
|
23673
23718
|
background: ${({ isVariant, tagColor }) => (tagColor ? tagColor : isVariant ? '#6A3F86' : '#1f6e74')};
|
|
@@ -23691,7 +23736,7 @@ const overShowInfo = styled__default["default"].div `
|
|
|
23691
23736
|
height: 32px;
|
|
23692
23737
|
padding: 4px 8px;
|
|
23693
23738
|
margin: 5px 10px 5px 0;
|
|
23694
|
-
z-index:
|
|
23739
|
+
z-index: 1;
|
|
23695
23740
|
cursor: pointer;
|
|
23696
23741
|
|
|
23697
23742
|
& :hover {
|
|
@@ -23922,7 +23967,7 @@ function DropdownMultiselect(props) {
|
|
|
23922
23967
|
}, children: jsxRuntime.jsx(material.Skeleton, { width: option.even ? '70%' : '60%', height: '2rem' }) }))
|
|
23923
23968
|
};
|
|
23924
23969
|
};
|
|
23925
|
-
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(containerSelect, { style: { ...props.style }, id: "container-select", children: [selectedValues?.length > 0 && (jsxRuntime.jsxs(headerSelect, { darkMode: darkMode, children: [selectTemplate(selectedValues), selectedValues?.length > 1 && (jsxRuntime.jsx("div", { style: { zIndex:
|
|
23970
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(containerSelect, { style: { ...props.style }, id: "container-select", children: [selectedValues?.length > 0 && (jsxRuntime.jsxs(headerSelect, { darkMode: darkMode, children: [selectTemplate(selectedValues), selectedValues?.length > 1 && (jsxRuntime.jsx("div", { style: { zIndex: '1', position: 'absolute', right: 40 }, id: "remove-all-selected", children: jsxRuntime.jsx(Tooltip$2, { content: props.removeItemsToolTip ? props.removeItemsToolTip : 'Excluir todos', direction: "bottom", trigger: "hover", style: { height: 'auto' }, children: jsxRuntime.jsx(material.IconButton, { onClick: () => setSelectedValues([]), children: jsxRuntime.jsx(Trash, { fill: darkMode ? "#757575" : "#9C9C9C" }) }) }) }))] })), jsxRuntime.jsx(customSelect, { onClick: () => textFilter !== '' && setTextFilter(''), darkMode: darkMode, children: jsxRuntime.jsx(multiselect.MultiSelect, { id: "list-selected", panelStyle: {
|
|
23926
23971
|
display: props.isModalOpen !== undefined ? (props.isModalOpen ? 'block' : 'none') : 'block',
|
|
23927
23972
|
background: darkMode ? '#323232' : '#fff'
|
|
23928
23973
|
}, value: selectedValues, options: listFilterSearch, onChange: (e) => setSelectedValues(e.value), placeholder: props.selectPlaceholder ? props.selectPlaceholder : 'Selecione aqui', className: "custom-multiselect", panelClassName: darkMode ? 'custom-darkMode-dropdown' : 'custom-dropdown', dropdownIcon: jsxRuntime.jsx(DropdownIcon, { fill: darkMode ? FRSTTheme['colors'].neutralsGrey3 : FRSTTheme['colors'].shadeBlack }), panelHeaderTemplate: handleTemplateHeader(), itemTemplate: itemTemplate, disabled: props.isDisabled, maxSelectedLabels: 0, selectedItemsLabel: " ", style: {
|
|
@@ -13,13 +13,16 @@ export declare const Button: import("styled-components").StyledComponent<"button
|
|
|
13
13
|
variant: string;
|
|
14
14
|
active: boolean;
|
|
15
15
|
length: number;
|
|
16
|
+
backgroundColor?: string;
|
|
16
17
|
}, never>;
|
|
17
18
|
export declare const ButtonStartIcon: import("styled-components").StyledComponent<"button", any, {
|
|
18
19
|
variant: string;
|
|
19
20
|
sizeIcon: string;
|
|
21
|
+
backgroundColor: string;
|
|
20
22
|
}, never>;
|
|
21
23
|
export declare const ButtonEndIcon: import("styled-components").StyledComponent<"button", any, {
|
|
22
24
|
variant: string;
|
|
23
25
|
sizeIcon: string;
|
|
26
|
+
backgroundColor: string;
|
|
24
27
|
}, never>;
|
|
25
28
|
//# sourceMappingURL=buttonStyle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttonStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/buttonStyle.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"buttonStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/buttonStyle.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,UAAU;cAAwB,OAAO;SAqCrD,CAAA;AACD,eAAO,MAAM,mBAAmB;cAAwB,OAAO;cAAY,MAAM;SAqChF,CAAA;AACD,eAAO,MAAM,iBAAiB;cAAwB,OAAO;cAAY,MAAM;SAqC9E,CAAA;AAuID,eAAO,MAAM,MAAM;aACR,MAAM;YACP,OAAO;YACP,MAAM;sBACI,MAAM;SAsFzB,CAAA;AACD,eAAO,MAAM,eAAe;aAA4B,MAAM;cAAY,MAAM;qBAAmB,MAAM;SA2BxG,CAAA;AACD,eAAO,MAAM,aAAa;aAA4B,MAAM;cAAY,MAAM;qBAAmB,MAAM;SA2BtG,CAAA"}
|
|
@@ -19,7 +19,8 @@ interface ButtonProps {
|
|
|
19
19
|
ref?: any;
|
|
20
20
|
handleMount?: (e: any) => void;
|
|
21
21
|
buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
22
|
+
backgroundColor?: string;
|
|
22
23
|
}
|
|
23
|
-
export default function Button({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export default function Button({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps, backgroundColor, }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
24
25
|
export {};
|
|
25
26
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,oBAAoB,EAAuB,MAAM,OAAO,CAAA;AACxE,OAAO,yBAAyB,CAAA;AAKhC,KAAK,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,GAAG,iBAAiB,GAAG,mBAAmB,CAAA;AAC7F,KAAK,QAAQ,GAAG,OAAO,GAAG,IAAI,CAAA;AAE9B,UAAU,WAAW;IACjB,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,WAAW,CAAC,EAAE,CAAC,CAAC,EAAC,GAAG,KAAK,IAAI,CAAA;IAC7B,WAAW,CAAC,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,oBAAoB,EAAuB,MAAM,OAAO,CAAA;AACxE,OAAO,yBAAyB,CAAA;AAKhC,KAAK,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,GAAG,iBAAiB,GAAG,mBAAmB,CAAA;AAC7F,KAAK,QAAQ,GAAG,OAAO,GAAG,IAAI,CAAA;AAE9B,UAAU,WAAW;IACjB,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,WAAW,CAAC,EAAE,CAAC,CAAC,EAAC,GAAG,KAAK,IAAI,CAAA;IAC7B,WAAW,CAAC,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAA;IACrD,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC3B,OAAO,EACP,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,OAAO,EACP,WAAW,EACX,IAAI,EACJ,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,EACN,EAAE,EACF,GAAG,EACH,WAAW,EACX,WAAW,EACX,eAAe,GAClB,EAAE,WAAW,2CA8Cb"}
|