@tekkare/auriga 0.1.33 → 0.1.35
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/dist/module.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
:class="[
|
|
3
|
+
:class="[
|
|
4
|
+
fullWidth ? 'full_width' : 'fit_width',
|
|
5
|
+
`oip_${btnStyle}_shadow`,
|
|
6
|
+
`oip_btn_${size}`,
|
|
7
|
+
]"
|
|
4
8
|
>
|
|
5
9
|
<span
|
|
6
10
|
v-if="onlyIcon === false"
|
|
7
11
|
:class="
|
|
8
|
-
`oip_${btnStyle}_button oip_btn
|
|
12
|
+
`oip_${btnStyle}_button oip_btn ` +
|
|
9
13
|
[becomeSmall === true ? 'prmt_button_big ' : ''] +
|
|
10
14
|
[fullWidth === true ? 'oip_full_btn ' : ''] +
|
|
11
15
|
[round === true ? 'oip_round_btn' : '']
|
|
@@ -126,7 +126,6 @@ export default defineComponent({
|
|
|
126
126
|
flex-direction: row;
|
|
127
127
|
align-items: flex-start;
|
|
128
128
|
flex-wrap: wrap;
|
|
129
|
-
justify-content: space-between;
|
|
130
129
|
gap: 16px;
|
|
131
130
|
}
|
|
132
131
|
|
|
@@ -136,8 +135,9 @@ export default defineComponent({
|
|
|
136
135
|
gap: 8px;
|
|
137
136
|
}
|
|
138
137
|
|
|
139
|
-
.
|
|
138
|
+
.radio_item {
|
|
140
139
|
padding: 6px;
|
|
141
140
|
flex: 1 1 0;
|
|
141
|
+
max-width: 236px;
|
|
142
142
|
}
|
|
143
143
|
</style>
|
|
@@ -179,7 +179,7 @@ button {
|
|
|
179
179
|
font-weight: 500;
|
|
180
180
|
font-size: 14px;
|
|
181
181
|
line-height: 160%;
|
|
182
|
-
color: var(--
|
|
182
|
+
color: var(--primary);
|
|
183
183
|
}
|
|
184
184
|
.oip_body {
|
|
185
185
|
font-style: normal;
|
|
@@ -319,19 +319,23 @@ button {
|
|
|
319
319
|
mask-image: paint(squircle);
|
|
320
320
|
--squircle-radius: 8px;
|
|
321
321
|
--squircle-smooth: 1;
|
|
322
|
+
height: 100%;
|
|
322
323
|
}
|
|
323
324
|
|
|
324
325
|
.oip_primary-fill_shadow {
|
|
326
|
+
background: transparent;
|
|
325
327
|
box-shadow: var(--primary-button-shadow) !important;
|
|
326
328
|
border-radius: 8px;
|
|
327
329
|
}
|
|
328
330
|
.oip_secondary-fill_shadow {
|
|
329
331
|
box-shadow: var(--secondary-button-shadow) !important;
|
|
330
332
|
border-radius: 8px;
|
|
333
|
+
background: transparent;
|
|
331
334
|
}
|
|
332
335
|
.oip_warning-fill_shadow {
|
|
333
336
|
box-shadow: var(--warning-button-shadow) !important;
|
|
334
337
|
border-radius: 8px;
|
|
338
|
+
background: transparent;
|
|
335
339
|
}
|
|
336
340
|
.oip_success-fill_shadow {
|
|
337
341
|
box-shadow: var(--success-button-shadow) !important;
|
|
@@ -844,7 +848,7 @@ button {
|
|
|
844
848
|
/*** CARD ***/
|
|
845
849
|
/* CARD */
|
|
846
850
|
.oip_card {
|
|
847
|
-
padding:
|
|
851
|
+
padding: 24px;
|
|
848
852
|
border-radius: 12px;
|
|
849
853
|
background: var(--pure-white);
|
|
850
854
|
box-shadow: var(--container-shadow);
|
|
@@ -852,11 +856,10 @@ button {
|
|
|
852
856
|
}
|
|
853
857
|
|
|
854
858
|
.oip_table_card {
|
|
855
|
-
padding:
|
|
859
|
+
padding: 24px 0px 0px 0px;
|
|
856
860
|
border-radius: 12px;
|
|
857
861
|
background: var(--pure-white);
|
|
858
862
|
box-shadow: var(--container-shadow);
|
|
859
|
-
margin: 8px 0;
|
|
860
863
|
}
|
|
861
864
|
|
|
862
865
|
.oip_half_card {
|