@common-stack/generate-plugin 5.0.4-alpha.5 → 5.0.5-alpha.0
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/CHANGELOG.md +52 -0
- package/README.md +42 -0
- package/generators.json +9 -4
- package/lib/generators/add-backend/files/CHANGELOG.md +196 -0
- package/lib/generators/add-backend/files/Dockerfile +30 -0
- package/lib/generators/add-backend/files/LICENSE +661 -0
- package/lib/generators/add-backend/files/README.md +133 -0
- package/lib/generators/add-backend/files/__tests__/test.ts.template +95 -0
- package/lib/generators/add-backend/files/babel.config.js +45 -0
- package/lib/generators/add-backend/files/build.config.js +14 -0
- package/lib/generators/add-backend/files/build.config.mjs +27 -0
- package/lib/generators/add-backend/files/generated-schema.graphql +235 -0
- package/lib/generators/add-backend/files/jest.config.js +27 -0
- package/lib/generators/add-backend/files/knexfile.js +63 -0
- package/lib/generators/add-backend/files/package.json +162 -0
- package/lib/generators/add-backend/files/src/api/remote-config.ts.template +11 -0
- package/lib/generators/add-backend/files/src/api/resolver.ts.template +15 -0
- package/lib/generators/add-backend/files/src/api/root-schema.graphqls +96 -0
- package/lib/generators/add-backend/files/src/api/scalar.ts.template +16 -0
- package/lib/generators/add-backend/files/src/api/schema-builder.ts.template +189 -0
- package/lib/generators/add-backend/files/src/api/utils.ts.template +44 -0
- package/lib/generators/add-backend/files/src/config/env-config.ts.template +34 -0
- package/lib/generators/add-backend/files/src/config/index.ts.template +1 -0
- package/lib/generators/add-backend/files/src/config/moleculer.config.ts.template +228 -0
- package/lib/generators/add-backend/files/src/connectors/connection-broker.ts.template +80 -0
- package/lib/generators/add-backend/files/src/connectors/graphql-pubsub-connector.ts.template +43 -0
- package/lib/generators/add-backend/files/src/connectors/mongo-connector.ts.template +78 -0
- package/lib/generators/add-backend/files/src/connectors/nats-connector.ts.template +82 -0
- package/lib/generators/add-backend/files/src/connectors/redis-connector.ts.template +73 -0
- package/lib/generators/add-backend/files/src/env.ts.template +5 -0
- package/lib/generators/add-backend/files/src/express-app.ts.template +67 -0
- package/lib/generators/add-backend/files/src/index.ts.template +56 -0
- package/lib/generators/add-backend/files/src/interfaces/index.ts.template +1 -0
- package/lib/generators/add-backend/files/src/interfaces/module-interface.ts.template +16 -0
- package/lib/generators/add-backend/files/src/main.spec.ts.template +129 -0
- package/lib/generators/add-backend/files/src/middleware/__tests__/cors.test.ts.template +12 -0
- package/lib/generators/add-backend/files/src/middleware/cors.ts.template +31 -0
- package/lib/generators/add-backend/files/src/middleware/error.ts.template +63 -0
- package/lib/generators/add-backend/files/src/middleware/moleculer-inter-namespace.ts.template +60 -0
- package/lib/generators/add-backend/files/src/middleware/persistedQuery.ts.template +40 -0
- package/lib/generators/add-backend/files/src/middleware/sentry.ts.template +9 -0
- package/lib/generators/add-backend/files/src/middleware/services.ts.template +16 -0
- package/lib/generators/add-backend/files/src/middleware/tracer.ts.template +24 -0
- package/lib/generators/add-backend/files/src/modules/auth/schema/auth-schema.graphql +25 -0
- package/lib/generators/add-backend/files/src/modules/index.ts.template +17 -0
- package/lib/generators/add-backend/files/src/modules/module.ts.template +78 -0
- package/lib/generators/add-backend/files/src/server-setup/graphql-server.ts.template +185 -0
- package/lib/generators/add-backend/files/src/server-setup/graphql-subscription-server.ts.template +113 -0
- package/lib/generators/add-backend/files/src/server-setup/graphql-ws.ts.template +158 -0
- package/lib/generators/add-backend/files/src/server-setup/mongodb-migration-update.ts.template +47 -0
- package/lib/generators/add-backend/files/src/server-setup/utils.ts.template +43 -0
- package/lib/generators/add-backend/files/src/server-setup/websocket-multipath-update.ts.template +88 -0
- package/lib/generators/add-backend/files/src/service.ts.template +36 -0
- package/lib/generators/add-backend/files/src/stack-server.ts.template +277 -0
- package/lib/generators/add-backend/files/src/utils/migrations.ts.template +32 -0
- package/lib/generators/add-backend/files/tsconfig.base.json +30 -0
- package/lib/generators/add-backend/files/tsconfig.json +19 -0
- package/lib/generators/add-backend/files/uploads/3986781.ppt +0 -0
- package/lib/generators/add-backend/files/webpack.config.js +186 -0
- package/lib/generators/add-backend/files/webpack.config.mjs +209 -0
- package/lib/generators/add-backend/generator.cjs +20 -0
- package/lib/generators/add-backend/generator.cjs.map +1 -0
- package/lib/generators/add-backend/generator.d.ts +4 -0
- package/lib/generators/add-backend/generator.mjs +20 -0
- package/lib/generators/add-backend/generator.mjs.map +1 -0
- package/lib/generators/add-backend/schema.json +17 -0
- package/lib/generators/add-frontend/generator.cjs +29 -0
- package/lib/generators/add-frontend/generator.cjs.map +1 -0
- package/lib/generators/add-frontend/generator.d.ts +4 -0
- package/lib/generators/add-frontend/generator.mjs +29 -0
- package/lib/generators/add-frontend/generator.mjs.map +1 -0
- package/lib/generators/add-frontend/generator.spec.d.ts +1 -0
- package/lib/generators/add-frontend/schema.json +21 -0
- package/lib/generators/add-frontend/templates/Dockerfile +30 -0
- package/lib/generators/add-frontend/templates/codecept.json +28 -0
- package/lib/generators/add-frontend/templates/config.json +58 -0
- package/lib/generators/add-frontend/templates/env.d.ts.template +9 -0
- package/lib/generators/add-frontend/templates/env.js +5 -0
- package/lib/generators/add-frontend/templates/favicon.ico +0 -0
- package/lib/generators/add-frontend/templates/jest.config.js +33 -0
- package/lib/generators/add-frontend/templates/package.json +182 -0
- package/lib/generators/add-frontend/templates/public/css/dashboard.css +491 -0
- package/lib/generators/add-frontend/templates/public/favicon.ico +0 -0
- package/lib/generators/add-frontend/templates/server.js +78 -0
- package/lib/generators/add-frontend/templates/src/config/public-config.ts.template +82 -0
- package/lib/generators/add-frontend/templates/tools/mergeConfig.js +34 -0
- package/lib/generators/add-frontend/templates/tsconfig.base.json +38 -0
- package/lib/generators/add-frontend/templates/tsconfig.json +32 -0
- package/lib/generators/add-frontend/templates/tsconfig.node.json +10 -0
- package/lib/generators/add-frontend/templates/vite.config.ts.template +70 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.mjs +1 -1
- package/lib/utils/index.cjs +8 -0
- package/lib/utils/index.cjs.map +1 -0
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.mjs +8 -0
- package/lib/utils/index.mjs.map +1 -0
- package/package.json +2 -2
- package/rollup.config.mjs +14 -5
- package/src/generators/{add-entries → add-backend}/generator.spec.ts +5 -5
- package/src/generators/add-backend/generator.ts +30 -0
- package/src/generators/add-backend/schema.d.ts +4 -0
- package/src/generators/add-backend/schema.json +17 -0
- package/src/generators/add-frontend/generator.spec.ts +20 -0
- package/src/generators/add-frontend/generator.ts +40 -0
- package/src/generators/add-frontend/schema.d.ts +5 -0
- package/src/generators/add-frontend/schema.json +21 -0
- package/src/index.ts +2 -2
- package/src/utils/index.ts +10 -0
- package/lib/generators/add-entries/generator.cjs +0 -55
- package/lib/generators/add-entries/generator.cjs.map +0 -1
- package/lib/generators/add-entries/generator.d.ts +0 -4
- package/lib/generators/add-entries/generator.mjs +0 -55
- package/lib/generators/add-entries/generator.mjs.map +0 -1
- package/lib/generators/add-entries/schema.json +0 -13
- package/src/generators/add-entries/files/common/AntStyles.tsx.template +0 -8
- package/src/generators/add-entries/files/common/createEmotionCache.ts.template +0 -7
- package/src/generators/add-entries/files/common/index.ts.template +0 -3
- package/src/generators/add-entries/files/common/utils.ts.template +0 -16
- package/src/generators/add-entries/generator.ts +0 -66
- package/src/generators/add-entries/schema.d.ts +0 -3
- package/src/generators/add-entries/schema.json +0 -13
- /package/lib/generators/{add-entries → add-backend}/generator.spec.d.ts +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/antui/entry.client.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/antui/entry.server.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/antui/root.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/context.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/entry.client.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/entry.server.tsx.template +0 -0
- /package/lib/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/root.tsx.template +0 -0
- /package/lib/generators/{add-entries/files → add-frontend/templates/src}/common/AntStyles.tsx.template +0 -0
- /package/lib/generators/{add-entries/files → add-frontend/templates/src}/common/createEmotionCache.ts.template +0 -0
- /package/lib/generators/{add-entries/files → add-frontend/templates/src}/common/index.ts.template +0 -0
- /package/lib/generators/{add-entries/files → add-frontend/templates/src}/common/utils.ts.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/antui/entry.client.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/antui/entry.server.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/antui/root.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/context.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/entry.client.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/entry.server.tsx.template +0 -0
- /package/src/generators/{add-entries/entries → add-frontend/frameworks}/chakraui/root.tsx.template +0 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "adminide-stack-frontend-server",
|
|
3
|
+
"version": "3.1.1-alpha.6",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Sample Client server",
|
|
6
|
+
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/cdmbase/fullstack-pro/issues"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/cdmbase/fullstack-pro.git"
|
|
13
|
+
},
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "CDMBase LLC",
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "index.js",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"prebuild": "yarn build:clean && yarn genconfig",
|
|
20
|
+
"build": "cross-env SSR=true NODE_OPTIONS='--max_old_space_size=6096' NODE_ENV=production remix vite:build",
|
|
21
|
+
"build:SSR": "cross-env SSR=true NODE_ENV=production remix vite:build",
|
|
22
|
+
"build:clean": "rimraf dist build node_modules/.vite",
|
|
23
|
+
"build:debug": "cross-env DEBUGGING=true NODE_ENV=production remix vite:build",
|
|
24
|
+
"build:debug:verbose": "yarn build:debug -- -v",
|
|
25
|
+
"build:dev": "cross-env ENV_FILE=../../config/development/dev.env yarn build",
|
|
26
|
+
"build:devSSR": "cross-env SSR=true NODE_ENV=development ENV_FILE=../../config/development/dev.env NODE_OPTIONS='--max_old_space_size=6096' remix vite:build",
|
|
27
|
+
"build:stats": "cross-env BUNDLE_STATS=true yarn build:debug",
|
|
28
|
+
"dev:vite:ssr": "cross-env SSR=true NODE_ENV=development ENV_FILE=../../config/development/dev.env node ./server.js",
|
|
29
|
+
"docker:build": "cross-env yarn build && docker build . -t $npm_package_name:$npm_package_version",
|
|
30
|
+
"docker:build:debug": "yarn build:debug && docker build . -t $npm_package_name:$npm_package_version",
|
|
31
|
+
"docker:run": "docker run --env-file ../../config/staging/docker-staging.env -p 3000:3000 -it $npm_package_name:$npm_package_version",
|
|
32
|
+
"genconfig": "node ./tools/mergeConfig.js",
|
|
33
|
+
"jest": "./node_modules/.bin/jest",
|
|
34
|
+
"preview": "cross-env SSR=true NODE_ENV=development ENV_FILE=../../config/development/dev.env node ./server.js",
|
|
35
|
+
"routes": "npx @remix-run/dev routes --json",
|
|
36
|
+
"prestart": "yarn genconfig",
|
|
37
|
+
"start": "cross-env NODE_ENV=production node ./server.js",
|
|
38
|
+
"start:SSR": "yarn build:SSR && yarn start",
|
|
39
|
+
"start:dev": "cross-env NODE_ENV=production ENV_FILE=../../config/development/dev.env node ./server.js",
|
|
40
|
+
"start:devSSR": "yarn build:devSSR && yarn start:dev",
|
|
41
|
+
"start:staging": "cross-env NODE_ENV=production ENV_FILE=../../config/staging/staging.env node ./server.js",
|
|
42
|
+
"start:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env node ./server.js",
|
|
43
|
+
"start:vite:ssr": "cross-env SSR=true NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn build && yarn preview",
|
|
44
|
+
"test": "jest",
|
|
45
|
+
"test:debug": "npm test -- --runInBand",
|
|
46
|
+
"test:watch": "npm test -- --watch",
|
|
47
|
+
"prewatch": "yarn genconfig",
|
|
48
|
+
"watch": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env node ./server.js",
|
|
49
|
+
"watch:debug": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env node ./server.js",
|
|
50
|
+
"watch:ssr": "cross-env SSR=true yarn watch",
|
|
51
|
+
"watch:staging": "cross-env ENV_FILE=../../config/staging/staging.env node ./server.js",
|
|
52
|
+
"watch:test": "cross-env ENV_FILE=../../config/test/test.env node ./server.js"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@admin-layout/ant-design-pro": "7.3.8-alpha.29",
|
|
56
|
+
"@admin-layout/ant-ui": "7.3.8-alpha.28",
|
|
57
|
+
"@admin-layout/assets": "7.3.8-alpha.0",
|
|
58
|
+
"@admin-layout/icons": "7.3.8-alpha.0",
|
|
59
|
+
"@adminide-stack/account-api-browser": "7.3.8-alpha.0",
|
|
60
|
+
"@adminide-stack/billing-api-browser": "7.2.6-alpha.13",
|
|
61
|
+
"@adminide-stack/core": "7.2.6-alpha.13",
|
|
62
|
+
"@adminide-stack/extension-api": "7.2.6-alpha.13",
|
|
63
|
+
"@adminide-stack/extension-module-browser": "7.2.6-alpha.13",
|
|
64
|
+
"@adminide-stack/git-api-browser": "7.2.6-alpha.13",
|
|
65
|
+
"@adminide-stack/integration-api-client": "7.2.6-alpha.13",
|
|
66
|
+
"@adminide-stack/marketplace-module-browser": "7.2.6-alpha.13",
|
|
67
|
+
"@adminide-stack/platform-browser": "7.2.6-alpha.13",
|
|
68
|
+
"@adminide-stack/project-mgmt-browser": "7.2.6-alpha.13",
|
|
69
|
+
"@adminide-stack/react-shared-components": "7.2.6-alpha.13",
|
|
70
|
+
"@adminide-stack/registry-api-browser": "7.2.6-alpha.13",
|
|
71
|
+
"@adminide-stack/user-auth0-browser": "7.2.6-alpha.13",
|
|
72
|
+
"@adminide-stack/user-auth0-server": "7.2.6-alpha.13",
|
|
73
|
+
"@ant-design/pro-layout": "^7.6.1",
|
|
74
|
+
"@ant-design/static-style-extract": "^1.0.2",
|
|
75
|
+
"@apollo/client": "^3.9.0",
|
|
76
|
+
"@cdm-logger/client": "^9.0.3",
|
|
77
|
+
"@cdm-logger/server": "^9.0.3",
|
|
78
|
+
"@cdmbase/redux-data-router": "^1.0.10",
|
|
79
|
+
"@common-stack/client-core": "0.0.1",
|
|
80
|
+
"@common-stack/client-react": "0.0.1",
|
|
81
|
+
"@common-stack/components-pro": "0.0.1",
|
|
82
|
+
"@common-stack/core": "0.0.1",
|
|
83
|
+
"@common-stack/remix-router-redux": "0.0.1",
|
|
84
|
+
"@common-stack/server-core": "0.0.1",
|
|
85
|
+
"@container-stack/ssh-keygen-server-module": "0.0.36-alpha.23",
|
|
86
|
+
"@container-stack/territory": "5.1.2",
|
|
87
|
+
"@emotion/css": "^11.10.0",
|
|
88
|
+
"@emotion/react": "^11.10.4",
|
|
89
|
+
"@emotion/server": "^11.10.0",
|
|
90
|
+
"@emotion/styled": "^11.10.4",
|
|
91
|
+
"@files-stack/core": "3.0.2",
|
|
92
|
+
"@loadable/component": "^5.15.2",
|
|
93
|
+
"@loadable/server": "^5.15.2",
|
|
94
|
+
"@react-icons/all-files": "^4.1.0",
|
|
95
|
+
"@reduxjs/toolkit": "^2.2.1",
|
|
96
|
+
"@remix-run/express": "^2.8.1",
|
|
97
|
+
"@remix-run/node": "^2.8.1",
|
|
98
|
+
"@remix-run/react": "^2.8.1",
|
|
99
|
+
"@sentry/browser": "~5.11.2",
|
|
100
|
+
"antd": "^5.14.0",
|
|
101
|
+
"apollo-link-debounce": "^3.0.0",
|
|
102
|
+
"apollo-link-logger": "^2.0.0",
|
|
103
|
+
"apollo-server-errors": "^3.3.1",
|
|
104
|
+
"classnames": "^2.2.6",
|
|
105
|
+
"compression": "^1.7.4",
|
|
106
|
+
"cookie-parser": "^1.4.6",
|
|
107
|
+
"cors": "^2.8.5",
|
|
108
|
+
"cross-fetch": "^4.0.0",
|
|
109
|
+
"dotenv": "^8.2.0",
|
|
110
|
+
"envalid": "~7.2.2",
|
|
111
|
+
"error-stack-parser": "^2.0.4",
|
|
112
|
+
"express": "^4.18.2",
|
|
113
|
+
"glob-all": "^3.3.1",
|
|
114
|
+
"graphql": "^15.0.0",
|
|
115
|
+
"graphql-tag": "^2.11.0",
|
|
116
|
+
"graphql-ws": "^5.11.2",
|
|
117
|
+
"history": "^5.0.0",
|
|
118
|
+
"i18next": "^23.10.1",
|
|
119
|
+
"immutability-helper": "^3.0.1",
|
|
120
|
+
"inversify": "^6.0.2",
|
|
121
|
+
"ioredis": "^5.4.1",
|
|
122
|
+
"is-plain-obj": "^3.0.0",
|
|
123
|
+
"isbot": "^4.1.0",
|
|
124
|
+
"isomorphic-fetch": "^2.2.1",
|
|
125
|
+
"js-cookie": "^2.2.1",
|
|
126
|
+
"lodash": "^4.17.15",
|
|
127
|
+
"lodash-es": "^4.17.21",
|
|
128
|
+
"minimatch": "^5.0.0",
|
|
129
|
+
"moment": "2.29.1",
|
|
130
|
+
"prettysize": "^0.1.0",
|
|
131
|
+
"prop-types": "^15.8.1",
|
|
132
|
+
"ramda": "^0.29.1",
|
|
133
|
+
"react": "18.2.0",
|
|
134
|
+
"react-cookie": "^4.0.1",
|
|
135
|
+
"react-device-detect": "^2.2.2",
|
|
136
|
+
"react-dom": "18.2.0",
|
|
137
|
+
"react-ga4": "^2.1.0",
|
|
138
|
+
"react-helmet": "^6.1.0",
|
|
139
|
+
"react-helmet-async": "^1.3.0",
|
|
140
|
+
"react-i18next": "^14.1.0",
|
|
141
|
+
"react-icons": "~4.3.1",
|
|
142
|
+
"react-icons-converter": "^1.1.4",
|
|
143
|
+
"react-redux": "^9.1.1",
|
|
144
|
+
"react-transition-group": "^4.3.0",
|
|
145
|
+
"react-use": "^17.2.4",
|
|
146
|
+
"redux-logger": "^3.0.6",
|
|
147
|
+
"redux-observable": "^1.2.0",
|
|
148
|
+
"redux-persist": "^6.0.0",
|
|
149
|
+
"redux-persist-transform-filter": "^0.0.20",
|
|
150
|
+
"reflect-metadata": "^0.1.13",
|
|
151
|
+
"reselect": "^4.0.0",
|
|
152
|
+
"rxjs": "^6.5.3",
|
|
153
|
+
"rxjs-compat": "^6.5.3",
|
|
154
|
+
"rxjs-hooks": "^0.5.2",
|
|
155
|
+
"serialize-javascript": "^6.0.0",
|
|
156
|
+
"ts-deepmerge": "^7.0.0",
|
|
157
|
+
"ts-invariant": "^0.10.3",
|
|
158
|
+
"universal-cookie-express": "^4.0.1",
|
|
159
|
+
"vite-env-only": "^2.2.1"
|
|
160
|
+
},
|
|
161
|
+
"devDependencies": {
|
|
162
|
+
"@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
|
|
163
|
+
"@common-stack/frontend-stack-react": "0.0.1",
|
|
164
|
+
"@common-stack/rollup-vite-utils": "0.0.1",
|
|
165
|
+
"@remix-run/dev": "^2.8.1",
|
|
166
|
+
"@remix-run/serve": "^2.8.1",
|
|
167
|
+
"cross-env": "^7.0.3",
|
|
168
|
+
"dotenv-esm": "^16.0.3-4",
|
|
169
|
+
"pm2": "^5.2.2",
|
|
170
|
+
"raf": "3.4.1",
|
|
171
|
+
"rimraf": "^3.0.2",
|
|
172
|
+
"tsx": "^4.7.0",
|
|
173
|
+
"typescript": "^5.4.5",
|
|
174
|
+
"uuid": "^9.0.1",
|
|
175
|
+
"vite": "^5.1.0",
|
|
176
|
+
"vite-plugin-cjs-interop": "^2.1.1",
|
|
177
|
+
"vite-tsconfig-paths": "^4.2.1"
|
|
178
|
+
},
|
|
179
|
+
"peerDependencies": {
|
|
180
|
+
"body-parser": "*"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
table {
|
|
2
|
+
background-color: transparent;
|
|
3
|
+
}
|
|
4
|
+
caption {
|
|
5
|
+
padding-top: 8px;
|
|
6
|
+
padding-bottom: 8px;
|
|
7
|
+
color: #777777;
|
|
8
|
+
text-align: left;
|
|
9
|
+
}
|
|
10
|
+
th {
|
|
11
|
+
text-align: left;
|
|
12
|
+
}
|
|
13
|
+
.table {
|
|
14
|
+
width: 100%;
|
|
15
|
+
max-width: 100%;
|
|
16
|
+
margin-bottom: 20px;
|
|
17
|
+
}
|
|
18
|
+
.table > thead > tr > th,
|
|
19
|
+
.table > tbody > tr > th,
|
|
20
|
+
.table > tfoot > tr > th,
|
|
21
|
+
.table > thead > tr > td,
|
|
22
|
+
.table > tbody > tr > td,
|
|
23
|
+
.table > tfoot > tr > td {
|
|
24
|
+
padding: 8px;
|
|
25
|
+
line-height: 1.42857143;
|
|
26
|
+
vertical-align: top;
|
|
27
|
+
border-top: 1px solid #dddddd;
|
|
28
|
+
}
|
|
29
|
+
.table > thead > tr > th {
|
|
30
|
+
vertical-align: bottom;
|
|
31
|
+
border-bottom: 2px solid #dddddd;
|
|
32
|
+
}
|
|
33
|
+
.table > caption + thead > tr:first-child > th,
|
|
34
|
+
.table > colgroup + thead > tr:first-child > th,
|
|
35
|
+
.table > thead:first-child > tr:first-child > th,
|
|
36
|
+
.table > caption + thead > tr:first-child > td,
|
|
37
|
+
.table > colgroup + thead > tr:first-child > td,
|
|
38
|
+
.table > thead:first-child > tr:first-child > td {
|
|
39
|
+
border-top: 0;
|
|
40
|
+
}
|
|
41
|
+
.table > tbody + tbody {
|
|
42
|
+
border-top: 2px solid #dddddd;
|
|
43
|
+
}
|
|
44
|
+
.table .table {
|
|
45
|
+
background-color: #ffffff;
|
|
46
|
+
}
|
|
47
|
+
.table-condensed > thead > tr > th,
|
|
48
|
+
.table-condensed > tbody > tr > th,
|
|
49
|
+
.table-condensed > tfoot > tr > th,
|
|
50
|
+
.table-condensed > thead > tr > td,
|
|
51
|
+
.table-condensed > tbody > tr > td,
|
|
52
|
+
.table-condensed > tfoot > tr > td {
|
|
53
|
+
padding: 5px;
|
|
54
|
+
}
|
|
55
|
+
.table-bordered {
|
|
56
|
+
border: 1px solid #dddddd;
|
|
57
|
+
}
|
|
58
|
+
.table-bordered > thead > tr > th,
|
|
59
|
+
.table-bordered > tbody > tr > th,
|
|
60
|
+
.table-bordered > tfoot > tr > th,
|
|
61
|
+
.table-bordered > thead > tr > td,
|
|
62
|
+
.table-bordered > tbody > tr > td,
|
|
63
|
+
.table-bordered > tfoot > tr > td {
|
|
64
|
+
border: 1px solid #dddddd;
|
|
65
|
+
}
|
|
66
|
+
.table-bordered > thead > tr > th,
|
|
67
|
+
.table-bordered > thead > tr > td {
|
|
68
|
+
border-bottom-width: 2px;
|
|
69
|
+
}
|
|
70
|
+
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
71
|
+
background-color: #f9f9f9;
|
|
72
|
+
}
|
|
73
|
+
.table-hover > tbody > tr:hover {
|
|
74
|
+
background-color: #f5f5f5;
|
|
75
|
+
}
|
|
76
|
+
table col[class*="col-"] {
|
|
77
|
+
position: static;
|
|
78
|
+
float: none;
|
|
79
|
+
display: table-column;
|
|
80
|
+
}
|
|
81
|
+
table td[class*="col-"],
|
|
82
|
+
table th[class*="col-"] {
|
|
83
|
+
position: static;
|
|
84
|
+
float: none;
|
|
85
|
+
display: table-cell;
|
|
86
|
+
}
|
|
87
|
+
.table > thead > tr > td.active,
|
|
88
|
+
.table > tbody > tr > td.active,
|
|
89
|
+
.table > tfoot > tr > td.active,
|
|
90
|
+
.table > thead > tr > th.active,
|
|
91
|
+
.table > tbody > tr > th.active,
|
|
92
|
+
.table > tfoot > tr > th.active,
|
|
93
|
+
.table > thead > tr.active > td,
|
|
94
|
+
.table > tbody > tr.active > td,
|
|
95
|
+
.table > tfoot > tr.active > td,
|
|
96
|
+
.table > thead > tr.active > th,
|
|
97
|
+
.table > tbody > tr.active > th,
|
|
98
|
+
.table > tfoot > tr.active > th {
|
|
99
|
+
background-color: #f5f5f5;
|
|
100
|
+
}
|
|
101
|
+
.table-hover > tbody > tr > td.active:hover,
|
|
102
|
+
.table-hover > tbody > tr > th.active:hover,
|
|
103
|
+
.table-hover > tbody > tr.active:hover > td,
|
|
104
|
+
.table-hover > tbody > tr:hover > .active,
|
|
105
|
+
.table-hover > tbody > tr.active:hover > th {
|
|
106
|
+
background-color: #e8e8e8;
|
|
107
|
+
}
|
|
108
|
+
.table > thead > tr > td.success,
|
|
109
|
+
.table > tbody > tr > td.success,
|
|
110
|
+
.table > tfoot > tr > td.success,
|
|
111
|
+
.table > thead > tr > th.success,
|
|
112
|
+
.table > tbody > tr > th.success,
|
|
113
|
+
.table > tfoot > tr > th.success,
|
|
114
|
+
.table > thead > tr.success > td,
|
|
115
|
+
.table > tbody > tr.success > td,
|
|
116
|
+
.table > tfoot > tr.success > td,
|
|
117
|
+
.table > thead > tr.success > th,
|
|
118
|
+
.table > tbody > tr.success > th,
|
|
119
|
+
.table > tfoot > tr.success > th {
|
|
120
|
+
background-color: #dff0d8;
|
|
121
|
+
}
|
|
122
|
+
.table-hover > tbody > tr > td.success:hover,
|
|
123
|
+
.table-hover > tbody > tr > th.success:hover,
|
|
124
|
+
.table-hover > tbody > tr.success:hover > td,
|
|
125
|
+
.table-hover > tbody > tr:hover > .success,
|
|
126
|
+
.table-hover > tbody > tr.success:hover > th {
|
|
127
|
+
background-color: #d0e9c6;
|
|
128
|
+
}
|
|
129
|
+
.table > thead > tr > td.info,
|
|
130
|
+
.table > tbody > tr > td.info,
|
|
131
|
+
.table > tfoot > tr > td.info,
|
|
132
|
+
.table > thead > tr > th.info,
|
|
133
|
+
.table > tbody > tr > th.info,
|
|
134
|
+
.table > tfoot > tr > th.info,
|
|
135
|
+
.table > thead > tr.info > td,
|
|
136
|
+
.table > tbody > tr.info > td,
|
|
137
|
+
.table > tfoot > tr.info > td,
|
|
138
|
+
.table > thead > tr.info > th,
|
|
139
|
+
.table > tbody > tr.info > th,
|
|
140
|
+
.table > tfoot > tr.info > th {
|
|
141
|
+
background-color: #d9edf7;
|
|
142
|
+
}
|
|
143
|
+
.table-hover > tbody > tr > td.info:hover,
|
|
144
|
+
.table-hover > tbody > tr > th.info:hover,
|
|
145
|
+
.table-hover > tbody > tr.info:hover > td,
|
|
146
|
+
.table-hover > tbody > tr:hover > .info,
|
|
147
|
+
.table-hover > tbody > tr.info:hover > th {
|
|
148
|
+
background-color: #c4e3f3;
|
|
149
|
+
}
|
|
150
|
+
.table > thead > tr > td.warning,
|
|
151
|
+
.table > tbody > tr > td.warning,
|
|
152
|
+
.table > tfoot > tr > td.warning,
|
|
153
|
+
.table > thead > tr > th.warning,
|
|
154
|
+
.table > tbody > tr > th.warning,
|
|
155
|
+
.table > tfoot > tr > th.warning,
|
|
156
|
+
.table > thead > tr.warning > td,
|
|
157
|
+
.table > tbody > tr.warning > td,
|
|
158
|
+
.table > tfoot > tr.warning > td,
|
|
159
|
+
.table > thead > tr.warning > th,
|
|
160
|
+
.table > tbody > tr.warning > th,
|
|
161
|
+
.table > tfoot > tr.warning > th {
|
|
162
|
+
background-color: #fcf8e3;
|
|
163
|
+
}
|
|
164
|
+
.table-hover > tbody > tr > td.warning:hover,
|
|
165
|
+
.table-hover > tbody > tr > th.warning:hover,
|
|
166
|
+
.table-hover > tbody > tr.warning:hover > td,
|
|
167
|
+
.table-hover > tbody > tr:hover > .warning,
|
|
168
|
+
.table-hover > tbody > tr.warning:hover > th {
|
|
169
|
+
background-color: #faf2cc;
|
|
170
|
+
}
|
|
171
|
+
.table > thead > tr > td.danger,
|
|
172
|
+
.table > tbody > tr > td.danger,
|
|
173
|
+
.table > tfoot > tr > td.danger,
|
|
174
|
+
.table > thead > tr > th.danger,
|
|
175
|
+
.table > tbody > tr > th.danger,
|
|
176
|
+
.table > tfoot > tr > th.danger,
|
|
177
|
+
.table > thead > tr.danger > td,
|
|
178
|
+
.table > tbody > tr.danger > td,
|
|
179
|
+
.table > tfoot > tr.danger > td,
|
|
180
|
+
.table > thead > tr.danger > th,
|
|
181
|
+
.table > tbody > tr.danger > th,
|
|
182
|
+
.table > tfoot > tr.danger > th {
|
|
183
|
+
background-color: #f2dede;
|
|
184
|
+
}
|
|
185
|
+
.table-hover > tbody > tr > td.danger:hover,
|
|
186
|
+
.table-hover > tbody > tr > th.danger:hover,
|
|
187
|
+
.table-hover > tbody > tr.danger:hover > td,
|
|
188
|
+
.table-hover > tbody > tr:hover > .danger,
|
|
189
|
+
.table-hover > tbody > tr.danger:hover > th {
|
|
190
|
+
background-color: #ebcccc;
|
|
191
|
+
}
|
|
192
|
+
.table-responsive {
|
|
193
|
+
overflow-x: auto;
|
|
194
|
+
min-height: 0.01%;
|
|
195
|
+
}
|
|
196
|
+
@media screen and (max-width: 767px) {
|
|
197
|
+
.table-responsive {
|
|
198
|
+
width: 100%;
|
|
199
|
+
margin-bottom: 15px;
|
|
200
|
+
overflow-y: hidden;
|
|
201
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
202
|
+
border: 1px solid #dddddd;
|
|
203
|
+
}
|
|
204
|
+
.table-responsive > .table {
|
|
205
|
+
margin-bottom: 0;
|
|
206
|
+
}
|
|
207
|
+
.table-responsive > .table > thead > tr > th,
|
|
208
|
+
.table-responsive > .table > tbody > tr > th,
|
|
209
|
+
.table-responsive > .table > tfoot > tr > th,
|
|
210
|
+
.table-responsive > .table > thead > tr > td,
|
|
211
|
+
.table-responsive > .table > tbody > tr > td,
|
|
212
|
+
.table-responsive > .table > tfoot > tr > td {
|
|
213
|
+
white-space: nowrap;
|
|
214
|
+
}
|
|
215
|
+
.table-responsive > .table-bordered {
|
|
216
|
+
border: 0;
|
|
217
|
+
}
|
|
218
|
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
|
219
|
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
|
220
|
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
|
221
|
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
|
222
|
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
|
223
|
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
|
224
|
+
border-left: 0;
|
|
225
|
+
}
|
|
226
|
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
|
227
|
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
|
228
|
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
|
229
|
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
|
230
|
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
|
231
|
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
|
232
|
+
border-right: 0;
|
|
233
|
+
}
|
|
234
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
|
235
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
|
236
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
|
237
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
|
238
|
+
border-bottom: 0;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
.clearfix:before,
|
|
242
|
+
.clearfix:after {
|
|
243
|
+
content: " ";
|
|
244
|
+
display: table;
|
|
245
|
+
}
|
|
246
|
+
.clearfix:after {
|
|
247
|
+
clear: both;
|
|
248
|
+
}
|
|
249
|
+
.center-block {
|
|
250
|
+
display: block;
|
|
251
|
+
margin-left: auto;
|
|
252
|
+
margin-right: auto;
|
|
253
|
+
}
|
|
254
|
+
.pull-right {
|
|
255
|
+
float: right !important;
|
|
256
|
+
}
|
|
257
|
+
.pull-left {
|
|
258
|
+
float: left !important;
|
|
259
|
+
}
|
|
260
|
+
.hide {
|
|
261
|
+
display: none !important;
|
|
262
|
+
}
|
|
263
|
+
.show {
|
|
264
|
+
display: block !important;
|
|
265
|
+
}
|
|
266
|
+
.invisible {
|
|
267
|
+
visibility: hidden;
|
|
268
|
+
}
|
|
269
|
+
.text-hide {
|
|
270
|
+
font: 0/0 a;
|
|
271
|
+
color: transparent;
|
|
272
|
+
text-shadow: none;
|
|
273
|
+
background-color: transparent;
|
|
274
|
+
border: 0;
|
|
275
|
+
}
|
|
276
|
+
.hidden {
|
|
277
|
+
display: none !important;
|
|
278
|
+
}
|
|
279
|
+
.affix {
|
|
280
|
+
position: fixed;
|
|
281
|
+
}
|
|
282
|
+
@-ms-viewport {
|
|
283
|
+
width: device-width;
|
|
284
|
+
}
|
|
285
|
+
.visible-xs,
|
|
286
|
+
.visible-sm,
|
|
287
|
+
.visible-md,
|
|
288
|
+
.visible-lg {
|
|
289
|
+
display: none !important;
|
|
290
|
+
}
|
|
291
|
+
.visible-xs-block,
|
|
292
|
+
.visible-xs-inline,
|
|
293
|
+
.visible-xs-inline-block,
|
|
294
|
+
.visible-sm-block,
|
|
295
|
+
.visible-sm-inline,
|
|
296
|
+
.visible-sm-inline-block,
|
|
297
|
+
.visible-md-block,
|
|
298
|
+
.visible-md-inline,
|
|
299
|
+
.visible-md-inline-block,
|
|
300
|
+
.visible-lg-block,
|
|
301
|
+
.visible-lg-inline,
|
|
302
|
+
.visible-lg-inline-block {
|
|
303
|
+
display: none !important;
|
|
304
|
+
}
|
|
305
|
+
@media (max-width: 767px) {
|
|
306
|
+
.visible-xs {
|
|
307
|
+
display: block !important;
|
|
308
|
+
}
|
|
309
|
+
table.visible-xs {
|
|
310
|
+
display: table !important;
|
|
311
|
+
}
|
|
312
|
+
tr.visible-xs {
|
|
313
|
+
display: table-row !important;
|
|
314
|
+
}
|
|
315
|
+
th.visible-xs,
|
|
316
|
+
td.visible-xs {
|
|
317
|
+
display: table-cell !important;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
@media (max-width: 767px) {
|
|
321
|
+
.visible-xs-block {
|
|
322
|
+
display: block !important;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
@media (max-width: 767px) {
|
|
326
|
+
.visible-xs-inline {
|
|
327
|
+
display: inline !important;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
@media (max-width: 767px) {
|
|
331
|
+
.visible-xs-inline-block {
|
|
332
|
+
display: inline-block !important;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
336
|
+
.visible-sm {
|
|
337
|
+
display: block !important;
|
|
338
|
+
}
|
|
339
|
+
table.visible-sm {
|
|
340
|
+
display: table !important;
|
|
341
|
+
}
|
|
342
|
+
tr.visible-sm {
|
|
343
|
+
display: table-row !important;
|
|
344
|
+
}
|
|
345
|
+
th.visible-sm,
|
|
346
|
+
td.visible-sm {
|
|
347
|
+
display: table-cell !important;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
351
|
+
.visible-sm-block {
|
|
352
|
+
display: block !important;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
356
|
+
.visible-sm-inline {
|
|
357
|
+
display: inline !important;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
361
|
+
.visible-sm-inline-block {
|
|
362
|
+
display: inline-block !important;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
366
|
+
.visible-md {
|
|
367
|
+
display: block !important;
|
|
368
|
+
}
|
|
369
|
+
table.visible-md {
|
|
370
|
+
display: table !important;
|
|
371
|
+
}
|
|
372
|
+
tr.visible-md {
|
|
373
|
+
display: table-row !important;
|
|
374
|
+
}
|
|
375
|
+
th.visible-md,
|
|
376
|
+
td.visible-md {
|
|
377
|
+
display: table-cell !important;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
381
|
+
.visible-md-block {
|
|
382
|
+
display: block !important;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
386
|
+
.visible-md-inline {
|
|
387
|
+
display: inline !important;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
391
|
+
.visible-md-inline-block {
|
|
392
|
+
display: inline-block !important;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
@media (min-width: 1200px) {
|
|
396
|
+
.visible-lg {
|
|
397
|
+
display: block !important;
|
|
398
|
+
}
|
|
399
|
+
table.visible-lg {
|
|
400
|
+
display: table !important;
|
|
401
|
+
}
|
|
402
|
+
tr.visible-lg {
|
|
403
|
+
display: table-row !important;
|
|
404
|
+
}
|
|
405
|
+
th.visible-lg,
|
|
406
|
+
td.visible-lg {
|
|
407
|
+
display: table-cell !important;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
@media (min-width: 1200px) {
|
|
411
|
+
.visible-lg-block {
|
|
412
|
+
display: block !important;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
@media (min-width: 1200px) {
|
|
416
|
+
.visible-lg-inline {
|
|
417
|
+
display: inline !important;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
@media (min-width: 1200px) {
|
|
421
|
+
.visible-lg-inline-block {
|
|
422
|
+
display: inline-block !important;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
@media (max-width: 767px) {
|
|
426
|
+
.hidden-xs {
|
|
427
|
+
display: none !important;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
431
|
+
.hidden-sm {
|
|
432
|
+
display: none !important;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
436
|
+
.hidden-md {
|
|
437
|
+
display: none !important;
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
@media (min-width: 1200px) {
|
|
441
|
+
.hidden-lg {
|
|
442
|
+
display: none !important;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
.visible-print {
|
|
446
|
+
display: none !important;
|
|
447
|
+
}
|
|
448
|
+
@media print {
|
|
449
|
+
.visible-print {
|
|
450
|
+
display: block !important;
|
|
451
|
+
}
|
|
452
|
+
table.visible-print {
|
|
453
|
+
display: table !important;
|
|
454
|
+
}
|
|
455
|
+
tr.visible-print {
|
|
456
|
+
display: table-row !important;
|
|
457
|
+
}
|
|
458
|
+
th.visible-print,
|
|
459
|
+
td.visible-print {
|
|
460
|
+
display: table-cell !important;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
.visible-print-block {
|
|
464
|
+
display: none !important;
|
|
465
|
+
}
|
|
466
|
+
@media print {
|
|
467
|
+
.visible-print-block {
|
|
468
|
+
display: block !important;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
.visible-print-inline {
|
|
472
|
+
display: none !important;
|
|
473
|
+
}
|
|
474
|
+
@media print {
|
|
475
|
+
.visible-print-inline {
|
|
476
|
+
display: inline !important;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
.visible-print-inline-block {
|
|
480
|
+
display: none !important;
|
|
481
|
+
}
|
|
482
|
+
@media print {
|
|
483
|
+
.visible-print-inline-block {
|
|
484
|
+
display: inline-block !important;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
@media print {
|
|
488
|
+
.hidden-print {
|
|
489
|
+
display: none !important;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
Binary file
|