fluency-v8-components 1.5.3 → 1.5.4

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.
Files changed (67) hide show
  1. package/dist/fluency-v8-components.es.js +1 -1
  2. package/dist/fluency-v8-components.umd.js +72 -72
  3. package/dist/{index-CiSJXa9Q.mjs → index-rDGKIIQS.mjs} +8965 -8958
  4. package/dist/index.css +1 -1
  5. package/dist/{index.es-PoP0Se8l.mjs → index.es-sGgUtJEo.mjs} +1 -1
  6. package/package.json +2 -2
  7. package/src/components/buttons/IconButton.vue +1 -1
  8. package/src/components/buttons/SubmitButtons.vue +1 -1
  9. package/src/components/charts/WorkflowChart.vue +5 -7
  10. package/src/components/common/AutoCompleteSearchBar.vue +1 -1
  11. package/src/components/common/AutoRefreshButton.vue +1 -1
  12. package/src/components/common/CategoryCard.vue +1 -1
  13. package/src/components/common/Facet.vue +4 -1
  14. package/src/components/common/HomeCard.vue +1 -1
  15. package/src/components/common/PowerToggle.vue +3 -1
  16. package/src/components/common/Schedule.vue +3 -1
  17. package/src/components/common/Stepper.vue +5 -5
  18. package/src/components/common/Tag.vue +1 -1
  19. package/src/components/common/ThreeHomePanel.vue +1 -1
  20. package/src/components/common/facet/Leaf.vue +1 -1
  21. package/src/components/common/facet/TriState.vue +1 -1
  22. package/src/components/dialogs/ChooseValueDialog.vue +5 -7
  23. package/src/components/dialogs/ConfirmDialog.vue +2 -1
  24. package/src/components/dialogs/CopyDialog.vue +2 -1
  25. package/src/components/dialogs/DownloadDialog.vue +2 -1
  26. package/src/components/dialogs/InfoDialog.vue +2 -1
  27. package/src/components/dialogs/NameDescDialog.vue +4 -1
  28. package/src/components/dialogs/NameDialog.vue +4 -1
  29. package/src/components/dialogs/ProgressDialog.vue +2 -1
  30. package/src/components/dialogs/ResetPasswordDialog.vue +4 -1
  31. package/src/components/dialogs/Wizard.vue +2 -1
  32. package/src/components/form/KeyValueEntry.vue +6 -8
  33. package/src/components/page-structure/FacetPage.vue +2 -2
  34. package/src/components/query/Child.vue +1 -1
  35. package/src/components/query/LVDBQuery.vue +1 -1
  36. package/src/components/status/Active.vue +1 -1
  37. package/src/components/status/Status.vue +1 -1
  38. package/src/components/tables/ArgumentRunTable.vue +6 -8
  39. package/src/components/tables/ArgumentTable.vue +4 -1
  40. package/src/components/tables/CloudFormationParameters.vue +2 -1
  41. package/src/fpl/AddPanel.vue +7 -9
  42. package/src/fpl/Configs/Alert.vue +2 -1
  43. package/src/fpl/Configs/Chart.vue +3 -5
  44. package/src/fpl/Configs/Counter.vue +2 -1
  45. package/src/fpl/Configs/Histogram.vue +4 -6
  46. package/src/fpl/Configs/IPMap.vue +2 -1
  47. package/src/fpl/Configs/Image.vue +6 -8
  48. package/src/fpl/Configs/MetricChart.vue +2 -1
  49. package/src/fpl/Configs/PieChart.vue +2 -1
  50. package/src/fpl/Configs/SparkChart.vue +3 -1
  51. package/src/fpl/Configs/StackedBarChart.vue +2 -1
  52. package/src/fpl/Configs/Table.vue +6 -8
  53. package/src/fpl/Configs/Text.vue +1 -1
  54. package/src/fpl/Configs/TopNChart.vue +2 -1
  55. package/src/fpl/Outputs/FPLAlert.vue +3 -1
  56. package/src/fpl/Outputs/FPLStream.vue +1 -1
  57. package/src/fpl/Outputs/FPLTable.vue +3 -1
  58. package/src/fpl/Panel.vue +1 -1
  59. package/src/fpl/Panels/Alert.vue +2 -1
  60. package/src/fpl/Panels/Chart.vue +2 -1
  61. package/src/fpl/Panels/Histogram.vue +2 -1
  62. package/src/fpl/Panels/MetricChart.vue +2 -1
  63. package/src/fpl/Panels/PieChart.vue +1 -1
  64. package/src/fpl/Panels/SparkChart.vue +2 -1
  65. package/src/fpl/Panels/StackedBarChart.vue +1 -1
  66. package/src/fpl/Panels/Table.vue +3 -1
  67. package/src/fpl/Panels/TopNChart.vue +1 -1
@@ -22,7 +22,9 @@
22
22
  </template>
23
23
  <script setup>
24
24
  import { ref } from "vue";
25
- import { FormRow, GreySelect, CheckBox } from "@/components";
25
+ import FormRow from "../../components/form/FormRow.vue";
26
+ import GreySelect from "../../components/form/GreySelect.vue";
27
+ import CheckBox from "../../components/form/CheckBox.vue";
26
28
 
27
29
  const props = defineProps({
28
30
  object: Object,
@@ -38,7 +38,8 @@
38
38
  </template>
39
39
  <script setup>
40
40
  import { ref } from "vue";
41
- import { FormRow, GreySelect } from "@/components";
41
+ import FormRow from "../../components/form/FormRow.vue";
42
+ import GreySelect from "../../components/form/GreySelect.vue";
42
43
 
43
44
  const props = defineProps({
44
45
  object: Object,
@@ -52,14 +52,12 @@
52
52
  </template>
53
53
  <script setup>
54
54
  import { ref } from "vue";
55
- import {
56
- TableData,
57
- TableHeader,
58
- CheckBox,
59
- GreyInput,
60
- GreySelect,
61
- RadioButtons,
62
- } from "@/components";
55
+ import TableData from "../../components/common/table/TableData.vue";
56
+ import TableHeader from "../../components/common/table/TableHeader.vue";
57
+ import CheckBox from "../../components/form/CheckBox.vue";
58
+ import GreyInput from "../../components/form/GreyInput.vue";
59
+ import GreySelect from "../../components/form/GreySelect.vue";
60
+ import RadioButtons from "../../components/common/RadioButtons.vue";
63
61
  import { Bars3BottomLeftIcon, Bars3Icon, Bars3BottomRightIcon, Bars4Icon } from "@heroicons/vue/24/outline";
64
62
  import interact from "interactjs";
65
63
  // constants
@@ -3,7 +3,7 @@
3
3
  </template>
4
4
  <script setup>
5
5
  import { ref } from "vue";
6
- import { Editor } from "@/components";
6
+ import Editor from "../../components/form/Editor.vue";
7
7
 
8
8
  const props = defineProps({
9
9
  object: Object,
@@ -26,7 +26,8 @@
26
26
  </template>
27
27
  <script setup>
28
28
  import { ref } from "vue";
29
- import { FormRow, GreySelect } from "@/components";
29
+ import FormRow from "../../components/form/FormRow.vue";
30
+ import GreySelect from "../../components/form/GreySelect.vue";
30
31
 
31
32
  const props = defineProps({
32
33
  object: Object,
@@ -19,7 +19,9 @@
19
19
  <EmptyChart v-if="dat.length === 0" :id="title" :height="300" :width="800" />
20
20
  </template>
21
21
  <script setup>
22
- import { Tag, AlertChart, EmptyChart } from "@/components";
22
+ import Tag from "../../components/common/Tag.vue";
23
+ import AlertChart from "../../components/charts/AlertChart.vue";
24
+ import EmptyChart from "../../components/charts/EmptyChart.vue";
23
25
  import { ref } from "vue";
24
26
 
25
27
  // stores
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
  <script setup>
15
15
  import { ref } from "vue";
16
- import { LineChart } from "@/components";
16
+ import LineChart from "../../components/charts/LineChart.vue";
17
17
 
18
18
  // stores
19
19
  // props and emits
@@ -35,7 +35,9 @@
35
35
  </template>
36
36
  <script setup>
37
37
  import { ref } from "vue";
38
- import { Table, TableHeader, Pagination } from "@/components";
38
+ import Table from "../../components/common/Table.vue";
39
+ import TableHeader from "../../components/common/table/TableHeader.vue";
40
+ import Pagination from "../../components/common/Pagination.vue";
39
41
  import {
40
42
  costCount,
41
43
  dataCount,
package/src/fpl/Panel.vue CHANGED
@@ -96,7 +96,7 @@ import { Menu, MenuButton, MenuItem, MenuItems } from "@headlessui/vue";
96
96
  import { EllipsisHorizontalIcon } from "@heroicons/vue/20/solid";
97
97
  import { panelCSVDownload } from "@/utils/download";
98
98
  import { panelComponent } from "./Configs/Config";
99
- import { ActionButtons } from "@/components";
99
+ import ActionButtons from "../components/buttons/ActionButtons.vue";
100
100
  import {
101
101
  AlertPanel as Alert,
102
102
  AlertSpritePanel as AlertSprite,
@@ -25,7 +25,8 @@
25
25
  </div>
26
26
  </template>
27
27
  <script setup>
28
- import { Tag, AlertChart } from "@/components";
28
+ import Tag from "../../components/common/Tag.vue";
29
+ import AlertChart from "../../components/charts/AlertChart.vue";
29
30
  import { ref, watch } from "vue";
30
31
 
31
32
  // stores
@@ -30,7 +30,8 @@
30
30
  </template>
31
31
  <script setup>
32
32
  import { ref, watch } from "vue";
33
- import { LineChart, StackedChart } from "@/components";
33
+ import LineChart from "../../components/charts/LineChart.vue";
34
+ import StackedChart from "../../components/charts/StackedChart.vue";
34
35
 
35
36
  // stores
36
37
  // props and emits
@@ -27,7 +27,8 @@
27
27
  </template>
28
28
  <script setup>
29
29
  import { ref, watch } from "vue";
30
- import { LineChart, StackedChart } from "@/components";
30
+ import LineChart from "../../components/charts/LineChart.vue";
31
+ import StackedChart from "../../components/charts/StackedChart.vue";
31
32
  import { parseTime } from "@/utils/timeUtils";
32
33
 
33
34
  // stores
@@ -26,7 +26,8 @@
26
26
  </template>
27
27
  <script setup>
28
28
  import { ref, watch } from "vue";
29
- import { LineChart, StackedChart } from "@/components";
29
+ import LineChart from "../../components/charts/LineChart.vue";
30
+ import StackedChart from "../../components/charts/StackedChart.vue";
30
31
 
31
32
  // stores
32
33
  // props and emits
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
  <script setup lang="ts">
17
17
  import { ref, watch } from "vue";
18
- import { PieChart } from "@/components";
18
+ import PieChart from "../../components/charts/PieChart.vue";
19
19
 
20
20
  // stores
21
21
  // props and emits
@@ -80,7 +80,8 @@
80
80
  <script setup>
81
81
  import { ref } from "vue";
82
82
  import { humanCount, dataCount } from "@/utils/formatOutput";
83
- import { Trend, GradientChart } from "@/components";
83
+ import Trend from "../../components/status/Trend.vue";
84
+ import GradientChart from "../../components/charts/GradientChart.vue";
84
85
 
85
86
  // stores
86
87
  // props and emits
@@ -17,7 +17,7 @@
17
17
  <script setup>
18
18
  import { ref, watch } from "vue";
19
19
  import { parseTime } from "@/utils/timeUtils";
20
- import { StackedChart } from "@/components";
20
+ import StackedChart from "../../components/charts/StackedChart.vue";
21
21
 
22
22
  // stores
23
23
  // props and emits
@@ -50,7 +50,9 @@
50
50
 
51
51
  <script setup>
52
52
  import { ref, computed } from "vue";
53
- import { Pagination, TableHeader, TableData } from "@/components";
53
+ import Pagination from "../../components/common/Pagination.vue";
54
+ import TableHeader from "../../components/common/table/TableHeader.vue";
55
+ import TableData from "../../components/common/table/TableData.vue";
54
56
  import {
55
57
  costCount,
56
58
  dataCount,
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
  <script setup>
17
17
  import { ref, watch } from "vue";
18
- import { BarChartHorizontal } from "@/components";
18
+ import BarChartHorizontal from "../../components/charts/BarChartHorizontal.vue";
19
19
 
20
20
  // stores
21
21
  // props and emits