Browse Source

base -> core

merge-requests/1/merge
rozetko 3 years ago
parent
commit
0fab5bd35c
  1. 2
      dist/index.d.ts
  2. 46986
      dist/index.js
  3. 2
      dist/types.d.ts
  4. 2
      package.json
  5. 2
      src/index.ts
  6. 2
      src/types.ts
  7. 6
      yarn.lock

2
dist/index.d.ts vendored

@ -1,5 +1,5 @@
import { GaugeTimeSerie, GaugeOptions } from './types';
import { ChartwerkPod } from '@chartwerk/base';
import { ChartwerkPod } from '@chartwerk/core';
export declare class ChartwerkGaugePod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions> {
private _gaugeTransform;
constructor(el: HTMLElement, _series?: GaugeTimeSerie[], _options?: GaugeOptions);

46986
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/types.d.ts vendored

@ -1,4 +1,4 @@
import { TimeSerie, Options } from '@chartwerk/base';
import { TimeSerie, Options } from '@chartwerk/core';
export declare enum Stat {
CURRENT = "current",
MIN = "min",

2
package.json

@ -11,7 +11,7 @@
"author": "CorpGlory",
"license": "Apache-2.0",
"dependencies": {
"@chartwerk/base": "github:chartwerk/base#9d7346ef46a1fd32d694187c3eb6f26cb87dd1b6"
"@chartwerk/core": "github:chartwerk/core#dist"
},
"devDependencies": {
"@types/d3": "^5.7.2",

2
src/index.ts

@ -1,6 +1,6 @@
import { GaugeTimeSerie, GaugeOptions, Stat } from './types';
import { ChartwerkPod, VueChartwerkPodMixin, ZoomType } from '@chartwerk/base';
import { ChartwerkPod, VueChartwerkPodMixin, ZoomType } from '@chartwerk/core';
import * as d3 from 'd3';

2
src/types.ts

@ -1,4 +1,4 @@
import { TimeSerie, Options } from '@chartwerk/base';
import { TimeSerie, Options } from '@chartwerk/core';
export enum Stat {
CURRENT = 'current',

6
yarn.lock

@ -2,9 +2,9 @@
# yarn lockfile v1
"@chartwerk/base@github:chartwerk/base#9d7346ef46a1fd32d694187c3eb6f26cb87dd1b6":
version "0.2.4"
resolved "https://codeload.github.com/chartwerk/base/tar.gz/9d7346ef46a1fd32d694187c3eb6f26cb87dd1b6"
"@chartwerk/core@github:chartwerk/core#dist":
version "0.1.0"
resolved "https://codeload.github.com/chartwerk/core/tar.gz/ca53d7a950ed8d2e34c490badd49b25326bd76a9"
"@types/d3-array@^1":
version "1.2.8"

Loading…
Cancel
Save