@tekkare/auriga 0.2.206 → 0.2.207

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
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.0.0"
6
6
  },
7
- "version": "0.2.206"
7
+ "version": "0.2.207"
8
8
  }
@@ -19,7 +19,10 @@
19
19
  :key="index"
20
20
  :for="tabs[0].label + index"
21
21
  class="labels_container hover_container"
22
- :class="index === activeTab ? 'active' : ''"
22
+ :class="{
23
+ active: index === activeTab,
24
+ 'show-separator': index !== activeTab && index !== activeTab - 1 && index !== tabs.length - 1
25
+ }"
23
26
  >
24
27
  <div
25
28
  ref="buttonContents"
@@ -108,7 +111,7 @@ export default defineComponent({
108
111
  return { width: "0", left: "0", height: "0" };
109
112
  }
110
113
  const width = `${activeButton.clientWidth + 16}px`;
111
- const height = `${el.value.clientHeight - 6}px`;
114
+ const height = `${el.value.clientHeight - 10}px`;
112
115
  return {
113
116
  width,
114
117
  left: `${left}px`,
@@ -172,5 +175,5 @@ export default defineComponent({
172
175
  </script>
173
176
 
174
177
  <style scoped>
175
- .wrapper{background:rgba(82,86,112,.04);border:1px solid rgba(82,86,112,.1);border-radius:8px;padding:2px}.toggle_radio{background:hsla(0,0%,100%,.1);position:relative}.toggle_radio>*{float:left}.toggle_radio input[type=radio]{display:none}.toggle_radio label{color:var(--Main-Dark,#525670);cursor:pointer;display:block;font-family:Figtree;font-size:14px;font-weight:500;margin:3px;padding:2px 6px;text-align:center;transition:color .3s ease,font-weight .3s ease;z-index:20}.toggle_radio label.active{color:#fff;font-weight:600}.toggle_radio label.active svg{color:#fff!important}.toggle_option_slider{background:var(--primary,#2176ff);border:none;border-radius:6px;box-shadow:0 1px 3px 0 rgba(33,118,255,.3);position:absolute;transition:all .4s ease}.labels_container{align-self:center;height:100%}.hover_container:not(.active):hover,.hover_container:not(.active):hover svg{color:var(--primary)!important}.icon_replacement-div{height:24px;margin:0;padding:0;width:0}.button_label{z-index:2}.icon_div{align-items:center;display:flex;height:24px;justify-content:center;z-index:2}
178
+ .wrapper{background:#fff;border:1px solid var(--light,#dbdef0);border-radius:8px;padding:4px}.toggle_radio{background:hsla(0,0%,100%,.1);position:relative}.toggle_radio>*{float:left}.toggle_radio input[type=radio]{display:none}.toggle_radio label{color:var(--Main-Dark,#525670);cursor:pointer;display:block;font-family:Figtree;font-size:14px;font-weight:500;margin:3px;padding:2px 6px;text-align:center;transition:color .3s ease,font-weight .3s ease;z-index:20}.toggle_radio label.active{color:var(--primary,#2176ff);font-weight:600}.toggle_radio label.active svg{color:var(--primary,#2176ff)!important}.toggle_option_slider{background:rgba(33,118,255,.08);border:1px solid rgba(33,118,255,.25);border-radius:6px;box-shadow:none;position:absolute;transition:all .4s ease}.labels_container{align-self:center;height:100%;position:relative}.labels_container.show-separator:after{background:var(--light,#dbdef0);content:"";height:60%;position:absolute;right:-3px;top:20%;width:1px}.hover_container:not(.active):hover,.hover_container:not(.active):hover svg{color:var(--primary)!important}.icon_replacement-div{height:24px;margin:0;padding:0;width:0}.button_label{z-index:2}.icon_div{align-items:center;display:flex;height:24px;justify-content:center;z-index:2}
176
179
  </style>
@@ -210,12 +210,7 @@ export default defineComponent({
210
210
  };
211
211
  if (field.startsWith("sources.")) {
212
212
  filters.push({
213
- nested: {
214
- path: "sources",
215
- query: {
216
- terms: term
217
- }
218
- }
213
+ terms: term
219
214
  });
220
215
  } else {
221
216
  filters.push({
@@ -230,13 +225,8 @@ export default defineComponent({
230
225
  }
231
226
  });
232
227
  filters.push({
233
- nested: {
234
- path: "sources",
235
- query: {
236
- terms: {
237
- "sources.source_id.keyword": uuids
238
- }
239
- }
228
+ terms: {
229
+ "sources.source_id.keyword": uuids
240
230
  }
241
231
  });
242
232
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.206",
3
+ "version": "0.2.207",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",