@vc-shell/create-vc-app 2.5.0 → 2.6.0-rc.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/README.md +1 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/engine/helpers.d.ts +1 -0
- package/dist/engine/helpers.d.ts.map +1 -1
- package/dist/index.js +27 -18
- package/dist/templates/dynamic-module/_gitignore +4 -4
- package/dist/templates/dynamic-module/_package.json.ejs +3 -3
- package/dist/templates/dynamic-module/tsconfig.json +10 -10
- package/dist/templates/dynamic-module/vite.config.mts.ejs +3 -3
- package/dist/templates/module/composables/index.ts.ejs +2 -2
- package/dist/templates/module/composables/useList.ts.ejs +16 -7
- package/dist/templates/module/locales/index.ts +2 -2
- package/dist/templates/module/pages/index.ts.ejs +2 -2
- package/dist/templates/sample-module/composables/index.ts +2 -2
- package/dist/templates/sample-module/locales/index.ts +2 -2
- package/dist/templates/sample-module/pages/index.ts +2 -2
- package/dist/templates/sample-module/sample-data/index.ts +2 -2
- package/dist/templates/sample-module/sample-data/methods.ts +65 -65
- package/dist/templates/standalone/LICENSE +12 -12
- package/dist/templates/standalone/README.md +54 -54
- package/dist/templates/standalone/_browserslistrc +3 -3
- package/dist/templates/standalone/_commitlintrc.json +3 -3
- package/dist/templates/standalone/_editorconfig +22 -22
- package/dist/templates/standalone/_env.ejs +3 -3
- package/dist/templates/standalone/_env.local.ejs +1 -1
- package/dist/templates/standalone/_github/COMMIT_CONVENTION.md +91 -91
- package/dist/templates/standalone/_github/PULL_REQUEST_TEMPLATE.md +11 -11
- package/dist/templates/standalone/_gitignore +71 -71
- package/dist/templates/standalone/_package.json.ejs +7 -4
- package/dist/templates/standalone/_prettierignore +4 -4
- package/dist/templates/standalone/_prettierrc +4 -4
- package/dist/templates/standalone/_vscode/extensions.json +12 -12
- package/dist/templates/standalone/_vscode/settings.json +9 -9
- package/dist/templates/standalone/index.html.ejs +27 -27
- package/dist/templates/standalone/postcss.config.cjs +6 -6
- package/dist/templates/standalone/public/assets/logo-white.svg +21 -21
- package/dist/templates/standalone/public/assets/logo.svg +8 -8
- package/dist/templates/standalone/public/img/icons/safari-pinned-tab.svg +32 -32
- package/dist/templates/standalone/src/composables/index.ts +1 -1
- package/dist/templates/standalone/src/env.d.ts +9 -9
- package/dist/templates/standalone/src/locales/index.ts +2 -2
- package/dist/templates/standalone/src/main.ts.ejs +10 -0
- package/dist/templates/standalone/src/router/index.ts +10 -10
- package/dist/templates/standalone/tailwind.config.ts +7 -7
- package/dist/templates/standalone/vite.config.mts.ejs +6 -0
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
# top-most EditorConfig file
|
|
2
|
-
root = true
|
|
3
|
-
|
|
4
|
-
# Global rules, override on case-by-case basis
|
|
5
|
-
[*]
|
|
6
|
-
charset = utf-8
|
|
7
|
-
indent_style = space
|
|
8
|
-
max_line_length = 120
|
|
9
|
-
tab_width = 2
|
|
10
|
-
end_of_line = lf
|
|
11
|
-
insert_final_newline = true
|
|
12
|
-
trim_trailing_whitespace = true
|
|
13
|
-
|
|
14
|
-
[*.{vue,js,ts,scss}]
|
|
15
|
-
quote_type = double
|
|
16
|
-
|
|
17
|
-
[*.md]
|
|
18
|
-
max_line_length = off
|
|
19
|
-
trim_trailing_whitespace = false
|
|
20
|
-
|
|
21
|
-
[*.svg]
|
|
22
|
-
insert_final_newline = false
|
|
1
|
+
# top-most EditorConfig file
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
# Global rules, override on case-by-case basis
|
|
5
|
+
[*]
|
|
6
|
+
charset = utf-8
|
|
7
|
+
indent_style = space
|
|
8
|
+
max_line_length = 120
|
|
9
|
+
tab_width = 2
|
|
10
|
+
end_of_line = lf
|
|
11
|
+
insert_final_newline = true
|
|
12
|
+
trim_trailing_whitespace = true
|
|
13
|
+
|
|
14
|
+
[*.{vue,js,ts,scss}]
|
|
15
|
+
quote_type = double
|
|
16
|
+
|
|
17
|
+
[*.md]
|
|
18
|
+
max_line_length = off
|
|
19
|
+
trim_trailing_whitespace = false
|
|
20
|
+
|
|
21
|
+
[*.svg]
|
|
22
|
+
insert_final_newline = false
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
APP_BASE_PATH=<%- BasePath %>
|
|
2
|
-
APP_I18N_LOCALE=en
|
|
3
|
-
APP_I18N_FALLBACK_LOCALE=en
|
|
1
|
+
APP_BASE_PATH=<%- BasePath %>
|
|
2
|
+
APP_I18N_LOCALE=en
|
|
3
|
+
APP_I18N_FALLBACK_LOCALE=en
|
|
@@ -1 +1 @@
|
|
|
1
|
-
#APP_PLATFORM_URL=add_platform_url_here
|
|
1
|
+
#APP_PLATFORM_URL=add_platform_url_here
|
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
# Git Commit Message Convention
|
|
2
|
-
|
|
3
|
-
## TL;DR
|
|
4
|
-
|
|
5
|
-
Messages must be matched by the following regex:
|
|
6
|
-
|
|
7
|
-
```js
|
|
8
|
-
/^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|ci|chore|types)(\(.+\))?: .{1,50}/;
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Examples
|
|
12
|
-
|
|
13
|
-
Appears under "Features" header, `ui-kit` subheader:
|
|
14
|
-
|
|
15
|
-
```text
|
|
16
|
-
feat(ui-kit): add 'comments' option
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
Appears under "Bug Fixes" header, `shell` subheader, with a link to issue #28:
|
|
20
|
-
|
|
21
|
-
```text
|
|
22
|
-
fix(shell): handle events on blur
|
|
23
|
-
|
|
24
|
-
close #28
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
|
|
28
|
-
|
|
29
|
-
```text
|
|
30
|
-
perf(api-client): improve vdom diffing by removing 'foo' option
|
|
31
|
-
|
|
32
|
-
BREAKING CHANGE: The 'foo' option has been removed.
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
|
|
36
|
-
|
|
37
|
-
```text
|
|
38
|
-
revert: feat(ui-kit): add 'comments' option
|
|
39
|
-
|
|
40
|
-
This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## Full Message Format
|
|
44
|
-
|
|
45
|
-
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
|
|
46
|
-
|
|
47
|
-
```text
|
|
48
|
-
<type>(<scope>): <subject>
|
|
49
|
-
<BLANK LINE>
|
|
50
|
-
<body>
|
|
51
|
-
<BLANK LINE>
|
|
52
|
-
<footer>
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
The **header** is mandatory and the **scope** of the header is optional.
|
|
56
|
-
|
|
57
|
-
A `!` MAY be appended prior to the `:` in the type/scope prefix, to further draw attention to breaking changes. `BREAKING CHANGE:` description MUST also be included in the body or footer, along with the `!` in the prefix.
|
|
58
|
-
|
|
59
|
-
### Revert
|
|
60
|
-
|
|
61
|
-
If the commit reverts a previous commit, it should begin with `revert:`, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
|
|
62
|
-
|
|
63
|
-
### Type
|
|
64
|
-
|
|
65
|
-
If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
|
|
66
|
-
|
|
67
|
-
Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
|
|
68
|
-
|
|
69
|
-
### Scope
|
|
70
|
-
|
|
71
|
-
The scope could be any valid workspace package name. For example `shell`, `ui-kit`, `api-client`, etc...
|
|
72
|
-
|
|
73
|
-
### Subject
|
|
74
|
-
|
|
75
|
-
The subject contains succinct description of the change:
|
|
76
|
-
|
|
77
|
-
- use the imperative, present tense: "change" not "changed" nor "changes"
|
|
78
|
-
- don't capitalize first letter
|
|
79
|
-
- no dot (.) at the end
|
|
80
|
-
|
|
81
|
-
### Body
|
|
82
|
-
|
|
83
|
-
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
|
|
84
|
-
The body should include the motivation for the change and contrast this with previous behavior.
|
|
85
|
-
|
|
86
|
-
### Footer
|
|
87
|
-
|
|
88
|
-
The footer should contain any information about **Breaking Changes** and is also the place to
|
|
89
|
-
reference GitHub issues that this commit **Closes**.
|
|
90
|
-
|
|
91
|
-
**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
|
|
1
|
+
# Git Commit Message Convention
|
|
2
|
+
|
|
3
|
+
## TL;DR
|
|
4
|
+
|
|
5
|
+
Messages must be matched by the following regex:
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
/^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|ci|chore|types)(\(.+\))?: .{1,50}/;
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Examples
|
|
12
|
+
|
|
13
|
+
Appears under "Features" header, `ui-kit` subheader:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
feat(ui-kit): add 'comments' option
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Appears under "Bug Fixes" header, `shell` subheader, with a link to issue #28:
|
|
20
|
+
|
|
21
|
+
```text
|
|
22
|
+
fix(shell): handle events on blur
|
|
23
|
+
|
|
24
|
+
close #28
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
|
|
28
|
+
|
|
29
|
+
```text
|
|
30
|
+
perf(api-client): improve vdom diffing by removing 'foo' option
|
|
31
|
+
|
|
32
|
+
BREAKING CHANGE: The 'foo' option has been removed.
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
|
|
36
|
+
|
|
37
|
+
```text
|
|
38
|
+
revert: feat(ui-kit): add 'comments' option
|
|
39
|
+
|
|
40
|
+
This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Full Message Format
|
|
44
|
+
|
|
45
|
+
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
|
|
46
|
+
|
|
47
|
+
```text
|
|
48
|
+
<type>(<scope>): <subject>
|
|
49
|
+
<BLANK LINE>
|
|
50
|
+
<body>
|
|
51
|
+
<BLANK LINE>
|
|
52
|
+
<footer>
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
The **header** is mandatory and the **scope** of the header is optional.
|
|
56
|
+
|
|
57
|
+
A `!` MAY be appended prior to the `:` in the type/scope prefix, to further draw attention to breaking changes. `BREAKING CHANGE:` description MUST also be included in the body or footer, along with the `!` in the prefix.
|
|
58
|
+
|
|
59
|
+
### Revert
|
|
60
|
+
|
|
61
|
+
If the commit reverts a previous commit, it should begin with `revert:`, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
|
|
62
|
+
|
|
63
|
+
### Type
|
|
64
|
+
|
|
65
|
+
If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
|
|
66
|
+
|
|
67
|
+
Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
|
|
68
|
+
|
|
69
|
+
### Scope
|
|
70
|
+
|
|
71
|
+
The scope could be any valid workspace package name. For example `shell`, `ui-kit`, `api-client`, etc...
|
|
72
|
+
|
|
73
|
+
### Subject
|
|
74
|
+
|
|
75
|
+
The subject contains succinct description of the change:
|
|
76
|
+
|
|
77
|
+
- use the imperative, present tense: "change" not "changed" nor "changes"
|
|
78
|
+
- don't capitalize first letter
|
|
79
|
+
- no dot (.) at the end
|
|
80
|
+
|
|
81
|
+
### Body
|
|
82
|
+
|
|
83
|
+
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
|
|
84
|
+
The body should include the motivation for the change and contrast this with previous behavior.
|
|
85
|
+
|
|
86
|
+
### Footer
|
|
87
|
+
|
|
88
|
+
The footer should contain any information about **Breaking Changes** and is also the place to
|
|
89
|
+
reference GitHub issues that this commit **Closes**.
|
|
90
|
+
|
|
91
|
+
**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# Project Task
|
|
2
|
-
|
|
3
|
-
<!-- paste a link to related issue -->
|
|
4
|
-
|
|
5
|
-
Closes #
|
|
6
|
-
|
|
7
|
-
## Scope of work
|
|
8
|
-
|
|
9
|
-
<!-- describe what you did -->
|
|
10
|
-
|
|
11
|
-
## Checklist
|
|
1
|
+
# Project Task
|
|
2
|
+
|
|
3
|
+
<!-- paste a link to related issue -->
|
|
4
|
+
|
|
5
|
+
Closes #
|
|
6
|
+
|
|
7
|
+
## Scope of work
|
|
8
|
+
|
|
9
|
+
<!-- describe what you did -->
|
|
10
|
+
|
|
11
|
+
## Checklist
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
# OS Specific
|
|
2
|
-
.DS_Store
|
|
3
|
-
.DS_Store?
|
|
4
|
-
._*
|
|
5
|
-
.Spotlight-V100
|
|
6
|
-
.Trashes
|
|
7
|
-
ehthumbs.db
|
|
8
|
-
Thumbs.db
|
|
9
|
-
|
|
10
|
-
# IDE Specific
|
|
11
|
-
nbproject
|
|
12
|
-
.~lock.*
|
|
13
|
-
.buildpath
|
|
14
|
-
.idea
|
|
15
|
-
.project
|
|
16
|
-
.settings
|
|
17
|
-
composer.lock
|
|
18
|
-
*.sublime-workspace
|
|
19
|
-
*.suo
|
|
20
|
-
*.ntvs*
|
|
21
|
-
*.njsproj
|
|
22
|
-
*.sln
|
|
23
|
-
*.sw?
|
|
24
|
-
|
|
25
|
-
# Project Specific
|
|
26
|
-
node_modules
|
|
27
|
-
*.log
|
|
28
|
-
/lib
|
|
29
|
-
tmp
|
|
30
|
-
.changelog
|
|
31
|
-
coverage/
|
|
32
|
-
.nyc_output/
|
|
33
|
-
.eslintcache
|
|
34
|
-
|
|
35
|
-
# local env files
|
|
36
|
-
.env.local
|
|
37
|
-
.env.*.local
|
|
38
|
-
|
|
39
|
-
# compiled output
|
|
40
|
-
dist/
|
|
41
|
-
storybook-static
|
|
42
|
-
*.tsbuildinfo
|
|
43
|
-
|
|
44
|
-
# IDEs and editors
|
|
45
|
-
/.idea
|
|
46
|
-
.project
|
|
47
|
-
.classpath
|
|
48
|
-
.c9/
|
|
49
|
-
*.launch
|
|
50
|
-
|
|
51
|
-
# IDE - VSCode
|
|
52
|
-
.vscode/*
|
|
53
|
-
!.vscode/settings.json
|
|
54
|
-
!.vscode/tasks.json
|
|
55
|
-
!.vscode/launch.json
|
|
56
|
-
!.vscode/extensions.json
|
|
57
|
-
.history/*
|
|
58
|
-
|
|
59
|
-
# Visual Studio 2015/2017 cache/options directory
|
|
60
|
-
.vs/*
|
|
61
|
-
|
|
62
|
-
# Temporary
|
|
63
|
-
package-lock.json
|
|
64
|
-
|
|
65
|
-
.pnp.*
|
|
66
|
-
.yarn/*
|
|
67
|
-
!.yarn/patches
|
|
68
|
-
!.yarn/plugins
|
|
69
|
-
!.yarn/releases
|
|
70
|
-
!.yarn/sdks
|
|
71
|
-
!.yarn/versions
|
|
1
|
+
# OS Specific
|
|
2
|
+
.DS_Store
|
|
3
|
+
.DS_Store?
|
|
4
|
+
._*
|
|
5
|
+
.Spotlight-V100
|
|
6
|
+
.Trashes
|
|
7
|
+
ehthumbs.db
|
|
8
|
+
Thumbs.db
|
|
9
|
+
|
|
10
|
+
# IDE Specific
|
|
11
|
+
nbproject
|
|
12
|
+
.~lock.*
|
|
13
|
+
.buildpath
|
|
14
|
+
.idea
|
|
15
|
+
.project
|
|
16
|
+
.settings
|
|
17
|
+
composer.lock
|
|
18
|
+
*.sublime-workspace
|
|
19
|
+
*.suo
|
|
20
|
+
*.ntvs*
|
|
21
|
+
*.njsproj
|
|
22
|
+
*.sln
|
|
23
|
+
*.sw?
|
|
24
|
+
|
|
25
|
+
# Project Specific
|
|
26
|
+
node_modules
|
|
27
|
+
*.log
|
|
28
|
+
/lib
|
|
29
|
+
tmp
|
|
30
|
+
.changelog
|
|
31
|
+
coverage/
|
|
32
|
+
.nyc_output/
|
|
33
|
+
.eslintcache
|
|
34
|
+
|
|
35
|
+
# local env files
|
|
36
|
+
.env.local
|
|
37
|
+
.env.*.local
|
|
38
|
+
|
|
39
|
+
# compiled output
|
|
40
|
+
dist/
|
|
41
|
+
storybook-static
|
|
42
|
+
*.tsbuildinfo
|
|
43
|
+
|
|
44
|
+
# IDEs and editors
|
|
45
|
+
/.idea
|
|
46
|
+
.project
|
|
47
|
+
.classpath
|
|
48
|
+
.c9/
|
|
49
|
+
*.launch
|
|
50
|
+
|
|
51
|
+
# IDE - VSCode
|
|
52
|
+
.vscode/*
|
|
53
|
+
!.vscode/settings.json
|
|
54
|
+
!.vscode/tasks.json
|
|
55
|
+
!.vscode/launch.json
|
|
56
|
+
!.vscode/extensions.json
|
|
57
|
+
.history/*
|
|
58
|
+
|
|
59
|
+
# Visual Studio 2015/2017 cache/options directory
|
|
60
|
+
.vs/*
|
|
61
|
+
|
|
62
|
+
# Temporary
|
|
63
|
+
package-lock.json
|
|
64
|
+
|
|
65
|
+
.pnp.*
|
|
66
|
+
.yarn/*
|
|
67
|
+
!.yarn/patches
|
|
68
|
+
!.yarn/plugins
|
|
69
|
+
!.yarn/releases
|
|
70
|
+
!.yarn/sdks
|
|
71
|
+
!.yarn/versions
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@types/node": "^20.10.5",
|
|
23
23
|
"@typescript-eslint/eslint-plugin": "^8.43.0",
|
|
24
24
|
"@typescript-eslint/parser": "^8.43.0",
|
|
25
|
-
"@vc-shell/api-client-generator": "^2.
|
|
26
|
-
"@vc-shell/ts-config": "^2.
|
|
25
|
+
"@vc-shell/api-client-generator": "^2.6.0-rc.0",
|
|
26
|
+
"@vc-shell/ts-config": "^2.6.0-rc.0",
|
|
27
27
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
28
28
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
29
29
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
@@ -51,8 +51,11 @@
|
|
|
51
51
|
"vue-tsc": "^3.2.5"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@vc-shell/config-generator": "^2.
|
|
55
|
-
"@vc-shell/framework": "^2.
|
|
54
|
+
"@vc-shell/config-generator": "^2.6.0-rc.0",
|
|
55
|
+
"@vc-shell/framework": "^2.6.0-rc.0",
|
|
56
|
+
<%_ if (moduleFederation) { _%>
|
|
57
|
+
"@vc-shell/mf-host": "^2.6.0-rc.0",
|
|
58
|
+
<%_ } _%>
|
|
56
59
|
"@vueuse/core": "^10.7.1",
|
|
57
60
|
"@vueuse/integrations": "^10.7.1",
|
|
58
61
|
"vee-validate": "^4.12.4",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
node_modules
|
|
2
|
-
dist
|
|
3
|
-
*.js
|
|
4
|
-
api-client.ts
|
|
1
|
+
node_modules
|
|
2
|
+
dist
|
|
3
|
+
*.js
|
|
4
|
+
api-client.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{
|
|
2
|
-
"singleAttributePerLine": true,
|
|
3
|
-
"endOfLine": "auto"
|
|
4
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"singleAttributePerLine": true,
|
|
3
|
+
"endOfLine": "auto"
|
|
4
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
{
|
|
2
|
-
"recommendations": [
|
|
3
|
-
"editorconfig.editorconfig",
|
|
4
|
-
"dbaeumer.vscode-eslint",
|
|
5
|
-
"csstools.postcss",
|
|
6
|
-
"esbenp.prettier-vscode",
|
|
7
|
-
"bradlc.vscode-tailwindcss",
|
|
8
|
-
"vue.volar",
|
|
9
|
-
"lokalise.i18n-ally"
|
|
10
|
-
],
|
|
11
|
-
"unwantedRecommendations": ["octref.vetur"]
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"editorconfig.editorconfig",
|
|
4
|
+
"dbaeumer.vscode-eslint",
|
|
5
|
+
"csstools.postcss",
|
|
6
|
+
"esbenp.prettier-vscode",
|
|
7
|
+
"bradlc.vscode-tailwindcss",
|
|
8
|
+
"vue.volar",
|
|
9
|
+
"lokalise.i18n-ally"
|
|
10
|
+
],
|
|
11
|
+
"unwantedRecommendations": ["octref.vetur"]
|
|
12
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"editor.codeActionsOnSave": {
|
|
3
|
-
"source.fixAll.eslint": true
|
|
4
|
-
},
|
|
5
|
-
"files.eol": "\r\n",
|
|
6
|
-
"eslint.validate": ["vue", "javascript"],
|
|
7
|
-
"i18n-ally.localesPaths": ["src/locales"],
|
|
8
|
-
"typescript.preferences.importModuleSpecifier": "relative"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"editor.codeActionsOnSave": {
|
|
3
|
+
"source.fixAll.eslint": true
|
|
4
|
+
},
|
|
5
|
+
"files.eol": "\r\n",
|
|
6
|
+
"eslint.validate": ["vue", "javascript"],
|
|
7
|
+
"i18n-ally.localesPaths": ["src/locales"],
|
|
8
|
+
"typescript.preferences.importModuleSpecifier": "relative"
|
|
9
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="utf-8">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
|
-
<!-- No maximum-scale / user-scalable=no: pinch-zoom must stay available (WCAG 1.4.4).
|
|
8
|
-
The framework keeps <html lang> in sync with the active locale at runtime. -->
|
|
9
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
10
|
-
<link rel="icon" href="img/icons/favicon.ico">
|
|
11
|
-
<link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon.png">
|
|
12
|
-
<link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
|
|
13
|
-
<link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
|
|
14
|
-
<meta name="theme-color" content="#ffffff">
|
|
15
|
-
<title><%- AppNameSentenceCase %></title>
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<noscript>
|
|
20
|
-
<strong>Please enable JavaScript to continue.</strong>
|
|
21
|
-
</noscript>
|
|
22
|
-
<div id="app"></div>
|
|
23
|
-
<script type="module" src="/src/main.ts"></script>
|
|
24
|
-
<!-- built files will be auto injected -->
|
|
25
|
-
</body>
|
|
26
|
-
|
|
27
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
|
+
<!-- No maximum-scale / user-scalable=no: pinch-zoom must stay available (WCAG 1.4.4).
|
|
8
|
+
The framework keeps <html lang> in sync with the active locale at runtime. -->
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
10
|
+
<link rel="icon" href="img/icons/favicon.ico">
|
|
11
|
+
<link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon.png">
|
|
12
|
+
<link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
|
|
13
|
+
<link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
|
|
14
|
+
<meta name="theme-color" content="#ffffff">
|
|
15
|
+
<title><%- AppNameSentenceCase %></title>
|
|
16
|
+
</head>
|
|
17
|
+
|
|
18
|
+
<body>
|
|
19
|
+
<noscript>
|
|
20
|
+
<strong>Please enable JavaScript to continue.</strong>
|
|
21
|
+
</noscript>
|
|
22
|
+
<div id="app"></div>
|
|
23
|
+
<script type="module" src="/src/main.ts"></script>
|
|
24
|
+
<!-- built files will be auto injected -->
|
|
25
|
+
</body>
|
|
26
|
+
|
|
27
|
+
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
plugins: {
|
|
3
|
-
tailwindcss: {},
|
|
4
|
-
autoprefixer: {},
|
|
5
|
-
},
|
|
6
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
plugins: {
|
|
3
|
+
tailwindcss: {},
|
|
4
|
+
autoprefixer: {},
|
|
5
|
+
},
|
|
6
|
+
};
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<svg width="252" height="81" viewBox="0 0 252 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_d)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.5982 11L22.7992 36.5H34.5982L46.3976 11H34.5982Z" fill="#CCCCCC"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 11L22.7992 36.5H34.5984L22.7992 11H11Z" fill="#FF4A4A"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.441 41.6C63.441 43.7127 61.6798 45.425 59.5079 45.425C57.3355 45.425 55.5748 43.7127 55.5748 41.6C55.5748 39.4874 57.3355 37.775 59.5079 37.775C61.6798 37.775 63.441 39.4874 63.441 41.6Z" fill="#FF4A4A"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 44.15H38.5315C39.9747 54.1672 48.8288 61.9016 59.5079 61.9016V50.3871C55.3794 50.3871 51.8732 47.7685 50.6321 44.15Z" fill="#FFC10D"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 39.05C51.8732 35.4115 55.3794 32.7784 59.5079 32.7784V21.2C48.8288 21.2 39.9747 28.9773 38.5315 39.05H50.6321Z" fill="#FFC10D"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.116 30.176L95.7446 14.672H97.3108L89.4237 32.896H88.8364L80.9213 14.672H82.4875L89.116 30.176ZM101.142 14.672H102.597V32.624H101.142V14.672ZM115.686 24.464L121.923 32.624H120.217L114.008 24.5728H109.505V32.624H108.051V14.672H114.316C116.022 14.672 117.392 15.1344 118.399 16.0592C119.406 16.984 119.909 18.1536 119.909 19.5952C119.909 22.0976 118.343 24.0016 115.686 24.464ZM114.26 15.9504H109.505V23.2944H114.26C116.917 23.2944 118.399 21.7984 118.399 19.6224C118.399 17.4464 116.917 15.9504 114.26 15.9504ZM122.454 14.672H137.418V15.9504H130.649V32.624H129.195V15.9504H122.454V14.672ZM148.241 14.4C150.87 14.4 153.108 15.2976 154.954 17.0656C156.8 18.8336 157.723 21.0368 157.723 23.648C157.723 26.232 156.8 28.4352 154.954 30.2304C153.108 31.9984 150.87 32.896 148.241 32.896C145.584 32.896 143.347 31.9984 141.529 30.2304C139.711 28.4352 138.788 26.232 138.788 23.648C138.788 21.0368 139.711 18.8336 141.529 17.0656C143.347 15.2976 145.584 14.4 148.241 14.4ZM148.269 15.7056C146.004 15.7056 144.102 16.4672 142.592 17.9904C141.082 19.4864 140.326 21.3632 140.326 23.6208C140.326 25.8784 141.082 27.7552 142.592 29.2784C144.102 30.8016 146.004 31.5632 148.269 31.5632C150.535 31.5632 152.409 30.8016 153.919 29.2784C155.429 27.7552 156.185 25.8784 156.185 23.6208C156.185 21.3904 155.429 19.5136 153.891 17.9904C152.381 16.4672 150.507 15.7056 148.269 15.7056ZM90.7662 41.6C93.8707 41.6 96.5836 42.9872 98.2338 45.2448L97.143 46.088C95.6047 43.9664 93.4791 42.9056 90.7941 42.9056C88.5287 42.9056 86.6548 43.6672 85.1165 45.1904C83.6062 46.6864 82.8511 48.5632 82.8511 50.8208C82.8511 53.0784 83.6062 54.9824 85.1165 56.5056C86.6268 58.0016 88.5287 58.7632 90.7941 58.7632C93.5071 58.7632 95.6047 57.7024 97.143 55.608L98.2338 56.4512C96.5836 58.7088 93.8707 60.096 90.7662 60.096C88.1092 60.096 85.8717 59.1984 84.0537 57.4304C82.2358 55.6624 81.3128 53.4592 81.3128 50.848C81.3128 48.2368 82.2358 46.0336 84.0537 44.2656C85.8717 42.4976 88.1092 41.6 90.7662 41.6ZM110.54 41.6C113.169 41.6 115.406 42.4976 117.252 44.2656C119.098 46.0336 120.021 48.2368 120.021 50.848C120.021 53.432 119.098 55.6352 117.252 57.4304C115.406 59.1984 113.169 60.096 110.54 60.096C107.883 60.096 105.645 59.1984 103.827 57.4304C102.01 55.6352 101.087 53.432 101.087 50.848C101.087 48.2368 102.01 46.0336 103.827 44.2656C105.645 42.4976 107.883 41.6 110.54 41.6ZM110.568 42.9056C108.302 42.9056 106.401 43.6672 104.89 45.1904C103.38 46.6864 102.625 48.5632 102.625 50.8208C102.625 53.0784 103.38 54.9552 104.89 56.4784C106.401 58.0016 108.302 58.7632 110.568 58.7632C112.833 58.7632 114.707 58.0016 116.218 56.4784C117.728 54.9552 118.483 53.0784 118.483 50.8208C118.483 48.5904 117.728 46.7136 116.19 45.1904C114.679 43.6672 112.805 42.9056 110.568 42.9056ZM132.467 52.2896L140.159 41.6H140.718V59.824H139.264V45.2176L132.775 54.2208H132.216L125.699 45.2176V59.824H124.244V41.6H124.804L132.467 52.2896ZM154.422 52.2896L162.114 41.6H162.673V59.824H161.219V45.2176L154.73 54.2208H154.171L147.654 45.2176V59.824H146.2V41.6H146.759L154.422 52.2896ZM168.155 41.872H179.706V43.1504H169.609V49.488H177.469V50.7664H169.609V58.5456H180.042V59.824H168.155V41.872ZM191.537 51.664L197.774 59.824H196.068L189.859 51.7728H185.356V59.824H183.901V41.872H190.166C191.872 41.872 193.243 42.3344 194.25 43.2592C195.257 44.184 195.76 45.3536 195.76 46.7952C195.76 49.2976 194.194 51.2016 191.537 51.664ZM190.11 43.1504H185.356V50.4944H190.11C192.767 50.4944 194.25 48.9984 194.25 46.8224C194.25 44.6464 192.767 43.1504 190.11 43.1504ZM208.849 41.6C211.954 41.6 214.667 42.9872 216.317 45.2448L215.226 46.088C213.688 43.9664 211.562 42.9056 208.877 42.9056C206.612 42.9056 204.738 43.6672 203.2 45.1904C201.689 46.6864 200.934 48.5632 200.934 50.8208C200.934 53.0784 201.689 54.9824 203.2 56.5056C204.71 58.0016 206.612 58.7632 208.877 58.7632C211.59 58.7632 213.688 57.7024 215.226 55.608L216.317 56.4512C214.667 58.7088 211.954 60.096 208.849 60.096C206.192 60.096 203.955 59.1984 202.137 57.4304C200.319 55.6624 199.396 53.4592 199.396 50.848C199.396 48.2368 200.319 46.0336 202.137 44.2656C203.955 42.4976 206.192 41.6 208.849 41.6ZM220.568 41.872H232.119V43.1504H222.022V49.488H229.882V50.7664H222.022V58.5456H232.455V59.824H220.568V41.872Z" fill="white"/>
|
|
9
|
-
</g>
|
|
10
|
-
<defs>
|
|
11
|
-
<filter id="filter0_d" x="0" y="0" width="252" height="81" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
12
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
13
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
14
|
-
<feOffset dx="4" dy="4"/>
|
|
15
|
-
<feGaussianBlur stdDeviation="7.5"/>
|
|
16
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
|
17
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
18
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
19
|
-
</filter>
|
|
20
|
-
</defs>
|
|
21
|
-
</svg>
|
|
1
|
+
<svg width="252" height="81" viewBox="0 0 252 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.5982 11L22.7992 36.5H34.5982L46.3976 11H34.5982Z" fill="#CCCCCC"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 11L22.7992 36.5H34.5984L22.7992 11H11Z" fill="#FF4A4A"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.441 41.6C63.441 43.7127 61.6798 45.425 59.5079 45.425C57.3355 45.425 55.5748 43.7127 55.5748 41.6C55.5748 39.4874 57.3355 37.775 59.5079 37.775C61.6798 37.775 63.441 39.4874 63.441 41.6Z" fill="#FF4A4A"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 44.15H38.5315C39.9747 54.1672 48.8288 61.9016 59.5079 61.9016V50.3871C55.3794 50.3871 51.8732 47.7685 50.6321 44.15Z" fill="#FFC10D"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 39.05C51.8732 35.4115 55.3794 32.7784 59.5079 32.7784V21.2C48.8288 21.2 39.9747 28.9773 38.5315 39.05H50.6321Z" fill="#FFC10D"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.116 30.176L95.7446 14.672H97.3108L89.4237 32.896H88.8364L80.9213 14.672H82.4875L89.116 30.176ZM101.142 14.672H102.597V32.624H101.142V14.672ZM115.686 24.464L121.923 32.624H120.217L114.008 24.5728H109.505V32.624H108.051V14.672H114.316C116.022 14.672 117.392 15.1344 118.399 16.0592C119.406 16.984 119.909 18.1536 119.909 19.5952C119.909 22.0976 118.343 24.0016 115.686 24.464ZM114.26 15.9504H109.505V23.2944H114.26C116.917 23.2944 118.399 21.7984 118.399 19.6224C118.399 17.4464 116.917 15.9504 114.26 15.9504ZM122.454 14.672H137.418V15.9504H130.649V32.624H129.195V15.9504H122.454V14.672ZM148.241 14.4C150.87 14.4 153.108 15.2976 154.954 17.0656C156.8 18.8336 157.723 21.0368 157.723 23.648C157.723 26.232 156.8 28.4352 154.954 30.2304C153.108 31.9984 150.87 32.896 148.241 32.896C145.584 32.896 143.347 31.9984 141.529 30.2304C139.711 28.4352 138.788 26.232 138.788 23.648C138.788 21.0368 139.711 18.8336 141.529 17.0656C143.347 15.2976 145.584 14.4 148.241 14.4ZM148.269 15.7056C146.004 15.7056 144.102 16.4672 142.592 17.9904C141.082 19.4864 140.326 21.3632 140.326 23.6208C140.326 25.8784 141.082 27.7552 142.592 29.2784C144.102 30.8016 146.004 31.5632 148.269 31.5632C150.535 31.5632 152.409 30.8016 153.919 29.2784C155.429 27.7552 156.185 25.8784 156.185 23.6208C156.185 21.3904 155.429 19.5136 153.891 17.9904C152.381 16.4672 150.507 15.7056 148.269 15.7056ZM90.7662 41.6C93.8707 41.6 96.5836 42.9872 98.2338 45.2448L97.143 46.088C95.6047 43.9664 93.4791 42.9056 90.7941 42.9056C88.5287 42.9056 86.6548 43.6672 85.1165 45.1904C83.6062 46.6864 82.8511 48.5632 82.8511 50.8208C82.8511 53.0784 83.6062 54.9824 85.1165 56.5056C86.6268 58.0016 88.5287 58.7632 90.7941 58.7632C93.5071 58.7632 95.6047 57.7024 97.143 55.608L98.2338 56.4512C96.5836 58.7088 93.8707 60.096 90.7662 60.096C88.1092 60.096 85.8717 59.1984 84.0537 57.4304C82.2358 55.6624 81.3128 53.4592 81.3128 50.848C81.3128 48.2368 82.2358 46.0336 84.0537 44.2656C85.8717 42.4976 88.1092 41.6 90.7662 41.6ZM110.54 41.6C113.169 41.6 115.406 42.4976 117.252 44.2656C119.098 46.0336 120.021 48.2368 120.021 50.848C120.021 53.432 119.098 55.6352 117.252 57.4304C115.406 59.1984 113.169 60.096 110.54 60.096C107.883 60.096 105.645 59.1984 103.827 57.4304C102.01 55.6352 101.087 53.432 101.087 50.848C101.087 48.2368 102.01 46.0336 103.827 44.2656C105.645 42.4976 107.883 41.6 110.54 41.6ZM110.568 42.9056C108.302 42.9056 106.401 43.6672 104.89 45.1904C103.38 46.6864 102.625 48.5632 102.625 50.8208C102.625 53.0784 103.38 54.9552 104.89 56.4784C106.401 58.0016 108.302 58.7632 110.568 58.7632C112.833 58.7632 114.707 58.0016 116.218 56.4784C117.728 54.9552 118.483 53.0784 118.483 50.8208C118.483 48.5904 117.728 46.7136 116.19 45.1904C114.679 43.6672 112.805 42.9056 110.568 42.9056ZM132.467 52.2896L140.159 41.6H140.718V59.824H139.264V45.2176L132.775 54.2208H132.216L125.699 45.2176V59.824H124.244V41.6H124.804L132.467 52.2896ZM154.422 52.2896L162.114 41.6H162.673V59.824H161.219V45.2176L154.73 54.2208H154.171L147.654 45.2176V59.824H146.2V41.6H146.759L154.422 52.2896ZM168.155 41.872H179.706V43.1504H169.609V49.488H177.469V50.7664H169.609V58.5456H180.042V59.824H168.155V41.872ZM191.537 51.664L197.774 59.824H196.068L189.859 51.7728H185.356V59.824H183.901V41.872H190.166C191.872 41.872 193.243 42.3344 194.25 43.2592C195.257 44.184 195.76 45.3536 195.76 46.7952C195.76 49.2976 194.194 51.2016 191.537 51.664ZM190.11 43.1504H185.356V50.4944H190.11C192.767 50.4944 194.25 48.9984 194.25 46.8224C194.25 44.6464 192.767 43.1504 190.11 43.1504ZM208.849 41.6C211.954 41.6 214.667 42.9872 216.317 45.2448L215.226 46.088C213.688 43.9664 211.562 42.9056 208.877 42.9056C206.612 42.9056 204.738 43.6672 203.2 45.1904C201.689 46.6864 200.934 48.5632 200.934 50.8208C200.934 53.0784 201.689 54.9824 203.2 56.5056C204.71 58.0016 206.612 58.7632 208.877 58.7632C211.59 58.7632 213.688 57.7024 215.226 55.608L216.317 56.4512C214.667 58.7088 211.954 60.096 208.849 60.096C206.192 60.096 203.955 59.1984 202.137 57.4304C200.319 55.6624 199.396 53.4592 199.396 50.848C199.396 48.2368 200.319 46.0336 202.137 44.2656C203.955 42.4976 206.192 41.6 208.849 41.6ZM220.568 41.872H232.119V43.1504H222.022V49.488H229.882V50.7664H222.022V58.5456H232.455V59.824H220.568V41.872Z" fill="white"/>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<filter id="filter0_d" x="0" y="0" width="252" height="81" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
12
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
13
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
14
|
+
<feOffset dx="4" dy="4"/>
|
|
15
|
+
<feGaussianBlur stdDeviation="7.5"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|