@ebubekirylmaz/link-test 1.2.45 → 1.2.47
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/package.json +5 -1
- package/src/assets/illustrations/avatar-shape.jsx +6 -7
- package/src/assets/illustrations/booking-illustration.jsx +4 -14
- package/src/assets/illustrations/check-in-illustration.jsx +4 -10
- package/src/assets/illustrations/check-out-illustration.jsx +4 -3
- package/src/assets/illustrations/coming-soon-illustration.jsx +4 -17
- package/src/assets/illustrations/forbidden-illustration.jsx +4 -12
- package/src/assets/illustrations/maintenance-illustration.jsx +4 -24
- package/src/assets/illustrations/motivation-illustration.jsx +4 -9
- package/src/assets/illustrations/order-complete-illustration.jsx +4 -12
- package/src/assets/illustrations/page-not-found-illustration.jsx +4 -9
- package/src/assets/illustrations/seo-illustration.jsx +4 -16
- package/src/assets/illustrations/sever-error-illustration.jsx +4 -21
- package/src/assets/illustrations/upgrade-storage-illustration.jsx +4 -20
- package/src/assets/illustrations/upload-illustration.jsx +4 -81
- package/src/components/NucleoidLoginForm/NucleoidLoginForm.jsx +1 -0
- package/src/components/TopNavBar/TopNavBar.jsx +6 -2
- package/src/components/file-thumbnail/file-thumbnail.jsx +5 -6
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +5 -6
- package/src/components/settings/drawer/layout-options.jsx +5 -4
- package/src/components/settings/drawer/presets-options.jsx +6 -5
- package/src/components/settings/drawer/settings-drawer.jsx +7 -4
- package/src/components/settings/drawer/stretch-options.jsx +5 -5
- package/src/layouts/DashboardLayout/header.jsx +5 -4
- package/src/layouts/DashboardLayout/nav-mini.jsx +5 -7
- package/src/layouts/DashboardLayout/nav-vertical.jsx +11 -11
- package/src/layouts/FullScreenLayout/FullScreenLayout.jsx +5 -1
- package/src/layouts/FullScreenLayout/nav-vertical.jsx +11 -11
- package/src/layouts/MainLayout/footer.jsx +7 -7
- package/src/layouts/MainLayout/header.jsx +3 -2
- package/src/layouts/MainLayout/nav/desktop/nav-list.jsx +8 -8
- package/src/layouts/MainLayout/nav/mobile/index.jsx +7 -6
- package/src/layouts/TwoSideLayout/TwoSideLayout.jsx +1 -1
- package/src/layouts/auth/classic.jsx +6 -6
- package/src/layouts/auth/modern.jsx +3 -4
- package/src/layouts/common/ProjectBar/index.jsx +13 -11
- package/src/layouts/common/header-sim.jsx +3 -2
- package/src/layouts/common/header-simple.jsx +6 -3
- package/src/layouts/common/notifications-popover/index.jsx +18 -13
- package/src/layouts/common/notifications-popover/notification-item.jsx +28 -16
- package/src/lib/APIPath/APIPath.jsx +2 -2
- package/src/lib/APITree/APITree.jsx +3 -1
- package/src/lib/AddItemWizard/AddItemWizard.jsx +21 -10
- package/src/lib/CustomBreadcrumbs/CustomBreadcrumbs.jsx +3 -2
- package/src/lib/Flow/layouts/CardLayout.jsx +4 -3
- package/src/lib/Flow/nodes/DefaultCard.jsx +6 -8
- package/src/lib/IconSelector/IconSelector.jsx +5 -1
- package/src/lib/ItemSummary/ItemSummary.jsx +11 -6
- package/src/lib/ItemSummary/ItemsSummary.jsx +38 -26
- package/src/lib/ResourceMenu/ResourceMenu.jsx +3 -1
- package/src/lib/SparkleInput/SparkleInput.jsx +31 -28
- package/src/lib/TableSelectedAction/TableSelectedAction.jsx +7 -8
- package/src/pages/ConfigError.jsx +3 -1
- package/src/theme/overrides/default-props.jsx +17 -11
- package/src/widgets/Login/CognitoLogin.jsx +61 -53
- package/src/widgets/Login/DemoLogin.jsx +34 -31
- package/src/widgets/SettingsDialog.jsx +45 -19
|
@@ -62,13 +62,6 @@ export default function DemoLogin() {
|
|
|
62
62
|
value={username}
|
|
63
63
|
onChange={(e) => setUsername(e.target.value)}
|
|
64
64
|
fullWidth
|
|
65
|
-
InputProps={{
|
|
66
|
-
startAdornment: (
|
|
67
|
-
<InputAdornment position="start">
|
|
68
|
-
<PersonOutline sx={{ color: "text.secondary", fontSize: 22 }} />
|
|
69
|
-
</InputAdornment>
|
|
70
|
-
),
|
|
71
|
-
}}
|
|
72
65
|
sx={{
|
|
73
66
|
"& .MuiOutlinedInput-root": {
|
|
74
67
|
fontSize: "1rem",
|
|
@@ -80,6 +73,15 @@ export default function DemoLogin() {
|
|
|
80
73
|
},
|
|
81
74
|
},
|
|
82
75
|
}}
|
|
76
|
+
slotProps={{
|
|
77
|
+
input: {
|
|
78
|
+
startAdornment: (
|
|
79
|
+
<InputAdornment position="start">
|
|
80
|
+
<PersonOutline sx={{ color: "text.secondary", fontSize: 22 }} />
|
|
81
|
+
</InputAdornment>
|
|
82
|
+
),
|
|
83
|
+
}
|
|
84
|
+
}}
|
|
83
85
|
/>
|
|
84
86
|
|
|
85
87
|
<TextField
|
|
@@ -88,25 +90,6 @@ export default function DemoLogin() {
|
|
|
88
90
|
value={password}
|
|
89
91
|
onChange={(e) => setPassword(e.target.value)}
|
|
90
92
|
fullWidth
|
|
91
|
-
InputProps={{
|
|
92
|
-
startAdornment: (
|
|
93
|
-
<InputAdornment position="start">
|
|
94
|
-
<LockOutlined sx={{ color: "text.secondary", fontSize: 22 }} />
|
|
95
|
-
</InputAdornment>
|
|
96
|
-
),
|
|
97
|
-
endAdornment: (
|
|
98
|
-
<InputAdornment position="end">
|
|
99
|
-
<IconButton
|
|
100
|
-
onClick={() => setShowPassword(!showPassword)}
|
|
101
|
-
edge="end"
|
|
102
|
-
size="small"
|
|
103
|
-
tabIndex={-1}
|
|
104
|
-
>
|
|
105
|
-
{showPassword ? <VisibilityOff /> : <Visibility />}
|
|
106
|
-
</IconButton>
|
|
107
|
-
</InputAdornment>
|
|
108
|
-
),
|
|
109
|
-
}}
|
|
110
93
|
sx={{
|
|
111
94
|
"& .MuiOutlinedInput-root": {
|
|
112
95
|
fontSize: "1rem",
|
|
@@ -123,9 +106,29 @@ export default function DemoLogin() {
|
|
|
123
106
|
handleLogin();
|
|
124
107
|
}
|
|
125
108
|
}}
|
|
109
|
+
slotProps={{
|
|
110
|
+
input: {
|
|
111
|
+
startAdornment: (
|
|
112
|
+
<InputAdornment position="start">
|
|
113
|
+
<LockOutlined sx={{ color: "text.secondary", fontSize: 22 }} />
|
|
114
|
+
</InputAdornment>
|
|
115
|
+
),
|
|
116
|
+
endAdornment: (
|
|
117
|
+
<InputAdornment position="end">
|
|
118
|
+
<IconButton
|
|
119
|
+
onClick={() => setShowPassword(!showPassword)}
|
|
120
|
+
edge="end"
|
|
121
|
+
size="small"
|
|
122
|
+
tabIndex={-1}
|
|
123
|
+
>
|
|
124
|
+
{showPassword ? <VisibilityOff /> : <Visibility />}
|
|
125
|
+
</IconButton>
|
|
126
|
+
</InputAdornment>
|
|
127
|
+
),
|
|
128
|
+
}
|
|
129
|
+
}}
|
|
126
130
|
/>
|
|
127
131
|
</Stack>
|
|
128
|
-
|
|
129
132
|
<Button
|
|
130
133
|
variant="contained"
|
|
131
134
|
onClick={handleLogin}
|
|
@@ -153,7 +156,6 @@ export default function DemoLogin() {
|
|
|
153
156
|
>
|
|
154
157
|
Sign in
|
|
155
158
|
</Button>
|
|
156
|
-
|
|
157
159
|
<Box
|
|
158
160
|
sx={{
|
|
159
161
|
mt: 1,
|
|
@@ -167,9 +169,10 @@ export default function DemoLogin() {
|
|
|
167
169
|
>
|
|
168
170
|
<Typography
|
|
169
171
|
variant="caption"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
172
|
+
sx={{
|
|
173
|
+
color: "text.secondary",
|
|
174
|
+
fontSize: "0.8125rem"
|
|
175
|
+
}}>
|
|
173
176
|
Demo credentials:{" "}
|
|
174
177
|
<Box component="strong" sx={{ color: "text.primary" }}>
|
|
175
178
|
admin / admin
|
|
@@ -167,11 +167,13 @@ function SettingsDialog({ handleClose, open }) {
|
|
|
167
167
|
maxWidth={"md"}
|
|
168
168
|
onClose={() => handleClose()}
|
|
169
169
|
sx={{ bgcolor: "custom.darkDialogBg", zIndex: 2147483647 }}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
170
|
+
slotProps={{
|
|
171
|
+
paper: {
|
|
172
|
+
style: {
|
|
173
|
+
color: "white",
|
|
174
|
+
minHeight: 600,
|
|
175
|
+
},
|
|
176
|
+
}
|
|
175
177
|
}}
|
|
176
178
|
>
|
|
177
179
|
<DialogContent>
|
|
@@ -212,9 +214,13 @@ const Permission = () => {
|
|
|
212
214
|
}, [event, event2]);
|
|
213
215
|
|
|
214
216
|
return (
|
|
215
|
-
<Stack direction="column" spacing={2}
|
|
217
|
+
<Stack direction="column" spacing={2} sx={{
|
|
218
|
+
p: 2
|
|
219
|
+
}}>
|
|
216
220
|
<Typography variant="h6">Users</Typography>
|
|
217
|
-
<Typography variant="subtitle2"
|
|
221
|
+
<Typography variant="subtitle2" sx={{
|
|
222
|
+
color: "text.secondary"
|
|
223
|
+
}}>
|
|
218
224
|
Users with access to the project.
|
|
219
225
|
</Typography>
|
|
220
226
|
<List>
|
|
@@ -300,9 +306,13 @@ const Settings = () => {
|
|
|
300
306
|
};
|
|
301
307
|
|
|
302
308
|
return (
|
|
303
|
-
<Stack direction="column" spacing={2}
|
|
309
|
+
<Stack direction="column" spacing={2} sx={{
|
|
310
|
+
p: 2
|
|
311
|
+
}}>
|
|
304
312
|
<Typography variant="h6">Settings</Typography>
|
|
305
|
-
<Typography variant="subtitle2"
|
|
313
|
+
<Typography variant="subtitle2" sx={{
|
|
314
|
+
color: "text.secondary"
|
|
315
|
+
}}>
|
|
306
316
|
Configure your application settings.
|
|
307
317
|
</Typography>
|
|
308
318
|
<List>
|
|
@@ -363,7 +373,9 @@ const About = () => {
|
|
|
363
373
|
const description = pkg.description;
|
|
364
374
|
|
|
365
375
|
return (
|
|
366
|
-
<Stack direction="column" spacing={2}
|
|
376
|
+
<Stack direction="column" spacing={2} sx={{
|
|
377
|
+
p: 2
|
|
378
|
+
}}>
|
|
367
379
|
<Box
|
|
368
380
|
sx={{
|
|
369
381
|
p: 3,
|
|
@@ -374,7 +386,9 @@ const About = () => {
|
|
|
374
386
|
"linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01))",
|
|
375
387
|
}}
|
|
376
388
|
>
|
|
377
|
-
<Stack direction="row" spacing={2.5}
|
|
389
|
+
<Stack direction="row" spacing={2.5} sx={{
|
|
390
|
+
alignItems: "center"
|
|
391
|
+
}}>
|
|
378
392
|
<Avatar
|
|
379
393
|
src={iconSrc}
|
|
380
394
|
variant="rounded"
|
|
@@ -390,16 +404,20 @@ const About = () => {
|
|
|
390
404
|
</Avatar>
|
|
391
405
|
|
|
392
406
|
<Box sx={{ flex: 1, minWidth: 0 }}>
|
|
393
|
-
<Typography variant="h5"
|
|
407
|
+
<Typography variant="h5" sx={{
|
|
408
|
+
fontWeight: 600
|
|
409
|
+
}}>
|
|
394
410
|
{appName.toUpperCase()}
|
|
395
411
|
</Typography>
|
|
396
412
|
|
|
397
413
|
{description && (
|
|
398
414
|
<Typography
|
|
399
415
|
variant="body2"
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
416
|
+
sx={{
|
|
417
|
+
color: "text.secondary",
|
|
418
|
+
mt: 0.5,
|
|
419
|
+
maxWidth: 520
|
|
420
|
+
}}>
|
|
403
421
|
{description}
|
|
404
422
|
</Typography>
|
|
405
423
|
)}
|
|
@@ -442,7 +460,9 @@ const About = () => {
|
|
|
442
460
|
textAlign: "center",
|
|
443
461
|
}}
|
|
444
462
|
>
|
|
445
|
-
<Typography variant="caption"
|
|
463
|
+
<Typography variant="caption" sx={{
|
|
464
|
+
color: "text.secondary"
|
|
465
|
+
}}>
|
|
446
466
|
© 2026 greycollar.ai. All rights reserved.
|
|
447
467
|
</Typography>
|
|
448
468
|
</Box>
|
|
@@ -453,11 +473,17 @@ const About = () => {
|
|
|
453
473
|
|
|
454
474
|
const InfoRow = ({ label, value, link }) => {
|
|
455
475
|
return (
|
|
456
|
-
<Stack direction="row" spacing={1.5}
|
|
457
|
-
|
|
476
|
+
<Stack direction="row" spacing={1.5} sx={{
|
|
477
|
+
alignItems: "center"
|
|
478
|
+
}}>
|
|
479
|
+
<Typography
|
|
480
|
+
variant="body2"
|
|
481
|
+
sx={{
|
|
482
|
+
color: "text.secondary",
|
|
483
|
+
minWidth: 110
|
|
484
|
+
}}>
|
|
458
485
|
{label}
|
|
459
486
|
</Typography>
|
|
460
|
-
|
|
461
487
|
{link ? (
|
|
462
488
|
<Link href={link} target="_blank" rel="noreferrer" underline="hover">
|
|
463
489
|
{value}
|