@taiga-ui/addon-charts 2.61.0 → 3.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/taiga-ui-addon-charts-components-arc-chart.umd.js +437 -319
- package/bundles/taiga-ui-addon-charts-components-arc-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-axes.umd.js +461 -335
- package/bundles/taiga-ui-addon-charts-components-axes.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-bar-chart.umd.js +451 -342
- package/bundles/taiga-ui-addon-charts-components-bar-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-bar-set.umd.js +401 -298
- package/bundles/taiga-ui-addon-charts-components-bar-set.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-bar.umd.js +396 -293
- package/bundles/taiga-ui-addon-charts-components-bar.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-legend-item.umd.js +408 -295
- package/bundles/taiga-ui-addon-charts-components-legend-item.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-line-chart.umd.js +572 -402
- package/bundles/taiga-ui-addon-charts-components-line-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-line-days-chart.umd.js +544 -392
- package/bundles/taiga-ui-addon-charts-components-line-days-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-pie-chart.umd.js +518 -393
- package/bundles/taiga-ui-addon-charts-components-pie-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components-ring-chart.umd.js +398 -302
- package/bundles/taiga-ui-addon-charts-components-ring-chart.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-components.umd.js +23 -43
- package/bundles/taiga-ui-addon-charts-components.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-constants.umd.js +17 -48
- package/bundles/taiga-ui-addon-charts-constants.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-interfaces.umd.js +2 -2
- package/bundles/taiga-ui-addon-charts-interfaces.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-types.umd.js +2 -2
- package/bundles/taiga-ui-addon-charts-types.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts-utils.umd.js +350 -308
- package/bundles/taiga-ui-addon-charts-utils.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-charts.umd.js +18 -18
- package/bundles/taiga-ui-addon-charts.umd.js.map +1 -1
- package/components/arc-chart/arc-chart.component.d.ts +3 -0
- package/components/arc-chart/arc-chart.module.d.ts +6 -0
- package/components/arc-chart/package.json +2 -5
- package/components/arc-chart/taiga-ui-addon-charts-components-arc-chart.d.ts +1 -0
- package/components/axes/axes.component.d.ts +6 -3
- package/components/axes/axes.module.d.ts +7 -0
- package/components/axes/package.json +2 -5
- package/components/axes/taiga-ui-addon-charts-components-axes.d.ts +1 -0
- package/components/bar/bar.component.d.ts +4 -5
- package/components/bar/bar.module.d.ts +6 -0
- package/components/bar/package.json +2 -5
- package/components/bar/taiga-ui-addon-charts-components-bar.d.ts +1 -0
- package/components/bar-chart/bar-chart.component.d.ts +10 -10
- package/components/bar-chart/bar-chart.module.d.ts +9 -0
- package/components/bar-chart/package.json +2 -5
- package/components/bar-chart/taiga-ui-addon-charts-components-bar-chart.d.ts +1 -0
- package/components/bar-set/bar-set.component.d.ts +4 -5
- package/components/bar-set/bar-set.module.d.ts +7 -0
- package/components/bar-set/package.json +2 -5
- package/components/bar-set/taiga-ui-addon-charts-components-bar-set.d.ts +1 -0
- package/components/legend-item/legend-item.component.d.ts +3 -0
- package/components/legend-item/legend-item.module.d.ts +7 -0
- package/components/legend-item/package.json +2 -5
- package/components/legend-item/taiga-ui-addon-charts-components-legend-item.d.ts +1 -0
- package/components/line-chart/line-chart-hint.directive.d.ts +13 -3
- package/components/line-chart/line-chart.component.d.ts +10 -6
- package/components/line-chart/line-chart.module.d.ts +10 -0
- package/components/line-chart/package.json +2 -5
- package/components/line-chart/taiga-ui-addon-charts-components-line-chart.d.ts +1 -0
- package/components/line-days-chart/line-days-chart-hint.directive.d.ts +10 -3
- package/components/line-days-chart/line-days-chart.component.d.ts +7 -1
- package/components/line-days-chart/line-days-chart.module.d.ts +10 -0
- package/components/line-days-chart/package.json +2 -5
- package/components/line-days-chart/taiga-ui-addon-charts-components-line-days-chart.d.ts +1 -0
- package/components/package.json +2 -5
- package/components/pie-chart/package.json +2 -5
- package/components/pie-chart/pie-chart.component.d.ts +5 -6
- package/components/pie-chart/pie-chart.directive.d.ts +3 -0
- package/components/pie-chart/pie-chart.module.d.ts +10 -0
- package/components/pie-chart/taiga-ui-addon-charts-components-pie-chart.d.ts +1 -0
- package/components/ring-chart/package.json +2 -5
- package/components/ring-chart/ring-chart.component.d.ts +3 -8
- package/components/ring-chart/ring-chart.module.d.ts +8 -0
- package/components/ring-chart/taiga-ui-addon-charts-components-ring-chart.d.ts +1 -0
- package/components/taiga-ui-addon-charts-components.d.ts +1 -0
- package/constants/index.d.ts +0 -2
- package/constants/package.json +2 -5
- package/constants/taiga-ui-addon-charts-constants.d.ts +1 -0
- package/esm2015/components/arc-chart/arc-chart.component.js +57 -45
- package/esm2015/components/arc-chart/arc-chart.module.js +15 -12
- package/esm2015/components/arc-chart/index.js +1 -1
- package/esm2015/components/arc-chart/taiga-ui-addon-charts-components-arc-chart.js +1 -1
- package/esm2015/components/axes/axes.component.js +55 -38
- package/esm2015/components/axes/axes.module.js +15 -12
- package/esm2015/components/axes/index.js +1 -1
- package/esm2015/components/axes/taiga-ui-addon-charts-components-axes.js +1 -1
- package/esm2015/components/bar/bar.component.js +29 -35
- package/esm2015/components/bar/bar.module.js +15 -12
- package/esm2015/components/bar/index.js +1 -1
- package/esm2015/components/bar/taiga-ui-addon-charts-components-bar.js +1 -1
- package/esm2015/components/bar-chart/bar-chart.component.js +51 -56
- package/esm2015/components/bar-chart/bar-chart.module.js +28 -15
- package/esm2015/components/bar-chart/index.js +1 -1
- package/esm2015/components/bar-chart/taiga-ui-addon-charts-components-bar-chart.js +1 -1
- package/esm2015/components/bar-set/bar-set.component.js +27 -33
- package/esm2015/components/bar-set/bar-set.module.js +15 -12
- package/esm2015/components/bar-set/index.js +1 -1
- package/esm2015/components/bar-set/taiga-ui-addon-charts-components-bar-set.js +1 -1
- package/esm2015/components/index.js +1 -1
- package/esm2015/components/legend-item/index.js +1 -1
- package/esm2015/components/legend-item/legend-item.component.js +36 -30
- package/esm2015/components/legend-item/legend-item.module.js +15 -12
- package/esm2015/components/legend-item/taiga-ui-addon-charts-components-legend-item.js +1 -1
- package/esm2015/components/line-chart/index.js +1 -1
- package/esm2015/components/line-chart/line-chart-hint.directive.js +54 -39
- package/esm2015/components/line-chart/line-chart.component.js +81 -54
- package/esm2015/components/line-chart/line-chart.module.js +28 -13
- package/esm2015/components/line-chart/taiga-ui-addon-charts-components-line-chart.js +1 -1
- package/esm2015/components/line-days-chart/index.js +1 -1
- package/esm2015/components/line-days-chart/line-days-chart-hint.directive.js +46 -35
- package/esm2015/components/line-days-chart/line-days-chart.component.js +72 -48
- package/esm2015/components/line-days-chart/line-days-chart.module.js +29 -12
- package/esm2015/components/line-days-chart/taiga-ui-addon-charts-components-line-days-chart.js +1 -1
- package/esm2015/components/pie-chart/index.js +1 -1
- package/esm2015/components/pie-chart/pie-chart.component.js +50 -50
- package/esm2015/components/pie-chart/pie-chart.directive.js +40 -32
- package/esm2015/components/pie-chart/pie-chart.module.js +28 -15
- package/esm2015/components/pie-chart/taiga-ui-addon-charts-components-pie-chart.js +1 -1
- package/esm2015/components/ring-chart/index.js +1 -1
- package/esm2015/components/ring-chart/ring-chart.component.js +27 -38
- package/esm2015/components/ring-chart/ring-chart.module.js +15 -12
- package/esm2015/components/ring-chart/taiga-ui-addon-charts-components-ring-chart.js +1 -1
- package/esm2015/components/taiga-ui-addon-charts-components.js +1 -1
- package/esm2015/constants/index.js +1 -3
- package/esm2015/constants/line-handlers.js +1 -1
- package/esm2015/constants/taiga-ui-addon-charts-constants.js +1 -1
- package/esm2015/index.js +3 -2
- package/esm2015/interfaces/index.js +2 -1
- package/esm2015/interfaces/line-chart-hint-context.js +2 -1
- package/esm2015/interfaces/taiga-ui-addon-charts-interfaces.js +2 -1
- package/esm2015/taiga-ui-addon-charts.js +1 -1
- package/esm2015/types/index.js +3 -1
- package/esm2015/types/line-handler.js +2 -1
- package/esm2015/types/line-type.js +2 -1
- package/esm2015/types/taiga-ui-addon-charts-types.js +2 -1
- package/esm2015/utils/control-point.js +6 -11
- package/esm2015/utils/describe-sector.js +6 -9
- package/esm2015/utils/draw-curve.js +5 -10
- package/esm2015/utils/draw-line.js +2 -7
- package/esm2015/utils/draw.js +6 -11
- package/esm2015/utils/index.js +1 -1
- package/esm2015/utils/line-angle.js +2 -7
- package/esm2015/utils/line-length.js +2 -7
- package/esm2015/utils/taiga-ui-addon-charts-utils.js +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-arc-chart.js +68 -51
- package/fesm2015/taiga-ui-addon-charts-components-arc-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-axes.js +68 -46
- package/fesm2015/taiga-ui-addon-charts-components-axes.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-bar-chart.js +77 -68
- package/fesm2015/taiga-ui-addon-charts-components-bar-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-bar-set.js +40 -41
- package/fesm2015/taiga-ui-addon-charts-components-bar-set.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-bar.js +41 -42
- package/fesm2015/taiga-ui-addon-charts-components-bar.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-legend-item.js +50 -38
- package/fesm2015/taiga-ui-addon-charts-components-legend-item.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-line-chart.js +154 -97
- package/fesm2015/taiga-ui-addon-charts-components-line-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-line-days-chart.js +137 -86
- package/fesm2015/taiga-ui-addon-charts-components-line-days-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-pie-chart.js +131 -109
- package/fesm2015/taiga-ui-addon-charts-components-pie-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components-ring-chart.js +41 -47
- package/fesm2015/taiga-ui-addon-charts-components-ring-chart.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-components.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-constants.js +1 -34
- package/fesm2015/taiga-ui-addon-charts-constants.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-interfaces.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-types.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts-utils.js +18 -51
- package/fesm2015/taiga-ui-addon-charts-utils.js.map +1 -1
- package/fesm2015/taiga-ui-addon-charts.js +2 -1
- package/fesm2015/taiga-ui-addon-charts.js.map +1 -1
- package/index.d.ts +0 -1
- package/interfaces/index.d.ts +0 -1
- package/interfaces/package.json +2 -5
- package/interfaces/taiga-ui-addon-charts-interfaces.d.ts +1 -0
- package/package.json +11 -14
- package/taiga-ui-addon-charts.d.ts +1 -0
- package/types/index.d.ts +0 -1
- package/types/line-handler.d.ts +2 -2
- package/types/line-type.d.ts +1 -1
- package/types/package.json +2 -5
- package/types/taiga-ui-addon-charts-types.d.ts +1 -0
- package/utils/control-point.d.ts +1 -5
- package/utils/describe-sector.d.ts +1 -3
- package/utils/draw-curve.d.ts +1 -5
- package/utils/draw-line.d.ts +1 -5
- package/utils/draw.d.ts +1 -5
- package/utils/line-angle.d.ts +1 -5
- package/utils/line-length.d.ts +1 -5
- package/utils/package.json +2 -5
- package/utils/taiga-ui-addon-charts-utils.d.ts +1 -0
- package/bundles/taiga-ui-addon-charts-components-arc-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-arc-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-axes.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-axes.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-bar-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-bar-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-bar-set.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-bar-set.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-bar.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-bar.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-legend-item.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-legend-item.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-line-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-line-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-line-days-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-line-days-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-pie-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-pie-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components-ring-chart.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components-ring-chart.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-components.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-components.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-constants.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-constants.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-enums.umd.js +0 -23
- package/bundles/taiga-ui-addon-charts-enums.umd.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-enums.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-enums.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-interfaces.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-interfaces.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-types.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-types.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts-utils.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts-utils.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-charts.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-charts.umd.min.js.map +0 -1
- package/components/arc-chart/taiga-ui-addon-charts-components-arc-chart.metadata.json +0 -1
- package/components/axes/taiga-ui-addon-charts-components-axes.metadata.json +0 -1
- package/components/bar/taiga-ui-addon-charts-components-bar.metadata.json +0 -1
- package/components/bar-chart/taiga-ui-addon-charts-components-bar-chart.metadata.json +0 -1
- package/components/bar-set/taiga-ui-addon-charts-components-bar-set.metadata.json +0 -1
- package/components/legend-item/taiga-ui-addon-charts-components-legend-item.metadata.json +0 -1
- package/components/line-chart/taiga-ui-addon-charts-components-line-chart.metadata.json +0 -1
- package/components/line-days-chart/taiga-ui-addon-charts-components-line-days-chart.metadata.json +0 -1
- package/components/pie-chart/taiga-ui-addon-charts-components-pie-chart.metadata.json +0 -1
- package/components/ring-chart/taiga-ui-addon-charts-components-ring-chart.metadata.json +0 -1
- package/components/taiga-ui-addon-charts-components.metadata.json +0 -1
- package/constants/default-color-handler.d.ts +0 -3
- package/constants/default-colors.d.ts +0 -3
- package/constants/taiga-ui-addon-charts-constants.metadata.json +0 -1
- package/enums/index.d.ts +0 -1
- package/enums/line-type.d.ts +0 -11
- package/enums/package.json +0 -13
- package/enums/taiga-ui-addon-charts-enums.d.ts +0 -4
- package/enums/taiga-ui-addon-charts-enums.metadata.json +0 -1
- package/esm2015/constants/default-color-handler.js +0 -4
- package/esm2015/constants/default-colors.js +0 -30
- package/esm2015/enums/index.js +0 -2
- package/esm2015/enums/line-type.js +0 -13
- package/esm2015/enums/taiga-ui-addon-charts-enums.js +0 -5
- package/esm2015/interfaces/ring-chart-context.js +0 -1
- package/esm2015/types/color-handler.js +0 -1
- package/esm5/components/arc-chart/arc-chart.component.js +0 -149
- package/esm5/components/arc-chart/arc-chart.module.js +0 -18
- package/esm5/components/arc-chart/index.js +0 -3
- package/esm5/components/arc-chart/taiga-ui-addon-charts-components-arc-chart.js +0 -5
- package/esm5/components/axes/axes.component.js +0 -131
- package/esm5/components/axes/axes.module.js +0 -19
- package/esm5/components/axes/index.js +0 -3
- package/esm5/components/axes/taiga-ui-addon-charts-components-axes.js +0 -5
- package/esm5/components/bar/bar.component.js +0 -55
- package/esm5/components/bar/bar.module.js +0 -18
- package/esm5/components/bar/index.js +0 -3
- package/esm5/components/bar/taiga-ui-addon-charts-components-bar.js +0 -5
- package/esm5/components/bar-chart/bar-chart.component.js +0 -118
- package/esm5/components/bar-chart/bar-chart.module.js +0 -30
- package/esm5/components/bar-chart/index.js +0 -3
- package/esm5/components/bar-chart/taiga-ui-addon-charts-components-bar-chart.js +0 -5
- package/esm5/components/bar-set/bar-set.component.js +0 -83
- package/esm5/components/bar-set/bar-set.module.js +0 -19
- package/esm5/components/bar-set/index.js +0 -3
- package/esm5/components/bar-set/taiga-ui-addon-charts-components-bar-set.js +0 -5
- package/esm5/components/index.js +0 -11
- package/esm5/components/legend-item/index.js +0 -3
- package/esm5/components/legend-item/legend-item.component.js +0 -59
- package/esm5/components/legend-item/legend-item.module.js +0 -19
- package/esm5/components/legend-item/taiga-ui-addon-charts-components-legend-item.js +0 -5
- package/esm5/components/line-chart/index.js +0 -4
- package/esm5/components/line-chart/line-chart-hint.directive.js +0 -78
- package/esm5/components/line-chart/line-chart.component.js +0 -246
- package/esm5/components/line-chart/line-chart.module.js +0 -29
- package/esm5/components/line-chart/taiga-ui-addon-charts-components-line-chart.js +0 -5
- package/esm5/components/line-days-chart/index.js +0 -4
- package/esm5/components/line-days-chart/line-days-chart-hint.directive.js +0 -83
- package/esm5/components/line-days-chart/line-days-chart.component.js +0 -204
- package/esm5/components/line-days-chart/line-days-chart.module.js +0 -21
- package/esm5/components/line-days-chart/taiga-ui-addon-charts-components-line-days-chart.js +0 -5
- package/esm5/components/pie-chart/index.js +0 -4
- package/esm5/components/pie-chart/pie-chart.component.js +0 -168
- package/esm5/components/pie-chart/pie-chart.directive.js +0 -66
- package/esm5/components/pie-chart/pie-chart.module.js +0 -28
- package/esm5/components/pie-chart/taiga-ui-addon-charts-components-pie-chart.js +0 -5
- package/esm5/components/ring-chart/index.js +0 -3
- package/esm5/components/ring-chart/ring-chart.component.js +0 -67
- package/esm5/components/ring-chart/ring-chart.module.js +0 -20
- package/esm5/components/ring-chart/taiga-ui-addon-charts-components-ring-chart.js +0 -5
- package/esm5/components/taiga-ui-addon-charts-components.js +0 -5
- package/esm5/constants/default-color-handler.js +0 -4
- package/esm5/constants/default-colors.js +0 -30
- package/esm5/constants/index.js +0 -4
- package/esm5/constants/line-handlers.js +0 -5
- package/esm5/constants/taiga-ui-addon-charts-constants.js +0 -5
- package/esm5/enums/index.js +0 -2
- package/esm5/enums/line-type.js +0 -13
- package/esm5/enums/taiga-ui-addon-charts-enums.js +0 -5
- package/esm5/index.js +0 -4
- package/esm5/interfaces/index.js +0 -1
- package/esm5/interfaces/line-chart-hint-context.js +0 -1
- package/esm5/interfaces/ring-chart-context.js +0 -1
- package/esm5/interfaces/taiga-ui-addon-charts-interfaces.js +0 -4
- package/esm5/taiga-ui-addon-charts.js +0 -5
- package/esm5/types/color-handler.js +0 -1
- package/esm5/types/index.js +0 -1
- package/esm5/types/line-handler.js +0 -1
- package/esm5/types/line-type.js +0 -1
- package/esm5/types/taiga-ui-addon-charts-types.js +0 -4
- package/esm5/utils/control-point.js +0 -19
- package/esm5/utils/describe-sector.js +0 -36
- package/esm5/utils/draw-curve.js +0 -13
- package/esm5/utils/draw-line.js +0 -9
- package/esm5/utils/draw.js +0 -14
- package/esm5/utils/index.js +0 -8
- package/esm5/utils/line-angle.js +0 -11
- package/esm5/utils/line-length.js +0 -11
- package/esm5/utils/taiga-ui-addon-charts-utils.js +0 -5
- package/fesm2015/taiga-ui-addon-charts-enums.js +0 -19
- package/fesm2015/taiga-ui-addon-charts-enums.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-arc-chart.js +0 -168
- package/fesm5/taiga-ui-addon-charts-components-arc-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-axes.js +0 -151
- package/fesm5/taiga-ui-addon-charts-components-axes.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-bar-chart.js +0 -149
- package/fesm5/taiga-ui-addon-charts-components-bar-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-bar-set.js +0 -104
- package/fesm5/taiga-ui-addon-charts-components-bar-set.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-bar.js +0 -75
- package/fesm5/taiga-ui-addon-charts-components-bar.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-legend-item.js +0 -79
- package/fesm5/taiga-ui-addon-charts-components-legend-item.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-line-chart.js +0 -343
- package/fesm5/taiga-ui-addon-charts-components-line-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-line-days-chart.js +0 -302
- package/fesm5/taiga-ui-addon-charts-components-line-days-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-pie-chart.js +0 -255
- package/fesm5/taiga-ui-addon-charts-components-pie-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components-ring-chart.js +0 -89
- package/fesm5/taiga-ui-addon-charts-components-ring-chart.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-components.js +0 -15
- package/fesm5/taiga-ui-addon-charts-components.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-constants.js +0 -44
- package/fesm5/taiga-ui-addon-charts-constants.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-enums.js +0 -19
- package/fesm5/taiga-ui-addon-charts-enums.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-interfaces.js +0 -4
- package/fesm5/taiga-ui-addon-charts-interfaces.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-types.js +0 -4
- package/fesm5/taiga-ui-addon-charts-types.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts-utils.js +0 -115
- package/fesm5/taiga-ui-addon-charts-utils.js.map +0 -1
- package/fesm5/taiga-ui-addon-charts.js +0 -8
- package/fesm5/taiga-ui-addon-charts.js.map +0 -1
- package/interfaces/ring-chart-context.d.ts +0 -4
- package/interfaces/taiga-ui-addon-charts-interfaces.metadata.json +0 -1
- package/taiga-ui-addon-charts.metadata.json +0 -1
- package/types/color-handler.d.ts +0 -3
- package/types/taiga-ui-addon-charts-types.metadata.json +0 -1
- package/utils/taiga-ui-addon-charts-utils.metadata.json +0 -1
|
@@ -1,300 +1,35 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@taiga-ui/cdk')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@taiga-ui/addon-charts/utils', ['exports', '@taiga-ui/cdk'], factory) :
|
|
4
|
-
(global = global || self, factory((global[
|
|
5
|
-
}(this, (function (exports, cdk) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"]["addon-charts"] = global["taiga-ui"]["addon-charts"] || {}, global["taiga-ui"]["addon-charts"].utils = {}), global.cdk));
|
|
5
|
+
})(this, (function (exports, cdk) { 'use strict';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
Copyright (c) Microsoft Corporation.
|
|
9
|
-
|
|
10
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
11
|
-
purpose with or without fee is hereby granted.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
14
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
15
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
16
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
17
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
18
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
20
|
-
***************************************************************************** */
|
|
21
|
-
/* global Reflect, Promise */
|
|
22
|
-
|
|
23
|
-
var extendStatics = function(d, b) {
|
|
24
|
-
extendStatics = Object.setPrototypeOf ||
|
|
25
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
26
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
27
|
-
return extendStatics(d, b);
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
function __extends(d, b) {
|
|
31
|
-
if (typeof b !== "function" && b !== null)
|
|
32
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
33
|
-
extendStatics(d, b);
|
|
34
|
-
function __() { this.constructor = d; }
|
|
35
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
var __assign = function() {
|
|
39
|
-
__assign = Object.assign || function __assign(t) {
|
|
40
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
41
|
-
s = arguments[i];
|
|
42
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
43
|
-
}
|
|
44
|
-
return t;
|
|
45
|
-
};
|
|
46
|
-
return __assign.apply(this, arguments);
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
function __rest(s, e) {
|
|
50
|
-
var t = {};
|
|
51
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
52
|
-
t[p] = s[p];
|
|
53
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
54
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
55
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
56
|
-
t[p[i]] = s[p[i]];
|
|
57
|
-
}
|
|
58
|
-
return t;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
function __decorate(decorators, target, key, desc) {
|
|
62
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
63
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
64
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
65
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
function __param(paramIndex, decorator) {
|
|
69
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
function __metadata(metadataKey, metadataValue) {
|
|
73
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
function __awaiter(thisArg, _arguments, P, generator) {
|
|
77
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
78
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
79
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
80
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
81
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
82
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
83
|
-
});
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
function __generator(thisArg, body) {
|
|
87
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
88
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
89
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
90
|
-
function step(op) {
|
|
91
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
92
|
-
while (_) try {
|
|
93
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
94
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
95
|
-
switch (op[0]) {
|
|
96
|
-
case 0: case 1: t = op; break;
|
|
97
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
98
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
99
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
100
|
-
default:
|
|
101
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
102
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
103
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
104
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
105
|
-
if (t[2]) _.ops.pop();
|
|
106
|
-
_.trys.pop(); continue;
|
|
107
|
-
}
|
|
108
|
-
op = body.call(thisArg, _);
|
|
109
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
110
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
var __createBinding = Object.create ? (function(o, m, k, k2) {
|
|
115
|
-
if (k2 === undefined) k2 = k;
|
|
116
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
117
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
118
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
119
|
-
}
|
|
120
|
-
Object.defineProperty(o, k2, desc);
|
|
121
|
-
}) : (function(o, m, k, k2) {
|
|
122
|
-
if (k2 === undefined) k2 = k;
|
|
123
|
-
o[k2] = m[k];
|
|
124
|
-
});
|
|
125
|
-
|
|
126
|
-
function __exportStar(m, o) {
|
|
127
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
function __values(o) {
|
|
131
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
132
|
-
if (m) return m.call(o);
|
|
133
|
-
if (o && typeof o.length === "number") return {
|
|
134
|
-
next: function () {
|
|
135
|
-
if (o && i >= o.length) o = void 0;
|
|
136
|
-
return { value: o && o[i++], done: !o };
|
|
137
|
-
}
|
|
138
|
-
};
|
|
139
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
function __read(o, n) {
|
|
143
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
144
|
-
if (!m) return o;
|
|
145
|
-
var i = m.call(o), r, ar = [], e;
|
|
146
|
-
try {
|
|
147
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
148
|
-
}
|
|
149
|
-
catch (error) { e = { error: error }; }
|
|
150
|
-
finally {
|
|
151
|
-
try {
|
|
152
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
153
|
-
}
|
|
154
|
-
finally { if (e) throw e.error; }
|
|
155
|
-
}
|
|
156
|
-
return ar;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
/** @deprecated */
|
|
160
|
-
function __spread() {
|
|
161
|
-
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
162
|
-
ar = ar.concat(__read(arguments[i]));
|
|
163
|
-
return ar;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/** @deprecated */
|
|
167
|
-
function __spreadArrays() {
|
|
168
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
169
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
170
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
171
|
-
r[k] = a[j];
|
|
172
|
-
return r;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
function __spreadArray(to, from, pack) {
|
|
176
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
177
|
-
if (ar || !(i in from)) {
|
|
178
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
179
|
-
ar[i] = from[i];
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
function __await(v) {
|
|
186
|
-
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
190
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
191
|
-
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
192
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
193
|
-
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
194
|
-
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
|
195
|
-
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
196
|
-
function fulfill(value) { resume("next", value); }
|
|
197
|
-
function reject(value) { resume("throw", value); }
|
|
198
|
-
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
function __asyncDelegator(o) {
|
|
202
|
-
var i, p;
|
|
203
|
-
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
204
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
function __asyncValues(o) {
|
|
208
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
209
|
-
var m = o[Symbol.asyncIterator], i;
|
|
210
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
211
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
212
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
function __makeTemplateObject(cooked, raw) {
|
|
216
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
217
|
-
return cooked;
|
|
218
|
-
};
|
|
219
|
-
|
|
220
|
-
var __setModuleDefault = Object.create ? (function(o, v) {
|
|
221
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
222
|
-
}) : function(o, v) {
|
|
223
|
-
o["default"] = v;
|
|
224
|
-
};
|
|
225
|
-
|
|
226
|
-
function __importStar(mod) {
|
|
227
|
-
if (mod && mod.__esModule) return mod;
|
|
228
|
-
var result = {};
|
|
229
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
230
|
-
__setModuleDefault(result, mod);
|
|
231
|
-
return result;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
function __importDefault(mod) {
|
|
235
|
-
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
239
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
240
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
241
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
245
|
-
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
246
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
247
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
248
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
function __classPrivateFieldIn(state, receiver) {
|
|
252
|
-
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
|
|
253
|
-
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
/**
|
|
257
|
-
* @deprecated: use {@link tuiLineAngle} instead
|
|
258
|
-
*/
|
|
259
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
260
|
-
function lineAngle(a, b) {
|
|
7
|
+
function tuiLineAngle(a, b) {
|
|
261
8
|
var x = b[0] - a[0];
|
|
262
9
|
var y = b[1] - a[1];
|
|
263
10
|
return Math.atan2(y, x);
|
|
264
11
|
}
|
|
265
|
-
var tuiLineAngle = lineAngle;
|
|
266
12
|
|
|
267
|
-
|
|
268
|
-
* @deprecated: use {@link tuiLineLength} instead
|
|
269
|
-
*/
|
|
270
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
271
|
-
function lineLength(a, b) {
|
|
13
|
+
function tuiLineLength(a, b) {
|
|
272
14
|
var x = b[0] - a[0];
|
|
273
15
|
var y = b[1] - a[1];
|
|
274
16
|
return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
|
|
275
17
|
}
|
|
276
|
-
var tuiLineLength = lineLength;
|
|
277
18
|
|
|
278
|
-
|
|
279
|
-
* @deprecated: use {@link tuiControlPoint} instead
|
|
280
|
-
*/
|
|
281
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
282
|
-
function controlPoint(current, previous, next, reverse, smoothing) {
|
|
19
|
+
function tuiControlPoint(current, previous, next, reverse, smoothing) {
|
|
283
20
|
if (reverse === void 0) { reverse = false; }
|
|
284
21
|
if (smoothing === void 0) { smoothing = 0.2; }
|
|
285
22
|
var p = previous || current;
|
|
286
23
|
var n = next || current;
|
|
287
|
-
var angle =
|
|
288
|
-
var length =
|
|
24
|
+
var angle = tuiLineAngle(p, n) + (reverse ? Math.PI : 0);
|
|
25
|
+
var length = tuiLineLength(p, n) * smoothing;
|
|
289
26
|
var x = current[0] + Math.cos(angle) * length;
|
|
290
27
|
var y = current[1] + Math.sin(angle) * length;
|
|
291
28
|
return [x, y];
|
|
292
29
|
}
|
|
293
|
-
var tuiControlPoint = controlPoint;
|
|
294
30
|
|
|
295
31
|
var EMPTY = "M 100 0 A 100 100 0 1 1 100 0 L 0 0";
|
|
296
32
|
/**
|
|
297
|
-
* @deprecated: use {@link tuiDescribeSector} instead
|
|
298
33
|
* Describes a normalized sector by angles. Normalized meaning it supposed to work with
|
|
299
34
|
* SVG with viewBox="-1 -1 2 2" so that 0 coordinates in cartesian and polar match the same spot.
|
|
300
35
|
* Everything is multiplied by 100 (including viewBox of SVG to host this) so IE properly
|
|
@@ -303,15 +38,14 @@
|
|
|
303
38
|
* @param startAngle starting angle in degrees
|
|
304
39
|
* @param endAngle ending angle in degrees
|
|
305
40
|
*/
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
var
|
|
309
|
-
var endRad = cdk.toRadians(endAngle);
|
|
41
|
+
function tuiDescribeSector(startAngle, endAngle) {
|
|
42
|
+
var startRad = cdk.tuiToRadians(startAngle);
|
|
43
|
+
var endRad = cdk.tuiToRadians(endAngle);
|
|
310
44
|
var startX = Math.cos(startRad) * 100;
|
|
311
45
|
var startY = Math.sin(startRad) * 100;
|
|
312
46
|
var endX = Math.cos(endRad) * 100;
|
|
313
47
|
var endY = Math.sin(endRad) * 100;
|
|
314
|
-
var largeArcFlag = cdk.
|
|
48
|
+
var largeArcFlag = cdk.tuiToInt(endAngle - startAngle > 180);
|
|
315
49
|
var result = [
|
|
316
50
|
"M",
|
|
317
51
|
startX,
|
|
@@ -325,47 +59,355 @@
|
|
|
325
59
|
];
|
|
326
60
|
return isNaN(endX) ? EMPTY : result.join(" ");
|
|
327
61
|
}
|
|
328
|
-
var tuiDescribeSector = describeSector;
|
|
329
62
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
63
|
+
/******************************************************************************
|
|
64
|
+
Copyright (c) Microsoft Corporation.
|
|
65
|
+
|
|
66
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
67
|
+
purpose with or without fee is hereby granted.
|
|
68
|
+
|
|
69
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
70
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
71
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
72
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
73
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
74
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
75
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
76
|
+
***************************************************************************** */
|
|
77
|
+
/* global Reflect, Promise */
|
|
78
|
+
var extendStatics = function (d, b) {
|
|
79
|
+
extendStatics = Object.setPrototypeOf ||
|
|
80
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
81
|
+
function (d, b) { for (var p in b)
|
|
82
|
+
if (Object.prototype.hasOwnProperty.call(b, p))
|
|
83
|
+
d[p] = b[p]; };
|
|
84
|
+
return extendStatics(d, b);
|
|
85
|
+
};
|
|
86
|
+
function __extends(d, b) {
|
|
87
|
+
if (typeof b !== "function" && b !== null)
|
|
88
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
89
|
+
extendStatics(d, b);
|
|
90
|
+
function __() { this.constructor = d; }
|
|
91
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
92
|
+
}
|
|
93
|
+
var __assign = function () {
|
|
94
|
+
__assign = Object.assign || function __assign(t) {
|
|
95
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
96
|
+
s = arguments[i];
|
|
97
|
+
for (var p in s)
|
|
98
|
+
if (Object.prototype.hasOwnProperty.call(s, p))
|
|
99
|
+
t[p] = s[p];
|
|
100
|
+
}
|
|
101
|
+
return t;
|
|
102
|
+
};
|
|
103
|
+
return __assign.apply(this, arguments);
|
|
104
|
+
};
|
|
105
|
+
function __rest(s, e) {
|
|
106
|
+
var t = {};
|
|
107
|
+
for (var p in s)
|
|
108
|
+
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
109
|
+
t[p] = s[p];
|
|
110
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
111
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
112
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
113
|
+
t[p[i]] = s[p[i]];
|
|
114
|
+
}
|
|
115
|
+
return t;
|
|
116
|
+
}
|
|
117
|
+
function __decorate(decorators, target, key, desc) {
|
|
118
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
119
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
120
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
121
|
+
else
|
|
122
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
123
|
+
if (d = decorators[i])
|
|
124
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
125
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
126
|
+
}
|
|
127
|
+
function __param(paramIndex, decorator) {
|
|
128
|
+
return function (target, key) { decorator(target, key, paramIndex); };
|
|
129
|
+
}
|
|
130
|
+
function __metadata(metadataKey, metadataValue) {
|
|
131
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
132
|
+
return Reflect.metadata(metadataKey, metadataValue);
|
|
133
|
+
}
|
|
134
|
+
function __awaiter(thisArg, _arguments, P, generator) {
|
|
135
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
136
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
137
|
+
function fulfilled(value) { try {
|
|
138
|
+
step(generator.next(value));
|
|
139
|
+
}
|
|
140
|
+
catch (e) {
|
|
141
|
+
reject(e);
|
|
142
|
+
} }
|
|
143
|
+
function rejected(value) { try {
|
|
144
|
+
step(generator["throw"](value));
|
|
145
|
+
}
|
|
146
|
+
catch (e) {
|
|
147
|
+
reject(e);
|
|
148
|
+
} }
|
|
149
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
150
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
function __generator(thisArg, body) {
|
|
154
|
+
var _ = { label: 0, sent: function () { if (t[0] & 1)
|
|
155
|
+
throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
156
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
|
|
157
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
158
|
+
function step(op) {
|
|
159
|
+
if (f)
|
|
160
|
+
throw new TypeError("Generator is already executing.");
|
|
161
|
+
while (_)
|
|
162
|
+
try {
|
|
163
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
|
|
164
|
+
return t;
|
|
165
|
+
if (y = 0, t)
|
|
166
|
+
op = [op[0] & 2, t.value];
|
|
167
|
+
switch (op[0]) {
|
|
168
|
+
case 0:
|
|
169
|
+
case 1:
|
|
170
|
+
t = op;
|
|
171
|
+
break;
|
|
172
|
+
case 4:
|
|
173
|
+
_.label++;
|
|
174
|
+
return { value: op[1], done: false };
|
|
175
|
+
case 5:
|
|
176
|
+
_.label++;
|
|
177
|
+
y = op[1];
|
|
178
|
+
op = [0];
|
|
179
|
+
continue;
|
|
180
|
+
case 7:
|
|
181
|
+
op = _.ops.pop();
|
|
182
|
+
_.trys.pop();
|
|
183
|
+
continue;
|
|
184
|
+
default:
|
|
185
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
186
|
+
_ = 0;
|
|
187
|
+
continue;
|
|
188
|
+
}
|
|
189
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
|
|
190
|
+
_.label = op[1];
|
|
191
|
+
break;
|
|
192
|
+
}
|
|
193
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
194
|
+
_.label = t[1];
|
|
195
|
+
t = op;
|
|
196
|
+
break;
|
|
197
|
+
}
|
|
198
|
+
if (t && _.label < t[2]) {
|
|
199
|
+
_.label = t[2];
|
|
200
|
+
_.ops.push(op);
|
|
201
|
+
break;
|
|
202
|
+
}
|
|
203
|
+
if (t[2])
|
|
204
|
+
_.ops.pop();
|
|
205
|
+
_.trys.pop();
|
|
206
|
+
continue;
|
|
207
|
+
}
|
|
208
|
+
op = body.call(thisArg, _);
|
|
209
|
+
}
|
|
210
|
+
catch (e) {
|
|
211
|
+
op = [6, e];
|
|
212
|
+
y = 0;
|
|
213
|
+
}
|
|
214
|
+
finally {
|
|
215
|
+
f = t = 0;
|
|
216
|
+
}
|
|
217
|
+
if (op[0] & 5)
|
|
218
|
+
throw op[1];
|
|
219
|
+
return { value: op[0] ? op[1] : void 0, done: true };
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
223
|
+
if (k2 === undefined)
|
|
224
|
+
k2 = k;
|
|
225
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
226
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
227
|
+
desc = { enumerable: true, get: function () { return m[k]; } };
|
|
228
|
+
}
|
|
229
|
+
Object.defineProperty(o, k2, desc);
|
|
230
|
+
}) : (function (o, m, k, k2) {
|
|
231
|
+
if (k2 === undefined)
|
|
232
|
+
k2 = k;
|
|
233
|
+
o[k2] = m[k];
|
|
234
|
+
});
|
|
235
|
+
function __exportStar(m, o) {
|
|
236
|
+
for (var p in m)
|
|
237
|
+
if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
|
|
238
|
+
__createBinding(o, m, p);
|
|
239
|
+
}
|
|
240
|
+
function __values(o) {
|
|
241
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
242
|
+
if (m)
|
|
243
|
+
return m.call(o);
|
|
244
|
+
if (o && typeof o.length === "number")
|
|
245
|
+
return {
|
|
246
|
+
next: function () {
|
|
247
|
+
if (o && i >= o.length)
|
|
248
|
+
o = void 0;
|
|
249
|
+
return { value: o && o[i++], done: !o };
|
|
250
|
+
}
|
|
251
|
+
};
|
|
252
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
253
|
+
}
|
|
254
|
+
function __read(o, n) {
|
|
255
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
256
|
+
if (!m)
|
|
257
|
+
return o;
|
|
258
|
+
var i = m.call(o), r, ar = [], e;
|
|
259
|
+
try {
|
|
260
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
|
|
261
|
+
ar.push(r.value);
|
|
262
|
+
}
|
|
263
|
+
catch (error) {
|
|
264
|
+
e = { error: error };
|
|
265
|
+
}
|
|
266
|
+
finally {
|
|
267
|
+
try {
|
|
268
|
+
if (r && !r.done && (m = i["return"]))
|
|
269
|
+
m.call(i);
|
|
270
|
+
}
|
|
271
|
+
finally {
|
|
272
|
+
if (e)
|
|
273
|
+
throw e.error;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
return ar;
|
|
277
|
+
}
|
|
278
|
+
/** @deprecated */
|
|
279
|
+
function __spread() {
|
|
280
|
+
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
281
|
+
ar = ar.concat(__read(arguments[i]));
|
|
282
|
+
return ar;
|
|
283
|
+
}
|
|
284
|
+
/** @deprecated */
|
|
285
|
+
function __spreadArrays() {
|
|
286
|
+
for (var s = 0, i = 0, il = arguments.length; i < il; i++)
|
|
287
|
+
s += arguments[i].length;
|
|
288
|
+
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
289
|
+
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
290
|
+
r[k] = a[j];
|
|
291
|
+
return r;
|
|
292
|
+
}
|
|
293
|
+
function __spreadArray(to, from, pack) {
|
|
294
|
+
if (pack || arguments.length === 2)
|
|
295
|
+
for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
296
|
+
if (ar || !(i in from)) {
|
|
297
|
+
if (!ar)
|
|
298
|
+
ar = Array.prototype.slice.call(from, 0, i);
|
|
299
|
+
ar[i] = from[i];
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
303
|
+
}
|
|
304
|
+
function __await(v) {
|
|
305
|
+
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
306
|
+
}
|
|
307
|
+
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
308
|
+
if (!Symbol.asyncIterator)
|
|
309
|
+
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
310
|
+
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
311
|
+
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
312
|
+
function verb(n) { if (g[n])
|
|
313
|
+
i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
314
|
+
function resume(n, v) { try {
|
|
315
|
+
step(g[n](v));
|
|
316
|
+
}
|
|
317
|
+
catch (e) {
|
|
318
|
+
settle(q[0][3], e);
|
|
319
|
+
} }
|
|
320
|
+
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
321
|
+
function fulfill(value) { resume("next", value); }
|
|
322
|
+
function reject(value) { resume("throw", value); }
|
|
323
|
+
function settle(f, v) { if (f(v), q.shift(), q.length)
|
|
324
|
+
resume(q[0][0], q[0][1]); }
|
|
325
|
+
}
|
|
326
|
+
function __asyncDelegator(o) {
|
|
327
|
+
var i, p;
|
|
328
|
+
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
329
|
+
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
330
|
+
}
|
|
331
|
+
function __asyncValues(o) {
|
|
332
|
+
if (!Symbol.asyncIterator)
|
|
333
|
+
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
334
|
+
var m = o[Symbol.asyncIterator], i;
|
|
335
|
+
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
336
|
+
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
337
|
+
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
|
|
338
|
+
}
|
|
339
|
+
function __makeTemplateObject(cooked, raw) {
|
|
340
|
+
if (Object.defineProperty) {
|
|
341
|
+
Object.defineProperty(cooked, "raw", { value: raw });
|
|
342
|
+
}
|
|
343
|
+
else {
|
|
344
|
+
cooked.raw = raw;
|
|
345
|
+
}
|
|
346
|
+
return cooked;
|
|
347
|
+
}
|
|
348
|
+
;
|
|
349
|
+
var __setModuleDefault = Object.create ? (function (o, v) {
|
|
350
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
351
|
+
}) : function (o, v) {
|
|
352
|
+
o["default"] = v;
|
|
353
|
+
};
|
|
354
|
+
function __importStar(mod) {
|
|
355
|
+
if (mod && mod.__esModule)
|
|
356
|
+
return mod;
|
|
357
|
+
var result = {};
|
|
358
|
+
if (mod != null)
|
|
359
|
+
for (var k in mod)
|
|
360
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
361
|
+
__createBinding(result, mod, k);
|
|
362
|
+
__setModuleDefault(result, mod);
|
|
363
|
+
return result;
|
|
364
|
+
}
|
|
365
|
+
function __importDefault(mod) {
|
|
366
|
+
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
367
|
+
}
|
|
368
|
+
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
369
|
+
if (kind === "a" && !f)
|
|
370
|
+
throw new TypeError("Private accessor was defined without a getter");
|
|
371
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
372
|
+
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
373
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
374
|
+
}
|
|
375
|
+
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
376
|
+
if (kind === "m")
|
|
377
|
+
throw new TypeError("Private method is not writable");
|
|
378
|
+
if (kind === "a" && !f)
|
|
379
|
+
throw new TypeError("Private accessor was defined without a setter");
|
|
380
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
381
|
+
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
382
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
383
|
+
}
|
|
384
|
+
function __classPrivateFieldIn(state, receiver) {
|
|
385
|
+
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
|
|
386
|
+
throw new TypeError("Cannot use 'in' operator on non-object");
|
|
387
|
+
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
function tuiDrawCurve(array, index, smoothing) {
|
|
391
|
+
var _a = __read(tuiControlPoint(array[index - 1], array[index - 2], array[index], false, smoothing), 2), cpsX = _a[0], cpsY = _a[1];
|
|
392
|
+
var _b = __read(tuiControlPoint(array[index], array[index - 1], array[index + 1], true, smoothing), 2), cpeX = _b[0], cpeY = _b[1];
|
|
337
393
|
return "C " + cpsX + "," + cpsY + " " + cpeX + "," + cpeY + " " + array[index][0] + "," + array[index][1];
|
|
338
394
|
}
|
|
339
|
-
var tuiDrawCurve = drawCurve;
|
|
340
395
|
|
|
341
|
-
|
|
342
|
-
* @deprecated: use {@link drawLine} instead
|
|
343
|
-
*/
|
|
344
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
345
|
-
function drawLine(point) {
|
|
396
|
+
function tuiDrawLine(point) {
|
|
346
397
|
return "L " + point;
|
|
347
398
|
}
|
|
348
|
-
var tuiDrawLine = drawLine;
|
|
349
399
|
|
|
350
400
|
var COEFFICIENT = 500;
|
|
351
|
-
|
|
352
|
-
* @deprecated: use {@link tuiDraw} instead
|
|
353
|
-
*/
|
|
354
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
355
|
-
function draw(array, index, smoothing) {
|
|
401
|
+
function tuiDraw(array, index, smoothing) {
|
|
356
402
|
return smoothing
|
|
357
|
-
?
|
|
358
|
-
:
|
|
403
|
+
? tuiDrawCurve(array, index, smoothing / COEFFICIENT)
|
|
404
|
+
: tuiDrawLine([array[index][0], array[index][1]]);
|
|
359
405
|
}
|
|
360
|
-
var tuiDraw = draw;
|
|
361
406
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
exports.drawLine = drawLine;
|
|
367
|
-
exports.lineAngle = lineAngle;
|
|
368
|
-
exports.lineLength = lineLength;
|
|
407
|
+
/**
|
|
408
|
+
* Generated bundle index. Do not edit.
|
|
409
|
+
*/
|
|
410
|
+
|
|
369
411
|
exports.tuiControlPoint = tuiControlPoint;
|
|
370
412
|
exports.tuiDescribeSector = tuiDescribeSector;
|
|
371
413
|
exports.tuiDraw = tuiDraw;
|
|
@@ -376,5 +418,5 @@
|
|
|
376
418
|
|
|
377
419
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
378
420
|
|
|
379
|
-
}))
|
|
421
|
+
}));
|
|
380
422
|
//# sourceMappingURL=taiga-ui-addon-charts-utils.umd.js.map
|