dgrcorrientes-modulos 1.0.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/.nvmrc +1 -0
- package/.prettierrc.cjs +8 -0
- package/.storybook/main.cjs +11 -0
- package/.storybook/manager-head.html +2 -0
- package/.storybook/manager.cjs +6 -0
- package/.storybook/preview-head.html +3 -0
- package/.storybook/preview.cjs +11 -0
- package/.storybook/themes.cjs +14 -0
- package/README.md +21 -0
- package/StoryBook.txt +19 -0
- package/dist-config.cjs +57 -0
- package/index.html +13 -0
- package/package.json +60 -0
- package/public/elevation.ico +0 -0
- package/public/elevationImage.png +0 -0
- package/public/vite.svg +1 -0
- package/src/App.scss +36 -0
- package/src/App.tsx +34 -0
- package/src/assets/react.svg +1 -0
- package/src/index.js +70 -0
- package/src/index.scss +63 -0
- package/src/index.ts +108 -0
- package/src/main.tsx +11 -0
- package/src/sass/base/_base.scss +50 -0
- package/src/sass/base/_controls.scss +90 -0
- package/src/sass/base/_datepicker.scss +114 -0
- package/src/sass/base/_typo.scss +71 -0
- package/src/sass/base/fonts/SFUIText-Bold.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-BoldItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Heavy.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-HeavyItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Light.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-LightItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Medium.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-MediumItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Regular.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-RegularItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Semibold.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-SemiboldItalic.ttf +0 -0
- package/src/sass/bulma/bulma-changes.scss +19 -0
- package/src/sass/bulma/extensions/extensions.sass +1 -0
- package/src/sass/bulma/extensions/steps/bulma-steps.sass +3 -0
- package/src/sass/bulma/extensions/steps/index.sass +421 -0
- package/src/sass/bulma/variables/_variables-bulma.sass +16 -0
- package/src/sass/bulma/variables/components/card.sass +20 -0
- package/src/sass/bulma/variables/components/navbar.sass +50 -0
- package/src/sass/bulma/variables/components/tabs.sass +28 -0
- package/src/sass/bulma/variables/elements/button.sass +46 -0
- package/src/sass/bulma/variables/elements/notification.sass +8 -0
- package/src/sass/bulma/variables/elements/title.sass +20 -0
- package/src/sass/bulma/variables/grid/column.sass +2 -0
- package/src/sass/main.sass +16 -0
- package/src/sass/utilities/_bulma-variables.sass +20 -0
- package/src/sass/utilities/_derived-variables.scss +68 -0
- package/src/sass/utilities/_helpers.scss +70 -0
- package/src/sass/utilities/_variables.scss +147 -0
- package/src/stories/Changelog.stories.tsx +73 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.scss +19 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.stories.tsx +25 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.tsx +57 -0
- package/src/stories/Components/AverageAttended/AverageAttended.scss +39 -0
- package/src/stories/Components/AverageAttended/AverageAttended.stories.tsx +71 -0
- package/src/stories/Components/AverageAttended/AverageAttended.tsx +311 -0
- package/src/stories/Components/Breadcrumb/Breadcrumb.stories.tsx +45 -0
- package/src/stories/Components/Breadcrumb/Breadcrumb.tsx +68 -0
- package/src/stories/Components/Breadcrumb/breadcrumb.scss +82 -0
- package/src/stories/Components/CTA/CTA.scss +76 -0
- package/src/stories/Components/CTA/CTA.stories.tsx +46 -0
- package/src/stories/Components/CTA/CTA.tsx +70 -0
- package/src/stories/Components/Cards/Card CTA/CardCta.stories.tsx +34 -0
- package/src/stories/Components/Cards/Card CTA/CardCta.tsx +81 -0
- package/src/stories/Components/Cards/Card CTA/cardCta.scss +71 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.scss +105 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.stories.tsx +40 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.tsx +95 -0
- package/src/stories/Components/Cards/Card Vertical/CardVertical.stories.tsx +43 -0
- package/src/stories/Components/Cards/Card Vertical/CardVertical.tsx +106 -0
- package/src/stories/Components/Cards/Card Vertical/cardVertical.scss +130 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.scss +31 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.stories.tsx +20 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.tsx +48 -0
- package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.stories.tsx +96 -0
- package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.tsx +94 -0
- package/src/stories/Components/Cards/CardHorizontal/cardHorizontal.scss +65 -0
- package/src/stories/Components/Cards/CardUser/CardUser.stories.tsx +135 -0
- package/src/stories/Components/Cards/CardUser/CardUser.tsx +122 -0
- package/src/stories/Components/Cards/CardUser/cardUser.scss +115 -0
- package/src/stories/Components/Cart/Cart.scss +279 -0
- package/src/stories/Components/Cart/Cart.stories.tsx +350 -0
- package/src/stories/Components/Cart/Cart.tsx +277 -0
- package/src/stories/Components/Collapse/Collapse.scss +339 -0
- package/src/stories/Components/Collapse/Collapse.stories.tsx +766 -0
- package/src/stories/Components/Collapse/Collapse.tsx +451 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.scss +128 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.stories.tsx +29 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.tsx +185 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.scss +165 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.stories.tsx +219 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.tsx +394 -0
- package/src/stories/Components/Dropdown/Dropdown.scss +60 -0
- package/src/stories/Components/Dropdown/Dropdown.stories.tsx +19 -0
- package/src/stories/Components/Dropdown/Dropdown.tsx +99 -0
- package/src/stories/Components/EmptyState/EmptyState.stories.tsx +46 -0
- package/src/stories/Components/EmptyState/EmptyState.tsx +44 -0
- package/src/stories/Components/EmptyState/emptyState.scss +75 -0
- package/src/stories/Components/ErrorPage/ErrorPage.scss +65 -0
- package/src/stories/Components/ErrorPage/ErrorPage.stories.tsx +164 -0
- package/src/stories/Components/ErrorPage/ErrorPage.tsx +107 -0
- package/src/stories/Components/IncomingCall/IncomingCall.scss +27 -0
- package/src/stories/Components/IncomingCall/IncomingCall.stories.tsx +43 -0
- package/src/stories/Components/IncomingCall/IncomingCall.tsx +76 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.scss +30 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.stories.tsx +21 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.tsx +118 -0
- package/src/stories/Components/Pagination/Pagination.scss +42 -0
- package/src/stories/Components/Pagination/Pagination.stories.tsx +25 -0
- package/src/stories/Components/Pagination/Pagination.tsx +143 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.scss +26 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.stories.tsx +27 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.tsx +108 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.scss +45 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.stories.tsx +32 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.tsx +92 -0
- package/src/stories/Components/Stepper/Stepper.stories.tsx +26 -0
- package/src/stories/Components/Stepper/Stepper.tsx +102 -0
- package/src/stories/Components/Stepper/stepper.scss +59 -0
- package/src/stories/Components/Tabs/Tabs.stories.tsx +76 -0
- package/src/stories/Components/Tabs/Tabs.tsx +111 -0
- package/src/stories/Components/Tabs/tabs.scss +118 -0
- package/src/stories/Components/Tooltip/Tooltip.scss +235 -0
- package/src/stories/Components/Tooltip/Tooltip.stories.tsx +125 -0
- package/src/stories/Components/Tooltip/Tooltip.tsx +222 -0
- package/src/stories/Elements/Alert/Alert.stories.tsx +65 -0
- package/src/stories/Elements/Alert/Alert.tsx +49 -0
- package/src/stories/Elements/Alert/alert.scss +189 -0
- package/src/stories/Elements/Badge/Badge.stories.tsx +15 -0
- package/src/stories/Elements/Badge/Badge.tsx +21 -0
- package/src/stories/Elements/Badge/badge.scss +24 -0
- package/src/stories/Elements/Button/Button.stories.tsx +54 -0
- package/src/stories/Elements/Button/Button.tsx +118 -0
- package/src/stories/Elements/Button/button.scss +102 -0
- package/src/stories/Elements/Icon/Icon.stories.tsx +33 -0
- package/src/stories/Elements/Icon/Icon.tsx +57 -0
- package/src/stories/Elements/Icon/icon.scss +15 -0
- package/src/stories/Elements/Icon/icono.svg +1 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.scss +26 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.stories.tsx +19 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.tsx +35 -0
- package/src/stories/Form/Autocomplete/Autocomplete.stories.tsx +55 -0
- package/src/stories/Form/Autocomplete/Autocomplete.tsx +160 -0
- package/src/stories/Form/Autocomplete/autocomplete.scss +311 -0
- package/src/stories/Form/Autocomplete-Prueba/Autocomplete.stories.tsx +50 -0
- package/src/stories/Form/Autocomplete-Prueba/AutocompletePrueba.tsx +83 -0
- package/src/stories/Form/Checkbox/Checkbox.stories.tsx +26 -0
- package/src/stories/Form/Checkbox/Checkbox.tsx +89 -0
- package/src/stories/Form/Checkbox/checkbox.scss +41 -0
- package/src/stories/Form/DatePicker/DatePickerExample.stories.tsx +27 -0
- package/src/stories/Form/DatePicker/DatePickerExample.tsx +65 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.scss +116 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.stories.tsx +37 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.tsx +97 -0
- package/src/stories/Form/Filters/Filters.stories.tsx +84 -0
- package/src/stories/Form/Filters/Filters.tsx +230 -0
- package/src/stories/Form/Filters/filters.scss +261 -0
- package/src/stories/Form/Input/Input.stories.tsx +25 -0
- package/src/stories/Form/Input/Input.tsx +86 -0
- package/src/stories/Form/Input/InputVar.sass +26 -0
- package/src/stories/Form/Input/input.scss +19 -0
- package/src/stories/Form/InputFormControl/Input-form-control.stories.tsx +26 -0
- package/src/stories/Form/InputFormControl/Input-form-control.tsx +48 -0
- package/src/stories/Form/InputFormControl/input-form-control.scss +34 -0
- package/src/stories/Form/Radio/Radio.stories.tsx +19 -0
- package/src/stories/Form/Radio/Radio.tsx +84 -0
- package/src/stories/Form/Radio/radio.scss +19 -0
- package/src/stories/Form/Search/Search.scss +50 -0
- package/src/stories/Form/Search/Search.stories.tsx +26 -0
- package/src/stories/Form/Search/Search.tsx +84 -0
- package/src/stories/Form/Select/Select.stories.tsx +55 -0
- package/src/stories/Form/Select/Select.tsx +121 -0
- package/src/stories/Form/Select/select.scss +303 -0
- package/src/stories/Form/Switch/Switch.stories.tsx +17 -0
- package/src/stories/Form/Switch/Switch.tsx +36 -0
- package/src/stories/Form/Switch/switch.scss +123 -0
- package/src/stories/Form/Textarea/Textarea.stories.tsx +19 -0
- package/src/stories/Form/Textarea/Textarea.tsx +52 -0
- package/src/stories/Form/Textarea/textarea.scss +25 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.scss +49 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.stories.tsx +18 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.tsx +89 -0
- package/src/stories/Form/UploadFiles/UploadFiles.scss +17 -0
- package/src/stories/Form/UploadFiles/UploadFiles.stories.tsx +32 -0
- package/src/stories/Form/UploadFiles/UploadFiles.tsx +177 -0
- package/src/stories/Layout/Footer/Footer.scss +129 -0
- package/src/stories/Layout/Footer/Footer.stories.tsx +101 -0
- package/src/stories/Layout/Footer/Footer.tsx +81 -0
- package/src/stories/Layout/Header/Header.scss +190 -0
- package/src/stories/Layout/Header/Header.stories.tsx +223 -0
- package/src/stories/Layout/Header/Header.tsx +278 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.scss +21 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.stories.tsx +112 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.tsx +72 -0
- package/src/stories/Layout/Sidebar/Sidebar.scss +50 -0
- package/src/stories/Layout/Sidebar/Sidebar.stories.tsx +744 -0
- package/src/stories/Layout/Sidebar/Sidebar.tsx +129 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.scss +64 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.stories.tsx +26 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.tsx +100 -0
- package/src/stories/Layout/Subtitle/Subtitle.scss +88 -0
- package/src/stories/Layout/Subtitle/Subtitle.stories.tsx +46 -0
- package/src/stories/Layout/Subtitle/Subtitle.tsx +108 -0
- package/src/stories/Layout/Title/Title.scss +79 -0
- package/src/stories/Layout/Title/Title.stories.tsx +86 -0
- package/src/stories/Layout/Title/Title.tsx +96 -0
- package/src/stories/Welcome.stories.tsx +111 -0
- package/src/stories/assets/404 Page Not Found _Two Color (1).png +0 -0
- package/src/stories/assets/404 Page Not Found _Two Color.png +0 -0
- package/src/stories/assets/Empty Inbox _Two Color.png +0 -0
- package/src/stories/assets/Loading _Two Color.png +0 -0
- package/src/stories/assets/Notifications_Two Color 1.png +0 -0
- package/src/stories/assets/Online protection_Two Color.png +0 -0
- package/src/stories/assets/Under Constructions _Two Color.png +0 -0
- package/src/stories/assets/bulma.png +0 -0
- package/src/stories/assets/burger.svg +5 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/decor-bg.png +0 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/e-isologo.svg +4 -0
- package/src/stories/assets/e-isotype.svg +4 -0
- package/src/stories/assets/e-logo_negative.svg +14 -0
- package/src/stories/assets/e-logotype.svg +14 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/logo_gobierno_corrientes.svg +9 -0
- package/src/stories/assets/logo_rentas_corrientes.svg +10 -0
- package/src/stories/assets/logo_rentas_corrientes_compacto.svg +10 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/assets/storybook.svg +13 -0
- package/src/stories/assets/thumbnail-black.jpg +0 -0
- package/src/stories/assets/thumbnail-black[2].jpg +0 -0
- package/src/stories/assets/thumbnail.jpg +0 -0
- package/src/stories/assets/thumbnail[2].jpg +0 -0
- package/src/stories/changelog.ts +389 -0
- package/src/utils/functions.ts +57 -0
- package/src/vite-env.d.ts +2 -0
- package/static/e-isologo-192.jpg +0 -0
- package/static/e-isologo.svg +4 -0
- package/static/e-logotype.svg +14 -0
- package/static/favicon.ico +0 -0
- package/tsconfig.json +22 -0
- package/tsconfig.node.json +9 -0
- package/vite.config.ts +22 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import {Button, IButton} from '../../Elements/Button/Button';
|
|
2
|
+
import './CTA.scss';
|
|
3
|
+
import {shortenText} from '../../../utils/functions';
|
|
4
|
+
import {Icon, IIcon} from '../../Elements/Icon/Icon';
|
|
5
|
+
|
|
6
|
+
export interface ICTA extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
7
|
+
// base
|
|
8
|
+
title: string;
|
|
9
|
+
button: IButton;
|
|
10
|
+
items: {
|
|
11
|
+
icon: IIcon;
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
}[];
|
|
15
|
+
|
|
16
|
+
// react
|
|
17
|
+
className?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const CTA = ({title, button, items, className, ...props}: ICTA) => {
|
|
21
|
+
return (
|
|
22
|
+
<div className="elv-component elv-cta" {...props}>
|
|
23
|
+
<div className={`cta columns ${className ? className : ''}`}>
|
|
24
|
+
<div className="cta__principal column is-3 is-flex is-flex-direction-column">
|
|
25
|
+
<p className="title">{shortenText(title, 25)}</p>
|
|
26
|
+
<div className="button-container">
|
|
27
|
+
<Button {...button} />
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div className="cta__items column">
|
|
31
|
+
<div className="columns is-flex">
|
|
32
|
+
{items[0] && (
|
|
33
|
+
<div className="item column is-flex">
|
|
34
|
+
<div className="item__icon is-flex is-align-items-center is-justify-content-center">
|
|
35
|
+
<Icon {...items[0].icon} />
|
|
36
|
+
</div>
|
|
37
|
+
<div className="item__description">
|
|
38
|
+
<p className="title is-6">{shortenText(items[0].title, 15)}</p>
|
|
39
|
+
<p>{shortenText(items[0].description, 137)}</p>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
)}
|
|
43
|
+
{items[1] && (
|
|
44
|
+
<div className="item column is-flex">
|
|
45
|
+
<div className="item__icon is-flex is-align-items-center is-justify-content-center">
|
|
46
|
+
<Icon {...items[1].icon} />
|
|
47
|
+
</div>
|
|
48
|
+
<div className="item__description">
|
|
49
|
+
<p className="title is-6">{shortenText(items[1].title, 15)}</p>
|
|
50
|
+
<p>{shortenText(items[1].description, 137)}</p>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
)}
|
|
54
|
+
{items[2] && (
|
|
55
|
+
<div className="item column is-flex">
|
|
56
|
+
<div className="item__icon is-flex is-align-items-center is-justify-content-center">
|
|
57
|
+
<Icon {...items[2].icon} />
|
|
58
|
+
</div>
|
|
59
|
+
<div className="item__description">
|
|
60
|
+
<p className="title is-6">{shortenText(items[2].title, 15)}</p>
|
|
61
|
+
<p>{shortenText(items[2].description, 137)}</p>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
)}
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
);
|
|
70
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {ComponentStory, ComponentMeta} from '@storybook/react';
|
|
2
|
+
import {CardCTA} from './CardCta';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Components/Cards/CardCTA',
|
|
6
|
+
component: CardCTA,
|
|
7
|
+
args: {
|
|
8
|
+
img: 'https://img.freepik.com/fotos-premium/hombre-usando-computadora-portatil-casa-maqueta-pantalla-blanco-exhibicion-productos_44344-3360.jpg',
|
|
9
|
+
title: 'long established',
|
|
10
|
+
icon: [
|
|
11
|
+
{
|
|
12
|
+
icon: 'fa-solid fa-calendar-days',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
date: '13/10/2022',
|
|
16
|
+
description:
|
|
17
|
+
'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsun is that..',
|
|
18
|
+
button: {
|
|
19
|
+
type: 'button',
|
|
20
|
+
size: 'normal',
|
|
21
|
+
fill: 'link',
|
|
22
|
+
loading: false,
|
|
23
|
+
disabled: false,
|
|
24
|
+
label: 'Leer más',
|
|
25
|
+
trailingIcon: true,
|
|
26
|
+
onClick: () => console.log('Button Clicked'),
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
} as ComponentMeta<typeof CardCTA>;
|
|
30
|
+
|
|
31
|
+
const Template: ComponentStory<typeof CardCTA> = args => <CardCTA {...args} />;
|
|
32
|
+
|
|
33
|
+
export const Standard = Template.bind({});
|
|
34
|
+
Standard.args = {};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import './cardCta.scss';
|
|
2
|
+
import {Button, IButton} from '../../../Elements/Button/Button';
|
|
3
|
+
import {Icon, IIcon} from '../../../Elements/Icon/Icon';
|
|
4
|
+
import {shortenText} from '../../../../utils/functions';
|
|
5
|
+
|
|
6
|
+
export interface ICardCTA extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
7
|
+
// base
|
|
8
|
+
img?: any;
|
|
9
|
+
imgAvatar?: any;
|
|
10
|
+
title: string;
|
|
11
|
+
icon?: IIcon[];
|
|
12
|
+
date?: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
button?: IButton;
|
|
15
|
+
|
|
16
|
+
// boolean
|
|
17
|
+
avatar?: boolean;
|
|
18
|
+
isClickable?: boolean;
|
|
19
|
+
isBorderless?: boolean;
|
|
20
|
+
|
|
21
|
+
// events
|
|
22
|
+
onClick?: () => void;
|
|
23
|
+
|
|
24
|
+
// react
|
|
25
|
+
className?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export const CardCTA = ({
|
|
29
|
+
img,
|
|
30
|
+
title,
|
|
31
|
+
icon,
|
|
32
|
+
date,
|
|
33
|
+
description,
|
|
34
|
+
button,
|
|
35
|
+
className,
|
|
36
|
+
isBorderless,
|
|
37
|
+
isClickable,
|
|
38
|
+
onClick,
|
|
39
|
+
...props
|
|
40
|
+
}: ICardCTA) => {
|
|
41
|
+
return (
|
|
42
|
+
<div className="elv-component elv-card" {...props}>
|
|
43
|
+
<div
|
|
44
|
+
className={[
|
|
45
|
+
'card card-cta',
|
|
46
|
+
`${className ? ' ' + className : ''}`,
|
|
47
|
+
`${isClickable ? ' is-clickable' : ''}`,
|
|
48
|
+
`${isBorderless ? ' is-shadowless' : ' card-box'}`,
|
|
49
|
+
].join('')}
|
|
50
|
+
onClick={() => {
|
|
51
|
+
if (isClickable && onClick) {
|
|
52
|
+
onClick();
|
|
53
|
+
}
|
|
54
|
+
}}
|
|
55
|
+
>
|
|
56
|
+
<div className="card-content" style={{flexGrow: 1}}>
|
|
57
|
+
<div className="card-header">
|
|
58
|
+
<div className="card__text">
|
|
59
|
+
<p className="title is-3">{shortenText(title, 54)}</p>
|
|
60
|
+
{description && <p>{shortenText(description, 198)}</p>}
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<div className="card-footer">
|
|
64
|
+
<div className="card__date">
|
|
65
|
+
{icon && <Icon {...icon[0]} />}
|
|
66
|
+
<span className="date">{date}</span>
|
|
67
|
+
</div>
|
|
68
|
+
{button && (
|
|
69
|
+
<div className="card__button">
|
|
70
|
+
<Button {...button} />
|
|
71
|
+
</div>
|
|
72
|
+
)}
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
<div className="card-image">
|
|
76
|
+
<img src={img} alt="" />
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
);
|
|
81
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@import '/src/sass/utilities/variables';
|
|
2
|
+
|
|
3
|
+
.card-cta {
|
|
4
|
+
border-radius: 16px;
|
|
5
|
+
min-width: 517px;
|
|
6
|
+
max-width: none;
|
|
7
|
+
display: flex;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
|
|
10
|
+
.card-content {
|
|
11
|
+
width: 484px;
|
|
12
|
+
height: auto;
|
|
13
|
+
padding: 30px 24px;
|
|
14
|
+
|
|
15
|
+
.card-header {
|
|
16
|
+
margin-bottom: 24px;
|
|
17
|
+
|
|
18
|
+
.card__text {
|
|
19
|
+
max-width: 100%;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.card-footer {
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: space-between !important;
|
|
26
|
+
margin-top: 40px;
|
|
27
|
+
|
|
28
|
+
.card__date {
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
|
|
32
|
+
.icon {
|
|
33
|
+
width: 12px;
|
|
34
|
+
color: $text-400;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.date {
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
font-size: 12px;
|
|
40
|
+
line-height: 16px;
|
|
41
|
+
color: $text-400;
|
|
42
|
+
padding-left: 7px;
|
|
43
|
+
max-width: 200px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.card__button {
|
|
48
|
+
display: flex;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
|
|
51
|
+
.button {
|
|
52
|
+
padding: 0;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.card-image {
|
|
58
|
+
display: inline-flex;
|
|
59
|
+
justify-content: center;
|
|
60
|
+
align-items: center;
|
|
61
|
+
// min-width: 390px;
|
|
62
|
+
max-width: 40%;
|
|
63
|
+
border-radius: 0px 16px 16px 0px;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
|
|
66
|
+
img {
|
|
67
|
+
height: 100%;
|
|
68
|
+
max-width: none;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
@import '/src/sass/utilities/variables';
|
|
2
|
+
|
|
3
|
+
.card-expiration {
|
|
4
|
+
min-width: 225px;
|
|
5
|
+
display: flex;
|
|
6
|
+
border-radius: 16px;
|
|
7
|
+
gap: 16px;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
background-color: $white;
|
|
10
|
+
|
|
11
|
+
&__content {
|
|
12
|
+
padding: 16px 24px;
|
|
13
|
+
.card_header {
|
|
14
|
+
padding-bottom: 20px;
|
|
15
|
+
border-bottom: 1px solid $muted-200;
|
|
16
|
+
|
|
17
|
+
.date__big {
|
|
18
|
+
text-align: center;
|
|
19
|
+
|
|
20
|
+
h1 {
|
|
21
|
+
font-weight: $fw-regular;
|
|
22
|
+
font-size: 96px;
|
|
23
|
+
color: $primary-600;
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h4 {
|
|
28
|
+
font-weight: $fw-semibold;
|
|
29
|
+
font-size: 30px;
|
|
30
|
+
color: $text-800;
|
|
31
|
+
margin: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.mb-20 {
|
|
35
|
+
margin-bottom: 20px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.date__small {
|
|
40
|
+
text-align: center;
|
|
41
|
+
|
|
42
|
+
.title.is-5 {
|
|
43
|
+
font-weight: $fw-regular;
|
|
44
|
+
color: $text-400;
|
|
45
|
+
text-transform: capitalize;
|
|
46
|
+
margin-top: 20px;
|
|
47
|
+
margin-bottom: 0px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.title.is-3 {
|
|
51
|
+
color: $primary-600;
|
|
52
|
+
margin-top: 5px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.card__icon {
|
|
57
|
+
display: flex;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
|
|
60
|
+
.icon {
|
|
61
|
+
width: 40px;
|
|
62
|
+
height: 40px;
|
|
63
|
+
background-color: $muted-200;
|
|
64
|
+
border-radius: 50%;
|
|
65
|
+
display: flex;
|
|
66
|
+
justify-content: center;
|
|
67
|
+
|
|
68
|
+
span {
|
|
69
|
+
display: flex;
|
|
70
|
+
|
|
71
|
+
.icon {
|
|
72
|
+
width: 15px;
|
|
73
|
+
fill: $text-800;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.card-footer {
|
|
81
|
+
padding-top: 20px;
|
|
82
|
+
.data__expiration {
|
|
83
|
+
.list {
|
|
84
|
+
font-weight: 400;
|
|
85
|
+
font-size: 16px;
|
|
86
|
+
line-height: 22px;
|
|
87
|
+
|
|
88
|
+
.title.is-6 {
|
|
89
|
+
color: $text-400;
|
|
90
|
+
margin: 0;
|
|
91
|
+
|
|
92
|
+
span {
|
|
93
|
+
color: $text-900;
|
|
94
|
+
margin: 0;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.card__button {
|
|
101
|
+
margin-top: 5px;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {ComponentStory, ComponentMeta} from '@storybook/react';
|
|
2
|
+
import {CardExpiration} from './cardExpiration';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Components/Cards/CardExpiration',
|
|
6
|
+
component: CardExpiration,
|
|
7
|
+
args: {
|
|
8
|
+
fill: 'default',
|
|
9
|
+
dataBig: false,
|
|
10
|
+
bigNumber: '22',
|
|
11
|
+
bigMonth: 'febrero',
|
|
12
|
+
dataSmall: true,
|
|
13
|
+
iconCalendar: [
|
|
14
|
+
{
|
|
15
|
+
icon: 'fa-solid fa-calendar-days',
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
day: 'martes',
|
|
19
|
+
fullDay: '15 de noviembre',
|
|
20
|
+
list: [
|
|
21
|
+
{
|
|
22
|
+
type: 'Cuotas',
|
|
23
|
+
text: '01',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
type: 'Terminación CUIT',
|
|
27
|
+
text: '2-3',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
type: 'Tipo',
|
|
31
|
+
text: 'Pago/Pres',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
} as ComponentMeta<typeof CardExpiration>;
|
|
36
|
+
|
|
37
|
+
const Template: ComponentStory<typeof CardExpiration> = args => <CardExpiration {...args} />;
|
|
38
|
+
|
|
39
|
+
export const Standard = Template.bind({});
|
|
40
|
+
Standard.args = {};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import './cardExpiration.scss';
|
|
2
|
+
import {Icon, IIcon} from '../../../Elements/Icon/Icon';
|
|
3
|
+
import {generateRandomKey} from '../../../../utils/functions';
|
|
4
|
+
|
|
5
|
+
export interface ICardExpiration extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
6
|
+
// base
|
|
7
|
+
bigNumber?: string;
|
|
8
|
+
bigMonth?: string;
|
|
9
|
+
dataSmall?: boolean;
|
|
10
|
+
iconCalendar?: IIcon[];
|
|
11
|
+
day?: string;
|
|
12
|
+
fullDay?: string;
|
|
13
|
+
list: {
|
|
14
|
+
type: string;
|
|
15
|
+
text: string;
|
|
16
|
+
}[];
|
|
17
|
+
|
|
18
|
+
// boolean
|
|
19
|
+
dataBig?: boolean;
|
|
20
|
+
isClickable?: boolean;
|
|
21
|
+
isBorderless?: boolean;
|
|
22
|
+
|
|
23
|
+
// events
|
|
24
|
+
onClick?: () => void;
|
|
25
|
+
|
|
26
|
+
// react
|
|
27
|
+
className?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const CardExpiration = ({
|
|
31
|
+
dataBig,
|
|
32
|
+
bigNumber,
|
|
33
|
+
bigMonth,
|
|
34
|
+
dataSmall,
|
|
35
|
+
iconCalendar,
|
|
36
|
+
day,
|
|
37
|
+
fullDay,
|
|
38
|
+
list,
|
|
39
|
+
className,
|
|
40
|
+
isBorderless,
|
|
41
|
+
isClickable,
|
|
42
|
+
onClick,
|
|
43
|
+
...props
|
|
44
|
+
}: ICardExpiration) => {
|
|
45
|
+
return (
|
|
46
|
+
<div className="elv-component elv-card" {...props}>
|
|
47
|
+
<div
|
|
48
|
+
className={[
|
|
49
|
+
'card card-expiration',
|
|
50
|
+
`${className ? ' ' + className : ''}`,
|
|
51
|
+
`${isClickable ? ' is-clickable' : ''}`,
|
|
52
|
+
`${isBorderless ? ' is-shadowless' : ' card-box'}`,
|
|
53
|
+
].join('')}
|
|
54
|
+
onClick={() => {
|
|
55
|
+
if (isClickable && onClick) {
|
|
56
|
+
onClick();
|
|
57
|
+
}
|
|
58
|
+
}}
|
|
59
|
+
>
|
|
60
|
+
<div className="card-expiration__content">
|
|
61
|
+
<div className="card_header">
|
|
62
|
+
{dataBig && (
|
|
63
|
+
<div className={['date__big', `${dataSmall ? 'mb-20' : ''}`].join(' ')}>
|
|
64
|
+
<h1>{bigNumber}</h1>
|
|
65
|
+
<h4>{bigMonth}</h4>
|
|
66
|
+
</div>
|
|
67
|
+
)}
|
|
68
|
+
{dataSmall && (
|
|
69
|
+
<div className="date__small">
|
|
70
|
+
{iconCalendar && (
|
|
71
|
+
<div className="card__icon">
|
|
72
|
+
<div className="icon">{iconCalendar ? <Icon icon={iconCalendar[0].icon} className="icon" /> : null}</div>
|
|
73
|
+
</div>
|
|
74
|
+
)}
|
|
75
|
+
<p className="title is-5">{day}</p>
|
|
76
|
+
<p className="title is-3">{fullDay}</p>
|
|
77
|
+
</div>
|
|
78
|
+
)}
|
|
79
|
+
</div>
|
|
80
|
+
<div className="card-footer">
|
|
81
|
+
<div className="data__expiration">
|
|
82
|
+
<div className="list">
|
|
83
|
+
{list.map(list => (
|
|
84
|
+
<p key={generateRandomKey()} className="title is-6">
|
|
85
|
+
{list.type}: <span>{list.text}</span>
|
|
86
|
+
</p>
|
|
87
|
+
))}
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
);
|
|
95
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import {ComponentStory, ComponentMeta} from '@storybook/react';
|
|
2
|
+
import {CardVertical} from './CardVertical';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Components/Cards/CardVertical',
|
|
6
|
+
component: CardVertical,
|
|
7
|
+
args: {
|
|
8
|
+
image: true,
|
|
9
|
+
img: 'data:image/jpeg;base64,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',
|
|
10
|
+
badge: [
|
|
11
|
+
{
|
|
12
|
+
color: '#0284C7',
|
|
13
|
+
text: 'PRINCIPAL',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
avatar: false,
|
|
17
|
+
imgAvatar: 'https://as2.ftcdn.net/v2/jpg/02/79/66/93/1000_F_279669366_Lk12QalYQKMczLEa4ySjhaLtx1M2u7e6.jpg',
|
|
18
|
+
icon: false,
|
|
19
|
+
title: 'Título',
|
|
20
|
+
iconDate: [
|
|
21
|
+
{
|
|
22
|
+
icon: 'fa-solid fa-calendar-days',
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
date: '13/10/2022',
|
|
26
|
+
description: 'Description. Loren ipsum dolor sit amet consectetur adipiscing elit, sed do',
|
|
27
|
+
button: {
|
|
28
|
+
type: 'button',
|
|
29
|
+
size: 'normal',
|
|
30
|
+
fill: 'outline',
|
|
31
|
+
loading: false,
|
|
32
|
+
disabled: false,
|
|
33
|
+
label: 'Button',
|
|
34
|
+
trailingIcon: true,
|
|
35
|
+
onClick: () => console.log('Button Clicked'),
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
} as ComponentMeta<typeof CardVertical>;
|
|
39
|
+
|
|
40
|
+
const Template: ComponentStory<typeof CardVertical> = args => <CardVertical {...args} />;
|
|
41
|
+
|
|
42
|
+
export const Standard = Template.bind({});
|
|
43
|
+
Standard.args = {};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import './cardVertical.scss';
|
|
2
|
+
import {Button, IButton} from '../../../Elements/Button/Button';
|
|
3
|
+
import {Icon, IIcon} from '../../../Elements/Icon/Icon';
|
|
4
|
+
import {Badge, BadgeProps} from '../../../Elements/Badge/Badge';
|
|
5
|
+
import {shortenText} from '../../../../utils/functions';
|
|
6
|
+
|
|
7
|
+
export interface ICardVertical extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
8
|
+
// base
|
|
9
|
+
image?: boolean;
|
|
10
|
+
img?: any;
|
|
11
|
+
badge?: BadgeProps[];
|
|
12
|
+
imgAvatar?: any;
|
|
13
|
+
title?: string;
|
|
14
|
+
iconDate?: IIcon[];
|
|
15
|
+
date?: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
button: IButton;
|
|
18
|
+
|
|
19
|
+
// boolean
|
|
20
|
+
avatar?: boolean;
|
|
21
|
+
icon?: boolean;
|
|
22
|
+
isClickable?: boolean;
|
|
23
|
+
isBorderless?: boolean;
|
|
24
|
+
|
|
25
|
+
// events
|
|
26
|
+
onClick?: () => void;
|
|
27
|
+
|
|
28
|
+
// react
|
|
29
|
+
className?: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export const CardVertical = ({
|
|
33
|
+
image,
|
|
34
|
+
img,
|
|
35
|
+
badge,
|
|
36
|
+
avatar,
|
|
37
|
+
imgAvatar,
|
|
38
|
+
icon,
|
|
39
|
+
title,
|
|
40
|
+
iconDate,
|
|
41
|
+
date,
|
|
42
|
+
description,
|
|
43
|
+
button,
|
|
44
|
+
className,
|
|
45
|
+
isClickable,
|
|
46
|
+
isBorderless,
|
|
47
|
+
onClick,
|
|
48
|
+
...props
|
|
49
|
+
}: ICardVertical) => {
|
|
50
|
+
return (
|
|
51
|
+
<div className="elv-component elv-card" {...props}>
|
|
52
|
+
<div
|
|
53
|
+
className={[
|
|
54
|
+
'card card-vertical',
|
|
55
|
+
`${className ? ' ' + className : ''}`,
|
|
56
|
+
`${isClickable ? ' is-clickable' : ''}`,
|
|
57
|
+
`${isBorderless ? ' is-shadowless' : ' card-box'}`,
|
|
58
|
+
].join('')}
|
|
59
|
+
onClick={() => {
|
|
60
|
+
if (isClickable && onClick) {
|
|
61
|
+
onClick();
|
|
62
|
+
}
|
|
63
|
+
}}
|
|
64
|
+
>
|
|
65
|
+
<div className="card-header">
|
|
66
|
+
{image && (
|
|
67
|
+
<div className="card__img">
|
|
68
|
+
<img src={img} alt="" />
|
|
69
|
+
{badge && <Badge {...badge[0]} />}
|
|
70
|
+
</div>
|
|
71
|
+
)}
|
|
72
|
+
{icon && (
|
|
73
|
+
<div className="card__icon">
|
|
74
|
+
<div className="icon">{iconDate ? <Icon {...iconDate[0]} className={'icon'} /> : null}</div>
|
|
75
|
+
</div>
|
|
76
|
+
)}
|
|
77
|
+
|
|
78
|
+
{avatar && (
|
|
79
|
+
<div className="card__avatar">
|
|
80
|
+
<img src={imgAvatar} alt="" />
|
|
81
|
+
</div>
|
|
82
|
+
)}
|
|
83
|
+
</div>
|
|
84
|
+
|
|
85
|
+
<div className="card-body">
|
|
86
|
+
<div className="card__title">
|
|
87
|
+
<p className="title is-5">{title}</p>
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
<div className="card__date">
|
|
91
|
+
{iconDate && <Icon {...iconDate[0]} className={'icon'} />}
|
|
92
|
+
<span className="date">{date}</span>
|
|
93
|
+
</div>
|
|
94
|
+
<div className="card__description">
|
|
95
|
+
<p>{description}</p>
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
98
|
+
<div className="card-footer">
|
|
99
|
+
<div className="card__button">
|
|
100
|
+
<Button {...button} />
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
);
|
|
106
|
+
};
|