@rangertechnologies/ngnxt 2.1.281 → 2.1.282
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/rangertechnologies-ngnxt.mjs +54 -29
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-radio/custom-radio.component.d.ts +3 -2
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.282.tgz +0 -0
- package/src/lib/style.css +3 -3
- package/rangertechnologies-ngnxt-2.1.281.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ChangeWrapper } from '../../model/changeWrapper';
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
4
|
import { ChangeService } from '../../services/change/change.service';
|
|
@@ -6,6 +6,7 @@ import { DataService } from '../../services/data/data.service';
|
|
|
6
6
|
import { StorageService } from '../../services/storage/storage.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class CustomRadioComponent implements OnInit {
|
|
9
|
+
private cdRef;
|
|
9
10
|
private changeService;
|
|
10
11
|
private dataService;
|
|
11
12
|
private storageService;
|
|
@@ -30,7 +31,7 @@ export declare class CustomRadioComponent implements OnInit {
|
|
|
30
31
|
originalValue: any;
|
|
31
32
|
value: ChangeWrapper;
|
|
32
33
|
selectedOptionId: any;
|
|
33
|
-
constructor(changeService: ChangeService, dataService: DataService, storageService: StorageService);
|
|
34
|
+
constructor(cdRef: ChangeDetectorRef, changeService: ChangeService, dataService: DataService, storageService: StorageService);
|
|
34
35
|
viewEdit: boolean;
|
|
35
36
|
ngOnInit(): void;
|
|
36
37
|
ngOnChanges(changes: SimpleChanges): void;
|
package/package.json
CHANGED
|
Binary file
|
package/src/lib/style.css
CHANGED
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.questiondiv1{
|
|
48
|
-
padding-left:
|
|
49
|
-
padding-right:
|
|
48
|
+
padding-left: 20px;
|
|
49
|
+
padding-right: 20px;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.questiondiv2{
|
|
@@ -1008,7 +1008,7 @@ select{
|
|
|
1008
1008
|
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
1009
1009
|
-webkit-border-radius: 2px;
|
|
1010
1010
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
1011
|
-
background-color: #
|
|
1011
|
+
background-color: #ffffff;
|
|
1012
1012
|
border-radius: 2px;
|
|
1013
1013
|
border: 1px solid #eeeeee;
|
|
1014
1014
|
box-shadow: none;
|
|
Binary file
|