@hitachivantara/app-shell-events 1.0.2 → 1.0.3

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/dist/esm/index.js CHANGED
@@ -1,7 +1,6 @@
1
- import { HvAppShellEventThemeTrigger as o } from "./lib/types/theming.js";
2
- import { HvAppShellEventNotificationTrigger as t } from "./lib/types/notifications.js";
1
+ import { HvAppShellEventNotificationTrigger } from "./types/notifications.js";
2
+ import { HvAppShellEventThemeTrigger } from "./types/theming.js";
3
3
  export {
4
- t as HvAppShellEventNotificationTrigger,
5
- o as HvAppShellEventThemeTrigger
4
+ HvAppShellEventNotificationTrigger,
5
+ HvAppShellEventThemeTrigger
6
6
  };
7
- //# sourceMappingURL=index.js.map
@@ -0,0 +1,4 @@
1
+ const HvAppShellEventNotificationTrigger = "@hv/app-shell:notifications:trigger";
2
+ export {
3
+ HvAppShellEventNotificationTrigger
4
+ };
@@ -0,0 +1,4 @@
1
+ const HvAppShellEventThemeTrigger = "@hv/app-shell:theme:trigger";
2
+ export {
3
+ HvAppShellEventThemeTrigger
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/app-shell-events",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AppShell Events",
5
5
  "author": "Hitachi Vantara - Boba Fett Team",
6
6
  "license": "Apache-2.0",
@@ -45,5 +45,5 @@
45
45
  "vite-plugin-dts": "^3.6.4",
46
46
  "vite-tsconfig-paths": "^4.0.5"
47
47
  },
48
- "gitHead": "d53c73bcb11dd17fb2f61b727c6442706c33ac5d"
48
+ "gitHead": "bbee984ca345cfaa5d6a3829f5ec65cc6373b37b"
49
49
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
@@ -1,5 +0,0 @@
1
- const i = "@hv/app-shell:notifications:trigger";
2
- export {
3
- i as HvAppShellEventNotificationTrigger
4
- };
5
- //# sourceMappingURL=notifications.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"notifications.js","sources":["../../../../src/lib/types/notifications.ts"],"sourcesContent":["import {\n HvActionGeneric,\n HvBannerVariant,\n HvSnackbarVariant\n} from \"@hitachivantara/uikit-react-core\";\nimport { ReactNode, SyntheticEvent } from \"react\";\n\nexport const HvAppShellEventNotificationTrigger =\n \"@hv/app-shell:notifications:trigger\";\n\nexport type HvAppShellEventNotificationType = \"snackbar\" | \"banner\";\n\nexport type HvAppShellEventNotification = {\n type: HvAppShellEventNotificationType;\n message?: string;\n variant?: HvBannerVariant | HvSnackbarVariant;\n actions?: ReactNode | HvActionGeneric[];\n actionsCallback?: (\n event: SyntheticEvent<Element, Event>,\n id: string,\n action: HvActionGeneric\n ) => void;\n};\n"],"names":["HvAppShellEventNotificationTrigger"],"mappings":"AAOO,MAAMA,IACX;"}
@@ -1,5 +0,0 @@
1
- const e = "@hv/app-shell:theme:trigger";
2
- export {
3
- e as HvAppShellEventThemeTrigger
4
- };
5
- //# sourceMappingURL=theming.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"theming.js","sources":["../../../../src/lib/types/theming.ts"],"sourcesContent":["export const HvAppShellEventThemeTrigger = \"@hv/app-shell:theme:trigger\";\n\nexport type HvAppShellEventTheme = {\n theme?: string;\n colorMode?: string;\n};\n"],"names":["HvAppShellEventThemeTrigger"],"mappings":"AAAO,MAAMA,IAA8B;"}