Skip to content

deps(webcomponents): bump to latest version #15795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ src/**/*.js
src/**/*.js.map
src/**/*.css.map

# Artefacts
projects/igniteui-angular/**/*.component.css

# Typedoc Theme
extras/docs/themes/typedoc/bin
extras/docs/themes/sassdoc/node_modules
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"ig-typedoc-theme": "^6.0.0",
"igniteui-dockmanager": "^1.16.1",
"igniteui-sassdoc-theme": "^1.2.3",
"igniteui-webcomponents": "5.3.0",
"igniteui-webcomponents": "6.0.0",
"jasmine": "^5.6.0",
"jasmine-core": "^5.6.0",
"karma": "^6.4.4",
Expand Down
4 changes: 2 additions & 2 deletions src/app/stepper/stepper.sample.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
IgcButtonComponent,
IgcInputComponent,
registerIconFromText,
IgcActiveStepChangingArgs,
IgcActiveStepChangingEventArgs,
} from 'igniteui-webcomponents';
import {
Properties,
Expand Down Expand Up @@ -318,7 +318,7 @@ export class IgxStepperSampleComponent {

// Handle changes from Web Component Stepper
public onWcStepperChange(
event: CustomEvent<IgcActiveStepChangingArgs>
event: CustomEvent<IgcActiveStepChangingEventArgs>
): void {
if (this.isSyncing) return;

Expand Down
15 changes: 7 additions & 8 deletions src/app/tabs-showcase/tabs-showcase.sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,17 @@
[activation]="properties.activation">

@for (contact of contacts; track contact.id) {
<igc-tab [selected]="contact.id === selectedTabId" [panel]="contact.i">
@if(!properties.hideIcon) {
<igx-icon>folder</igx-icon>
<igc-tab [disabled]="properties.disabled" [selected]="contact.id === selectedTabId" [panel]="contact.i">
@if (!properties.hideIcon) {
<igc-icon name="folder" slot="label"></igc-icon>
}
@if(!properties.hideText) {
<span>{{ contact.text }}</span>

@if (!properties.hideText) {
<span slot="label">{{ contact.text }}</span>
}
</igc-tab>

<igc-tab-panel [id]="contact.id">
Phone: {{ contact.phone }}
</igc-tab-panel>
</igc-tab>
}
</igc-tabs>
</div>
Expand Down
15 changes: 13 additions & 2 deletions src/app/tabs-showcase/tabs-showcase.sample.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,25 @@ import {
defineComponents,
IgcTabsComponent,
IgcTabComponent,
IgcTabPanelComponent,
registerIconFromText
} from 'igniteui-webcomponents';
import {
PropertyChangeService,
Properties,
} from '../properties-panel/property-change.service';

defineComponents(IgcTabsComponent, IgcTabComponent, IgcTabPanelComponent);
defineComponents(IgcTabsComponent, IgcTabComponent);

const icons = [
{
name: 'folder',
url: '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640v400q0 33-23.5 56.5T800-160H160Z"/></svg>'
}
];

icons.forEach((icon) => {
registerIconFromText(icon.name, icon.url);
});

@Component({
selector: 'app-tabs-showcase-sample',
Expand Down
Loading