@apipass/inputs 1.0.0 → 1.0.1
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/assets/css/inputs.scss +64 -16
- package/esm2020/input-avatar/input-avatar.component.mjs +2 -2
- package/esm2020/input-number/input-number.component.mjs +2 -2
- package/esm2020/input-password/input-password.component.mjs +2 -2
- package/esm2020/input-text/input-text.component.mjs +2 -2
- package/esm2020/select-box/select-box.component.mjs +2 -2
- package/esm2020/select-enum/select-enum.component.mjs +2 -2
- package/fesm2015/apipass-inputs.mjs +12 -12
- package/fesm2015/apipass-inputs.mjs.map +1 -1
- package/fesm2020/apipass-inputs.mjs +12 -12
- package/fesm2020/apipass-inputs.mjs.map +1 -1
- package/package.json +3 -3
- package/assets/css/buttons.scss +0 -118
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apipass/inputs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "15.0.3",
|
|
6
6
|
"@angular/cdk": "15.0.3",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"ace-builds": "1.4.14",
|
|
14
14
|
"brace": "^0.11.1",
|
|
15
15
|
"@angular-material-extensions/password-strength": "12.1.0",
|
|
16
|
-
"@apipass/buttons": "1.0.
|
|
17
|
-
"@apipass/icons": "1.0.
|
|
16
|
+
"@apipass/buttons": "1.0.1",
|
|
17
|
+
"@apipass/icons": "1.0.1",
|
|
18
18
|
"@apipass/pipes": "1.0.0",
|
|
19
19
|
"@ng-select/ng-select": "10.0.4",
|
|
20
20
|
"@ngx-translate/core": "14.0.0",
|
package/assets/css/buttons.scss
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
@import "colors";
|
|
2
|
-
@import "fonts";
|
|
3
|
-
@import "spacing";
|
|
4
|
-
|
|
5
|
-
/* Buttons */
|
|
6
|
-
.apipass-tab-button {
|
|
7
|
-
display: flex !important;
|
|
8
|
-
justify-content: center !important;
|
|
9
|
-
align-items: center !important;
|
|
10
|
-
padding: $spacing-tab-button-top $spacing-tab-button-right $spacing-tab-button-bottom $spacing-tab-button-left !important;
|
|
11
|
-
font-weight: bold;
|
|
12
|
-
font-size: $base-font-size - 2px;
|
|
13
|
-
border-radius: 6px 6px 0 0 !important;
|
|
14
|
-
.mat-button-wrapper, .mat-icon, .button-text {
|
|
15
|
-
display: flex;
|
|
16
|
-
justify-content: center;
|
|
17
|
-
align-items: center;
|
|
18
|
-
}
|
|
19
|
-
.apipass-btn-icon-text {
|
|
20
|
-
padding-right: 10px;
|
|
21
|
-
}
|
|
22
|
-
.apipass-btn-icon-text-suffix {
|
|
23
|
-
padding-left: 10px;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.apipass-btn-default {
|
|
28
|
-
display: flex !important;
|
|
29
|
-
justify-content: center !important;
|
|
30
|
-
align-items: center !important;
|
|
31
|
-
padding: 0 $spacing-button-right 0 $spacing-button-left !important;
|
|
32
|
-
font-weight: bold;
|
|
33
|
-
border-radius: 6px !important;
|
|
34
|
-
.mat-button-wrapper, .mat-icon, .button-text {
|
|
35
|
-
display: flex;
|
|
36
|
-
justify-content: center;
|
|
37
|
-
align-items: center;
|
|
38
|
-
}
|
|
39
|
-
.apipass-btn-icon-text {
|
|
40
|
-
padding-right: 10px;
|
|
41
|
-
}
|
|
42
|
-
.apipass-btn-icon-text-suffix {
|
|
43
|
-
padding-left: 10px;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.apipass-btn-primary {
|
|
48
|
-
background: var(--color-primary);
|
|
49
|
-
color: #FFF;
|
|
50
|
-
&:hover, .hover {
|
|
51
|
-
background: var(--color-primary-hover);
|
|
52
|
-
}
|
|
53
|
-
&:active, .active {
|
|
54
|
-
background: var(--color-primary-active);
|
|
55
|
-
}
|
|
56
|
-
&:disabled, .disabled {
|
|
57
|
-
background: var(--color-tertiary);
|
|
58
|
-
color: var(--color-fonts-tertiary);
|
|
59
|
-
border: 1px px solid var(--color-tertiary-hover);
|
|
60
|
-
cursor: no-drop !important;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.apipass-btn-secondary {
|
|
65
|
-
background: var(--color-secondary);
|
|
66
|
-
color: var(--color-primary);
|
|
67
|
-
&:hover, .hover {
|
|
68
|
-
background: var(--color-secondary-hover);
|
|
69
|
-
}
|
|
70
|
-
&:active, .active {
|
|
71
|
-
background: var(--color-secondary-active);
|
|
72
|
-
}
|
|
73
|
-
&:disabled, .disabled {
|
|
74
|
-
background: var(--color-tertiary);
|
|
75
|
-
color: var(--color-fonts-tertiary);
|
|
76
|
-
border: 1px px solid var(--color-tertiary-hover);
|
|
77
|
-
cursor: no-drop !important;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.apipass-btn-tertiary {
|
|
82
|
-
background: var(--color-tertiary);
|
|
83
|
-
color: var(--color-primary);
|
|
84
|
-
padding: 15px !important;
|
|
85
|
-
border: 1px solid var(--color-tertiary-hover);
|
|
86
|
-
&:hover, .hover {
|
|
87
|
-
background: var(--color-tertiary-hover);
|
|
88
|
-
}
|
|
89
|
-
&:active, .active {
|
|
90
|
-
background: var(--color-tertiary-active);
|
|
91
|
-
}
|
|
92
|
-
&:disabled, .disabled {
|
|
93
|
-
background: var(--color-tertiary);
|
|
94
|
-
color: var(--color-fonts-tertiary);
|
|
95
|
-
border: 1px px solid var(--color-tertiary-hover);
|
|
96
|
-
cursor: no-drop !important;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.apipass-btn-outline {
|
|
101
|
-
color: var(--color-fonts-tertiary);
|
|
102
|
-
&.remove-button {
|
|
103
|
-
color: var(--color-red);
|
|
104
|
-
}
|
|
105
|
-
&:hover, .hover {
|
|
106
|
-
background: var(--color-tertiary-hover);
|
|
107
|
-
}
|
|
108
|
-
&:active, .active {
|
|
109
|
-
background: var(--color-tertiary-active);
|
|
110
|
-
}
|
|
111
|
-
&:disabled, .disabled {
|
|
112
|
-
background: var(--color-tertiary);
|
|
113
|
-
color: var(--color-fonts-tertiary);
|
|
114
|
-
border: 1px px solid var(--color-tertiary-hover);
|
|
115
|
-
cursor: no-drop !important;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|