@neo4j-ndl/react 1.2.3 → 1.3.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/CHANGELOG.md +21 -0
- package/lib/LICENSES.txt +1623 -0
- package/lib/NOTICE.txt +4 -0
- package/lib/cjs/button/Button.js +19 -19
- package/lib/cjs/button/Button.js.map +1 -1
- package/lib/cjs/code-block/CodeBlock.js +2 -5
- package/lib/cjs/code-block/CodeBlock.js.map +1 -1
- package/lib/cjs/dropdown/Dropdown.js +16 -15
- package/lib/cjs/dropdown/Dropdown.js.map +1 -1
- package/lib/cjs/dropdown/Overrides.js +2 -2
- package/lib/cjs/dropdown/Overrides.js.map +1 -1
- package/lib/cjs/icons/generated/custom/AlignBottom.js +6 -0
- package/lib/cjs/icons/generated/custom/AlignBottom.js.map +1 -0
- package/lib/cjs/icons/generated/custom/AlignCenter.js +6 -0
- package/lib/cjs/icons/generated/custom/AlignCenter.js.map +1 -0
- package/lib/cjs/icons/generated/custom/AlignTop.js +6 -0
- package/lib/cjs/icons/generated/custom/AlignTop.js.map +1 -0
- package/lib/cjs/icons/generated/custom/Bold.js +6 -0
- package/lib/cjs/icons/generated/custom/Bold.js.map +1 -0
- package/lib/cjs/icons/generated/custom/Italic.js +6 -0
- package/lib/cjs/icons/generated/custom/Italic.js.map +1 -0
- package/lib/cjs/icons/generated/custom/Underline.js +6 -0
- package/lib/cjs/icons/generated/custom/Underline.js.map +1 -0
- package/lib/cjs/icons/generated/custom/index.js +13 -1
- package/lib/cjs/icons/generated/custom/index.js.map +1 -1
- package/lib/esm/button/Button.js +19 -19
- package/lib/esm/button/Button.js.map +1 -1
- package/lib/esm/code-block/CodeBlock.js +2 -5
- package/lib/esm/code-block/CodeBlock.js.map +1 -1
- package/lib/esm/dropdown/Dropdown.js +16 -15
- package/lib/esm/dropdown/Dropdown.js.map +1 -1
- package/lib/esm/dropdown/Overrides.js +2 -2
- package/lib/esm/dropdown/Overrides.js.map +1 -1
- package/lib/esm/icons/generated/custom/AlignBottom.js +4 -0
- package/lib/esm/icons/generated/custom/AlignBottom.js.map +1 -0
- package/lib/esm/icons/generated/custom/AlignCenter.js +4 -0
- package/lib/esm/icons/generated/custom/AlignCenter.js.map +1 -0
- package/lib/esm/icons/generated/custom/AlignTop.js +4 -0
- package/lib/esm/icons/generated/custom/AlignTop.js.map +1 -0
- package/lib/esm/icons/generated/custom/Bold.js +4 -0
- package/lib/esm/icons/generated/custom/Bold.js.map +1 -0
- package/lib/esm/icons/generated/custom/Italic.js +4 -0
- package/lib/esm/icons/generated/custom/Italic.js.map +1 -0
- package/lib/esm/icons/generated/custom/Underline.js +4 -0
- package/lib/esm/icons/generated/custom/Underline.js.map +1 -0
- package/lib/esm/icons/generated/custom/index.js +6 -0
- package/lib/esm/icons/generated/custom/index.js.map +1 -1
- package/lib/types/icons/generated/custom/AlignBottom.d.ts +23 -0
- package/lib/types/icons/generated/custom/AlignCenter.d.ts +23 -0
- package/lib/types/icons/generated/custom/AlignTop.d.ts +23 -0
- package/lib/types/icons/generated/custom/Bold.d.ts +23 -0
- package/lib/types/icons/generated/custom/Italic.d.ts +23 -0
- package/lib/types/icons/generated/custom/Underline.d.ts +23 -0
- package/lib/types/icons/generated/custom/index.d.ts +6 -0
- package/package.json +2 -2
|
@@ -32,7 +32,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
32
32
|
*/
|
|
33
33
|
import { useMemo } from 'react';
|
|
34
34
|
import classnames from 'classnames';
|
|
35
|
-
import { tokens } from '@neo4j-ndl/base';
|
|
36
35
|
/** Different types of select components */
|
|
37
36
|
import Select from 'react-select';
|
|
38
37
|
import Creatable from 'react-select/creatable';
|
|
@@ -56,22 +55,23 @@ const overrideComponents = (props) => ({
|
|
|
56
55
|
});
|
|
57
56
|
const customStyles = ({ errorText, size, }) => {
|
|
58
57
|
const focusedBorderColor = errorText
|
|
59
|
-
?
|
|
60
|
-
:
|
|
58
|
+
? 'rgb(var(--palette-danger-border-strong))'
|
|
59
|
+
: 'rgb(var(--palette-primary-focus))';
|
|
61
60
|
const defaultBorder = errorText
|
|
62
|
-
?
|
|
63
|
-
:
|
|
61
|
+
? 'rgb(var(--palette-danger-border-strong))'
|
|
62
|
+
: 'rgb(var(--palette-neutral-border-strong))';
|
|
64
63
|
return {
|
|
65
64
|
control: (provided, state) => (Object.assign(Object.assign({}, provided), { minHeight: size === 'small' ? '36px' : '48px',
|
|
66
65
|
// Avoid shifting with border of 2px
|
|
67
66
|
// Source: https://stackoverflow.com/a/9612782/3247715
|
|
68
|
-
boxShadow: state.isFocused ? `0 0 0 1px ${focusedBorderColor}` : 'none', fontSize: size === 'small' ? '14px' : '16px', outline: 'none', border: state.isFocused
|
|
67
|
+
boxShadow: state.isFocused ? `0 0 0 1px ${focusedBorderColor}` : 'none', fontSize: size === 'small' ? '14px' : '16px', backgroundColor: 'rgb(var(--palette-neutral-bg-weak))', outline: 'none', border: state.isFocused
|
|
69
68
|
? `1px solid ${focusedBorderColor}`
|
|
70
69
|
: `1px solid ${defaultBorder}`, '&:hover': {
|
|
71
70
|
border: state.isFocused
|
|
72
71
|
? `1px solid ${focusedBorderColor}`
|
|
73
72
|
: `1px solid ${defaultBorder}`,
|
|
74
73
|
} })),
|
|
74
|
+
singleValue: (provided) => (Object.assign(Object.assign({}, provided), { color: 'rgb(var(--palette-neutral-text-default))' })),
|
|
75
75
|
multiValue: (provided) => (Object.assign(Object.assign({}, provided), { borderRadius: '4px', maxWidth: '95%' })),
|
|
76
76
|
dropdownIndicator: (provided) => (Object.assign(Object.assign({}, provided), { cursor: 'pointer', padding: '7px' })),
|
|
77
77
|
indicatorsContainer: (provided) => (Object.assign(Object.assign({}, provided), {
|
|
@@ -87,41 +87,42 @@ const customStyles = ({ errorText, size, }) => {
|
|
|
87
87
|
* value selected
|
|
88
88
|
*/
|
|
89
89
|
valueContainer: (provided, state) => (Object.assign(Object.assign({}, provided), { padding: state.isMulti && state.hasValue ? '2px' : '2px 8px' })),
|
|
90
|
+
menu: (provided) => (Object.assign(Object.assign({}, provided), { backgroundColor: 'rgb(var(--palette-neutral-bg-weak))' })),
|
|
90
91
|
menuList: (provided) => (Object.assign(Object.assign({}, provided), { padding: '8px' })),
|
|
91
92
|
option: (provided, state) => {
|
|
92
93
|
let backgroundColor;
|
|
93
94
|
let color;
|
|
94
95
|
switch (true) {
|
|
95
96
|
case state.isSelected:
|
|
96
|
-
backgroundColor =
|
|
97
|
+
backgroundColor = 'rgb(var(--palette-primary-bg-weak))';
|
|
97
98
|
break;
|
|
98
99
|
case state.isFocused && !state.isSelected:
|
|
99
|
-
backgroundColor =
|
|
100
|
+
backgroundColor = 'rgb(var(--palette-neutral-bg-strong))';
|
|
100
101
|
break;
|
|
101
102
|
default:
|
|
102
103
|
backgroundColor = 'transparent';
|
|
103
104
|
}
|
|
104
105
|
switch (true) {
|
|
105
106
|
case state.isDisabled:
|
|
106
|
-
color =
|
|
107
|
+
color = 'rgb(var(--palette-neutral-text-weakest))';
|
|
107
108
|
break;
|
|
108
109
|
case state.isSelected:
|
|
109
|
-
color =
|
|
110
|
+
color = 'rgb(var(--palette-primary-text))';
|
|
110
111
|
break;
|
|
111
112
|
default:
|
|
112
|
-
color =
|
|
113
|
+
color = 'rgb(var(--palette-neutral-text-default))';
|
|
113
114
|
}
|
|
114
115
|
return Object.assign(Object.assign(Object.assign({}, provided), { position: 'relative', borderRadius: '8px', marginBottom: '2px', cursor: state.isDisabled ? 'not-allowed' : 'pointer', fontSize: size === 'small' ? '14px' : '16px', lineHeight: size === 'small' ? '20px' : '24px', backgroundColor: backgroundColor, color: color, '&:hover': {
|
|
115
116
|
backgroundColor: state.isSelected
|
|
116
|
-
?
|
|
117
|
-
:
|
|
117
|
+
? 'rgb(var(--palette-primary-bg-weak))'
|
|
118
|
+
: 'rgb(var(--palette-neutral-bg-strong))',
|
|
118
119
|
} }), (state.isSelected && {
|
|
119
120
|
'&::before': {
|
|
120
121
|
content: '""',
|
|
121
122
|
position: 'absolute',
|
|
122
123
|
width: '4px',
|
|
123
124
|
height: '100%',
|
|
124
|
-
backgroundColor:
|
|
125
|
+
backgroundColor: 'rgb(var(--palette-primary-bg-strong))',
|
|
125
126
|
borderRadius: '0 100px 100px 0',
|
|
126
127
|
left: '-8px',
|
|
127
128
|
top: '0px',
|
|
@@ -129,7 +130,7 @@ const customStyles = ({ errorText, size, }) => {
|
|
|
129
130
|
}));
|
|
130
131
|
},
|
|
131
132
|
input: (provided) => (Object.assign(Object.assign({}, provided), { lineHeight: size === 'small' ? '20px' : '24px' })),
|
|
132
|
-
placeholder: (provided) => (Object.assign(Object.assign({}, provided), { color:
|
|
133
|
+
placeholder: (provided) => (Object.assign(Object.assign({}, provided), { color: 'rgb(var(--palette-neutral-text-weaker))' })),
|
|
133
134
|
};
|
|
134
135
|
};
|
|
135
136
|
export const Dropdown = forwardRef(function Dropdown(props, ref) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.js","sourceRoot":"","sources":["../../../src/dropdown/Dropdown.tsx"],"names":[],"mappings":";;;;;;;;;;;;AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAc,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,UAAU,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"Dropdown.js","sourceRoot":"","sources":["../../../src/dropdown/Dropdown.tsx"],"names":[],"mappings":"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"}
|
|
@@ -36,10 +36,10 @@ export const DropdownIndicatorCurrying = ({ errorText, size, }) => function Comp
|
|
|
36
36
|
} }), errorText && (_jsxs(_Fragment, { children: [_jsx("div", { className: "ndl-indicator" }), _jsx(ExclamationCircleIconSolid, { className: `ndl-error-icon ${classes}`, role: "img", type: "solid" })] }))] })) })));
|
|
37
37
|
};
|
|
38
38
|
export const CustomClearIndication = ({ errorText, size, }) => function Component(props) {
|
|
39
|
-
return (_jsx(components.ClearIndicator, Object.assign({}, props, { children: _jsxs("div", Object.assign({ className: "n-flex n-flex-row n-gap-3" }, { children: [_jsx(XMarkIconOutline, { className: "n-w-5 n-h-5 n-text-
|
|
39
|
+
return (_jsx(components.ClearIndicator, Object.assign({}, props, { children: _jsxs("div", Object.assign({ className: "n-flex n-flex-row n-gap-3" }, { children: [_jsx(XMarkIconOutline, { className: "n-w-5 n-h-5 n-text-palette-neutral-text-weak n-cursor-pointer" }), _jsx("div", { className: "ndl-indicator" })] })) })));
|
|
40
40
|
};
|
|
41
41
|
export const CustomMultiValueRemove = ({ errorText, size, }) => function Component(props) {
|
|
42
|
-
return (_jsx(components.MultiValueRemove, Object.assign({}, props, { children: _jsx(XMarkIconOutline, { className: "n-text-
|
|
42
|
+
return (_jsx(components.MultiValueRemove, Object.assign({}, props, { children: _jsx(XMarkIconOutline, { className: "n-text-palette-neutral-text-weak", style: {
|
|
43
43
|
height: size === 'small' ? '16px' : '20px',
|
|
44
44
|
} }) })));
|
|
45
45
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Overrides.js","sourceRoot":"","sources":["../../../src/dropdown/Overrides.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,EAEL,UAAU,GAKX,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,sBAAsB,EACtB,0BAA0B,EAC1B,gBAAgB,GACjB,MAAM,UAAU,CAAC;AAGlB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAIvC,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAChB,KAA6D;IAE7D,MAAM,OAAO,GAAG,UAAU,CAAC,mBAAmB,EAAE;QAC9C,WAAW,EAAE,IAAI,KAAK,OAAO;QAC7B,WAAW,EAAE,IAAI,KAAK,OAAO;KAC9B,CAAC,CAAC;IAEH,OAAO,CACL,KAAC,UAAU,CAAC,iBAAiB,oBAAK,KAAK,cACrC,6BAAK,SAAS,EAAC,2BAA2B,iBACxC,KAAC,sBAAsB,IACrB,SAAS,EAAE,OAAO,EAClB,KAAK,EAAE;wBACL,SAAS,EAAE,KAAK,CAAC,WAAW,CAAC,UAAU;4BACrC,CAAC,CAAC,gBAAgB;4BAClB,CAAC,CAAC,cAAc;wBAClB,kBAAkB,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO;qBAC/D,GACD,EACD,SAAS,IAAI,CACZ,8BACE,cAAK,SAAS,EAAC,eAAe,GAAG,EACjC,KAAC,0BAA0B,IACzB,SAAS,EAAE,kBAAkB,OAAO,EAAE,EACtC,IAAI,EAAC,KAAK,EACV,IAAI,EAAC,OAAO,GACZ,IACD,CACJ,KACG,IACuB,CAChC,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAInC,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAChB,KAA0D;IAE1D,OAAO,CACL,KAAC,UAAU,CAAC,cAAc,oBAAK,KAAK,cAClC,6BAAK,SAAS,EAAC,2BAA2B,iBACxC,KAAC,gBAAgB,IAAC,SAAS,EAAC,
|
|
1
|
+
{"version":3,"file":"Overrides.js","sourceRoot":"","sources":["../../../src/dropdown/Overrides.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,EAEL,UAAU,GAKX,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,sBAAsB,EACtB,0BAA0B,EAC1B,gBAAgB,GACjB,MAAM,UAAU,CAAC;AAGlB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAIvC,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAChB,KAA6D;IAE7D,MAAM,OAAO,GAAG,UAAU,CAAC,mBAAmB,EAAE;QAC9C,WAAW,EAAE,IAAI,KAAK,OAAO;QAC7B,WAAW,EAAE,IAAI,KAAK,OAAO;KAC9B,CAAC,CAAC;IAEH,OAAO,CACL,KAAC,UAAU,CAAC,iBAAiB,oBAAK,KAAK,cACrC,6BAAK,SAAS,EAAC,2BAA2B,iBACxC,KAAC,sBAAsB,IACrB,SAAS,EAAE,OAAO,EAClB,KAAK,EAAE;wBACL,SAAS,EAAE,KAAK,CAAC,WAAW,CAAC,UAAU;4BACrC,CAAC,CAAC,gBAAgB;4BAClB,CAAC,CAAC,cAAc;wBAClB,kBAAkB,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO;qBAC/D,GACD,EACD,SAAS,IAAI,CACZ,8BACE,cAAK,SAAS,EAAC,eAAe,GAAG,EACjC,KAAC,0BAA0B,IACzB,SAAS,EAAE,kBAAkB,OAAO,EAAE,EACtC,IAAI,EAAC,KAAK,EACV,IAAI,EAAC,OAAO,GACZ,IACD,CACJ,KACG,IACuB,CAChC,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAInC,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAChB,KAA0D;IAE1D,OAAO,CACL,KAAC,UAAU,CAAC,cAAc,oBAAK,KAAK,cAClC,6BAAK,SAAS,EAAC,2BAA2B,iBACxC,KAAC,gBAAgB,IAAC,SAAS,EAAC,+DAA+D,GAAG,EAC9F,cAAK,SAAS,EAAC,eAAe,GAAG,KAC7B,IACoB,CAC7B,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAIpC,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAChB,KAA4D;IAE5D,OAAO,CACL,KAAC,UAAU,CAAC,gBAAgB,oBAAK,KAAK,cACpC,KAAC,gBAAgB,IACf,SAAS,EAAC,kCAAkC,EAC5C,KAAK,EAAE;gBACL,MAAM,EAAE,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM;aAC3C,GACD,IAC0B,CAC/B,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAI/B,EACA,SAAS,EACT,IAAI,GACwD,EAAE,EAAE,CAChE,SAAS,SAAS,CAAC,KAAuD;IACxE,OAAO,CACL,KAAC,UAAU,CAAC,WAAW,oBAAK,KAAK,cAC/B,4BAAK,SAAS,EAAC,sDAAsD,gBAClE,KAAK,CAAC,QAAQ,IACX,IACiB,CAC1B,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgAlignBottom = (props) => (_jsx("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M15.5 15.5L11.725 19M11.725 19L8 15.5M11.725 19V2M2 22H22", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) })));
|
|
3
|
+
export default SvgAlignBottom;
|
|
4
|
+
//# sourceMappingURL=AlignBottom.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignBottom.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/AlignBottom.tsx"],"names":[],"mappings":";AAwBA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,4BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,cAET,eACE,CAAC,EAAC,2DAA2D,EAC7D,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgAlignCenter = (props) => (_jsx("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M15.5 5.5L11.725 9M11.725 9L8 5.5M11.725 9V2M15.5 18.5L11.725 15M11.725 15L8 18.5M11.725 15V22M2 12H22", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) })));
|
|
3
|
+
export default SvgAlignCenter;
|
|
4
|
+
//# sourceMappingURL=AlignCenter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignCenter.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/AlignCenter.tsx"],"names":[],"mappings":";AAwBA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,4BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,cAET,eACE,CAAC,EAAC,wGAAwG,EAC1G,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgAlignTop = (props) => (_jsx("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M15.5 8.5L11.725 5M11.725 5L8 8.5M11.725 5V22M2 2H22", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) })));
|
|
3
|
+
export default SvgAlignTop;
|
|
4
|
+
//# sourceMappingURL=AlignTop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignTop.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/AlignTop.tsx"],"names":[],"mappings":";AAwBA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,4BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,cAET,eACE,CAAC,EAAC,sDAAsD,EACxD,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACE,CACP,CAAC;AACF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const SvgBold = (props) => (_jsxs("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M6.5 19.4987H13C14.1935 19.4987 15.3381 19.0246 16.182 18.1806C17.0259 17.3367 17.5 16.1921 17.5 14.9987C17.5 13.8052 17.0259 12.6606 16.182 11.8167C15.3381 10.9728 14.1935 10.4987 13 10.4987H13.5C13.894 10.4987 14.2841 10.4211 14.6481 10.2703C15.012 10.1195 15.3427 9.89855 15.6213 9.61998C15.8999 9.3414 16.1209 9.01068 16.2716 8.64671C16.4224 8.28273 16.5 7.89262 16.5 7.49866C16.5 7.10469 16.4224 6.71458 16.2716 6.35061C16.1209 5.98663 15.8999 5.65591 15.6213 5.37734C15.3427 5.09876 15.012 4.87778 14.6481 4.72702C14.2841 4.57625 13.894 4.49866 13.5 4.49866H6.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M8.5 4.49866V19.4987", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13 10.4987H8.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] })));
|
|
3
|
+
export default SvgBold;
|
|
4
|
+
//# sourceMappingURL=Bold.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bold.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/Bold.tsx"],"names":[],"mappings":";AAwBA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,6BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,eAET,eACE,CAAC,EAAC,yjBAAyjB,EAC3jB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,sBAAsB,EACxB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,iBAAiB,EACnB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,KACE,CACP,CAAC;AACF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const SvgItalic = (props) => (_jsxs("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M17.625 6.37402H12.375", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.625 17.624H6.375", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9 17.624L15 6.37402", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] })));
|
|
3
|
+
export default SvgItalic;
|
|
4
|
+
//# sourceMappingURL=Italic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Italic.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/Italic.tsx"],"names":[],"mappings":";AAwBA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,6BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,eAET,eACE,CAAC,EAAC,wBAAwB,EAC1B,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,sBAAsB,EACxB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,sBAAsB,EACxB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,KACE,CACP,CAAC;AACF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const SvgUnderline = (props) => (_jsxs("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsxs("g", Object.assign({ clipPath: "url(#clip0_806_126)" }, { children: [_jsx("path", { d: "M4.5 19.4987H19.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.5 4.49866H8.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M15.5 4.49866H17.5", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M16.5 4.49866V12C16.5 13.1935 16.0259 14.3381 15.182 15.182C14.3381 16.0259 13.1935 16.5 12 16.5C10.8065 16.5 9.66193 16.0259 8.81802 15.182C7.97411 14.3381 7.5 13.1935 7.5 12V4.49866", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] })), _jsx("defs", { children: _jsx("clipPath", Object.assign({ id: "clip0_806_126" }, { children: _jsx("rect", { width: 16, height: 16, fill: "white", transform: "translate(4 4)" }) })) })] })));
|
|
3
|
+
export default SvgUnderline;
|
|
4
|
+
//# sourceMappingURL=Underline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Underline.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/Underline.tsx"],"names":[],"mappings":";AAwBA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,6BACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,IAC9B,KAAK,eAET,2BAAG,QAAQ,EAAC,qBAAqB,iBAC/B,eACE,CAAC,EAAC,mBAAmB,EACrB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,kBAAkB,EACpB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,oBAAoB,EACtB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,yLAAyL,EAC3L,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,KACA,EACJ,yBACE,iCAAU,EAAE,EAAC,eAAe,gBAC1B,eAAM,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,IAAI,EAAC,OAAO,EAAC,SAAS,EAAC,gBAAgB,GAAG,IAC9D,GACN,KACH,CACP,CAAC;AACF,eAAe,YAAY,CAAC"}
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
*/
|
|
21
21
|
// THIS FILE IS GENERATED BY BUILD TOOL
|
|
22
22
|
// DO NOT EDIT IT MANUAL
|
|
23
|
+
export { default as AlignBottomIcon } from './AlignBottom';
|
|
24
|
+
export { default as AlignCenterIcon } from './AlignCenter';
|
|
25
|
+
export { default as AlignTopIcon } from './AlignTop';
|
|
26
|
+
export { default as BoldIcon } from './Bold';
|
|
23
27
|
export { default as CircleIcon } from './Circle';
|
|
24
28
|
export { default as CollapseExpandLeftIcon } from './CollapseExpandLeft';
|
|
25
29
|
export { default as CollapseExpandRightIcon } from './CollapseExpandRight';
|
|
@@ -35,6 +39,7 @@ export { default as FolderBookmarkIcon } from './FolderBookmark';
|
|
|
35
39
|
export { default as Heirarchy2Icon } from './Heirarchy2';
|
|
36
40
|
export { default as Hierarchy1Icon } from './Hierarchy1';
|
|
37
41
|
export { default as Hierarchy2Icon } from './Hierarchy2';
|
|
42
|
+
export { default as ItalicIcon } from './Italic';
|
|
38
43
|
export { default as NomLevelIcon } from './NomLevel';
|
|
39
44
|
export { default as PinIcon } from './Pin';
|
|
40
45
|
export { default as PlanViewIcon } from './PlanView';
|
|
@@ -47,5 +52,6 @@ export { default as SquareIcon } from './Square';
|
|
|
47
52
|
export { default as StatusIcon } from './Status';
|
|
48
53
|
export { default as TextIcon } from './Text';
|
|
49
54
|
export { default as TriangleIcon } from './Triangle';
|
|
55
|
+
export { default as UnderlineIcon } from './Underline';
|
|
50
56
|
export { default as VisualizeBloomIcon } from './VisualizeBloom';
|
|
51
57
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,uCAAuC;AACvC,wBAAwB;AACxB,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/icons/generated/custom/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,uCAAuC;AACvC,wBAAwB;AACxB,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgAlignBottom: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgAlignBottom;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgAlignCenter: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgAlignCenter;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgAlignTop: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgAlignTop;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgBold: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgBold;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgItalic: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgItalic;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgUnderline: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
23
|
+
export default SvgUnderline;
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
* You should have received a copy of the GNU General Public License
|
|
19
19
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
20
|
*/
|
|
21
|
+
export { default as AlignBottomIcon } from './AlignBottom';
|
|
22
|
+
export { default as AlignCenterIcon } from './AlignCenter';
|
|
23
|
+
export { default as AlignTopIcon } from './AlignTop';
|
|
24
|
+
export { default as BoldIcon } from './Bold';
|
|
21
25
|
export { default as CircleIcon } from './Circle';
|
|
22
26
|
export { default as CollapseExpandLeftIcon } from './CollapseExpandLeft';
|
|
23
27
|
export { default as CollapseExpandRightIcon } from './CollapseExpandRight';
|
|
@@ -33,6 +37,7 @@ export { default as FolderBookmarkIcon } from './FolderBookmark';
|
|
|
33
37
|
export { default as Heirarchy2Icon } from './Heirarchy2';
|
|
34
38
|
export { default as Hierarchy1Icon } from './Hierarchy1';
|
|
35
39
|
export { default as Hierarchy2Icon } from './Hierarchy2';
|
|
40
|
+
export { default as ItalicIcon } from './Italic';
|
|
36
41
|
export { default as NomLevelIcon } from './NomLevel';
|
|
37
42
|
export { default as PinIcon } from './Pin';
|
|
38
43
|
export { default as PlanViewIcon } from './PlanView';
|
|
@@ -45,4 +50,5 @@ export { default as SquareIcon } from './Square';
|
|
|
45
50
|
export { default as StatusIcon } from './Status';
|
|
46
51
|
export { default as TextIcon } from './Text';
|
|
47
52
|
export { default as TriangleIcon } from './Triangle';
|
|
53
|
+
export { default as UnderlineIcon } from './Underline';
|
|
48
54
|
export { default as VisualizeBloomIcon } from './VisualizeBloom';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-ndl/react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "React implementation of Neo4j Design System",
|
|
6
6
|
"keywords": [
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@floating-ui/react-dom-interactions": "^0.12.0",
|
|
93
93
|
"@heroicons/react": "2.0.13",
|
|
94
94
|
"@neo4j-cypher/react-codemirror": "^1.0.1",
|
|
95
|
-
"@neo4j-ndl/base": "^1.
|
|
95
|
+
"@neo4j-ndl/base": "^1.3.1",
|
|
96
96
|
"@tanstack/react-table": "^8.5.22",
|
|
97
97
|
"classnames": "^2.3.1",
|
|
98
98
|
"detect-browser": "^5.3.0",
|