Skip to content

Commit

Permalink
Resolves conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn committed Sep 23, 2024
2 parents b7a257d + 6894f9b commit a7aa7bf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
22 changes: 11 additions & 11 deletions container/src/LuigiCompoundContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,22 @@
import { Events } from './constants/communication';
import { GenericHelperFunctions } from './utilities/helpers';
export let viewurl: string;
export let webcomponent: any;
export let anchor: string;
export let authData: any;
export let clientPermissions: any;
export let compoundConfig: any;
export let context: string;
export let deferInit: boolean;
export let dirtyStatus: boolean;
export let documentTitle: string;
export let hasBack: boolean;
export let noShadow: boolean;
export let compoundConfig: any;
export let nodeParams: any;
export let searchParams: any;
export let pathParams: any;
export let clientPermissions: any;
export let searchParams: any;
export let userSettings: any;
export let anchor: string;
export let dirtyStatus: boolean;
export let hasBack: boolean;
export let documentTitle: string;
export let authData: any;
export let viewurl: string;
export let webcomponent: any;
let containerInitialized = false;
let mainComponent: HTMLElement;
Expand Down Expand Up @@ -178,4 +178,4 @@
height: 100%;
border: none;
}
</style>
</style>
34 changes: 17 additions & 17 deletions container/src/LuigiContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,29 +62,28 @@
import { GenericHelperFunctions } from './utilities/helpers';
import { getAllowRules } from './services/iframe-helpers';
export let viewurl: string;
export let activeFeatureToggleList: string[];
export let allowRules: string[];
export let anchor: string;
export let authData: any;
export let clientPermissions: any;
export let context: string;
export let label: string;
export let webcomponent: any;
export let deferInit: boolean;
export let noShadow: Boolean;
export let dirtyStatus: boolean;
export let documentTitle: string;
export let hasBack: boolean;
export let label: string;
export let locale: string;
export let theme: string;
export let activeFeatureToggleList: string[];
export let skipInitCheck: boolean;
export let noShadow: Boolean;
export let nodeParams: any;
export let searchParams: any;
export let pathParams: any;
export let clientPermissions: any;
export let dirtyStatus: boolean;
export let hasBack: boolean;
export let documentTitle: string;
export let allowRules: string[];
export let sandboxRules: string[];
export let searchParams: any;
export let skipInitCheck: boolean;
export let theme: string;
export let userSettings: any;
export let anchor: string;
export let authData: any;
export let viewurl: string;
export let webcomponent: any;
const iframeHandle:
| {
Expand Down Expand Up @@ -114,6 +113,7 @@
pathParams &&
sandboxRules &&
searchParams &&
skipInitCheck &&
theme &&
userSettings
);
Expand Down Expand Up @@ -213,7 +213,7 @@
height: 100%;
border: none;
}
main.lui-isolated {
line-height: 0;
}
Expand Down

0 comments on commit a7aa7bf

Please sign in to comment.