create design system categories components
This commit is contained in:
parent
2d4161ed40
commit
4a8c7d2a4b
85 changed files with 701 additions and 1 deletions
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/breadcrumbs/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/breadcrumbs/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
<p>checkbox works!</p>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Checkbox } from './checkbox';
|
||||
|
||||
describe('Checkbox', () => {
|
||||
let component: Checkbox;
|
||||
let fixture: ComponentFixture<Checkbox>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Checkbox]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Checkbox);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/buttons/checkbox/checkbox.ts
Normal file
11
my-workspace/projects/sae-lib/buttons/checkbox/checkbox.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-checkbox',
|
||||
imports: [],
|
||||
templateUrl: './checkbox.html',
|
||||
styleUrl: './checkbox.css'
|
||||
})
|
||||
export class Checkbox {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/buttons/index/index.css
Normal file
0
my-workspace/projects/sae-lib/buttons/index/index.css
Normal file
1
my-workspace/projects/sae-lib/buttons/index/index.html
Normal file
1
my-workspace/projects/sae-lib/buttons/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/buttons/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/buttons/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/buttons/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/buttons/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/buttons/radio/radio.css
Normal file
0
my-workspace/projects/sae-lib/buttons/radio/radio.css
Normal file
1
my-workspace/projects/sae-lib/buttons/radio/radio.html
Normal file
1
my-workspace/projects/sae-lib/buttons/radio/radio.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>radio works!</p>
|
23
my-workspace/projects/sae-lib/buttons/radio/radio.spec.ts
Normal file
23
my-workspace/projects/sae-lib/buttons/radio/radio.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Radio } from './radio';
|
||||
|
||||
describe('Radio', () => {
|
||||
let component: Radio;
|
||||
let fixture: ComponentFixture<Radio>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Radio]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Radio);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/buttons/radio/radio.ts
Normal file
11
my-workspace/projects/sae-lib/buttons/radio/radio.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-radio',
|
||||
imports: [],
|
||||
templateUrl: './radio.html',
|
||||
styleUrl: './radio.css'
|
||||
})
|
||||
export class Radio {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/colours/index/index.css
Normal file
0
my-workspace/projects/sae-lib/colours/index/index.css
Normal file
1
my-workspace/projects/sae-lib/colours/index/index.html
Normal file
1
my-workspace/projects/sae-lib/colours/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/colours/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/colours/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/colours/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/colours/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/dropdown/index/index.css
Normal file
0
my-workspace/projects/sae-lib/dropdown/index/index.css
Normal file
1
my-workspace/projects/sae-lib/dropdown/index/index.html
Normal file
1
my-workspace/projects/sae-lib/dropdown/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/dropdown/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/dropdown/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/dropdown/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/dropdown/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/effects/index/index.css
Normal file
0
my-workspace/projects/sae-lib/effects/index/index.css
Normal file
1
my-workspace/projects/sae-lib/effects/index/index.html
Normal file
1
my-workspace/projects/sae-lib/effects/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/effects/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/effects/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/effects/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/effects/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/icons/index/index.css
Normal file
0
my-workspace/projects/sae-lib/icons/index/index.css
Normal file
1
my-workspace/projects/sae-lib/icons/index/index.html
Normal file
1
my-workspace/projects/sae-lib/icons/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/icons/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/icons/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/icons/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/icons/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/inbox/index/index.css
Normal file
0
my-workspace/projects/sae-lib/inbox/index/index.css
Normal file
1
my-workspace/projects/sae-lib/inbox/index/index.html
Normal file
1
my-workspace/projects/sae-lib/inbox/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/inbox/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/inbox/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/inbox/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/inbox/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/inputs/index/index.css
Normal file
0
my-workspace/projects/sae-lib/inputs/index/index.css
Normal file
1
my-workspace/projects/sae-lib/inputs/index/index.html
Normal file
1
my-workspace/projects/sae-lib/inputs/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/inputs/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/inputs/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/inputs/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/inputs/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/layouts/index/index.css
Normal file
0
my-workspace/projects/sae-lib/layouts/index/index.css
Normal file
1
my-workspace/projects/sae-lib/layouts/index/index.html
Normal file
1
my-workspace/projects/sae-lib/layouts/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/layouts/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/layouts/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/layouts/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/layouts/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/popups/index/index.css
Normal file
0
my-workspace/projects/sae-lib/popups/index/index.css
Normal file
1
my-workspace/projects/sae-lib/popups/index/index.html
Normal file
1
my-workspace/projects/sae-lib/popups/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/popups/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/popups/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/popups/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/popups/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/popups/tooltip/tooltip.css
Normal file
0
my-workspace/projects/sae-lib/popups/tooltip/tooltip.css
Normal file
|
@ -0,0 +1 @@
|
|||
<p>tooltip works!</p>
|
23
my-workspace/projects/sae-lib/popups/tooltip/tooltip.spec.ts
Normal file
23
my-workspace/projects/sae-lib/popups/tooltip/tooltip.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Tooltip } from './tooltip';
|
||||
|
||||
describe('Tooltip', () => {
|
||||
let component: Tooltip;
|
||||
let fixture: ComponentFixture<Tooltip>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Tooltip]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Tooltip);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/popups/tooltip/tooltip.ts
Normal file
11
my-workspace/projects/sae-lib/popups/tooltip/tooltip.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-tooltip',
|
||||
imports: [],
|
||||
templateUrl: './tooltip.html',
|
||||
styleUrl: './tooltip.css'
|
||||
})
|
||||
export class Tooltip {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/radius/index/index.css
Normal file
0
my-workspace/projects/sae-lib/radius/index/index.css
Normal file
1
my-workspace/projects/sae-lib/radius/index/index.html
Normal file
1
my-workspace/projects/sae-lib/radius/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/radius/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/radius/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/radius/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/radius/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/strokes/index/index.css
Normal file
0
my-workspace/projects/sae-lib/strokes/index/index.css
Normal file
1
my-workspace/projects/sae-lib/strokes/index/index.html
Normal file
1
my-workspace/projects/sae-lib/strokes/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/strokes/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/strokes/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/strokes/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/strokes/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/tabs/index/index.css
Normal file
0
my-workspace/projects/sae-lib/tabs/index/index.css
Normal file
1
my-workspace/projects/sae-lib/tabs/index/index.html
Normal file
1
my-workspace/projects/sae-lib/tabs/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/tabs/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/tabs/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/tabs/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/tabs/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/tags/badges/badges.css
Normal file
0
my-workspace/projects/sae-lib/tags/badges/badges.css
Normal file
1
my-workspace/projects/sae-lib/tags/badges/badges.html
Normal file
1
my-workspace/projects/sae-lib/tags/badges/badges.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>badges works!</p>
|
23
my-workspace/projects/sae-lib/tags/badges/badges.spec.ts
Normal file
23
my-workspace/projects/sae-lib/tags/badges/badges.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Badges } from './badges';
|
||||
|
||||
describe('Badges', () => {
|
||||
let component: Badges;
|
||||
let fixture: ComponentFixture<Badges>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Badges]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Badges);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/tags/badges/badges.ts
Normal file
11
my-workspace/projects/sae-lib/tags/badges/badges.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-badges',
|
||||
imports: [],
|
||||
templateUrl: './badges.html',
|
||||
styleUrl: './badges.css'
|
||||
})
|
||||
export class Badges {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/tags/index/index.css
Normal file
0
my-workspace/projects/sae-lib/tags/index/index.css
Normal file
1
my-workspace/projects/sae-lib/tags/index/index.html
Normal file
1
my-workspace/projects/sae-lib/tags/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/tags/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/tags/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/tags/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/tags/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
0
my-workspace/projects/sae-lib/toggles/index/index.css
Normal file
0
my-workspace/projects/sae-lib/toggles/index/index.css
Normal file
1
my-workspace/projects/sae-lib/toggles/index/index.html
Normal file
1
my-workspace/projects/sae-lib/toggles/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/toggles/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/toggles/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/toggles/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/toggles/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"translate-texts/**/*.ts"
|
||||
"inbox/translate-texts/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"**/*.spec.ts"
|
||||
|
|
0
my-workspace/projects/sae-lib/typo/index/index.css
Normal file
0
my-workspace/projects/sae-lib/typo/index/index.css
Normal file
1
my-workspace/projects/sae-lib/typo/index/index.html
Normal file
1
my-workspace/projects/sae-lib/typo/index/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>index works!</p>
|
23
my-workspace/projects/sae-lib/typo/index/index.spec.ts
Normal file
23
my-workspace/projects/sae-lib/typo/index/index.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Index } from './index';
|
||||
|
||||
describe('Index', () => {
|
||||
let component: Index;
|
||||
let fixture: ComponentFixture<Index>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Index]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Index);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/typo/index/index.ts
Normal file
11
my-workspace/projects/sae-lib/typo/index/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-index',
|
||||
imports: [],
|
||||
templateUrl: './index.html',
|
||||
styleUrl: './index.css'
|
||||
})
|
||||
export class Index {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue