-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main-beta' into epic/esl-carousel
- Loading branch information
Showing
26 changed files
with
3,587 additions
and
3,399 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@import '../../common/reboot.less'; | ||
@import '../../common/typography.less'; | ||
@import '../../common/colors.less'; | ||
|
||
@import '@exadel/esl/modules/all.less'; | ||
|
||
@import '../../common/accent-lines.less'; | ||
@import '../../common/accordion.less'; | ||
@import '../../common/alert.less'; | ||
@import '../../common/badge.less'; | ||
@import '../../common/buttons.less'; | ||
@import '../../common/code.less'; | ||
@import '../../common/links.less'; | ||
@import '../../common/close.less'; | ||
@import '../../common/containers.less'; | ||
@import '../../common/simple-grid.less'; | ||
@import '../../common/forms.less'; | ||
@import '../../common/flex.less'; | ||
@import '../../common/helpers.less'; | ||
@import '../../common/marquee.less'; | ||
@import '../../common/scrollbar.less'; | ||
@import '../../common/tabs.less'; | ||
@import '../../common/dropdown-menu.less'; |
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 @@ | ||
export * from '@exadel/esl'; |
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 |
---|---|---|
|
@@ -45,4 +45,8 @@ html { | |
.uip-inactive-setting { | ||
display: none; | ||
} | ||
|
||
.uip-preview-h-scroll[inactive] { | ||
display: none; | ||
} | ||
} |
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,23 @@ | ||
import {init, UIPJSRenderingPreprocessors, UIPRenderingTemplatesService} from '@exadel/ui-playground'; | ||
|
||
// Add ESL lib alias | ||
UIPJSRenderingPreprocessors.addRegexReplacer( | ||
'esl-alias', | ||
/["']@exadel\/esl["']/g, | ||
'"/bundles/lib.js"' | ||
); | ||
|
||
// Add template | ||
UIPRenderingTemplatesService.add('default', ` | ||
<html> | ||
<head> | ||
<title>{title}</title> | ||
<base href="${location.origin}"/> | ||
<link rel="stylesheet" href="/bundles/lib.css"> | ||
<script type="module">{script}</script> | ||
</head> | ||
<body>{content}</body> | ||
</html> | ||
`); | ||
|
||
init(); |
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,29 +1,25 @@ | ||
<esl-popup id="popup-t-a" position="top"> | ||
<div style="height: 70px; width:250px;"></div> | ||
<span class="esl-popup-arrow"></span> | ||
</esl-popup> | ||
<esl-popup id="popup-b-a" position="bottom"> | ||
<div style="height: 70px; width:250px;"></div> | ||
<span class="esl-popup-arrow"></span> | ||
</esl-popup> | ||
<esl-popup id="popup-l-a" position="left"> | ||
<div style="height: 250px; width:70px;"></div> | ||
<span class="esl-popup-arrow"></span> | ||
</esl-popup> | ||
<esl-popup id="popup-r-a" position="right"> | ||
<div style="height: 250px; width:70px;"></div> | ||
<span class="esl-popup-arrow"></span> | ||
</esl-popup> | ||
|
||
<esl-popup id="popup-t" position="top"> | ||
<esl-popup id="popup-t" class="disable-arrow" position="top"> | ||
<div style="height: 70px; width:250px;"></div> | ||
</esl-popup> | ||
<esl-popup id="popup-b" position="bottom"> | ||
<esl-popup id="popup-b" class="disable-arrow" position="bottom"> | ||
<div style="height: 70px; width:250px;"></div> | ||
</esl-popup> | ||
<esl-popup id="popup-l" position="left"> | ||
<esl-popup id="popup-l" class="disable-arrow" position="left"> | ||
<div style="height: 250px; width:50px;"></div> | ||
</esl-popup> | ||
<esl-popup id="popup-r" position="right"> | ||
<esl-popup id="popup-r" class="disable-arrow" position="right"> | ||
<div style="height: 250px; width:50px;"></div> | ||
</esl-popup> |
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.