@solidxai/solidctl 0.1.1 → 0.1.3
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/dist/commands/create-app/create-app.command.js +14 -13
- package/dist/commands/create-app/create-app.command.js.map +1 -1
- package/dist/commands/create-app/helpers.d.ts +7 -14
- package/dist/commands/create-app/helpers.js +9 -17
- package/dist/commands/create-app/helpers.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/templates/api-template/dot-templates/dot.gitignore.template +82 -0
- package/templates/{nest-template → api-template}/package.json +3 -3
- package/templates/{nest-template → api-template}/test/app.e2e-spec.ts +1 -1
- package/templates/ui-template/README.md +73 -0
- package/templates/ui-template/dist/assets/Footerbg-8Co6YRm2.png +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Black-85SZiFK-.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Bold-CkqE-6tD.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Heavy-Cj-4znqf.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Light-aDlMluiV.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Medium-DSttQARu.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Regular-DF_3XEGl.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Semibold-Dg2-djaL.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Thin-Dlj_0ZL0.otf +0 -0
- package/templates/ui-template/dist/assets/SF-Pro-Display-Ultralight-Dvb4Y4p6.otf +0 -0
- package/templates/ui-template/dist/assets/index-ByqcKjdb.js +3912 -0
- package/templates/ui-template/dist/assets/index-wnEWlFcj.css +1 -0
- package/templates/ui-template/dist/assets/primeicons-C6QP2o4f.woff2 +0 -0
- package/templates/ui-template/dist/assets/primeicons-DMOk5skT.eot +0 -0
- package/templates/ui-template/dist/assets/primeicons-Dr5RGzOO.svg +345 -0
- package/templates/ui-template/dist/assets/primeicons-MpK4pl85.ttf +0 -0
- package/templates/ui-template/dist/assets/primeicons-WjwUDZjB.woff +0 -0
- package/templates/ui-template/dist/assets/quill-DooZuM6F.js +49 -0
- package/templates/ui-template/dist/assets/solid-left-layout-bg-CTFSpGKh.png +0 -0
- package/templates/ui-template/dist/assets/solid-right-layout-bg-HyBzctm7.png +0 -0
- package/templates/ui-template/dist/index.html +19 -0
- package/templates/{next-template/public → ui-template/dist}/themes/solid-dark-purple/theme.css +7 -2
- package/templates/ui-template/dist/themes/solid-light-purple/solid-login-light.png +0 -0
- package/templates/{next-template/public → ui-template/dist}/themes/solid-light-purple/theme.css +10 -3
- package/templates/ui-template/dist/vite.svg +1 -0
- package/templates/ui-template/dot-templates/dot.gitignore.template +83 -0
- package/templates/ui-template/eslint.config.js +23 -0
- package/templates/ui-template/index.html +18 -0
- package/templates/ui-template/package-lock.json +11931 -0
- package/templates/ui-template/package.json +42 -0
- package/templates/ui-template/public/themes/solid-dark-purple/theme.css +6208 -0
- package/templates/ui-template/public/themes/solid-light-purple/solid-login-light.png +0 -0
- package/templates/ui-template/public/themes/solid-light-purple/theme.css +6263 -0
- package/templates/ui-template/public/vite.svg +1 -0
- package/templates/ui-template/src/App.css +42 -0
- package/templates/ui-template/src/App.tsx +44 -0
- package/templates/ui-template/src/assets/react.svg +1 -0
- package/templates/ui-template/src/extensions/solid-extensions.ts +82 -0
- package/templates/ui-template/src/extensions/venue/call-log/custom-widgets/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/call-log/form-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/call-log/form-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/call-log/form-event-listeners/callLogsDispositionHandler.ts +47 -0
- package/templates/ui-template/src/extensions/venue/call-log/list-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/call-log/list-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/call-log/row-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/custom-widgets/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-buttons/ImportHierarchyComponent.tsx +377 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-buttons/SolidCustomImportHeader.tsx +14 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-event-listeners/CallLogsDispositionHandler.ts +47 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/form-event-listeners/onHierarchyImportFormLoadHandler.ts +45 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/list-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/list-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/hierarchy-import-transaction/row-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/custom-widgets/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/form-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/form-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/form-event-listeners/venueMasterFormViewLoadHandler.ts +57 -0
- package/templates/ui-template/src/extensions/venue/venue-master/list-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/list-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-master/row-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/custom-widgets/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/form-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/form-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/form-event-listeners/venueUserFormViewChangeHandler.ts +21 -0
- package/templates/ui-template/src/extensions/venue/venue-user/form-event-listeners/venueUserFormViewLoadHandler.ts +97 -0
- package/templates/ui-template/src/extensions/venue/venue-user/list-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/list-event-listeners/.gitkeep +0 -0
- package/templates/ui-template/src/extensions/venue/venue-user/row-buttons/.gitkeep +0 -0
- package/templates/ui-template/src/index.css +10 -0
- package/templates/ui-template/src/main.tsx +10 -0
- package/templates/ui-template/src/pages/admin/AdminInfoPage.tsx +15 -0
- package/templates/ui-template/src/pages/auth/HelloAuthPage.tsx +15 -0
- package/templates/ui-template/src/pages/auth/VenueAppLoginPage.tsx +10 -0
- package/templates/ui-template/src/pages/static/AboutPage.tsx +17 -0
- package/templates/ui-template/src/redux/hierarchyImportTransactionApi.tsx +28 -0
- package/templates/ui-template/src/routes/AppRoutes.tsx +34 -0
- package/templates/ui-template/tsconfig.app.json +29 -0
- package/templates/ui-template/tsconfig.json +7 -0
- package/templates/ui-template/tsconfig.node.json +26 -0
- package/templates/ui-template/venue-admin.logicloop.io.conf +81 -0
- package/templates/ui-template/vite.config.ts +15 -0
- package/templates/nest-template/bin/solid +0 -2
- package/templates/nest-template/dot-templates/dot.gitignore.template +0 -56
- package/templates/next-template/README.md +0 -36
- package/templates/next-template/app/GlobalProvider.tsx +0 -23
- package/templates/next-template/app/admin/core/[moduleName]/[modelName]/form/[id]/page.tsx +0 -19
- package/templates/next-template/app/admin/core/[moduleName]/[modelName]/kanban/page.tsx +0 -18
- package/templates/next-template/app/admin/core/[moduleName]/[modelName]/list/page.tsx +0 -18
- package/templates/next-template/app/admin/core/[moduleName]/home/page.tsx +0 -15
- package/templates/next-template/app/admin/core/[moduleName]/settings/[settings]/page.tsx +0 -11
- package/templates/next-template/app/admin/layout.tsx +0 -11
- package/templates/next-template/app/admin/loading.tsx +0 -8
- package/templates/next-template/app/admin/page.tsx +0 -10
- package/templates/next-template/app/api/auth/[...nextauth]/route.ts +0 -6
- package/templates/next-template/app/auth/confirm-forgot-password/page.tsx +0 -12
- package/templates/next-template/app/auth/forgot-password/page.tsx +0 -11
- package/templates/next-template/app/auth/initiate-forgot-password/page.tsx +0 -11
- package/templates/next-template/app/auth/initiate-forgot-password-thank-you/page.tsx +0 -11
- package/templates/next-template/app/auth/initiate-google-oauth/page.tsx +0 -9
- package/templates/next-template/app/auth/initiate-login/page.tsx +0 -13
- package/templates/next-template/app/auth/initiate-register/page.tsx +0 -14
- package/templates/next-template/app/auth/layout.tsx +0 -10
- package/templates/next-template/app/auth/login/page.tsx +0 -12
- package/templates/next-template/app/auth/otp-verify/page.tsx +0 -12
- package/templates/next-template/app/auth/register/page.tsx +0 -12
- package/templates/next-template/app/auth/reset-password/page.tsx +0 -13
- package/templates/next-template/app/auth/sso/page.tsx +0 -80
- package/templates/next-template/app/layout.tsx +0 -56
- package/templates/next-template/app/solid-extensions.ts +0 -8
- package/templates/next-template/dot-templates/dot.gitignore.template +0 -44
- package/templates/next-template/eslint.config.mjs +0 -16
- package/templates/next-template/middleware.ts +0 -23
- package/templates/next-template/next-env.d.ts +0 -5
- package/templates/next-template/next-solidx-run.js +0 -18
- package/templates/next-template/next.config.js +0 -47
- package/templates/next-template/package.json +0 -79
- package/templates/next-template/public/favicon.ico +0 -0
- package/templates/next-template/public/file.svg +0 -1
- package/templates/next-template/public/globe.svg +0 -1
- package/templates/next-template/public/next.svg +0 -1
- package/templates/next-template/public/vercel.svg +0 -1
- package/templates/next-template/public/window.svg +0 -1
- package/templates/next-template/redux/store.ts +0 -52
- package/templates/next-template/tsconfig.json +0 -33
- package/templates/next-template/types/index.d.ts +0 -7
- package/templates/next-template/types/layout.d.ts +0 -94
- package/templates/next-template/types/next.d.ts +0 -46
- /package/templates/{nest-template → api-template}/README.md +0 -0
- /package/templates/{nest-template → api-template}/dot-templates/dot.dockerignore.template +0 -0
- /package/templates/{nest-template → api-template}/dot-templates/dot.eslintrc.template.js +0 -0
- /package/templates/{nest-template → api-template}/dot-templates/dot.prettierrc.template +0 -0
- /package/templates/{nest-template → api-template}/nest-cli.json +0 -0
- /package/templates/{nest-template → api-template}/nodemon.json +0 -0
- /package/templates/{nest-template → api-template}/src/app-default-database.module.ts +0 -0
- /package/templates/{nest-template → api-template}/src/app.controller.spec.ts +0 -0
- /package/templates/{nest-template → api-template}/src/app.module.ts +0 -0
- /package/templates/{nest-template → api-template}/src/app.service.ts +0 -0
- /package/templates/{nest-template → api-template}/src/database.utils.ts +0 -0
- /package/templates/{nest-template → api-template}/src/main-cli.ts +0 -0
- /package/templates/{nest-template → api-template}/src/main.ts +0 -0
- /package/templates/{nest-template → api-template}/test/jest-e2e.json +0 -0
- /package/templates/{nest-template → api-template}/tsconfig.build.json +0 -0
- /package/templates/{nest-template → api-template}/tsconfig.json +0 -0
- /package/templates/{next-template/public/themes/solid-light-purple/solid-login-light.png → ui-template/dist/assets/solid-login-light-C-F0ch5x.png} +0 -0
|
Binary file
|
package/templates/{next-template/public → ui-template/dist}/themes/solid-light-purple/theme.css
RENAMED
|
@@ -6136,7 +6136,7 @@
|
|
|
6136
6136
|
}
|
|
6137
6137
|
|
|
6138
6138
|
.solid-auth-input-label.right {
|
|
6139
|
-
color: #fff
|
|
6139
|
+
color: #fff ;
|
|
6140
6140
|
}
|
|
6141
6141
|
|
|
6142
6142
|
.solid-auth-subtitle,
|
|
@@ -6194,10 +6194,17 @@
|
|
|
6194
6194
|
}
|
|
6195
6195
|
|
|
6196
6196
|
|
|
6197
|
-
.solid-standard-autocomplete .p-inputtext:focus
|
|
6198
|
-
border-color: #d1d5db !important;
|
|
6197
|
+
.solid-standard-autocomplete .p-inputtext:focus {
|
|
6198
|
+
/* border-color: #d1d5db !important; */
|
|
6199
|
+
border-color: var(--primary-color) !important;
|
|
6200
|
+
|
|
6199
6201
|
}
|
|
6200
6202
|
|
|
6203
|
+
.solid-standard-autocomplete.p-inputwrapper-focus .p-autocomplete-dropdown.p-button {
|
|
6204
|
+
border-color: var(--primary-color) !important;
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
|
|
6201
6208
|
.solid-custom-editor .ql-toolbar.ql-snow {
|
|
6202
6209
|
border: 1px solid #d1d5db;
|
|
6203
6210
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# =========================
|
|
2
|
+
# Dependencies & build output
|
|
3
|
+
# =========================
|
|
4
|
+
node_modules/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
|
|
8
|
+
# Vite cache
|
|
9
|
+
.vite/
|
|
10
|
+
|
|
11
|
+
# =========================
|
|
12
|
+
# Logs
|
|
13
|
+
# =========================
|
|
14
|
+
logs/
|
|
15
|
+
*.log
|
|
16
|
+
npm-debug.log*
|
|
17
|
+
pnpm-debug.log*
|
|
18
|
+
yarn-debug.log*
|
|
19
|
+
yarn-error.log*
|
|
20
|
+
lerna-debug.log*
|
|
21
|
+
|
|
22
|
+
# =========================
|
|
23
|
+
# Environment files
|
|
24
|
+
# =========================
|
|
25
|
+
.env
|
|
26
|
+
.env.*
|
|
27
|
+
!.env.example
|
|
28
|
+
|
|
29
|
+
# =========================
|
|
30
|
+
# OS / system files
|
|
31
|
+
# =========================
|
|
32
|
+
.DS_Store
|
|
33
|
+
Thumbs.db
|
|
34
|
+
|
|
35
|
+
# =========================
|
|
36
|
+
# Tests / coverage
|
|
37
|
+
# =========================
|
|
38
|
+
coverage/
|
|
39
|
+
.nyc_output/
|
|
40
|
+
|
|
41
|
+
# =========================
|
|
42
|
+
# IDEs and editors
|
|
43
|
+
# =========================
|
|
44
|
+
.idea/
|
|
45
|
+
.project
|
|
46
|
+
.classpath
|
|
47
|
+
.c9/
|
|
48
|
+
*.launch
|
|
49
|
+
.settings/
|
|
50
|
+
*.sublime-workspace
|
|
51
|
+
|
|
52
|
+
# =========================
|
|
53
|
+
# VS Code (keep workspace config)
|
|
54
|
+
# =========================
|
|
55
|
+
.vscode/*
|
|
56
|
+
!.vscode/settings.json
|
|
57
|
+
!.vscode/tasks.json
|
|
58
|
+
!.vscode/launch.json
|
|
59
|
+
!.vscode/extensions.json
|
|
60
|
+
|
|
61
|
+
# =========================
|
|
62
|
+
# Temporary files
|
|
63
|
+
# =========================
|
|
64
|
+
.tmp/
|
|
65
|
+
.temp/
|
|
66
|
+
|
|
67
|
+
# =========================
|
|
68
|
+
# Runtime / process files
|
|
69
|
+
# =========================
|
|
70
|
+
pids/
|
|
71
|
+
*.pid
|
|
72
|
+
*.pid.lock
|
|
73
|
+
*.seed
|
|
74
|
+
|
|
75
|
+
# =========================
|
|
76
|
+
# Diagnostic reports
|
|
77
|
+
# =========================
|
|
78
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
79
|
+
|
|
80
|
+
# =========================
|
|
81
|
+
# App-specific ignored paths
|
|
82
|
+
# =========================
|
|
83
|
+
local_packages/
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import js from '@eslint/js'
|
|
2
|
+
import globals from 'globals'
|
|
3
|
+
import reactHooks from 'eslint-plugin-react-hooks'
|
|
4
|
+
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
5
|
+
import tseslint from 'typescript-eslint'
|
|
6
|
+
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
7
|
+
|
|
8
|
+
export default defineConfig([
|
|
9
|
+
globalIgnores(['dist']),
|
|
10
|
+
{
|
|
11
|
+
files: ['**/*.{ts,tsx}'],
|
|
12
|
+
extends: [
|
|
13
|
+
js.configs.recommended,
|
|
14
|
+
tseslint.configs.recommended,
|
|
15
|
+
reactHooks.configs.flat.recommended,
|
|
16
|
+
reactRefresh.configs.vite,
|
|
17
|
+
],
|
|
18
|
+
languageOptions: {
|
|
19
|
+
ecmaVersion: 2020,
|
|
20
|
+
globals: globals.browser,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
])
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
6
|
+
<meta name="description" content="Solid UI Vite App" />
|
|
7
|
+
<link rel="icon" href="/favicon.ico" />
|
|
8
|
+
<link id="theme-css" href="/themes/solid-light-purple/theme.css" rel="stylesheet" />
|
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
|
10
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded" rel="stylesheet" />
|
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp" rel="stylesheet" />
|
|
12
|
+
<title>new-solid-ui</title>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div id="root"></div>
|
|
16
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|