Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 28, 2024
1 parent af4c9fe commit 55c14f7
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 24 deletions.
2 changes: 1 addition & 1 deletion docs/api-report/uix-host.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export type HostEvents = HostGuestEvent<"beforeload"> | HostGuestEvent<"load"> |
export type InstalledExtensions = Record<Extension["id"], Extension["url"] | Extension>;

// @internal
export const makeSandboxAttrs: (...sandboxes: AttrTokens<SandboxToken>[]) => ("allow-same-origin" | "allow-presentation" | "allow-downloads" | "allow-orientation-lock" | "allow-pointer-lock" | "allow-popups" | "allow-scripts" | "allow-storage-access-by-user-activation" | "allow-top-navigation-by-user-activation")[];
export const makeSandboxAttrs: (...sandboxes: AttrTokens<SandboxToken>[]) => ("allow-presentation" | "allow-same-origin" | "allow-downloads" | "allow-orientation-lock" | "allow-pointer-lock" | "allow-popups" | "allow-scripts" | "allow-storage-access-by-user-activation" | "allow-top-navigation-by-user-activation")[];

// @internal
export const mergeAttrValues: <T>(...tokenLists: AttrTokens<T>[]) => T[];
Expand Down
24 changes: 24 additions & 0 deletions docs/markdown/uix-host.createextensionregistryasobjectsprovider.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@adobe/uix-host](./uix-host.md) &gt; [createExtensionRegistryAsObjectsProvider](./uix-host.createextensionregistryasobjectsprovider.md)

## createExtensionRegistryAsObjectsProvider() function

Create a callback that fetches extensions as objects from the registry.

**Signature:**

```typescript
export declare function createExtensionRegistryAsObjectsProvider(config: ExtensionRegistryConfig): ExtensionsProvider;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| config | [ExtensionRegistryConfig](./uix-host.extensionregistryconfig.md) | |

**Returns:**

[ExtensionsProvider](./uix-host.extensionsprovider.md)

28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@adobe/uix-sdk-monorepo",
"private": true,
"version": "0.9.0",
"version": "0.9.1",
"description": "Monorepo for @adobe/uix-sdk development",
"author": "Adobe, Inc,",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/uix-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/uix-core",
"version": "0.9.0",
"version": "0.9.1",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/uix-guest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/uix-guest",
"version": "0.9.0",
"version": "0.9.1",
"publishConfig": {
"access": "public"
},
Expand All @@ -18,7 +18,7 @@
],
"bugs": "https://github.com/adobe/uix-sdk/issues",
"dependencies": {
"@adobe/uix-core": "^0.9.0"
"@adobe/uix-core": "^0.9.1"
},
"files": [
"README.md",
Expand Down
6 changes: 3 additions & 3 deletions packages/uix-host-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/uix-host-react",
"version": "0.9.0",
"version": "0.9.1",
"publishConfig": {
"access": "public"
},
Expand All @@ -20,8 +20,8 @@
],
"bugs": "https://github.com/adobe/uix-sdk/issues",
"dependencies": {
"@adobe/uix-core": "^0.9.0",
"@adobe/uix-host": "^0.9.0"
"@adobe/uix-core": "^0.9.1",
"@adobe/uix-host": "^0.9.1"
},
"devDependencies": {
"@swc/jest": "^0.2.29",
Expand Down
4 changes: 2 additions & 2 deletions packages/uix-host/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/uix-host",
"version": "0.9.0",
"version": "0.9.1",
"publishConfig": {
"access": "public"
},
Expand All @@ -20,7 +20,7 @@
],
"bugs": "https://github.com/adobe/uix-sdk/issues",
"dependencies": {
"@adobe/uix-core": "^0.9.0"
"@adobe/uix-core": "^0.9.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
Expand Down

0 comments on commit 55c14f7

Please sign in to comment.