@trackunit/iris-app 1.7.47 → 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
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.7.49 (2025-10-30)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for iris-app to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 1.7.48 (2025-10-29)
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated iris-app-build-utilities to 1.7.45
|
|
10
|
+
- Updated iris-app-webpack-plugin to 1.7.46
|
|
11
|
+
- Updated iris-app-api to 1.7.45
|
|
12
|
+
- Updated react-test-setup to 1.4.44
|
|
13
|
+
- Updated shared-utils to 1.9.44
|
|
14
|
+
|
|
1
15
|
## 1.7.47 (2025-10-28)
|
|
2
16
|
|
|
3
17
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.49",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@npmcli/arborist": "^7.3.1",
|
|
33
33
|
"webpack-bundle-analyzer": "^4.8.0",
|
|
34
34
|
"win-ca": "^3.5.1",
|
|
35
|
-
"@trackunit/iris-app-build-utilities": "1.7.
|
|
36
|
-
"@trackunit/shared-utils": "1.9.
|
|
37
|
-
"@trackunit/iris-app-api": "1.7.
|
|
38
|
-
"@trackunit/iris-app-webpack-plugin": "1.7.
|
|
35
|
+
"@trackunit/iris-app-build-utilities": "1.7.45",
|
|
36
|
+
"@trackunit/shared-utils": "1.9.44",
|
|
37
|
+
"@trackunit/iris-app-api": "1.7.45",
|
|
38
|
+
"@trackunit/iris-app-webpack-plugin": "1.7.46",
|
|
39
39
|
"tslib": "^2.6.2",
|
|
40
|
-
"@trackunit/react-test-setup": "1.4.
|
|
40
|
+
"@trackunit/react-test-setup": "1.4.44"
|
|
41
41
|
},
|
|
42
42
|
"types": "./src/index.d.ts",
|
|
43
43
|
"type": "commonjs"
|
|
@@ -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:
|