• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

uiv-lib / uiv / 7229750628

16 Dec 2023 12:21AM CUT coverage: 86.79%. Remained the same
7229750628

push

github

web-flow
chore(deps): update dependency eslint to v8.56.0

859 of 1065 branches covered (0.0%)

Branch coverage included in aggregate %.

1539 of 1698 relevant lines covered (90.64%)

185.22 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

58.7
/src/components/progressbar/ProgressBarStack.vue
1
<template>
2
  <div
3
    :class="{
4
      'progress-bar': true,
27✔
5
      'progress-bar-striped': striped,
6
      active: striped && active,
7
      [`progress-bar-${type}`]: !!type,
27✔
8
    }"
9
    :style="{
10
      minWidth: minWidth ? '2em' : null,
11
      width: `${modelValue}%`,
12
    }"
13
    role="progressbar"
14
    aria-valuemin="0"
15
    :aria-valuenow="modelValue"
16
    aria-valuemax="100"
17
  >
18
    {{ label ? (labelText ? labelText : `${modelValue}%`) : null }}
19
  </div>
20
</template>
21

22
<script setup>
23
import { progressBarProps } from '../../props/progress-bar.props';
24

25
defineProps({
26
  ...progressBarProps,
27
});
28
</script>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc