@tekkare/auriga 0.1.12 → 0.1.14

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.1.12"
7
+ "version": "0.1.14"
8
8
  }
@@ -1,14 +1,15 @@
1
1
  <template>
2
2
  <div
3
- :class="
3
+ :class="[
4
+ disable ? 'disable' : '',
4
5
  actionType === 'download' || actionType === 'see-analysis'
5
6
  ? 'download_action'
6
7
  : actionType === 'cancel' || actionType === 'close'
7
8
  ? 'cancel_action'
8
9
  : actionType === 'scope' || actionType === 'save-analysis'
9
10
  ? 'scope_action'
10
- : ''
11
- "
11
+ : '',
12
+ ]"
12
13
  @click="sendAction()"
13
14
  >
14
15
  <p v-if="!customize">{{ getActionText }}</p>
@@ -22,7 +23,7 @@ import {
22
23
  defineComponent
23
24
  } from "vue";
24
25
  export default defineComponent({
25
- name: "argMultipleSelect",
26
+ name: "argActions",
26
27
  props: {
27
28
  actionType: {
28
29
  type: String,
@@ -36,6 +37,10 @@ export default defineComponent({
36
37
  type: Boolean,
37
38
  default: false
38
39
  },
40
+ disable: {
41
+ type: Boolean,
42
+ default: false
43
+ },
39
44
  lang: {
40
45
  type: String,
41
46
  default: "en",
@@ -144,7 +149,7 @@ export default defineComponent({
144
149
  justify-content: center;
145
150
  align-items: center;
146
151
  gap: var(--s, 8px);
147
- border-radius: 8px;
152
+ border-radius: 16px;
148
153
  background: var(--primary-primary, #2176ff);
149
154
  font-size: 14px;
150
155
  font-style: normal;
@@ -152,4 +157,13 @@ export default defineComponent({
152
157
  line-height: normal;
153
158
  color: var(--pure-white);
154
159
  }
160
+
161
+ .scope_action.disable {
162
+ background: var(--dividers) !important;
163
+ color: var(--wild-blue-yonder) !important;
164
+ }
165
+
166
+ .download_action.disable {
167
+ color: var(--wild-blue-yonder) !important;
168
+ }
155
169
  </style>
@@ -11,6 +11,10 @@ declare const _default: import("vue").DefineComponent<{
11
11
  type: BooleanConstructor;
12
12
  default: boolean;
13
13
  };
14
+ disable: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
14
18
  lang: {
15
19
  type: StringConstructor;
16
20
  default: string;
@@ -32,6 +36,10 @@ declare const _default: import("vue").DefineComponent<{
32
36
  type: BooleanConstructor;
33
37
  default: boolean;
34
38
  };
39
+ disable: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
35
43
  lang: {
36
44
  type: StringConstructor;
37
45
  default: string;
@@ -47,6 +55,7 @@ declare const _default: import("vue").DefineComponent<{
47
55
  }, {
48
56
  customText: string;
49
57
  customize: boolean;
58
+ disable: boolean;
50
59
  lang: string;
51
60
  }, {}>;
52
61
  export default _default;
@@ -37,7 +37,10 @@
37
37
  }}
38
38
  </h1>
39
39
  </div>
40
- <div v-if="!!smart_selection_table" class="oip_select_complex_smart">
40
+ <div
41
+ v-if="smart_selection_table !== null"
42
+ class="oip_select_complex_smart"
43
+ >
41
44
  <h2 class="oip_select_complex_smart_title">Smart Selection</h2>
42
45
  <div class="oip_select_complex_smart_selection">
43
46
  <!-- Tags -->
@@ -197,7 +200,8 @@ import {
197
200
  ref,
198
201
  computed,
199
202
  watch,
200
- defineComponent
203
+ defineComponent,
204
+ onUnmounted
201
205
  } from "vue";
202
206
  export default defineComponent({
203
207
  name: "argComplexSelect",
@@ -207,7 +211,11 @@ export default defineComponent({
207
211
  search_placeholder: { type: String, default: "Search" },
208
212
  need_apply: { type: Boolean, default: false },
209
213
  select_placeholder: { type: String, required: false },
210
- smart_selection_table: { type: Array, required: false },
214
+ smart_selection_table: {
215
+ type: Array || null,
216
+ required: false,
217
+ default: null
218
+ },
211
219
  return_value: { type: Boolean, default: false },
212
220
  disabled: { type: Boolean, default: false },
213
221
  already_selected: {
@@ -342,7 +350,7 @@ export default defineComponent({
342
350
  if (isDisplay.value === true) {
343
351
  setTimeout(() => {
344
352
  document?.addEventListener("click", close);
345
- }, 100);
353
+ }, 200);
346
354
  }
347
355
  const elem = document?.getElementById("select_complex");
348
356
  const simpleElem = document?.getElementById("simple_select_complex");
@@ -465,6 +473,9 @@ export default defineComponent({
465
473
  save_table.value.add = add_table.value;
466
474
  save_table.value.del = del_table.value;
467
475
  }
476
+ onUnmounted(() => {
477
+ document?.removeEventListener("click", close);
478
+ });
468
479
  return {
469
480
  add_table,
470
481
  del_table,
@@ -31,6 +31,7 @@ declare const _default: import("vue").DefineComponent<{
31
31
  smart_selection_table: {
32
32
  type: ArrayConstructor;
33
33
  required: false;
34
+ default: null;
34
35
  };
35
36
  return_value: {
36
37
  type: BooleanConstructor;
@@ -152,6 +153,7 @@ declare const _default: import("vue").DefineComponent<{
152
153
  smart_selection_table: {
153
154
  type: ArrayConstructor;
154
155
  required: false;
156
+ default: null;
155
157
  };
156
158
  return_value: {
157
159
  type: BooleanConstructor;
@@ -218,6 +220,7 @@ declare const _default: import("vue").DefineComponent<{
218
220
  loading: boolean;
219
221
  search_placeholder: string;
220
222
  need_apply: boolean;
223
+ smart_selection_table: unknown[];
221
224
  return_value: boolean;
222
225
  disabled: boolean;
223
226
  already_selected: string[];
@@ -5,20 +5,36 @@
5
5
  <p class="oip_filter_label">{{ dropdown_label }}</p>
6
6
  <arg-simple-label
7
7
  :disabled="disabled"
8
- @click.stop="changeDisplay()"
8
+ @click="changeDisplay()"
9
9
  :class="isDisplay ? 'open' : ''"
10
10
  >
11
11
  <arg-tooltip
12
12
  class="full_width"
13
13
  :disable="
14
- selected_item !== null ? true : !isEllipsisActive ? true : false
14
+ selected_item !== null && selected_item !== undefined
15
+ ? true
16
+ : !isEllipsisActive
17
+ ? true
18
+ : false
19
+ "
20
+ :tooltipText="
21
+ selected_item !== null && selected_item !== undefined
22
+ ? selected_item
23
+ : ''
15
24
  "
16
- :tooltipText="selected_item !== null ? selected_item : ''"
17
25
  >
18
26
  <span
19
- :class="selected_item !== null ? '' : 'oip_empty_select'"
27
+ :class="
28
+ selected_item !== null && selected_item !== undefined
29
+ ? ''
30
+ : 'oip_empty_select'
31
+ "
20
32
  :id="`label_${selected_item}`"
21
- >{{ selected_item === null ? empty_msg : selected_item }}</span
33
+ >{{
34
+ selected_item === null || selected_item === undefined
35
+ ? empty_msg
36
+ : selected_item
37
+ }}</span
22
38
  >
23
39
  </arg-tooltip>
24
40
  </arg-simple-label>
@@ -80,7 +80,7 @@ export default defineComponent({
80
80
  backdrop-filter: blur(12px);
81
81
  transition: all ease 0.7s;
82
82
  cursor: pointer;
83
- z-index: 98;
83
+ z-index: 91;
84
84
  width: calc(100% - 48px);
85
85
  }
86
86
 
@@ -73,7 +73,7 @@ export default defineComponent({
73
73
  padding: 24px 32px 12px;
74
74
  position: fixed;
75
75
  top: 0;
76
- z-index: 99;
76
+ z-index: 95;
77
77
  border-bottom: 1px solid var(--base-dividers, #ececf2);
78
78
  background: transparent;
79
79
  width: 100%;
@@ -79,8 +79,8 @@
79
79
  </div>
80
80
  </template>
81
81
  <script>
82
- import argBtn from "./argBtn";
83
- import argTooltip from "./argTooltip";
82
+ import argBtn from "./argBtn.vue";
83
+ import argTooltip from "./argTooltip.vue";
84
84
  import {
85
85
  onMounted,
86
86
  ref,
@@ -110,66 +110,4 @@ export default defineComponent({
110
110
  .oip_info_item:hover {
111
111
  background: rgb(237, 237, 243, 65%);
112
112
  }
113
-
114
- .oip_info_close {
115
- margin: 24px;
116
- display: flex;
117
- height: 32px;
118
- padding: 6px 12px 6px 8px;
119
- align-items: center;
120
- gap: 6px;
121
- cursor: pointer;
122
- border-radius: var(--s, 8px);
123
- background: var(--pure-white);
124
- }
125
-
126
- .oip_info_close:hover {
127
- background: var(--dividers) !important;
128
- }
129
-
130
- .oip_info_section {
131
- width: 0px;
132
- transition: width ease 0.5s;
133
- overflow-x: hidden;
134
- height: 0px;
135
- }
136
-
137
- .oip_info_section_open {
138
- display: flex;
139
- flex-direction: row;
140
- align-items: flex-start;
141
- width: 620px;
142
- height: 820px;
143
- }
144
-
145
- .oip_info_sidebar {
146
- display: flex;
147
- width: 160px;
148
- padding: var(--l, 24px) var(--None, 0px);
149
- flex-direction: column;
150
- align-items: flex-start;
151
- gap: var(--m, 16px);
152
- align-self: stretch;
153
- border-radius: var(--None, 0px);
154
-
155
- border-left: 1px solid var(--base-dividers, #ececf2);
156
- background: var(--base-demi-fond, #f9f9fa);
157
- backdrop-filter: blur(16px);
158
- }
159
-
160
- .open_container {
161
- max-width: 750px !important;
162
- height: 820px;
163
- }
164
-
165
- .oip_info_container {
166
- display: inline-flex;
167
- align-items: flex-start;
168
- position: fixed;
169
- right: 0;
170
- top: 108px;
171
- z-index: 999;
172
- max-width: 0px;
173
- transition: max-width ease 0.5px;
174
- }
175
113
  </style>
@@ -1,14 +1,12 @@
1
1
  <template>
2
2
  <div :class="sidebarOpen ? 'arg_main_with_sidebar' : 'arg_main_no_sidebar'">
3
3
  <slot name="sidebar" />
4
- <slot name="tuto" />
5
4
  <div class="arg_main_layout_body">
6
5
  <div class="arg_info" id="arg_info_section">
7
6
  <slot name="infoBar" />
8
7
  <slot name="infoSection" />
9
8
  </div>
10
9
  <div class="arg_main_layout_section" id="arg_main_layout_section">
11
- <slot name="header" />
12
10
  <slot name="body" />
13
11
  </div>
14
12
  <argFooter />
@@ -20,12 +18,10 @@ import {
20
18
  onMounted,
21
19
  defineComponent
22
20
  } from "vue";
23
- import argIcon from "./argIcon.vue";
24
- import argStyle from "./argStyle.vue";
25
21
  import argFooter from "./argFooter.vue";
26
22
  export default defineComponent({
27
23
  name: "argMainLayout",
28
- components: { argIcon, argStyle, argFooter },
24
+ components: { argFooter },
29
25
  props: {
30
26
  sidebarOpen: {
31
27
  type: Boolean,
@@ -77,6 +73,6 @@ export default defineComponent({
77
73
  .arg_info {
78
74
  position: fixed;
79
75
  right: 8px;
80
- z-index: 999;
76
+ z-index: 98;
81
77
  }
82
78
  </style>
@@ -0,0 +1,90 @@
1
+ <template>
2
+ <div>
3
+ <div class="no_scope_text">
4
+ <p>{{ noScopeText[lang] }}</p>
5
+ <ul>
6
+ <li v-for="(step, index) in saveScopeSteps" :key="index">
7
+ {{ step[lang] }}
8
+ </li>
9
+ </ul>
10
+ <p>{{ noScopeEnd[lang] }}</p>
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ import {
17
+ defineComponent
18
+ } from "vue";
19
+ export default defineComponent({
20
+ name: "argNoSavedScope",
21
+ props: {
22
+ lang: {
23
+ type: String,
24
+ default: "en",
25
+ validator: (value) => {
26
+ return ["en", "fr"].includes(value);
27
+ }
28
+ }
29
+ },
30
+ setup() {
31
+ const noScopeText = {
32
+ en: `You don't have Scopes saved yet. Here's how to create a new scope:`,
33
+ fr: `Vous n'avez pas encore de scope enregistr\xE9. Voici comment cr\xE9er un nouveau scope:`
34
+ };
35
+ const saveScopeSteps = [
36
+ {
37
+ en: `Switch to \u201CNew Scope Criteria\u201D`,
38
+ fr: `Choisissez l'onglet "Nouveau crit\xE8re scope"`
39
+ },
40
+ {
41
+ en: `Select all the criteria you need`,
42
+ fr: `S\xE9lectionnez les crit\xE8res dont vous avez besoin`
43
+ },
44
+ {
45
+ en: `Click on \u201CSave and continue\u201D at the top right of your screen`,
46
+ fr: `Cliquez sur "Sauvegarder et continuer" en haut \xE0 droite de votre \xE9cran`
47
+ },
48
+ {
49
+ en: `Fill the form with the information you need and click on \u201CSave scope and continue\u201D`,
50
+ fr: `Remplissez le formulaire avec vos informations et cliquez sur "Sauvegarder le scope et coninuer"`
51
+ }
52
+ ];
53
+ const noScopeEnd = {
54
+ en: `And that\u2019s it ! Your scope will be saved and you will be able to recover it next time you connect !`,
55
+ fr: `Et c'est tout ! Votre scope sera enregistr\xE9 et vous pourrez le retrouver lors de vos prochaines connexions !`
56
+ };
57
+ return {
58
+ noScopeText,
59
+ saveScopeSteps,
60
+ noScopeEnd
61
+ };
62
+ }
63
+ });
64
+ </script>
65
+
66
+ <style scoped>
67
+ .no_scope_text {
68
+ font-family: Figtree;
69
+ font-size: 14px;
70
+ font-style: normal;
71
+ font-weight: 400;
72
+ line-height: 160%;
73
+ }
74
+
75
+ ul {
76
+ padding-inline-start: 14px !important;
77
+ }
78
+
79
+ li {
80
+ list-style: none;
81
+ font-size: 14px;
82
+ }
83
+
84
+ li:before {
85
+ content: "· ";
86
+ vertical-align: middle;
87
+ font-size: 30px !important;
88
+ font-weight: 300 !important;
89
+ }
90
+ </style>
@@ -0,0 +1,29 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ lang: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ validator: (value: string) => boolean;
6
+ };
7
+ }, {
8
+ noScopeText: {
9
+ en: string;
10
+ fr: string;
11
+ };
12
+ saveScopeSteps: {
13
+ en: string;
14
+ fr: string;
15
+ }[];
16
+ noScopeEnd: {
17
+ en: string;
18
+ fr: string;
19
+ };
20
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ lang: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ validator: (value: string) => boolean;
25
+ };
26
+ }>>, {
27
+ lang: string;
28
+ }, {}>;
29
+ export default _default;
@@ -5,16 +5,7 @@
5
5
  <h1 class="scope_title">{{ scopeTitle }}</h1>
6
6
  </div>
7
7
  <div class="oip_row v-center gap-16">
8
- <arg-actions
9
- :lang="lang"
10
- action-type="see-analysis"
11
- @onSeeAnalysis="seeAnalysis()"
12
- />
13
- <arg-actions
14
- :lang="lang"
15
- action-type="save-analysis"
16
- @onSaveAnalysis="saveAnalysis()"
17
- />
8
+ <slot name="actions" />
18
9
  </div>
19
10
  </div>
20
11
  </template>
@@ -33,6 +24,10 @@ export default defineComponent({
33
24
  type: String,
34
25
  default: "My scope"
35
26
  },
27
+ noSelection: {
28
+ type: Boolean,
29
+ default: true
30
+ },
36
31
  lang: {
37
32
  type: String,
38
33
  default: "en",
@@ -41,23 +36,14 @@ export default defineComponent({
41
36
  }
42
37
  }
43
38
  },
44
- emits: ["seeAnalysis", "saveAnalysis"],
45
- setup(props, { emit }) {
39
+ setup() {
46
40
  const router = useRouter();
47
41
  function goBack() {
48
42
  router.back();
49
43
  }
50
- function seeAnalysis() {
51
- emit("seeAnalysis");
52
- }
53
- function saveAnalysis() {
54
- emit("saveAnalysis");
55
- }
56
44
  return {
57
45
  router,
58
- goBack,
59
- seeAnalysis,
60
- saveAnalysis
46
+ goBack
61
47
  };
62
48
  }
63
49
  });
@@ -71,13 +57,14 @@ export default defineComponent({
71
57
  align-items: center;
72
58
  justify-content: space-between;
73
59
  gap: var(--m, 16px);
74
-
60
+ position: fixed;
61
+ top: 0;
62
+ left: 0;
75
63
  align-self: stretch;
76
64
  border-radius: var(--None, 0px);
77
-
78
65
  border-bottom: 1px solid var(--base-dividers, #ececf2);
79
66
  background: rgba(253, 253, 255, 0.8);
80
-
67
+ width: calc(100% - 48px);
81
68
  backdrop-filter: blur(12px);
82
69
  }
83
70
 
@@ -3,6 +3,10 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: StringConstructor;
4
4
  default: string;
5
5
  };
6
+ noSelection: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
6
10
  lang: {
7
11
  type: StringConstructor;
8
12
  default: string;
@@ -11,23 +15,23 @@ declare const _default: import("vue").DefineComponent<{
11
15
  }, {
12
16
  router: import("vue-router").Router;
13
17
  goBack: () => void;
14
- seeAnalysis: () => void;
15
- saveAnalysis: () => void;
16
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("seeAnalysis" | "saveAnalysis")[], "seeAnalysis" | "saveAnalysis", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
19
  scopeTitle: {
18
20
  type: StringConstructor;
19
21
  default: string;
20
22
  };
23
+ noSelection: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
21
27
  lang: {
22
28
  type: StringConstructor;
23
29
  default: string;
24
30
  validator: (value: string) => boolean;
25
31
  };
26
- }>> & {
27
- onSeeAnalysis?: ((...args: any[]) => any) | undefined;
28
- onSaveAnalysis?: ((...args: any[]) => any) | undefined;
29
- }, {
32
+ }>>, {
30
33
  lang: string;
31
34
  scopeTitle: string;
35
+ noSelection: boolean;
32
36
  }, {}>;
33
37
  export default _default;
@@ -4,7 +4,7 @@
4
4
  <div class="arg_scope_layout_body">
5
5
  <slot name="body" />
6
6
  </div>
7
- <argFooter />
7
+ <argFooter class="full_width_footer" />
8
8
  </div>
9
9
  </template>
10
10
  <script>
@@ -16,7 +16,7 @@ import argIcon from "./argIcon.vue";
16
16
  import argStyle from "./argStyle.vue";
17
17
  import argFooter from "./argFooter.vue";
18
18
  export default defineComponent({
19
- name: "argMainLayout",
19
+ name: "argScopeLayout",
20
20
  components: { argIcon, argStyle, argFooter },
21
21
  props: {
22
22
  sidebarOpen: {
@@ -53,9 +53,12 @@ export default defineComponent({
53
53
  }
54
54
  .arg_scope_layout_body {
55
55
  min-height: calc(100vh - 77px);
56
- padding: 8px;
56
+ margin: 116px 32px 0px 32px;
57
57
  max-width: 1088px;
58
- min-width: 50%;
59
- margin-top: 32px;
58
+ width: calc(100% - 64px);
59
+ }
60
+
61
+ .full_width_footer {
62
+ width: calc(100% - 192px);
60
63
  }
61
64
  </style>
@@ -23,6 +23,7 @@
23
23
  <script>
24
24
  import argIcon from "./argIcon.vue";
25
25
  import {
26
+ onMounted,
26
27
  ref,
27
28
  watch,
28
29
  defineComponent
@@ -35,22 +36,26 @@ export default defineComponent({
35
36
  type: String,
36
37
  default: "Search here..."
37
38
  },
38
- value: {
39
+ defaultValue: {
39
40
  type: String,
40
41
  default: ""
41
42
  }
42
43
  },
43
44
  emits: ["update:Value", "submitSearch"],
44
45
  setup(props, { emit }) {
45
- const searchValue = ref(props.value);
46
+ const searchValue = ref("");
47
+ onMounted(() => {
48
+ searchValue.value = props.defaultValue;
49
+ });
46
50
  watch(
47
- () => props.value,
51
+ () => props.defaultValue,
48
52
  (new_value) => {
49
53
  searchValue.value = new_value;
50
54
  }
51
55
  );
52
56
  function changeInput(event) {
53
- emit("update:Value", event.target.value);
57
+ searchValue.value = event.target.value;
58
+ emit("update:Value", searchValue.value);
54
59
  }
55
60
  function submitSearch() {
56
61
  emit("submitSearch");
@@ -3,13 +3,13 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: StringConstructor;
4
4
  default: string;
5
5
  };
6
- value: {
6
+ defaultValue: {
7
7
  type: StringConstructor;
8
8
  default: string;
9
9
  };
10
10
  }, {
11
11
  searchValue: import("vue").Ref<string>;
12
- changeInput: (event: Event) => void;
12
+ changeInput: (event: any) => void;
13
13
  submitSearch: () => void;
14
14
  clearValue: () => void;
15
15
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:Value" | "submitSearch")[], "update:Value" | "submitSearch", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
17
17
  type: StringConstructor;
18
18
  default: string;
19
19
  };
20
- value: {
20
+ defaultValue: {
21
21
  type: StringConstructor;
22
22
  default: string;
23
23
  };
@@ -25,7 +25,7 @@ declare const _default: import("vue").DefineComponent<{
25
25
  "onUpdate:Value"?: ((...args: any[]) => any) | undefined;
26
26
  onSubmitSearch?: ((...args: any[]) => any) | undefined;
27
27
  }, {
28
- value: string;
29
28
  placeHolderValue: string;
29
+ defaultValue: string;
30
30
  }, {}>;
31
31
  export default _default;
@@ -62,9 +62,11 @@ import {
62
62
  defineComponent
63
63
  } from "vue";
64
64
  import argIcon from "./argIcon.vue";
65
+ import argTooltip from "./argTooltip.vue";
66
+ import argFlag from "./argFlag.vue";
65
67
  export default defineComponent({
66
68
  name: "argSidebar",
67
- components: { argIcon },
69
+ components: { argIcon, argTooltip, argFlag },
68
70
  props: {
69
71
  name: { type: String, required: true },
70
72
  appIso: {
@@ -119,7 +121,7 @@ export default defineComponent({
119
121
  background: var(--background);
120
122
  height: 100vh;
121
123
  position: fixed;
122
- z-index: 100;
124
+ z-index: 98;
123
125
  transition: all ease 0.3s;
124
126
  left: 0;
125
127
  top: 0;
@@ -108,11 +108,7 @@
108
108
  v-bind:value="value"
109
109
  ></slot>
110
110
  <p v-else>
111
- {{
112
- typeof value === "number"
113
- ? Intl.NumberFormat("us-US").format(value)
114
- : value
115
- }}
111
+ {{ value }}
116
112
  </p>
117
113
  </td>
118
114
  </tr>
@@ -932,7 +928,7 @@ th:last-child div.show .rcd-searchInput {
932
928
 
933
929
  .scroll_table .rcd_scrollTable thead {
934
930
  background: var(--pure-white) !important;
935
- z-index: 98;
931
+ z-index: 90;
936
932
  }
937
933
 
938
934
  .scroll_table .rcd_scrollTable {
@@ -125,6 +125,7 @@ export default defineComponent({
125
125
  line-height: 160%;
126
126
  padding: 6px;
127
127
  border-radius: 4px;
128
+ white-space: nowrap;
128
129
  }
129
130
 
130
131
  .tip_action:hover {
@@ -111,19 +111,22 @@ export default defineComponent({
111
111
  height: 0px;
112
112
  width: 0px;
113
113
  padding: 53px 82px;
114
- z-index: -5;
114
+ display: flex;
115
+ align-items: center;
116
+ justify-content: center;
115
117
  }
116
118
 
117
119
  .arg_tuto_modal_open {
118
- z-index: 2000;
120
+ z-index: 99;
119
121
  background-color: rgba(0, 0, 0, 0.4);
120
- width: 100%;
122
+ width: calc(100% - 164px);
121
123
  height: calc(100% - 106px);
122
124
  }
123
125
 
124
126
  .arg_tuto_modal {
125
127
  display: flex;
126
128
  width: calc(100% - 164px);
129
+ max-width: 1088px;
127
130
  height: 100%;
128
131
  flex-direction: column;
129
132
  align-items: flex-start;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",