sccoreui 2.3.2 → 2.3.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/dist/App.js +3 -2
- package/dist/App.scss +1 -0
- package/dist/assets/flex.css +3 -0
- package/dist/assets/images/Payment-method-apple-card.png +0 -0
- package/dist/assets/images/Payment-method-card-white.png +0 -0
- package/dist/assets/images/Payment-method-master-card.png +0 -0
- package/dist/assets/images/avatar.png +0 -0
- package/dist/assets/images/avatar1.png +0 -0
- package/dist/assets/images/avatar2.png +0 -0
- package/dist/assets/images/avatar3.png +0 -0
- package/dist/assets/images/avatar4.png +0 -0
- package/dist/assets/images/avatar5.png +0 -0
- package/dist/assets/images/avatar6.png +0 -0
- package/dist/assets/images/avatar7.png +0 -0
- package/dist/assets/images/avatar8.png +0 -0
- package/dist/assets/images/avatar9.png +0 -0
- package/dist/assets/images/company.png +0 -0
- package/dist/assets/images/company1.png +0 -0
- package/dist/assets/images/company2.png +0 -0
- package/dist/assets/images/company3.png +0 -0
- package/dist/assets/images/company4.png +0 -0
- package/dist/assets/images/company5.png +0 -0
- package/dist/assets/images/company6.png +0 -0
- package/dist/assets/sccoreui.css +420 -56
- package/dist/assets/theme.css +53 -2
- package/dist/directives/svg-icons.js +121 -2
- package/dist/pages/avatar/avatar.js +8 -8
- package/dist/pages/badges/badge.js +17 -5
- package/dist/pages/checkbox-group/checkbox-group-component.js +2 -24
- package/dist/pages/content-dividers/content-dividers.js +11 -0
- package/dist/pages/date-picker/date-picker.js +12 -0
- package/dist/pages/file-upload/file-upload.js +33 -0
- package/dist/pages/home.js +7 -1
- package/dist/pages/input/input-text.js +5 -5
- package/dist/pages/loader-indicator/loader-indicator.js +8 -0
- package/dist/pages/paginator/pagination.js +0 -1
- package/dist/pages/progress-bar/progress-bar.js +4 -1
- package/dist/pages/progress-steps/progress-steps.js +74 -36
- package/dist/pages/progress_bar_round/circle-progress-bar.js +7 -0
- package/dist/pages/progress_bar_round/half-circle-progres-bar.js +7 -0
- package/dist/pages/slideout-menus/slideout-menus.js +52 -0
- package/dist/pages/tabels/table-data.js +2193 -0
- package/dist/pages/tabels/table.js +98 -0
- package/dist/pages/tabs/tabs.js +1 -1
- package/dist/pages/tags/tags.js +4 -4
- package/dist/types/pages/content-dividers/content-dividers.d.ts +2 -0
- package/dist/types/pages/date-picker/date-picker.d.ts +2 -0
- package/dist/types/pages/file-upload/file-upload.d.ts +3 -0
- package/dist/types/pages/loader-indicator/loader-indicator.d.ts +3 -0
- package/dist/types/pages/progress-steps/progress-steps.d.ts +3 -0
- package/dist/types/pages/progress_bar_round/circle-progress-bar.d.ts +11 -0
- package/dist/types/pages/progress_bar_round/half-circle-progres-bar.d.ts +11 -0
- package/dist/types/pages/slideout-menus/slideout-menus.d.ts +2 -0
- package/dist/types/pages/tabels/table-data.d.ts +28 -0
- package/dist/types/pages/tabels/table.d.ts +2 -0
- package/dist/types/pages/types/type.d.ts +18 -0
- package/package.json +1 -1
- package/dist/assets/images/avatar-for-av-component.png +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const datatable_1 = require("primereact/datatable");
|
|
6
|
+
const column_1 = require("primereact/column");
|
|
7
|
+
const utils_1 = require("primereact/utils");
|
|
8
|
+
const ripple_1 = require("primereact/ripple");
|
|
9
|
+
const button_1 = require("primereact/button");
|
|
10
|
+
const svg_component_1 = tslib_1.__importDefault(require("../../directives/svg-component"));
|
|
11
|
+
const table_data_1 = require("./table-data");
|
|
12
|
+
const checkbox_1 = require("primereact/checkbox");
|
|
13
|
+
const avatargroup_1 = require("primereact/avatargroup");
|
|
14
|
+
const avatar_1 = require("primereact/avatar");
|
|
15
|
+
const progressbar_1 = require("primereact/progressbar");
|
|
16
|
+
const TableComponent = () => {
|
|
17
|
+
const statusTemplate1 = (rowData) => {
|
|
18
|
+
return ((0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "bg-green-50 border-round-2xl flex align-items-center gap-1 px-2 text-green-700 w-4rem text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-600 p-1" }), " ", rowData.status] })));
|
|
19
|
+
};
|
|
20
|
+
const statusTemplate2 = (rowData) => {
|
|
21
|
+
return ((0, jsx_runtime_1.jsx)("span", Object.assign({ className: `bg-transparent border-round-2xl px-2 border-1 ${rowData.status === "Customer"
|
|
22
|
+
? "border-green-600 text-green-700"
|
|
23
|
+
: "border-gray-600 text-gray-700"}` }, { children: rowData.status })));
|
|
24
|
+
};
|
|
25
|
+
const emptyStateTemplate1 = () => {
|
|
26
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column justify-content-center align-items-center h-20rem gap-2" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "warning-icon" }), (0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex flex-column align-items-center gap-1" }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ className: "font-semibold text-gray-900 line-height-3 text-lg text-center m-0" }, { children: "Something went wrong..." })), (0, jsx_runtime_1.jsxs)("p", Object.assign({ className: "text-gray-600 text-base line-height-2 font-normal text-center m-0" }, { children: ["We had some trouble loading this page. Please refresh ", (0, jsx_runtime_1.jsx)("br", {}), " the page to try again or get in touch if the problem sticks ", (0, jsx_runtime_1.jsx)("br", {}), "around!"] }))] })), (0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex align-items-center gap-3 mt-4" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { outlined: true, label: "Contact support" }), (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Refresh Page" })] }))] })));
|
|
27
|
+
};
|
|
28
|
+
const nameHeaderTemplate = () => {
|
|
29
|
+
return ((0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "text-sm text-gray-600 flex align-items-center gap-2" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: false, icon: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "check-selected" }) }), "Name"] })));
|
|
30
|
+
};
|
|
31
|
+
const nameBodyTemplate = (rowData) => {
|
|
32
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: false }), (0, jsx_runtime_1.jsx)("img", { src: rowData.image, className: "border-circle w-3rem h-3rem p-avatar-focus" }), (0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex flex-column align-items-start" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "line-height-2" }, { children: rowData.name })), (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "line-height-2" }, { children: ["@", rowData.name.split(" ")[0]] }))] }))] })));
|
|
33
|
+
};
|
|
34
|
+
const roleHeaderTemplate = () => {
|
|
35
|
+
return ((0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-1" }, { children: ["Role ", (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "help-circle" })] })));
|
|
36
|
+
};
|
|
37
|
+
const teamsBodyTemplate = (rowData) => {
|
|
38
|
+
const { teams } = rowData;
|
|
39
|
+
return ((0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex gap-1" }, { children: [teams.slice(0, 3).map((eachName) => ((0, jsx_runtime_1.jsx)("span", Object.assign({ className: `${eachName === "Design"
|
|
40
|
+
? "bg-primary-50 text-primary-700"
|
|
41
|
+
: eachName === "Product"
|
|
42
|
+
? "bg-blue-50 text-blue-700"
|
|
43
|
+
: "bg-indigo-50 text-indigo-700"} text-sm font-medium border-round-2xl px-2` }, { children: eachName }), eachName))), (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "bg-gray-100 border-round-2xl px-2 text-gray-700" }, { children: ["+", teams.length - 3] }))] })));
|
|
44
|
+
};
|
|
45
|
+
const actionButtonTemplate1 = () => {
|
|
46
|
+
return ((0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { text: true, icon: "pi pi-trash" }), (0, jsx_runtime_1.jsx)(button_1.Button, { text: true, icon: "pi pi-pencil" })] })));
|
|
47
|
+
};
|
|
48
|
+
const actionButtonTemplate2 = () => {
|
|
49
|
+
return (0, jsx_runtime_1.jsx)(button_1.Button, { text: true, icon: "pi pi-ellipsis-v" });
|
|
50
|
+
};
|
|
51
|
+
const pagenatorTemplate = {
|
|
52
|
+
layout: "PrevPageLink PageLinks CurrentPageReport NextPageLink",
|
|
53
|
+
PrevPageLink: (options) => {
|
|
54
|
+
return ((0, jsx_runtime_1.jsxs)(button_1.Button, Object.assign({ type: "button", className: "bg-white border-1 border-gray-300 mr-auto", onClick: options.onClick, disabled: options.disabled }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "arrow-left-gray-700" }), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-3 text-gray-700 md:flex hidden" }, { children: "Previous" }))] })));
|
|
55
|
+
},
|
|
56
|
+
PageLinks: (options) => {
|
|
57
|
+
if ((options.view.startPage === options.page &&
|
|
58
|
+
options.view.startPage !== 0) ||
|
|
59
|
+
(options.view.endPage === options.page &&
|
|
60
|
+
options.page + 1 !== options.totalPages)) {
|
|
61
|
+
const className = (0, utils_1.classNames)(options.className, { "p-disabled": true });
|
|
62
|
+
return (0, jsx_runtime_1.jsx)("span", Object.assign({ className: className }, { children: "..." }));
|
|
63
|
+
}
|
|
64
|
+
return ((0, jsx_runtime_1.jsxs)("button", Object.assign({ type: "button", className: options.className, onClick: options.onClick }, { children: [options.page + 1, (0, jsx_runtime_1.jsx)(ripple_1.Ripple, {})] })));
|
|
65
|
+
},
|
|
66
|
+
NextPageLink: (options) => {
|
|
67
|
+
return ((0, jsx_runtime_1.jsxs)(button_1.Button, Object.assign({ type: "button", className: "bg-white border-1 px-4 py-2 border-gray-300 ml-auto", onClick: options.onClick, disabled: options.disabled }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-3 text-gray-700 md:flex hidden" }, { children: "Next" })), (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "arrow-right-gray-700" })] })));
|
|
68
|
+
},
|
|
69
|
+
CurrentPageReport: (options) => {
|
|
70
|
+
return ((0, jsx_runtime_1.jsxs)("span", Object.assign({ style: {
|
|
71
|
+
color: "var(--gray-700)",
|
|
72
|
+
userSelect: "none",
|
|
73
|
+
width: "120px",
|
|
74
|
+
textAlign: "center",
|
|
75
|
+
}, className: "flex md:hidden line-height-2 text-base" }, { children: ["Page ", options.first, " of ", options.totalRecords] })));
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
const tableHeaderTemplate1 = () => {
|
|
79
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 text-xl font-semibold bg-white text-gray-900" }, { children: ["Team Members", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "border-round-2xl px-2 font-medium bg-primary-50 text-primary-700 text-sm" }, { children: "100 users" })), (0, jsx_runtime_1.jsx)(button_1.Button, { text: true, className: "ml-auto", icon: "pi pi-ellipsis-v" })] })));
|
|
80
|
+
};
|
|
81
|
+
const tableHeaderTemplate2 = () => {
|
|
82
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center" }, { children: [(0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex flex-column gap-1" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-900 font-semibold text-xl line-height-4" }, { children: "Customers" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base line-height-2" }, { children: "These companies have purchased in the last 12 months." }))] })), (0, jsx_runtime_1.jsx)(button_1.Button, { text: true, className: "ml-auto", icon: "pi pi-ellipsis-v" })] })));
|
|
83
|
+
};
|
|
84
|
+
const companyBodyTemplate = (rowData) => {
|
|
85
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2" }, { children: [(0, jsx_runtime_1.jsx)("img", { src: rowData.image, className: "border-circle w-3rem h-3rem p-avatar-focus" }), (0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-900 font-medium text-base line-height-2" }, { children: rowData.name })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base line-height-2" }, { children: rowData.website }))] }))] })));
|
|
86
|
+
};
|
|
87
|
+
const aboutBodyTemplate = (rowData) => {
|
|
88
|
+
return ((0, jsx_runtime_1.jsxs)("section", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-900 font-normal text-base line-height-2" }, { children: rowData.about.title })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base line-height-2" }, { children: rowData.about.description }))] })));
|
|
89
|
+
};
|
|
90
|
+
const usersBodyTemplate = (rowData) => {
|
|
91
|
+
return ((0, jsx_runtime_1.jsxs)(avatargroup_1.AvatarGroup, Object.assign({ className: "w-10" }, { children: [rowData.users.slice(0, 5).map((eachUser) => ((0, jsx_runtime_1.jsx)(avatar_1.Avatar, { image: eachUser, shape: "circle", size: "large" }, eachUser))), (0, jsx_runtime_1.jsx)(avatar_1.Avatar, { label: `+${rowData.users.length - 5}`, shape: "circle", size: "large", className: "bg-gray-100 text-gray-600 text-base font-medium" })] })));
|
|
92
|
+
};
|
|
93
|
+
const licenseBodyTemplate = (rowData) => {
|
|
94
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex w-10rem align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(progressbar_1.ProgressBar, { value: rowData.licenseUse, className: "w-10" }), (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: " px-3 w-2 flex align-items-start text-center text-sm" }, { children: [rowData.licenseUse, "%"] }))] })));
|
|
95
|
+
};
|
|
96
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-8" }, { children: [(0, jsx_runtime_1.jsxs)(datatable_1.DataTable, Object.assign({ value: table_data_1.teamData, paginator: true, paginatorClassName: "bg-square px-6 py-3", paginatorTemplate: pagenatorTemplate, showSelectAll: true, rows: 10, rowClassName: () => "h-5rem", header: tableHeaderTemplate1, emptyMessage: emptyStateTemplate1, className: "w-full" }, { children: [(0, jsx_runtime_1.jsx)(column_1.Column, { header: nameHeaderTemplate, body: nameBodyTemplate, headerClassName: "h-3rem text-sm text-gray-600", style: { width: "18rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "Status", sortable: true, headerClassName: "h-3rem text-sm text-gray-600", body: statusTemplate1, style: { width: "7rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: roleHeaderTemplate, headerClassName: "h-3rem text-sm text-gray-600", field: "role", style: { width: "11rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "Email address", headerClassName: "h-3rem text-sm text-gray-600", field: "email", style: { width: "14rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "Teams", body: teamsBodyTemplate, headerClassName: "h-3rem text-sm text-gray-600", style: { width: "18rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { body: actionButtonTemplate1, style: { width: "7rem" } })] })), (0, jsx_runtime_1.jsxs)(datatable_1.DataTable, Object.assign({ value: table_data_1.customersData, showSelectAll: true, rows: 10, rowClassName: () => "h-5rem", header: tableHeaderTemplate2, emptyMessage: "No customers found.", className: "w-full" }, { children: [(0, jsx_runtime_1.jsx)(column_1.Column, { header: "Company", body: companyBodyTemplate, sortable: true, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "18rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "Status", body: statusTemplate2, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "10rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "About", body: aboutBodyTemplate, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "20rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "Users", body: usersBodyTemplate, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "10rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { header: "License Use", body: licenseBodyTemplate, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "14rem" } }), (0, jsx_runtime_1.jsx)(column_1.Column, { body: actionButtonTemplate2, headerClassName: "h-3rem text-sm text-gray-600", style: { maxWidth: "4rem" } })] }))] })));
|
|
97
|
+
};
|
|
98
|
+
exports.default = TableComponent;
|
package/dist/pages/tabs/tabs.js
CHANGED
|
@@ -4,6 +4,6 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
4
4
|
const tabview_1 = require("primereact/tabview");
|
|
5
5
|
require("./tabs.scss");
|
|
6
6
|
const TabsComponent = () => {
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("h2", Object.assign({ className: "flex bg-gray-200 p-3 justify-content-center mt-0 mb-4" }, { children: "Tabs" })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "grid w-10 ml-auto mr-auto" }, { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-border-light border" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Team" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Plan" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Email" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-border-light expand border" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Team", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark flex flex-row md:flex-column not-expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "My details" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555555555 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Profile" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "dddddddddddddddddddddd At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Password" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "0000000000000000000000 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Team" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "344444444444444444444 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Billing" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "fghfgh At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Email" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "fgxhfgh At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "tab-badge bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "3" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "tab-badge bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark not-expand border-no-radius " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details", className: "bg-primary-800" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Team" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Plan" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Email" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark expand border-no-radius" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-shadow-box flex flex-row md:flex-column not-expand" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "My details" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Profile" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Password" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "55555555555s excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555555555 et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Billing" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "555555555 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) }))] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-shadow-box expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) }))] }))] }));
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("h2", Object.assign({ className: "flex bg-gray-200 p-3 justify-content-center mt-0 mb-4" }, { children: "Tabs" })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "grid w-10 ml-auto mr-auto" }, { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-border-light border" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Team" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Plan" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Email" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-border-light expand border" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Team", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark responsive flex flex-row md:flex-column not-expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "My details" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555555555 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Profile" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "dddddddddddddddddddddd At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Password" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "0000000000000000000000 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Team" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "344444444444444444444 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Billing" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "fghfgh At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Email" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "fgxhfgh At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "tab-badge bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "3" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "tab-badge bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark not-expand border-no-radius " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details", className: "bg-primary-800" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Team" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Plan" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Email" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Integrations" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "API" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-bg-dark expand border-no-radius" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-shadow-box responsive flex flex-row md:flex-column not-expand" }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "My details" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Profile" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Password" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "55555555555s excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 tab-badge border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "5555555555555555555555 et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) })), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, Object.assign({ header: "Billing" }, { children: (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "m-0" }, { children: "555555555 At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus." })) }))] })) })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "col-12 hidden md:flex my-8" }, { children: (0, jsx_runtime_1.jsxs)(tabview_1.TabView, Object.assign({ className: "tab-view-shadow-box expand " }, { children: [(0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "My details" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Profile" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Password" }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: (0, jsx_runtime_1.jsxs)("span", { children: ["Notification", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "bg-gray-100 border-round-2xl py-1 px-2 ml-2 text-gray-700" }, { children: "2" }))] }) }), (0, jsx_runtime_1.jsx)(tabview_1.TabPanel, { header: "Billing" })] })) }))] }))] }));
|
|
8
8
|
};
|
|
9
9
|
exports.default = TabsComponent;
|
package/dist/pages/tags/tags.js
CHANGED
|
@@ -34,19 +34,19 @@ const TagComponent = () => {
|
|
|
34
34
|
el.remove();
|
|
35
35
|
} }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "close-chip-gray-400-large" }) }))] })), className: "bg-white chip-image px-2 py-1 border-gray-300 border-1 border-round-lg gap-1 flex align-items-center text-gray-700 font-medium text-sm" }), (0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
36
36
|
setchecked(!checked);
|
|
37
|
-
} }), (0, jsx_runtime_1.jsx)("img", { src: label_image_png_1.default, alt: "img" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm " }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-5", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "image" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "cursor-pointer", onClick: () => {
|
|
37
|
+
} }), (0, jsx_runtime_1.jsx)("img", { src: label_image_png_1.default, alt: "img" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm " }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img", className: "w-1rem h-1rem" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-5", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "image" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "cursor-pointer", onClick: () => {
|
|
38
38
|
const el = document.getElementById("chip-5");
|
|
39
39
|
el.remove();
|
|
40
|
-
} }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "close-chip-gray-400-large" }) }))] })), className: "bg-white chip-image border-gray-300 border-1 px-2 py-1 border-round-lg gap-1 flex align-items-center text-gray-700 font-medium text-sm" }), (0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm pr-1" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
40
|
+
} }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "close-chip-gray-400-large" }) }))] })), className: "bg-white chip-image border-gray-300 border-1 px-2 py-1 border-round-lg gap-1 flex align-items-center text-gray-700 font-medium text-sm" }), (0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img", className: "w-1rem h-1rem" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm pr-1" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
41
41
|
setchecked(!checked);
|
|
42
|
-
} }), (0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-6", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
42
|
+
} }), (0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img", className: "w-1rem h-1rem" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-6", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
43
43
|
setchecked(!checked);
|
|
44
44
|
} }), (0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "image" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "cursor-pointer", onClick: () => {
|
|
45
45
|
const el = document.getElementById("chip-6");
|
|
46
46
|
el.remove();
|
|
47
47
|
} }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "close-chip-gray-400-large" }) }))] })), className: "bg-white chip-image border-gray-300 border-1 px-2 py-1 border-round-lg gap-1 flex align-items-center text-gray-700 font-medium text-sm" }), (0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
48
48
|
setchecked(!checked);
|
|
49
|
-
} }), (0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-500 p-1" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-7", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-500 p-1" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "cursor-pointer", onClick: () => {
|
|
49
|
+
} }), (0, jsx_runtime_1.jsx)("img", { src: avatar_png_1.default, alt: "img", className: "h-1rem w-1rem" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-500 p-1" }), "Lable"] })) })), (0, jsx_runtime_1.jsx)(chip_1.Chip, { id: "chip-7", template: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-500 p-1" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "cursor-pointer", onClick: () => {
|
|
50
50
|
const el = document.getElementById("chip-7");
|
|
51
51
|
el.remove();
|
|
52
52
|
} }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { iconName: "close-chip-gray-400-large" }) }))] })), className: "bg-white border-gray-300 border-1 px-2 py-1 border-round-lg gap-1 flex align-items-center text-gray-700 font-medium text-sm" }), (0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)("span", { className: "border-circle bg-green-500 p-1" }), "Lable", (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "px-2 bg-gray-100 text-gray-700 text-sm border-round-sm" }, { children: "5" }))] })) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-between col-12 md:col-6 lg:col-4 xl:col-3 px-6 my-4" }, { children: [(0, jsx_runtime_1.jsx)(tag_1.Tag, Object.assign({ className: "bg-white text-gray-700 border-gray-300 border-1 px-2 py-1" }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 font-medium text-sm" }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checked, onChange: () => {
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import "./progress-steps.scss";
|
|
2
|
+
import { StepsItemProps } from "../types/type";
|
|
3
|
+
export declare const ProgressSteps: (props: StepsItemProps) => JSX.Element;
|
|
1
4
|
declare const ProgressStepsComponent: () => import("react/jsx-runtime").JSX.Element;
|
|
2
5
|
export default ProgressStepsComponent;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface SVGProps {
|
|
2
|
+
height?: number;
|
|
3
|
+
strokeWidth?: number;
|
|
4
|
+
strokeColor?: string;
|
|
5
|
+
strokeBgColor?: string;
|
|
6
|
+
value?: number;
|
|
7
|
+
text?: string;
|
|
8
|
+
textDisabled?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const CircleProgressComponent: ({ height, strokeWidth, text, strokeColor, strokeBgColor, value, textDisabled }: SVGProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default CircleProgressComponent;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface SVGProps {
|
|
2
|
+
height?: number;
|
|
3
|
+
strokeWidth?: number;
|
|
4
|
+
strokeColor?: string;
|
|
5
|
+
strokeBgColor?: string;
|
|
6
|
+
value?: number;
|
|
7
|
+
text?: string;
|
|
8
|
+
textDisabled?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const HalfProgressComponent: ({ height, strokeWidth, text, strokeColor, strokeBgColor, value, textDisabled }: SVGProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default HalfProgressComponent;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface TeamDataItem {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
image: string;
|
|
5
|
+
company: string;
|
|
6
|
+
email: string;
|
|
7
|
+
role: string;
|
|
8
|
+
status: "Active" | "Inactive";
|
|
9
|
+
purchase: string;
|
|
10
|
+
teams: string[];
|
|
11
|
+
date: string;
|
|
12
|
+
}
|
|
13
|
+
export interface CustomerAbout {
|
|
14
|
+
title: string;
|
|
15
|
+
description: string;
|
|
16
|
+
}
|
|
17
|
+
export interface CustomerDataItem {
|
|
18
|
+
id: number;
|
|
19
|
+
name: string;
|
|
20
|
+
image: string;
|
|
21
|
+
website: string;
|
|
22
|
+
status: "Customer" | "Churned";
|
|
23
|
+
about: CustomerAbout;
|
|
24
|
+
users: string[];
|
|
25
|
+
licenseUse: number;
|
|
26
|
+
}
|
|
27
|
+
export declare const teamData: TeamDataItem[];
|
|
28
|
+
export declare const customersData: CustomerDataItem[];
|
|
@@ -2,3 +2,21 @@ export interface City {
|
|
|
2
2
|
name: string;
|
|
3
3
|
code: string;
|
|
4
4
|
}
|
|
5
|
+
export interface CustomActionEvent {
|
|
6
|
+
event: React.SyntheticEvent;
|
|
7
|
+
item: StepItem;
|
|
8
|
+
}
|
|
9
|
+
export interface StepItem {
|
|
10
|
+
id: string;
|
|
11
|
+
template: JSX.Element;
|
|
12
|
+
action?(event?: CustomActionEvent): void;
|
|
13
|
+
style?: React.CSSProperties | undefined;
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
}
|
|
16
|
+
export interface StepsItemProps {
|
|
17
|
+
stepsItems: StepItem[];
|
|
18
|
+
orientation?: "horizontal" | "vertical";
|
|
19
|
+
activeIndex?: number;
|
|
20
|
+
style?: React.CSSProperties | undefined;
|
|
21
|
+
className?: string | undefined;
|
|
22
|
+
}
|
package/package.json
CHANGED
|
Binary file
|