Skip to content

Commit fee9454

Browse files
authored
Merge pull request UiPath#40 from UiPath/fix/package_exports
Refactor / export components and directives as separate modules in order to enable treeshaking for consumers
2 parents d7863ba + 0a76773 commit fee9454

File tree

143 files changed

+295
-239
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+295
-239
lines changed

projects/angular/_uipath-angular.theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@import "./components/src/ui-suggest/ui-suggest.theme";
2-
@import "./components/src/ui-grid/ui-grid.theme";
1+
@import "./components/ui-suggest/src/ui-suggest.theme";
2+
@import "./components/ui-grid/src/ui-grid.theme";
33

44
@mixin uipath-angular-theme($theme) {
55
@include ui-suggest-theme($theme);

projects/angular/components/src/public_api.ts

Lines changed: 0 additions & 30 deletions
This file was deleted.

projects/angular/components/src/ui-grid/body/ui-grid-column.directive.spec.ts renamed to projects/angular/components/ui-grid/src/body/ui-grid-column.directive.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import {
2-
Component,
3-
ViewChild,
2+
Component,
3+
ViewChild,
44
} from '@angular/core';
55
import {
6-
ComponentFixture,
7-
TestBed,
6+
ComponentFixture,
7+
TestBed,
88
} from '@angular/core/testing';
9-
import { UiGridModule } from '@uipath/angular/components';
9+
import { UiGridModule } from '@uipath/angular/components/ui-grid';
1010

1111
import * as faker from 'faker';
1212
import {
13-
finalize,
14-
take,
13+
finalize,
14+
take,
1515
} from 'rxjs/operators';
1616

1717
import { UiGridColumnDirective } from './ui-grid-column.directive';

0 commit comments

Comments
 (0)