1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
import { experimentOn } from '@islavi/ng2-component-lab';
const valueChange = (value: any): void => {
console.log('The value was changed! >>>>', value);
};
export default experimentOn('Input')
.group("Input",[
{
id: 'normalInput',
showSource: true,
title: 'Normal input',
description: 'Normal input',
template: `
<sdc-input label="Please Enter value" name="myValue" testId="myTestId"></sdc-input>
`
},
{
id: 'disabledInput',
showSource: true,
title: 'Disabled input',
description: 'Disabled input',
template: `
<sdc-input [disabled]="true"></sdc-input>
`
},
{
id: 'InputTypeNumber',
showSource: true,
title: 'Input type number',
description: 'Input type number',
template: `
<sdc-input type='number'></sdc-input>
`
},
{
id: 'Input required',
title: 'Input required',
description: 'Input required (this add red * to the label, but does not perform validation, use sdc-validation for validation)',
showSource: true,
template: `
<sdc-input label="Please Enter Value" required="true" [maxLength]="5"></sdc-input>
`
},
{
id: 'inputWithMaxLength',
title: 'Input with max length',
description: 'Input with max length',
showSource: true,
template: `
<sdc-input [maxLength]="5"></sdc-input>
`
},
{
id: 'inputWithPlaceholder',
title: 'Input with placeholder, custom class, and tests ID',
description: 'Input with placeholder',
showSource: true,
template: `
<sdc-input placeHolder="Text..." [classNames]="'my-custom-class another-class'" [testId]="'customTestId'"></sdc-input>
`
},
{
id: 'inputWithDebounce',
title: 'Input with debounce time',
description: `<pre>On value change event code:
const valueChange = (value: any): void => {
console.log('The value was changed! >>>>', value);
};
This event will happen 5 sec after the change
</pre>`,
showSource: true,
context: {
changeEvent: valueChange
},
template: `
<sdc-input [debounceTime]="5000" (valueChange)="changeEvent($event)"></sdc-input>
`
}]);
|