You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Collect statistics on the use of open source](#Collect-statistics-on-the-use-of-open-source)
16
-
*[Documents](#-documents)
17
-
*[How Cool: Monthly, Weekly, Daily and Various View Types.](#how-cool-monthly-weekly-daily-and-various-view-types)
18
-
*[Easy to Use: Dragging and Resizing a Schedule](#easy-to-use-dragging-and-resizing-a-schedule)
19
-
*[Ready to Use: Default Popups](#ready-to-use-default-popups)
20
-
*[Features](#-features)
21
-
*[Examples](#-examples)
22
-
*[Install](#-install)
23
-
*[Wrappers](#-wrappers)
24
-
*[Usage](#-usage)
25
-
*[Browser Support](#-browser-support)
26
-
*[Pull Request Steps](#-pull-request-steps)
27
-
*[Contributing](#-contributing)
28
-
*[Dependency](#-dependency)
29
-
*[TOAST UI Family](#-toast-ui-family)
30
-
*[Used By](#-used-by)
31
-
*[License](#-license)
32
-
33
-
## Collect statistics on the use of open source
34
-
35
-
TOAST UI Calendar applies Google Analytics (GA) to collect statistics on the use of open source, in order to identify how widely TOAST UI Calendar is used throughout the world. It also serves as important index to determine the future course of projects. location.hostname (e.g. > “ui.toast.com") is to be collected and the sole purpose is nothing but to measure statistics on the usage.
36
-
37
-
To disable GA use the [options](https://nhn.github.io/tui.calendar/latest/global.html#Options):
38
-
39
-
```js
40
-
var calendar =newCalendar('#calendar', {
41
-
usageStatistics:false
42
-
});
43
-
```
14
+
## 📦 Packages
15
+
16
+
The functionality of TOAST UI Calendar is available when using the Plain JavaScript, React, Vue Component.
17
+
18
+
-[toast-ui.calendar](https://github.com/nhn/tui.calendar/tree/main/apps/calendar) - Plain JavaScript component implemented by NHN.
19
+
-[toast-ui.vue-calendar](https://github.com/nhn/tui.calendar/tree/main/apps/vue-calendar) - **Vue** wrapper component implemented by NHN.
20
+
-[toast-ui.react-calendar](https://github.com/nhn/tui.calendar/tree/main/apps/react-calendar) - **React** wrapper component implemented by NHN.
*[Download all sources for each version](https://github.com/nhn/tui.calendar/releases)
157
-
158
-
## 🛍 Wrappers
159
-
160
-
*[toast-ui.vue-calendar](https://github.com/nhn/toast-ui.vue-calendar)**Vue** wrapper component is implemented by [NHN](https://github.com/nhn).
161
-
*[toast-ui.react-calendar](https://github.com/nhn/toast-ui.react-calendar)**React** wrapper component is powered by [NHN](https://github.com/nhn).
162
-
*[ngx-tui-dev](https://github.com/brnrds/ngx-tui-dev): **TypeScript** and **Angular 5** wrapper component is being implemented(ref [#82](https://github.com/nhn/tui.calendar/issues/82)) by [@amanvishnani](https://github.com/amanvishnani) and [@brnrds](https://github.com/brnrds). Thanks for their effort.
163
-
*[vue-tui-calendar](https://github.com/lkmadushan/vue-tuicalendar): **Vue** wrapper component is being implemented(ref [#81](https://github.com/nhn/tui.calendar/issues/81)) by [@lkmadushan](https://github.com/lkmadushan). Thanks for their effort.
164
-
*[tui-calendar-react](https://github.com/IniZio/react-tui-calendar): **React** wrapper component is provided(ref #[134](https://github.com/nhn/tui.calendar/issues/134)) by [@IniZio](https://github.com/IniZio). Thanks for his effort.
165
-
166
-
## 🔨 Usage
167
-
168
-
### HTML
169
-
170
-
Place a `<div></div>` where you want TOAST UI Calendar rendered.
171
-
172
-
```html
173
-
<body>
174
-
...
175
-
<divid="calendar"style="height: 800px;"></div>
176
-
...
177
-
</body>
178
-
```
179
-
180
-
### JavaScript
181
-
182
-
#### Using namespace in browser environment
183
-
184
-
```javascript
185
-
var Calendar =tui.Calendar;
186
-
```
187
-
188
-
#### Using module format in node environment
189
-
190
-
```javascript
191
-
var Calendar =require('tui-calendar'); /* CommonJS */
0 commit comments