ca-components 1.0.43 → 1.0.45
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/esm2022/lib/components/ca-burger-menu/ca-burger-menu.component.mjs +3 -3
- package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +33 -7
- package/esm2022/lib/components/ca-chart/models/chart-base-dataset.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/chart-config.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/utils/helpers/chart.helper.mjs +41 -14
- package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +3 -3
- package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +3 -3
- package/esm2022/lib/components/ca-right-side-panel/ca-right-side-panel.component.mjs +38 -9
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.mjs +18 -15
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +29 -4
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.mjs +43 -24
- package/esm2022/lib/components/ca-right-side-panel/models/navigation-item.model.mjs +1 -1
- package/fesm2022/ca-components.mjs +202 -73
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-chart/models/chart-base-dataset.model.d.ts +7 -1
- package/lib/components/ca-chart/models/chart-config.model.d.ts +2 -0
- package/lib/components/ca-chart/utils/helpers/chart.helper.d.ts +2 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.component.d.ts +9 -4
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.d.ts +5 -5
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.d.ts +5 -2
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.d.ts +10 -8
- package/lib/components/ca-right-side-panel/models/navigation-item.model.d.ts +1 -0
- package/package.json +1 -1
- package/src/assets/ca-components/svg/right-side-panel/ic_delete.svg +4 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtcmlnaHQtc2lkZS1wYW5lbC9tb2RlbHMvbmF2aWdhdGlvbi1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTZWxlY3RlZE1vZHVsZSB9IGZyb20gJy4uL2VudW1zJztcblxuZXhwb3J0IGludGVyZmFjZSBOYXZpZ2F0aW9uSXRlbSB7XG4gIGljb246IHN0cmluZztcbiAgdGl0bGU6IFNlbGVjdGVkTW9kdWxlO1xuICBjb21wYW55TmFtZTogc3RyaW5nIHwgbnVsbDtcbiAgY29tcGFueUlkPzogbnVtYmVyO1xuICBpc0xhc3RJbkxpc3Q6IGJvb2xlYW47XG59XG4iXX0=
|