-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from aem-design/develop
Develop
- Loading branch information
Showing
232 changed files
with
11,063 additions
and
1,657 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
**/cypress/plugins | ||
**/cypress/support | ||
**/cypress/*.js | ||
**/config | ||
**/public | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
interface Window { | ||
CQ: any; | ||
kWidget: KWidget; | ||
google: any; | ||
onYouTubeIframeAPIReady: () => void; | ||
|
||
digitalData: { | ||
[key: string]: any; | ||
|
||
event: { | ||
push: (data: DigitalDataPush) => {}, | ||
}, | ||
}; | ||
|
||
CustomEvent: (event: string, params: any) => CustomEvent<any>; | ||
MSInputMethodContext: any; | ||
} | ||
|
||
interface Document { | ||
documentMode: any; | ||
} | ||
|
||
interface Element { | ||
matchesSelector(selectors: string): boolean; | ||
msMatchesSelector(selectors: string): boolean; | ||
mozMatchesSelector(selectors: string): boolean; | ||
oMatchesSelector(selectors: string): boolean; | ||
|
||
kBind(eventName: string, callback: (state: string) => void): void; | ||
|
||
dummyElement: Element; | ||
kaltura: any | null; | ||
mediaProvider: string; | ||
youtube: YT.Player; | ||
waitForState: boolean; | ||
} | ||
|
||
interface HTMLSelectElement { | ||
isWrapped: boolean; | ||
} | ||
|
||
interface HTMLOptionElement { | ||
customItem: HTMLLIElement; | ||
} | ||
|
||
interface HTMLLIElement { | ||
optionTarget: HTMLOptionElement; | ||
} | ||
|
||
interface ComponentConfig { | ||
[key: string]: { | ||
icon: Element, | ||
selectors: string[], | ||
}; | ||
} | ||
|
||
interface DigitalDataPush { | ||
eventAction: string; | ||
} | ||
|
||
interface BreakpointOptions { | ||
[key: number]: OwlCarousel.Options; | ||
} | ||
|
||
interface CarouselOptions { | ||
breakpoint?: BreakpointOptions; | ||
destroy?: boolean; | ||
needsCarousel: boolean; | ||
needsSplit: boolean; | ||
refreshOnly: boolean; | ||
} | ||
|
||
interface FieldElements { | ||
input: HTMLInputElement; | ||
label: HTMLLabelElement; | ||
} | ||
|
||
interface FormClickEvent { | ||
event: Event; | ||
input: HTMLInputElement; | ||
target: HTMLElement; | ||
} | ||
|
||
interface FormInputEvent { | ||
event: Event; | ||
input: HTMLInputElement; | ||
parent: HTMLElement; | ||
state: InputType | MouseAndTouchType; | ||
} | ||
|
||
interface FormInputOptions { | ||
watch?: boolean; | ||
} | ||
|
||
interface KWidget { | ||
embed(options: any): Element; | ||
} | ||
|
||
interface MediaTracking { | ||
lastWatchedSegment: number | null; | ||
timer: number | null; | ||
} | ||
|
||
interface MediaBrand { | ||
elements: Element[], | ||
needed: boolean, | ||
} | ||
|
||
interface SearchResultsResponseItem { | ||
title: string; | ||
summary: string; | ||
displayUrl: string; | ||
collection: string; | ||
metaData:any; | ||
}; | ||
|
||
interface ISearchResultsItem { | ||
title: string; | ||
summary: string; | ||
url: string; | ||
collection: string; | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.