oksy 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. package/.github/logo.svg +9 -0
  2. package/LICENCE.md +9 -0
  3. package/README.md +15 -0
  4. package/boot.js +19 -0
  5. package/library.js +1 -0
  6. package/package.json +23 -0
  7. package/public/assets/index.28af5a18.js +78 -0
  8. package/public/assets/index.4f053b26.js +78 -0
  9. package/public/assets/index.89a90711.css +1 -0
  10. package/public/index.html +41 -0
  11. package/tailwindcss/input.css +2 -0
  12. package/tailwindcss/tailwind.config.js +10 -0
  13. package/tsconfig.json +16 -0
  14. package/types/lang/en.d.ts +54 -0
  15. package/types/src/Bootstrap/BootstrapDatabase.d.ts +3 -0
  16. package/types/src/Bootstrap/BuildFrontend.d.ts +3 -0
  17. package/types/src/Bootstrap/GenerateModelsFile.d.ts +2 -0
  18. package/types/src/Bootstrap/GetDatabaseMapFromSqlite.d.ts +4 -0
  19. package/types/src/Bootstrap/OrganizeSqlTables.d.ts +6 -0
  20. package/types/src/Bootstrap/ReadFileSystemFilesToTsFiles.d.ts +5 -0
  21. package/types/src/Bootstrap/ScafoldFiles.d.ts +1 -0
  22. package/types/src/Bootstrap/SqliteClient.d.ts +27 -0
  23. package/types/src/Bootstrap/TsFilesToBlueprint/AstWalker.d.ts +7 -0
  24. package/types/src/Bootstrap/TsFilesToBlueprint/Blueprint.d.ts +41 -0
  25. package/types/src/Bootstrap/TsFilesToBlueprint/GetLineNumberOfCharPos.d.ts +1 -0
  26. package/types/src/Bootstrap/TsFilesToBlueprint/TsFilesToBlueprints.d.ts +3 -0
  27. package/types/src/Frontend/Controllers/ForgotPasswordController.d.ts +6 -0
  28. package/types/src/Frontend/Controllers/LoginController.d.ts +15 -0
  29. package/types/src/Frontend/Controllers/PageController.d.ts +24 -0
  30. package/types/src/Frontend/Controllers/RegisterController.d.ts +20 -0
  31. package/types/src/Frontend/Controllers/ResetPasswordController.d.ts +15 -0
  32. package/types/src/Frontend/Controllers/ResumeSessionController.d.ts +10 -0
  33. package/types/src/Frontend/Exceptions.d.ts +3 -0
  34. package/types/src/Frontend/FrontendConfig.d.ts +2 -0
  35. package/types/src/Frontend/GoogleIcons.d.ts +2 -0
  36. package/types/src/Frontend/View/BasePage.d.ts +22 -0
  37. package/types/src/Frontend/View/Components/Button.d.ts +29 -0
  38. package/types/src/Frontend/View/Components/Container.d.ts +22 -0
  39. package/types/src/Frontend/View/Components/DataTable.d.ts +51 -0
  40. package/types/src/Frontend/View/Components/FileUpload.d.ts +26 -0
  41. package/types/src/Frontend/View/Components/FlatOrFunc.d.ts +5 -0
  42. package/types/src/Frontend/View/Components/Input.d.ts +22 -0
  43. package/types/src/Frontend/View/Components/Layout/DarkSidebar.d.ts +29 -0
  44. package/types/src/Frontend/View/Components/Select.d.ts +45 -0
  45. package/types/src/Frontend/View/Components/Text.d.ts +16 -0
  46. package/types/src/Frontend/View/Components/Toggle.d.ts +20 -0
  47. package/types/src/Frontend/View/UI.d.ts +23 -0
  48. package/types/src/Helper/AsyncGlob.d.ts +1 -0
  49. package/types/src/Helper/CallStack.d.ts +8 -0
  50. package/types/src/Helper/DateTime.d.ts +5 -0
  51. package/types/src/Helper/ExecAsync.d.ts +1 -0
  52. package/types/src/Helper/Fingerprint.d.ts +1 -0
  53. package/types/src/Helper/FormatBytes.d.ts +1 -0
  54. package/types/src/Helper/Hash.d.ts +1 -0
  55. package/types/src/Helper/IsEmpty.d.ts +1 -0
  56. package/types/src/Helper/Log.d.ts +1 -0
  57. package/types/src/Helper/MemoryUsage.d.ts +3 -0
  58. package/types/src/Helper/MergeObjects.d.ts +1 -0
  59. package/types/src/Helper/PasswordResetLink.d.ts +2 -0
  60. package/types/src/Helper/Print.d.ts +1 -0
  61. package/types/src/Helper/Search.d.ts +3 -0
  62. package/types/src/Helper/Seeder.d.ts +8 -0
  63. package/types/src/Helper/SnakeCase.d.ts +1 -0
  64. package/types/src/Helper/StringToSlug.d.ts +1 -0
  65. package/types/src/Helper/UUID.d.ts +2 -0
  66. package/types/src/Helper/WatchFolder.d.ts +1 -0
  67. package/types/src/Mailer/GetMailInstance.d.ts +3 -0
  68. package/types/src/Mailer/IMailer.d.ts +7 -0
  69. package/types/src/Mailer/JsToEmail.d.ts +11 -0
  70. package/types/src/Mailer/LogMailer.d.ts +8 -0
  71. package/types/src/Mailer/SMTPMailer.d.ts +11 -0
  72. package/types/src/ReactiveStore/BaseEntity.d.ts +47 -0
  73. package/types/src/ReactiveStore/HydrateReactiveStore.d.ts +5 -0
  74. package/types/src/ReactiveStore/Many.d.ts +25 -0
  75. package/types/src/ReactiveStore/ModelMaker.d.ts +16 -0
  76. package/types/src/ReactiveStore/ModelValidator.d.ts +3 -0
  77. package/types/src/ReactiveStore/Proxify.d.ts +4 -0
  78. package/types/src/ReactiveStore/ReactiveStore.d.ts +57 -0
  79. package/types/src/ReactiveStore/Validators/EmailValidator.d.ts +7 -0
  80. package/types/src/ReactiveStore/Validators/IValidator.d.ts +4 -0
  81. package/types/src/ReactiveStore/Validators/MinLengthValidator.d.ts +8 -0
  82. package/types/src/Server/RegisterFileUploader.d.ts +3 -0
  83. package/types/src/Server/RegisterSPA.d.ts +2 -0
  84. package/types/src/Server/RegisterSocketServer.d.ts +5 -0
  85. package/types/src/Server/Socket/BaseCommunicator.d.ts +43 -0
  86. package/types/src/Server/Socket/PageManager.d.ts +22 -0
  87. package/types/src/Server/Socket/SessionManager.d.ts +25 -0
  88. package/types/src/Server/Socket/WebSocketClient.d.ts +6 -0
  89. package/types/src/Server/Socket/WebSocketServerClient.d.ts +12 -0
  90. package/types/src/Server/StartWebServer.d.ts +4 -0
  91. package/types/src/SqlQueue/SqlQueue.d.ts +12 -0
  92. package/types/src/boot.d.ts +1 -0
  93. package/types/src/default.config.d.ts +2 -0
  94. package/types/src/library.d.ts +9 -0
  95. package/types/src/library.pub.d.ts +55 -0
  96. package/types/types/config.d.ts +18 -0
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" fill="none" preserveAspectRatio="none" viewBox="0 0 400 400">
2
+ <g>
3
+ <path fill="#FF417A" d="M0 0h200v200H0z"/>
4
+ <path fill="#42E5BF" d="M200 0h200v200H200z"/>
5
+ <path fill="#FFDE70" d="M0 200h200v200H0z"/>
6
+ <path fill="#4B86E6" d="M200 200h200v200H200z"/>
7
+ <path fill="#fff" d="m293.62 96.1138 56.647-56.9327c-12.18-12.2415-31.707-12.2415-43.694 0l-33.64 33.8099V61.1381c0-17.0992-13.92-31.0895-30.933-31.0895V138.862c0 17.099 13.727 31.089 30.933 31.089v-50.714l41.374 41.582c11.986 12.241 31.513 12.241 43.693 0l-64.38-64.7052ZM113.138 284.444H85.8621c-6.4293 0-11.6897-5.25-11.6897-11.666 0-6.417 5.2604-11.667 11.6897-11.667h27.2759c17.145 0 31.172-14 31.172-31.111H85.8621C62.0931 230 43 249.25 43 272.778c0 23.722 19.0931 42.778 42.8621 42.778h27.2759c6.429 0 11.69 5.25 11.69 11.666 0 6.417-5.261 11.667-11.69 11.667H43C43 356 57.0276 370 74.1724 370h38.9656C136.712 370 156 350.944 156 327.222c0-23.528-19.288-42.778-42.862-42.778ZM242 230l43.023 74.278v34.611C285.023 356 298.845 370 316.171 370v-65.917L359 230h-17.91c-11.097 0-20.83 5.639-26.281 14.389l-14.212 24.5h-.194l-14.212-24.5C280.74 235.639 271.007 230 260.105 230H242ZM100 30c-38.6944 0-70 31.3056-70 70 0 38.694 31.3056 70 70 70 38.694 0 70-31.306 70-70 0-38.6944-31.306-70-70-70Zm0 108.889c-21.5833 0-38.8889-17.306-38.8889-38.889 0-21.3889 17.3056-38.8889 38.8889-38.8889 21.389 0 38.889 17.5 38.889 38.8889 0 21.583-17.5 38.889-38.889 38.889Z"/>
8
+ </g>
9
+ </svg>
package/LICENCE.md ADDED
@@ -0,0 +1,9 @@
1
+ <p align="center">
2
+ ๐Ÿฅบ
3
+ </br>
4
+ ๐Ÿ‘‰ ๐Ÿ‘ˆ
5
+ </br>
6
+ <code>
7
+ You hereby promise to not modify: `boot.js`, `library.js` and all the files and folders in `public`.
8
+ </code>
9
+ </p>
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ <div align="center">
2
+ <img src=".github/logo.svg">
3
+
4
+ <h3 align="center">
5
+ <a href="https://oksy.nl"><b>OKSY.nl</b></a>
6
+ </h3>
7
+
8
+ <p align="center">The framework for busy TypeScript developers ๐Ÿ’™</p>
9
+
10
+ <a href="https://digitalbyali.github.io/DOCSY/" align="center">ยป Full Documentation ยซ</a>
11
+ </div>
12
+
13
+ <hr/>
14
+
15
+ https://user-images.githubusercontent.com/23558090/115278602-ee6f0280-a145-11eb-94ae-6edaa846ab7f.mp4