@difizen/libro-sql-cell 0.2.35 → 0.2.36
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/es/index.less +3 -1
- package/es/libro-sql-cell-view.js +1 -1
- package/package.json +2 -2
- package/src/index.less +3 -1
- package/src/libro-sql-cell-view.tsx +1 -1
package/es/index.less
CHANGED
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
width: 120px !important;
|
|
21
21
|
height: 32px;
|
|
22
22
|
margin-left: 6px;
|
|
23
|
-
|
|
23
|
+
color: var(--mana-libro-cell-header-content);
|
|
24
|
+
border: 1px solid var(--mana-libro-cell-border-color) !important;
|
|
25
|
+
background: var(--mana-libro-popover-background-color);
|
|
24
26
|
border-radius: 6px !important;
|
|
25
27
|
box-shadow: unset !important;
|
|
26
28
|
&.@{ant-prefix}-input-status-warning {
|
|
@@ -164,7 +164,7 @@ export var LibroSqlCell = /*#__PURE__*/React.forwardRef(function SqlEditorViewCo
|
|
|
164
164
|
children: /*#__PURE__*/_jsx(DatabaseOutlined, {})
|
|
165
165
|
}), /*#__PURE__*/_jsx("span", {
|
|
166
166
|
className: "libro-sql-source-content",
|
|
167
|
-
children: instance.databaseConfig ? instance.databaseConfig.db_type + ': ' + instance.databaseConfig.database : '暂未配置数据库'
|
|
167
|
+
children: instance.databaseConfig ? instance.databaseConfig.db_type + ': ' + instance.databaseConfig.database : l10n.t('暂未配置数据库')
|
|
168
168
|
})]
|
|
169
169
|
}), /*#__PURE__*/_jsxs("div", {
|
|
170
170
|
className: "libro-sql-variable-name",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-sql-cell",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.36",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@difizen/libro-code-editor": "^0.2.35",
|
|
36
|
-
"@difizen/libro-jupyter": "^0.2.
|
|
36
|
+
"@difizen/libro-jupyter": "^0.2.36",
|
|
37
37
|
"@difizen/libro-rendermime": "^0.2.35",
|
|
38
38
|
"@difizen/libro-common": "^0.2.35",
|
|
39
39
|
"@ant-design/icons": "^5.1.0",
|
package/src/index.less
CHANGED
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
width: 120px !important;
|
|
21
21
|
height: 32px;
|
|
22
22
|
margin-left: 6px;
|
|
23
|
-
|
|
23
|
+
color: var(--mana-libro-cell-header-content);
|
|
24
|
+
border: 1px solid var(--mana-libro-cell-border-color) !important;
|
|
25
|
+
background: var(--mana-libro-popover-background-color);
|
|
24
26
|
border-radius: 6px !important;
|
|
25
27
|
box-shadow: unset !important;
|
|
26
28
|
&.@{ant-prefix}-input-status-warning {
|
|
@@ -184,7 +184,7 @@ export const LibroSqlCell = React.forwardRef<HTMLDivElement>(
|
|
|
184
184
|
? instance.databaseConfig.db_type +
|
|
185
185
|
': ' +
|
|
186
186
|
instance.databaseConfig.database
|
|
187
|
-
: '暂未配置数据库'}
|
|
187
|
+
: l10n.t('暂未配置数据库')}
|
|
188
188
|
</span>
|
|
189
189
|
</div>
|
|
190
190
|
<div className="libro-sql-variable-name">
|