ghocomps 1.2.25 → 1.3.25
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 +18 -14
- package/fesm2022/ghocomps.mjs +811 -0
- package/fesm2022/ghocomps.mjs.map +1 -0
- package/index.d.ts +125 -0
- package/package.json +15 -42
- package/.editorconfig +0 -17
- package/.vscode/extensions.json +0 -4
- package/.vscode/launch.json +0 -20
- package/.vscode/tasks.json +0 -42
- package/angular.json +0 -36
- package/projects/ghocomps/README.md +0 -63
- package/projects/ghocomps/ng-package.json +0 -7
- package/projects/ghocomps/package.json +0 -12
- package/projects/ghocomps/src/lib/date.ts +0 -298
- package/projects/ghocomps/src/lib/dropdown.ts +0 -189
- package/projects/ghocomps/src/lib/input.css +0 -160
- package/projects/ghocomps/src/lib/input.ts +0 -119
- package/projects/ghocomps/src/public-api.ts +0 -7
- package/projects/ghocomps/tsconfig.lib.json +0 -18
- package/projects/ghocomps/tsconfig.lib.prod.json +0 -11
- package/projects/ghocomps/tsconfig.spec.json +0 -15
- package/tsconfig.json +0 -45
package/README.md
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
# GHOComps
|
|
2
2
|
|
|
3
|
-
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.3.
|
|
4
|
-
|
|
5
|
-
## Development server
|
|
6
|
-
|
|
7
|
-
To start a local development server, run:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
ng serve
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
|
3
|
+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
|
|
14
4
|
|
|
15
5
|
## Code scaffolding
|
|
16
6
|
|
|
@@ -28,13 +18,27 @@ ng generate --help
|
|
|
28
18
|
|
|
29
19
|
## Building
|
|
30
20
|
|
|
31
|
-
To build the
|
|
21
|
+
To build the library, run:
|
|
32
22
|
|
|
33
23
|
```bash
|
|
34
|
-
ng build
|
|
24
|
+
ng build GHOComps
|
|
35
25
|
```
|
|
36
26
|
|
|
37
|
-
This will compile your project and
|
|
27
|
+
This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
|
|
28
|
+
|
|
29
|
+
### Publishing the Library
|
|
30
|
+
|
|
31
|
+
Once the project is built, you can publish your library by following these steps:
|
|
32
|
+
|
|
33
|
+
1. Navigate to the `dist` directory:
|
|
34
|
+
```bash
|
|
35
|
+
cd dist/ghocomps
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
2. Run the `npm publish` command to publish your library to the npm registry:
|
|
39
|
+
```bash
|
|
40
|
+
npm publish
|
|
41
|
+
```
|
|
38
42
|
|
|
39
43
|
## Running unit tests
|
|
40
44
|
|