@tekkare/auriga 0.1.165 → 0.1.167
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 +1 -1
- package/dist/runtime/components/argChart.vue +1 -1
- package/dist/runtime/components/argTable.vue +3 -3
- package/dist/runtime/components/{tableCropRow.vue → tableRowCrop.vue} +1 -1
- package/package.json +1 -1
- /package/dist/runtime/components/{tableCropRow.vue.d.ts → tableRowCrop.vue.d.ts} +0 -0
package/dist/module.json
CHANGED
|
@@ -705,5 +705,5 @@ export default defineComponent({
|
|
|
705
705
|
});
|
|
706
706
|
</script>
|
|
707
707
|
<style>
|
|
708
|
-
.prmt_chart{font-family:Figtree,sans-serif!important;position:relative}.prmt_chart_title{color:var(--darkest);font-size:18px;font-style:normal;font-weight:700;line-height:21px;margin-bottom:8px;margin-right:150px}.prmt_chart_title.prmt_chart_title_without_subtitle{margin-bottom:22px}.prmt_chart_source{align-items:center;color:#2176ff;cursor:pointer;display:flex;font-size:12px;font-style:normal;font-weight:400;gap:8px;height:14px;line-height:14px;overflow:hidden;padding:4px 0;text-overflow:ellipsis;white-space:nowrap}.prmt_chart_source a{color:#2176ff}.prmt_chart_source:empty{visibility:hidden}.prmt_chart .apexcharts-toolbar{top:0!important}.prmt_chart .apexcharts-canvas .apexcharts-svg{overflow:visible}.prmt_chart .apexcharts-pie-area{stroke-width:0}.prmt_chart .apexcharts-canvas{position:static}.prmt_chart.bar-column_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path,.prmt_chart.bar_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path{-webkit-clip-path:inset(0 0 -11% 0 round 6px)!important;clip-path:inset(0 0 -11% 0 round 6px)!important}.prmt_chart.bar-horizontal-group_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path,.prmt_chart.bar-horizontal_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path{-webkit-clip-path:inset(0 0 0 -11% round 6px)!important;clip-path:inset(0 0 0 -11% round 6px)!important}
|
|
708
|
+
.prmt_chart{font-family:Figtree,sans-serif!important;position:relative}.prmt_chart_title{color:var(--darkest);font-size:18px;font-style:normal;font-weight:700;line-height:21px;margin-bottom:8px;margin-right:150px}.prmt_chart_title.prmt_chart_title_without_subtitle{margin-bottom:22px}.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center{max-height:100px!important}.prmt_chart_source{align-items:center;color:#2176ff;cursor:pointer;display:flex;font-size:12px;font-style:normal;font-weight:400;gap:8px;height:14px;line-height:14px;overflow:hidden;padding:4px 0;text-overflow:ellipsis;white-space:nowrap}.prmt_chart_source a{color:#2176ff}.prmt_chart_source:empty{visibility:hidden}.prmt_chart .apexcharts-toolbar{top:0!important}.prmt_chart .apexcharts-canvas .apexcharts-svg{overflow:visible}.prmt_chart .apexcharts-pie-area{stroke-width:0}.prmt_chart .apexcharts-canvas{position:static}.prmt_chart.bar-column_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path,.prmt_chart.bar_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path{-webkit-clip-path:inset(0 0 -11% 0 round 6px)!important;clip-path:inset(0 0 -11% 0 round 6px)!important}.prmt_chart.bar-horizontal-group_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path,.prmt_chart.bar-horizontal_arg_chart>.vue-apexcharts>.apexcharts-canvas>svg>.apexcharts-inner>.apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path{-webkit-clip-path:inset(0 0 0 -11% round 6px)!important;clip-path:inset(0 0 0 -11% round 6px)!important}
|
|
709
709
|
</style>
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
v-bind:value="value"
|
|
115
115
|
></slot>
|
|
116
116
|
<div v-else-if="autoCrop === true">
|
|
117
|
-
<
|
|
117
|
+
<table-row-crop :value="value" />
|
|
118
118
|
</div>
|
|
119
119
|
<!-- <div v-else-if="autoCrop === true" class="display_auto_crop">
|
|
120
120
|
<p
|
|
@@ -252,7 +252,7 @@ import argSearchInput from "./argSearchInput.vue";
|
|
|
252
252
|
import argTooltip from "./argTooltip.vue";
|
|
253
253
|
import argBtn from "./argBtn.vue";
|
|
254
254
|
import argSortIcon from "./argSortIcon.vue";
|
|
255
|
-
import
|
|
255
|
+
import tableRowCrop from "./tableRowCrop.vue";
|
|
256
256
|
import {
|
|
257
257
|
onMounted,
|
|
258
258
|
ref,
|
|
@@ -271,7 +271,7 @@ export default defineComponent({
|
|
|
271
271
|
argTooltip,
|
|
272
272
|
argBtn,
|
|
273
273
|
argSortIcon,
|
|
274
|
-
|
|
274
|
+
tableRowCrop
|
|
275
275
|
},
|
|
276
276
|
props: {
|
|
277
277
|
heads: {
|
package/package.json
CHANGED
|
File without changes
|