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

visgl / deck.gl / 12374868033

17 Dec 2024 02:16PM CUT coverage: 91.707%. Remained the same
12374868033

Pull #9302

github

web-flow
Merge a5ff77e9e into 691baea7e
Pull Request #9302: website: Aggregation Layers move to API reference

6683 of 7307 branches covered (91.46%)

Branch coverage included in aggregate %.

53981 of 58843 relevant lines covered (91.74%)

14918.6 hits per line

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

0.0
/modules/jupyter-widget/src/plugin.js
1
// deck.gl
×
2
// SPDX-License-Identifier: MIT
×
3
// Copyright (c) vis.gl contributors
×
4

×
5
/**
×
6
 * Plugin boilerplate required for JupyterLab
×
7
 * See:
×
8
 * https://github.com/jupyter-widgets/widget-ts-cookiecutter/blob/51e9fed8687e3b9cf1ed2fd307b7675e864f89ae/%7B%7Bcookiecutter.github_project_name%7D%7D/src/plugin.ts
×
9
 */
×
10
import {IJupyterWidgetRegistry} from '@jupyter-widgets/base';
×
11
// eslint-disable-next-line import/no-unresolved
×
12
import * as widgetExports from '../dist/index';
×
13

×
14
const EXTENSION_ID = '@deck.gl/jupyter-widget:plugin';
×
15

×
16
const widgetPlugin = {
×
17
  id: EXTENSION_ID,
×
18
  requires: [IJupyterWidgetRegistry],
×
19
  activate: activateWidgetExtension,
×
20
  autoStart: true
×
21
};
×
22

×
23
export default widgetPlugin;
×
24
function activateWidgetExtension(app, registry) {
×
25
  registry.registerWidget({
×
26
    name: widgetExports.MODULE_NAME,
×
27
    version: widgetExports.MODULE_VERSION,
×
28
    exports: widgetExports
×
29
  });
×
30
}
×
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