@trackunit/iris-app-api 1.3.32 → 1.3.33
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,7 @@
|
|
|
1
|
+
## 1.3.33 (2025-03-13)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
1
5
|
## 1.3.32 (2025-03-12)
|
|
2
6
|
|
|
3
7
|
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AbstractExtensionManifest, TranslationKey, Translations } from "../irisAppExtensionManifest";
|
|
2
|
-
|
|
3
|
-
export type WidgetBreakpointTypes = "sm" | "md" | "lg" | "xl";
|
|
2
|
+
export type WidgetBreakpointTypes = "sm" | "lg";
|
|
4
3
|
export declare const widgetBreakpointTypes: WidgetBreakpointTypes[];
|
|
5
4
|
export interface WidgetGridOptions {
|
|
6
5
|
/**
|
|
@@ -40,11 +39,6 @@ export interface WidgetExtensionManifest extends AbstractExtensionManifest {
|
|
|
40
39
|
*/
|
|
41
40
|
hasEditDialog?: boolean;
|
|
42
41
|
};
|
|
43
|
-
/**
|
|
44
|
-
* The widget will have this padding, default is "default" if not supplied
|
|
45
|
-
*/
|
|
46
|
-
padding?: "none" | "default";
|
|
47
|
-
brandingColor?: CSSColor;
|
|
48
42
|
supportedLocations: WidgetSupportedLocations[];
|
|
49
43
|
gridOptions?: WidgetGridOptions;
|
|
50
44
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.widgetBreakpointTypes = void 0;
|
|
4
|
-
exports.widgetBreakpointTypes = ["sm", "
|
|
4
|
+
exports.widgetBreakpointTypes = ["sm", "lg"];
|
|
5
5
|
//# sourceMappingURL=widgetExtensionManifest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widgetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/widgetExtensionManifest.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"widgetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/widgetExtensionManifest.ts"],"names":[],"mappings":";;;AAGa,QAAA,qBAAqB,GAA4B,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC","sourcesContent":["import { AbstractExtensionManifest, TranslationKey, Translations } from \"../irisAppExtensionManifest\";\n\nexport type WidgetBreakpointTypes = \"sm\" | \"lg\";\nexport const widgetBreakpointTypes: WidgetBreakpointTypes[] = [\"sm\", \"lg\"];\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"]}
|