@bundle-stats/ui 4.22.2-beta.1 → 4.22.3
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/.babelrc.js +65 -24
- package/globals.d.ts +13 -0
- package/lib/components/bundle-modules/index.js.map +1 -1
- package/lib/components/index.js.map +1 -1
- package/lib/components/metrics-table-header/metrics-table-header.js +2 -2
- package/lib/components/metrics-table-header/metrics-table-header.js.map +1 -1
- package/lib/css/default.css +1 -1
- package/lib/hooks/rows-sort.js +13 -12
- package/lib/hooks/rows-sort.js.map +1 -1
- package/lib/ui/button/button.js.map +1 -1
- package/lib/ui/empty-set/empty-set.js +3 -3
- package/lib/ui/empty-set/empty-set.js.map +1 -1
- package/lib-esm/components/bundle-modules/index.js.map +1 -1
- package/lib-esm/components/index.js.map +1 -1
- package/lib-esm/components/metrics-table-header/metrics-table-header.js +2 -2
- package/lib-esm/components/metrics-table-header/metrics-table-header.js.map +1 -1
- package/lib-esm/css/default.css +1 -1
- package/lib-esm/hooks/rows-sort.js +10 -8
- package/lib-esm/hooks/rows-sort.js.map +1 -1
- package/lib-esm/ui/button/button.js.map +1 -1
- package/lib-esm/ui/empty-set/empty-set.js +3 -3
- package/lib-esm/ui/empty-set/empty-set.js.map +1 -1
- package/package.json +26 -15
- package/src/app/app.stories.tsx +2 -2
- package/src/components/asset-info/asset-info.stories.tsx +47 -39
- package/src/components/asset-name/asset-name.stories.tsx +1 -3
- package/src/components/asset-not-predictive/asset-not-predictive.stories.tsx +22 -15
- package/src/components/browsertime-table/browsertime-table.stories.tsx +45 -0
- package/src/components/bundle-assets-totals/bundle-assets-totals.stories.tsx +47 -0
- package/src/components/bundle-modules/bundle-modules.stories.tsx +191 -0
- package/src/components/bundle-modules/bundle-modules.tsx +1 -1
- package/src/components/bundle-modules/index.tsx +4 -0
- package/src/components/bundle-packages/bundle-packages.stories.tsx +87 -0
- package/src/components/delta/delta.stories.tsx +57 -0
- package/src/components/entry-info/entry-info.stories.tsx +49 -54
- package/src/components/{index.js → index.ts} +4 -2
- package/src/components/insights/insights.stories.tsx +36 -33
- package/src/components/job-name/job-name.stories.tsx +46 -0
- package/src/components/jobs-header/jobs-header.stories.tsx +19 -15
- package/src/components/lighthouse-table/lighthouse-table.stories.tsx +30 -0
- package/src/components/metric/metric.stories.tsx +24 -22
- package/src/components/metric-run-info/metric-run-info.stories.tsx +45 -41
- package/src/components/metrics-table/metrics-table.stories.tsx +33 -13
- package/src/components/metrics-table/metrics-table.tsx +1 -1
- package/src/components/metrics-table-header/metrics-table-header.tsx +9 -4
- package/src/components/module-info/module-info.stories.tsx +41 -30
- package/src/components/package-info/package-info.stories.tsx +20 -15
- package/src/components/run-info/run-info.stories.tsx +39 -37
- package/src/components/summary/summary.stories.tsx +26 -32
- package/src/css/default.css +1 -1
- package/src/hooks/rows-sort.ts +9 -6
- package/src/layout/box/box.stories.tsx +35 -28
- package/src/layout/flex-stack/flex-stack.stories.tsx +79 -48
- package/src/layout/footer/footer.stories.tsx +30 -0
- package/src/layout/stack/stack.stories.tsx +68 -44
- package/src/ui/alert/alert.stories.tsx +25 -21
- package/src/ui/button/button.stories.tsx +181 -176
- package/src/ui/button/button.tsx +8 -1
- package/src/ui/container/container.stories.tsx +28 -21
- package/src/ui/control-group/control-group.stories.tsx +23 -16
- package/src/ui/dropdown/dropdown.stories.tsx +23 -15
- package/src/ui/empty-set/empty-set.jsx +16 -4
- package/src/ui/empty-set/empty-set.stories.tsx +41 -0
- package/src/ui/file-name/file-name.stories.tsx +45 -0
- package/src/ui/filters/filters.stories.tsx +29 -26
- package/src/ui/hover-card/hover-card.stories.tsx +35 -26
- package/src/ui/icon/icon.stories.tsx +36 -28
- package/src/ui/input/input.stories.tsx +17 -5
- package/src/ui/input-search/input-search.stories.tsx +31 -0
- package/src/ui/loader/loader.stories.tsx +22 -0
- package/src/ui/skeleton/skeleton.stories.tsx +42 -0
- package/src/ui/table/table.stories.tsx +244 -218
- package/src/ui/tag/tag.stories.tsx +11 -10
- package/src/ui/toolbar/toolbar.stories.tsx +41 -0
- package/types/components/bundle-modules/bundle-modules.d.ts +1 -1
- package/types/components/bundle-modules/index.d.ts +2 -1
- package/types/components/index.d.ts +22 -20
- package/types/components/metrics-table/metrics-table.d.ts +1 -1
- package/types/components/metrics-table-header/metrics-table-header.d.ts +1 -1
- package/types/hooks/rows-sort.d.ts +2 -2
- package/types/ui/button/button.d.ts +1 -1
- package/vitest.config.ts +47 -0
- package/vitest.setup.ts +26 -0
- package/lib/assets/icons.svg.js +0 -100
- package/lib/assets/icons.svg.js.map +0 -1
- package/lib-esm/assets/icons.svg.js +0 -63
- package/lib-esm/assets/icons.svg.js.map +0 -1
- package/src/assets/icons.svg.jsx +0 -279
- package/types/assets/icons.svg.d.ts +0 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SortAction } from '../types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare function getSortFn<TRow>(fieldPath: string, getCustomSort: UseRowsSortParams<TRow>['getCustomSort']): (item: TRow) => any;
|
|
3
3
|
interface UseRowsSortParams<TRow> {
|
|
4
4
|
rows: Array<TRow>;
|
|
5
5
|
initialField?: string;
|
|
@@ -15,5 +15,5 @@ interface UseRowsSort<TRow> {
|
|
|
15
15
|
sort: SortAction;
|
|
16
16
|
updateSort: (params: SortAction) => void;
|
|
17
17
|
}
|
|
18
|
-
export declare
|
|
18
|
+
export declare function useRowsSort<TRow>({ rows, initialField, initialDirection, getCustomSort, setQueryState, }: UseRowsSortParams<TRow>): UseRowsSort<TRow>;
|
|
19
19
|
export {};
|
|
@@ -54,5 +54,5 @@ interface ButtonProps<T extends React.ElementType> {
|
|
|
54
54
|
glyph?: React.ComponentProps<typeof BaseIcon>['glyph'];
|
|
55
55
|
rightGlyph?: React.ComponentProps<typeof BaseIcon>['glyph'];
|
|
56
56
|
}
|
|
57
|
-
export declare const Button:
|
|
57
|
+
export declare const Button: <T extends React.ElementType = "button">(props: ButtonProps<T> & Omit<React.ComponentPropsWithoutRef<T>, keyof ButtonProps<T>> & React.RefAttributes<Element>) => React.ReactElement | null;
|
|
58
58
|
export {};
|
package/vitest.config.ts
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
import { storybookTest } from '@storybook/addon-vitest/vitest-plugin';
|
|
4
|
+
import { playwright } from '@vitest/browser-playwright';
|
|
5
|
+
import { defineConfig } from 'vitest/config';
|
|
6
|
+
|
|
7
|
+
const PACKAGE_ROOT = dirname(fileURLToPath(import.meta.url));
|
|
8
|
+
|
|
9
|
+
export default defineConfig({
|
|
10
|
+
root: PACKAGE_ROOT,
|
|
11
|
+
plugins: [
|
|
12
|
+
storybookTest({
|
|
13
|
+
configDir: join(PACKAGE_ROOT, 'build/storybook'),
|
|
14
|
+
storybookUrl: 'http://localhost:8080',
|
|
15
|
+
storybookScript: 'npm start',
|
|
16
|
+
}),
|
|
17
|
+
// `storybookTest` assumes `configDir` sits one directory below the package root (the
|
|
18
|
+
// conventional `.storybook` layout) and derives Vitest's `root` from `configDir`'s parent.
|
|
19
|
+
// This repo nests Storybook config one level deeper (`build/storybook`), so it resolves to
|
|
20
|
+
// the wrong directory (`build/`) and no story files are found. Force it back.
|
|
21
|
+
{
|
|
22
|
+
name: 'fix-storybook-vitest-root',
|
|
23
|
+
enforce: 'post',
|
|
24
|
+
config: () => ({ root: PACKAGE_ROOT }),
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
optimizeDeps: {
|
|
28
|
+
// Vite's dependency scanner reads the story files from disk without running the JSX
|
|
29
|
+
// transform, so the automatic runtime imports it injects are invisible to it. On a cold
|
|
30
|
+
// cache (every CI run) they are only discovered once the browser requests a story, which
|
|
31
|
+
// re-runs the optimizer mid-suite, changes the `browserHash` and reloads the page. The test
|
|
32
|
+
// file then resolves a second copy of `@vitest/runner` whose collector was never
|
|
33
|
+
// initialised, and collection dies with "Vitest failed to find the current suite".
|
|
34
|
+
include: ['react/jsx-runtime', 'react/jsx-dev-runtime'],
|
|
35
|
+
},
|
|
36
|
+
test: {
|
|
37
|
+
name: 'ui:storybook',
|
|
38
|
+
setupFiles: ['./vitest.setup.ts'],
|
|
39
|
+
retry: 2,
|
|
40
|
+
browser: {
|
|
41
|
+
enabled: true,
|
|
42
|
+
headless: true,
|
|
43
|
+
provider: playwright(),
|
|
44
|
+
instances: [{ browser: 'chromium' }],
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
});
|
package/vitest.setup.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// TODO: remove once the remaining `defaultProps` usages are migrated to default parameters
|
|
2
|
+
const IGNORED_CONSOLE_ERROR_PATTERNS = [
|
|
3
|
+
/Support for defaultProps will be removed from function components/,
|
|
4
|
+
/Invalid prop/,
|
|
5
|
+
/Failed %s type/,
|
|
6
|
+
/React does not recognize the/,
|
|
7
|
+
/Each child in a list/,
|
|
8
|
+
/Encountered two children/,
|
|
9
|
+
/forwardRef render functions/,
|
|
10
|
+
];
|
|
11
|
+
|
|
12
|
+
const originalConsoleError = console.error;
|
|
13
|
+
|
|
14
|
+
console.error = (...args: unknown[]) => {
|
|
15
|
+
const isIgnored = args.some(
|
|
16
|
+
(arg) =>
|
|
17
|
+
typeof arg === 'string' &&
|
|
18
|
+
IGNORED_CONSOLE_ERROR_PATTERNS.some((pattern) => pattern.test(arg)),
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
if (isIgnored) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
originalConsoleError(...args);
|
|
26
|
+
};
|
package/lib/assets/icons.svg.js
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.SvgIcons = void 0;
|
|
37
|
-
const React = __importStar(require("react"));
|
|
38
|
-
const SvgIcons = (props) => (React.createElement("svg", { width: "0", height: "0", style: { position: 'absolute' }, ...props },
|
|
39
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "arrow", xmlns: "http://www.w3.org/2000/svg" },
|
|
40
|
-
React.createElement("path", { d: "M12 5v14M19 12l-7 7-7-7" })),
|
|
41
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "arrow-right-circle", xmlns: "http://www.w3.org/2000/svg" },
|
|
42
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
43
|
-
React.createElement("path", { d: "m12 16 4-4-4-4M8 12h8" })),
|
|
44
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "check", xmlns: "http://www.w3.org/2000/svg" },
|
|
45
|
-
React.createElement("path", { d: "M20 6 9 17l-5-5" })),
|
|
46
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "chevron-down", xmlns: "http://www.w3.org/2000/svg" },
|
|
47
|
-
React.createElement("path", { d: "m6 9 6 6 6-6" })),
|
|
48
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "chevron-up", xmlns: "http://www.w3.org/2000/svg" },
|
|
49
|
-
React.createElement("path", { d: "m18 15-6-6-6 6" })),
|
|
50
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "clipboard", xmlns: "http://www.w3.org/2000/svg" },
|
|
51
|
-
React.createElement("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
52
|
-
React.createElement("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })),
|
|
53
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "clipboard-check", xmlns: "http://www.w3.org/2000/svg" },
|
|
54
|
-
React.createElement("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
55
|
-
React.createElement("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
56
|
-
React.createElement("path", { d: "m9.277 15.145 2 2 4-4" })),
|
|
57
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "clock", xmlns: "http://www.w3.org/2000/svg" },
|
|
58
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
59
|
-
React.createElement("path", { d: "M12 6v6l4 2" })),
|
|
60
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "close", xmlns: "http://www.w3.org/2000/svg" },
|
|
61
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
62
|
-
React.createElement("path", { d: "m15 9-6 6M9 9l6 6" })),
|
|
63
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "commit", xmlns: "http://www.w3.org/2000/svg" },
|
|
64
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "4" }),
|
|
65
|
-
React.createElement("path", { d: "M1.05 12H7M17.01 12h5.95" })),
|
|
66
|
-
React.createElement("symbol", { fill: "currentColor", viewBox: "0 0 24 24", id: "download", xmlns: "http://www.w3.org/2000/svg" },
|
|
67
|
-
React.createElement("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
|
68
|
-
React.createElement("path", { d: "M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" })),
|
|
69
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "error", xmlns: "http://www.w3.org/2000/svg" },
|
|
70
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
71
|
-
React.createElement("path", { d: "M12 8v4M12 16h.01" })),
|
|
72
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "external-link", xmlns: "http://www.w3.org/2000/svg" },
|
|
73
|
-
React.createElement("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3" })),
|
|
74
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "filter", xmlns: "http://www.w3.org/2000/svg" },
|
|
75
|
-
React.createElement("path", { d: "M12 20V10M18 20V4M6 20v-4" })),
|
|
76
|
-
React.createElement("symbol", { viewBox: "0 0 98 96", id: "github", xmlns: "http://www.w3.org/2000/svg" },
|
|
77
|
-
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z", fill: "currentColor" })),
|
|
78
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "help", xmlns: "http://www.w3.org/2000/svg" },
|
|
79
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
80
|
-
React.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h.01" })),
|
|
81
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "info", xmlns: "http://www.w3.org/2000/svg" },
|
|
82
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
83
|
-
React.createElement("path", { d: "M12 16v-4M12 8h.01" })),
|
|
84
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "menu", xmlns: "http://www.w3.org/2000/svg" },
|
|
85
|
-
React.createElement("path", { d: "M3 12h18M3 6h18M3 18h18" })),
|
|
86
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "more-vertical", xmlns: "http://www.w3.org/2000/svg" },
|
|
87
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "1" }),
|
|
88
|
-
React.createElement("circle", { cx: "12", cy: "5", r: "1" }),
|
|
89
|
-
React.createElement("circle", { cx: "12", cy: "19", r: "1" })),
|
|
90
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "currentColor", id: "sort", xmlns: "http://www.w3.org/2000/svg" },
|
|
91
|
-
React.createElement("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" }),
|
|
92
|
-
React.createElement("path", { d: "M0 0h24v24H0z", fill: "none" })),
|
|
93
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "table", xmlns: "http://www.w3.org/2000/svg" },
|
|
94
|
-
React.createElement("path", { d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" })),
|
|
95
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "treemap", xmlns: "http://www.w3.org/2000/svg" },
|
|
96
|
-
React.createElement("path", { d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 21h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9M12.025 3.422 12 20.652ZM12.85 9l7.347.025zm-.153 6 7.576.025zm4.334.764L17 20.326Z" })),
|
|
97
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "warning", xmlns: "http://www.w3.org/2000/svg" },
|
|
98
|
-
React.createElement("path", { d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01" }))));
|
|
99
|
-
exports.SvgIcons = SvgIcons;
|
|
100
|
-
//# sourceMappingURL=icons.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"icons.svg.js","sourceRoot":"","sources":["../../src/assets/icons.svg.jsx"],"names":[],"mappings":"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"}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export const SvgIcons = (props) => (React.createElement("svg", { width: "0", height: "0", style: { position: 'absolute' }, ...props },
|
|
3
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "arrow", xmlns: "http://www.w3.org/2000/svg" },
|
|
4
|
-
React.createElement("path", { d: "M12 5v14M19 12l-7 7-7-7" })),
|
|
5
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "arrow-right-circle", xmlns: "http://www.w3.org/2000/svg" },
|
|
6
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
7
|
-
React.createElement("path", { d: "m12 16 4-4-4-4M8 12h8" })),
|
|
8
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "check", xmlns: "http://www.w3.org/2000/svg" },
|
|
9
|
-
React.createElement("path", { d: "M20 6 9 17l-5-5" })),
|
|
10
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "chevron-down", xmlns: "http://www.w3.org/2000/svg" },
|
|
11
|
-
React.createElement("path", { d: "m6 9 6 6 6-6" })),
|
|
12
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "chevron-up", xmlns: "http://www.w3.org/2000/svg" },
|
|
13
|
-
React.createElement("path", { d: "m18 15-6-6-6 6" })),
|
|
14
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "clipboard", xmlns: "http://www.w3.org/2000/svg" },
|
|
15
|
-
React.createElement("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
16
|
-
React.createElement("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })),
|
|
17
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "clipboard-check", xmlns: "http://www.w3.org/2000/svg" },
|
|
18
|
-
React.createElement("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
19
|
-
React.createElement("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
20
|
-
React.createElement("path", { d: "m9.277 15.145 2 2 4-4" })),
|
|
21
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "clock", xmlns: "http://www.w3.org/2000/svg" },
|
|
22
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
23
|
-
React.createElement("path", { d: "M12 6v6l4 2" })),
|
|
24
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "close", xmlns: "http://www.w3.org/2000/svg" },
|
|
25
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
26
|
-
React.createElement("path", { d: "m15 9-6 6M9 9l6 6" })),
|
|
27
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "commit", xmlns: "http://www.w3.org/2000/svg" },
|
|
28
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "4" }),
|
|
29
|
-
React.createElement("path", { d: "M1.05 12H7M17.01 12h5.95" })),
|
|
30
|
-
React.createElement("symbol", { fill: "currentColor", viewBox: "0 0 24 24", id: "download", xmlns: "http://www.w3.org/2000/svg" },
|
|
31
|
-
React.createElement("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
|
32
|
-
React.createElement("path", { d: "M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" })),
|
|
33
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "error", xmlns: "http://www.w3.org/2000/svg" },
|
|
34
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
35
|
-
React.createElement("path", { d: "M12 8v4M12 16h.01" })),
|
|
36
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "external-link", xmlns: "http://www.w3.org/2000/svg" },
|
|
37
|
-
React.createElement("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3" })),
|
|
38
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "filter", xmlns: "http://www.w3.org/2000/svg" },
|
|
39
|
-
React.createElement("path", { d: "M12 20V10M18 20V4M6 20v-4" })),
|
|
40
|
-
React.createElement("symbol", { viewBox: "0 0 98 96", id: "github", xmlns: "http://www.w3.org/2000/svg" },
|
|
41
|
-
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z", fill: "currentColor" })),
|
|
42
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "help", xmlns: "http://www.w3.org/2000/svg" },
|
|
43
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
44
|
-
React.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h.01" })),
|
|
45
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "info", xmlns: "http://www.w3.org/2000/svg" },
|
|
46
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
|
47
|
-
React.createElement("path", { d: "M12 16v-4M12 8h.01" })),
|
|
48
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "menu", xmlns: "http://www.w3.org/2000/svg" },
|
|
49
|
-
React.createElement("path", { d: "M3 12h18M3 6h18M3 18h18" })),
|
|
50
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "more-vertical", xmlns: "http://www.w3.org/2000/svg" },
|
|
51
|
-
React.createElement("circle", { cx: "12", cy: "12", r: "1" }),
|
|
52
|
-
React.createElement("circle", { cx: "12", cy: "5", r: "1" }),
|
|
53
|
-
React.createElement("circle", { cx: "12", cy: "19", r: "1" })),
|
|
54
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "currentColor", id: "sort", xmlns: "http://www.w3.org/2000/svg" },
|
|
55
|
-
React.createElement("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" }),
|
|
56
|
-
React.createElement("path", { d: "M0 0h24v24H0z", fill: "none" })),
|
|
57
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", viewBox: "0 0 24 24", id: "table", xmlns: "http://www.w3.org/2000/svg" },
|
|
58
|
-
React.createElement("path", { d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" })),
|
|
59
|
-
React.createElement("symbol", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", viewBox: "0 0 24 24", id: "treemap", xmlns: "http://www.w3.org/2000/svg" },
|
|
60
|
-
React.createElement("path", { d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 21h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9M12.025 3.422 12 20.652ZM12.85 9l7.347.025zm-.153 6 7.576.025zm4.334.764L17 20.326Z" })),
|
|
61
|
-
React.createElement("symbol", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", id: "warning", xmlns: "http://www.w3.org/2000/svg" },
|
|
62
|
-
React.createElement("path", { d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01" }))));
|
|
63
|
-
//# sourceMappingURL=icons.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"icons.svg.js","sourceRoot":"","sources":["../../src/assets/icons.svg.jsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CACjC,6BAAK,KAAK,EAAC,GAAG,EAAC,MAAM,EAAC,GAAG,EAAC,KAAK,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAM,KAAK;IAClE,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,yBAAyB,GAAG,CAC7B;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,oBAAoB,EACvB,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,uBAAuB,GAAG,CAC3B;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,iBAAiB,GAAG,CACrB;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,cAAc,EACjB,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,cAAc,GAAG,CAClB;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,YAAY,EACf,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,gBAAgB,GAAG,CACpB;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,WAAW,EACd,KAAK,EAAC,4BAA4B;QAElC,8BAAM,KAAK,EAAC,GAAG,EAAC,MAAM,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,GAAG;QACvD,8BAAM,CAAC,EAAC,0EAA0E,GAAG,CAC9E;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,iBAAiB,EACpB,KAAK,EAAC,4BAA4B;QAElC,8BAAM,KAAK,EAAC,GAAG,EAAC,MAAM,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,GAAG;QACvD,8BAAM,CAAC,EAAC,0EAA0E,GAAG;QACrF,8BAAM,CAAC,EAAC,uBAAuB,GAAG,CAC3B;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,aAAa,GAAG,CACjB;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,mBAAmB,GAAG,CACvB;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,QAAQ,EACX,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,GAAG,GAAG;QAChC,8BAAM,CAAC,EAAC,0BAA0B,GAAG,CAC9B;IACT,gCACE,IAAI,EAAC,cAAc,EACnB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,UAAU,EACb,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,eAAe,EAAC,IAAI,EAAC,MAAM,GAAG;QACtC,8BAAM,CAAC,EAAC,iLAAiL,GAAG,CACrL;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,mBAAmB,GAAG,CACvB;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,eAAe,EAClB,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,8EAA8E,GAAG,CAClF;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,QAAQ,EACX,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,2BAA2B,GAAG,CAC/B;IACT,gCAAQ,OAAO,EAAC,WAAW,EAAC,EAAE,EAAC,QAAQ,EAAC,KAAK,EAAC,4BAA4B;QACxE,8BACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,6zBAA6zB,EAC/zB,IAAI,EAAC,cAAc,GACnB,CACK;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,MAAM,EACT,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,gDAAgD,GAAG,CACpD;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,MAAM,EACT,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAG;QACjC,8BAAM,CAAC,EAAC,oBAAoB,GAAG,CACxB;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,MAAM,EACT,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,yBAAyB,GAAG,CAC7B;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,eAAe,EAClB,KAAK,EAAC,4BAA4B;QAElC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,GAAG,GAAG;QAChC,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,GAAG;QAC/B,gCAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,GAAG,GAAG,CACzB;IACT,gCAAQ,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,EAAC,EAAE,EAAC,MAAM,EAAC,KAAK,EAAC,4BAA4B;QAC1F,8BAAM,CAAC,EAAC,8CAA8C,GAAG;QACzD,8BAAM,CAAC,EAAC,eAAe,EAAC,IAAI,EAAC,MAAM,GAAG,CAC/B;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,OAAO,EACV,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,2GAA2G,GAAG,CAC/G;IACT,gCACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,WAAW,EACnB,EAAE,EAAC,SAAS,EACZ,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,iLAAiL,GAAG,CACrL;IACT,gCACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,GAAG,EACf,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,EAAE,EAAC,SAAS,EACZ,KAAK,EAAC,4BAA4B;QAElC,8BAAM,CAAC,EAAC,2GAA2G,GAAG,CAC/G,CACL,CACP,CAAC"}
|
package/src/assets/icons.svg.jsx
DELETED
|
@@ -1,279 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export const SvgIcons = (props) => (
|
|
4
|
-
<svg width="0" height="0" style={{ position: 'absolute' }} {...props}>
|
|
5
|
-
<symbol
|
|
6
|
-
viewBox="0 0 24 24"
|
|
7
|
-
fill="none"
|
|
8
|
-
stroke="currentColor"
|
|
9
|
-
strokeWidth="2"
|
|
10
|
-
strokeLinecap="round"
|
|
11
|
-
strokeLinejoin="round"
|
|
12
|
-
id="arrow"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
>
|
|
15
|
-
<path d="M12 5v14M19 12l-7 7-7-7" />
|
|
16
|
-
</symbol>
|
|
17
|
-
<symbol
|
|
18
|
-
fill="none"
|
|
19
|
-
stroke="currentColor"
|
|
20
|
-
strokeWidth="2"
|
|
21
|
-
strokeLinecap="round"
|
|
22
|
-
strokeLinejoin="round"
|
|
23
|
-
viewBox="0 0 24 24"
|
|
24
|
-
id="arrow-right-circle"
|
|
25
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
-
>
|
|
27
|
-
<circle cx="12" cy="12" r="10" />
|
|
28
|
-
<path d="m12 16 4-4-4-4M8 12h8" />
|
|
29
|
-
</symbol>
|
|
30
|
-
<symbol
|
|
31
|
-
viewBox="0 0 24 24"
|
|
32
|
-
fill="none"
|
|
33
|
-
stroke="currentColor"
|
|
34
|
-
strokeWidth="2"
|
|
35
|
-
strokeLinecap="round"
|
|
36
|
-
strokeLinejoin="round"
|
|
37
|
-
id="check"
|
|
38
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
39
|
-
>
|
|
40
|
-
<path d="M20 6 9 17l-5-5" />
|
|
41
|
-
</symbol>
|
|
42
|
-
<symbol
|
|
43
|
-
fill="none"
|
|
44
|
-
stroke="currentColor"
|
|
45
|
-
strokeWidth="2"
|
|
46
|
-
strokeLinecap="round"
|
|
47
|
-
strokeLinejoin="round"
|
|
48
|
-
viewBox="0 0 24 24"
|
|
49
|
-
id="chevron-down"
|
|
50
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
51
|
-
>
|
|
52
|
-
<path d="m6 9 6 6 6-6" />
|
|
53
|
-
</symbol>
|
|
54
|
-
<symbol
|
|
55
|
-
fill="none"
|
|
56
|
-
stroke="currentColor"
|
|
57
|
-
strokeWidth="2"
|
|
58
|
-
strokeLinecap="round"
|
|
59
|
-
strokeLinejoin="round"
|
|
60
|
-
viewBox="0 0 24 24"
|
|
61
|
-
id="chevron-up"
|
|
62
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
63
|
-
>
|
|
64
|
-
<path d="m18 15-6-6-6 6" />
|
|
65
|
-
</symbol>
|
|
66
|
-
<symbol
|
|
67
|
-
fill="none"
|
|
68
|
-
stroke="currentColor"
|
|
69
|
-
strokeLinecap="round"
|
|
70
|
-
strokeLinejoin="round"
|
|
71
|
-
strokeWidth="2"
|
|
72
|
-
viewBox="0 0 24 24"
|
|
73
|
-
id="clipboard"
|
|
74
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
75
|
-
>
|
|
76
|
-
<rect width="8" height="4" x="8" y="2" rx="1" ry="1" />
|
|
77
|
-
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
|
78
|
-
</symbol>
|
|
79
|
-
<symbol
|
|
80
|
-
fill="none"
|
|
81
|
-
stroke="currentColor"
|
|
82
|
-
strokeLinecap="round"
|
|
83
|
-
strokeLinejoin="round"
|
|
84
|
-
strokeWidth="2"
|
|
85
|
-
viewBox="0 0 24 24"
|
|
86
|
-
id="clipboard-check"
|
|
87
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
88
|
-
>
|
|
89
|
-
<rect width="8" height="4" x="8" y="2" rx="1" ry="1" />
|
|
90
|
-
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
|
91
|
-
<path d="m9.277 15.145 2 2 4-4" />
|
|
92
|
-
</symbol>
|
|
93
|
-
<symbol
|
|
94
|
-
viewBox="0 0 24 24"
|
|
95
|
-
fill="none"
|
|
96
|
-
stroke="currentColor"
|
|
97
|
-
strokeWidth="2"
|
|
98
|
-
strokeLinecap="round"
|
|
99
|
-
strokeLinejoin="round"
|
|
100
|
-
id="clock"
|
|
101
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
102
|
-
>
|
|
103
|
-
<circle cx="12" cy="12" r="10" />
|
|
104
|
-
<path d="M12 6v6l4 2" />
|
|
105
|
-
</symbol>
|
|
106
|
-
<symbol
|
|
107
|
-
fill="none"
|
|
108
|
-
stroke="currentColor"
|
|
109
|
-
strokeWidth="2"
|
|
110
|
-
strokeLinecap="round"
|
|
111
|
-
strokeLinejoin="round"
|
|
112
|
-
viewBox="0 0 24 24"
|
|
113
|
-
id="close"
|
|
114
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
115
|
-
>
|
|
116
|
-
<circle cx="12" cy="12" r="10" />
|
|
117
|
-
<path d="m15 9-6 6M9 9l6 6" />
|
|
118
|
-
</symbol>
|
|
119
|
-
<symbol
|
|
120
|
-
viewBox="0 0 24 24"
|
|
121
|
-
fill="none"
|
|
122
|
-
stroke="currentColor"
|
|
123
|
-
strokeWidth="2"
|
|
124
|
-
strokeLinecap="round"
|
|
125
|
-
strokeLinejoin="round"
|
|
126
|
-
id="commit"
|
|
127
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
128
|
-
>
|
|
129
|
-
<circle cx="12" cy="12" r="4" />
|
|
130
|
-
<path d="M1.05 12H7M17.01 12h5.95" />
|
|
131
|
-
</symbol>
|
|
132
|
-
<symbol
|
|
133
|
-
fill="currentColor"
|
|
134
|
-
viewBox="0 0 24 24"
|
|
135
|
-
id="download"
|
|
136
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
137
|
-
>
|
|
138
|
-
<path d="M0 0h24v24H0z" fill="none" />
|
|
139
|
-
<path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" />
|
|
140
|
-
</symbol>
|
|
141
|
-
<symbol
|
|
142
|
-
fill="none"
|
|
143
|
-
stroke="currentColor"
|
|
144
|
-
strokeWidth="2"
|
|
145
|
-
strokeLinecap="round"
|
|
146
|
-
strokeLinejoin="round"
|
|
147
|
-
viewBox="0 0 24 24"
|
|
148
|
-
id="error"
|
|
149
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
150
|
-
>
|
|
151
|
-
<circle cx="12" cy="12" r="10" />
|
|
152
|
-
<path d="M12 8v4M12 16h.01" />
|
|
153
|
-
</symbol>
|
|
154
|
-
<symbol
|
|
155
|
-
fill="none"
|
|
156
|
-
stroke="currentColor"
|
|
157
|
-
strokeWidth="2"
|
|
158
|
-
strokeLinecap="round"
|
|
159
|
-
strokeLinejoin="round"
|
|
160
|
-
viewBox="0 0 24 24"
|
|
161
|
-
id="external-link"
|
|
162
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
163
|
-
>
|
|
164
|
-
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3" />
|
|
165
|
-
</symbol>
|
|
166
|
-
<symbol
|
|
167
|
-
viewBox="0 0 24 24"
|
|
168
|
-
fill="none"
|
|
169
|
-
stroke="currentColor"
|
|
170
|
-
strokeWidth="2"
|
|
171
|
-
strokeLinecap="round"
|
|
172
|
-
strokeLinejoin="round"
|
|
173
|
-
id="filter"
|
|
174
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
175
|
-
>
|
|
176
|
-
<path d="M12 20V10M18 20V4M6 20v-4" />
|
|
177
|
-
</symbol>
|
|
178
|
-
<symbol viewBox="0 0 98 96" id="github" xmlns="http://www.w3.org/2000/svg">
|
|
179
|
-
<path
|
|
180
|
-
fillRule="evenodd"
|
|
181
|
-
clipRule="evenodd"
|
|
182
|
-
d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z"
|
|
183
|
-
fill="currentColor"
|
|
184
|
-
/>
|
|
185
|
-
</symbol>
|
|
186
|
-
<symbol
|
|
187
|
-
viewBox="0 0 24 24"
|
|
188
|
-
fill="none"
|
|
189
|
-
stroke="currentColor"
|
|
190
|
-
strokeWidth="2"
|
|
191
|
-
strokeLinecap="round"
|
|
192
|
-
strokeLinejoin="round"
|
|
193
|
-
id="help"
|
|
194
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
195
|
-
>
|
|
196
|
-
<circle cx="12" cy="12" r="10" />
|
|
197
|
-
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h.01" />
|
|
198
|
-
</symbol>
|
|
199
|
-
<symbol
|
|
200
|
-
fill="none"
|
|
201
|
-
stroke="currentColor"
|
|
202
|
-
strokeWidth="2"
|
|
203
|
-
strokeLinecap="round"
|
|
204
|
-
strokeLinejoin="round"
|
|
205
|
-
viewBox="0 0 24 24"
|
|
206
|
-
id="info"
|
|
207
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
208
|
-
>
|
|
209
|
-
<circle cx="12" cy="12" r="10" />
|
|
210
|
-
<path d="M12 16v-4M12 8h.01" />
|
|
211
|
-
</symbol>
|
|
212
|
-
<symbol
|
|
213
|
-
viewBox="0 0 24 24"
|
|
214
|
-
fill="none"
|
|
215
|
-
stroke="currentColor"
|
|
216
|
-
strokeWidth="2"
|
|
217
|
-
strokeLinecap="round"
|
|
218
|
-
strokeLinejoin="round"
|
|
219
|
-
id="menu"
|
|
220
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
221
|
-
>
|
|
222
|
-
<path d="M3 12h18M3 6h18M3 18h18" />
|
|
223
|
-
</symbol>
|
|
224
|
-
<symbol
|
|
225
|
-
fill="none"
|
|
226
|
-
stroke="currentColor"
|
|
227
|
-
strokeWidth="2"
|
|
228
|
-
strokeLinecap="round"
|
|
229
|
-
strokeLinejoin="round"
|
|
230
|
-
viewBox="0 0 24 24"
|
|
231
|
-
id="more-vertical"
|
|
232
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
233
|
-
>
|
|
234
|
-
<circle cx="12" cy="12" r="1" />
|
|
235
|
-
<circle cx="12" cy="5" r="1" />
|
|
236
|
-
<circle cx="12" cy="19" r="1" />
|
|
237
|
-
</symbol>
|
|
238
|
-
<symbol viewBox="0 0 24 24" fill="currentColor" id="sort" xmlns="http://www.w3.org/2000/svg">
|
|
239
|
-
<path d="M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" />
|
|
240
|
-
<path d="M0 0h24v24H0z" fill="none" />
|
|
241
|
-
</symbol>
|
|
242
|
-
<symbol
|
|
243
|
-
fill="none"
|
|
244
|
-
stroke="currentColor"
|
|
245
|
-
strokeWidth="2"
|
|
246
|
-
strokeLinecap="round"
|
|
247
|
-
strokeLinejoin="round"
|
|
248
|
-
viewBox="0 0 24 24"
|
|
249
|
-
id="table"
|
|
250
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
251
|
-
>
|
|
252
|
-
<path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" />
|
|
253
|
-
</symbol>
|
|
254
|
-
<symbol
|
|
255
|
-
fill="none"
|
|
256
|
-
stroke="currentColor"
|
|
257
|
-
strokeLinecap="round"
|
|
258
|
-
strokeLinejoin="round"
|
|
259
|
-
strokeWidth="2"
|
|
260
|
-
viewBox="0 0 24 24"
|
|
261
|
-
id="treemap"
|
|
262
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
263
|
-
>
|
|
264
|
-
<path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 21h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9M12.025 3.422 12 20.652ZM12.85 9l7.347.025zm-.153 6 7.576.025zm4.334.764L17 20.326Z" />
|
|
265
|
-
</symbol>
|
|
266
|
-
<symbol
|
|
267
|
-
viewBox="0 0 24 24"
|
|
268
|
-
fill="none"
|
|
269
|
-
stroke="currentColor"
|
|
270
|
-
strokeWidth="2"
|
|
271
|
-
strokeLinecap="round"
|
|
272
|
-
strokeLinejoin="round"
|
|
273
|
-
id="warning"
|
|
274
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
275
|
-
>
|
|
276
|
-
<path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01" />
|
|
277
|
-
</symbol>
|
|
278
|
-
</svg>
|
|
279
|
-
);
|