ydb-ui-components 4.1.0 → 4.2.0

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.
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const jsx_runtime_1 = require("react/jsx-runtime");
6
6
  const react_1 = tslib_1.__importDefault(require("react"));
7
7
  const TreeView_1 = require("../TreeView/TreeView");
8
+ const AsyncReplication_1 = require("../icons/AsyncReplication");
8
9
  const ColumnTable_1 = require("../icons/ColumnTable");
9
10
  const Database_1 = require("../icons/Database");
10
11
  const ExternalDataSource_1 = require("../icons/ExternalDataSource");
@@ -18,6 +19,8 @@ const View_1 = require("../icons/View");
18
19
  const state_1 = require("./state");
19
20
  function renderIcon(type, collapsed) {
20
21
  switch (type) {
22
+ case 'async_replication':
23
+ return (0, jsx_runtime_1.jsx)(AsyncReplication_1.AsyncReplicationIcon, { height: 16 });
21
24
  case 'database':
22
25
  // this icon is larger than the others, therefore 14 for a better fit
23
26
  return (0, jsx_runtime_1.jsx)(Database_1.DatabaseIcon, { height: 14 });
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import type { DropdownMenuItemMixed } from '@gravity-ui/uikit';
3
- export type NavigationTreeNodeType = 'database' | 'directory' | 'table' | 'column_table' | 'index_table' | 'index' | 'topic' | 'stream' | 'external_table' | 'external_data_source' | 'view';
3
+ export type NavigationTreeNodeType = 'async_replication' | 'column_table' | 'database' | 'directory' | 'external_data_source' | 'external_table' | 'index_table' | 'index' | 'stream' | 'table' | 'topic' | 'view';
4
4
  export interface NavigationTreeDataItem {
5
5
  name: string;
6
6
  type: NavigationTreeNodeType;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare function AsyncReplicationIcon(props: React.SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AsyncReplicationIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ function AsyncReplicationIcon(props) {
6
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, props, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.22 15.03s-.001 0 0 0a.75.75 0 0 0 1.06-1.06l-.47-.47H10a3.016 3.016 0 0 0 1.507-.405A2.999 2.999 0 0 0 13 10.5V7.896h.003a2.735 2.735 0 0 0 .785-.366 2.75 2.75 0 1 0-2.288.366V10.5A1.5 1.5 0 0 1 10 12h-.19l.47-.47s0 .001 0 0a.75.75 0 0 0-1.06-1.06l-.47.47-1.28 1.28a.75.75 0 0 0 0 1.06l1.75 1.75ZM5.72 2.97a.75.75 0 0 1 1.06 0l.47.47 1.28 1.28a.748.748 0 0 1 0 1.06L6.78 7.53c.001 0 0 0 0 0a.751.751 0 0 1-1.06-1.06L6.19 6H6a1.5 1.5 0 0 0-1.5 1.5v2.604a2.757 2.757 0 0 1 2 2.646 2.738 2.738 0 0 1-1.212 2.28 2.737 2.737 0 0 1-1.538.47A2.747 2.747 0 0 1 1 12.75a2.751 2.751 0 0 1 2-2.646V7.5a2.999 2.999 0 0 1 3-3h.19l-.47-.47a.75.75 0 0 1 0-1.06Zm-.908 9.121A1.246 1.246 0 0 1 5 12.75a1.25 1.25 0 1 1-.188-.659ZM11 5.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z" }) })));
7
+ }
8
+ exports.AsyncReplicationIcon = AsyncReplicationIcon;
@@ -1,6 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import React from 'react';
3
3
  import { TreeView } from '../TreeView/TreeView';
4
+ import { AsyncReplicationIcon } from '../icons/AsyncReplication';
4
5
  import { ColumnTableIcon } from '../icons/ColumnTable';
5
6
  import { DatabaseIcon } from '../icons/Database';
6
7
  import { ExternalDataSourceIcon } from '../icons/ExternalDataSource';
@@ -14,6 +15,8 @@ import { ViewIcon } from '../icons/View';
14
15
  import { NavigationTreeActionType } from './state';
15
16
  function renderIcon(type, collapsed) {
16
17
  switch (type) {
18
+ case 'async_replication':
19
+ return _jsx(AsyncReplicationIcon, { height: 16 });
17
20
  case 'database':
18
21
  // this icon is larger than the others, therefore 14 for a better fit
19
22
  return _jsx(DatabaseIcon, { height: 14 });
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import type { DropdownMenuItemMixed } from '@gravity-ui/uikit';
3
- export type NavigationTreeNodeType = 'database' | 'directory' | 'table' | 'column_table' | 'index_table' | 'index' | 'topic' | 'stream' | 'external_table' | 'external_data_source' | 'view';
3
+ export type NavigationTreeNodeType = 'async_replication' | 'column_table' | 'database' | 'directory' | 'external_data_source' | 'external_table' | 'index_table' | 'index' | 'stream' | 'table' | 'topic' | 'view';
4
4
  export interface NavigationTreeDataItem {
5
5
  name: string;
6
6
  type: NavigationTreeNodeType;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare function AsyncReplicationIcon(props: React.SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ export function AsyncReplicationIcon(props) {
4
+ return (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.22 15.03s-.001 0 0 0a.75.75 0 0 0 1.06-1.06l-.47-.47H10a3.016 3.016 0 0 0 1.507-.405A2.999 2.999 0 0 0 13 10.5V7.896h.003a2.735 2.735 0 0 0 .785-.366 2.75 2.75 0 1 0-2.288.366V10.5A1.5 1.5 0 0 1 10 12h-.19l.47-.47s0 .001 0 0a.75.75 0 0 0-1.06-1.06l-.47.47-1.28 1.28a.75.75 0 0 0 0 1.06l1.75 1.75ZM5.72 2.97a.75.75 0 0 1 1.06 0l.47.47 1.28 1.28a.748.748 0 0 1 0 1.06L6.78 7.53c.001 0 0 0 0 0a.751.751 0 0 1-1.06-1.06L6.19 6H6a1.5 1.5 0 0 0-1.5 1.5v2.604a2.757 2.757 0 0 1 2 2.646 2.738 2.738 0 0 1-1.212 2.28 2.737 2.737 0 0 1-1.538.47A2.747 2.747 0 0 1 1 12.75a2.751 2.751 0 0 1 2-2.646V7.5a2.999 2.999 0 0 1 3-3h.19l-.47-.47a.75.75 0 0 1 0-1.06Zm-.908 9.121A1.246 1.246 0 0 1 5 12.75a1.25 1.25 0 1 1-.188-.659ZM11 5.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z" }) })));
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-ui-components",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "exports": {