@trackunit/iris-app 1.7.48 → 1.7.49
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
CHANGED
package/package.json
CHANGED
|
@@ -41,7 +41,7 @@ Key Points:
|
|
|
41
41
|
- Create new app: `npx nx generate @trackunit/iris-app:create [name-of-your-app]`
|
|
42
42
|
For more information about the `@trackunit/iris-app:create` command, look at: [Creating a new app](mdc:https:/developers.trackunit.com/docs/creating-a-new-app)
|
|
43
43
|
|
|
44
|
-
- Create new extension: `npx nx g @trackunit/iris-app:extend --name=[my-extension-name] --directory=[feature] --type=[extension-type]`
|
|
44
|
+
- Create new extension: `npx nx g @trackunit/iris-app:extend --name=[my-extension-name] --app=[app-name] --directory=[feature] --type=[extension-type]`
|
|
45
45
|
Available extension types: ASSET_HOME_EXTENSION, SITE_HOME_EXTENSION, FLEET_EXTENSION, REPORT_EXTENSION, WIDGET_EXTENSION, APP_SETTINGS_EXTENSION, ADMINISTRATION_EXTENSION, CUSTOMER_HOME_EXTENSION, ASSET_EVENTS_ACTIONS_EXTENSION, APP_LIFECYCLE_EXTENSION
|
|
46
46
|
For more information about the `@trackunit/iris-app:extend` command, look at: [Creating a new extension](mdc:https:/developers.trackunit.com/docs/creating-a-new-extension)
|
|
47
47
|
|
|
@@ -14,7 +14,7 @@ Widget extensions are specialized components that integrate into Trackunit Manag
|
|
|
14
14
|
|
|
15
15
|
### Generate a new widget extension:
|
|
16
16
|
```bash
|
|
17
|
-
npx nx g @trackunit/iris-app:extend --name=[my-widget-name] --directory=[feature] --type=WIDGET_EXTENSION
|
|
17
|
+
npx nx g @trackunit/iris-app:extend --name=[my-widget-name] --app=[app-name] --directory=[feature] --type=WIDGET_EXTENSION
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
This creates:
|