File tree Expand file tree Collapse file tree 10 files changed +14503
-14410
lines changed
Expand file tree Collapse file tree 10 files changed +14503
-14410
lines changed Original file line number Diff line number Diff line change 99 import { notifications } from ' $lib/components/toasts/notifications' ;
1010 import Spinner from ' $lib/components/Spinner.svelte' ;
1111 import Collapsible from ' $lib/components/Collapsible.svelte' ;
12+ import Help from ' ~icons/tabler/help' ;
1213 import MQTT from ' ~icons/tabler/topology-star-3' ;
1314 import Client from ' ~icons/tabler/robot' ;
1415 import type { MQTTSettings , MQTTStatus } from ' $lib/types/models' ;
135136 {/ snippet }
136137 {#snippet title ()}
137138 <span >MQTT</span >
139+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
138140 {/ snippet }
139141 <div class =" w-full overflow-x-auto" >
140142 {#await getMQTTStatus ()}
Original file line number Diff line number Diff line change 99 import { page } from ' $app/state' ;
1010 import { notifications } from ' $lib/components/toasts/notifications' ;
1111 import { TIME_ZONES } from ' ./timezones' ;
12+ import Help from ' ~icons/tabler/help' ;
1213 import NTP from ' ~icons/tabler/clock-check' ;
1314 import Server from ' ~icons/tabler/server' ;
1415 import Clock from ' ~icons/tabler/clock' ;
158159 {/ snippet }
159160 {#snippet title ()}
160161 <span >Network Time</span >
162+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
161163 {/ snippet }
162164 <div class =" w-full overflow-x-auto" >
163165 {#await getNTPStatus ()}
Original file line number Diff line number Diff line change 44 import { page } from ' $app/state' ;
55 import { notifications } from ' $lib/components/toasts/notifications' ;
66 import SettingsCard from ' $lib/components/SettingsCard.svelte' ;
7+ import Help from ' ~icons/tabler/help' ;
78 import Light from ' ~icons/tabler/bulb' ;
89 import Info from ' ~icons/tabler/info-circle' ;
910 import Save from ' ~icons/tabler/device-floppy' ;
7071 {/ snippet }
7172 {#snippet title ()}
7273 <span >Light State</span >
74+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
7375 {/ snippet }
7476 <div class =" w-full" >
7577 <h1 class =" text-xl font-semibold" >REST Example</h1 >
Original file line number Diff line number Diff line change 55 import { slide } from ' svelte/transition' ;
66 import { cubicOut } from ' svelte/easing' ;
77 import { Chart , registerables } from ' chart.js' ;
8+ import Help from ' ~icons/tabler/help' ;
89 import Metrics from ' ~icons/tabler/report-analytics' ;
910 import { daisyColor } from ' $lib/DaisyUiHelper' ;
1011 import { analytics } from ' $lib/stores/analytics' ;
428429 {/ snippet }
429430 {#snippet title ()}
430431 <span >System Metrics</span >
432+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
431433 {/ snippet }
432434
433435 <div class =" w-full overflow-x-auto" >
Original file line number Diff line number Diff line change 88 import Spinner from ' $lib/components/Spinner.svelte' ;
99 import { slide } from ' svelte/transition' ;
1010 import { cubicOut } from ' svelte/easing' ;
11+ import Help from ' ~icons/tabler/help' ;
1112 import CPU from ' ~icons/tabler/cpu' ;
1213 import CPP from ' ~icons/tabler/binary' ;
1314 import Power from ' ~icons/tabler/reload' ;
159160 {/ snippet }
160161 {#snippet title ()}
161162 <span >System Status</span >
163+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
162164 {/ snippet }
163165
164166 <div class =" w-full overflow-x-auto" >
Original file line number Diff line number Diff line change 77 import ConfirmDialog from ' $lib/components/ConfirmDialog.svelte' ;
88 import Spinner from ' $lib/components/Spinner.svelte' ;
99 import SettingsCard from ' $lib/components/SettingsCard.svelte' ;
10+ import Help from ' ~icons/tabler/help' ;
1011 import Github from ' ~icons/tabler/brand-github' ;
1112 import CloudDown from ' ~icons/tabler/cloud-download' ;
1213 import Cancel from ' ~icons/tabler/x' ;
100101 {/ snippet }
101102 {#snippet title ()}
102103 <span >Github Firmware Manager</span >
104+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
103105 {/ snippet }
104106 {#await getGithubAPI ()}
105107 <Spinner />
Original file line number Diff line number Diff line change 1414 import ConfirmDialog from ' $lib/components/ConfirmDialog.svelte' ;
1515 import EditUser from ' ./EditUser.svelte' ;
1616 import Spinner from ' $lib/components/Spinner.svelte' ;
17+ import Help from ' ~icons/tabler/help' ;
1718 import Delete from ' ~icons/tabler/trash' ;
1819 import AddUser from ' ~icons/tabler/user-plus' ;
1920 import Edit from ' ~icons/tabler/pencil' ;
158159 {/ snippet }
159160 {#snippet title ()}
160161 <span >Manage Users</span >
162+ <div class ="absolute right-20" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
161163 {/ snippet }
162164 {#await getSecuritySettings ()}
163165 <Spinner />
Original file line number Diff line number Diff line change 88 import { page } from ' $app/state' ;
99 import { notifications } from ' $lib/components/toasts/notifications' ;
1010 import Spinner from ' $lib/components/Spinner.svelte' ;
11- import Collapsible from ' $lib/components/Collapsible.svelte ' ;
11+ import Help from ' ~icons/tabler/help ' ;
1212 import AP from ' ~icons/tabler/access-point' ;
1313 import MAC from ' ~icons/tabler/dna-2' ;
1414 import Home from ' ~icons/tabler/home' ;
192192 {/ snippet }
193193 {#snippet title ()}
194194 <span >Access Point</span >
195+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
195196 {/ snippet }
196197 <div class =" w-full overflow-x-auto" >
197198 {#await getAPStatus ()}
Original file line number Diff line number Diff line change 1212 import ConfirmDialog from ' $lib/components/ConfirmDialog.svelte' ;
1313 import ScanNetworks from ' ./Scan.svelte' ;
1414 import Spinner from ' $lib/components/Spinner.svelte' ;
15+ import Help from ' ~icons/tabler/help' ;
1516 import AP from ' ~icons/tabler/access-point' ;
1617 import Router from ' ~icons/tabler/router' ;
1718 import MAC from ' ~icons/tabler/dna-2' ;
321322 {/ snippet }
322323 {#snippet title ()}
323324 <span >WiFi Connection</span >
325+ <div class ="absolute right-5" ><a href ="https:// {page .data .github .split (" /" )[0 ]}.github.io/ {page .data .github .split (" /" )[1 ]}{page .url .pathname }" target =" _blank" title =" Documentation" ><Help class =" lex-shrink-0 mr-2 h-6 w-6 self-end" /></a ></div >
324326 {/ snippet }
325327 <div class =" w-full overflow-x-auto" >
326328 {#await getWifiStatus ()}
You can’t perform that action at this time.
0 commit comments