ca-components 1.0.64 → 1.0.66
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-chart/ca-chart.component.mjs +82 -22
- package/esm2022/lib/components/ca-chart/enums/chart-annotation-type.enum.mjs +10 -0
- package/esm2022/lib/components/ca-chart/enums/chart-event-properties.enum.mjs +7 -7
- package/esm2022/lib/components/ca-chart/enums/index.mjs +2 -1
- package/esm2022/lib/components/ca-chart/models/chart-annotation.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart/models/chart-config.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/index.mjs +2 -1
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +11 -3
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +2 -1
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +11 -6
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +3 -3
- package/esm2022/lib/utils/helpers/uuid.helper.mjs +6 -0
- package/fesm2022/ca-components.mjs +131 -42
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-chart/ca-chart.component.d.ts +3 -0
- package/lib/components/ca-chart/enums/chart-annotation-type.enum.d.ts +8 -0
- package/lib/components/ca-chart/enums/chart-event-properties.enum.d.ts +1 -1
- package/lib/components/ca-chart/enums/index.d.ts +1 -0
- package/lib/components/ca-chart/models/chart-annotation.model.d.ts +10 -0
- package/lib/components/ca-chart/models/chart-config.model.d.ts +3 -0
- package/lib/components/ca-chart/models/index.d.ts +1 -0
- package/lib/components/ca-input/config/ca-input.config.d.ts +1 -0
- package/lib/components/ca-input/pipes/label-class.pipe.d.ts +1 -1
- package/lib/utils/helpers/uuid.helper.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export function uuidv4() {
|
|
2
|
+
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, c => (+c ^
|
|
3
|
+
crypto.getRandomValues(new Uint8Array(1))[0] &
|
|
4
|
+
(15 >> (+c / 4))).toString(16));
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXVpZC5oZWxwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvdXRpbHMvaGVscGVycy91dWlkLmhlbHBlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFVBQVUsTUFBTTtJQUNwQixPQUFPLHNDQUFzQyxDQUFDLE9BQU8sQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FDbEUsQ0FDRSxDQUFDLENBQUM7UUFDRixNQUFNLENBQUMsZUFBZSxDQUFDLElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQzFDLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FDbkIsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLENBQ2YsQ0FBQztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZnVuY3Rpb24gdXVpZHY0KCkge1xuICByZXR1cm4gXCIxMDAwMDAwMC0xMDAwLTQwMDAtODAwMC0xMDAwMDAwMDAwMDBcIi5yZXBsYWNlKC9bMDE4XS9nLCBjID0+XG4gICAgKFxuICAgICAgK2MgXlxuICAgICAgY3J5cHRvLmdldFJhbmRvbVZhbHVlcyhuZXcgVWludDhBcnJheSgxKSlbMF0gJlxuICAgICAgICAoMTUgPj4gKCtjIC8gNCkpXG4gICAgKS50b1N0cmluZygxNilcbiAgKTtcbn0iXX0=
|