@trimble-oss/moduswebcomponents-angular 1.1.0-ng17 → 1.1.0-ng19

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Modus Angular Components: moduswebcomponents-angular
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 19.0.0.
4
4
 
5
5
  The components in this library were programmatically generated using the [StencilJS](https://stenciljs.com/) [Angular Framework Integration](https://stenciljs.com/docs/angular).
6
6
 
@@ -9,12 +9,6 @@ The components in this library were programmatically generated using the [Stenci
9
9
  - Install the Modus Angular Components Library and its Modus Web Component peer dependency
10
10
  `npm install @trimble-oss/moduswebcomponents @trimble-oss/moduswebcomponents-angular`
11
11
 
12
- - You will need to import our styling in your main JavaScript or CSS file:
13
-
14
- ```js
15
- import "@trimble-oss/moduswebcomponents/modus-wc-styles.css";
16
- ```
17
-
18
12
  - Add the following snippet to your `main.ts` (or any main module)
19
13
 
20
14
  ```typescript
@@ -46,7 +40,7 @@ The components in this library were programmatically generated using the [Stenci
46
40
 
47
41
  To rebuild the Modus Angular Components you need to perform the following steps:
48
42
 
49
- - From the `./integrations/angular/ng17` project directory run
43
+ - From the `./integrations/angular/ng19` project directory run
50
44
  `npm install` then `npm run build`
51
45
 
52
46
  ### Referencing a local build of modus-wc
@@ -54,20 +48,20 @@ To rebuild the Modus Angular Components you need to perform the following steps:
54
48
  #### Using npm link
55
49
 
56
50
  - If you want to reference a local build of `modus-wc` you can run `npm link` from the `modus-wc-2.0` root
57
- directory and then `npm link @trimble-oss/moduswebcomponents` from the `ng17` directory.
51
+ directory and then `npm link @trimble-oss/moduswebcomponents` from the `ng19` directory.
58
52
 
59
53
  #### Using npm pack
60
54
 
61
55
  - You can also run `npm pack` from the `modus-wc-2.0` root
62
- directory and then `npm install path/to/modus-wc-tarball.tgz` from `ng17` directory.
56
+ directory and then `npm install path/to/modus-wc-tarball.tgz` from `ng19` directory.
63
57
 
64
58
  ## Debugging Locally
65
59
 
66
60
  To use the Modus Angular components locally for debugging and other purposes:
67
61
 
68
- - From `./ng17` project directory run `npm run build`
69
- - From `./ng17` project directory run `npm pack ./dist/trimble-oss/moduswebcomponents-angular`
70
- - This will generate a tarball of the library: `trimble-cms-modus-wc-angular-0.0.1-ng17.tgz`
62
+ - From `./ng19` project directory run `npm run build`
63
+ - From `./ng19` project directory run `npm pack ./dist/trimble-oss/moduswebcomponents-angular`
64
+ - This will generate a tarball of the library: `trimble-cms-modus-wc-angular-0.0.1-ng19.tgz`
71
65
 
72
- You can now test the build locally with any Angular project by running `npm install path/to/trimble-cms-modus-wc-angular-0.0.1-ng17.tgz`
66
+ You can now test the build locally with any Angular project by running `npm install path/to/trimble-cms-modus-wc-angular-0.0.1-ng19.tgz`
73
67
  and following the [installation steps](#installation).