@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
package/lib/routes.json
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"/o/:orgName/dashboard": {
|
|
4
|
+
"key": "home",
|
|
5
|
+
"name": "Home",
|
|
6
|
+
"hideInMenu": true,
|
|
7
|
+
"icon": "",
|
|
8
|
+
"path": "/o/:orgName/dashboard",
|
|
9
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/pages/Home.js",
|
|
10
|
+
"hasComponent": true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
2
13
|
{
|
|
3
14
|
"/o/:orgName/exception": {
|
|
4
15
|
"name": "Exception",
|
|
5
16
|
"key": "menu.exception",
|
|
6
|
-
"icon": "",
|
|
17
|
+
"icon": "IoMdSettings",
|
|
7
18
|
"path": "/o/:orgName/exception",
|
|
8
19
|
"position": "LOWER",
|
|
9
20
|
"exact": false,
|
|
@@ -54,7 +65,7 @@
|
|
|
54
65
|
"/o/:orgName/result": {
|
|
55
66
|
"name": "Result",
|
|
56
67
|
"key": "menu.result",
|
|
57
|
-
"icon": "",
|
|
68
|
+
"icon": "IoIosClipboard",
|
|
58
69
|
"path": "/o/:orgName/result",
|
|
59
70
|
"position": "LOWER",
|
|
60
71
|
"auth": true,
|
|
@@ -64,10 +75,62 @@
|
|
|
64
75
|
}
|
|
65
76
|
},
|
|
66
77
|
{
|
|
67
|
-
"/o/:orgName/result/
|
|
68
|
-
"name": "
|
|
69
|
-
"key": "menu.
|
|
70
|
-
"
|
|
78
|
+
"/o/:orgName/result/student-1": {
|
|
79
|
+
"name": "Result Student 1",
|
|
80
|
+
"key": "menu.resultStudent1",
|
|
81
|
+
"icon": "IoIosClipboard",
|
|
82
|
+
"path": "/o/:orgName/result/student-1",
|
|
83
|
+
"position": "LOWER",
|
|
84
|
+
"auth": true,
|
|
85
|
+
"exact": false,
|
|
86
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
87
|
+
"hasComponent": true
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"/o/:orgName/result/student-2": {
|
|
92
|
+
"name": "Result Student 2",
|
|
93
|
+
"key": "menu.resultStudent2",
|
|
94
|
+
"icon": "IoIosClipboard",
|
|
95
|
+
"path": "/o/:orgName/result/student-2",
|
|
96
|
+
"position": "LOWER",
|
|
97
|
+
"auth": true,
|
|
98
|
+
"exact": false,
|
|
99
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
100
|
+
"hasComponent": true
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"/o/:orgName/result/student-2/beena": {
|
|
105
|
+
"name": "Result Student 4",
|
|
106
|
+
"key": "menu.resultStudent4",
|
|
107
|
+
"icon": "IoIosClipboard",
|
|
108
|
+
"path": "/o/:orgName/result/student-2/beena",
|
|
109
|
+
"position": "LOWER",
|
|
110
|
+
"auth": true,
|
|
111
|
+
"exact": false,
|
|
112
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
113
|
+
"hasComponent": true
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"/o/:orgName/result/student-3": {
|
|
118
|
+
"name": "Result Student 3",
|
|
119
|
+
"key": "menu.resultStudent3",
|
|
120
|
+
"icon": "IoIosClipboard",
|
|
121
|
+
"path": "/o/:orgName/result/student-3",
|
|
122
|
+
"position": "LOWER",
|
|
123
|
+
"auth": true,
|
|
124
|
+
"exact": false,
|
|
125
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/result.js",
|
|
126
|
+
"hasComponent": true
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"/o/:orgName/result/student-1/success": {
|
|
131
|
+
"name": "Student 1 Success",
|
|
132
|
+
"key": "menu.resultStudent1.success",
|
|
133
|
+
"path": "/o/:orgName/result/student-1/success",
|
|
71
134
|
"auth": true,
|
|
72
135
|
"position": "LOWER",
|
|
73
136
|
"exact": true,
|
|
@@ -77,10 +140,10 @@
|
|
|
77
140
|
}
|
|
78
141
|
},
|
|
79
142
|
{
|
|
80
|
-
"/o/:orgName/result/fail": {
|
|
81
|
-
"name": "Fail",
|
|
82
|
-
"key": "menu.
|
|
83
|
-
"path": "/o/:orgName/result/fail",
|
|
143
|
+
"/o/:orgName/result/student-1/fail": {
|
|
144
|
+
"name": "Student 1 Fail",
|
|
145
|
+
"key": "menu.resultStudent1.fail",
|
|
146
|
+
"path": "/o/:orgName/result/student-1/fail",
|
|
84
147
|
"auth": true,
|
|
85
148
|
"position": "LOWER",
|
|
86
149
|
"exact": true,
|
|
@@ -88,5 +151,109 @@
|
|
|
88
151
|
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
89
152
|
"hasComponent": true
|
|
90
153
|
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"/o/:orgName/result/student-2/success": {
|
|
157
|
+
"name": "Student 2 Success",
|
|
158
|
+
"key": "menu.resultStudent2.success",
|
|
159
|
+
"path": "/o/:orgName/result/student-2/success",
|
|
160
|
+
"auth": true,
|
|
161
|
+
"position": "LOWER",
|
|
162
|
+
"exact": true,
|
|
163
|
+
"priority": 1,
|
|
164
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
165
|
+
"hasComponent": true
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"/o/:orgName/result/student-2/fail": {
|
|
170
|
+
"name": "Student 2 Fail",
|
|
171
|
+
"key": "menu.resultStudent2.fail",
|
|
172
|
+
"path": "/o/:orgName/result/student-2/fail",
|
|
173
|
+
"auth": true,
|
|
174
|
+
"position": "LOWER",
|
|
175
|
+
"exact": true,
|
|
176
|
+
"priority": 2,
|
|
177
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
178
|
+
"hasComponent": true
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"/o/:orgName/result/student-2/beena/success": {
|
|
183
|
+
"name": "Beena Success",
|
|
184
|
+
"key": "menu.resultStudent4.success",
|
|
185
|
+
"path": "/o/:orgName/result/student-2/beena/success",
|
|
186
|
+
"auth": true,
|
|
187
|
+
"position": "LOWER",
|
|
188
|
+
"exact": true,
|
|
189
|
+
"priority": 1,
|
|
190
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
191
|
+
"hasComponent": true
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"/o/:orgName/result/student-2/beena/fail": {
|
|
196
|
+
"name": "Beena Fail",
|
|
197
|
+
"key": "menu.resultStudent4.fail",
|
|
198
|
+
"path": "/o/:orgName/result/student-2/beena/fail",
|
|
199
|
+
"auth": true,
|
|
200
|
+
"position": "LOWER",
|
|
201
|
+
"exact": true,
|
|
202
|
+
"priority": 2,
|
|
203
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
204
|
+
"hasComponent": true
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"/o/:orgName/result/student-3/success": {
|
|
209
|
+
"name": "Student 3 Success",
|
|
210
|
+
"key": "menu.resultStudent3.success",
|
|
211
|
+
"path": "/o/:orgName/result/student-3/success",
|
|
212
|
+
"auth": true,
|
|
213
|
+
"position": "LOWER",
|
|
214
|
+
"exact": true,
|
|
215
|
+
"priority": 1,
|
|
216
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/success/Component.js",
|
|
217
|
+
"hasComponent": true
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"/o/:orgName/result/student-3/fail": {
|
|
222
|
+
"name": "Student 3 Fail",
|
|
223
|
+
"key": "menu.resultStudent3.fail",
|
|
224
|
+
"path": "/o/:orgName/result/student-3/fail",
|
|
225
|
+
"auth": true,
|
|
226
|
+
"position": "LOWER",
|
|
227
|
+
"exact": true,
|
|
228
|
+
"priority": 2,
|
|
229
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/result/fail/Component.js",
|
|
230
|
+
"hasComponent": true
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"/o/:orgName/themeShowCase": {
|
|
235
|
+
"name": "ThemeShowCase",
|
|
236
|
+
"key": "menu.themeShowCase",
|
|
237
|
+
"path": "/o/:orgName/themeShowCase",
|
|
238
|
+
"auth": true,
|
|
239
|
+
"position": "LOWER",
|
|
240
|
+
"exact": true,
|
|
241
|
+
"priority": 2,
|
|
242
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/ThemeShowCase/index.js",
|
|
243
|
+
"hasComponent": true
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"/o/:orgName/otp-example": {
|
|
248
|
+
"name": "OTP Example",
|
|
249
|
+
"key": "menu.otp",
|
|
250
|
+
"path": "/o/:orgName/otp-example",
|
|
251
|
+
"auth": true,
|
|
252
|
+
"position": "LOWER",
|
|
253
|
+
"exact": true,
|
|
254
|
+
"priority": 2,
|
|
255
|
+
"componentPath": "@admin-layout/demo-tailwind-browser/lib/components/OTPExamples.js",
|
|
256
|
+
"hasComponent": true
|
|
257
|
+
}
|
|
91
258
|
}
|
|
92
259
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@admin-layout/demo-tailwind-browser",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.2.1-alpha.1",
|
|
4
4
|
"description": "Sample core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"watch": "yarn build:lib:watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@admin-layout/assets": "11.
|
|
25
|
-
"@admin-layout/tailwind-design-pro": "11.
|
|
24
|
+
"@admin-layout/assets": "11.2.1-alpha.1",
|
|
25
|
+
"@admin-layout/tailwind-design-pro": "11.2.1-alpha.1",
|
|
26
|
+
"@admin-layout/tailwind-ui": "11.2.1-alpha.1",
|
|
26
27
|
"@pubngo-stack/icons": "8.0.7",
|
|
27
28
|
"@react-icons/all-files": "^4.1.0",
|
|
28
|
-
"@xstate/react": "^4.1.1",
|
|
29
29
|
"marked": "7.0.5",
|
|
30
30
|
"openai": "^4.52.0"
|
|
31
31
|
},
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"typescript": {
|
|
54
54
|
"definition": "lib/index.d.ts"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "07c2534a0ba6f7955e1a718f54aa5e26b78cbacc"
|
|
57
57
|
}
|