Merge branch 'main' into feature/manifest-conditions

This commit is contained in:
Mads Rasmussen
2023-03-14 18:59:49 +01:00
committed by GitHub
4 changed files with 712 additions and 707 deletions

View File

@@ -0,0 +1,3 @@
import config from '../../utils/rollup.config.js';
export default config;

View File

@@ -1,9 +1,11 @@
import type { UmbExtensionRegistry } from "./registry/extension.registry";
import type { UmbControllerHostInterface } from "@umbraco-cms/controller";
import type { UmbExtensionRegistry } from './registry/extension.registry';
import type { UmbControllerHostInterface } from '@umbraco-cms/controller';
export type UmbEntrypointOnInit = (host: UmbControllerHostInterface, extensionRegistry: UmbExtensionRegistry) => void;
/**
* Interface containing supported life-cycle functions for ESModule entrypoints
*/
export interface UmbEntrypointModule {
onInit: (host: UmbControllerHostInterface, extensionRegistry: UmbExtensionRegistry) => void
onInit: UmbEntrypointOnInit;
}

File diff suppressed because it is too large Load Diff

View File

@@ -77,13 +77,13 @@
"@open-wc/testing": "^3.1.7",
"@playwright/test": "^1.30.0",
"@rollup/plugin-json": "^6.0.0",
"@storybook/addon-a11y": "^7.0.0-beta.59",
"@storybook/addon-actions": "^7.0.0-beta.59",
"@storybook/addon-essentials": "^7.0.0-beta.59",
"@storybook/addon-links": "^7.0.0-beta.59",
"@storybook/addon-a11y": "^7.0.0-rc.3",
"@storybook/addon-actions": "^7.0.0-rc.3",
"@storybook/addon-essentials": "^7.0.0-rc.3",
"@storybook/addon-links": "^7.0.0-rc.3",
"@storybook/mdx2-csf": "^1.0.0-next.5",
"@storybook/web-components": "^7.0.0-beta.59",
"@storybook/web-components-vite": "^7.0.0-beta.59",
"@storybook/web-components": "^7.0.0-rc.3",
"@storybook/web-components-vite": "^7.0.0-rc.3",
"@types/chai": "^4.3.4",
"@types/lodash-es": "^4.17.6",
"@types/mocha": "^10.0.0",
@@ -118,7 +118,7 @@
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-url": "^3.0.1",
"storybook": "^7.0.0-beta.59",
"storybook": "^7.0.0-rc.3",
"tiny-glob": "^0.2.9",
"typescript": "^4.9.5",
"vite": "^4.1.4",