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.
- package/dist/fluency-v8-components.es.js +1 -1
- package/dist/fluency-v8-components.umd.js +72 -72
- package/dist/{index-CiSJXa9Q.mjs → index-rDGKIIQS.mjs} +8965 -8958
- package/dist/index.css +1 -1
- package/dist/{index.es-PoP0Se8l.mjs → index.es-sGgUtJEo.mjs} +1 -1
- package/package.json +2 -2
- package/src/components/buttons/IconButton.vue +1 -1
- package/src/components/buttons/SubmitButtons.vue +1 -1
- package/src/components/charts/WorkflowChart.vue +5 -7
- package/src/components/common/AutoCompleteSearchBar.vue +1 -1
- package/src/components/common/AutoRefreshButton.vue +1 -1
- package/src/components/common/CategoryCard.vue +1 -1
- package/src/components/common/Facet.vue +4 -1
- package/src/components/common/HomeCard.vue +1 -1
- package/src/components/common/PowerToggle.vue +3 -1
- package/src/components/common/Schedule.vue +3 -1
- package/src/components/common/Stepper.vue +5 -5
- package/src/components/common/Tag.vue +1 -1
- package/src/components/common/ThreeHomePanel.vue +1 -1
- package/src/components/common/facet/Leaf.vue +1 -1
- package/src/components/common/facet/TriState.vue +1 -1
- package/src/components/dialogs/ChooseValueDialog.vue +5 -7
- package/src/components/dialogs/ConfirmDialog.vue +2 -1
- package/src/components/dialogs/CopyDialog.vue +2 -1
- package/src/components/dialogs/DownloadDialog.vue +2 -1
- package/src/components/dialogs/InfoDialog.vue +2 -1
- package/src/components/dialogs/NameDescDialog.vue +4 -1
- package/src/components/dialogs/NameDialog.vue +4 -1
- package/src/components/dialogs/ProgressDialog.vue +2 -1
- package/src/components/dialogs/ResetPasswordDialog.vue +4 -1
- package/src/components/dialogs/Wizard.vue +2 -1
- package/src/components/form/KeyValueEntry.vue +6 -8
- package/src/components/page-structure/FacetPage.vue +2 -2
- package/src/components/query/Child.vue +1 -1
- package/src/components/query/LVDBQuery.vue +1 -1
- package/src/components/status/Active.vue +1 -1
- package/src/components/status/Status.vue +1 -1
- package/src/components/tables/ArgumentRunTable.vue +6 -8
- package/src/components/tables/ArgumentTable.vue +4 -1
- package/src/components/tables/CloudFormationParameters.vue +2 -1
- package/src/fpl/AddPanel.vue +7 -9
- package/src/fpl/Configs/Alert.vue +2 -1
- package/src/fpl/Configs/Chart.vue +3 -5
- package/src/fpl/Configs/Counter.vue +2 -1
- package/src/fpl/Configs/Histogram.vue +4 -6
- package/src/fpl/Configs/IPMap.vue +2 -1
- package/src/fpl/Configs/Image.vue +6 -8
- package/src/fpl/Configs/MetricChart.vue +2 -1
- package/src/fpl/Configs/PieChart.vue +2 -1
- package/src/fpl/Configs/SparkChart.vue +3 -1
- package/src/fpl/Configs/StackedBarChart.vue +2 -1
- package/src/fpl/Configs/Table.vue +6 -8
- package/src/fpl/Configs/Text.vue +1 -1
- package/src/fpl/Configs/TopNChart.vue +2 -1
- package/src/fpl/Outputs/FPLAlert.vue +3 -1
- package/src/fpl/Outputs/FPLStream.vue +1 -1
- package/src/fpl/Outputs/FPLTable.vue +3 -1
- package/src/fpl/Panel.vue +1 -1
- package/src/fpl/Panels/Alert.vue +2 -1
- package/src/fpl/Panels/Chart.vue +2 -1
- package/src/fpl/Panels/Histogram.vue +2 -1
- package/src/fpl/Panels/MetricChart.vue +2 -1
- package/src/fpl/Panels/PieChart.vue +1 -1
- package/src/fpl/Panels/SparkChart.vue +2 -1
- package/src/fpl/Panels/StackedBarChart.vue +1 -1
- package/src/fpl/Panels/Table.vue +3 -1
- 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
|
|
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
|
|
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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
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
|
package/src/fpl/Configs/Text.vue
CHANGED
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
<script setup>
|
|
28
28
|
import { ref } from "vue";
|
|
29
|
-
import
|
|
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
|
|
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
|
|
@@ -35,7 +35,9 @@
|
|
|
35
35
|
</template>
|
|
36
36
|
<script setup>
|
|
37
37
|
import { ref } from "vue";
|
|
38
|
-
import
|
|
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
|
|
99
|
+
import ActionButtons from "../components/buttons/ActionButtons.vue";
|
|
100
100
|
import {
|
|
101
101
|
AlertPanel as Alert,
|
|
102
102
|
AlertSpritePanel as AlertSprite,
|
package/src/fpl/Panels/Alert.vue
CHANGED
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
</div>
|
|
26
26
|
</template>
|
|
27
27
|
<script setup>
|
|
28
|
-
import
|
|
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
|
package/src/fpl/Panels/Chart.vue
CHANGED
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
</template>
|
|
31
31
|
<script setup>
|
|
32
32
|
import { ref, watch } from "vue";
|
|
33
|
-
import
|
|
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
|
|
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
|
|
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
|
|
@@ -80,7 +80,8 @@
|
|
|
80
80
|
<script setup>
|
|
81
81
|
import { ref } from "vue";
|
|
82
82
|
import { humanCount, dataCount } from "@/utils/formatOutput";
|
|
83
|
-
import
|
|
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
|
|
20
|
+
import StackedChart from "../../components/charts/StackedChart.vue";
|
|
21
21
|
|
|
22
22
|
// stores
|
|
23
23
|
// props and emits
|
package/src/fpl/Panels/Table.vue
CHANGED
|
@@ -50,7 +50,9 @@
|
|
|
50
50
|
|
|
51
51
|
<script setup>
|
|
52
52
|
import { ref, computed } from "vue";
|
|
53
|
-
import
|
|
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,
|