@neo4j-ndl/react 0.7.2 → 0.8.1
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/lib/cjs/code-block/CodeBlock.js +104 -0
- package/lib/cjs/code-block/CodeBlock.js.map +1 -0
- package/lib/cjs/code-block/index.js +38 -0
- package/lib/cjs/code-block/index.js.map +1 -0
- package/lib/cjs/code-block/languages.js +302 -0
- package/lib/cjs/code-block/languages.js.map +1 -0
- package/lib/cjs/dropdown/Dropdown.js +1 -1
- package/lib/cjs/dropdown/Dropdown.js.map +1 -1
- package/lib/cjs/graph-label/GraphLabel.js +80 -42
- package/lib/cjs/graph-label/GraphLabel.js.map +1 -1
- package/lib/cjs/graph-label/color.js +87 -0
- package/lib/cjs/graph-label/color.js.map +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/code-block/CodeBlock.js +75 -0
- package/lib/esm/code-block/CodeBlock.js.map +1 -0
- package/lib/esm/code-block/index.js +22 -0
- package/lib/esm/code-block/index.js.map +1 -0
- package/lib/esm/code-block/languages.js +301 -0
- package/lib/esm/code-block/languages.js.map +1 -0
- package/lib/esm/dropdown/Dropdown.js +1 -1
- package/lib/esm/dropdown/Dropdown.js.map +1 -1
- package/lib/esm/graph-label/GraphLabel.js +57 -42
- package/lib/esm/graph-label/GraphLabel.js.map +1 -1
- package/lib/esm/graph-label/color.js +77 -0
- package/lib/esm/graph-label/color.js.map +1 -0
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/types/code-block/CodeBlock.d.ts +34 -0
- package/lib/types/code-block/index.d.ts +21 -0
- package/lib/types/code-block/languages.d.ts +23 -0
- package/lib/types/graph-label/GraphLabel.d.ts +11 -38
- package/lib/types/graph-label/color.d.ts +41 -0
- package/lib/types/index.d.ts +1 -0
- package/package.json +6 -3
|
@@ -0,0 +1,104 @@
|
|
|
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 (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.CodeBlock = void 0;
|
|
30
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* Copyright (c) "Neo4j"
|
|
34
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
35
|
+
*
|
|
36
|
+
* This file is part of Neo4j.
|
|
37
|
+
*
|
|
38
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
39
|
+
* it under the terms of the GNU General Public License as published by
|
|
40
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
41
|
+
* (at your option) any later version.
|
|
42
|
+
*
|
|
43
|
+
* This program is distributed in the hope that it will be useful,
|
|
44
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
45
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
46
|
+
* GNU General Public License for more details.
|
|
47
|
+
*
|
|
48
|
+
* You should have received a copy of the GNU General Public License
|
|
49
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
50
|
+
*/
|
|
51
|
+
const tokens_1 = __importDefault(require("@neo4j-ndl/base/lib/tokens/js/tokens"));
|
|
52
|
+
const react_1 = __importStar(require("react"));
|
|
53
|
+
const classnames_1 = __importDefault(require("classnames"));
|
|
54
|
+
const button_1 = require("../button");
|
|
55
|
+
const react_syntax_highlighter_1 = require("react-syntax-highlighter");
|
|
56
|
+
const prism_1 = require("react-syntax-highlighter/dist/cjs/styles/prism");
|
|
57
|
+
exports.CodeBlock = react_1.default.forwardRef(function CodeBlock({ as, code, language, showLineNumbers, theme, title, actions, disabled, }, ref) {
|
|
58
|
+
const Component = as || 'div';
|
|
59
|
+
const [isFocused, setIsFocused] = (0, react_1.useState)(false);
|
|
60
|
+
const getTheme = () => {
|
|
61
|
+
switch (theme) {
|
|
62
|
+
case 'vs':
|
|
63
|
+
return prism_1.vs;
|
|
64
|
+
case 'base16-ateliersulphurpool.light':
|
|
65
|
+
return prism_1.base16AteliersulphurpoolLight;
|
|
66
|
+
case 'coy':
|
|
67
|
+
return prism_1.coy;
|
|
68
|
+
case 'duotone-light':
|
|
69
|
+
return prism_1.duotoneLight;
|
|
70
|
+
case 'ghcolors':
|
|
71
|
+
return prism_1.ghcolors;
|
|
72
|
+
case 'prism':
|
|
73
|
+
return prism_1.prism;
|
|
74
|
+
case 'solarizedlight':
|
|
75
|
+
return prism_1.solarizedlight;
|
|
76
|
+
default:
|
|
77
|
+
return prism_1.vs;
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
const hasHeader = title || actions;
|
|
81
|
+
return ((0, jsx_runtime_1.jsxs)(Component, Object.assign({ ref: ref, className: "ndl-code-block-container" }, { children: [hasHeader && ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: (0, classnames_1.default)('ndl-code-block-title', {
|
|
82
|
+
disabled,
|
|
83
|
+
}) }, { children: [title && (0, jsx_runtime_1.jsx)("h6", { children: title }), (0, jsx_runtime_1.jsx)("div", { children: actions === null || actions === void 0 ? void 0 : actions.map((iconButtonProps, i) => ((0, jsx_runtime_1.jsx)(button_1.IconButton, Object.assign({ clean: true, disabled: disabled }, iconButtonProps), i))) })] }))), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: (0, classnames_1.default)('highlight-wrapper', {
|
|
84
|
+
'has-header': hasHeader,
|
|
85
|
+
focused: isFocused,
|
|
86
|
+
}), role: "textbox", "aria-label": `${title} code-snippet`, tabIndex: 0, onFocus: () => {
|
|
87
|
+
setIsFocused(true);
|
|
88
|
+
}, onBlur: () => setIsFocused(false) }, { children: (0, jsx_runtime_1.jsx)(react_syntax_highlighter_1.Prism, Object.assign({ language: language, style: Object.assign(Object.assign({}, getTheme()), { 'pre[class*="language-"]': {
|
|
89
|
+
color: tokens_1.default.palette.light.neutral.text.weak,
|
|
90
|
+
backgroundColor: tokens_1.default.colors.neutral[20],
|
|
91
|
+
background: tokens_1.default.colors.neutral[20],
|
|
92
|
+
lineHeight: '1',
|
|
93
|
+
border: 0,
|
|
94
|
+
padding: '0 1em 1em 1em',
|
|
95
|
+
overflowX: 'auto',
|
|
96
|
+
overflowY: 'auto',
|
|
97
|
+
opacity: disabled ? 0.5 : 1,
|
|
98
|
+
} }),
|
|
99
|
+
// Turn on 'showLineNumbers' & 'wrapLongLines' at the same time, the display is wrong
|
|
100
|
+
// https://github.com/react-syntax-highlighter/react-syntax-highlighter/issues/402
|
|
101
|
+
// wrapLongLines
|
|
102
|
+
codeTagProps: { className: 'n-code' }, showLineNumbers: showLineNumbers }, { children: code })) }))] })));
|
|
103
|
+
});
|
|
104
|
+
//# sourceMappingURL=CodeBlock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeBlock.js","sourceRoot":"","sources":["../../../src/code-block/CodeBlock.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,kFAA6D;AAC7D,+CAAwC;AACxC,4DAAoC;AACpC,sCAAwD;AACxD,uEAAsE;AACtE,0EAQwD;AAsB3C,QAAA,SAAS,GAAG,eAAK,CAAC,UAAU,CAAC,SAAS,SAAS,CAC1D,EACE,EAAE,EACF,IAAI,EACJ,QAAQ,EACR,eAAe,EACf,KAAK,EACL,KAAK,EACL,OAAO,EACP,QAAQ,GACe,EACzB,GAAG;IAEH,MAAM,SAAS,GAAG,EAAE,IAAI,KAAK,CAAC;IAE9B,MAAM,CAAC,SAAS,EAAE,YAAY,CAAC,GAAG,IAAA,gBAAQ,EAAC,KAAK,CAAC,CAAC;IAElD,MAAM,QAAQ,GAAG,GAAG,EAAE;QACpB,QAAQ,KAAK,EAAE;YACb,KAAK,IAAI;gBACP,OAAO,UAAE,CAAC;YACZ,KAAK,iCAAiC;gBACpC,OAAO,qCAA6B,CAAC;YACvC,KAAK,KAAK;gBACR,OAAO,WAAG,CAAC;YACb,KAAK,eAAe;gBAClB,OAAO,oBAAY,CAAC;YACtB,KAAK,UAAU;gBACb,OAAO,gBAAQ,CAAC;YAClB,KAAK,OAAO;gBACV,OAAO,aAAK,CAAC;YACf,KAAK,gBAAgB;gBACnB,OAAO,sBAAc,CAAC;YACxB;gBACE,OAAO,UAAE,CAAC;SACb;IACH,CAAC,CAAC;IAEF,MAAM,SAAS,GAAG,KAAK,IAAI,OAAO,CAAC;IAEnC,OAAO,CACL,wBAAC,SAAS,kBAAC,GAAG,EAAE,GAAG,EAAE,SAAS,EAAC,0BAA0B,iBACtD,SAAS,IAAI,CACZ,+CACE,SAAS,EAAE,IAAA,oBAAU,EAAC,sBAAsB,EAAE;oBAC5C,QAAQ;iBACT,CAAC,iBAED,KAAK,IAAI,yCAAK,KAAK,GAAM,EAC1B,0CACG,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,GAAG,CAAC,CAAC,eAAe,EAAE,CAAC,EAAE,EAAE,CAAC,CACpC,uBAAC,mBAAU,kBAET,KAAK,QACL,QAAQ,EAAE,QAAQ,IACd,eAAe,GAHd,CAAC,CAIN,CACH,CAAC,GACE,KACF,CACP,EACD,8CACE,SAAS,EAAE,IAAA,oBAAU,EAAC,mBAAmB,EAAE;oBACzC,YAAY,EAAE,SAAS;oBACvB,OAAO,EAAE,SAAS;iBACnB,CAAC,EACF,IAAI,EAAC,SAAS,gBACF,GAAG,KAAK,eAAe,EACnC,QAAQ,EAAE,CAAC,EACX,OAAO,EAAE,GAAG,EAAE;oBACZ,YAAY,CAAC,IAAI,CAAC,CAAC;gBACrB,CAAC,EACD,MAAM,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,gBAEjC,uBAAC,gCAAiB,kBAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,kCACA,QAAQ,EAAE,KACb,yBAAyB,EAAE;4BACzB,KAAK,EAAE,gBAAS,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI;4BAChD,eAAe,EAAE,gBAAS,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;4BAC7C,UAAU,EAAE,gBAAS,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;4BACxC,UAAU,EAAE,GAAG;4BACf,MAAM,EAAE,CAAC;4BACT,OAAO,EAAE,eAAe;4BACxB,SAAS,EAAE,MAAM;4BACjB,SAAS,EAAE,MAAM;4BACjB,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;yBAC5B;oBAEH,qFAAqF;oBACrF,kFAAkF;oBAClF,gBAAgB;oBAChB,YAAY,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,EACrC,eAAe,EAAE,eAAe,gBAE/B,IAAI,IACa,IAChB,KACI,CACb,CAAC;AACJ,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) "Neo4j"
|
|
5
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
6
|
+
*
|
|
7
|
+
* This file is part of Neo4j.
|
|
8
|
+
*
|
|
9
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
*/
|
|
22
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
25
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
26
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
27
|
+
}
|
|
28
|
+
Object.defineProperty(o, k2, desc);
|
|
29
|
+
}) : (function(o, m, k, k2) {
|
|
30
|
+
if (k2 === undefined) k2 = k;
|
|
31
|
+
o[k2] = m[k];
|
|
32
|
+
}));
|
|
33
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
34
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
__exportStar(require("./CodeBlock"), exports);
|
|
38
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/code-block/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;;;;;AAEH,8CAA4B"}
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) "Neo4j"
|
|
5
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
6
|
+
*
|
|
7
|
+
* This file is part of Neo4j.
|
|
8
|
+
*
|
|
9
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
*/
|
|
22
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
|
+
const Languages = [
|
|
24
|
+
'abap',
|
|
25
|
+
'abnf',
|
|
26
|
+
'actionscript',
|
|
27
|
+
'ada',
|
|
28
|
+
'agda',
|
|
29
|
+
'al',
|
|
30
|
+
'antlr4',
|
|
31
|
+
'apacheconf',
|
|
32
|
+
'apex',
|
|
33
|
+
'apl',
|
|
34
|
+
'applescript',
|
|
35
|
+
'aql',
|
|
36
|
+
'arduino',
|
|
37
|
+
'arff',
|
|
38
|
+
'asciidoc',
|
|
39
|
+
'asm6502',
|
|
40
|
+
'asmatmel',
|
|
41
|
+
'aspnet',
|
|
42
|
+
'autohotkey',
|
|
43
|
+
'autoit',
|
|
44
|
+
'avisynth',
|
|
45
|
+
'avro-idl',
|
|
46
|
+
'bash',
|
|
47
|
+
'basic',
|
|
48
|
+
'batch',
|
|
49
|
+
'bbcode',
|
|
50
|
+
'bicep',
|
|
51
|
+
'birb',
|
|
52
|
+
'bison',
|
|
53
|
+
'bnf',
|
|
54
|
+
'brainfuck',
|
|
55
|
+
'brightscript',
|
|
56
|
+
'bro',
|
|
57
|
+
'bsl',
|
|
58
|
+
'c',
|
|
59
|
+
'cfscript',
|
|
60
|
+
'chaiscript',
|
|
61
|
+
'cil',
|
|
62
|
+
'clike',
|
|
63
|
+
'clojure',
|
|
64
|
+
'cmake',
|
|
65
|
+
'cobol',
|
|
66
|
+
'coffeescript',
|
|
67
|
+
'concurnas',
|
|
68
|
+
'coq',
|
|
69
|
+
'cpp',
|
|
70
|
+
'crystal',
|
|
71
|
+
'csharp',
|
|
72
|
+
'cshtml',
|
|
73
|
+
'csp',
|
|
74
|
+
'css-extras',
|
|
75
|
+
'css',
|
|
76
|
+
'csv',
|
|
77
|
+
'cypher',
|
|
78
|
+
'd',
|
|
79
|
+
'dart',
|
|
80
|
+
'dataweave',
|
|
81
|
+
'dax',
|
|
82
|
+
'dhall',
|
|
83
|
+
'diff',
|
|
84
|
+
'django',
|
|
85
|
+
'dns-zone-file',
|
|
86
|
+
'docker',
|
|
87
|
+
'dot',
|
|
88
|
+
'ebnf',
|
|
89
|
+
'editorconfig',
|
|
90
|
+
'eiffel',
|
|
91
|
+
'ejs',
|
|
92
|
+
'elixir',
|
|
93
|
+
'elm',
|
|
94
|
+
'erb',
|
|
95
|
+
'erlang',
|
|
96
|
+
'etlua',
|
|
97
|
+
'excel-formula',
|
|
98
|
+
'factor',
|
|
99
|
+
'false',
|
|
100
|
+
'firestore-security-rules',
|
|
101
|
+
'flow',
|
|
102
|
+
'fortran',
|
|
103
|
+
'fsharp',
|
|
104
|
+
'ftl',
|
|
105
|
+
'gap',
|
|
106
|
+
'gcode',
|
|
107
|
+
'gdscript',
|
|
108
|
+
'gedcom',
|
|
109
|
+
'gherkin',
|
|
110
|
+
'git',
|
|
111
|
+
'glsl',
|
|
112
|
+
'gml',
|
|
113
|
+
'gn',
|
|
114
|
+
'go-module',
|
|
115
|
+
'go',
|
|
116
|
+
'graphql',
|
|
117
|
+
'groovy',
|
|
118
|
+
'haml',
|
|
119
|
+
'handlebars',
|
|
120
|
+
'haskell',
|
|
121
|
+
'haxe',
|
|
122
|
+
'hcl',
|
|
123
|
+
'hlsl',
|
|
124
|
+
'hoon',
|
|
125
|
+
'hpkp',
|
|
126
|
+
'hsts',
|
|
127
|
+
'http',
|
|
128
|
+
'ichigojam',
|
|
129
|
+
'icon',
|
|
130
|
+
'icu-message-format',
|
|
131
|
+
'idris',
|
|
132
|
+
'iecst',
|
|
133
|
+
'ignore',
|
|
134
|
+
'inform7',
|
|
135
|
+
'ini',
|
|
136
|
+
'io',
|
|
137
|
+
'j',
|
|
138
|
+
'java',
|
|
139
|
+
'javadoc',
|
|
140
|
+
'javadoclike',
|
|
141
|
+
'javascript',
|
|
142
|
+
'javastacktrace',
|
|
143
|
+
'jexl',
|
|
144
|
+
'jolie',
|
|
145
|
+
'jq',
|
|
146
|
+
'js-extras',
|
|
147
|
+
'js-templates',
|
|
148
|
+
'jsdoc',
|
|
149
|
+
'json',
|
|
150
|
+
'json5',
|
|
151
|
+
'jsonp',
|
|
152
|
+
'jsstacktrace',
|
|
153
|
+
'jsx',
|
|
154
|
+
'julia',
|
|
155
|
+
'keepalived',
|
|
156
|
+
'keyman',
|
|
157
|
+
'kotlin',
|
|
158
|
+
'kumir',
|
|
159
|
+
'kusto',
|
|
160
|
+
'latex',
|
|
161
|
+
'latte',
|
|
162
|
+
'less',
|
|
163
|
+
'lilypond',
|
|
164
|
+
'liquid',
|
|
165
|
+
'lisp',
|
|
166
|
+
'livescript',
|
|
167
|
+
'llvm',
|
|
168
|
+
'log',
|
|
169
|
+
'lolcode',
|
|
170
|
+
'lua',
|
|
171
|
+
'magma',
|
|
172
|
+
'makefile',
|
|
173
|
+
'markdown',
|
|
174
|
+
'markup-templating',
|
|
175
|
+
'markup',
|
|
176
|
+
'matlab',
|
|
177
|
+
'maxscript',
|
|
178
|
+
'mel',
|
|
179
|
+
'mermaid',
|
|
180
|
+
'mizar',
|
|
181
|
+
'mongodb',
|
|
182
|
+
'monkey',
|
|
183
|
+
'moonscript',
|
|
184
|
+
'n1ql',
|
|
185
|
+
'n4js',
|
|
186
|
+
'nand2tetris-hdl',
|
|
187
|
+
'naniscript',
|
|
188
|
+
'nasm',
|
|
189
|
+
'neon',
|
|
190
|
+
'nevod',
|
|
191
|
+
'nginx',
|
|
192
|
+
'nim',
|
|
193
|
+
'nix',
|
|
194
|
+
'nsis',
|
|
195
|
+
'objectivec',
|
|
196
|
+
'ocaml',
|
|
197
|
+
'opencl',
|
|
198
|
+
'openqasm',
|
|
199
|
+
'oz',
|
|
200
|
+
'parigp',
|
|
201
|
+
'parser',
|
|
202
|
+
'pascal',
|
|
203
|
+
'pascaligo',
|
|
204
|
+
'pcaxis',
|
|
205
|
+
'peoplecode',
|
|
206
|
+
'perl',
|
|
207
|
+
'php-extras',
|
|
208
|
+
'php',
|
|
209
|
+
'phpdoc',
|
|
210
|
+
'plsql',
|
|
211
|
+
'powerquery',
|
|
212
|
+
'powershell',
|
|
213
|
+
'processing',
|
|
214
|
+
'prolog',
|
|
215
|
+
'promql',
|
|
216
|
+
'properties',
|
|
217
|
+
'protobuf',
|
|
218
|
+
'psl',
|
|
219
|
+
'pug',
|
|
220
|
+
'puppet',
|
|
221
|
+
'pure',
|
|
222
|
+
'purebasic',
|
|
223
|
+
'purescript',
|
|
224
|
+
'python',
|
|
225
|
+
'q',
|
|
226
|
+
'qml',
|
|
227
|
+
'qore',
|
|
228
|
+
'qsharp',
|
|
229
|
+
'r',
|
|
230
|
+
'racket',
|
|
231
|
+
'reason',
|
|
232
|
+
'regex',
|
|
233
|
+
'rego',
|
|
234
|
+
'renpy',
|
|
235
|
+
'rest',
|
|
236
|
+
'rip',
|
|
237
|
+
'roboconf',
|
|
238
|
+
'robotframework',
|
|
239
|
+
'ruby',
|
|
240
|
+
'rust',
|
|
241
|
+
'sas',
|
|
242
|
+
'sass',
|
|
243
|
+
'scala',
|
|
244
|
+
'scheme',
|
|
245
|
+
'scss',
|
|
246
|
+
'shell-session',
|
|
247
|
+
'smali',
|
|
248
|
+
'smalltalk',
|
|
249
|
+
'smarty',
|
|
250
|
+
'sml',
|
|
251
|
+
'solidity',
|
|
252
|
+
'solution-file',
|
|
253
|
+
'soy',
|
|
254
|
+
'sparql',
|
|
255
|
+
'splunk-spl',
|
|
256
|
+
'sqf',
|
|
257
|
+
'sql',
|
|
258
|
+
'squirrel',
|
|
259
|
+
'stan',
|
|
260
|
+
'stylus',
|
|
261
|
+
'swift',
|
|
262
|
+
'systemd',
|
|
263
|
+
't4-cs',
|
|
264
|
+
't4-templating',
|
|
265
|
+
't4-vb',
|
|
266
|
+
'tap',
|
|
267
|
+
'tcl',
|
|
268
|
+
'textile',
|
|
269
|
+
'toml',
|
|
270
|
+
'tremor',
|
|
271
|
+
'tsx',
|
|
272
|
+
'tt2',
|
|
273
|
+
'turtle',
|
|
274
|
+
'twig',
|
|
275
|
+
'typescript',
|
|
276
|
+
'typoscript',
|
|
277
|
+
'unrealscript',
|
|
278
|
+
'uorazor',
|
|
279
|
+
'uri',
|
|
280
|
+
'v',
|
|
281
|
+
'vala',
|
|
282
|
+
'vbnet',
|
|
283
|
+
'velocity',
|
|
284
|
+
'verilog',
|
|
285
|
+
'vhdl',
|
|
286
|
+
'vim',
|
|
287
|
+
'visual-basic',
|
|
288
|
+
'warpscript',
|
|
289
|
+
'wasm',
|
|
290
|
+
'web-idl',
|
|
291
|
+
'wiki',
|
|
292
|
+
'wolfram',
|
|
293
|
+
'wren',
|
|
294
|
+
'xeora',
|
|
295
|
+
'xml-doc',
|
|
296
|
+
'xojo',
|
|
297
|
+
'xquery',
|
|
298
|
+
'yaml',
|
|
299
|
+
'yang',
|
|
300
|
+
'zig',
|
|
301
|
+
];
|
|
302
|
+
//# sourceMappingURL=languages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"languages.js","sourceRoot":"","sources":["../../../src/code-block/languages.ts"],"names":[],"mappings":"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"}
|
|
@@ -78,7 +78,7 @@ const customStyles = ({ errorText, size, }) => {
|
|
|
78
78
|
? `1px solid ${focusedBorderColor}`
|
|
79
79
|
: `1px solid ${defaultBorder}`,
|
|
80
80
|
} })),
|
|
81
|
-
multiValue: (provided) => (Object.assign(Object.assign({}, provided), { borderRadius: '4px', height: '28px' })),
|
|
81
|
+
multiValue: (provided) => (Object.assign(Object.assign({}, provided), { borderRadius: '4px', height: '28px', maxWidth: '95%' })),
|
|
82
82
|
indicatorsContainer: (provided) => (Object.assign(Object.assign({}, provided), {
|
|
83
83
|
/**
|
|
84
84
|
* The right icon has padding of 8px so:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.js","sourceRoot":"","sources":["../../../src/dropdown/Dropdown.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,iCAAuC;AACvC,4DAAoC;AACpC,kFAA0D;AAE1D,2CAA2C;AAC3C,gEAAiD;AACjD,uEAA+C;AAC/C,+DAA6C;AAE7C,wCAAwC;AACxC,4CAAwD;AAMxD,2CAKqB;AAErB;;;;;;GAMG;AAEH,MAAM,kBAAkB,GAAG,CAKzB,KAAmE,EACnE,EAAE,CACF,CAAC;IACC,iBAAiB,EAAE,IAAA,qCAAyB,EAAC,KAAK,CAAC;IACnD,kBAAkB,EAAE,IAAI;IACxB,cAAc,EAAE,IAAA,iCAAqB,EAAC,KAAK,CAAC;IAC5C,gBAAgB,EAAE,IAAA,kCAAsB,EAAC,KAAK,CAAC;IAC/C,WAAW,EAAE,IAAA,6BAAiB,EAAC,KAAK,CAAC;CAKR,CAAA,CAAC;AAElC,MAAM,YAAY,GAAG,CAInB,EACA,SAAS,EACT,IAAI,GAIL,EAAE,EAAE;IACH,MAAM,kBAAkB,GAAG,SAAS;QAClC,CAAC,CAAC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM;QAC3C,CAAC,CAAC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;IAEvC,MAAM,aAAa,GAAG,SAAS;QAC7B,CAAC,CAAC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM;QAC3C,CAAC,CAAC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC;IAE/C,OAAO;QACL,OAAO,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,EAAE,CAAC,iCACzB,QAAQ,KACX,SAAS,EAAE,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM;YAC7C,oCAAoC;YACpC,sDAAsD;YACtD,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,aAAa,kBAAkB,EAAE,CAAC,CAAC,CAAC,MAAM,EACvE,QAAQ,EAAE,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAC5C,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,KAAK,CAAC,SAAS;gBACrB,CAAC,CAAC,aAAa,kBAAkB,EAAE;gBACnC,CAAC,CAAC,aAAa,aAAa,EAAE,EAChC,SAAS,EAAE;gBACT,MAAM,EAAE,KAAK,CAAC,SAAS;oBACrB,CAAC,CAAC,aAAa,kBAAkB,EAAE;oBACnC,CAAC,CAAC,aAAa,aAAa,EAAE;aACjC,IACD;QACF,UAAU,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,iCACrB,QAAQ,KACX,YAAY,EAAE,KAAK,EACnB,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Dropdown.js","sourceRoot":"","sources":["../../../src/dropdown/Dropdown.tsx"],"names":[],"mappings":"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"}
|