@dataloop-ai/components 0.19.151 → 0.19.152
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/package.json
CHANGED
package/src/assets/globals.scss
CHANGED
|
@@ -205,7 +205,7 @@ body {
|
|
|
205
205
|
--dl-color-fill-third: #fbfbfb;
|
|
206
206
|
--dl-color-link: #20abfa;
|
|
207
207
|
--dl-color-cell-background: #fffae2;
|
|
208
|
-
--dl-color-disabled-slider: #
|
|
208
|
+
--dl-color-disabled-slider: #B3B3B3;
|
|
209
209
|
--q-color-positive: #38d079;
|
|
210
210
|
--q-color-warning: #e1b75b;
|
|
211
211
|
|
|
@@ -97,8 +97,8 @@ export function useTablePaginationState(
|
|
|
97
97
|
const computedPagination = computed(() => {
|
|
98
98
|
const pag = pagination.value
|
|
99
99
|
? {
|
|
100
|
-
...
|
|
101
|
-
...
|
|
100
|
+
...pagination.value,
|
|
101
|
+
...innerPagination.value
|
|
102
102
|
}
|
|
103
103
|
: innerPagination.value
|
|
104
104
|
|