@milaboratories/milaboratories.ui-examples.ui 1.3.20 → 1.3.21
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +8 -0
- package/dist/assets/index-Bf7C462b.css +1 -0
- package/dist/assets/index-Ce8KzmCB.js +746 -0
- package/dist/assets/{index-DqUyzlU1.js.map → index-Ce8KzmCB.js.map} +1 -1
- package/dist/index.html +2 -2
- package/package.json +4 -4
- package/src/app.ts +2 -0
- package/src/pages/AgGridVuePage.vue +62 -5
- package/src/pages/HistogramPage/Basic.vue +23 -0
- package/src/pages/HistogramPage/HistogramFigma.vue +42 -0
- package/src/pages/HistogramPage/HistogramPage.vue +57 -0
- package/src/pages/HistogramPage/LogBins.vue +25 -0
- package/src/pages/HistogramPage/LogXScale.vue +24 -0
- package/src/pages/HistogramPage/assets/bins.ts +77 -0
- package/src/pages/HistogramPage/assets/prices.ts +29999 -0
- package/src/pages/StackedBarPage/Alignment.vue +0 -9
- package/src/pages/StackedBarPage/Basic.vue +0 -17
- package/dist/assets/index-DqUyzlU1.js +0 -742
- package/dist/assets/index-DyybnC77.css +0 -1
|
@@ -118,15 +118,6 @@ const settings = computed<PlChartStackedBarSettings>(() => {
|
|
|
118
118
|
</template>
|
|
119
119
|
|
|
120
120
|
<style module>
|
|
121
|
-
.components pre {
|
|
122
|
-
border: 1px solid var(--txt-01);
|
|
123
|
-
padding: 12px;
|
|
124
|
-
font-weight: bolder;
|
|
125
|
-
overflow: auto;
|
|
126
|
-
max-width: 50vw;
|
|
127
|
-
background-color: #eeeeee55;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
121
|
.chip {
|
|
131
122
|
width: 120px;
|
|
132
123
|
height: 120px;
|
|
@@ -46,20 +46,3 @@ const settings = computed(() => {
|
|
|
46
46
|
<pre>{{ JSON.stringify(settings, null, 2) }}</pre>
|
|
47
47
|
</PlRow>
|
|
48
48
|
</template>
|
|
49
|
-
|
|
50
|
-
<style module>
|
|
51
|
-
.drag-and-drop {
|
|
52
|
-
border: 1px solid var(--txt-01);
|
|
53
|
-
padding: 24px;
|
|
54
|
-
width: 600px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.components pre {
|
|
58
|
-
border: 1px solid var(--txt-01);
|
|
59
|
-
padding: 12px;
|
|
60
|
-
font-weight: bolder;
|
|
61
|
-
overflow: auto;
|
|
62
|
-
max-width: 50vw;
|
|
63
|
-
background-color: #eeeeee55;
|
|
64
|
-
}
|
|
65
|
-
</style>
|