-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: drop support of legacy not-chromium Edge (EdgeHTML)
- Loading branch information
1 parent
d5277c2
commit c4e79b6
Showing
13 changed files
with
86 additions
and
98 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 +1,5 @@ | ||
/** | ||
* @deprecated | ||
* TODO: drop support of legacy Edge (EdgeHTML) in v4.x | ||
*/ | ||
export const CHROMIUM_EDGE_START_VERSION = 79; |
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,5 +1,4 @@ | ||
export * from './is-edge'; | ||
export * from './is-edge-older-than'; | ||
export * from './is-firefox'; | ||
export * from './is-ie'; | ||
export * from './is-safari'; |
This file was deleted.
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
131 changes: 64 additions & 67 deletions
131
projects/demo/src/modules/app/customization/customization.template.html
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,71 +1,68 @@ | ||
<h2 *ngIf="isIE; else customization">Not available in Internet Explorer.</h2> | ||
<ng-template #customization> | ||
<tui-doc-demo | ||
#demo | ||
[attr.style]="style" | ||
> | ||
<ng-content></ng-content> | ||
</tui-doc-demo> | ||
<tui-doc-documentation | ||
*ngIf="basic; else withMode" | ||
<tui-doc-demo | ||
#demo | ||
[attr.style]="style" | ||
> | ||
<ng-content></ng-content> | ||
</tui-doc-demo> | ||
<tui-doc-documentation | ||
*ngIf="basic; else withMode" | ||
class="tui-space_top-6" | ||
[tuiMode]="null" | ||
> | ||
<ng-template | ||
*ngFor="let variable of keys" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</tui-doc-documentation> | ||
<ng-template #withMode> | ||
<tui-accordion | ||
class="tui-space_top-6" | ||
[tuiMode]="null" | ||
> | ||
<ng-template | ||
*ngFor="let variable of keys" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</tui-doc-documentation> | ||
<ng-template #withMode> | ||
<tui-accordion | ||
class="tui-space_top-6" | ||
[tuiMode]="null" | ||
> | ||
<tui-accordion-item> | ||
Default | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="!isDark(variable) && !isLight(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
<tui-accordion-item *ngIf="hasLight"> | ||
Light | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="isLight(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
<tui-accordion-item *ngIf="hasLight"> | ||
Dark | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="isDark(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
</tui-accordion> | ||
</ng-template> | ||
<tui-accordion-item> | ||
Default | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="!isDark(variable) && !isLight(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
<tui-accordion-item *ngIf="hasLight"> | ||
Light | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="isLight(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
<tui-accordion-item *ngIf="hasLight"> | ||
Dark | ||
<tui-doc-documentation *tuiAccordionItemContent> | ||
<ng-container *ngFor="let variable of keys"> | ||
<ng-template | ||
*ngIf="isDark(variable)" | ||
[documentationPropertyName]="variable" | ||
[documentationPropertyType]="getType(variable)" | ||
[documentationPropertyValue]="getVariable(variable)" | ||
(documentationPropertyValueChange)="onModelChange(variable, $event)" | ||
></ng-template> | ||
</ng-container> | ||
</tui-doc-documentation> | ||
</tui-accordion-item> | ||
</tui-accordion> | ||
</ng-template> |
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
4 changes: 2 additions & 2 deletions
4
projects/demo/src/modules/utils/browser/examples/import/import-component.md
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