@weni/unnnic-system 2.0.16 → 2.0.18
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/style.css +1 -1
- package/dist/unnnic.mjs +4655 -4530
- package/dist/unnnic.umd.js +18 -18
- package/package.json +3 -2
- package/src/components/AudioRecorder/AudioHandler.vue +2 -0
- package/src/components/AudioRecorder/AudioPlayer.vue +2 -0
- package/src/components/AudioRecorder/AudioRecorder.vue +6 -4
- package/src/components/Card/CardData.vue +2 -2
- package/src/components/CardProject/CardProject.vue +6 -6
- package/src/components/ChartRainbow/ChartRainbow.vue +4 -4
- package/src/components/ChatsMessage/ChatsMessage.vue +11 -2
- package/src/components/ChatsMessage/ChatsMessageStatusBackdrop.vue +1 -4
- package/src/components/DateFilter/DateFilter.vue +2 -2
- package/src/components/DatePicker/DatePicker.vue +53 -55
- package/src/components/DatePicker/translations.js +131 -0
- package/src/components/Dropdown/LanguageSelect.vue +7 -7
- package/src/components/ImportCard/ImportCard.vue +2 -2
- package/src/components/ProgressBar/ProgressBar.vue +3 -3
- package/src/components/Sidebar/SidebarPrimary.vue +15 -5
- package/src/components/TabsExpanded/TabsExpanded.vue +1 -0
- package/src/stories/Accordion.stories.js +35 -40
- package/src/stories/Alert.stories.js +98 -83
- package/src/stories/Breadcrumb.stories.js +12 -23
- package/src/stories/ButtonIcon.stories.js +2 -2
- package/src/stories/CardCompany.stories.js +52 -58
- package/src/stories/CardData.stories.js +8 -26
- package/src/stories/CardImage.stories.js +49 -48
- package/src/stories/CardInformation.stories.js +33 -54
- package/src/stories/CardProject.stories.js +50 -52
- package/src/stories/Carousel.stories.js +32 -27
- package/src/stories/ChartBar.stories.js +82 -102
- package/src/stories/ChartLine.stories.js +42 -52
- package/src/stories/ChartMultiLine.stories.js +39 -49
- package/src/stories/ChartRainbow.stories.js +2 -2
- package/src/stories/ChatText.stories.js +38 -44
- package/src/stories/ChatsContact.stories.js +57 -54
- package/src/stories/ChatsDashboardTagLive.stories.js +1 -8
- package/src/stories/ChatsHeader.stories.js +63 -74
- package/src/stories/ChatsMessage.stories.js +208 -216
- package/src/stories/CircleProgressBar.stories.js +4 -20
- package/src/stories/Collapse.stories.js +49 -55
- package/src/stories/Comment.stories.js +57 -54
- package/src/stories/DataArea.stories.js +60 -65
- package/src/stories/DateFilter.stories.js +7 -12
- package/src/stories/DatePicker.stories.js +7 -68
- package/src/stories/Disclaimer.stories.js +12 -27
- package/src/stories/Drawer.stories.js +116 -110
- package/src/stories/Dropdown.stories.js +22 -12
- package/src/stories/FormElement.stories.js +18 -23
- package/src/stories/Grid.stories.js +4 -10
- package/src/stories/Icon.stories.js +2 -2
- package/src/stories/IconLoading.stories.js +5 -11
- package/src/stories/ImportCard.stories.js +12 -19
- package/src/stories/Indicator.stories.js +8 -13
- package/src/stories/InputDatePicker.stories.js +27 -32
- package/src/stories/LanguageSelect.stories.js +12 -16
- package/src/stories/Modal.stories.js +66 -40
- package/src/stories/MoodRating.stories.js +27 -32
- package/src/stories/MultiSelect.stories.js +56 -50
- package/src/stories/Pagination.stories.js +21 -29
- package/src/stories/ProgressBar.stories.js +19 -54
- package/src/stories/Radio.stories.js +36 -35
- package/src/stories/Sidebar.stories.js +29 -27
- package/src/stories/SidebarPrimary.stories.js +87 -80
- package/src/stories/SkeletonLoading.stories.js +12 -29
- package/src/stories/StarRating.stories.js +29 -33
- package/src/stories/Switch.stories.js +26 -19
- package/src/stories/TabsExpanded.stories.js +56 -58
- package/src/stories/TextArea.stories.js +29 -34
- package/src/stories/TransitionRipple.stories.js +19 -18
- package/src/utils/plugins/i18n.js +1 -1
|
@@ -1,51 +1,46 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import UnnnicAccordion from '../components/Accordion/Accordion.vue';
|
|
2
|
+
import UnnnicButton from '../components/Button/Button.vue';
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
title: 'accordion/Accordion',
|
|
6
|
-
component:
|
|
6
|
+
component: UnnnicAccordion,
|
|
7
7
|
argTypes: {
|
|
8
8
|
open: { control: { type: 'boolean' } },
|
|
9
9
|
title: { control: { type: 'text' } },
|
|
10
10
|
},
|
|
11
|
+
render: (args) => ({
|
|
12
|
+
setup() {
|
|
13
|
+
return { args };
|
|
14
|
+
},
|
|
15
|
+
components: {
|
|
16
|
+
UnnnicAccordion,
|
|
17
|
+
UnnnicButton,
|
|
18
|
+
},
|
|
19
|
+
data() {
|
|
20
|
+
return {
|
|
21
|
+
open: false,
|
|
22
|
+
};
|
|
23
|
+
},
|
|
24
|
+
template: `
|
|
25
|
+
<div>
|
|
26
|
+
<pre>v-model:open {{ open }}</pre>
|
|
27
|
+
<unnnic-accordion v-bind="args" v-model:open="open">
|
|
28
|
+
<template #actions>
|
|
29
|
+
<unnnic-button type="secondary" size="small" icon-left="button-play-1">
|
|
30
|
+
Assista ao vídeo
|
|
31
|
+
</unnnic-button>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
Quae assumenda aut non nulla quod ratione odio. Suscipit voluptatem natus a. Cumque et delectus ut. Nostrum ratione eos voluptatem voluptatu quia quod qui. Velit in consequatur corrupti similique. Quae assumenda aut non nulla quod ratione odio. Suscipit voluptatem natus a.
|
|
35
|
+
</unnnic-accordion>
|
|
36
|
+
</div>
|
|
37
|
+
`,
|
|
38
|
+
}),
|
|
11
39
|
};
|
|
12
40
|
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
unnnicAccordion,
|
|
18
|
-
unnnicButton,
|
|
41
|
+
export const Default = {
|
|
42
|
+
args: {
|
|
43
|
+
title:
|
|
44
|
+
'Os valores permanecem os mesmos? O que muda no meu plano contratado?',
|
|
19
45
|
},
|
|
20
|
-
|
|
21
|
-
data() {
|
|
22
|
-
return {
|
|
23
|
-
o: false,
|
|
24
|
-
};
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
template: `
|
|
28
|
-
<div>
|
|
29
|
-
<pre>v-model:open {{ o }}</pre>
|
|
30
|
-
<unnnic-accordion v-bind="$props" v-model:open="o">
|
|
31
|
-
<template v-slot:actions>
|
|
32
|
-
<unnnic-button @click.stop="click" type="secondary" size="small" icon-left="button-play-1">Assista ao vídeo</unnnic-button>
|
|
33
|
-
</template>
|
|
34
|
-
|
|
35
|
-
Quae assumenda aut non nulla quod ratione odio. Suscipit voluptatem natus a. Cumque et delectus ut. Nostrum ratione eos voluptatem voluptatu quia quod qui. Velit in consequatur corrupti similique. Quae assumenda aut non nulla quod ratione odio. Suscipit voluptatem natus a.
|
|
36
|
-
</unnnic-accordion>
|
|
37
|
-
</div>
|
|
38
|
-
`,
|
|
39
|
-
|
|
40
|
-
methods: {
|
|
41
|
-
click() {
|
|
42
|
-
console.log('clicked test 2');
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
export const Default = Template.bind({});
|
|
48
|
-
|
|
49
|
-
Default.args = {
|
|
50
|
-
title: 'Os valores permanecem os mesmos? O que muda no meu plano contratado?',
|
|
51
46
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import AlertCaller from '../components/Alert/AlertCaller.vue';
|
|
2
2
|
import alert from '../utils/call';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
3
|
+
import UnnnicAlert from '../components/Alert/Alert.vue';
|
|
4
|
+
import AlertBanner from '../components/Alert/AlertBanner.vue';
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
title: 'example/Alert',
|
|
8
|
-
component:
|
|
8
|
+
component: UnnnicAlert,
|
|
9
9
|
argTypes: {
|
|
10
10
|
text: { control: { type: 'text' } },
|
|
11
11
|
showCloseButton: { control: { type: 'boolean' } },
|
|
@@ -56,74 +56,106 @@ export default {
|
|
|
56
56
|
},
|
|
57
57
|
};
|
|
58
58
|
|
|
59
|
-
const
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
59
|
+
export const Normal = {
|
|
60
|
+
render: (args) => ({
|
|
61
|
+
components: { AlertCaller, UnnnicAlert },
|
|
62
|
+
setup() {
|
|
63
|
+
return { args };
|
|
64
|
+
},
|
|
65
|
+
methods: {
|
|
66
|
+
unnnicCallAlert() {
|
|
67
|
+
alert.callAlert({ props: this.args, seconds: this.args.seconds });
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
template: `
|
|
71
|
+
<div>
|
|
72
|
+
<button @click="unnnicCallAlert">Click for alert</button>
|
|
65
73
|
|
|
66
|
-
<h3>Refactoring changes:</h3>
|
|
74
|
+
<h3>Refactoring changes:</h3>
|
|
67
75
|
|
|
68
|
-
<ul>
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
</ul>
|
|
76
|
+
<ul>
|
|
77
|
+
<li>Removed props: title, icon, hide-close-text, close-text, position</li>
|
|
78
|
+
<li>Added props: link-text, link-href, link-target (default: '_blank'), type (default, success, error)</li>
|
|
79
|
+
<li>Avoid using scheme prop, instead use the 'type' prop to change the color variant</li>
|
|
80
|
+
<li>Avoid using on-close prop to listen to close event, instead use the '@close' event</li>
|
|
81
|
+
</ul>
|
|
74
82
|
|
|
75
|
-
<pre>
|
|
76
|
-
Recommended use:
|
|
83
|
+
<pre>
|
|
84
|
+
Recommended use:
|
|
77
85
|
|
|
78
|
-
<unnnic-alert
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
/>
|
|
86
|
-
</pre>
|
|
87
|
-
</div>`,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
86
|
+
<unnnic-alert
|
|
87
|
+
type String default 'default' ('default', 'success', 'error')
|
|
88
|
+
text String required
|
|
89
|
+
@close Event
|
|
90
|
+
link-href String
|
|
91
|
+
┠ link-text String default 'Learn more'
|
|
92
|
+
┖ link-target String default '_blank'
|
|
93
|
+
/>
|
|
94
|
+
</pre>
|
|
95
|
+
</div>`,
|
|
96
|
+
}),
|
|
97
|
+
args: {
|
|
98
|
+
title: 'Title',
|
|
99
|
+
text: 'Text',
|
|
100
|
+
icon: 'check-circle-1-1',
|
|
101
|
+
scheme: 'feedback-green',
|
|
92
102
|
},
|
|
93
|
-
}
|
|
103
|
+
};
|
|
94
104
|
|
|
95
|
-
const
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
105
|
+
export const WithContainerRef = {
|
|
106
|
+
render: (args) => ({
|
|
107
|
+
components: { AlertCaller, UnnnicAlert },
|
|
108
|
+
setup() {
|
|
109
|
+
return { args };
|
|
110
|
+
},
|
|
111
|
+
methods: {
|
|
112
|
+
unnnicCallAlert() {
|
|
113
|
+
alert.callAlert({
|
|
114
|
+
props: this.args,
|
|
115
|
+
containerRef: this.$refs.divContainer,
|
|
116
|
+
});
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
template: `
|
|
120
|
+
<div ref="divContainer" style="height: 200px; position: relative; border: 1px solid black">
|
|
121
|
+
<button @click="unnnicCallAlert">Click for alert</button>
|
|
101
122
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
123
|
+
<pre>
|
|
124
|
+
To use, add position relative style to your container
|
|
125
|
+
and pass it as "containerRef" at callAlert function like:
|
|
105
126
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
127
|
+
alert.callAlert({
|
|
128
|
+
containerRef: this.$refs,
|
|
129
|
+
});
|
|
130
|
+
</pre>
|
|
131
|
+
</div>
|
|
132
|
+
`,
|
|
133
|
+
}),
|
|
134
|
+
args: {
|
|
135
|
+
title: 'Title',
|
|
136
|
+
text: 'Text',
|
|
137
|
+
icon: 'check-circle-1-1',
|
|
138
|
+
scheme: 'feedback-green',
|
|
118
139
|
},
|
|
119
|
-
}
|
|
140
|
+
};
|
|
120
141
|
|
|
121
|
-
const
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
142
|
+
export const Banner = {
|
|
143
|
+
render: (args) => ({
|
|
144
|
+
components: { AlertBanner },
|
|
145
|
+
setup() {
|
|
146
|
+
return { args };
|
|
147
|
+
},
|
|
148
|
+
methods: {
|
|
149
|
+
unnnicCallAlert() {
|
|
150
|
+
alert.callAlert({
|
|
151
|
+
props: this.args,
|
|
152
|
+
containerRef: this.$refs.divContainer,
|
|
153
|
+
});
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
template: `
|
|
125
157
|
<div>
|
|
126
|
-
<alert-banner v-bind="
|
|
158
|
+
<alert-banner v-bind="args" />
|
|
127
159
|
|
|
128
160
|
<pre>
|
|
129
161
|
Recommended use:
|
|
@@ -139,26 +171,9 @@ const TemplateBanner = (args, { argTypes }) => ({
|
|
|
139
171
|
/>
|
|
140
172
|
</pre>
|
|
141
173
|
</div>`,
|
|
142
|
-
})
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
text: 'Text',
|
|
148
|
-
icon: 'check-circle-1-1',
|
|
149
|
-
scheme: 'feedback-green',
|
|
150
|
-
};
|
|
151
|
-
|
|
152
|
-
export const WithContainerRef = TemplateWithContainerRef.bind({});
|
|
153
|
-
WithContainerRef.args = {
|
|
154
|
-
title: 'Title',
|
|
155
|
-
text: 'Text',
|
|
156
|
-
icon: 'check-circle-1-1',
|
|
157
|
-
scheme: 'feedback-green',
|
|
158
|
-
};
|
|
159
|
-
|
|
160
|
-
export const Banner = TemplateBanner.bind({});
|
|
161
|
-
Banner.args = {
|
|
162
|
-
text: 'Text',
|
|
163
|
-
showCloseButton: false,
|
|
174
|
+
}),
|
|
175
|
+
args: {
|
|
176
|
+
text: 'Text',
|
|
177
|
+
showCloseButton: false,
|
|
178
|
+
},
|
|
164
179
|
};
|
|
@@ -1,31 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import UnnnicBreadcrumb from '../components/Breadcrumb/Breadcrumb.vue';
|
|
2
|
+
import { action } from '@storybook/addon-actions';
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
title: 'Example/Breadcrumb',
|
|
5
|
-
component:
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
component: UnnnicBreadcrumb,
|
|
7
|
+
args: {
|
|
8
|
+
onCrumbClick: action('crumb-click'),
|
|
8
9
|
},
|
|
9
10
|
};
|
|
10
11
|
|
|
11
|
-
const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
export const Default = {
|
|
13
|
+
args: {
|
|
14
|
+
crumbs: [
|
|
15
|
+
{ name: 'One', path: '/One' },
|
|
16
|
+
{ name: 'Two', path: '/Two' },
|
|
17
|
+
{ name: 'Active', path: '/Active' },
|
|
18
|
+
],
|
|
16
19
|
},
|
|
17
|
-
|
|
18
|
-
template: `
|
|
19
|
-
<unnnic-breadcrumb v-bind="$props"></unnnic-breadcrumb>
|
|
20
|
-
`,
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
export const Default = Template.bind({});
|
|
24
|
-
|
|
25
|
-
Default.args = {
|
|
26
|
-
crumbs: [
|
|
27
|
-
{ name: 'One', path: '/One' },
|
|
28
|
-
{ name: 'Two', path: '/Two' },
|
|
29
|
-
{ name: 'Active', path: '/Active' },
|
|
30
|
-
],
|
|
31
20
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import UnnnicButtonIcon from '../components/Button/ButtonIcon.vue';
|
|
2
2
|
import icons from '../utils/icons';
|
|
3
3
|
|
|
4
4
|
const iconsOptions = Object.keys(icons);
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
title: 'Form/ButtonIcon',
|
|
8
|
-
component:
|
|
8
|
+
component: UnnnicButtonIcon,
|
|
9
9
|
argTypes: {
|
|
10
10
|
size: {
|
|
11
11
|
control: {
|
|
@@ -1,70 +1,64 @@
|
|
|
1
|
+
import { action } from '@storybook/addon-actions';
|
|
1
2
|
import CardCompany from '../components/Card/CardCompany.vue';
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
title: 'Card/CardCompany',
|
|
5
6
|
component: CardCompany,
|
|
6
7
|
argTypes: {
|
|
7
|
-
|
|
8
|
-
action: 'join',
|
|
9
|
-
},
|
|
8
|
+
onJoin: action('join'),
|
|
10
9
|
},
|
|
11
10
|
};
|
|
12
11
|
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
12
|
+
export const Normal = {
|
|
13
|
+
args: {
|
|
14
|
+
title: 'Weni',
|
|
15
|
+
tag: 'Gratuita',
|
|
16
|
+
description: 'Description',
|
|
17
|
+
joinLabel: 'Join',
|
|
18
|
+
options: [
|
|
19
|
+
{
|
|
20
|
+
icon: 'view-1-1',
|
|
21
|
+
title: 'View members',
|
|
22
|
+
click() {
|
|
23
|
+
console.log('view');
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
icon: 'delete-1-1',
|
|
28
|
+
title: 'Delete organization',
|
|
29
|
+
scheme: 'feedback-red',
|
|
30
|
+
click() {
|
|
31
|
+
console.log('delete');
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
members: [
|
|
36
|
+
{
|
|
37
|
+
name: 'Cristian',
|
|
38
|
+
photo:
|
|
39
|
+
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Cristian',
|
|
43
|
+
photo:
|
|
44
|
+
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
31
45
|
},
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
scheme: 'feedback-red',
|
|
37
|
-
click() {
|
|
38
|
-
console.log('delete');
|
|
46
|
+
{
|
|
47
|
+
name: 'Cristian',
|
|
48
|
+
photo:
|
|
49
|
+
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
39
50
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
'
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
{
|
|
54
|
-
name: 'Cristian',
|
|
55
|
-
photo:
|
|
56
|
-
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
name: 'Cristian',
|
|
60
|
-
photo:
|
|
61
|
-
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
name: 'Cristian',
|
|
65
|
-
photo:
|
|
66
|
-
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
67
|
-
},
|
|
68
|
-
],
|
|
69
|
-
membersDescription: '+24 members',
|
|
51
|
+
{
|
|
52
|
+
name: 'Cristian',
|
|
53
|
+
photo:
|
|
54
|
+
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Cristian',
|
|
58
|
+
photo:
|
|
59
|
+
'https://weni-sp-connect-staging.s3.amazonaws.com/media/user/avatars/av_ef64cdfa-26b9-4896-93ba-098c00724d88.jpg?AWSAccessKeyId=AKIATQ3M7WDGK6GLYL6V&Signature=ka1ANr0Z6MuiRHKkOFbz%2Fr6krA4%3D&Expires=1625729559',
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
membersDescription: '+24 members',
|
|
63
|
+
},
|
|
70
64
|
};
|
|
@@ -12,31 +12,13 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
return {};
|
|
15
|
+
export const Default = {
|
|
16
|
+
args: {
|
|
17
|
+
title: 'Title Card',
|
|
18
|
+
description:
|
|
19
|
+
'Description Description Description Description Description Description Description Description.',
|
|
20
|
+
score: '4.9',
|
|
21
|
+
info: '(3 comments)',
|
|
22
|
+
checked: true,
|
|
24
23
|
},
|
|
25
|
-
|
|
26
|
-
template: `
|
|
27
|
-
<div>
|
|
28
|
-
<unnnic-card-data v-bind="$props"/>
|
|
29
|
-
</div>
|
|
30
|
-
`,
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
export const Default = Template.bind({});
|
|
34
|
-
|
|
35
|
-
Default.args = {
|
|
36
|
-
title: 'Title Card',
|
|
37
|
-
description:
|
|
38
|
-
'Description Description Description Description Description Description Description Description.',
|
|
39
|
-
score: '4.9',
|
|
40
|
-
info: '(3 comments)',
|
|
41
|
-
checked: true,
|
|
42
24
|
};
|
|
@@ -5,55 +5,56 @@ export default {
|
|
|
5
5
|
title: 'card/CardImage',
|
|
6
6
|
component: UnnnicCardImage,
|
|
7
7
|
argTypes: {},
|
|
8
|
+
render: (args) => ({
|
|
9
|
+
components: {
|
|
10
|
+
UnnnicCardImage,
|
|
11
|
+
UnnnicDropdownItem,
|
|
12
|
+
},
|
|
13
|
+
setup() {
|
|
14
|
+
return { args };
|
|
15
|
+
},
|
|
16
|
+
data() {
|
|
17
|
+
return {
|
|
18
|
+
value: true,
|
|
19
|
+
};
|
|
20
|
+
},
|
|
21
|
+
template: `
|
|
22
|
+
<div>
|
|
23
|
+
<pre>v-model: {{ value }}</pre>
|
|
24
|
+
<unnnic-card-image v-bind="args" v-model="value">
|
|
25
|
+
<template #actions>
|
|
26
|
+
<unnnic-dropdown-item>
|
|
27
|
+
Option 1
|
|
28
|
+
</unnnic-dropdown-item>
|
|
29
|
+
|
|
30
|
+
<unnnic-dropdown-item>
|
|
31
|
+
Option 2
|
|
32
|
+
</unnnic-dropdown-item>
|
|
33
|
+
</template>
|
|
34
|
+
</unnnic-card-image>
|
|
35
|
+
</div>
|
|
36
|
+
`,
|
|
37
|
+
}),
|
|
8
38
|
};
|
|
9
39
|
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
40
|
+
export const Default = {
|
|
41
|
+
args: {
|
|
42
|
+
title: 'Title Card',
|
|
43
|
+
description: 'Last edit',
|
|
44
|
+
image: 'https://picsum.photos/300/150',
|
|
45
|
+
data: [
|
|
46
|
+
{
|
|
47
|
+
icon: 'graph-stats-1',
|
|
48
|
+
scheme: 'aux-purple',
|
|
49
|
+
name: 'Data',
|
|
50
|
+
value: '00',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
icon: 'graph-stats-1',
|
|
54
|
+
scheme: 'aux-purple',
|
|
55
|
+
name: 'Data',
|
|
56
|
+
value: '00',
|
|
57
|
+
},
|
|
58
|
+
],
|
|
22
59
|
},
|
|
23
|
-
|
|
24
|
-
template: `<div><pre>v-model: {{ v }}</pre>
|
|
25
|
-
<unnnic-card-image v-bind="$props" v-model="v">
|
|
26
|
-
<template slot="actions">
|
|
27
|
-
<unnnic-dropdown-item>
|
|
28
|
-
Option 1
|
|
29
|
-
</unnnic-dropdown-item>
|
|
30
|
-
|
|
31
|
-
<unnnic-dropdown-item>
|
|
32
|
-
Option 2
|
|
33
|
-
</unnnic-dropdown-item>
|
|
34
|
-
</template>
|
|
35
|
-
</unnnic-card-image>
|
|
36
|
-
</div>`,
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
export const Default = Template.bind({});
|
|
40
|
-
|
|
41
|
-
Default.args = {
|
|
42
|
-
title: 'Title Card',
|
|
43
|
-
description: 'Last edit',
|
|
44
|
-
image: 'https://picsum.photos/300/150',
|
|
45
|
-
data: [
|
|
46
|
-
{
|
|
47
|
-
icon: 'graph-stats-1',
|
|
48
|
-
scheme: 'aux-purple',
|
|
49
|
-
name: 'Data',
|
|
50
|
-
value: '00',
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
icon: 'graph-stats-1',
|
|
54
|
-
scheme: 'aux-purple',
|
|
55
|
-
name: 'Data',
|
|
56
|
-
value: '00',
|
|
57
|
-
},
|
|
58
|
-
],
|
|
59
60
|
};
|