sccoreui 5.6.6 → 5.6.8
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/components/AG-Grid/Ag-Grid.js +29 -4
- package/dist/components/AG-Grid/AgGrid.js +45 -0
- package/dist/components/AG-Grid/Grid-Parent.js +10 -0
- package/dist/components/AG-Grid/ParentForGrid.js +10 -0
- package/dist/components/AG-Grid/Types.js +2 -0
- package/dist/components/form/form.js +2 -2
- package/dist/index.js +2 -2
- package/dist/pages/ag-grid/agGridPage.js +10 -0
- package/dist/pages/avatar/avatar.js +338 -0
- package/dist/pages/badges/badge.js +73 -0
- package/dist/pages/breadcrumb/breadcrumb.js +14 -0
- package/dist/pages/button/button.js +10 -0
- package/dist/pages/button-group/button-group.js +10 -0
- package/dist/pages/chart/chart.js +257 -0
- package/dist/pages/checkbox/checkbox.js +26 -0
- package/dist/pages/checkbox-group/checkbox-group-component.js +21 -0
- package/dist/pages/color-picker/color-picker.js +13 -0
- package/dist/pages/content-dividers/content-dividers.js +11 -0
- package/dist/pages/custom-color-picker/custom-color-picker.js +12 -0
- package/dist/pages/date-picker/date-picker.js +20 -0
- package/dist/pages/dropdown/dropdown-component.js +39 -0
- package/dist/pages/file-upload/file-upload.js +34 -0
- package/dist/pages/flex.js +15 -0
- package/dist/pages/formulaTemplate/formulaTemplate.js +154 -0
- package/dist/pages/frolaTextEditor/froala-text-editor.js +12 -0
- package/dist/pages/home.js +47 -0
- package/dist/pages/input/input-text.js +112 -0
- package/dist/pages/list-box-dropdown/listboxdropdown.js +52 -0
- package/dist/pages/loader-indicator/loader-indicator.js +10 -0
- package/dist/pages/mega-mennu/mega-menu.js +84 -0
- package/dist/pages/multi-select-dropdown/multi-select-dropdown.js +51 -0
- package/dist/pages/not-found/not-found.js +10 -0
- package/dist/pages/paginator/pagination.js +122 -0
- package/dist/pages/progress-bar/progress-bar.js +27 -0
- package/dist/pages/progress-steps/progress-steps.js +24 -0
- package/dist/pages/radio-button/radio-button-component.js +11 -0
- package/dist/pages/shadows/shadows.js +7 -0
- package/dist/pages/slideout-menus/slideout-menus.js +104 -0
- package/dist/pages/sliders/slider.js +39 -0
- package/dist/pages/tabels/table-data.js +2193 -0
- package/dist/pages/tabels/table.js +98 -0
- package/dist/pages/tabs/tabs.js +9 -0
- package/dist/pages/tags/tags.js +70 -0
- package/dist/pages/toast/toast.js +47 -0
- package/dist/pages/toggle/toggle.js +10 -0
- package/dist/pages/tooltip/tooltip.js +13 -0
- package/dist/pages/treeDropdownSelect/treedropdowselect.js +34 -0
- package/dist/pages/types/type.js +2 -0
- package/dist/types/components/AG-Grid/Ag-Grid.d.ts +4 -2
- package/dist/types/components/AG-Grid/AgGrid.d.ts +4 -0
- package/dist/types/components/AG-Grid/Grid-Parent.d.ts +2 -0
- package/dist/types/components/AG-Grid/ParentForGrid.d.ts +2 -0
- package/dist/types/components/AG-Grid/Types.d.ts +13 -0
- package/dist/types/components/types/type.d.ts +1 -0
- package/dist/types/index.d.ts +3 -3
- package/dist/types/pages/ag-grid/agGridPage.d.ts +2 -0
- package/dist/types/pages/avatar/avatar.d.ts +2 -0
- package/dist/types/pages/badges/badge.d.ts +3 -0
- package/dist/types/pages/breadcrumb/breadcrumb.d.ts +2 -0
- package/dist/types/pages/button/button.d.ts +2 -0
- package/dist/types/pages/button-group/button-group.d.ts +2 -0
- package/dist/types/pages/chart/chart.d.ts +2 -0
- package/dist/types/pages/checkbox/checkbox.d.ts +2 -0
- package/dist/types/pages/checkbox-group/checkbox-group-component.d.ts +3 -0
- package/dist/types/pages/color-picker/color-picker.d.ts +2 -0
- package/dist/types/pages/content-dividers/content-dividers.d.ts +2 -0
- package/dist/types/pages/custom-color-picker/custom-color-picker.d.ts +2 -0
- package/dist/types/pages/date-picker/date-picker.d.ts +2 -0
- package/dist/types/pages/dropdown/dropdown-component.d.ts +2 -0
- package/dist/types/pages/file-upload/file-upload.d.ts +3 -0
- package/dist/types/pages/flex.d.ts +2 -0
- package/dist/types/pages/formulaTemplate/formulaTemplate.d.ts +2 -0
- package/dist/types/pages/frolaTextEditor/froala-text-editor.d.ts +2 -0
- package/dist/types/pages/home.d.ts +2 -0
- package/dist/types/pages/input/input-text.d.ts +3 -0
- package/dist/types/pages/list-box-dropdown/listboxdropdown.d.ts +2 -0
- package/dist/types/pages/loader-indicator/loader-indicator.d.ts +3 -0
- package/dist/types/pages/mega-mennu/mega-menu.d.ts +2 -0
- package/dist/types/pages/multi-select-dropdown/multi-select-dropdown.d.ts +2 -0
- package/dist/types/pages/not-found/not-found.d.ts +2 -0
- package/dist/types/pages/paginator/pagination.d.ts +2 -0
- package/dist/types/pages/progress-bar/progress-bar.d.ts +3 -0
- package/dist/types/pages/progress-steps/progress-steps.d.ts +2 -0
- package/dist/types/pages/radio-button/radio-button-component.d.ts +2 -0
- package/dist/types/pages/shadows/shadows.d.ts +2 -0
- package/dist/types/pages/slideout-menus/slideout-menus.d.ts +2 -0
- package/dist/types/pages/sliders/slider.d.ts +1 -0
- package/dist/types/pages/tabels/table-data.d.ts +3 -0
- package/dist/types/pages/tabels/table.d.ts +2 -0
- package/dist/types/pages/tabs/tabs.d.ts +3 -0
- package/dist/types/pages/tags/tags.d.ts +3 -0
- package/dist/types/pages/toast/toast.d.ts +2 -0
- package/dist/types/pages/toggle/toggle.d.ts +2 -0
- package/dist/types/pages/tooltip/tooltip.d.ts +2 -0
- package/dist/types/pages/treeDropdownSelect/treedropdowselect.d.ts +2 -0
- package/dist/types/pages/types/type.d.ts +64 -0
- package/package.json +7 -1
|
@@ -1,8 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
const react_1 = require("@ag-grid-community/react");
|
|
5
|
+
// import { RowModelType,ClientSideRowModelStep } from "@ag-grid-community/core";
|
|
6
|
+
require("ag-grid-community/styles/ag-grid.css");
|
|
7
|
+
require("ag-grid-community/styles/ag-theme-quartz.css");
|
|
8
|
+
const core_1 = require("@ag-grid-community/core");
|
|
9
|
+
const client_side_row_model_1 = require("@ag-grid-community/client-side-row-model");
|
|
10
|
+
core_1.ModuleRegistry.registerModules([client_side_row_model_1.ClientSideRowModelModule]);
|
|
11
|
+
const core_2 = require("@ag-grid-enterprise/core");
|
|
12
|
+
const react_2 = require("react");
|
|
13
|
+
// import { ColDef } from '@ag-grid-community/core';
|
|
14
|
+
core_2.LicenseManager.setLicenseKey("Using_this_{AG_Grid}_Enterprise_key_{AG-056800}_in_excess_of_the_licence_granted_is_not_permitted___Please_report_misuse_to_legal@ag-grid.com___For_help_with_changing_this_key_please_contact_info@ag-grid.com___{Sellers_Commerce_LLC}_is_granted_a_{Single_Application}_Developer_License_for_the_application_{SellersCommerce}_only_for_{2}_Front-End_JavaScript_developers___All_Front-End_JavaScript_developers_working_on_{SellersCommerce}_need_to_be_licensed___{SellersCommerce}_has_been_granted_a_Deployment_License_Add-on_for_{1}_Production_Environment___This_key_works_with_{AG_Grid}_Enterprise_versions_released_before_{14_April_2025}____[v3]_[01]_MTc0NDU4NTIwMDAwMA==895f2234e1659afcfba586110daf0549");
|
|
15
|
+
const columnDefs = [
|
|
16
|
+
{ field: "make" },
|
|
17
|
+
{ field: "model" },
|
|
18
|
+
{ field: "price" }
|
|
19
|
+
];
|
|
20
|
+
const rowData = [
|
|
21
|
+
{ make: "Toyota", model: "Celica", price: 35000 },
|
|
22
|
+
{ make: "Ford", model: "Mondeo", price: 32000 },
|
|
23
|
+
{ make: "Porsche", model: "Boxster", price: 72000 }
|
|
24
|
+
];
|
|
25
|
+
const AgGrid = () => {
|
|
26
|
+
const [gridApi, setGridApi] = (0, react_2.useState)(null);
|
|
27
|
+
const onGridReady = (0, react_2.useCallback)((params) => {
|
|
28
|
+
setGridApi(params.api);
|
|
29
|
+
}, []);
|
|
30
|
+
console.log(gridApi, 'grid api');
|
|
31
|
+
return ((0, jsx_runtime_1.jsx)("div", Object.assign({ className: "ag-theme-alpine", style: { height: 400, width: 600 } }, { children: (0, jsx_runtime_1.jsx)(react_1.AgGridReact, { columnDefs: columnDefs, rowData: rowData, onGridReady: onGridReady }) })));
|
|
7
32
|
};
|
|
8
|
-
exports.default =
|
|
33
|
+
exports.default = AgGrid;
|
|
@@ -0,0 +1,45 @@
|
|
|
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 react_1 = require("@ag-grid-community/react");
|
|
6
|
+
const core_1 = require("@ag-grid-community/core");
|
|
7
|
+
require("ag-grid-community/styles/ag-grid.css");
|
|
8
|
+
require("ag-grid-community/styles/ag-theme-quartz.css");
|
|
9
|
+
const client_side_row_model_1 = require("@ag-grid-community/client-side-row-model");
|
|
10
|
+
const core_2 = require("@ag-grid-enterprise/core");
|
|
11
|
+
const range_selection_1 = require("@ag-grid-enterprise/range-selection");
|
|
12
|
+
const react_2 = require("react");
|
|
13
|
+
const axios_1 = tslib_1.__importDefault(require("axios"));
|
|
14
|
+
core_1.ModuleRegistry.registerModules([client_side_row_model_1.ClientSideRowModelModule, range_selection_1.RangeSelectionModule]);
|
|
15
|
+
core_2.LicenseManager.setLicenseKey("Using_this_{AG_Grid}_Enterprise_key_{AG-056800}_in_excess_of_the_licence_granted_is_not_permitted___Please_report_misuse_to_legal@ag-grid.com___For_help_with_changing_this_key_please_contact_info@ag-grid.com___{Sellers_Commerce_LLC}_is_granted_a_{Single_Application}_Developer_License_for_the_application_{SellersCommerce}_only_for_{2}_Front-End_JavaScript_developers___All_Front-End_JavaScript_developers_working_on_{SellersCommerce}_need_to_be_licensed___{SellersCommerce}_has_been_granted_a_Deployment_License_Add-on_for_{1}_Production_Environment___This_key_works_with_{AG_Grid}_Enterprise_versions_released_before_{14_April_2025}____[v3]_[01]_MTc0NDU4NTIwMDAwMA==895f2234e1659afcfba586110daf0549");
|
|
16
|
+
const AgGrid = () => {
|
|
17
|
+
const [rowData, setRowData] = (0, react_2.useState)([]);
|
|
18
|
+
const [columnDefs] = (0, react_2.useState)([
|
|
19
|
+
{ field: "athlete", minWidth: 150 },
|
|
20
|
+
{ field: "age", maxWidth: 90 },
|
|
21
|
+
{ field: "country", minWidth: 150 },
|
|
22
|
+
{ field: "year", maxWidth: 90 },
|
|
23
|
+
{ field: "date", minWidth: 150 },
|
|
24
|
+
{ field: "sport", minWidth: 150 },
|
|
25
|
+
{ field: "gold" },
|
|
26
|
+
{ field: "silver" },
|
|
27
|
+
{ field: "bronze" },
|
|
28
|
+
{ field: "total" },
|
|
29
|
+
]);
|
|
30
|
+
const defaultColDef = (0, react_2.useMemo)(() => {
|
|
31
|
+
return {
|
|
32
|
+
flex: 1,
|
|
33
|
+
minWidth: 100,
|
|
34
|
+
};
|
|
35
|
+
}, []);
|
|
36
|
+
// Get api call for rows
|
|
37
|
+
const onGridReady = (0, react_2.useCallback)((params) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
38
|
+
console.log(params, 'params');
|
|
39
|
+
const result = (yield axios_1.default.get("https://www.ag-grid.com/example-assets/olympic-winners.json")).data;
|
|
40
|
+
console.log(result.length, result, "length of data");
|
|
41
|
+
setRowData(result);
|
|
42
|
+
}), []);
|
|
43
|
+
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "ag-theme-alpine ", style: { height: 800, width: 1200 } }, { children: (0, jsx_runtime_1.jsx)(react_1.AgGridReact, { rowData: rowData, columnDefs: columnDefs, defaultColDef: defaultColDef, onGridReady: onGridReady, enableRangeSelection: true }) })) }) }));
|
|
44
|
+
};
|
|
45
|
+
exports.default = AgGrid;
|
|
@@ -0,0 +1,10 @@
|
|
|
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 Ag_Grid_1 = tslib_1.__importDefault(require("./Ag-Grid"));
|
|
6
|
+
const AGGridComponent = (props) => {
|
|
7
|
+
console.log(props);
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)(Ag_Grid_1.default, {}) }));
|
|
9
|
+
};
|
|
10
|
+
exports.default = AGGridComponent;
|
|
@@ -0,0 +1,10 @@
|
|
|
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 AgGrid_1 = tslib_1.__importDefault(require("./AgGrid"));
|
|
6
|
+
function ParentForGrid(props) {
|
|
7
|
+
console.log(props, 'props');
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(AgGrid_1.default, {}) }));
|
|
9
|
+
}
|
|
10
|
+
exports.default = ParentForGrid;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const formik_1 = require("formik");
|
|
5
5
|
const FormComponent = (props) => {
|
|
6
|
-
const { formRef, values, enableReinitialize = false, validations, children, validateOnChange, validateOnBlur, validateForm, className, onSubmit } = props;
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)(formik_1.Formik, Object.assign({ innerRef: formRef, enableReinitialize: enableReinitialize, initialValues: values, validationSchema: validations, validateOnChange: validateOnChange, validate: validateForm, validateOnBlur: validateOnBlur, onSubmit: (values) => onSubmit(values) }, { children: ({ errors, touched, isValid, values, actions, resetForm, setFieldValue, handleSubmit, setFieldTouched, dirty, validate }) => ((0, jsx_runtime_1.jsx)(formik_1.Form, Object.assign({ className: className }, { children: children({ errors, touched, isValid, values, actions, resetForm, handleSubmit, setFieldValue, setFieldTouched, dirty, validate }) }))) })));
|
|
6
|
+
const { formRef, values, enableReinitialize = false, validateOnMount = false, validations, children, validateOnChange, validateOnBlur, validateForm, className, onSubmit } = props;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)(formik_1.Formik, Object.assign({ innerRef: formRef, validateOnMount: validateOnMount, enableReinitialize: enableReinitialize, initialValues: values, validationSchema: validations, validateOnChange: validateOnChange, validate: validateForm, validateOnBlur: validateOnBlur, onSubmit: (values) => onSubmit(values) }, { children: ({ errors, touched, isValid, values, actions, resetForm, setFieldValue, handleSubmit, setFieldTouched, dirty, validate }) => ((0, jsx_runtime_1.jsx)(formik_1.Form, Object.assign({ className: className }, { children: children({ errors, touched, isValid, values, actions, resetForm, handleSubmit, setFieldValue, setFieldTouched, dirty, validate }) }))) })));
|
|
8
8
|
};
|
|
9
9
|
exports.default = FormComponent;
|
package/dist/index.js
CHANGED
|
@@ -228,6 +228,6 @@ var hooks_1 = require("primereact/hooks");
|
|
|
228
228
|
Object.defineProperty(exports, "useClickOutside", { enumerable: true, get: function () { return hooks_1.useClickOutside; } });
|
|
229
229
|
Object.defineProperty(exports, "useOverlayListener", { enumerable: true, get: function () { return hooks_1.useOverlayListener; } });
|
|
230
230
|
Object.defineProperty(exports, "useOverlayScrollListener", { enumerable: true, get: function () { return hooks_1.useOverlayScrollListener; } });
|
|
231
|
-
var
|
|
232
|
-
Object.defineProperty(exports, "AGGridComponent", { enumerable: true, get: function () { return tslib_1.__importDefault(
|
|
231
|
+
var ParentForGrid_1 = require("./components/ag-grid/ParentForGrid");
|
|
232
|
+
Object.defineProperty(exports, "AGGridComponent", { enumerable: true, get: function () { return tslib_1.__importDefault(ParentForGrid_1).default; } });
|
|
233
233
|
client_1.default.createRoot(document.getElementById("root")).render((0, jsx_runtime_1.jsx)(App_1.default, {}));
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
// import React from 'react'
|
|
6
|
+
const Grid_Parent_1 = tslib_1.__importDefault(require("../../components/ag-grid/Grid-Parent"));
|
|
7
|
+
const AgGridPage = () => {
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)(Grid_Parent_1.default, {}));
|
|
9
|
+
};
|
|
10
|
+
exports.default = AgGridPage;
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
// import { Button } from "primereact/button";
|
|
5
|
+
// import avatar from "../../assets/images/avatar.png";
|
|
6
|
+
// import SvgComponent from "../../directives/svg-component";
|
|
7
|
+
// import "./avatar.scss";
|
|
8
|
+
// import { Avatar } from "primereact/avatar";
|
|
9
|
+
// import { AvatarGroup } from "primereact/avatargroup";
|
|
10
|
+
// import profileimage from "../../assets/images/profile-square-image.png";
|
|
11
|
+
// // import FormComponent from "../../components/form/form";
|
|
12
|
+
// import FormFields from "../../components/form/form-fields/form-fields";
|
|
13
|
+
// import { object, number } from "yup";
|
|
14
|
+
// import TextEditor from "../../components/froala-editor/FroalaEditor";
|
|
15
|
+
// import { useState } from "react";
|
|
16
|
+
// const AvatarComponent = () => {
|
|
17
|
+
// const [text, setText] = useState<string>("");
|
|
18
|
+
// // const initVals = {
|
|
19
|
+
// // title: 0,
|
|
20
|
+
// // }
|
|
21
|
+
// const onChangeText = (e: any) => {
|
|
22
|
+
// setText(e);
|
|
23
|
+
// debugger
|
|
24
|
+
// }
|
|
25
|
+
// // const FormVals = (props: any) => {
|
|
26
|
+
// // const { errors, touched, isValid, values, setFieldValue } = props;
|
|
27
|
+
// // const triggerSubmit = (e: any) => {
|
|
28
|
+
// // console.log(e)
|
|
29
|
+
// // debugger
|
|
30
|
+
// // console.log(values);
|
|
31
|
+
// // // submitForm()
|
|
32
|
+
// // // resetForm()
|
|
33
|
+
// // }
|
|
34
|
+
// // return (
|
|
35
|
+
// // <div className="p-5">
|
|
36
|
+
// // <Button className={`p-button-xs ${isValid && Object.keys(touched).length === Object.keys(initVals).length ? '' : 'p-disabled'}`} type="submit" label="Create" onClick={(e: any) => triggerSubmit(e)} />
|
|
37
|
+
// // <FormFields.InputNumberField min={0} name={'title'} label={'Title'} setFieldValue={setFieldValue} length={'full'} placeholder={'Enter the plan title'} touched={touched} errors={errors} />
|
|
38
|
+
// // </div>
|
|
39
|
+
// // )
|
|
40
|
+
// // }
|
|
41
|
+
// // const validtionSchema = object().shape({
|
|
42
|
+
// // title: number().min(1,'error').max(24, 'err max').test("custom","invalid",(value: any) => {
|
|
43
|
+
// // if (value === "") {
|
|
44
|
+
// // return false
|
|
45
|
+
// // } else {
|
|
46
|
+
// // return true;
|
|
47
|
+
// // }
|
|
48
|
+
// // })
|
|
49
|
+
// // })
|
|
50
|
+
// const config = {
|
|
51
|
+
// placeholder: 'Enter text',
|
|
52
|
+
// charCounterCount: true,
|
|
53
|
+
// }
|
|
54
|
+
// return (
|
|
55
|
+
// <>
|
|
56
|
+
// <h2 className="flex bg-gray-200 p-3 justify-content-center mb-4">Tags</h2>
|
|
57
|
+
// <div className="grid">
|
|
58
|
+
// {/* <FormComponent values={initVals} validations={validtionSchema}>
|
|
59
|
+
// {
|
|
60
|
+
// ({errors, touched, isValid, values, actions,resetForm, submitForm, setFieldValue}: any) => (
|
|
61
|
+
// <FormVals errors={errors} touched={touched} isValid={isValid} values={values} actions={actions} resetForm={resetForm} submitForm={submitForm} setFieldValue={setFieldValue} />
|
|
62
|
+
// )
|
|
63
|
+
// }
|
|
64
|
+
// </FormComponent> */}
|
|
65
|
+
// <TextEditor config={config} model={text} onModelChange={onChangeText} />
|
|
66
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex align-items-center my-8 gap-3">
|
|
67
|
+
// <img
|
|
68
|
+
// src={avatar}
|
|
69
|
+
// className=" border-circle w-4rem h-4rem p-avatar-focus"
|
|
70
|
+
// />
|
|
71
|
+
// <div className="w-4rem h-4rem border-circle flex align-items-center justify-content-center relative ">
|
|
72
|
+
// <img
|
|
73
|
+
// src={avatar}
|
|
74
|
+
// className=" border-circle w-4rem h-4rem p-avatar-focus"
|
|
75
|
+
// />
|
|
76
|
+
// <span
|
|
77
|
+
// className="bg-green-500 w-1rem h-1rem border-circle absolute border-1 border-white"
|
|
78
|
+
// style={{
|
|
79
|
+
// position: "absolute",
|
|
80
|
+
// right: "0",
|
|
81
|
+
// bottom: "0",
|
|
82
|
+
// }}
|
|
83
|
+
// ></span>
|
|
84
|
+
// </div>
|
|
85
|
+
// <div className="w-4rem h-4rem border-circle flex align-items-center justify-content-center relative ">
|
|
86
|
+
// <img
|
|
87
|
+
// src={avatar}
|
|
88
|
+
// className=" border-circle w-4rem h-4rem p-avatar-focus"
|
|
89
|
+
// />
|
|
90
|
+
// <span
|
|
91
|
+
// className=" absolute "
|
|
92
|
+
// style={{
|
|
93
|
+
// right: "-2px",
|
|
94
|
+
// bottom: "-2px",
|
|
95
|
+
// }}
|
|
96
|
+
// >
|
|
97
|
+
// <SvgComponent icon="avatar-company-logo-2xl" />
|
|
98
|
+
// </span>
|
|
99
|
+
// </div>
|
|
100
|
+
// <div className="w-4rem h-4rem border-circle flex align-items-center justify-content-center relative ">
|
|
101
|
+
// <img
|
|
102
|
+
// src={avatar}
|
|
103
|
+
// className=" border-circle w-4rem h-4rem p-avatar-focus"
|
|
104
|
+
// />
|
|
105
|
+
// <span
|
|
106
|
+
// className=" absolute "
|
|
107
|
+
// style={{
|
|
108
|
+
// right: "-2px",
|
|
109
|
+
// bottom: "-2px",
|
|
110
|
+
// }}
|
|
111
|
+
// >
|
|
112
|
+
// <SvgComponent icon="verified-tick-2xl" />
|
|
113
|
+
// </span>
|
|
114
|
+
// </div>
|
|
115
|
+
// </div>
|
|
116
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex align-items-center my-8 gap-3">
|
|
117
|
+
// <span className="w-4rem h-4rem border-circle bg-gray-100 flex align-items-center relative justify-content-center border-3 border-transparent hover:border-gray-200">
|
|
118
|
+
// <SvgComponent icon="avatar-user-2xl" />
|
|
119
|
+
// </span>
|
|
120
|
+
// <span className="w-4rem h-4rem border-circle bg-gray-100 flex align-items-center relative justify-content-center border-3 border-transparent hover:border-gray-200">
|
|
121
|
+
// <SvgComponent icon="avatar-user-2xl" />
|
|
122
|
+
// <span
|
|
123
|
+
// className="bg-green-500 w-1rem h-1rem border-circle border-1 border-white"
|
|
124
|
+
// style={{
|
|
125
|
+
// position: "absolute",
|
|
126
|
+
// right: "0px",
|
|
127
|
+
// bottom: "0px",
|
|
128
|
+
// }}
|
|
129
|
+
// ></span>
|
|
130
|
+
// </span>
|
|
131
|
+
// <span className="w-4rem h-4rem border-circle bg-gray-100 text-2xl flex align-items-center text-gray-600 font-medium justify-content-center border-3 border-transparent hover:border-gray-200">
|
|
132
|
+
// OR
|
|
133
|
+
// </span>
|
|
134
|
+
// <span
|
|
135
|
+
// className="w-4rem h-4rem border-circle relative bg-gray-100 text-2xl flex align-items-center text-gray-600 font-medium relative justify-content-center border-3 border-transparent hover:border-gray-200"
|
|
136
|
+
// style={{ fontSize: "18px" }}
|
|
137
|
+
// >
|
|
138
|
+
// OR
|
|
139
|
+
// <span
|
|
140
|
+
// className="bg-green-500 w-1rem h-1rem border-circle absolute border-1 border-white"
|
|
141
|
+
// style={{
|
|
142
|
+
// position: "absolute",
|
|
143
|
+
// right: "0px",
|
|
144
|
+
// bottom: "0px",
|
|
145
|
+
// }}
|
|
146
|
+
// ></span>
|
|
147
|
+
// </span>
|
|
148
|
+
// <span className="w-4rem h-4rem border-circle relative bg-gray-100 text-xl flex align-items-center text-gray-600 font-medium relative justify-content-center border-3 border-transparent hover:border-gray-200">
|
|
149
|
+
// OR
|
|
150
|
+
// <span
|
|
151
|
+
// className="absolute "
|
|
152
|
+
// style={{
|
|
153
|
+
// position: "absolute",
|
|
154
|
+
// right: "-2px",
|
|
155
|
+
// bottom: "-2px",
|
|
156
|
+
// }}
|
|
157
|
+
// >
|
|
158
|
+
// <SvgComponent icon="avatar-company-logo-xl" />
|
|
159
|
+
// </span>
|
|
160
|
+
// </span>
|
|
161
|
+
// </div>
|
|
162
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex align-items-center my-8 gap-3">
|
|
163
|
+
// <Button
|
|
164
|
+
// rounded
|
|
165
|
+
// tooltipOptions={{ position: "top" }}
|
|
166
|
+
// tooltip="Add user"
|
|
167
|
+
// className="w-3rem h-3rem border-gray-300 border-1 bg-white avatar-button p-dark-tooltip border-dashed p-0 flex align-items-center justify-content-center"
|
|
168
|
+
// >
|
|
169
|
+
// <SvgComponent icon="avatar-button-plus" />
|
|
170
|
+
// </Button>
|
|
171
|
+
// <Button
|
|
172
|
+
// disabled
|
|
173
|
+
// rounded
|
|
174
|
+
// tooltipOptions={{ position: "top" }}
|
|
175
|
+
// tooltip="Add user"
|
|
176
|
+
// className="border-gray-300 border-1 avatar-button bg-white p-dark-tooltip border-dashed w-3rem h-3rem flex align-items-center justify-content-center"
|
|
177
|
+
// >
|
|
178
|
+
// <SvgComponent icon="avatar-button-plus" />
|
|
179
|
+
// </Button>
|
|
180
|
+
// </div>
|
|
181
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex align-items-center my-8 gap-3 my-8">
|
|
182
|
+
// <div className="flex align-items-center">
|
|
183
|
+
// <AvatarGroup>
|
|
184
|
+
// {/* you can define the size of the avatar using size property with "noraml, large, xlarge" values */}
|
|
185
|
+
// <Avatar image={avatar} shape="circle" size="large" />
|
|
186
|
+
// <Avatar image={avatar} shape="circle" size="large" />
|
|
187
|
+
// <Avatar image={avatar} shape="circle" size="large" />
|
|
188
|
+
// <Avatar image={avatar} shape="circle" size="large" />
|
|
189
|
+
// <Avatar image={avatar} shape="circle" size="large" />
|
|
190
|
+
// <Avatar
|
|
191
|
+
// label="+2"
|
|
192
|
+
// shape="circle"
|
|
193
|
+
// size="large"
|
|
194
|
+
// className="bg-gray-100 text-gray-600 text-base font-medium"
|
|
195
|
+
// />
|
|
196
|
+
// </AvatarGroup>
|
|
197
|
+
// <Button
|
|
198
|
+
// rounded
|
|
199
|
+
// tooltipOptions={{ position: "top" }}
|
|
200
|
+
// tooltip="Add user"
|
|
201
|
+
// className="border-gray-300 p-0 border-1 ml-1 bg-white avatar-button p-dark-tooltip border-dashed h-2rem w-2rem flex align-items-center justify-content-center"
|
|
202
|
+
// >
|
|
203
|
+
// <SvgComponent icon="avatar-button-plus" />
|
|
204
|
+
// </Button>
|
|
205
|
+
// </div>
|
|
206
|
+
// </div>
|
|
207
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex flex-wrap align-items-center my-8 gap-3 my-8">
|
|
208
|
+
// <div className="flex align-items-center gap-3">
|
|
209
|
+
// <img
|
|
210
|
+
// src={avatar}
|
|
211
|
+
// className=" border-circle w-2rem h-2rem p-avatar-focus"
|
|
212
|
+
// />
|
|
213
|
+
// <div className="flex flex-column">
|
|
214
|
+
// <span className="text-base font-semibold line-height-2">
|
|
215
|
+
// Olivia Rhye
|
|
216
|
+
// </span>
|
|
217
|
+
// <span className="text-sm font-normal line-height-2">
|
|
218
|
+
// olivia@untitledui.com
|
|
219
|
+
// </span>
|
|
220
|
+
// </div>
|
|
221
|
+
// </div>
|
|
222
|
+
// <div className="flex align-items-center gap-3">
|
|
223
|
+
// <div className="w-2rem h-2rem border-circle flex align-items-center justify-content-center relative ">
|
|
224
|
+
// <img
|
|
225
|
+
// src={avatar}
|
|
226
|
+
// className=" border-circle w-2rem h-2rem p-avatar-focus"
|
|
227
|
+
// />
|
|
228
|
+
// <span
|
|
229
|
+
// className="bg-green-500 green-online-indicator-sm border-circle absolute border-1 border-white"
|
|
230
|
+
// style={{
|
|
231
|
+
// position: "absolute",
|
|
232
|
+
// right: "0",
|
|
233
|
+
// bottom: "0",
|
|
234
|
+
// }}
|
|
235
|
+
// ></span>
|
|
236
|
+
// </div>
|
|
237
|
+
// <div className="flex flex-column">
|
|
238
|
+
// <span className="text-base font-semibold line-height-2">
|
|
239
|
+
// Olivia Rhye
|
|
240
|
+
// </span>
|
|
241
|
+
// <span className="text-sm font-normal line-height-2">
|
|
242
|
+
// olivia@untitledui.com
|
|
243
|
+
// </span>
|
|
244
|
+
// </div>
|
|
245
|
+
// </div>
|
|
246
|
+
// <div className="flex align-items-center gap-3">
|
|
247
|
+
// <div className="w-3rem h-3rem border-circle flex align-items-center justify-content-center relative ">
|
|
248
|
+
// <img
|
|
249
|
+
// src={avatar}
|
|
250
|
+
// className=" border-circle w-3rem h-3rem p-avatar-focus"
|
|
251
|
+
// />
|
|
252
|
+
// <span
|
|
253
|
+
// className=" absolute "
|
|
254
|
+
// style={{
|
|
255
|
+
// right: "-2px",
|
|
256
|
+
// bottom: "-2px",
|
|
257
|
+
// }}
|
|
258
|
+
// >
|
|
259
|
+
// <SvgComponent icon="avatar-company-logo-lg" />
|
|
260
|
+
// </span>
|
|
261
|
+
// </div>
|
|
262
|
+
// <div className="flex flex-column">
|
|
263
|
+
// <span className="text-lg font-semibold line-height-3">
|
|
264
|
+
// Olivia Rhye
|
|
265
|
+
// </span>
|
|
266
|
+
// <span className="text-lg font-normal line-height-3">
|
|
267
|
+
// olivia@untitledui.com
|
|
268
|
+
// </span>
|
|
269
|
+
// </div>
|
|
270
|
+
// </div>
|
|
271
|
+
// <div className="flex align-items-center gap-3">
|
|
272
|
+
// <div className="w-4rem h-4rem border-circle flex align-items-center justify-content-center relative ">
|
|
273
|
+
// <img
|
|
274
|
+
// src={avatar}
|
|
275
|
+
// className=" border-circle w-4rem h-4rem p-avatar-focus"
|
|
276
|
+
// />
|
|
277
|
+
// <span
|
|
278
|
+
// className=" absolute "
|
|
279
|
+
// style={{
|
|
280
|
+
// right: "-2px",
|
|
281
|
+
// bottom: "-2px",
|
|
282
|
+
// }}
|
|
283
|
+
// >
|
|
284
|
+
// <SvgComponent icon="verified-tick-xl" />
|
|
285
|
+
// </span>
|
|
286
|
+
// </div>
|
|
287
|
+
// <div className="flex flex-column">
|
|
288
|
+
// <span className="text-lg font-semibold line-height-3">
|
|
289
|
+
// Olivia Rhye
|
|
290
|
+
// </span>
|
|
291
|
+
// <span className="text-lg font-normal line-height-3">
|
|
292
|
+
// olivia@untitledui.com
|
|
293
|
+
// </span>
|
|
294
|
+
// </div>
|
|
295
|
+
// </div>
|
|
296
|
+
// </div>
|
|
297
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex flex-wrap align-items-center my-8 gap-3 my-8">
|
|
298
|
+
// <div className="w-6rem h-6rem border-circle flex align-items-center justify-content-center relative ">
|
|
299
|
+
// <img
|
|
300
|
+
// src={avatar}
|
|
301
|
+
// className=" border-circle border-3 border-white w-6rem h-6rem shadow-4"
|
|
302
|
+
// />
|
|
303
|
+
// <span
|
|
304
|
+
// className=" absolute "
|
|
305
|
+
// style={{
|
|
306
|
+
// right: "2px",
|
|
307
|
+
// bottom: "2px",
|
|
308
|
+
// }}
|
|
309
|
+
// >
|
|
310
|
+
// <SvgComponent icon="verified-tick-3xl" />
|
|
311
|
+
// </span>
|
|
312
|
+
// </div>
|
|
313
|
+
// </div>
|
|
314
|
+
// <div className="col-12 md:col-4 lg:col-3 px-7 flex flex-wrap align-items-center my-8 gap-3 my-8">
|
|
315
|
+
// <div className="w-10rem flex flex-column align-items-start">
|
|
316
|
+
// <img src={profileimage} alt="profile" className="h-10rem " />
|
|
317
|
+
// <span className="text-lg text-gray-900 line-height-3 pt-2">
|
|
318
|
+
// Olivia Rhye
|
|
319
|
+
// </span>
|
|
320
|
+
// <span className="flex align-items-center gap-2 line-height-3 ">
|
|
321
|
+
// <a href="www.google.com">
|
|
322
|
+
// <SvgComponent icon="link-01" />
|
|
323
|
+
// </a>
|
|
324
|
+
// <a href="www.google.com" className="text-gray-500 font-normal">
|
|
325
|
+
// Source
|
|
326
|
+
// </a>
|
|
327
|
+
// </span>
|
|
328
|
+
// </div>
|
|
329
|
+
// </div>
|
|
330
|
+
// </div>
|
|
331
|
+
// </>
|
|
332
|
+
// );
|
|
333
|
+
// };
|
|
334
|
+
// export default AvatarComponent;
|
|
335
|
+
const avatar = () => {
|
|
336
|
+
return ((0, jsx_runtime_1.jsx)("div", { children: "avatar" }));
|
|
337
|
+
};
|
|
338
|
+
exports.default = avatar;
|