@decaf-ts/for-angular 0.0.4 → 0.0.5
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/LICENSE.md +646 -144
- package/README.md +37 -242
- package/dist/lib/README.md +92 -0
- package/dist/lib/assets/i18n/en.json +131 -0
- package/dist/lib/assets/images/angular-logo.svg +45 -0
- package/dist/lib/assets/images/decaf-logo-black.svg +22 -0
- package/dist/lib/assets/images/decaf-logo-lw.svg +50 -0
- package/dist/lib/assets/images/decaf-logo-white.svg +22 -0
- package/dist/lib/assets/images/decaf-logo.svg +54 -0
- package/dist/lib/components/component-renderer/component-renderer.component.d.ts +267 -0
- package/dist/lib/components/crud-field/crud-field.component.d.ts +447 -0
- package/dist/{for-angular/components/decaf-crud-form → lib/components/crud-form}/constants.d.ts +0 -0
- package/dist/lib/components/crud-form/crud-form.component.d.ts +102 -0
- package/dist/{for-angular/components/decaf-crud-form → lib/components/crud-form}/types.d.ts +0 -0
- package/dist/lib/components/model-renderer/model-renderer.component.d.ts +97 -0
- package/dist/lib/engine/DynamicModule.d.ts +17 -0
- package/dist/{for-angular → lib}/engine/NgxCrudFormField.d.ts +22 -14
- package/dist/lib/engine/NgxFormService.d.ts +167 -0
- package/dist/lib/engine/NgxRenderingEngine.d.ts +128 -0
- package/dist/lib/engine/NgxRenderingEngine2.d.ts +251 -0
- package/dist/lib/engine/ValidatorFactory.d.ts +15 -0
- package/dist/lib/engine/constants.d.ts +151 -0
- package/dist/lib/engine/decorators.d.ts +25 -0
- package/dist/lib/engine/index.d.ts +15 -0
- package/dist/lib/engine/types.d.ts +293 -0
- package/dist/lib/esm2022/components/component-renderer/component-renderer.component.mjs +309 -0
- package/dist/lib/esm2022/components/crud-field/crud-field.component.mjs +288 -0
- package/dist/lib/esm2022/components/crud-form/constants.mjs +14 -0
- package/dist/lib/esm2022/components/crud-form/crud-form.component.mjs +140 -0
- package/dist/lib/esm2022/components/crud-form/types.mjs +2 -0
- package/dist/lib/esm2022/components/model-renderer/model-renderer.component.mjs +137 -0
- package/dist/{for-angular → lib}/esm2022/decaf-ts-for-angular.mjs +0 -0
- package/dist/lib/esm2022/engine/DynamicModule.mjs +18 -0
- package/dist/lib/esm2022/engine/NgxCrudFormField.mjs +117 -0
- package/dist/lib/esm2022/engine/NgxFormService.mjs +315 -0
- package/dist/lib/esm2022/engine/NgxRenderingEngine.mjs +194 -0
- package/dist/lib/esm2022/engine/NgxRenderingEngine2.mjs +333 -0
- package/dist/lib/esm2022/engine/ValidatorFactory.mjs +102 -0
- package/dist/lib/esm2022/engine/constants.mjs +160 -0
- package/dist/lib/esm2022/engine/decorators.mjs +38 -0
- package/dist/lib/esm2022/engine/index.mjs +16 -0
- package/dist/lib/esm2022/engine/types.mjs +2 -0
- package/dist/lib/esm2022/for-angular.module.mjs +118 -0
- package/dist/lib/esm2022/interfaces.mjs +2 -0
- package/dist/lib/esm2022/public-apis.mjs +13 -0
- package/dist/lib/fesm2022/decaf-ts-for-angular.mjs +2138 -0
- package/dist/lib/fesm2022/decaf-ts-for-angular.mjs.map +1 -0
- package/dist/lib/for-angular.module.d.ts +44 -0
- package/dist/{for-angular → lib}/index.d.ts +0 -0
- package/dist/lib/interfaces.d.ts +28 -0
- package/dist/lib/public-apis.d.ts +12 -0
- package/package.json +73 -26
- package/dist/for-angular/README.md +0 -297
- package/dist/for-angular/assets/i18n/en.json +0 -21
- package/dist/for-angular/components/decaf-crud-field/decaf-crud-field.component.d.ts +0 -49
- package/dist/for-angular/components/decaf-crud-form/decaf-crud-form.component.d.ts +0 -28
- package/dist/for-angular/components/decaf-model-renderer/decaf-model-renderer.component.d.ts +0 -20
- package/dist/for-angular/engine/DynamicModule.d.ts +0 -2
- package/dist/for-angular/engine/NgxFormService.d.ts +0 -119
- package/dist/for-angular/engine/NgxRenderingEngine.d.ts +0 -18
- package/dist/for-angular/engine/ValidatorFactory.d.ts +0 -4
- package/dist/for-angular/engine/constants.d.ts +0 -13
- package/dist/for-angular/engine/decorators.d.ts +0 -1
- package/dist/for-angular/engine/index.d.ts +0 -5
- package/dist/for-angular/engine/types.d.ts +0 -44
- package/dist/for-angular/esm2022/components/decaf-crud-field/decaf-crud-field.component.mjs +0 -129
- package/dist/for-angular/esm2022/components/decaf-crud-form/constants.mjs +0 -14
- package/dist/for-angular/esm2022/components/decaf-crud-form/decaf-crud-form.component.mjs +0 -80
- package/dist/for-angular/esm2022/components/decaf-crud-form/types.mjs +0 -2
- package/dist/for-angular/esm2022/components/decaf-model-renderer/decaf-model-renderer.component.mjs +0 -47
- package/dist/for-angular/esm2022/engine/DynamicModule.mjs +0 -3
- package/dist/for-angular/esm2022/engine/NgxCrudFormField.mjs +0 -115
- package/dist/for-angular/esm2022/engine/NgxFormService.mjs +0 -235
- package/dist/for-angular/esm2022/engine/NgxRenderingEngine.mjs +0 -84
- package/dist/for-angular/esm2022/engine/ValidatorFactory.mjs +0 -48
- package/dist/for-angular/esm2022/engine/constants.mjs +0 -15
- package/dist/for-angular/esm2022/engine/decorators.mjs +0 -14
- package/dist/for-angular/esm2022/engine/index.mjs +0 -6
- package/dist/for-angular/esm2022/engine/types.mjs +0 -2
- package/dist/for-angular/esm2022/interfaces.mjs +0 -2
- package/dist/for-angular/esm2022/public-apis.mjs +0 -6
- package/dist/for-angular/fesm2022/decaf-ts-for-angular.mjs +0 -759
- package/dist/for-angular/fesm2022/decaf-ts-for-angular.mjs.map +0 -1
- package/dist/for-angular/interfaces.d.ts +0 -8
- package/dist/for-angular/public-apis.d.ts +0 -5
package/README.md
CHANGED
|
@@ -1,271 +1,68 @@
|
|
|
1
1
|

|
|
2
|
-
## Typescript Template
|
|
3
2
|
|
|
3
|
+
# Decaf's Angular Module
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
](http://www.pdmfc.com)
|
|
10
|
-
[](https://github.com/decaf-ts/ts-workspace/actions?query=workflow%3ACodeQL)
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
11
9
|
|
|
12
|
-
](https://github.com/decaf-ts/for-angular/actions/workflows/nodejs-build-prod.yaml)
|
|
11
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/codeql-analysis.yml)[](https://github.com/decaf-ts/for-angular/actions/workflows/snyk-analysis.yaml)
|
|
12
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/pages.yaml)
|
|
13
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/release-on-tag.yaml)
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+

|
|
17
|
+

|
|
15
18
|

|
|
16
19
|
|
|
17
|
-

|
|
18
|
-

|
|
19
|
-

|
|
20
|
-

|
|
20
|
+

|
|
21
|
+

|
|
22
|
+

|
|
23
|
+

|
|
21
24
|
|
|
22
25
|
|
|
23
|
-

|
|
27
|
+

|
|
28
|
+

|
|
26
29
|
|
|
27
30
|

|
|
28
31
|

|
|
29
32
|
|
|
30
|
-
|
|
33
|
+
Documentation available [here](https://decaf-ts.github.io/for-angular/)
|
|
31
34
|
|
|
32
|
-
|
|
35
|
+
### Description
|
|
33
36
|
|
|
34
|
-
|
|
37
|
+
A very versatile persistence layer. from smart contracts, Digital wallets or just regular database access
|
|
35
38
|
|
|
36
|
-
Optimized for github in terms of badges. CI is equivalent between Gitlab and Github.
|
|
37
39
|
|
|
38
|
-
Auto setup on first `npm install`
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
### How to Use
|
|
41
42
|
|
|
42
|
-
|
|
43
|
+
- [Initial Setup](./tutorials/For%20Developers.md#_initial-setup_)
|
|
44
|
+
- [Installation](./tutorials/For%20Developers.md#installation)
|
|
43
45
|
|
|
44
|
-
#### if you use github
|
|
45
46
|
|
|
46
|
-
create a new project using this one as a template.
|
|
47
47
|
|
|
48
|
-
clone it `git clone <project>` and navigate to the root folder `cd <project>`
|
|
49
48
|
|
|
50
|
-
|
|
49
|
+
### Related
|
|
51
50
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
//<ADDRESS>.<DOMAIN>.com/api/v4/projects/<PROJECT_ID>/packages/npm/:_authToken=${TOKEN}
|
|
58
|
-
```
|
|
51
|
+
[](https://github.com/decaf-ts/decaf-ts)
|
|
52
|
+
[](https://github.com/decaf-ts/ui-decorators)
|
|
53
|
+
[](https://github.com/decaf-ts/styles)
|
|
54
|
+
[](https://github.com/decaf-ts/decorator-validation)
|
|
55
|
+
[](https://github.com/decaf-ts/db-decorators)
|
|
59
56
|
|
|
60
|
-
Changing:
|
|
61
|
-
- <ADDRESS> to `gitlab` or `github` (or other);
|
|
62
|
-
- <DOMAIN> to your domain if any (if you are using plain gitlab or github use empty and take care to remove the extra `.`);
|
|
63
|
-
- <GROUP_ID> to your project's group id (if any). otherwise remove this line
|
|
64
|
-
- <PROJECT_ID> to your project's id
|
|
65
57
|
|
|
66
|
-
|
|
58
|
+
### Social
|
|
67
59
|
|
|
68
|
-
|
|
60
|
+
[](https://www.linkedin.com/in/decaf-ts/)
|
|
69
61
|
|
|
70
|
-
Run `npm install` (or `npm run do-install` if you have private dependencies and a `.token` file) to install the dependencies:
|
|
71
62
|
|
|
72
|
-
If this is the first time you are running this command it will also:
|
|
73
|
-
- update this repository's dependencies to their latest version;
|
|
74
|
-
- creates a `.token` file which you can leave empty unless you have private dependencies or publish to private registries
|
|
75
|
-
- delete this 'first run script' file and npm call from the `package.json`;
|
|
76
|
-
- try to commit the updated `package.json` and deleted files (having ssh access helps here);
|
|
77
|
-
## Linting
|
|
78
|
-
|
|
79
|
-
This repo comes with eslint + prettier preconfigured to the default standards
|
|
80
|
-
## Testing
|
|
81
|
-
|
|
82
|
-
Preconfigured Jest based testing:
|
|
83
|
-
|
|
84
|
-
- unit tests under the `tests/unit` folder;
|
|
85
|
-
- include a default bundle test (helps with circular dependencies and such);
|
|
86
|
-
- integration tests under the `tests/integration` folder;
|
|
87
|
-
- stores converage results under `workdocs/coverage`;
|
|
88
|
-
- publishes coverage result to docs;
|
|
89
|
-
- ignores `cli.ts` from coverage since that is an executable file;
|
|
90
|
-
- defines the coverage threshold in `jest.config.ts`;
|
|
91
|
-
### Releases
|
|
92
|
-
|
|
93
|
-
This repository automates releases in the following manner:
|
|
94
|
-
|
|
95
|
-
- run `npm run release -- <major|minor|patch|version> <message>`:
|
|
96
|
-
- if arguments are missing you will be prompted for them;
|
|
97
|
-
- it will run `npm run prepare-release` npm script;
|
|
98
|
-
- it will commit all changes;
|
|
99
|
-
- it will push the new tag;
|
|
100
|
-
|
|
101
|
-
If publishing to a private repo's npm registry, make sure you add to your `package.json`:
|
|
102
|
-
|
|
103
|
-
```json
|
|
104
|
-
{
|
|
105
|
-
"publishConfig": {
|
|
106
|
-
"<SCOPE>:registry": " https://<REGISTRY>/api/v4/projects/<PROJECT_ID>/packages/npm/"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
Where:
|
|
112
|
-
|
|
113
|
-
- `<SCOPE>` - Is the scope of your package;
|
|
114
|
-
- `<REGISTRY>` - your registry host;
|
|
115
|
-
- `<PROJECT_ID>` - you project ID number (easy to grab via UI in gitlab or by
|
|
116
|
-
running `$("meta[name=octolytics-dimension-repository_id]").getAttribute('content')` in the repository page in github)
|
|
117
|
-
;
|
|
118
|
-
|
|
119
|
-
### Publishing
|
|
120
|
-
|
|
121
|
-
Unless the `-no-ci` flag is passed in the commit message to the `npm run release` command, publishing will be handled
|
|
122
|
-
automatically by github/gitlab (triggered by the tag).
|
|
123
|
-
|
|
124
|
-
When the `-no-ci` flag is passed then you can:
|
|
125
|
-
|
|
126
|
-
- run `npm run publish`. This command assumes :
|
|
127
|
-
- you have previously run the `npm run release`;
|
|
128
|
-
- you have you publishing properly configured in `npmrc` and `package.json`;
|
|
129
|
-
- The token for any special access required is stored in the `.token` file;
|
|
130
|
-
|
|
131
|
-
## Continuous Integration/Deployment
|
|
132
|
-
|
|
133
|
-
While the implementationfor gitlab and github are not perfectly matched, they are perfectly usable.
|
|
134
|
-
|
|
135
|
-
The template comes with ci/cd for :
|
|
136
|
-
- gitlab (with caching for performance):
|
|
137
|
-
- stages:
|
|
138
|
-
- dependencies: Installs dependencies (on `package-lock.json` changes, caches node modules);
|
|
139
|
-
- build: builds the code (on `src/*` changes, caches `lib` and `dist`);
|
|
140
|
-
- test: tests the code (on `src/*`, `test/*` changes, caches `workdocs/{resources, badges, coverage}`);
|
|
141
|
-
- deploy:
|
|
142
|
-
- deploys to package registry on a tag (public|private);
|
|
143
|
-
- deploys docker image to docker registry (private);
|
|
144
|
-
- Deploys the documentation to the repository pages;
|
|
145
|
-
- github:
|
|
146
|
-
- jest-test: standard `install -> build -> test` loop;
|
|
147
|
-
- jest-coverage: extracts coverage from the tests;
|
|
148
|
-
- codeql-analysis: Code quality analisys;
|
|
149
|
-
- pages: builds the documentation and deploys to github pages
|
|
150
|
-
- release-on-tag: issues a release when the tag does not contain `-no-ci` string
|
|
151
|
-
- publish-on-release: publishes to package registry when the tag does not contain the `-no-ci` string
|
|
152
|
-
- Requires Variables:
|
|
153
|
-
- CONSECUTIVE_ACTION_TRIGGER: secret to enable actions to trigger other actions;
|
|
154
|
-
- NPM_TOKEN: npm/docker registry token
|
|
155
|
-
## Considerations
|
|
156
|
-
- Setup for a linux based environment (Sorry windows users. use WSL... or just change already);
|
|
157
|
-
- Setup for node 20, but will work at least with 16;
|
|
158
|
-
- Requires docker to build documentation (drawings and PlantUML)
|
|
159
|
-
## Documentation
|
|
160
|
-
|
|
161
|
-
The repository proposes a way to generate documentation that while still not ideal, produces verys consitest results.
|
|
162
|
-
|
|
163
|
-
In the code you see an example on how to properly document each code object, but the overall structure is:
|
|
164
|
-
- each package is a `@module`;
|
|
165
|
-
- Classes and Interfaces are categorized into `@category` and `@subcategory`;
|
|
166
|
-
- All other objects are categorized by `@namespace` and `@memberOf`;
|
|
167
|
-
- Enums and const are declared as `@const` and both must describe their properties as `@property` (when constants are objects);
|
|
168
|
-
- Interfaces must declare their methods `@method`;
|
|
169
|
-
|
|
170
|
-
There are 3 steps the generating the documentation (automated in CI):
|
|
171
|
-
- `npm run drawings` - generates png files from each drawing in the `workdocs/drawings` folder and moves them to the `workdocs/resources` folder (requires Docker);
|
|
172
|
-
- `npm run uml` - generates png files from each PlantUML diagram in the `workdocs/uml` folder and moves them to the `workdocs/resources` folder (requires Docker);
|
|
173
|
-
- `npm run docs` - this has several stages, defined under the `gulp docs` (gulpfile.js):
|
|
174
|
-
- compiles the Readme file via md compile:
|
|
175
|
-
- enables keeping separate files for sections that are then joined into a single file;
|
|
176
|
-
- Allows keeping specific files in the jsdocs tutorial folder so they show up on their own menu;
|
|
177
|
-
- compiles the documentation from the source code using jsdocs:
|
|
178
|
-
- uses the better docs template with the category and component plugins
|
|
179
|
-
- uses the mermaid jsdoc plugin to embue uml diagrams in the docs
|
|
180
|
-
- includes a nav link to the test coverage results;
|
|
181
|
-
- copies the jsdoc and mds to `/docs`;
|
|
182
|
-
- copies the `./workdocs/{drawings, uml, assets, resources}` to `./docs`;
|
|
183
|
-
|
|
184
|
-
The produced `docs` folder contains the resulting documentation;
|
|
185
|
-
### Related
|
|
186
63
|
|
|
187
|
-
[](https://github.com/decaf-ts/ts-workspace)
|
|
188
|
-
### Social
|
|
189
64
|
|
|
190
|
-
|
|
191
|
-
### Scripts
|
|
192
|
-
|
|
193
|
-
The following npm scripts are available for development:
|
|
194
|
-
|
|
195
|
-
- `preinstall` - will run only on the first install to trigger the dep update. will self delete;
|
|
196
|
-
- `do-install` - sets a `TOKEN` environment variable to the contents of `.token` and runs npm install (useful when you
|
|
197
|
-
have private dependencies);
|
|
198
|
-
- `flash-forward` - updates all dependencies. Take care, This may not be desirable is some cases;
|
|
199
|
-
- `reset` - updates all dependencies. Take care, This may not be desirable is some cases;
|
|
200
|
-
- `build` - builds the code (via gulp `gulpfile.js`) in development mode (generates `lib` and `dist` folder);
|
|
201
|
-
- `build:prod` - builds the code (via gulp `gulpfile.js`) in production mode (generates `lib` and `dist` folder);
|
|
202
|
-
- `test` - runs unit tests;
|
|
203
|
-
- `test:integration` - runs it tests;
|
|
204
|
-
- `test:all` - runs all tests;
|
|
205
|
-
- `lint` - runs es lint on the code folder;
|
|
206
|
-
- `lint-fix` - tries to auto-fix the code folder;
|
|
207
|
-
- `prepare-release` - defines the commands to run prior to a new tag (defaults to linting, building production code,
|
|
208
|
-
running tests and documentation generation);
|
|
209
|
-
- `release` - triggers a new tag being pushed to master (via `./bin/tag_release.sh`);
|
|
210
|
-
- `clean-publish` - cleans the package.json for publishing;
|
|
211
|
-
- `coverage` - runs all test, calculates coverage and generates badges for readme;
|
|
212
|
-
- `drawings` - compiles all DrawIO `*.drawio` files in the `workdocs/drawings` folder to png and moves them to
|
|
213
|
-
the `workdocs/resources` folder;
|
|
214
|
-
- `uml` - compiles all PlantUML `*.puml` files in the `workdocs/uml` folder to png and moves them to
|
|
215
|
-
the `workdocs/resources` folder;
|
|
216
|
-
- `docs` - compiles all the coverage, drawings, uml, jsdocs and md docs into a readable web page under `./docs`;
|
|
217
|
-
|
|
218
|
-
### Repository Structure
|
|
219
|
-
|
|
220
|
-
```
|
|
221
|
-
ts-workspace
|
|
222
|
-
│
|
|
223
|
-
│ .gitignore <-- Defines files ignored to git
|
|
224
|
-
│ .npmignore <-- Defines files ignored by npm
|
|
225
|
-
│ .nmprc <-- Defines the Npm registry for this package
|
|
226
|
-
│ .eslintrc.cjs <-- linting for the project
|
|
227
|
-
│ .prettier.config.cjs <-- Code style for the project
|
|
228
|
-
│ .gitlab-ci.yml <-- Gillab CI/CD file
|
|
229
|
-
│ gulpfile.js <-- Gulp build scripts. used for building na other features (eg docs)
|
|
230
|
-
│ jest.config.ts <-- Tests Configuration file
|
|
231
|
-
│ mdCompile.json <-- md Documentation generation configuration file
|
|
232
|
-
│ jsdocs.json <-- jsdoc Documentation generation configuration file
|
|
233
|
-
│ Dockerfile <-- minimal example of a node service Dockerfile
|
|
234
|
-
│ LICENCE.md <-- Licence disclamer
|
|
235
|
-
│ package.json
|
|
236
|
-
│ package-lock.json
|
|
237
|
-
│ README.md <-- Readme File dynamically compiled from 'workdocs' via the 'docs' npm script
|
|
238
|
-
│ tsconfig.json <-- Typescript config file. Is overriden in 'gulpfile.js'
|
|
239
|
-
│
|
|
240
|
-
└───bin
|
|
241
|
-
│ │ tag_release.sh <-- Script to help with releases
|
|
242
|
-
│
|
|
243
|
-
└───docs
|
|
244
|
-
│ │ ... <-- Dinamically generated folder, containing the compiled documentation for this repository. generated via the 'docs' npm script
|
|
245
|
-
│
|
|
246
|
-
└───src
|
|
247
|
-
│ │ ... <-- Source code for this repository
|
|
248
|
-
│
|
|
249
|
-
└───tests
|
|
250
|
-
│ │───unit <-- Unit tests
|
|
251
|
-
│ └───integration <-- Integration tests
|
|
252
|
-
│
|
|
253
|
-
└───workdocs <-- Folder with all pre-compiled documentation
|
|
254
|
-
│ │───assets <-- Documentation asset folder
|
|
255
|
-
│ │───badges <-- Auto generated coverage badges folder
|
|
256
|
-
│ │───coverage <-- Auto generated coverage results
|
|
257
|
-
│ │───drawings <-- DrawIO folder. Drawings (*.drawio) here will be processed to generate documentation (requires docker)
|
|
258
|
-
│ │───uml <-- PlantUML folder. Diagrams (*.puml) here will be processed to generate documentation (requires docker)
|
|
259
|
-
│ │───tutorials <-- Tutorial folder
|
|
260
|
-
│ │ ... <-- Categorized *.md files that are merged to generate the final readme (via md compile)
|
|
261
|
-
│ │ Readme.md <-- Entry point to the README.md
|
|
262
|
-
│
|
|
263
|
-
└───dist
|
|
264
|
-
│ │ ... <-- Dinamically generated folder containing the bundles for distribution
|
|
265
|
-
│
|
|
266
|
-
└───lib
|
|
267
|
-
| ... <-- Dinamically generated folder containing the compiled code
|
|
268
|
-
```
|
|
65
|
+
#### Languages
|
|
269
66
|
|
|
270
67
|

|
|
271
68
|

|
|
@@ -284,14 +81,12 @@ I am grateful for any contributions made to this project. Please read [this](./w
|
|
|
284
81
|
|
|
285
82
|
The first and easiest way you can support it is by [Contributing](./workdocs/98-Contributing.md). Even just finding a typo in the documentation is important.
|
|
286
83
|
|
|
287
|
-
Financial support is always welcome and helps keep
|
|
84
|
+
Financial support is always welcome and helps keep both me and the project alive and healthy.
|
|
288
85
|
|
|
289
86
|
So if you can, if this project in any way. either by learning something or simply by helping you save precious time, please consider donating.
|
|
290
87
|
|
|
291
88
|
## License
|
|
292
89
|
|
|
293
|
-
This project is released under the [MIT License](LICENSE.md).
|
|
294
|
-
|
|
295
|
-
#### Disclaimer:
|
|
90
|
+
This project is released under the [MIT License](./LICENSE.md).
|
|
296
91
|
|
|
297
|
-
|
|
92
|
+
By developers, for developers...
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Decaf's Angular Module
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/nodejs-build-prod.yaml)
|
|
11
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/codeql-analysis.yml)[](https://github.com/decaf-ts/for-angular/actions/workflows/snyk-analysis.yaml)
|
|
12
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/pages.yaml)
|
|
13
|
+
[](https://github.com/decaf-ts/for-angular/actions/workflows/release-on-tag.yaml)
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+
|
|
20
|
+

|
|
21
|
+

|
|
22
|
+

|
|
23
|
+

|
|
24
|
+
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+

|
|
28
|
+

|
|
29
|
+
|
|
30
|
+

|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
Documentation available [here](https://decaf-ts.github.io/for-angular/)
|
|
34
|
+
|
|
35
|
+
### Description
|
|
36
|
+
|
|
37
|
+
A very versatile persistence layer. from smart contracts, Digital wallets or just regular database access
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### How to Use
|
|
42
|
+
|
|
43
|
+
- [Initial Setup](./tutorials/For%20Developers.md#_initial-setup_)
|
|
44
|
+
- [Installation](./tutorials/For%20Developers.md#installation)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Related
|
|
50
|
+
|
|
51
|
+
[](https://github.com/decaf-ts/decaf-ts)
|
|
52
|
+
[](https://github.com/decaf-ts/ui-decorators)
|
|
53
|
+
[](https://github.com/decaf-ts/styles)
|
|
54
|
+
[](https://github.com/decaf-ts/decorator-validation)
|
|
55
|
+
[](https://github.com/decaf-ts/db-decorators)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Social
|
|
59
|
+
|
|
60
|
+
[](https://www.linkedin.com/in/decaf-ts/)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
#### Languages
|
|
66
|
+
|
|
67
|
+

|
|
68
|
+

|
|
69
|
+

|
|
70
|
+

|
|
71
|
+
|
|
72
|
+
## Getting help
|
|
73
|
+
|
|
74
|
+
If you have bug reports, questions or suggestions please [create a new issue](https://github.com/decaf-ts/ts-workspace/issues/new/choose).
|
|
75
|
+
|
|
76
|
+
## Contributing
|
|
77
|
+
|
|
78
|
+
I am grateful for any contributions made to this project. Please read [this](./workdocs/98-Contributing.md) to get started.
|
|
79
|
+
|
|
80
|
+
## Supporting
|
|
81
|
+
|
|
82
|
+
The first and easiest way you can support it is by [Contributing](./workdocs/98-Contributing.md). Even just finding a typo in the documentation is important.
|
|
83
|
+
|
|
84
|
+
Financial support is always welcome and helps keep both me and the project alive and healthy.
|
|
85
|
+
|
|
86
|
+
So if you can, if this project in any way. either by learning something or simply by helping you save precious time, please consider donating.
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
This project is released under the [MIT License](./LICENSE.md).
|
|
91
|
+
|
|
92
|
+
By developers, for developers...
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"required": "This field is required.",
|
|
4
|
+
"pattern": "The provided value does not match the pattern.",
|
|
5
|
+
"min": "The minimum value for this field is {0}.",
|
|
6
|
+
"max": "The maximum value for this field is {0}.",
|
|
7
|
+
"minlength": "The minimum length for this field is {0}.",
|
|
8
|
+
"maxlength": "The maximum length for this field is {0}.",
|
|
9
|
+
"equal": "This field must be equal to {0}",
|
|
10
|
+
"default": "This value appears to be invalid.",
|
|
11
|
+
"unique": "Field {0} must be unique",
|
|
12
|
+
"password": "Password must be at least 8 characters and contain one of number, lower and upper case letters, and special character (@$!%*?&_-.,)",
|
|
13
|
+
"email": "This field must be a valid email address.",
|
|
14
|
+
"url": "This field must be a valid URL.",
|
|
15
|
+
"number": "This field must be a valid number.",
|
|
16
|
+
"integer": "This field must be a valid integer.",
|
|
17
|
+
"digits": "This field must contain only digits.",
|
|
18
|
+
"alphanum": "This field must be alphanumeric.",
|
|
19
|
+
"file": "Only {0} files are allowed",
|
|
20
|
+
"equals": "This field must be equal to field {0}",
|
|
21
|
+
"different": "This field must be different from field {0}",
|
|
22
|
+
"lessThan": "This field must be less than field {0}",
|
|
23
|
+
"lessThanOrEqual": "This field must be less than or equal to field {0}",
|
|
24
|
+
"greaterThan": "This field must be greater than field {0}",
|
|
25
|
+
"greaterThanOrEqual": "This field must be greater than or equal to field {0}"
|
|
26
|
+
},
|
|
27
|
+
"login": {
|
|
28
|
+
"username": {
|
|
29
|
+
"label": "Username",
|
|
30
|
+
"placeholder": "Type your username"
|
|
31
|
+
},
|
|
32
|
+
"password": {
|
|
33
|
+
"label": "Password",
|
|
34
|
+
"placeholder": "Type your password"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"demo": {
|
|
38
|
+
"id": {
|
|
39
|
+
"label": "id",
|
|
40
|
+
"placeholder": "Type a number"
|
|
41
|
+
},
|
|
42
|
+
"name": {
|
|
43
|
+
"label": "Name",
|
|
44
|
+
"placeholder": "Type your name"
|
|
45
|
+
},
|
|
46
|
+
"birthdate": {
|
|
47
|
+
"label": "Birthdate"
|
|
48
|
+
},
|
|
49
|
+
"email": {
|
|
50
|
+
"label": "E-mail",
|
|
51
|
+
"placeholder": "Type your e-mail address"
|
|
52
|
+
},
|
|
53
|
+
"website": {
|
|
54
|
+
"label": "Website",
|
|
55
|
+
"placeholder": "Type your favorite website"
|
|
56
|
+
},
|
|
57
|
+
"password": {
|
|
58
|
+
"label": "Password",
|
|
59
|
+
"placeholder": "Type your password"
|
|
60
|
+
},
|
|
61
|
+
"gender": {
|
|
62
|
+
"label": "Select your gender"
|
|
63
|
+
},
|
|
64
|
+
"agree": {
|
|
65
|
+
"label": "I accept the terms and conditions."
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"category": {
|
|
69
|
+
"name": {
|
|
70
|
+
"label": "Category name",
|
|
71
|
+
"placeholder": "Type the category"
|
|
72
|
+
},
|
|
73
|
+
"description": {
|
|
74
|
+
"label": "Category Description",
|
|
75
|
+
"placeholder": "Describe the category (optional)"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"employee": {
|
|
79
|
+
"name": {
|
|
80
|
+
"label": "Employee name"
|
|
81
|
+
},
|
|
82
|
+
"occupation": {
|
|
83
|
+
"label": "Employee occupation"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"user": {
|
|
87
|
+
"secret": {
|
|
88
|
+
"label": "Password"
|
|
89
|
+
},
|
|
90
|
+
"username": {
|
|
91
|
+
"label": "Username"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"component": {
|
|
95
|
+
"list": {
|
|
96
|
+
"pagination": "Showing page <span class=\"text-bold\">{{value0}} of {{value1}}</span>",
|
|
97
|
+
"loading": "Loading data",
|
|
98
|
+
"search": {
|
|
99
|
+
"title": "Not data found for search",
|
|
100
|
+
"subtitle": "You searched for: <ion-text color=\"primary\" class=\"display-block ion-text-center text-bold\">{{value0}}</ion-text>",
|
|
101
|
+
"button": "Clear search"
|
|
102
|
+
},
|
|
103
|
+
"empty": {
|
|
104
|
+
"title": "No data found",
|
|
105
|
+
"subtitle": "",
|
|
106
|
+
"button": "Create"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"list_item": {
|
|
110
|
+
"actions": "Actions",
|
|
111
|
+
"operations": {
|
|
112
|
+
"read": "Read",
|
|
113
|
+
"create": "Create",
|
|
114
|
+
"update": "Update",
|
|
115
|
+
"delete": "Delete"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"empty_state": {
|
|
119
|
+
"title": "No data found",
|
|
120
|
+
"button": "Create",
|
|
121
|
+
"search": {
|
|
122
|
+
"title": "Not data found for search",
|
|
123
|
+
"subtitle": "You searched for: <ion-text color=\"primary\" class=\"display-block ion-text-center text-bold\">{{value0}}</ion-text>",
|
|
124
|
+
"button": "Clear search"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"pagination": {
|
|
128
|
+
"resume": "Showing page <span class=\"text-bold\">{{value0}} of {{value1}}</span>"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3
|
+
viewBox="0 0 982 239"
|
|
4
|
+
fill="none"
|
|
5
|
+
class="angular-logo"
|
|
6
|
+
>
|
|
7
|
+
<g clip-path="url(#a)">
|
|
8
|
+
<path
|
|
9
|
+
fill="url(#b)"
|
|
10
|
+
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
|
11
|
+
/>
|
|
12
|
+
<path
|
|
13
|
+
fill="url(#c)"
|
|
14
|
+
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
|
15
|
+
/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<radialGradient
|
|
19
|
+
id="c"
|
|
20
|
+
cx="0"
|
|
21
|
+
cy="0"
|
|
22
|
+
r="1"
|
|
23
|
+
gradientTransform="rotate(118.122 171.182 60.81) scale(205.794)"
|
|
24
|
+
gradientUnits="userSpaceOnUse"
|
|
25
|
+
>
|
|
26
|
+
<stop stop-color="#FF41F8" />
|
|
27
|
+
<stop offset=".707" stop-color="#FF41F8" stop-opacity=".5" />
|
|
28
|
+
<stop offset="1" stop-color="#FF41F8" stop-opacity="0" />
|
|
29
|
+
</radialGradient>
|
|
30
|
+
<linearGradient
|
|
31
|
+
id="b"
|
|
32
|
+
x1="0"
|
|
33
|
+
x2="982"
|
|
34
|
+
y1="192"
|
|
35
|
+
y2="192"
|
|
36
|
+
gradientUnits="userSpaceOnUse"
|
|
37
|
+
>
|
|
38
|
+
<stop stop-color="#F0060B" />
|
|
39
|
+
<stop offset="0" stop-color="#F0070C" />
|
|
40
|
+
<stop offset=".526" stop-color="#CC26D5" />
|
|
41
|
+
<stop offset="1" stop-color="#7702FF" />
|
|
42
|
+
</linearGradient>
|
|
43
|
+
<clipPath id="a"><path fill="#fff" d="M0 0h982v239H0z" /></clipPath>
|
|
44
|
+
</defs>
|
|
45
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 166.75 39.77">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #141414;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Layer_1-2" data-name="Layer 1">
|
|
11
|
+
<g>
|
|
12
|
+
<g>
|
|
13
|
+
<path class="cls-1" d="M54.7,34.98V4.76h9.86c4.46,0,8.17,1.31,11.14,3.93,2.97,2.62,4.45,6.35,4.45,11.18s-1.48,8.56-4.45,11.18c-2.97,2.62-6.68,3.93-11.14,3.93h-9.86ZM60.43,30.01h3.65c2.93,0,5.37-.82,7.32-2.46,1.96-1.64,2.93-4.2,2.93-7.68s-.98-6.05-2.93-7.71c-1.96-1.65-4.4-2.48-7.32-2.48h-3.65v20.33Z"/>
|
|
14
|
+
<path class="cls-1" d="M98.75,27.73h5.21c-.41,2.3-1.55,4.14-3.43,5.53-1.88,1.38-4.17,2.07-6.87,2.07-3.42,0-6.13-1.12-8.15-3.37-2.01-2.24-3.02-4.89-3.02-7.94s.94-5.71,2.82-7.88,4.52-3.26,7.91-3.26,6.08,1.04,7.91,3.11c1.83,2.07,2.74,4.53,2.74,7.38,0,.63-.03,1.24-.09,1.81h-16.16c.2,1.76.84,3.15,1.91,4.19,1.07,1.04,2.45,1.55,4.13,1.55,2.81,0,4.5-1.06,5.08-3.19ZM93.24,16.85c-3.1,0-4.92,1.61-5.47,4.83h10.77c-.12-1.44-.64-2.6-1.59-3.5-.94-.89-2.18-1.34-3.71-1.34Z"/>
|
|
15
|
+
<path class="cls-1" d="M117.09,35.32c-3.33,0-6.02-1.07-8.06-3.22-2.04-2.14-3.06-4.81-3.06-8.01s1.02-5.86,3.06-8.01c2.04-2.14,4.73-3.22,8.06-3.22,2.81,0,5.2.76,7.17,2.29,1.97,1.53,3.07,3.53,3.3,6h-5.3c-.2-1.06-.78-1.95-1.72-2.65-.94-.7-2.05-1.06-3.32-1.06-1.8,0-3.19.62-4.19,1.86-1,1.24-1.5,2.83-1.5,4.79s.51,3.55,1.52,4.79c1.01,1.24,2.43,1.86,4.26,1.86,1.25,0,2.32-.32,3.24-.97.91-.65,1.5-1.52,1.76-2.61h5.39c-.35,2.39-1.5,4.35-3.45,5.87s-4.34,2.29-7.15,2.29Z"/>
|
|
16
|
+
<path class="cls-1" d="M139.46,12.88c2.81,0,5.09.74,6.84,2.22,1.75,1.48,2.63,3.45,2.63,5.89v13.99h-5.26v-3.24c-.46,1.09-1.28,1.96-2.46,2.61s-2.54.97-4.11.97c-2.14,0-3.9-.61-5.26-1.83-1.36-1.22-2.04-2.78-2.04-4.68,0-2.1.75-3.77,2.26-5.01,1.51-1.24,3.49-1.86,5.95-1.86h4.04c1.07,0,1.61-.49,1.61-1.47,0-1.06-.4-1.94-1.2-2.61-.8-.68-1.89-1.01-3.28-1.01s-2.45.36-3.28,1.08c-.83.72-1.27,1.6-1.33,2.63h-4.78c.14-2.22,1.09-4.05,2.85-5.5,1.75-1.45,4.02-2.18,6.8-2.18ZM138.38,31.4c1.65,0,2.95-.52,3.89-1.55.94-1.04,1.41-2.39,1.41-4.06v-.35h-4.91c-1.13,0-2.04.29-2.74.86-.7.58-1.04,1.34-1.04,2.29,0,.83.31,1.51.93,2.03s1.44.78,2.46.78Z"/>
|
|
17
|
+
<path class="cls-1" d="M155.02,34.98v-17.31h-4.3v-4.45h4.3v-2.03c0-2.22.71-3.99,2.13-5.31s3.32-1.99,5.69-1.99h3.91v4.49h-3.3c-.93,0-1.67.27-2.24.82-.56.55-.85,1.29-.85,2.24v1.77h6.39v4.45h-6.39v17.31h-5.34Z"/>
|
|
18
|
+
</g>
|
|
19
|
+
<path class="cls-1" d="M9.93,0l-4.97,4.96L0,9.93v29.83h29.86l9.91-9.91V0H9.93ZM19.89,34.8h-9.94s-4.97,0-4.97,0h0s0,0,0,0v-4.94h0v-14.94h4.97v14.94h9.94v4.94ZM29.82,19.91h-4.97v4.99h-4.96v-9.99h9.93v4.99Z"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|