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

naver / egjs-flicking / 3599850031

pending completion
3599850031

push

github

malangfox
chore(release): merge 4.10.4-rc

4436 of 7203 branches covered (61.59%)

Branch coverage included in aggregate %.

8201 of 8758 relevant lines covered (93.64%)

136.65 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