@cloudtower/eagle 0.33.14 → 0.33.16
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/dist/cjs/coreX/DateRangePicker/index.js +9 -1
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1622 -1540
- package/dist/esm/coreX/DateRangePicker/index.js +9 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +1799 -1705
- package/dist/src/coreX/KubeConfigModal/KubeConfigModal.style.d.ts +9 -0
- package/dist/src/coreX/KubeConfigModal/KubeConfigModal.type.d.ts +21 -0
- package/dist/src/coreX/KubeConfigModal/index.d.ts +4 -0
- package/dist/src/coreX/KubeConfigModal/utils.d.ts +2 -0
- package/dist/src/coreX/index.d.ts +1 -0
- package/dist/stories/docs/coreX/KubeConfigModal.stories.d.ts +83 -0
- package/dist/style.css +1298 -1220
- package/package.json +4 -4
|
@@ -107,7 +107,15 @@ const TimeRange = (props) => {
|
|
|
107
107
|
))
|
|
108
108
|
}
|
|
109
109
|
].filter((item) => mode.includes(item.key));
|
|
110
|
-
return /* @__PURE__ */ React__default.createElement(
|
|
110
|
+
return /* @__PURE__ */ React__default.createElement(
|
|
111
|
+
TabMenu,
|
|
112
|
+
{
|
|
113
|
+
selectedKey: type,
|
|
114
|
+
tabs,
|
|
115
|
+
onChange: onTypeChange,
|
|
116
|
+
size: "small"
|
|
117
|
+
}
|
|
118
|
+
);
|
|
111
119
|
}
|
|
112
120
|
};
|
|
113
121
|
const TimePickerHistory = (props) => {
|