@appcorp/app-corp-vista 0.3.13 → 0.3.15
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.
|
@@ -15,7 +15,7 @@ var VistaTableFooterV1 = function (_a) {
|
|
|
15
15
|
var selectClassName = dir === vista_dashboard_type_1.APP_DIR.LTR ? 'order-1' : 'order-3';
|
|
16
16
|
var previousClassName = dir === vista_dashboard_type_1.APP_DIR.LTR ? 'order-2' : 'order-2';
|
|
17
17
|
var nextClassName = dir === vista_dashboard_type_1.APP_DIR.LTR ? 'order-3' : 'order-1';
|
|
18
|
-
return (react_1.default.createElement("div", { className: "flex flex-row justify-between items-center
|
|
18
|
+
return (react_1.default.createElement("div", { className: "flex flex-row justify-between items-center pt-4" },
|
|
19
19
|
react_1.default.createElement("div", { className: "col-span-6 text-gray-900 dark:text-white" },
|
|
20
20
|
react_1.default.createElement("span", { className: "font-bold" },
|
|
21
21
|
pageLabel,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/app-corp-vista",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
|
|
6
6
|
"build:next": "next build",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@react-jvectormap/core": "^1.0.4",
|
|
44
44
|
"@react-jvectormap/world": "^1.1.2",
|
|
45
45
|
"@react-pakistan/react-icon-collection": "^3.5.0",
|
|
46
|
-
"@react-pakistan/util-functions": "^1.24.
|
|
46
|
+
"@react-pakistan/util-functions": "^1.24.50",
|
|
47
47
|
"@remixicon/react": "^4.6.0",
|
|
48
48
|
"@storybook/addon-links": "^9",
|
|
49
49
|
"@storybook/addon-onboarding": "^9",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { VistaChatV2Psychic, VistaChatV2User } from './vista-chat-type';
|
|
2
2
|
export interface VistaChatBubbleV1Props {
|
|
3
3
|
createdAt: string;
|
|
4
4
|
isLast: boolean;
|
|
5
5
|
isUser: boolean;
|
|
6
6
|
message: string;
|
|
7
|
-
messageStatus:
|
|
7
|
+
messageStatus: string;
|
|
8
8
|
psychic: VistaChatV2Psychic;
|
|
9
9
|
user: VistaChatV2User;
|
|
10
10
|
}
|