inviton-powerduck 0.0.215 → 0.0.217
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.
|
@@ -1,53 +1,59 @@
|
|
|
1
1
|
.pd-radio-button-enhanced-group,
|
|
2
|
-
.pd-radio-button-enhanced-group
|
|
3
|
-
.pd-radio-button-enhanced-group
|
|
4
|
-
|
|
2
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap,
|
|
3
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio {
|
|
4
|
+
width: 100%;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.pd-radio-button-enhanced-group
|
|
8
|
-
|
|
7
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio {
|
|
8
|
+
padding: 0;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.pd-radio-button-enhanced-group
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio.form-check .form-check-input {
|
|
12
|
+
float: none;
|
|
13
|
+
margin: 0;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.pd-radio-button-enhanced-group
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
16
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio > .inv-cbrb-inner {
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
padding: 0 14px;
|
|
21
|
+
border: 1px solid #e5e7eb;
|
|
22
|
+
border-radius: 6px;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
transition: all 0.2s;
|
|
25
|
+
width: 100%;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
.pd-radio-button-enhanced-group
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio.inv-selected > .inv-cbrb-inner {
|
|
29
|
+
border-color: #2b55cc;
|
|
30
|
+
background: #eff6ff;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
.pd-radio-button-enhanced-group
|
|
34
|
-
|
|
35
|
-
padding-left: 14px;
|
|
33
|
+
.pd-radio-button-enhanced-group > .radio-group-wrap > .inv-mdfw-radio > .inv-cbrb-inner .form-check-label {
|
|
34
|
+
padding-left: 14px;
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
.pd-radio-item-extended {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: space-between;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.pd-radio-item-extended .pd-radio-item-extended-name-wrapper {
|
|
44
|
+
height: 48px;
|
|
45
|
+
display: flex;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
flex-direction: column;
|
|
42
48
|
}
|
|
43
49
|
|
|
44
50
|
.pd-radio-item-extended-thumb,
|
|
45
51
|
.pd-radio-item-extended-thumb img {
|
|
46
|
-
|
|
52
|
+
height: 20px;
|
|
47
53
|
}
|
|
48
54
|
|
|
49
55
|
.pd-radio-item-extended-subtitle {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
56
|
+
font-size: 12px;
|
|
57
|
+
color: #6b7280;
|
|
58
|
+
margin-top: -3px;
|
|
59
|
+
}
|
|
@@ -42,6 +42,7 @@ export enum ModalSize {
|
|
|
42
42
|
ExtraLarge = 3,
|
|
43
43
|
FullWidth = 4,
|
|
44
44
|
NormalToLarge = 5,
|
|
45
|
+
SmallToNormal = 6,
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
export enum ModalHeaderIcon {
|
|
@@ -104,6 +105,8 @@ class ModalComponent extends TsxComponent<ModalArgs> implements ModalArgs {
|
|
|
104
105
|
return ' modal-fw';
|
|
105
106
|
} else if (this.size == ModalSize.NormalToLarge) {
|
|
106
107
|
return ' modal-ntl';
|
|
108
|
+
} else if (this.size == ModalSize.SmallToNormal) {
|
|
109
|
+
return ' modal-stn';
|
|
107
110
|
} else {
|
|
108
111
|
return '';
|
|
109
112
|
}
|