@weni/unnnic-system 3.0.1-alpha.3 → 3.0.2
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 +6 -0
- package/dist/components/ChatsHeader/ChatsHeader.vue.d.ts +674 -55
- package/dist/components/ChatsHeader/ChatsHeader.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +41020 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/{es-c1b80686.mjs → es-f4ad80bf.mjs} +1 -1
- package/dist/{index-873813b1.mjs → index-e7db0051.mjs} +6604 -6746
- package/dist/{pt-br-7a1991f6.mjs → pt-br-65da0e15.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +53 -54
- package/dist/unnnic.umd.js +33 -33
- package/package.json +2 -1
- package/src/assets/scss/colors.scss +11 -11
- package/src/components/ChatsHeader/ChatsHeader.vue +64 -44
- package/src/components/index.ts +1 -4
- package/src/stories/ChatsHeader.stories.js +0 -21
- package/src/types/index.d.ts +3 -3
- package/dist/components/DataTable/index.vue.d.ts +0 -156
- package/dist/components/DataTable/index.vue.d.ts.map +0 -1
- package/src/components/DataTable/index.vue +0 -493
- package/src/stories/DataTable.stories.js +0 -332
- package/src/types/unnnic-utils.d.ts +0 -88
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weni/unnnic-system",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -82,6 +82,7 @@
|
|
|
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
|
+
|
|
85
86
|
"eslint": "^8.0.0",
|
|
86
87
|
"eslint-config-prettier": "^9.1.0",
|
|
87
88
|
"eslint-plugin-prettier": "^5.1.3",
|
|
@@ -90,17 +90,17 @@ $unnnic-color-aux-purple-800: #5A36A1;
|
|
|
90
90
|
$unnnic-color-aux-purple-900: #4B2E84;
|
|
91
91
|
$unnnic-color-aux-purple-950: #2E1C59;
|
|
92
92
|
|
|
93
|
-
$unnnic-color-aux-red-50: #
|
|
94
|
-
$unnnic-color-aux-red-100: #
|
|
95
|
-
$unnnic-color-aux-red-200: #
|
|
96
|
-
$unnnic-color-aux-red-300: #
|
|
97
|
-
$unnnic-color-aux-red-400: #
|
|
98
|
-
$unnnic-color-aux-red-500: #
|
|
99
|
-
$unnnic-color-aux-red-600: #
|
|
100
|
-
$unnnic-color-aux-red-700: #
|
|
101
|
-
$unnnic-color-aux-red-800: #
|
|
102
|
-
$unnnic-color-aux-red-900: #
|
|
103
|
-
$unnnic-color-aux-red-950: #
|
|
93
|
+
$unnnic-color-aux-red-50: #FDF3F3;
|
|
94
|
+
$unnnic-color-aux-red-100: #FDE3E3;
|
|
95
|
+
$unnnic-color-aux-red-200: #FCCCCC;
|
|
96
|
+
$unnnic-color-aux-red-300: #F8A9A9;
|
|
97
|
+
$unnnic-color-aux-red-400: #F27777;
|
|
98
|
+
$unnnic-color-aux-red-500: #E53E3E;
|
|
99
|
+
$unnnic-color-aux-red-600: #D32F2F;
|
|
100
|
+
$unnnic-color-aux-red-700: #B22323;
|
|
101
|
+
$unnnic-color-aux-red-800: #932121;
|
|
102
|
+
$unnnic-color-aux-red-900: #7A2222;
|
|
103
|
+
$unnnic-color-aux-red-950: #420D0D;
|
|
104
104
|
|
|
105
105
|
$unnnic-color-aux-orange-50: #FDF8EF;
|
|
106
106
|
$unnnic-color-aux-orange-100: #FBEED9;
|
|
@@ -68,9 +68,8 @@
|
|
|
68
68
|
<slot />
|
|
69
69
|
</div>
|
|
70
70
|
</main>
|
|
71
|
-
<slot v-if="slots['right']" name="right" />
|
|
72
71
|
<UnnnicButton
|
|
73
|
-
v-
|
|
72
|
+
v-if="close"
|
|
74
73
|
class="unnnic-chats-header__close--sm"
|
|
75
74
|
type="tertiary"
|
|
76
75
|
iconCenter="close-1"
|
|
@@ -80,59 +79,80 @@
|
|
|
80
79
|
</header>
|
|
81
80
|
</div>
|
|
82
81
|
</template>
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
import { useSlots } from 'vue';
|
|
86
|
-
import type { UnnnicColorToken } from '../../types/unnnic-utils';
|
|
82
|
+
<script>
|
|
83
|
+
import UnnnicI18n from '../../mixins/i18n';
|
|
87
84
|
|
|
88
85
|
import UnnnicButton from '../Button/Button.vue';
|
|
89
86
|
import UnnnicAvatarIcon from '../AvatarIcon/AvatarIcon.vue';
|
|
90
87
|
import UnnnicChatsUserAvatar from '../ChatsUserAvatar/ChatsUserAvatar.vue';
|
|
91
88
|
import UnnnicBreadcrumb from '../Breadcrumb/Breadcrumb.vue';
|
|
92
89
|
|
|
93
|
-
|
|
90
|
+
export default {
|
|
94
91
|
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
|
-
}>();
|
|
130
92
|
|
|
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
|
+
};
|
|
131
153
|
</script>
|
|
132
|
-
|
|
133
154
|
<style lang="scss">
|
|
134
155
|
@use '@/assets/scss/unnnic' as *;
|
|
135
|
-
|
|
136
156
|
.unnnic-chats-header {
|
|
137
157
|
padding: $unnnic-spacing-sm;
|
|
138
158
|
|
package/src/components/index.ts
CHANGED
|
@@ -88,7 +88,6 @@ import ModalDialog from './ModalDialog/ModalDialog.vue';
|
|
|
88
88
|
import Tour from './Tour/Tour.vue';
|
|
89
89
|
import Navigator from './Navigator/index.vue';
|
|
90
90
|
import SelectTime from './SelectTime/index.vue';
|
|
91
|
-
import DataTable from './DataTable/index.vue';
|
|
92
91
|
|
|
93
92
|
type VueComponent = Component;
|
|
94
93
|
|
|
@@ -187,7 +186,6 @@ export const components: ComponentsMap = {
|
|
|
187
186
|
unnnicTour: Tour,
|
|
188
187
|
unnnicNavigator: Navigator,
|
|
189
188
|
unnnicSelectTime: SelectTime,
|
|
190
|
-
unnnicDataTable: DataTable,
|
|
191
189
|
};
|
|
192
190
|
|
|
193
191
|
export const unnnicFontSize = fontSize;
|
|
@@ -280,5 +278,4 @@ export const unnnicDrawer = Drawer;
|
|
|
280
278
|
export const unnnicTableNext = TableNext;
|
|
281
279
|
export const unnnicTour = Tour;
|
|
282
280
|
export const unnnicNavigator = Navigator;
|
|
283
|
-
export const
|
|
284
|
-
export const unnnicSelectTime = SelectTime as VueComponent;
|
|
281
|
+
export const unnnicSelectTime = SelectTime as VueComponent;
|
|
@@ -32,27 +32,6 @@ 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
|
-
|
|
56
35
|
export const Dashboard = {
|
|
57
36
|
args: {
|
|
58
37
|
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;
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
|
-
headers: {
|
|
3
|
-
type: {
|
|
4
|
-
title: string;
|
|
5
|
-
isSortable?: boolean;
|
|
6
|
-
itemKey: string;
|
|
7
|
-
align?: "start" | "center" | "end";
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}[];
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
items: {
|
|
13
|
-
type: {
|
|
14
|
-
[key: string]: any;
|
|
15
|
-
}[];
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
isLoading: {
|
|
19
|
-
type: Boolean;
|
|
20
|
-
default: false;
|
|
21
|
-
};
|
|
22
|
-
size: {
|
|
23
|
-
type: "sm" | "md";
|
|
24
|
-
default: "md";
|
|
25
|
-
};
|
|
26
|
-
height: {
|
|
27
|
-
type: String;
|
|
28
|
-
default: "";
|
|
29
|
-
};
|
|
30
|
-
maxHeight: {
|
|
31
|
-
type: String;
|
|
32
|
-
default: "";
|
|
33
|
-
};
|
|
34
|
-
clickable: {
|
|
35
|
-
type: Boolean;
|
|
36
|
-
default: false;
|
|
37
|
-
};
|
|
38
|
-
fixedHeaders: {
|
|
39
|
-
type: Boolean;
|
|
40
|
-
default: false;
|
|
41
|
-
};
|
|
42
|
-
hideHeaders: {
|
|
43
|
-
type: Boolean;
|
|
44
|
-
default: false;
|
|
45
|
-
};
|
|
46
|
-
hidePagination: {
|
|
47
|
-
type: Boolean;
|
|
48
|
-
default: false;
|
|
49
|
-
};
|
|
50
|
-
page: {
|
|
51
|
-
type: Number;
|
|
52
|
-
default: 1;
|
|
53
|
-
};
|
|
54
|
-
pageTotal: {
|
|
55
|
-
type: Number;
|
|
56
|
-
default: 0;
|
|
57
|
-
};
|
|
58
|
-
pageInterval: {
|
|
59
|
-
type: Number;
|
|
60
|
-
default: 5;
|
|
61
|
-
};
|
|
62
|
-
locale: {
|
|
63
|
-
type: string;
|
|
64
|
-
default: "en";
|
|
65
|
-
};
|
|
66
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
67
|
-
"update:sort": (sort: {
|
|
68
|
-
header: string;
|
|
69
|
-
order: string;
|
|
70
|
-
}) => any;
|
|
71
|
-
itemClick: (item: {
|
|
72
|
-
[key: string]: any;
|
|
73
|
-
}) => any;
|
|
74
|
-
"update:page": (page: number) => any;
|
|
75
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
76
|
-
headers: {
|
|
77
|
-
type: {
|
|
78
|
-
title: string;
|
|
79
|
-
isSortable?: boolean;
|
|
80
|
-
itemKey: string;
|
|
81
|
-
align?: "start" | "center" | "end";
|
|
82
|
-
size?: number | string;
|
|
83
|
-
}[];
|
|
84
|
-
required: true;
|
|
85
|
-
};
|
|
86
|
-
items: {
|
|
87
|
-
type: {
|
|
88
|
-
[key: string]: any;
|
|
89
|
-
}[];
|
|
90
|
-
required: true;
|
|
91
|
-
};
|
|
92
|
-
isLoading: {
|
|
93
|
-
type: Boolean;
|
|
94
|
-
default: false;
|
|
95
|
-
};
|
|
96
|
-
size: {
|
|
97
|
-
type: "sm" | "md";
|
|
98
|
-
default: "md";
|
|
99
|
-
};
|
|
100
|
-
height: {
|
|
101
|
-
type: String;
|
|
102
|
-
default: "";
|
|
103
|
-
};
|
|
104
|
-
maxHeight: {
|
|
105
|
-
type: String;
|
|
106
|
-
default: "";
|
|
107
|
-
};
|
|
108
|
-
clickable: {
|
|
109
|
-
type: Boolean;
|
|
110
|
-
default: false;
|
|
111
|
-
};
|
|
112
|
-
fixedHeaders: {
|
|
113
|
-
type: Boolean;
|
|
114
|
-
default: false;
|
|
115
|
-
};
|
|
116
|
-
hideHeaders: {
|
|
117
|
-
type: Boolean;
|
|
118
|
-
default: false;
|
|
119
|
-
};
|
|
120
|
-
hidePagination: {
|
|
121
|
-
type: Boolean;
|
|
122
|
-
default: false;
|
|
123
|
-
};
|
|
124
|
-
page: {
|
|
125
|
-
type: Number;
|
|
126
|
-
default: 1;
|
|
127
|
-
};
|
|
128
|
-
pageTotal: {
|
|
129
|
-
type: Number;
|
|
130
|
-
default: 0;
|
|
131
|
-
};
|
|
132
|
-
pageInterval: {
|
|
133
|
-
type: Number;
|
|
134
|
-
default: 5;
|
|
135
|
-
};
|
|
136
|
-
locale: {
|
|
137
|
-
type: string;
|
|
138
|
-
default: "en";
|
|
139
|
-
};
|
|
140
|
-
}> & Readonly<{
|
|
141
|
-
"onUpdate:sort"?: ((sort: {
|
|
142
|
-
header: string;
|
|
143
|
-
order: string;
|
|
144
|
-
}) => any) | undefined;
|
|
145
|
-
onItemClick?: ((item: {
|
|
146
|
-
[key: string]: any;
|
|
147
|
-
}) => any) | undefined;
|
|
148
|
-
"onUpdate:page"?: ((page: number) => any) | undefined;
|
|
149
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, any>;
|
|
150
|
-
export default _default;
|
|
151
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
152
|
-
new (): {
|
|
153
|
-
$slots: S;
|
|
154
|
-
};
|
|
155
|
-
};
|
|
156
|
-
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/index.vue"],"names":[],"mappings":"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"}
|