@trackunit/iris-app-api 0.0.124 → 0.0.125
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
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.125](https://github.com/Trackunit/manager/compare/iris-app-api/0.0.124...iris-app-api/0.0.125) (2023-10-13)
|
|
6
|
+
|
|
5
7
|
## [0.0.124](https://github.com/Trackunit/manager/compare/iris-app-api/0.0.123...iris-app-api/0.0.124) (2023-10-12)
|
|
6
8
|
|
|
7
9
|
## [0.0.123](https://github.com/Trackunit/manager/compare/iris-app-api/0.0.122...iris-app-api/0.0.123) (2023-10-11)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.125",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18.x"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"tslib": "2.
|
|
10
|
+
"tslib": "2.4.1"
|
|
11
11
|
},
|
|
12
12
|
"main": "./src/index.js",
|
|
13
13
|
"type": "commonjs"
|
|
@@ -18,6 +18,7 @@ export interface WidgetGridOptions {
|
|
|
18
18
|
*/
|
|
19
19
|
maxH?: number | undefined;
|
|
20
20
|
}
|
|
21
|
+
export type WidgetSupportedLocations = "MY_HOME" | "SITE_HOME";
|
|
21
22
|
/**
|
|
22
23
|
* BETA! DONT USE THIS YET - its under development
|
|
23
24
|
*/
|
|
@@ -37,5 +38,6 @@ export interface WidgetExtensionManifest extends AbstractExtensionManifest {
|
|
|
37
38
|
*/
|
|
38
39
|
hasEditDialog?: boolean;
|
|
39
40
|
};
|
|
41
|
+
supportedLocations: WidgetSupportedLocations[];
|
|
40
42
|
gridOptions?: WidgetGridOptions;
|
|
41
43
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widgetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/widgetExtensionManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { AbstractExtensionManifest, TranslationKey, Translations } from \"../irisAppExtensionManifest\";\n\nexport type WidgetBreakpointTypes = \"lg\" | \"xxs\";\n\nexport interface WidgetGridOptions {\n /**\n * Minimum width in grid units.\n */\n minW?: number | undefined;\n\n /**\n * Maximum width in grid units.\n */\n maxW?: number | undefined;\n\n /**\n * Minimum height in grid units.\n */\n minH?: number | undefined;\n\n /**\n * Maximum height in grid units.\n */\n maxH?: number | undefined;\n}\n\n/**\n * BETA! DONT USE THIS YET - its under development\n */\nexport interface WidgetExtensionManifest extends AbstractExtensionManifest {\n type: \"WIDGET_EXTENSION\";\n\n header: {\n /**\n * The name of the widget to display in the header\n */\n name: string | Translations | TranslationKey;\n\n /**\n * The icon of the widget to display in the header\n */\n icon?: string;\n\n /**\n * If true a button will be on the header and an editDialog from the src folder of this extension will be loaded\n */\n hasEditDialog?: boolean;\n };\n\n gridOptions?: WidgetGridOptions;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"widgetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/widgetExtensionManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { AbstractExtensionManifest, TranslationKey, Translations } from \"../irisAppExtensionManifest\";\n\nexport type WidgetBreakpointTypes = \"lg\" | \"xxs\";\n\nexport interface WidgetGridOptions {\n /**\n * Minimum width in grid units.\n */\n minW?: number | undefined;\n\n /**\n * Maximum width in grid units.\n */\n maxW?: number | undefined;\n\n /**\n * Minimum height in grid units.\n */\n minH?: number | undefined;\n\n /**\n * Maximum height in grid units.\n */\n maxH?: number | undefined;\n}\n\nexport type WidgetSupportedLocations = \"MY_HOME\" | \"SITE_HOME\";\n\n/**\n * BETA! DONT USE THIS YET - its under development\n */\nexport interface WidgetExtensionManifest extends AbstractExtensionManifest {\n type: \"WIDGET_EXTENSION\";\n\n header: {\n /**\n * The name of the widget to display in the header\n */\n name: string | Translations | TranslationKey;\n\n /**\n * The icon of the widget to display in the header\n */\n icon?: string;\n\n /**\n * If true a button will be on the header and an editDialog from the src folder of this extension will be loaded\n */\n hasEditDialog?: boolean;\n };\n\n supportedLocations: WidgetSupportedLocations[];\n gridOptions?: WidgetGridOptions;\n}\n"]}
|