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

naver / egjs-flicking / 4675351575

pending completion
4675351575

push

github

malangfox
chore(release): Release 4.10.7

4465 of 7210 branches covered (61.93%)

Branch coverage included in aggregate %.

8219 of 8777 relevant lines covered (93.64%)

139.03 hits per line

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

33.33
/packages/vue-flicking/src/FlickingProps.ts
1
import { PropType } from "vue";
2
import { RecordPropsDefinition } from "vue/types/options";
3
import { FlickingOptions, Plugin, Status } from "@egjs/flicking";
4

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

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