@odigos/ui-kit 0.0.13 → 0.0.14
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/CHANGELOG.md +7 -0
- package/lib/containers/side-nav/index.d.ts +4 -4
- package/lib/containers.js +4 -4
- package/lib/types/common/index.d.ts +4 -4
- package/lib/types.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.14](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.13...ui-kit-v0.0.14) (2025-03-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* EntityType enum ([#38](https://github.com/odigos-io/ui-kit/issues/38)) ([f8d6620](https://github.com/odigos-io/ui-kit/commit/f8d6620b1402ae0cb99e4572dcdc3430d128f8b9))
|
|
9
|
+
|
|
3
10
|
## [0.0.13](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.12...ui-kit-v0.0.13) (2025-03-20)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -2,10 +2,10 @@ import { type FC } from 'react';
|
|
|
2
2
|
import { type NavIcon } from '@/components';
|
|
3
3
|
declare enum NavIconIds {
|
|
4
4
|
Overview = "overview",
|
|
5
|
-
InstrumentationRules = "
|
|
6
|
-
Sources = "
|
|
7
|
-
Actions = "
|
|
8
|
-
Destinations = "
|
|
5
|
+
InstrumentationRules = "InstrumentationRule",
|
|
6
|
+
Sources = "Source",
|
|
7
|
+
Actions = "Action",
|
|
8
|
+
Destinations = "Destination"
|
|
9
9
|
}
|
|
10
10
|
interface SideNavProps {
|
|
11
11
|
onClickId: (id: NavIconIds) => void;
|
package/lib/containers.js
CHANGED
|
@@ -15023,10 +15023,10 @@ const NotificationListItem = ({ id, seen, type, title, message, time, crdType, t
|
|
|
15023
15023
|
var NavIconIds;
|
|
15024
15024
|
(function (NavIconIds) {
|
|
15025
15025
|
NavIconIds["Overview"] = "overview";
|
|
15026
|
-
NavIconIds["InstrumentationRules"] = "
|
|
15027
|
-
NavIconIds["Sources"] = "
|
|
15028
|
-
NavIconIds["Actions"] = "
|
|
15029
|
-
NavIconIds["Destinations"] = "
|
|
15026
|
+
NavIconIds["InstrumentationRules"] = "InstrumentationRule";
|
|
15027
|
+
NavIconIds["Sources"] = "Source";
|
|
15028
|
+
NavIconIds["Actions"] = "Action";
|
|
15029
|
+
NavIconIds["Destinations"] = "Destination";
|
|
15030
15030
|
})(NavIconIds || (NavIconIds = {}));
|
|
15031
15031
|
const SideNav = ({ onClickId, defaultSelectedId, extendedNavIcons }) => {
|
|
15032
15032
|
const [selectedId, setSelectedId] = useState(defaultSelectedId || '');
|
|
@@ -57,10 +57,10 @@ export declare enum Crud {
|
|
|
57
57
|
Delete = "Delete"
|
|
58
58
|
}
|
|
59
59
|
export declare enum EntityTypes {
|
|
60
|
-
Source = "
|
|
61
|
-
Destination = "
|
|
62
|
-
Action = "
|
|
63
|
-
InstrumentationRule = "
|
|
60
|
+
Source = "Source",
|
|
61
|
+
Destination = "Destination",
|
|
62
|
+
Action = "Action",
|
|
63
|
+
InstrumentationRule = "InstrumentationRule"
|
|
64
64
|
}
|
|
65
65
|
export declare enum FieldTypes {
|
|
66
66
|
Input = "input",
|
package/lib/types.js
CHANGED
|
@@ -55,10 +55,10 @@ var Crud;
|
|
|
55
55
|
})(Crud || (Crud = {}));
|
|
56
56
|
var EntityTypes;
|
|
57
57
|
(function (EntityTypes) {
|
|
58
|
-
EntityTypes["Source"] = "
|
|
59
|
-
EntityTypes["Destination"] = "
|
|
60
|
-
EntityTypes["Action"] = "
|
|
61
|
-
EntityTypes["InstrumentationRule"] = "
|
|
58
|
+
EntityTypes["Source"] = "Source";
|
|
59
|
+
EntityTypes["Destination"] = "Destination";
|
|
60
|
+
EntityTypes["Action"] = "Action";
|
|
61
|
+
EntityTypes["InstrumentationRule"] = "InstrumentationRule";
|
|
62
62
|
})(EntityTypes || (EntityTypes = {}));
|
|
63
63
|
var FieldTypes;
|
|
64
64
|
(function (FieldTypes) {
|