@admin-layout/demo-tailwind-browser 11.0.4-alpha.4 → 11.2.1-alpha.1
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/lib/components/OTPExamples.d.ts +7 -0
- package/lib/components/OTPExamples.d.ts.map +1 -0
- package/lib/components/OTPExamples.js +89 -0
- package/lib/components/OTPExamples.js.map +1 -0
- package/lib/components/ThemeShowCase/FeaturesSection.d.ts +2 -0
- package/lib/components/ThemeShowCase/FeaturesSection.d.ts.map +1 -0
- package/lib/components/ThemeShowCase/FeaturesSection.js +64 -0
- package/lib/components/ThemeShowCase/FeaturesSection.js.map +1 -0
- package/lib/components/ThemeShowCase/HeroSection.d.ts +2 -0
- package/lib/components/ThemeShowCase/HeroSection.d.ts.map +1 -0
- package/lib/components/ThemeShowCase/HeroSection.js +94 -0
- package/lib/components/ThemeShowCase/HeroSection.js.map +1 -0
- package/lib/components/ThemeShowCase/ThemeShowcase.d.ts +2 -0
- package/lib/components/ThemeShowCase/ThemeShowcase.d.ts.map +1 -0
- package/lib/components/ThemeShowCase/ThemeShowcase.js +242 -0
- package/lib/components/ThemeShowCase/ThemeShowcase.js.map +1 -0
- package/lib/components/ThemeShowCase/index.d.ts +3 -0
- package/lib/components/ThemeShowCase/index.d.ts.map +1 -0
- package/lib/components/ThemeShowCase/index.js +6 -0
- package/lib/components/ThemeShowCase/index.js.map +1 -0
- package/lib/components/exception/403/Component.d.ts.map +1 -1
- package/lib/components/exception/403/Component.js +7 -17
- package/lib/components/exception/403/Component.js.map +1 -1
- package/lib/components/exception/404/Component.d.ts.map +1 -1
- package/lib/components/exception/404/Component.js +7 -17
- package/lib/components/exception/404/Component.js.map +1 -1
- package/lib/components/exception/500/Component.d.ts.map +1 -1
- package/lib/components/exception/500/Component.js +7 -17
- package/lib/components/exception/500/Component.js.map +1 -1
- package/lib/components/exception/exception.js.map +1 -1
- package/lib/components/result/fail/Component.d.ts.map +1 -1
- package/lib/components/result/fail/Component.js +17 -26
- package/lib/components/result/fail/Component.js.map +1 -1
- package/lib/components/result/result.js.map +1 -1
- package/lib/components/result/success/Component.d.ts.map +1 -1
- package/lib/components/result/success/Component.js +12 -21
- package/lib/components/result/success/Component.js.map +1 -1
- package/lib/compute.d.ts.map +1 -1
- package/lib/compute.js +156 -8
- package/lib/compute.js.map +1 -1
- package/lib/fills/HeaderNoticeFill.d.ts +3 -0
- package/lib/fills/HeaderNoticeFill.d.ts.map +1 -0
- package/lib/fills/HeaderNoticeFill.js +15 -0
- package/lib/fills/HeaderNoticeFill.js.map +1 -0
- package/lib/module.d.ts.map +1 -1
- package/lib/module.js +5 -1
- package/lib/module.js.map +1 -1
- package/lib/pages/Home.d.ts +3 -0
- package/lib/pages/Home.d.ts.map +1 -0
- package/lib/pages/Home.js +15 -0
- package/lib/pages/Home.js.map +1 -0
- package/lib/routes.json +177 -10
- package/package.json +5 -5
|
@@ -1,36 +1,26 @@
|
|
|
1
|
-
import {jsx,jsxs}from'react/jsx-runtime';import {
|
|
1
|
+
import {jsx,jsxs}from'react/jsx-runtime';import {useTranslation}from'react-i18next';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';function Component() {
|
|
2
2
|
const {
|
|
3
3
|
t
|
|
4
4
|
} = useTranslation();
|
|
5
|
-
const {
|
|
6
|
-
settings: layoutSettings,
|
|
7
|
-
setSettings
|
|
8
|
-
} = useLayoutSettings();
|
|
9
5
|
return jsx("div", {
|
|
10
|
-
className: "w-full h-screen min-h-full bg-
|
|
6
|
+
className: "w-full h-screen min-h-full bg-background text-foreground themed-card flex flex-col items-center justify-center p-6",
|
|
11
7
|
children: jsxs("div", {
|
|
12
8
|
className: "flex flex-col items-center justify-center space-y-4",
|
|
13
9
|
children: [jsx("div", {
|
|
14
|
-
className: "text-8xl font-bold",
|
|
15
|
-
style: {
|
|
16
|
-
color: layoutSettings?.primaryColor
|
|
17
|
-
},
|
|
10
|
+
className: "text-8xl font-bold text-primary",
|
|
18
11
|
children: jsx("span", {
|
|
19
12
|
children: "404"
|
|
20
13
|
})
|
|
21
14
|
}), jsx("h1", {
|
|
22
|
-
className: "text-2xl font-bold text-
|
|
15
|
+
className: "text-2xl font-bold text-foreground",
|
|
23
16
|
children: "404"
|
|
24
17
|
}), jsx("p", {
|
|
25
|
-
className: "text-
|
|
18
|
+
className: "text-muted-foreground",
|
|
26
19
|
children: t('visit_not_exist')
|
|
27
20
|
}), jsx("div", {
|
|
28
21
|
className: "mt-4",
|
|
29
|
-
children: jsx(
|
|
30
|
-
className: "
|
|
31
|
-
style: {
|
|
32
|
-
backgroundColor: layoutSettings?.primaryColor
|
|
33
|
-
},
|
|
22
|
+
children: jsx(Button, {
|
|
23
|
+
className: "themed-button",
|
|
34
24
|
children: t('back_home')
|
|
35
25
|
})
|
|
36
26
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.js","sources":["../../../../src/components/exception/404/Component.tsx"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Component.js","sources":["../../../../src/components/exception/404/Component.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"qJAIA,SAAS,SAAS,GAAA;AACd,EAAA,MAAA;IAEA;AAcJ,GAAC,GAAA,cAAA,EAAA;AAED,EAAA,OAAAA,GAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/exception/500/Component.tsx"],"names":[],"mappings":"AAIA,iBAAS,SAAS,
|
|
1
|
+
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/exception/500/Component.tsx"],"names":[],"mappings":"AAIA,iBAAS,SAAS,4CAiBjB;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -1,36 +1,26 @@
|
|
|
1
|
-
import {jsx,jsxs}from'react/jsx-runtime';import {
|
|
1
|
+
import {jsx,jsxs}from'react/jsx-runtime';import {useTranslation}from'react-i18next';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';function Component() {
|
|
2
2
|
const {
|
|
3
3
|
t
|
|
4
4
|
} = useTranslation();
|
|
5
|
-
const {
|
|
6
|
-
settings: layoutSettings,
|
|
7
|
-
setSettings
|
|
8
|
-
} = useLayoutSettings();
|
|
9
5
|
return jsx("div", {
|
|
10
|
-
className: "w-full h-screen min-h-full bg-
|
|
6
|
+
className: "w-full h-screen min-h-full bg-background text-foreground themed-card flex flex-col items-center justify-center p-6",
|
|
11
7
|
children: jsxs("div", {
|
|
12
8
|
className: "flex flex-col items-center justify-center space-y-4",
|
|
13
9
|
children: [jsx("div", {
|
|
14
|
-
className: "text-8xl font-bold",
|
|
15
|
-
style: {
|
|
16
|
-
color: layoutSettings?.primaryColor
|
|
17
|
-
},
|
|
10
|
+
className: "text-8xl font-bold text-primary",
|
|
18
11
|
children: jsx("span", {
|
|
19
12
|
children: "500"
|
|
20
13
|
})
|
|
21
14
|
}), jsx("h1", {
|
|
22
|
-
className: "text-2xl font-bold text-
|
|
15
|
+
className: "text-2xl font-bold text-foreground",
|
|
23
16
|
children: "500"
|
|
24
17
|
}), jsx("p", {
|
|
25
|
-
className: "text-
|
|
18
|
+
className: "text-muted-foreground",
|
|
26
19
|
children: t('server_error')
|
|
27
20
|
}), jsx("div", {
|
|
28
21
|
className: "mt-4",
|
|
29
|
-
children: jsx(
|
|
30
|
-
className: "
|
|
31
|
-
style: {
|
|
32
|
-
backgroundColor: layoutSettings?.primaryColor
|
|
33
|
-
},
|
|
22
|
+
children: jsx(Button, {
|
|
23
|
+
className: "themed-button",
|
|
34
24
|
children: t('back_home')
|
|
35
25
|
})
|
|
36
26
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.js","sources":["../../../../src/components/exception/500/Component.tsx"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Component.js","sources":["../../../../src/components/exception/500/Component.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"qJAIA,SAAS,SAAS,GAAA;AACd,EAAA,MAAA;IAEA;AAcJ,GAAC,GAAA,cAAA,EAAA;AAED,EAAA,OAAAA,GAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exception.js","sources":["../../../src/components/exception/exception.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"0EAKA,SAAS,SAAS,CAAC,KAAY,EAAA;
|
|
1
|
+
{"version":3,"file":"exception.js","sources":["../../../src/components/exception/exception.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"0EAKA,SAAS,SAAS,CAAC,KAAY,EAAA;SAG3BA,GAAO,CAAA,MAAC,EAAM,EAAA,CAAA;AAClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/result/fail/Component.tsx"],"names":[],"mappings":"AAIA,iBAAS,SAAS,
|
|
1
|
+
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/result/fail/Component.tsx"],"names":[],"mappings":"AAIA,iBAAS,SAAS,4CA+CjB;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -1,60 +1,51 @@
|
|
|
1
|
-
import {jsxs,jsx}from'react/jsx-runtime';import {
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';import {IoCloseCircleOutline}from'@react-icons/all-files/io5/IoCloseCircleOutline.js';import {useTranslation}from'react-i18next';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';function Component() {
|
|
2
2
|
const {
|
|
3
3
|
t
|
|
4
4
|
} = useTranslation();
|
|
5
|
-
const {
|
|
6
|
-
settings: layoutSettings,
|
|
7
|
-
setSettings
|
|
8
|
-
} = useLayoutSettings();
|
|
9
5
|
return jsxs("div", {
|
|
10
|
-
className: "flex flex-col items-center justify-center min-h-screen bg-
|
|
6
|
+
className: "flex flex-col items-center justify-center min-h-screen bg-background text-foreground p-4",
|
|
11
7
|
children: [jsx("div", {
|
|
12
|
-
className: "text-6xl mb-4",
|
|
13
|
-
style: {
|
|
14
|
-
color: layoutSettings?.primaryColor
|
|
15
|
-
},
|
|
8
|
+
className: "text-error text-6xl mb-4",
|
|
16
9
|
children: jsx(IoCloseCircleOutline, {})
|
|
17
10
|
}), jsx("h1", {
|
|
18
|
-
className: "text-2xl font-bold text-
|
|
11
|
+
className: "text-2xl font-bold text-foreground mb-2",
|
|
19
12
|
children: t('submission_failed')
|
|
20
13
|
}), jsx("p", {
|
|
21
|
-
className: "text-
|
|
14
|
+
className: "text-muted-foreground mb-6",
|
|
22
15
|
children: t('check_modify_information_fail')
|
|
23
16
|
}), jsxs("div", {
|
|
24
17
|
className: "flex space-x-4",
|
|
25
|
-
children: [jsx(
|
|
26
|
-
className: "
|
|
27
|
-
style: {
|
|
28
|
-
backgroundColor: layoutSettings?.primaryColor
|
|
29
|
-
},
|
|
18
|
+
children: [jsx(Button, {
|
|
19
|
+
className: "themed-button",
|
|
30
20
|
children: t('go_console')
|
|
31
|
-
}), jsx(
|
|
32
|
-
|
|
21
|
+
}), jsx(Button, {
|
|
22
|
+
variant: "outline",
|
|
23
|
+
className: "border-border text-foreground hover:bg-muted",
|
|
33
24
|
children: t('buy_again')
|
|
34
25
|
})]
|
|
35
26
|
}), jsxs("div", {
|
|
36
27
|
className: "mt-8 text-left w-full max-w-md",
|
|
37
28
|
children: [jsxs("p", {
|
|
38
|
-
className: "text-lg font-semibold text-
|
|
29
|
+
className: "text-lg font-semibold text-foreground mb-4",
|
|
39
30
|
children: [t('content_submitted_following_error'), ":"]
|
|
40
31
|
}), jsxs("div", {
|
|
41
32
|
className: "space-y-2",
|
|
42
33
|
children: [jsxs("p", {
|
|
43
|
-
className: "flex items-center text-
|
|
34
|
+
className: "flex items-center text-muted-foreground",
|
|
44
35
|
children: [jsx(IoCloseCircleOutline, {
|
|
45
|
-
className: "text-
|
|
36
|
+
className: "text-error mr-2"
|
|
46
37
|
}), t('account_frozen'), ' ', jsxs("a", {
|
|
47
38
|
href: "#",
|
|
48
|
-
className: "text-
|
|
39
|
+
className: "text-primary hover:underline ml-1",
|
|
49
40
|
children: [t('thaw_immediately'), " >"]
|
|
50
41
|
})]
|
|
51
42
|
}), jsxs("p", {
|
|
52
|
-
className: "flex items-center text-
|
|
43
|
+
className: "flex items-center text-muted-foreground",
|
|
53
44
|
children: [jsx(IoCloseCircleOutline, {
|
|
54
|
-
className: "text-
|
|
45
|
+
className: "text-error mr-2"
|
|
55
46
|
}), t('account_not_yet_eligible'), ' ', jsxs("a", {
|
|
56
47
|
href: "#",
|
|
57
|
-
className: "text-
|
|
48
|
+
className: "text-primary hover:underline ml-1",
|
|
58
49
|
children: [t('apply_unlock'), " >"]
|
|
59
50
|
})]
|
|
60
51
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.js","sources":["../../../../src/components/result/fail/Component.tsx"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Component.js","sources":["../../../../src/components/result/fail/Component.tsx"],"sourcesContent":[null],"names":["_jsxs"],"mappings":"2OAIA,SAAS,SAAS,GAAA;AACd,EAAA,MAAA;AAEA,IAAA;AA4CJ,GAAC,GAAA,cAAA,EAAA;AAED,EAAA,OAAAA,IAAA,CAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"result.js","sources":["../../../src/components/result/result.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"0EAKA,SAAS,MAAM,CAAC,KAAY,EAAA;
|
|
1
|
+
{"version":3,"file":"result.js","sources":["../../../src/components/result/result.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"0EAKA,SAAS,MAAM,CAAC,KAAY,EAAA;SAGxBA,GAAO,CAAA,MAAC,EAAM,EAAA,CAAA;AAClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/result/success/Component.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../../../src/components/result/success/Component.tsx"],"names":[],"mappings":"AAIA,iBAAS,SAAS,4CAyBjB;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -1,37 +1,28 @@
|
|
|
1
|
-
import {jsxs,jsx}from'react/jsx-runtime';import {useTranslation}from'react-i18next';function Component() {
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';import {useTranslation}from'react-i18next';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';import {CheckCircle}from'lucide-react';function Component() {
|
|
2
2
|
const {
|
|
3
3
|
t
|
|
4
4
|
} = useTranslation();
|
|
5
5
|
return jsxs("div", {
|
|
6
|
-
className: "flex flex-col items-center justify-center min-h-screen bg-
|
|
6
|
+
className: "flex flex-col items-center justify-center min-h-screen bg-background text-foreground p-4",
|
|
7
7
|
children: [jsx("div", {
|
|
8
|
-
className: "text-
|
|
9
|
-
children: jsx(
|
|
10
|
-
|
|
11
|
-
className: "h-16 w-16",
|
|
12
|
-
fill: "none",
|
|
13
|
-
viewBox: "0 0 24 24",
|
|
14
|
-
stroke: "currentColor",
|
|
15
|
-
children: jsx("path", {
|
|
16
|
-
strokeLinecap: "round",
|
|
17
|
-
strokeLinejoin: "round",
|
|
18
|
-
strokeWidth: 2,
|
|
19
|
-
d: "M5 13l4 4L19 7"
|
|
20
|
-
})
|
|
8
|
+
className: "text-success text-6xl mb-4",
|
|
9
|
+
children: jsx(CheckCircle, {
|
|
10
|
+
className: "h-16 w-16"
|
|
21
11
|
})
|
|
22
12
|
}), jsx("h1", {
|
|
23
|
-
className: "text-2xl font-bold text-
|
|
13
|
+
className: "text-2xl font-bold text-foreground mb-2",
|
|
24
14
|
children: t('submission_success')
|
|
25
15
|
}), jsx("p", {
|
|
26
|
-
className: "text-
|
|
16
|
+
className: "text-muted-foreground mb-6",
|
|
27
17
|
children: t('check_modify_information_success')
|
|
28
18
|
}), jsxs("div", {
|
|
29
19
|
className: "flex space-x-4",
|
|
30
|
-
children: [jsx(
|
|
31
|
-
className: "
|
|
20
|
+
children: [jsx(Button, {
|
|
21
|
+
className: "themed-button",
|
|
32
22
|
children: t('go_console')
|
|
33
|
-
}), jsx(
|
|
34
|
-
|
|
23
|
+
}), jsx(Button, {
|
|
24
|
+
variant: "outline",
|
|
25
|
+
className: "border-border text-foreground hover:bg-muted",
|
|
35
26
|
children: t('buy_again')
|
|
36
27
|
})]
|
|
37
28
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component.js","sources":["../../../../src/components/result/success/Component.tsx"],"sourcesContent":[null],"names":["_jsxs"],"mappings":"
|
|
1
|
+
{"version":3,"file":"Component.js","sources":["../../../../src/components/result/success/Component.tsx"],"sourcesContent":[null],"names":["_jsxs"],"mappings":"4LAIA,SAAS,SAAS,GAAA;AACd,EAAA,MAAA;AAEA,IAAA;AAsBJ,GAAC,GAAA,cAAA,EAAA;AAED,EAAA,OAAAA,IAAA,CAAe;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/lib/compute.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compute.d.ts","sourceRoot":"","sources":["../src/compute.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"compute.d.ts","sourceRoot":"","sources":["../src/compute.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU,EAAE,GA0NxB,CAAC;AAMF,QAAA,MAAM,aAAa,0CAA4C,CAAC;AAGhE,QAAA,MAAM,cAAc,0CAA6C,CAAC;AAElE,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,CAAC"}
|
package/lib/compute.js
CHANGED
|
@@ -2,9 +2,37 @@ import { ORG_STD_ROUTES } from '@adminide-stack/core/lib/constants/urls.js';
|
|
|
2
2
|
import { IMenuPosition } from '@common-stack/core';
|
|
3
3
|
import { getFilteredMenus, getFilteredRoutes } from '@common-stack/client-react/lib/utils/filteredRoutes.js';
|
|
4
4
|
const MainRoutes = [{
|
|
5
|
+
// exact: true,
|
|
6
|
+
key: 'home',
|
|
7
|
+
name: 'Home',
|
|
8
|
+
// extraIcons: [
|
|
9
|
+
// `rifi.${IIconRifi.RifiAllCategories}`,
|
|
10
|
+
// `rifi.${IIconRifi.RifiAppartments}`,
|
|
11
|
+
// `rifi.${IIconRifi.RifiArtStudio}`,
|
|
12
|
+
// `rifi.${IIconRifi.RifiBasketballCourt}`,
|
|
13
|
+
// `rifi.${IIconRifi.RifiBeautifulGardens}`,
|
|
14
|
+
// `rifi.${IIconRifi.RifiDocketBoat}`,
|
|
15
|
+
// `rifi.${IIconRifi.RifiFarmHouse}`,
|
|
16
|
+
// `rifi.${IIconRifi.RifiGuestHouse}`,
|
|
17
|
+
// `rifi.${IIconRifi.RifiHomeGym}`,
|
|
18
|
+
// `rifi.${IIconRifi.RifiHomeTheater}`,
|
|
19
|
+
// `rifi.${IIconRifi.RifiHostel}`,
|
|
20
|
+
// `rifi.${IIconRifi.RifiHotel}`,
|
|
21
|
+
// ],
|
|
22
|
+
// extraProps: {
|
|
23
|
+
// keyToMapIconsDescriptionInCategory: 'name',
|
|
24
|
+
// keyToMapIconsInCategory: 'icon',
|
|
25
|
+
// },
|
|
26
|
+
// index: true,
|
|
27
|
+
hideInMenu: true,
|
|
28
|
+
icon: '',
|
|
29
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/dashboard`,
|
|
30
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/pages/Home.js",
|
|
31
|
+
hasComponent: true
|
|
32
|
+
}, {
|
|
5
33
|
name: 'Exception',
|
|
6
34
|
key: 'menu.exception',
|
|
7
|
-
icon: '',
|
|
35
|
+
icon: 'IoMdSettings',
|
|
8
36
|
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/exception`,
|
|
9
37
|
position: IMenuPosition.Lower,
|
|
10
38
|
exact: false,
|
|
@@ -43,7 +71,7 @@ const MainRoutes = [{
|
|
|
43
71
|
}, {
|
|
44
72
|
name: 'Result',
|
|
45
73
|
key: 'menu.result',
|
|
46
|
-
icon: '',
|
|
74
|
+
icon: 'IoIosClipboard',
|
|
47
75
|
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result`,
|
|
48
76
|
position: IMenuPosition.Lower,
|
|
49
77
|
auth: true,
|
|
@@ -51,9 +79,49 @@ const MainRoutes = [{
|
|
|
51
79
|
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
52
80
|
hasComponent: true
|
|
53
81
|
}, {
|
|
54
|
-
name: '
|
|
55
|
-
key: 'menu.
|
|
56
|
-
|
|
82
|
+
name: 'Result Student 1',
|
|
83
|
+
key: 'menu.resultStudent1',
|
|
84
|
+
icon: 'IoIosClipboard',
|
|
85
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-1`,
|
|
86
|
+
position: IMenuPosition.Lower,
|
|
87
|
+
auth: true,
|
|
88
|
+
exact: false,
|
|
89
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
90
|
+
hasComponent: true
|
|
91
|
+
}, {
|
|
92
|
+
name: 'Result Student 2',
|
|
93
|
+
key: 'menu.resultStudent2',
|
|
94
|
+
icon: 'IoIosClipboard',
|
|
95
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2`,
|
|
96
|
+
position: IMenuPosition.Lower,
|
|
97
|
+
auth: true,
|
|
98
|
+
exact: false,
|
|
99
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
100
|
+
hasComponent: true
|
|
101
|
+
}, {
|
|
102
|
+
name: 'Result Student 4',
|
|
103
|
+
key: 'menu.resultStudent4',
|
|
104
|
+
icon: 'IoIosClipboard',
|
|
105
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2/beena`,
|
|
106
|
+
position: IMenuPosition.Lower,
|
|
107
|
+
auth: true,
|
|
108
|
+
exact: false,
|
|
109
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
110
|
+
hasComponent: true
|
|
111
|
+
}, {
|
|
112
|
+
name: 'Result Student 3',
|
|
113
|
+
key: 'menu.resultStudent3',
|
|
114
|
+
icon: 'IoIosClipboard',
|
|
115
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-3`,
|
|
116
|
+
position: IMenuPosition.Lower,
|
|
117
|
+
auth: true,
|
|
118
|
+
exact: false,
|
|
119
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
120
|
+
hasComponent: true
|
|
121
|
+
}, {
|
|
122
|
+
name: 'Student 1 Success',
|
|
123
|
+
key: 'menu.resultStudent1.success',
|
|
124
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-1/success`,
|
|
57
125
|
auth: true,
|
|
58
126
|
position: IMenuPosition.Lower,
|
|
59
127
|
exact: true,
|
|
@@ -61,15 +129,95 @@ const MainRoutes = [{
|
|
|
61
129
|
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
62
130
|
hasComponent: true
|
|
63
131
|
}, {
|
|
64
|
-
name: 'Fail',
|
|
65
|
-
key: 'menu.
|
|
66
|
-
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/fail`,
|
|
132
|
+
name: 'Student 1 Fail',
|
|
133
|
+
key: 'menu.resultStudent1.fail',
|
|
134
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-1/fail`,
|
|
67
135
|
auth: true,
|
|
68
136
|
position: IMenuPosition.Lower,
|
|
69
137
|
exact: true,
|
|
70
138
|
priority: 2,
|
|
71
139
|
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
72
140
|
hasComponent: true
|
|
141
|
+
}, {
|
|
142
|
+
name: 'Student 2 Success',
|
|
143
|
+
key: 'menu.resultStudent2.success',
|
|
144
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2/success`,
|
|
145
|
+
auth: true,
|
|
146
|
+
position: IMenuPosition.Lower,
|
|
147
|
+
exact: true,
|
|
148
|
+
priority: 1,
|
|
149
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
150
|
+
hasComponent: true
|
|
151
|
+
}, {
|
|
152
|
+
name: 'Student 2 Fail',
|
|
153
|
+
key: 'menu.resultStudent2.fail',
|
|
154
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2/fail`,
|
|
155
|
+
auth: true,
|
|
156
|
+
position: IMenuPosition.Lower,
|
|
157
|
+
exact: true,
|
|
158
|
+
priority: 2,
|
|
159
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
160
|
+
hasComponent: true
|
|
161
|
+
}, {
|
|
162
|
+
name: 'Beena Success',
|
|
163
|
+
key: 'menu.resultStudent4.success',
|
|
164
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2/beena/success`,
|
|
165
|
+
auth: true,
|
|
166
|
+
position: IMenuPosition.Lower,
|
|
167
|
+
exact: true,
|
|
168
|
+
priority: 1,
|
|
169
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
170
|
+
hasComponent: true
|
|
171
|
+
}, {
|
|
172
|
+
name: 'Beena Fail',
|
|
173
|
+
key: 'menu.resultStudent4.fail',
|
|
174
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-2/beena/fail`,
|
|
175
|
+
auth: true,
|
|
176
|
+
position: IMenuPosition.Lower,
|
|
177
|
+
exact: true,
|
|
178
|
+
priority: 2,
|
|
179
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
180
|
+
hasComponent: true
|
|
181
|
+
}, {
|
|
182
|
+
name: 'Student 3 Success',
|
|
183
|
+
key: 'menu.resultStudent3.success',
|
|
184
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-3/success`,
|
|
185
|
+
auth: true,
|
|
186
|
+
position: IMenuPosition.Lower,
|
|
187
|
+
exact: true,
|
|
188
|
+
priority: 1,
|
|
189
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
190
|
+
hasComponent: true
|
|
191
|
+
}, {
|
|
192
|
+
name: 'Student 3 Fail',
|
|
193
|
+
key: 'menu.resultStudent3.fail',
|
|
194
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/result/student-3/fail`,
|
|
195
|
+
auth: true,
|
|
196
|
+
position: IMenuPosition.Lower,
|
|
197
|
+
exact: true,
|
|
198
|
+
priority: 2,
|
|
199
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
200
|
+
hasComponent: true
|
|
201
|
+
}, {
|
|
202
|
+
name: 'ThemeShowCase',
|
|
203
|
+
key: 'menu.themeShowCase',
|
|
204
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/themeShowCase`,
|
|
205
|
+
auth: true,
|
|
206
|
+
position: IMenuPosition.Lower,
|
|
207
|
+
exact: true,
|
|
208
|
+
priority: 2,
|
|
209
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/ThemeShowCase/index.js",
|
|
210
|
+
hasComponent: true
|
|
211
|
+
}, {
|
|
212
|
+
name: 'OTP Example',
|
|
213
|
+
key: 'menu.otp',
|
|
214
|
+
path: `${ORG_STD_ROUTES.ORG_BASE_PATH}/otp-example`,
|
|
215
|
+
auth: true,
|
|
216
|
+
position: IMenuPosition.Lower,
|
|
217
|
+
exact: true,
|
|
218
|
+
priority: 2,
|
|
219
|
+
componentPath: "@admin-layout/demo-tailwind-browser/lib/components/OTPExamples.js",
|
|
220
|
+
hasComponent: true
|
|
73
221
|
}];
|
|
74
222
|
// Using '*' to select all routes and menus
|
|
75
223
|
const selectedAll = '*';
|
package/lib/compute.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compute.js","sources":["../src/compute.ts"],"sourcesContent":[null],"names":[],"mappings":"+
|
|
1
|
+
{"version":3,"file":"compute.js","sources":["../src/compute.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HeaderNoticeFill.d.ts","sourceRoot":"","sources":["../../src/fills/HeaderNoticeFill.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,qBAAqB,GAAI,UAAK,4CAE1C,CAAC;AAEF,eAAO,MAAM,gBAAgB,+CAQ5B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import {jsx}from'react/jsx-runtime';import {Fill}from'@common-stack/components-pro';import {HEADER_NOTICE_SLOT_FILL_NAME}from'@admin-layout/tailwind-design-pro/lib/components/Layout/slot-fill/HeaderNotice.js';const HeaderNoticeComponent = props => {
|
|
2
|
+
return jsx("div", {
|
|
3
|
+
children: "Header Notice shows here"
|
|
4
|
+
});
|
|
5
|
+
};
|
|
6
|
+
const HeaderNoticeFill = () => {
|
|
7
|
+
return jsx(Fill, {
|
|
8
|
+
name: HEADER_NOTICE_SLOT_FILL_NAME,
|
|
9
|
+
children: props => {
|
|
10
|
+
return jsx(HeaderNoticeComponent, {
|
|
11
|
+
...props
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
};export{HeaderNoticeComponent,HeaderNoticeFill};//# sourceMappingURL=HeaderNoticeFill.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HeaderNoticeFill.js","sources":["../../src/fills/HeaderNoticeFill.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"iNAGO,MAAM,qBAAqB,GAAG,KAAC,IAAO;AACzC,EAAA,OAAAA;AACJ,IAAE,QAAA,EAAA;AAEF,GAAA,CAAA;;AAIgB,MAAA,gBAAQ,GAAA,MAAA;SACXA,GAER,CAAC,IAAA,EAAA;AACN,IAAE,IAAA,EAAA,4BAAA;;;;;;;"}
|
package/lib/module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;;
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;;AAIrD,wBAQG"}
|
package/lib/module.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import {Feature}from'@common-stack/client-react';import {filteredRoutes}from'./compute.js';var settings = new Feature({
|
|
1
|
+
import {Feature}from'@common-stack/client-react';import {filteredRoutes}from'./compute.js';import {HEADER_NOTICE_SLOT_FILL_NAME}from'@admin-layout/tailwind-design-pro/lib/components/Layout/slot-fill/HeaderNotice.js';import {HeaderNoticeFill}from'./fills/HeaderNoticeFill.js';var settings = new Feature({
|
|
2
|
+
componentFillPlugins: [{
|
|
3
|
+
name: HEADER_NOTICE_SLOT_FILL_NAME,
|
|
4
|
+
render: HeaderNoticeFill
|
|
5
|
+
}],
|
|
2
6
|
routeConfig: filteredRoutes
|
|
3
7
|
});export{settings as default};//# sourceMappingURL=module.js.map
|
package/lib/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sources":["../src/module.tsx"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.js","sources":["../src/module.tsx"],"sourcesContent":[null],"names":[],"mappings":"mRAKA,eAAe,IAAI,OAAO,CAAC;AACvB,EAAA,oBAAA,EAAoB,CAAA;AAChB,IAAA,IAAA,EAAA,4BAAA;AACI,IAAA,MAAA,EAAA;AACA,GAAA,CAAA;AACH,EAAA,WAAA,EAAA;AACJ,CAAA,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Home.d.ts","sourceRoot":"","sources":["../../src/pages/Home.tsx"],"names":[],"mappings":"AAGA,iBAAS,IAAI,4CAgBZ;AAED,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import {jsx}from'react/jsx-runtime';import React from'react';import {Await}from'@remix-run/react';function Home() {
|
|
2
|
+
return jsx(React.Suspense, {
|
|
3
|
+
fallback: 'Loading...',
|
|
4
|
+
children: jsx(Await, {
|
|
5
|
+
resolve: [
|
|
6
|
+
// loaderData.reservationsQueryLoader
|
|
7
|
+
],
|
|
8
|
+
children: jsx("div", {
|
|
9
|
+
children: jsx("h1", {
|
|
10
|
+
children: "Home"
|
|
11
|
+
})
|
|
12
|
+
})
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
}export{Home as default};//# sourceMappingURL=Home.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Home.js","sources":["../../src/pages/Home.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"kGAGA,SAAS,IAAI,GAAA;AACT,EAAA,OAAAA,GACI,CAAA,KAAC,CAAA;YAIe,EAAA,YAAA;AACH,IAAA,QAAA,EAAAA,GAAA,CAAA,KAAA;AASrB,MAAC,OAAA,EAAA;AAED;;;;;;;;;"}
|