@apipass/modals 1.0.38 → 1.0.40
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/modals.scss +88 -0
- package/package.json +4 -4
package/assets/css/modals.scss
CHANGED
|
@@ -176,3 +176,91 @@
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
|
+
|
|
180
|
+
.primary-modal {
|
|
181
|
+
box-shadow: 0 0 20px 0 #454545;
|
|
182
|
+
|
|
183
|
+
.modal-title {
|
|
184
|
+
display: flex;
|
|
185
|
+
justify-content: center;
|
|
186
|
+
align-items: center;
|
|
187
|
+
background: var(--color-primary);
|
|
188
|
+
color: #FFF;
|
|
189
|
+
padding: 7.5px;
|
|
190
|
+
width: 100%;
|
|
191
|
+
overflow: hidden;
|
|
192
|
+
|
|
193
|
+
h3 {
|
|
194
|
+
display: flex;
|
|
195
|
+
justify-content: center;
|
|
196
|
+
align-items: center;
|
|
197
|
+
color: #FFF;
|
|
198
|
+
width: calc(100% - 35px);
|
|
199
|
+
overflow: hidden;
|
|
200
|
+
white-space: nowrap;
|
|
201
|
+
text-overflow: ellipsis;
|
|
202
|
+
text-align: center;
|
|
203
|
+
flex-shrink: initial;
|
|
204
|
+
margin: 0;
|
|
205
|
+
padding: 0;
|
|
206
|
+
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
|
207
|
+
font-weight: bold;
|
|
208
|
+
font-size: $base-font-size + 1px;
|
|
209
|
+
letter-spacing: normal;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
> icon {
|
|
213
|
+
color: #FFF;
|
|
214
|
+
right: 10px !important;
|
|
215
|
+
top: 10px;
|
|
216
|
+
|
|
217
|
+
i {
|
|
218
|
+
color: #FFF;
|
|
219
|
+
height: 19px;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
> .modal-title-actions {
|
|
224
|
+
display: flex;
|
|
225
|
+
justify-content: center;
|
|
226
|
+
align-items: center;
|
|
227
|
+
gap: 10px;
|
|
228
|
+
color: #FFF;
|
|
229
|
+
right: 15px !important;
|
|
230
|
+
top: 15px !important;
|
|
231
|
+
|
|
232
|
+
icon {
|
|
233
|
+
color: #FFF;
|
|
234
|
+
|
|
235
|
+
i {
|
|
236
|
+
color: #FFF;
|
|
237
|
+
height: 19px;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.modal-actions {
|
|
244
|
+
display: flex;
|
|
245
|
+
|
|
246
|
+
.buttons-actions {
|
|
247
|
+
display: flex;
|
|
248
|
+
gap: 5px;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.mdc-dialog__container {
|
|
253
|
+
margin: 0 !important;
|
|
254
|
+
overflow: hidden !important;
|
|
255
|
+
|
|
256
|
+
.mat-mdc-dialog-surface {
|
|
257
|
+
overflow: hidden !important;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.mat-mdc-dialog-content {
|
|
262
|
+
padding: 10px 15px 20px 20px !important;
|
|
263
|
+
margin: 0 !important;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apipass/modals",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "16.0.2",
|
|
6
6
|
"@angular/cdk": "16.0.1",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@angular/material": "16.0.1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@apipass/buttons": "1.0.
|
|
14
|
-
"@apipass/icons": "1.0.
|
|
15
|
-
"@apipass/inputs": "1.0.
|
|
13
|
+
"@apipass/buttons": "1.0.38",
|
|
14
|
+
"@apipass/icons": "1.0.38",
|
|
15
|
+
"@apipass/inputs": "1.0.38",
|
|
16
16
|
"tslib": "2.5.2"
|
|
17
17
|
},
|
|
18
18
|
"overrides": {
|