@flux-ui/components 3.0.0-next.74 → 3.0.0-next.75
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/component/index.d.ts +0 -3
- package/dist/index.css +5 -136
- package/dist/index.js +189 -336
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/component/index.ts +0 -3
- package/src/css/component/SegmentedControl.module.scss +5 -6
- package/dist/component/FluxLegend.vue.d.ts +0 -8
- package/dist/component/FluxPercentageBar.vue.d.ts +0 -8
- package/dist/component/FluxStatistic.vue.d.ts +0 -17
- package/src/component/FluxLegend.vue +0 -27
- package/src/component/FluxPercentageBar.vue +0 -47
- package/src/component/FluxStatistic.vue +0 -82
- package/src/css/component/Legend.module.scss +0 -29
- package/src/css/component/PercentageBar.module.scss +0 -31
- package/src/css/component/Statistic.module.scss +0 -91
|
@@ -92,7 +92,6 @@ export { default as FluxItemMedia } from './FluxItemMedia.vue';
|
|
|
92
92
|
export { default as FluxItemStack } from './FluxItemStack.vue';
|
|
93
93
|
export { default as FluxLayerPane } from './FluxLayerPane.vue';
|
|
94
94
|
export { default as FluxLayerPaneSecondary } from './FluxLayerPaneSecondary.vue';
|
|
95
|
-
export { default as FluxLegend } from './FluxLegend.vue';
|
|
96
95
|
export { default as FluxLink } from './FluxLink.vue';
|
|
97
96
|
export { default as FluxMenu } from './FluxMenu.vue';
|
|
98
97
|
export { default as FluxMenuCollapsible } from './FluxMenuCollapsible.vue';
|
|
@@ -115,7 +114,6 @@ export { default as FluxPaneGroup } from './FluxPaneGroup.vue';
|
|
|
115
114
|
export { default as FluxPaneHeader } from './FluxPaneHeader.vue';
|
|
116
115
|
export { default as FluxPaneIllustration } from './FluxPaneIllustration.vue';
|
|
117
116
|
export { default as FluxPaneMedia } from './FluxPaneMedia.vue';
|
|
118
|
-
export { default as FluxPercentageBar } from './FluxPercentageBar.vue';
|
|
119
117
|
export { default as FluxPersona } from './FluxPersona.vue';
|
|
120
118
|
export { default as FluxPlaceholder } from './FluxPlaceholder.vue';
|
|
121
119
|
export { default as FluxPressable } from './FluxPressable.vue';
|
|
@@ -141,7 +139,6 @@ export { default as FluxSpinner } from './FluxSpinner.vue';
|
|
|
141
139
|
export { default as FluxSplitButton } from './FluxSplitButton.vue';
|
|
142
140
|
export { default as FluxSplitView } from './FluxSplitView.vue';
|
|
143
141
|
export { default as FluxSplitViewPane } from './FluxSplitViewPane.vue';
|
|
144
|
-
export { default as FluxStatistic } from './FluxStatistic.vue';
|
|
145
142
|
export { default as FluxStepper } from './FluxStepper.vue';
|
|
146
143
|
export { default as FluxStepperStep } from './FluxStepperStep.vue';
|
|
147
144
|
export { default as FluxStepperSteps } from './FluxStepperSteps.vue';
|
package/dist/index.css
CHANGED
|
@@ -5908,33 +5908,6 @@ tfoot .table-cell {
|
|
|
5908
5908
|
|
|
5909
5909
|
.base-pane-structure:is(a, button):hover:has(> .item) {
|
|
5910
5910
|
background-color: color-mix(in srgb, rgb(from var(--surface-hover) r g b/0.125), var(--surface));
|
|
5911
|
-
}.legend-horizontal {
|
|
5912
|
-
display: flex;
|
|
5913
|
-
gap: 12px 18px;
|
|
5914
|
-
}
|
|
5915
|
-
|
|
5916
|
-
.legend-vertical {
|
|
5917
|
-
display: flex;
|
|
5918
|
-
flex-flow: column;
|
|
5919
|
-
gap: 12px;
|
|
5920
|
-
}
|
|
5921
|
-
|
|
5922
|
-
.legend-item {
|
|
5923
|
-
display: flex;
|
|
5924
|
-
flex-flow: row nowrap;
|
|
5925
|
-
gap: 6px;
|
|
5926
|
-
font-size: 14px;
|
|
5927
|
-
line-height: 1;
|
|
5928
|
-
}
|
|
5929
|
-
.legend-item::before {
|
|
5930
|
-
display: block;
|
|
5931
|
-
margin-top: 1px;
|
|
5932
|
-
height: 12px;
|
|
5933
|
-
width: 12px;
|
|
5934
|
-
content: "";
|
|
5935
|
-
flex: 0 0 12px;
|
|
5936
|
-
background: var(--color);
|
|
5937
|
-
border-radius: var(--radius-full);
|
|
5938
5911
|
}.notice {
|
|
5939
5912
|
display: flex;
|
|
5940
5913
|
padding: 12px 15px;
|
|
@@ -6161,35 +6134,6 @@ tfoot .table-cell {
|
|
|
6161
6134
|
.base-pane > .notice {
|
|
6162
6135
|
padding-left: 18px;
|
|
6163
6136
|
padding-right: 18px;
|
|
6164
|
-
}.percentage-bar {
|
|
6165
|
-
display: flex;
|
|
6166
|
-
flex-flow: column;
|
|
6167
|
-
gap: 12px;
|
|
6168
|
-
}
|
|
6169
|
-
|
|
6170
|
-
.percentage-bar-segment {
|
|
6171
|
-
height: 12px;
|
|
6172
|
-
border-radius: calc(var(--radius) / 3);
|
|
6173
|
-
transition: var(--transition-default);
|
|
6174
|
-
transition-property: height, margin, flex-grow;
|
|
6175
|
-
}
|
|
6176
|
-
.percentage-bar-segment:hover {
|
|
6177
|
-
height: 16px;
|
|
6178
|
-
margin-top: -2px;
|
|
6179
|
-
margin-bottom: -2px;
|
|
6180
|
-
}
|
|
6181
|
-
|
|
6182
|
-
.percentage-bar-tooltip {
|
|
6183
|
-
display: flex;
|
|
6184
|
-
align-items: center;
|
|
6185
|
-
flex-flow: row nowrap;
|
|
6186
|
-
gap: 9px;
|
|
6187
|
-
}
|
|
6188
|
-
|
|
6189
|
-
.percentage-bar-track {
|
|
6190
|
-
display: flex;
|
|
6191
|
-
flex-flow: row nowrap;
|
|
6192
|
-
gap: 3px;
|
|
6193
6137
|
}.progress-bar {
|
|
6194
6138
|
position: relative;
|
|
6195
6139
|
}
|
|
@@ -6649,7 +6593,7 @@ tfoot .table-cell {
|
|
|
6649
6593
|
padding: 3px;
|
|
6650
6594
|
background: var(--gray-50);
|
|
6651
6595
|
border: 1px solid var(--surface-stroke);
|
|
6652
|
-
border-radius: var(--radius
|
|
6596
|
+
border-radius: var(--radius);
|
|
6653
6597
|
}
|
|
6654
6598
|
|
|
6655
6599
|
.segmented-control-fill {
|
|
@@ -6666,7 +6610,7 @@ tfoot .table-cell {
|
|
|
6666
6610
|
top: 3px;
|
|
6667
6611
|
bottom: 3px;
|
|
6668
6612
|
background: var(--surface);
|
|
6669
|
-
border-radius: var(--radius-
|
|
6613
|
+
border-radius: calc(var(--radius) - 3px);
|
|
6670
6614
|
box-shadow: var(--shadow-md);
|
|
6671
6615
|
outline: 1px solid var(--surface-stroke);
|
|
6672
6616
|
pointer-events: none;
|
|
@@ -6721,8 +6665,9 @@ tfoot .table-cell {
|
|
|
6721
6665
|
top: 50%;
|
|
6722
6666
|
left: -2px;
|
|
6723
6667
|
height: 15px;
|
|
6724
|
-
width:
|
|
6725
|
-
background: var(--
|
|
6668
|
+
width: 2px;
|
|
6669
|
+
background: var(--gray-100);
|
|
6670
|
+
border-radius: 1px;
|
|
6726
6671
|
transition: opacity 300ms var(--swift-out);
|
|
6727
6672
|
translate: 0 -50%;
|
|
6728
6673
|
}
|
|
@@ -6809,82 +6754,6 @@ tfoot .table-cell {
|
|
|
6809
6754
|
left: 0;
|
|
6810
6755
|
height: 2px;
|
|
6811
6756
|
width: 100%;
|
|
6812
|
-
}.statistic {
|
|
6813
|
-
padding: 18px;
|
|
6814
|
-
flex-basis: 0;
|
|
6815
|
-
flex-grow: 1;
|
|
6816
|
-
gap: 18px;
|
|
6817
|
-
}
|
|
6818
|
-
|
|
6819
|
-
.statistic-change {
|
|
6820
|
-
display: flex;
|
|
6821
|
-
align-items: center;
|
|
6822
|
-
align-self: flex-end;
|
|
6823
|
-
gap: 6px;
|
|
6824
|
-
font-size: 12px;
|
|
6825
|
-
font-weight: 600;
|
|
6826
|
-
line-height: 1;
|
|
6827
|
-
}
|
|
6828
|
-
.statistic-change.is-gray {
|
|
6829
|
-
color: var(--foreground-prominent);
|
|
6830
|
-
}
|
|
6831
|
-
.statistic-change.is-primary {
|
|
6832
|
-
color: var(--primary-600);
|
|
6833
|
-
}
|
|
6834
|
-
.statistic-change.is-danger {
|
|
6835
|
-
color: var(--danger-600);
|
|
6836
|
-
}
|
|
6837
|
-
.statistic-change.is-info {
|
|
6838
|
-
color: var(--info-600);
|
|
6839
|
-
}
|
|
6840
|
-
.statistic-change.is-success {
|
|
6841
|
-
color: var(--success-600);
|
|
6842
|
-
}
|
|
6843
|
-
.statistic-change.is-warning {
|
|
6844
|
-
color: var(--warning-600);
|
|
6845
|
-
}
|
|
6846
|
-
|
|
6847
|
-
.statistic-data {
|
|
6848
|
-
display: flex;
|
|
6849
|
-
flex-flow: column;
|
|
6850
|
-
flex-grow: 1;
|
|
6851
|
-
gap: 9px;
|
|
6852
|
-
line-height: 1;
|
|
6853
|
-
}
|
|
6854
|
-
.statistic-data :is(span) {
|
|
6855
|
-
color: var(--foreground-secondary);
|
|
6856
|
-
}
|
|
6857
|
-
.statistic-data :is(strong) {
|
|
6858
|
-
color: var(--foreground-prominent);
|
|
6859
|
-
font-size: 24px;
|
|
6860
|
-
font-weight: 700;
|
|
6861
|
-
}
|
|
6862
|
-
|
|
6863
|
-
.statistic-icon .icon {
|
|
6864
|
-
font-size: 0.45em;
|
|
6865
|
-
}
|
|
6866
|
-
|
|
6867
|
-
.statistic-image {
|
|
6868
|
-
height: 48px;
|
|
6869
|
-
width: 48px;
|
|
6870
|
-
border-radius: var(--radius);
|
|
6871
|
-
}
|
|
6872
|
-
|
|
6873
|
-
.statistic-horizontal {
|
|
6874
|
-
display: flex;
|
|
6875
|
-
}
|
|
6876
|
-
|
|
6877
|
-
.statistic-vertical {
|
|
6878
|
-
display: flex;
|
|
6879
|
-
align-items: center;
|
|
6880
|
-
flex-flow: column;
|
|
6881
|
-
text-align: center;
|
|
6882
|
-
}
|
|
6883
|
-
.statistic-vertical .statistic-change {
|
|
6884
|
-
align-self: center;
|
|
6885
|
-
}
|
|
6886
|
-
.statistic-vertical .statistic-data {
|
|
6887
|
-
align-items: center;
|
|
6888
6757
|
}.sparkles-container {
|
|
6889
6758
|
z-index: 0;
|
|
6890
6759
|
}
|