@oceanbase/ui 0.2.29 → 0.2.31
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/ui.min.js +1 -1
- package/es/Action/Group.js +1 -0
- package/es/BasicLayout/Header.js +1 -1
- package/es/ContentWithQuestion/index.js +0 -2
- package/es/FooterToolbar/index.d.ts +5 -0
- package/es/FooterToolbar/index.js +21 -0
- package/es/Highlight/index.d.ts +1 -1
- package/es/Login/index.js +1 -1
- package/es/PageContainer/index.js +3 -3
- package/es/Welcome/step.js +2 -2
- package/es/index.d.ts +2 -0
- package/es/index.js +1 -0
- package/lib/Action/Group.js +1 -0
- package/lib/BasicLayout/Header.js +1 -1
- package/lib/ContentWithQuestion/index.js +0 -1
- package/lib/FooterToolbar/index.d.ts +5 -0
- package/lib/FooterToolbar/index.js +44 -0
- package/lib/Highlight/index.d.ts +1 -1
- package/lib/Login/index.js +1 -1
- package/lib/PageContainer/index.js +3 -3
- package/lib/Welcome/step.js +2 -2
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -0
- package/package.json +4 -4
package/es/Action/Group.js
CHANGED
|
@@ -88,6 +88,7 @@ export default (function (_ref2) {
|
|
|
88
88
|
size: 8,
|
|
89
89
|
children: [mainActions.map(function (action) {
|
|
90
90
|
return /*#__PURE__*/React.cloneElement(action, _objectSpread(_objectSpread({}, action.props), {}, {
|
|
91
|
+
key: action.key,
|
|
91
92
|
enableLoading: enableLoading,
|
|
92
93
|
disabled: isBoolean(action.props.disabled) ? action.props.disabled : getDefaultDisabled(action.key)
|
|
93
94
|
}));
|
package/es/BasicLayout/Header.js
CHANGED
|
@@ -257,7 +257,7 @@ var Header = function Header(_ref) {
|
|
|
257
257
|
className: "".concat(prefixCls, "-copyright"),
|
|
258
258
|
children: [locale.right, " ", /*#__PURE__*/_jsx(CopyrightOutlined, {}), " ", moment().year(), " ", locale.company]
|
|
259
259
|
}), /*#__PURE__*/_jsx("img", {
|
|
260
|
-
src: theme.isDark ? logoImgDark : logoImg,
|
|
260
|
+
src: theme !== null && theme !== void 0 && theme.isDark ? logoImgDark : logoImg,
|
|
261
261
|
alt: "",
|
|
262
262
|
style: {
|
|
263
263
|
height: 12
|
|
@@ -39,8 +39,6 @@ var ContentWithQuestion = function ContentWithQuestion(_ref) {
|
|
|
39
39
|
})) : null;
|
|
40
40
|
};
|
|
41
41
|
return wrapSSR( /*#__PURE__*/_jsx("span", _objectSpread(_objectSpread({
|
|
42
|
-
// eslint-disable-next-line react/no-unknown-property
|
|
43
|
-
prefixCls: customizePrefixCls,
|
|
44
42
|
className: classNames((_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-item"), true), _defineProperty(_classNames, className, !!className), _classNames))
|
|
45
43
|
}, restProps), {}, {
|
|
46
44
|
children: /*#__PURE__*/_jsxs(Space, {
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { FooterToolbarProps as AntFooterToolbarProps } from '@ant-design/pro-layout/es/components/FooterToolbar';
|
|
3
|
+
export type FooterToolbarProps = AntFooterToolbarProps;
|
|
4
|
+
declare const FooterToolbar: React.FC<FooterToolbarProps>;
|
|
5
|
+
export default FooterToolbar;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["portalDom"];
|
|
3
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
7
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
8
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
10
|
+
import React from 'react';
|
|
11
|
+
import { FooterToolbar as AntFooterToolbar } from '@ant-design/pro-components';
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var FooterToolbar = function FooterToolbar(_ref) {
|
|
14
|
+
var _ref$portalDom = _ref.portalDom,
|
|
15
|
+
portalDom = _ref$portalDom === void 0 ? false : _ref$portalDom,
|
|
16
|
+
restProps = _objectWithoutProperties(_ref, _excluded);
|
|
17
|
+
return /*#__PURE__*/_jsx(AntFooterToolbar, _objectSpread({
|
|
18
|
+
portalDom: portalDom
|
|
19
|
+
}, restProps));
|
|
20
|
+
};
|
|
21
|
+
export default FooterToolbar;
|
package/es/Highlight/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare const THEME_DARK = "dark";
|
|
|
29
29
|
export declare const THEME_LIGHT = "light";
|
|
30
30
|
declare const ThemeTypes: ["dark", "light"];
|
|
31
31
|
export type ThemeType = (typeof ThemeTypes)[number];
|
|
32
|
-
declare const supportedLanguages: ("ruby" | "css" | "javascript" | "typescript" | "groovy" | "java" | "python" | "bash" | "
|
|
32
|
+
declare const supportedLanguages: ("ruby" | "css" | "json" | "sql" | "tsx" | "javascript" | "typescript" | "groovy" | "java" | "python" | "bash" | "cpp" | "http" | "markdown" | "nginx" | "xml" | "dockerfile" | "go" | "yaml" | "solidity" | "jsx")[];
|
|
33
33
|
export type LanguageType = (typeof supportedLanguages)[number] | 'html';
|
|
34
34
|
export interface HighlightProps extends LocaleWrapperProps {
|
|
35
35
|
/**
|
package/es/Login/index.js
CHANGED
|
@@ -182,7 +182,7 @@ var Login = function Login(props) {
|
|
|
182
182
|
paddingLeft: showAuthCode ? 96 : 0
|
|
183
183
|
},
|
|
184
184
|
children: /*#__PURE__*/_jsx("img", {
|
|
185
|
-
src: theme.isDark ? logoImgDark : logoImg,
|
|
185
|
+
src: theme !== null && theme !== void 0 && theme.isDark ? logoImgDark : logoImg,
|
|
186
186
|
alt: "",
|
|
187
187
|
className: "".concat(prefix, "-watermark")
|
|
188
188
|
})
|
|
@@ -76,10 +76,10 @@ var PageContainer = function PageContainer(_ref) {
|
|
|
76
76
|
extraContent: extraContent,
|
|
77
77
|
tabList: tabList,
|
|
78
78
|
tabBarExtraContent: tabBarExtraContent,
|
|
79
|
-
footerToolBarProps: _objectSpread(
|
|
80
|
-
// render footer
|
|
79
|
+
footerToolBarProps: _objectSpread({
|
|
80
|
+
// render footer under parent instead of body by default
|
|
81
81
|
portalDom: false
|
|
82
|
-
})
|
|
82
|
+
}, footerToolBarProps)
|
|
83
83
|
}, restProps)));
|
|
84
84
|
};
|
|
85
85
|
export default LocaleWrapper({
|
package/es/Welcome/step.js
CHANGED
|
@@ -33,12 +33,12 @@ var WelcomeStep = function WelcomeStep(props) {
|
|
|
33
33
|
children: description
|
|
34
34
|
}), operations && /*#__PURE__*/_jsx("div", {
|
|
35
35
|
className: "".concat(prefix, "-operations"),
|
|
36
|
-
children: operations
|
|
36
|
+
children: operations === null || operations === void 0 ? void 0 : operations.map(function (operation, index) {
|
|
37
37
|
return /*#__PURE__*/_jsx("span", {
|
|
38
38
|
onClick: operation.onClick,
|
|
39
39
|
className: "".concat(prefix, "-operation"),
|
|
40
40
|
children: operation.text || locale.defaultOperation
|
|
41
|
-
});
|
|
41
|
+
}, index);
|
|
42
42
|
})
|
|
43
43
|
})]
|
|
44
44
|
})]
|
package/es/index.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ export { default as Lottie } from './Lottie';
|
|
|
22
22
|
export { default as NavMenu } from './NavMenu';
|
|
23
23
|
export { default as PageContainer } from './PageContainer';
|
|
24
24
|
export type { PageContainerProps } from './PageContainer';
|
|
25
|
+
export { default as FooterToolbar } from './FooterToolbar';
|
|
26
|
+
export type { FooterToolbarProps } from './FooterToolbar';
|
|
25
27
|
export { default as Password } from './Password';
|
|
26
28
|
export { default as Ranger } from './Ranger';
|
|
27
29
|
export { default as SideTip } from './SideTip';
|
package/es/index.js
CHANGED
|
@@ -20,6 +20,7 @@ export { default as Login } from "./Login";
|
|
|
20
20
|
export { default as Lottie } from "./Lottie";
|
|
21
21
|
export { default as NavMenu } from "./NavMenu";
|
|
22
22
|
export { default as PageContainer } from "./PageContainer";
|
|
23
|
+
export { default as FooterToolbar } from "./FooterToolbar";
|
|
23
24
|
export { default as Password } from "./Password";
|
|
24
25
|
export { default as Ranger } from "./Ranger";
|
|
25
26
|
export { default as SideTip } from "./SideTip";
|
package/lib/Action/Group.js
CHANGED
|
@@ -91,6 +91,7 @@ var Group_default = ({
|
|
|
91
91
|
return /* @__PURE__ */ import_react.default.createElement(import_design.Space, { size: 8 }, mainActions.map((action) => {
|
|
92
92
|
return import_react.default.cloneElement(action, {
|
|
93
93
|
...action.props,
|
|
94
|
+
key: action.key,
|
|
94
95
|
enableLoading,
|
|
95
96
|
disabled: (0, import_lodash.isBoolean)(action.props.disabled) ? action.props.disabled : getDefaultDisabled(action.key)
|
|
96
97
|
});
|
|
@@ -156,7 +156,7 @@ var Header = ({
|
|
|
156
156
|
style: { display: "flex", justifyContent: "space-between", alignItems: "center" }
|
|
157
157
|
},
|
|
158
158
|
/* @__PURE__ */ import_react.default.createElement("span", { className: `${prefixCls}-copyright` }, locale.right, " ", /* @__PURE__ */ import_react.default.createElement(import_icons.CopyrightOutlined, null), " ", (0, import_moment.default)().year(), " ", locale.company),
|
|
159
|
-
/* @__PURE__ */ import_react.default.createElement("img", { src: theme.isDark ? import_oceanbase_logo_dark.default : import_oceanbase_logo.default, alt: "", style: { height: 12 } })
|
|
159
|
+
/* @__PURE__ */ import_react.default.createElement("img", { src: (theme == null ? void 0 : theme.isDark) ? import_oceanbase_logo_dark.default : import_oceanbase_logo.default, alt: "", style: { height: 12 } })
|
|
160
160
|
))))
|
|
161
161
|
)
|
|
162
162
|
)
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { FooterToolbarProps as AntFooterToolbarProps } from '@ant-design/pro-layout/es/components/FooterToolbar';
|
|
3
|
+
export type FooterToolbarProps = AntFooterToolbarProps;
|
|
4
|
+
declare const FooterToolbar: React.FC<FooterToolbarProps>;
|
|
5
|
+
export default FooterToolbar;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/FooterToolbar/index.tsx
|
|
30
|
+
var FooterToolbar_exports = {};
|
|
31
|
+
__export(FooterToolbar_exports, {
|
|
32
|
+
default: () => FooterToolbar_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(FooterToolbar_exports);
|
|
35
|
+
var import_react = __toESM(require("react"));
|
|
36
|
+
var import_pro_components = require("@ant-design/pro-components");
|
|
37
|
+
var FooterToolbar = ({
|
|
38
|
+
// render footer under parent instead of body by default
|
|
39
|
+
portalDom = false,
|
|
40
|
+
...restProps
|
|
41
|
+
}) => {
|
|
42
|
+
return /* @__PURE__ */ import_react.default.createElement(import_pro_components.FooterToolbar, { portalDom, ...restProps });
|
|
43
|
+
};
|
|
44
|
+
var FooterToolbar_default = FooterToolbar;
|
package/lib/Highlight/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare const THEME_DARK = "dark";
|
|
|
29
29
|
export declare const THEME_LIGHT = "light";
|
|
30
30
|
declare const ThemeTypes: ["dark", "light"];
|
|
31
31
|
export type ThemeType = (typeof ThemeTypes)[number];
|
|
32
|
-
declare const supportedLanguages: ("ruby" | "css" | "javascript" | "typescript" | "groovy" | "java" | "python" | "bash" | "
|
|
32
|
+
declare const supportedLanguages: ("ruby" | "css" | "json" | "sql" | "tsx" | "javascript" | "typescript" | "groovy" | "java" | "python" | "bash" | "cpp" | "http" | "markdown" | "nginx" | "xml" | "dockerfile" | "go" | "yaml" | "solidity" | "jsx")[];
|
|
33
33
|
export type LanguageType = (typeof supportedLanguages)[number] | 'html';
|
|
34
34
|
export interface HighlightProps extends LocaleWrapperProps {
|
|
35
35
|
/**
|
package/lib/Login/index.js
CHANGED
|
@@ -158,7 +158,7 @@ var Login = (props) => {
|
|
|
158
158
|
/* @__PURE__ */ import_react.default.createElement(
|
|
159
159
|
"img",
|
|
160
160
|
{
|
|
161
|
-
src: theme.isDark ? import_oceanbase_logo_dark.default : import_oceanbase_logo.default,
|
|
161
|
+
src: (theme == null ? void 0 : theme.isDark) ? import_oceanbase_logo_dark.default : import_oceanbase_logo.default,
|
|
162
162
|
alt: "",
|
|
163
163
|
className: `${prefix}-watermark`
|
|
164
164
|
}
|
|
@@ -94,9 +94,9 @@ var PageContainer = ({
|
|
|
94
94
|
tabList,
|
|
95
95
|
tabBarExtraContent,
|
|
96
96
|
footerToolBarProps: {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
// render footer under parent instead of body by default
|
|
98
|
+
portalDom: false,
|
|
99
|
+
...footerToolBarProps
|
|
100
100
|
},
|
|
101
101
|
...restProps
|
|
102
102
|
}
|
package/lib/Welcome/step.js
CHANGED
|
@@ -41,8 +41,8 @@ var import_zh_CN = __toESM(require("./locale/zh-CN"));
|
|
|
41
41
|
var prefix = (0, import_util.getPrefix)("welcome-step");
|
|
42
42
|
var WelcomeStep = (props) => {
|
|
43
43
|
const { title, description, operations, imgUrl, locale } = props;
|
|
44
|
-
return /* @__PURE__ */ import_react.default.createElement(import_design.Col, { span: 11, key: title, className: prefix }, /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-left` }, /* @__PURE__ */ import_react.default.createElement("img", { src: imgUrl, alt: "", width: "60" })), /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-right` }, /* @__PURE__ */ import_react.default.createElement("h3", { className: `${prefix}-title` }, title), /* @__PURE__ */ import_react.default.createElement("p", { className: `${prefix}-description` }, description), operations && /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-operations` }, operations
|
|
45
|
-
return /* @__PURE__ */ import_react.default.createElement("span", { onClick: operation.onClick, className: `${prefix}-operation` }, operation.text || locale.defaultOperation);
|
|
44
|
+
return /* @__PURE__ */ import_react.default.createElement(import_design.Col, { span: 11, key: title, className: prefix }, /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-left` }, /* @__PURE__ */ import_react.default.createElement("img", { src: imgUrl, alt: "", width: "60" })), /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-right` }, /* @__PURE__ */ import_react.default.createElement("h3", { className: `${prefix}-title` }, title), /* @__PURE__ */ import_react.default.createElement("p", { className: `${prefix}-description` }, description), operations && /* @__PURE__ */ import_react.default.createElement("div", { className: `${prefix}-operations` }, operations == null ? void 0 : operations.map((operation, index) => {
|
|
45
|
+
return /* @__PURE__ */ import_react.default.createElement("span", { key: index, onClick: operation.onClick, className: `${prefix}-operation` }, operation.text || locale.defaultOperation);
|
|
46
46
|
}))));
|
|
47
47
|
};
|
|
48
48
|
var step_default = (0, import_LocaleWrapper.default)({
|
package/lib/index.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ export { default as Lottie } from './Lottie';
|
|
|
22
22
|
export { default as NavMenu } from './NavMenu';
|
|
23
23
|
export { default as PageContainer } from './PageContainer';
|
|
24
24
|
export type { PageContainerProps } from './PageContainer';
|
|
25
|
+
export { default as FooterToolbar } from './FooterToolbar';
|
|
26
|
+
export type { FooterToolbarProps } from './FooterToolbar';
|
|
25
27
|
export { default as Password } from './Password';
|
|
26
28
|
export { default as Ranger } from './Ranger';
|
|
27
29
|
export { default as SideTip } from './SideTip';
|
package/lib/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __export(src_exports, {
|
|
|
40
40
|
ContentWithQuestion: () => import_ContentWithQuestion.default,
|
|
41
41
|
Dialog: () => import_Dialog.default,
|
|
42
42
|
DocDialog: () => import_DocDialog.default,
|
|
43
|
+
FooterToolbar: () => import_FooterToolbar.default,
|
|
43
44
|
FullscreenBox: () => import_FullscreenBox.default,
|
|
44
45
|
GraphToolbar: () => import_GraphToolbar.default,
|
|
45
46
|
Highlight: () => import_Highlight.default,
|
|
@@ -80,6 +81,7 @@ var import_Login = __toESM(require("./Login"));
|
|
|
80
81
|
var import_Lottie = __toESM(require("./Lottie"));
|
|
81
82
|
var import_NavMenu = __toESM(require("./NavMenu"));
|
|
82
83
|
var import_PageContainer = __toESM(require("./PageContainer"));
|
|
84
|
+
var import_FooterToolbar = __toESM(require("./FooterToolbar"));
|
|
83
85
|
var import_Password = __toESM(require("./Password"));
|
|
84
86
|
var import_Ranger = __toESM(require("./Ranger"));
|
|
85
87
|
var import_SideTip = __toESM(require("./SideTip"));
|
|
@@ -99,6 +101,7 @@ var import_TagSelect = __toESM(require("./TagSelect"));
|
|
|
99
101
|
ContentWithQuestion,
|
|
100
102
|
Dialog,
|
|
101
103
|
DocDialog,
|
|
104
|
+
FooterToolbar,
|
|
102
105
|
FullscreenBox,
|
|
103
106
|
GraphToolbar,
|
|
104
107
|
Highlight,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oceanbase/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.31",
|
|
4
4
|
"description": "The UI library based on OceanBase Design",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oceanbase",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@ant-design/cssinjs": "^1.17.2",
|
|
38
38
|
"@ant-design/pro-components": "^2.6.34",
|
|
39
|
-
"@ant-design/pro-layout": "^7.17.
|
|
40
|
-
"@oceanbase/design": "^0.2.
|
|
39
|
+
"@ant-design/pro-layout": "^7.17.15",
|
|
40
|
+
"@oceanbase/design": "^0.2.30",
|
|
41
41
|
"@oceanbase/icons": "^0.2.9",
|
|
42
42
|
"@oceanbase/util": "^0.2.11",
|
|
43
43
|
"ahooks": "^2.10.14",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"react": ">=16.9.0",
|
|
67
67
|
"react-dom": ">=16.9.0"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "bfb6a2e9c093adf8ce5c0c39fb4582a3effd2e75"
|
|
70
70
|
}
|