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

naver / egjs-flicking / 7191752937

12 Dec 2023 09:07AM UTC coverage: 82.638%. Remained the same
7191752937

push

github

malangfox
chore(release): merge 4.11.2-rc

4533 of 7309 branches covered (0.0%)

Branch coverage included in aggregate %.

11388 of 11957 relevant lines covered (95.24%)

259.32 hits per line

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

33.33
/packages/vue3-flicking/src/FlickingProps.ts
1
/*
2
 * Copyright (c) 2015 NAVER Corp.
3
 * egjs projects are licensed under the MIT license
4
 */
5
import { PropType } from "vue";
6
import { FlickingOptions, Plugin, Status } from "@egjs/flicking";
7

8
export default {
5✔
9
  viewportTag: {
10
    type: String,
11
    default: "div",
12
    required: false
13
  },
14
  cameraTag: {
15
    type: String,
16
    default: "div",
17
    required: false
18
  },
19
  cameraClass: {
20
    type: String,
21
    default: "",
22
    required: false
23
  },
24
  hideBeforeInit: {
25
    type: Boolean,
26
    default: false,
27
    required: false
28
  },
29
  firstPanelSize: {
30
    type: String,
31
    required: false
32
  },
33
  options: {
34
    type: Object as unknown as () => Partial<FlickingOptions>,
35
    default: () => ({}),
×
36
    required: false
37
  },
38
  plugins: {
39
    type: Array as PropType<Plugin[]>,
40
    default: () => ([]),
×
41
    required: false
42
  },
43
  status: {
44
    type: Object as PropType<Status>,
45
    required: false
46
  }
47
};
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