@weni/unnnic-system 3.0.2 → 3.0.3
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/CHANGELOG.md +5 -0
- package/dist/components/ChatsHeader/ChatsHeader.vue.d.ts +55 -674
- package/dist/components/ChatsHeader/ChatsHeader.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -678
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{es-f4ad80bf.mjs → es-61329267.mjs} +1 -1
- package/dist/{index-e7db0051.mjs → index-0d853377.mjs} +4430 -4474
- package/dist/{pt-br-65da0e15.mjs → pt-br-1024c0d5.mjs} +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +21 -21
- package/package.json +2 -3
- package/src/components/ChatsHeader/ChatsHeader.vue +44 -64
- package/src/components/index.ts +87 -87
- package/src/stories/ChatsHeader.stories.js +21 -0
- package/src/types/index.d.ts +3 -3
- package/src/types/unnnic-utils.d.ts +88 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weni/unnnic-system",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
"@vitest/ui": "^1.6.0",
|
|
83
83
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
84
84
|
"@vue/test-utils": "^2.4.6",
|
|
85
|
-
|
|
86
85
|
"eslint": "^8.0.0",
|
|
87
86
|
"eslint-config-prettier": "^9.1.0",
|
|
88
87
|
"eslint-plugin-prettier": "^5.1.3",
|
|
@@ -100,4 +99,4 @@
|
|
|
100
99
|
"vue-eslint-parser": "^9.4.2",
|
|
101
100
|
"vue-tsc": "^3.0.5"
|
|
102
101
|
}
|
|
103
|
-
}
|
|
102
|
+
}
|
|
@@ -68,8 +68,9 @@
|
|
|
68
68
|
<slot />
|
|
69
69
|
</div>
|
|
70
70
|
</main>
|
|
71
|
+
<slot v-if="slots['right']" name="right" />
|
|
71
72
|
<UnnnicButton
|
|
72
|
-
v-if="close"
|
|
73
|
+
v-else-if="close"
|
|
73
74
|
class="unnnic-chats-header__close--sm"
|
|
74
75
|
type="tertiary"
|
|
75
76
|
iconCenter="close-1"
|
|
@@ -79,80 +80,59 @@
|
|
|
79
80
|
</header>
|
|
80
81
|
</div>
|
|
81
82
|
</template>
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
|
|
84
|
+
<script lang="ts" setup>
|
|
85
|
+
import { useSlots } from 'vue';
|
|
86
|
+
import type { UnnnicColorToken } from '../../types/unnnic-utils';
|
|
84
87
|
|
|
85
88
|
import UnnnicButton from '../Button/Button.vue';
|
|
86
89
|
import UnnnicAvatarIcon from '../AvatarIcon/AvatarIcon.vue';
|
|
87
90
|
import UnnnicChatsUserAvatar from '../ChatsUserAvatar/ChatsUserAvatar.vue';
|
|
88
91
|
import UnnnicBreadcrumb from '../Breadcrumb/Breadcrumb.vue';
|
|
89
92
|
|
|
90
|
-
|
|
93
|
+
defineOptions({
|
|
91
94
|
name: 'UnnnicChatsHeader',
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
interface Props {
|
|
98
|
+
title?: string;
|
|
99
|
+
subtitle?: string;
|
|
100
|
+
sectionIconScheme?: UnnnicColorToken;
|
|
101
|
+
avatarIcon?: string;
|
|
102
|
+
avatarName?: string;
|
|
103
|
+
back?: () => void;
|
|
104
|
+
close?: () => void;
|
|
105
|
+
avatarClick?: () => void;
|
|
106
|
+
titleClick?: () => void;
|
|
107
|
+
crumbs?: Array<{ name: string; path: string }>;
|
|
108
|
+
size?: 'auto' | 'small' | 'large';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
withDefaults(defineProps<Props>(), {
|
|
112
|
+
title: '',
|
|
113
|
+
subtitle: '',
|
|
114
|
+
sectionIconScheme: 'aux-purple',
|
|
115
|
+
avatarIcon: '',
|
|
116
|
+
avatarName: '',
|
|
117
|
+
back: undefined,
|
|
118
|
+
close: undefined,
|
|
119
|
+
avatarClick: undefined,
|
|
120
|
+
titleClick: undefined,
|
|
121
|
+
crumbs: () => [],
|
|
122
|
+
size: 'auto',
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
const slots = useSlots();
|
|
126
|
+
|
|
127
|
+
defineEmits<{
|
|
128
|
+
crumbClick: [crumb: { name: string; path: string }];
|
|
129
|
+
}>();
|
|
92
130
|
|
|
93
|
-
components: {
|
|
94
|
-
UnnnicButton,
|
|
95
|
-
UnnnicAvatarIcon,
|
|
96
|
-
UnnnicChatsUserAvatar,
|
|
97
|
-
UnnnicBreadcrumb,
|
|
98
|
-
},
|
|
99
|
-
|
|
100
|
-
mixins: [UnnnicI18n],
|
|
101
|
-
|
|
102
|
-
props: {
|
|
103
|
-
title: {
|
|
104
|
-
type: String,
|
|
105
|
-
required: true,
|
|
106
|
-
default: '',
|
|
107
|
-
},
|
|
108
|
-
subtitle: {
|
|
109
|
-
type: String,
|
|
110
|
-
default: '',
|
|
111
|
-
},
|
|
112
|
-
sectionIconScheme: {
|
|
113
|
-
type: String,
|
|
114
|
-
default: 'aux-purple',
|
|
115
|
-
},
|
|
116
|
-
avatarIcon: {
|
|
117
|
-
type: String,
|
|
118
|
-
default: '',
|
|
119
|
-
},
|
|
120
|
-
avatarName: {
|
|
121
|
-
type: String,
|
|
122
|
-
default: '',
|
|
123
|
-
},
|
|
124
|
-
back: {
|
|
125
|
-
type: Function,
|
|
126
|
-
required: false,
|
|
127
|
-
},
|
|
128
|
-
close: {
|
|
129
|
-
type: Function,
|
|
130
|
-
required: false,
|
|
131
|
-
},
|
|
132
|
-
avatarClick: {
|
|
133
|
-
type: Function,
|
|
134
|
-
required: false,
|
|
135
|
-
},
|
|
136
|
-
titleClick: {
|
|
137
|
-
type: Function,
|
|
138
|
-
required: false,
|
|
139
|
-
},
|
|
140
|
-
crumbs: {
|
|
141
|
-
type: Array,
|
|
142
|
-
default: () => [],
|
|
143
|
-
},
|
|
144
|
-
size: {
|
|
145
|
-
type: String,
|
|
146
|
-
default: 'auto',
|
|
147
|
-
validator(size) {
|
|
148
|
-
return ['auto', 'small', 'large'].includes(size);
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
},
|
|
152
|
-
};
|
|
153
131
|
</script>
|
|
132
|
+
|
|
154
133
|
<style lang="scss">
|
|
155
134
|
@use '@/assets/scss/unnnic' as *;
|
|
135
|
+
|
|
156
136
|
.unnnic-chats-header {
|
|
157
137
|
padding: $unnnic-spacing-sm;
|
|
158
138
|
|
package/src/components/index.ts
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
import type { Component } from
|
|
2
|
-
import { unnnicFontSize as fontSize } from
|
|
3
|
-
import formElement from
|
|
4
|
-
import input from
|
|
5
|
-
import inputNext from
|
|
6
|
-
import inputDatePicker from
|
|
7
|
-
import button from
|
|
8
|
-
import buttonIcon from
|
|
9
|
-
import sidebar from
|
|
10
|
-
import sidebarItem from
|
|
11
|
-
import table from
|
|
12
|
-
import tableRow from
|
|
13
|
-
import dropdown from
|
|
14
|
-
import dropdownItem from
|
|
15
|
-
import avatarIcon from
|
|
16
|
-
import icon from
|
|
17
|
-
import iconLoading from
|
|
18
|
-
import toolTip from
|
|
19
|
-
import card from
|
|
20
|
-
import cardSimple from
|
|
21
|
-
import cardCompany from
|
|
22
|
-
import cardData from
|
|
23
|
-
import cardImage from
|
|
1
|
+
import type { Component } from "vue";
|
|
2
|
+
import { unnnicFontSize as fontSize } from "./config";
|
|
3
|
+
import formElement from "./FormElement/FormElement.vue";
|
|
4
|
+
import input from "./Input/Input.vue";
|
|
5
|
+
import inputNext from "./InputNext/InputNext.vue";
|
|
6
|
+
import inputDatePicker from "./InputDatePicker/InputDatePicker.vue";
|
|
7
|
+
import button from "./Button/Button.vue";
|
|
8
|
+
import buttonIcon from "./Button/ButtonIcon.vue";
|
|
9
|
+
import sidebar from "./Sidebar/index.vue";
|
|
10
|
+
import sidebarItem from "./Sidebar/SidebarItem.vue";
|
|
11
|
+
import table from "./Table/Table.vue";
|
|
12
|
+
import tableRow from "./Table/TableRow.vue";
|
|
13
|
+
import dropdown from "./Dropdown/Dropdown.vue";
|
|
14
|
+
import dropdownItem from "./Dropdown/DropdownItem.vue";
|
|
15
|
+
import avatarIcon from "./AvatarIcon/AvatarIcon.vue";
|
|
16
|
+
import icon from "./Icon.vue";
|
|
17
|
+
import iconLoading from "./IconLoading/IconLoading.vue";
|
|
18
|
+
import toolTip from "./ToolTip/ToolTip.vue";
|
|
19
|
+
import card from "./Card/Card.vue";
|
|
20
|
+
import cardSimple from "./Card/SimpleCard.vue";
|
|
21
|
+
import cardCompany from "./Card/CardCompany.vue";
|
|
22
|
+
import cardData from "./Card/CardData.vue";
|
|
23
|
+
import cardImage from "./CardImage/CardImage.vue";
|
|
24
24
|
// import cardFlow from './CardFlow/CardFlow.vue';
|
|
25
|
-
import cardProject from
|
|
26
|
-
import cardInformation from
|
|
27
|
-
import checkbox from
|
|
28
|
-
import collapse from
|
|
29
|
-
import radio from
|
|
30
|
-
import languageSelect from
|
|
31
|
-
import modal from
|
|
32
|
-
import modalUpload from
|
|
33
|
-
import { callAlert, callModal } from
|
|
34
|
-
import selectSmart from
|
|
25
|
+
import cardProject from "./CardProject/CardProject.vue";
|
|
26
|
+
import cardInformation from "./CardInformation/CardInformation.vue";
|
|
27
|
+
import checkbox from "./Checkbox/Checkbox.vue";
|
|
28
|
+
import collapse from "./Collapse/Collapse.vue";
|
|
29
|
+
import radio from "./Radio/Radio.vue";
|
|
30
|
+
import languageSelect from "./Dropdown/LanguageSelect.vue";
|
|
31
|
+
import modal from "./Modal/Modal.vue";
|
|
32
|
+
import modalUpload from "./ModalUpload/ModalUpload.vue";
|
|
33
|
+
import { callAlert, callModal } from "../utils/call";
|
|
34
|
+
import selectSmart from "./SelectSmart/SelectSmart.vue";
|
|
35
35
|
// import select from './Select/Select.vue';
|
|
36
|
-
import selectItem from
|
|
36
|
+
import selectItem from "./Select/SelectItem.vue";
|
|
37
37
|
// import selectListItem from './SelectListItem/SelectListItem.vue';
|
|
38
|
-
import multiSelect from
|
|
39
|
-
import alert from
|
|
38
|
+
import multiSelect from "./MultiSelect/MultiSelect.vue";
|
|
39
|
+
import alert from "./Alert/Alert.vue";
|
|
40
40
|
// import autocomplete from './Input/Autocomplete.vue';
|
|
41
41
|
// import autocompleteSelect from './AutocompleteSelect/AutocompleteSelect.vue';
|
|
42
|
-
import tag from
|
|
43
|
-
import accordion from
|
|
44
|
-
import indicator from
|
|
45
|
-
import skeletonLoading from
|
|
46
|
-
import carousel from
|
|
47
|
-
import label from
|
|
48
|
-
import tab from
|
|
49
|
-
import tabsExpanded from
|
|
50
|
-
import banner from
|
|
51
|
-
import comment from
|
|
52
|
-
import datePicker from
|
|
53
|
-
import breadcrumb from
|
|
54
|
-
import Switch from
|
|
55
|
-
import Slider from
|
|
56
|
-
import DataArea from
|
|
57
|
-
import Pagination from
|
|
58
|
-
import DropArea from
|
|
59
|
-
import UploadArea from
|
|
60
|
-
import ImportCard from
|
|
61
|
-
import DateFilter from
|
|
62
|
-
import ChatText from
|
|
63
|
-
import TextArea from
|
|
64
|
-
import CardNumber from
|
|
65
|
-
import chartRainbow from
|
|
66
|
-
import chartBar from
|
|
67
|
-
import chartLine from
|
|
68
|
-
import moodRating from
|
|
69
|
-
import starRating from
|
|
70
|
-
import audioRecorder from
|
|
71
|
-
import circleProgressBar from
|
|
72
|
-
import progressBar from
|
|
73
|
-
import ChatsContact from
|
|
74
|
-
import ChatsDashboardTagLive from
|
|
75
|
-
import ChatsHeader from
|
|
76
|
-
import ChatsMessage from
|
|
77
|
-
import ReplyMessage from
|
|
78
|
-
import ChatsNavbar from
|
|
79
|
-
import ChatsUserAvatar from
|
|
80
|
-
import ChartMultiLine from
|
|
81
|
-
import EmojiPicker from
|
|
82
|
-
import ChartFunnel from
|
|
83
|
-
import Disclaimer from
|
|
84
|
-
import Drawer from
|
|
85
|
-
import TableNext from
|
|
86
|
-
import ModalNext from
|
|
87
|
-
import ModalDialog from
|
|
88
|
-
import Tour from
|
|
89
|
-
import Navigator from
|
|
90
|
-
import SelectTime from
|
|
42
|
+
import tag from "./Tag/Tag.vue";
|
|
43
|
+
import accordion from "./Accordion/Accordion.vue";
|
|
44
|
+
import indicator from "./Indicator/Indicator.vue";
|
|
45
|
+
import skeletonLoading from "./SkeletonLoading/SkeletonLoading.vue"; // TODO: Unbreak this component
|
|
46
|
+
import carousel from "./Carousel/Carousel.vue";
|
|
47
|
+
import label from "./Label/Label.vue";
|
|
48
|
+
import tab from "./Tab/Tab.vue";
|
|
49
|
+
import tabsExpanded from "./TabsExpanded/TabsExpanded.vue";
|
|
50
|
+
import banner from "./Banner/Banner.vue";
|
|
51
|
+
import comment from "./Comment/Comment.vue";
|
|
52
|
+
import datePicker from "./DatePicker/DatePicker.vue";
|
|
53
|
+
import breadcrumb from "./Breadcrumb/Breadcrumb.vue";
|
|
54
|
+
import Switch from "./Switch/Switch.vue";
|
|
55
|
+
import Slider from "./Slider/Slider.vue";
|
|
56
|
+
import DataArea from "./DataArea/DataArea.vue";
|
|
57
|
+
import Pagination from "./Pagination/Pagination.vue";
|
|
58
|
+
import DropArea from "./DropArea/DropArea.vue";
|
|
59
|
+
import UploadArea from "./UploadArea/UploadArea.vue";
|
|
60
|
+
import ImportCard from "./ImportCard/ImportCard.vue";
|
|
61
|
+
import DateFilter from "./DateFilter/DateFilter.vue";
|
|
62
|
+
import ChatText from "./ChatText/ChatText.vue";
|
|
63
|
+
import TextArea from "./TextArea/TextArea.vue";
|
|
64
|
+
import CardNumber from "./CardNumber/CardNumber.vue";
|
|
65
|
+
import chartRainbow from "./ChartRainbow/ChartRainbow.vue";
|
|
66
|
+
import chartBar from "./ChartBar/ChartBar.vue";
|
|
67
|
+
import chartLine from "./ChartLine/ChartLine.vue";
|
|
68
|
+
import moodRating from "./MoodRating/MoodRating.vue";
|
|
69
|
+
import starRating from "./StarRating/StarRating.vue";
|
|
70
|
+
import audioRecorder from "./AudioRecorder/AudioRecorder.vue";
|
|
71
|
+
import circleProgressBar from "./CircleProgressBar/CircleProgressBar.vue";
|
|
72
|
+
import progressBar from "./ProgressBar/ProgressBar.vue";
|
|
73
|
+
import ChatsContact from "./ChatsContact/ChatsContact.vue";
|
|
74
|
+
import ChatsDashboardTagLive from "./ChatsDashboardTagLive/ChatsDashboardTagLive.vue";
|
|
75
|
+
import ChatsHeader from "./ChatsHeader/ChatsHeader.vue";
|
|
76
|
+
import ChatsMessage from "./ChatsMessage/ChatsMessage.vue";
|
|
77
|
+
import ReplyMessage from "./ChatsMessage/ReplyMessage.vue";
|
|
78
|
+
import ChatsNavbar from "./ChatsNavbar/ChatsNavbar.vue";
|
|
79
|
+
import ChatsUserAvatar from "./ChatsUserAvatar/ChatsUserAvatar.vue";
|
|
80
|
+
import ChartMultiLine from "./ChartMultiLine/ChartMultiLine.vue";
|
|
81
|
+
import EmojiPicker from "./EmojiPicker/EmojiPicker.vue";
|
|
82
|
+
import ChartFunnel from "./ChartFunnel/ChartFunnel.vue";
|
|
83
|
+
import Disclaimer from "./Disclaimer/Disclaimer.vue";
|
|
84
|
+
import Drawer from "./Drawer/Drawer.vue";
|
|
85
|
+
import TableNext from "./TableNext/TableNext.vue";
|
|
86
|
+
import ModalNext from "./ModalNext/ModalNext.vue";
|
|
87
|
+
import ModalDialog from "./ModalDialog/ModalDialog.vue";
|
|
88
|
+
import Tour from "./Tour/Tour.vue";
|
|
89
|
+
import Navigator from "./Navigator/index.vue";
|
|
90
|
+
import SelectTime from "./SelectTime/index.vue";
|
|
91
91
|
|
|
92
92
|
type VueComponent = Component;
|
|
93
93
|
|
|
@@ -265,7 +265,7 @@ export const unnnicCircleProgressBar = circleProgressBar;
|
|
|
265
265
|
export const unnnicProgressBar = progressBar;
|
|
266
266
|
export const unnnicChatsContact = ChatsContact;
|
|
267
267
|
export const unnnicChatsDashboardTagLive = ChatsDashboardTagLive;
|
|
268
|
-
export const unnnicChatsHeader = ChatsHeader;
|
|
268
|
+
export const unnnicChatsHeader = ChatsHeader as VueComponent;
|
|
269
269
|
export const unnnicChatsMessage = ChatsMessage;
|
|
270
270
|
export const unnnicReplyMessage = ReplyMessage;
|
|
271
271
|
export const unnnicChatsNavbar = ChatsNavbar;
|
|
@@ -278,4 +278,4 @@ export const unnnicDrawer = Drawer;
|
|
|
278
278
|
export const unnnicTableNext = TableNext;
|
|
279
279
|
export const unnnicTour = Tour;
|
|
280
280
|
export const unnnicNavigator = Navigator;
|
|
281
|
-
export const unnnicSelectTime = SelectTime as VueComponent;
|
|
281
|
+
export const unnnicSelectTime = SelectTime as VueComponent;
|
|
@@ -32,6 +32,27 @@ export const ContactInfos = {
|
|
|
32
32
|
},
|
|
33
33
|
};
|
|
34
34
|
|
|
35
|
+
export const ContactRightSlot = {
|
|
36
|
+
args: {
|
|
37
|
+
title: 'John Doe',
|
|
38
|
+
avatarName: 'John Doe',
|
|
39
|
+
},
|
|
40
|
+
render: (args) => ({
|
|
41
|
+
setup() {
|
|
42
|
+
return { args };
|
|
43
|
+
},
|
|
44
|
+
components: { UnnnicChatsHeader },
|
|
45
|
+
template: `
|
|
46
|
+
<UnnnicChatsHeader
|
|
47
|
+
v-bind="args"
|
|
48
|
+
>
|
|
49
|
+
<template #right>
|
|
50
|
+
right slot
|
|
51
|
+
</template>
|
|
52
|
+
</UnnnicChatsHeader>`,
|
|
53
|
+
}),
|
|
54
|
+
}
|
|
55
|
+
|
|
35
56
|
export const Dashboard = {
|
|
36
57
|
args: {
|
|
37
58
|
title: size === 'large' ? 'Lorem Ipsum Inc.' : 'Dashboard',
|
package/src/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { App, Component } from
|
|
1
|
+
import type { App, Component } from "vue";
|
|
2
2
|
|
|
3
|
-
export type { IconProps } from
|
|
3
|
+
export type { IconProps } from "../components/Icon.vue";
|
|
4
4
|
|
|
5
5
|
export interface UnnnicPlugin {
|
|
6
6
|
install(app: App): void;
|
|
@@ -48,4 +48,4 @@ export declare const unnnicCallModal: (props: any) => void;
|
|
|
48
48
|
export declare const unnnicFontSize: any;
|
|
49
49
|
|
|
50
50
|
declare const Unnnic: UnnnicPlugin;
|
|
51
|
-
export default Unnnic;
|
|
51
|
+
export default Unnnic;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export type UnnnicColorToken =
|
|
2
|
+
| "background-solo"
|
|
3
|
+
| "background-sky"
|
|
4
|
+
| "background-grass"
|
|
5
|
+
| "background-carpet"
|
|
6
|
+
| "background-snow"
|
|
7
|
+
| "background-lightest"
|
|
8
|
+
| "background-white"
|
|
9
|
+
| "neutral-black"
|
|
10
|
+
| "neutral-darkest"
|
|
11
|
+
| "neutral-dark"
|
|
12
|
+
| "neutral-cloudy"
|
|
13
|
+
| "neutral-cleanest"
|
|
14
|
+
| "neutral-clean"
|
|
15
|
+
| "neutral-soft"
|
|
16
|
+
| "neutral-lightest"
|
|
17
|
+
| "neutral-light"
|
|
18
|
+
| "neutral-white"
|
|
19
|
+
| "neutral-snow"
|
|
20
|
+
| "feedback-red"
|
|
21
|
+
| "feedback-green"
|
|
22
|
+
| "feedback-yellow"
|
|
23
|
+
| "feedback-blue"
|
|
24
|
+
| "feedback-grey"
|
|
25
|
+
| "aux-blue"
|
|
26
|
+
| "aux-purple"
|
|
27
|
+
| "aux-orange"
|
|
28
|
+
| "aux-lemon"
|
|
29
|
+
| "aux-pink"
|
|
30
|
+
| "aux-baby-blue"
|
|
31
|
+
| "aux-baby-yellow"
|
|
32
|
+
| "aux-baby-red"
|
|
33
|
+
| "aux-baby-green"
|
|
34
|
+
| "aux-baby-pink"
|
|
35
|
+
| "aux-green-100"
|
|
36
|
+
| "aux-green-300"
|
|
37
|
+
| "aux-green-500"
|
|
38
|
+
| "aux-green-700"
|
|
39
|
+
| "aux-green-900"
|
|
40
|
+
| "aux-blue-100"
|
|
41
|
+
| "aux-blue-300"
|
|
42
|
+
| "aux-blue-500"
|
|
43
|
+
| "aux-blue-700"
|
|
44
|
+
| "aux-blue-900"
|
|
45
|
+
| "aux-purple-100"
|
|
46
|
+
| "aux-purple-300"
|
|
47
|
+
| "aux-purple-500"
|
|
48
|
+
| "aux-purple-700"
|
|
49
|
+
| "aux-purple-900"
|
|
50
|
+
| "aux-red-100"
|
|
51
|
+
| "aux-red-300"
|
|
52
|
+
| "aux-red-500"
|
|
53
|
+
| "aux-red-700"
|
|
54
|
+
| "aux-red-900"
|
|
55
|
+
| "aux-orange-100"
|
|
56
|
+
| "aux-orange-300"
|
|
57
|
+
| "aux-orange-500"
|
|
58
|
+
| "aux-orange-700"
|
|
59
|
+
| "aux-orange-900"
|
|
60
|
+
| "aux-yellow-100"
|
|
61
|
+
| "aux-yellow-300"
|
|
62
|
+
| "aux-yellow-500"
|
|
63
|
+
| "aux-yellow-700"
|
|
64
|
+
| "aux-yellow-900"
|
|
65
|
+
| "floweditor-blue"
|
|
66
|
+
| "floweditor-purple"
|
|
67
|
+
| "floweditor-wine"
|
|
68
|
+
| "floweditor-orange"
|
|
69
|
+
| "floweditor-pink"
|
|
70
|
+
| "floweditor-turquoise"
|
|
71
|
+
| "floweditor-green"
|
|
72
|
+
| "weni-50"
|
|
73
|
+
| "weni-100"
|
|
74
|
+
| "weni-200"
|
|
75
|
+
| "weni-300"
|
|
76
|
+
| "weni-400"
|
|
77
|
+
| "weni-500"
|
|
78
|
+
| "weni-600"
|
|
79
|
+
| "weni-700"
|
|
80
|
+
| "weni-800"
|
|
81
|
+
| "weni-900"
|
|
82
|
+
| "weni-950"
|
|
83
|
+
| "brand-weni"
|
|
84
|
+
| "brand-weni-dark"
|
|
85
|
+
| "brand-weni-soft"
|
|
86
|
+
| "brand-sec-dark"
|
|
87
|
+
| "brand-sec-soft"
|
|
88
|
+
| "brand-sec";
|