Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions samples/grids/list/add-list-items/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<igc-list id="list">
<igc-list-header>Header</igc-list-header>
<igc-list-item>
<h2 slot="title">Item 1</h2>
<span slot="title">Item 1</span>
</igc-list-item>
<igc-list-item>
<h2 slot="title">Item 2</h2>
<span slot="title">Item 2</span>
</igc-list-item>
<igc-list-item>
<h2 slot="title">Item 3</h2>
<span slot="title">Item 3</span>
</igc-list-item>
</igc-list>
</div>
Expand Down
6 changes: 3 additions & 3 deletions samples/grids/list/list-item-content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
<h1>Contacts</h1>
</igc-list-header>
<igc-list-item>
<h2 slot="title">Terrance Orta</h2>
<span slot="title">Terrance Orta</span>
<span slot="subtitle">770-504-2217</span>
</igc-list-item>
<igc-list-item>
<h2 slot="title">Richard Mahoney</h2>
<span slot="title">Richard Mahoney</span>
<span slot="subtitle">423-676-2869</span>
</igc-list-item>
<igc-list-item>
<h2 slot="title">Donna Price</h2>
<span slot="title">Donna Price</span>
<span slot="subtitle">859-496-2817</span>
</igc-list-item>
</igc-list>
Expand Down
6 changes: 3 additions & 3 deletions samples/grids/list/overview/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1>Contacts</h1>
</igc-list-header>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/8.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Terrance Orta</h2>
<span slot="title">Terrance Orta</span>
<span slot="subtitle">770-504-2217</span>
<igc-button slot="end" variant="outlined">
Text
Expand All @@ -34,7 +34,7 @@ <h2 slot="title">Terrance Orta</h2>
</igc-list-item>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/17.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Richard Mahoney</h2>
<span slot="title">Richard Mahoney</span>
<span slot="subtitle">423-676-2869</span>
<igc-button slot="end" variant="outlined">
Text
Expand All @@ -45,7 +45,7 @@ <h2 slot="title">Richard Mahoney</h2>
</igc-list-item>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/9.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Donna Price</h2>
<span slot="title">Donna Price</span>
<span slot="subtitle">859-496-2817</span>
<igc-button slot="end" variant="outlined">
Text
Expand Down
6 changes: 3 additions & 3 deletions samples/grids/list/styling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>Contacts</h1>
</igc-list-header>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/8.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Terrance Orta</h2>
<span slot="title">Terrance Orta</span>
<span slot="subtitle">770-504-2217</span>
<igc-button slot="end" variant="contained">
Text
Expand All @@ -28,7 +28,7 @@ <h2 slot="title">Terrance Orta</h2>
</igc-list-item>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/17.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Richard Mahoney</h2>
<span slot="title">Richard Mahoney</span>
<span slot="subtitle">423-676-2869</span>
<igc-button slot="end" variant="contained">
Text
Expand All @@ -39,7 +39,7 @@ <h2 slot="title">Richard Mahoney</h2>
</igc-list-item>
<igc-list-item>
<igc-avatar slot="start" src="https://dl.infragistics.com/x/img/avatars/9.jpg" shape="circle">AA</igc-avatar>
<h2 slot="title">Donna Price</h2>
<span slot="title">Donna Price</span>
<span slot="subtitle">859-496-2817</span>
<igc-button slot="end" variant="contained">
Text
Expand Down
2 changes: 0 additions & 2 deletions samples/grids/list/styling/src/index.css

This file was deleted.

7 changes: 6 additions & 1 deletion samples/inputs/button/contained/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-button {
width: 40%;
margin: auto;
}
1 change: 1 addition & 0 deletions samples/inputs/button/contained/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class ContainedButton {
Expand Down
7 changes: 6 additions & 1 deletion samples/inputs/button/download/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-button {
width: 40%;
margin: auto;
}
1 change: 1 addition & 0 deletions samples/inputs/button/download/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class DownloadButton {
Expand Down
7 changes: 6 additions & 1 deletion samples/inputs/button/fab/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-button {
width: 40%;
margin: auto;
}
1 change: 1 addition & 0 deletions samples/inputs/button/fab/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class FloatingActionButton {
Expand Down
12 changes: 11 additions & 1 deletion samples/inputs/button/flat/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

.container {
background: var(--ig-surface-600);
}

igc-button {
width: 40%;
margin: auto;
background: var(--ig-surface-50);
}
1 change: 1 addition & 0 deletions samples/inputs/button/flat/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class FlatButton {
Expand Down
7 changes: 6 additions & 1 deletion samples/inputs/button/outlined/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-button {
width: 40%;
margin: auto;
}
1 change: 1 addition & 0 deletions samples/inputs/button/outlined/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class OutlinedButton {
Expand Down
3 changes: 2 additions & 1 deletion samples/inputs/button/overview/src/ButtonOverviewStyle.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.button-container {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
align-items: center;
height: 100%;
}
2 changes: 0 additions & 2 deletions samples/inputs/button/overview/src/index.css

This file was deleted.

8 changes: 6 additions & 2 deletions samples/inputs/button/size/src/ButtonSizingStyle.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
.container {
justify-content: center;
}

.button-container {
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 20px;
}

#radio-group {
display: flex;
margin: 0 auto;
width: 15%;
justify-content: center;
}
1 change: 1 addition & 0 deletions samples/inputs/button/size/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineComponents, IgcButtonComponent, IgcRadioComponent, IgcRadioGroupComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './ButtonSizingStyle.css';
import './index.css';

defineComponents(IgcButtonComponent, IgcRadioComponent, IgcRadioGroupComponent);
export class ButtonSizing {
Expand Down
4 changes: 2 additions & 2 deletions samples/inputs/button/styling/src/ButtonStyle.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
igc-button::part(base) {
background-color: var(--ig-primary-500);
color: var(--ig-primary-500-contrast);
background-color: var(--ig-warn-700);
color: var(--ig-warn-700-contrast);
padding: 18px;
}
7 changes: 6 additions & 1 deletion samples/inputs/button/styling/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

igc-button {
width: 40%;
margin: auto;
}
1 change: 1 addition & 0 deletions samples/inputs/button/styling/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/material.css';
import './ButtonStyle.css';
import './index.css';

defineComponents(IgcButtonComponent);
export class ButtonStyling {
Expand Down
10 changes: 5 additions & 5 deletions samples/inputs/chip/multiple/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
<div id="root">
<div class="container sample center" style="flex-direction: row; gap: 8px">
<igc-chip selectable removable>
<span slot="select"><igc-icon name="custom-select"></igc-icon></span>
<igc-icon slot="select" name="custom-select"></igc-icon>
Custom Icons
<span slot="remove"><igc-icon name="custom-remove"></igc-icon></span>
<igc-icon slot="remove" name="custom-remove"></igc-icon>
</igc-chip>
<igc-chip removable>
<span slot="start"><igc-icon name="brush"></igc-icon></span>
<igc-icon slot="start" name="brush"></igc-icon>
Start Slot
</igc-chip>
<igc-chip selectable>
End Slot
<span slot="end"><igc-icon name="brick-wall"></igc-icon></span>
<igc-icon slot="end" name="brick-wall"></igc-icon>
</igc-chip>
<igc-chip disabled>
Disabled Chip
<span slot="end"><igc-icon name="dog-icon"></igc-icon></span>
<igc-icon slot="end" name="dog-icon"></igc-icon>
</igc-chip>
</div>
</div>
Expand Down
26 changes: 14 additions & 12 deletions samples/inputs/circular-progress-indicator/dynamic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,20 @@
</head>

<body>
<div id="sample-content">
<igc-circular-progress id="circularProgress" max="100">
<igc-circular-gradient slot="gradient" offset="0%" color="#ff9a40">
</igc-circular-gradient>
<igc-circular-gradient slot="gradient" offset="50%" color="#1eccd4">
</igc-circular-gradient>
<igc-circular-gradient slot="gradient" offset="100%" color="#ff0079">
</igc-circular-gradient>
</igc-circular-progress>
<div class="button-container">
<igc-icon-button id="removeIcon" name="remove" collection="material"></igc-icon-button>
<igc-icon-button id="addIcon" name="add" collection="material"></igc-icon-button>
<div id="root">
<div id="sample-content">
<igc-circular-progress id="circularProgress" max="100">
<igc-circular-gradient slot="gradient" offset="0%" color="#ff9a40">
</igc-circular-gradient>
<igc-circular-gradient slot="gradient" offset="50%" color="#1eccd4">
</igc-circular-gradient>
<igc-circular-gradient slot="gradient" offset="100%" color="#ff0079">
</igc-circular-gradient>
</igc-circular-progress>
<div class="button-container">
<igc-icon-button id="removeIcon" name="remove" collection="material"></igc-icon-button>
<igc-icon-button id="addIcon" name="add" collection="material"></igc-icon-button>
</div>
</div>
</div>
<!-- This script is needed only for parcel and it will be excluded for webpack -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
width: 300px;
display: flex;
align-items: center;
margin-top: 30px;
margin-top: 20px;
}

#circularProgress {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#circular-progress {
margin: 20px;
--diameter: 50px;
margin: 20px;
--diameter: 50px;
}

main {
margin-top: 20px;
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#circular-progress{
margin: 20px;
--diameter: 50px;
margin: 20px;
--diameter: 50px;
}

main {
margin-top: 20px;
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */

main {
margin-top: 20px;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineComponents, IgcCircularProgressComponent } from 'igniteui-webcomponents';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
import './CircularProgressStyling.css'
import './index.css';

defineComponents(IgcCircularProgressComponent);

Expand Down
4 changes: 2 additions & 2 deletions samples/inputs/file-input/form/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<form id='form1' enctype="multipart/form-data">
<fieldset>
<igc-file-input id="fInput" name="fInput" label="Required field" multiple required>
<p slot="helper-text">You can upload any type of file.</p>
<p slot="value-missing">You must upload a file</p>
<span slot="helper-text">You can upload any type of file.</span>
<span slot="value-missing">You must upload a file</span>
</igc-file-input>
<igc-button variant="outlined" type="submit">Submit</igc-button>
<igc-button variant="outlined" type="reset">Reset</igc-button>
Expand Down
1 change: 0 additions & 1 deletion samples/inputs/input/size/src/InputSizingStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
#radio-group {
display: flex;
margin: 0 auto;
width: 15%;
}
Loading
Loading