@tekkare/auriga 0.2.122 → 0.2.124
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
|
@@ -34,31 +34,33 @@
|
|
|
34
34
|
>{{ langData?.new }}</arg-btn
|
|
35
35
|
>
|
|
36
36
|
</div>
|
|
37
|
-
<div
|
|
38
|
-
v-for="(element, index) of scopes"
|
|
39
|
-
:key="index"
|
|
40
|
-
class="oip_select_complex_selection_loop"
|
|
41
|
-
@click="selectScope(element)"
|
|
42
|
-
>
|
|
43
|
-
<arg-icon
|
|
44
|
-
:class="selectedScope?.id === element.id ? 'add' : ''"
|
|
45
|
-
:color="
|
|
46
|
-
selectedScope?.id === element.id
|
|
47
|
-
? 'var(--primary)'
|
|
48
|
-
: 'var(--medium)'
|
|
49
|
-
"
|
|
50
|
-
size="16"
|
|
51
|
-
:name="
|
|
52
|
-
selectedScope?.id === element.id ? 'CircleSelectFill' : 'Circle'
|
|
53
|
-
"
|
|
54
|
-
/>
|
|
37
|
+
<div class="oip_scope_list">
|
|
55
38
|
<div
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
39
|
+
v-for="(element, index) of scopes"
|
|
40
|
+
:key="index"
|
|
41
|
+
class="oip_select_complex_selection_loop"
|
|
42
|
+
@click="selectScope(element)"
|
|
60
43
|
>
|
|
61
|
-
|
|
44
|
+
<arg-icon
|
|
45
|
+
:class="selectedScope?.id === element.id ? 'add' : ''"
|
|
46
|
+
:color="
|
|
47
|
+
selectedScope?.id === element.id
|
|
48
|
+
? 'var(--primary)'
|
|
49
|
+
: 'var(--medium)'
|
|
50
|
+
"
|
|
51
|
+
size="16"
|
|
52
|
+
:name="
|
|
53
|
+
selectedScope?.id === element.id ? 'CircleSelectFill' : 'Circle'
|
|
54
|
+
"
|
|
55
|
+
/>
|
|
56
|
+
<div
|
|
57
|
+
:class="[
|
|
58
|
+
'oip_select_complex_selection_loop_name',
|
|
59
|
+
selectedScope?.id === element.id ? 'add' : 'del',
|
|
60
|
+
]"
|
|
61
|
+
>
|
|
62
|
+
{{ element.title }}
|
|
63
|
+
</div>
|
|
62
64
|
</div>
|
|
63
65
|
</div>
|
|
64
66
|
</div>
|
|
@@ -208,5 +210,5 @@ export default defineComponent({
|
|
|
208
210
|
</script>
|
|
209
211
|
|
|
210
212
|
<style scoped>
|
|
211
|
-
.scope_select_dropdown_block{background:var(--demi-fond);border:1.5px solid var(--light);border-radius:12px;box-shadow:var(--overlay-shadow);display:flex;flex-direction:column;margin-top:15px;padding:16px;position:absolute;right:0;width:-moz-max-content;width:max-content;z-index:99!important}.scope_change_display{position:relative}.oip_select_complex_selection_loop>svg.add{color:var(--primary)!important}.oip_select_complex_selection_loop.disabled_option:hover svg,.oip_select_complex_selection_loop>svg.disable{color:var(--darkest)!important}.oip_select_complex_selection_loop:hover>svg.add{color:var(--primary-hover)!important}.oip_select_complex_selection_loop:hover svg{color:var(--primary)!important}.oip_select_complex_selection_loop .add{font-weight:700!important}.oip_select_complex_selection_loop:hover{background:rgba(33,118,255,.05)!important;border-radius:4px!important}.oip_select_complex_selection_loop{padding:2px 4px}.oip_select_complex_selection_loop.disabled_option:hover{background:transparent!important}.oip_select_complex_selection_loop{margin:4px 0!important}svg.add{flex-shrink:0}.my-4{margin:4px 0}.full_width{width:100%}
|
|
213
|
+
.scope_select_dropdown_block{background:var(--demi-fond);border:1.5px solid var(--light);border-radius:12px;box-shadow:var(--overlay-shadow);display:flex;flex-direction:column;margin-top:15px;padding:16px;position:absolute;right:0;width:-moz-max-content;width:max-content;z-index:99!important}.oip_scope_list{max-height:300px;overflow-y:scroll}.oip_scope_list::-webkit-scrollbar{height:5px;width:5px}.oip_scope_list::-webkit-scrollbar-thumb{background:var(--medium);border-radius:12px!important}.oip_scope_list::-webkit-scrollbar-thumb:hover{background:var(--medium)!important}.scope_change_display{position:relative}.oip_select_complex_selection_loop>svg.add{color:var(--primary)!important}.oip_select_complex_selection_loop.disabled_option:hover svg,.oip_select_complex_selection_loop>svg.disable{color:var(--darkest)!important}.oip_select_complex_selection_loop:hover>svg.add{color:var(--primary-hover)!important}.oip_select_complex_selection_loop:hover svg{color:var(--primary)!important}.oip_select_complex_selection_loop .add{font-weight:700!important}.oip_select_complex_selection_loop:hover{background:rgba(33,118,255,.05)!important;border-radius:4px!important}.oip_select_complex_selection_loop{padding:2px 4px}.oip_select_complex_selection_loop.disabled_option:hover{background:transparent!important}.oip_select_complex_selection_loop{margin:4px 0!important}svg.add{flex-shrink:0}.my-4{margin:4px 0}.full_width{width:100%}
|
|
212
214
|
</style>
|
|
@@ -102,5 +102,5 @@ const drawSquircle=(ctx,geom,radii,smooth,lineWidth,color)=>{const defaultFill=c
|
|
|
102
102
|
</script>
|
|
103
103
|
|
|
104
104
|
<style>
|
|
105
|
-
.prmt_switch_pause{vertical-align:baseline!important;fill:var(--light)!important;color:var(--light)!important;margin:0 0 5% 11%;stroke-width:0px!important}.prmt_switch_text{font-size:14px;font-weight:600;line-height:16px;transition:all .3s ease}.prmt_switch_text.prmt_switch_is_inactive{color:var(--medium)}.prmt_switch_text.prmt_switch_is_active{color:var(--darkest)}.prmt_switch{border-radius:35.7px;height:18px;padding:0 2px;position:relative;transition:all .3s ease;width:36px}.prmt_switch.prmt_switch_is_active,.prmt_switch.prmt_switch_is_inactive{background-color:var(--accent);border:1px solid var(--accent)}.prmt_switch_round.prmt_switch_is_active{left:
|
|
105
|
+
.prmt_switch_pause{vertical-align:baseline!important;fill:var(--light)!important;color:var(--light)!important;margin:0 0 5% 11%;stroke-width:0px!important}.prmt_switch_text{font-size:14px;font-weight:600;line-height:16px;transition:all .3s ease}.prmt_switch_text.prmt_switch_is_inactive{color:var(--medium)}.prmt_switch_text.prmt_switch_is_active{color:var(--darkest)}.prmt_switch{border-radius:35.7px;height:18px;padding:0 2px;position:relative;transition:all .3s ease;width:36px}.prmt_switch.prmt_switch_is_active,.prmt_switch.prmt_switch_is_inactive{background-color:var(--accent);border:1px solid var(--accent)}.prmt_switch_round.prmt_switch_is_active{left:2px}.prmt_switch_round.prmt_switch_is_inactive{transform:translate(128%,50%)}.prmt_switch_round{background-color:var(--white);border:.5px solid var(--white);border-radius:50%;bottom:50%;box-shadow:var(--button-big-shadow);height:15px;position:absolute;transform:translateY(50%);transition:all .3s ease;width:15px}.prmt_parent_switch{align-items:center;background-color:var(--white);border:1.5px solid var(--light);border-radius:8px;cursor:pointer;display:flex;gap:10px;-webkit-mask-image:paint(squircle);mask-image:paint(squircle);padding:10px 17px;width:-moz-fit-content;width:fit-content;--squircle-radius:8px;--squircle-smooth:1}.prmt_parent_switch:focus-within{border:1.5px solid var(--primary)!important;box-shadow:0 0 0 4px rgba(33,118,255,.1)!important}
|
|
106
106
|
</style>
|