@neo4j-ndl/base 1.10.2 → 1.10.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/CHANGELOG.md +6 -0
- package/lib/LICENSES.txt +26 -0
- package/lib/NOTICE.txt +4 -0
- package/lib/cjs/tailwindTheme.js +13 -2
- package/lib/cjs/tailwindTheme.js.map +1 -1
- package/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tailwindTheme.js +13 -2
- package/lib/esm/tailwindTheme.js.map +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/LICENSES.txt
CHANGED
|
@@ -5657,6 +5657,32 @@ THE SOFTWARE.
|
|
|
5657
5657
|
|
|
5658
5658
|
-----
|
|
5659
5659
|
|
|
5660
|
+
The following software may be included in this product: eslint-plugin-import. A copy of the source code may be downloaded from https://github.com/import-js/eslint-plugin-import. This software contains the following license and notice below:
|
|
5661
|
+
|
|
5662
|
+
The MIT License (MIT)
|
|
5663
|
+
|
|
5664
|
+
Copyright (c) 2015 Ben Mosher
|
|
5665
|
+
|
|
5666
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5667
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5668
|
+
in the Software without restriction, including without limitation the rights
|
|
5669
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5670
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5671
|
+
furnished to do so, subject to the following conditions:
|
|
5672
|
+
|
|
5673
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5674
|
+
copies or substantial portions of the Software.
|
|
5675
|
+
|
|
5676
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5677
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5678
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5679
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5680
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5681
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5682
|
+
SOFTWARE.
|
|
5683
|
+
|
|
5684
|
+
-----
|
|
5685
|
+
|
|
5660
5686
|
The following software may be included in this product: eslint-plugin-jsx-a11y. A copy of the source code may be downloaded from https://github.com/jsx-eslint/eslint-plugin-jsx-a11y. This software contains the following license and notice below:
|
|
5661
5687
|
|
|
5662
5688
|
The MIT License (MIT)
|
package/lib/NOTICE.txt
CHANGED
|
@@ -180,6 +180,10 @@ Third-party licenses
|
|
|
180
180
|
│ ├─ [38;5;173meslint-config-prettier[39m[38;5;111m@[39m[38;5;111mnpm:8.8.0 [a2e03][39m (via [38;5;37mnpm:^8.3.0 [a2e03][39m)
|
|
181
181
|
│ │ ├─ URL: git+https://github.com/prettier/eslint-config-prettier.git
|
|
182
182
|
│ │ └─ VendorName: Simon Lydell
|
|
183
|
+
│ ├─ [38;5;173meslint-plugin-import[39m[38;5;111m@[39m[38;5;111mnpm:2.28.1 [a2e03][39m (via [38;5;37mnpm:2.28.1 [a2e03][39m)
|
|
184
|
+
│ │ ├─ URL: https://github.com/import-js/eslint-plugin-import
|
|
185
|
+
│ │ ├─ VendorName: Ben Mosher
|
|
186
|
+
│ │ └─ VendorUrl: https://github.com/import-js/eslint-plugin-import
|
|
183
187
|
│ ├─ [38;5;173meslint-plugin-jsx-a11y[39m[38;5;111m@[39m[38;5;111mnpm:6.7.1 [a2e03][39m (via [38;5;37mnpm:^6.5.1 [a2e03][39m)
|
|
184
188
|
│ │ ├─ URL: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y
|
|
185
189
|
│ │ └─ VendorName: Ethan Cohen
|
package/lib/cjs/tailwindTheme.js
CHANGED
|
@@ -30,10 +30,20 @@ var __assign = (this && this.__assign) || function () {
|
|
|
30
30
|
};
|
|
31
31
|
return __assign.apply(this, arguments);
|
|
32
32
|
};
|
|
33
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
34
|
+
var t = {};
|
|
35
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
36
|
+
t[p] = s[p];
|
|
37
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
38
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
39
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
40
|
+
t[p[i]] = s[p[i]];
|
|
41
|
+
}
|
|
42
|
+
return t;
|
|
43
|
+
};
|
|
33
44
|
exports.__esModule = true;
|
|
34
45
|
exports.tailwindTheme = void 0;
|
|
35
46
|
var tokens_esm_1 = require("./tokens/js/tokens-esm");
|
|
36
|
-
var lodash_1 = require("lodash");
|
|
37
47
|
/**
|
|
38
48
|
* Create an agnostic palette for tailwind
|
|
39
49
|
* TODO: v2
|
|
@@ -73,12 +83,13 @@ var themedPalette = function () {
|
|
|
73
83
|
extractValue(tokens_esm_1.tokens.palette.dark, 'palette');
|
|
74
84
|
return result;
|
|
75
85
|
};
|
|
86
|
+
var _a = tokens_esm_1.tokens.zIndex, zIndexAlias = _a.alias, zIndexWithoutAlias = __rest(_a, ["alias"]);
|
|
76
87
|
/** @type {import('tailwindcss').Config['theme']} */
|
|
77
88
|
exports.tailwindTheme = {
|
|
78
89
|
colors: __assign(__assign(__assign({}, tokens_esm_1.tokens.colors), tokens_esm_1.tokens.palette), themedPalette()),
|
|
79
90
|
borderRadius: tokens_esm_1.tokens.borderRadius,
|
|
80
91
|
boxShadow: tokens_esm_1.tokens.boxShadow,
|
|
81
|
-
zIndex: __assign(__assign({},
|
|
92
|
+
zIndex: __assign(__assign({}, zIndexAlias), zIndexWithoutAlias),
|
|
82
93
|
fontFamily: {
|
|
83
94
|
sans: ['"Nunito Sans"'],
|
|
84
95
|
mono: ['"Fira Code"']
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tailwindTheme.js","sourceRoot":"","sources":["../../src/tailwindTheme.js"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG
|
|
1
|
+
{"version":3,"file":"tailwindTheme.js","sourceRoot":"","sources":["../../src/tailwindTheme.js"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qDAAgD;AAEhD;;;;;;GAMG;AACH,IAAM,aAAa,GAAG;IACpB,IAAM,MAAM,GAAG,EAAE,CAAC;IAClB,IAAM,YAAY,GAAG,UAAC,KAAK,EAAE,OAAY;QAAZ,wBAAA,EAAA,YAAY;QACvC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;gBAC7B,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,UAAG,OAAO,cAAI,GAAG,CAAE,CAAC,CAAC;YAChD,CAAC,CAAC,CAAC;SACJ;QACD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B;;;;;;;;;;eAUG;YACH,IAAI,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBAC5B,MAAM,CAAC,OAAO,CAAC,GAAG,gBAAS,OAAO,MAAG,CAAC;aACvC;iBAAM;gBACL,MAAM,CAAC,OAAO,CAAC,GAAG,oBAAa,OAAO,OAAI,CAAC;aAC5C;SACF;IACH,CAAC,CAAC;IACF,YAAY,CAAC,mBAAM,CAAC,OAAO,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC7C,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAEF,IAAM,KAAgD,mBAAM,CAAC,MAAM,EAApD,WAAW,WAAA,EAAK,kBAAkB,cAA3C,SAA6C,CAAgB,CAAC;AAEpE,oDAAoD;AACvC,QAAA,aAAa,GAAG;IAC3B,MAAM,iCACD,mBAAM,CAAC,MAAM,GACb,mBAAM,CAAC,OAAO,GACd,aAAa,EAAE,CACnB;IACD,YAAY,EAAE,mBAAM,CAAC,YAAY;IACjC,SAAS,EAAE,mBAAM,CAAC,SAAS;IAC3B,MAAM,wBAAO,WAAW,GAAK,kBAAkB,CAAE;IACjD,UAAU,EAAE;QACV,IAAI,EAAE,CAAC,eAAe,CAAC;QACvB,IAAI,EAAE,CAAC,aAAa,CAAC;KACtB;IACD,OAAO,eACF,mBAAM,CAAC,WAAW,CACtB;IACD,sCAAsC;IACtC,wBAAwB,EAAE;QACxB,GAAG,EAAE,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,SAAO,CAAA;QACzD,OAAO,EAAE,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,SAAO,CAAA;KAC9D;IACD,kBAAkB,EAAE;QAClB,GAAG,EAAE,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAO,CAAA;QAC/C,OAAO,EAAE,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAO,CAAA;KACpD;IACD,kBAAkB,EAAE;QAClB,GAAG,EAAE,mBAAM,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC,SAAO,CAAA;KAClD;CACF,CAAC"}
|
package/lib/esm/tailwindTheme.js
CHANGED
|
@@ -18,8 +18,18 @@
|
|
|
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
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
22
|
+
var t = {};
|
|
23
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
24
|
+
t[p] = s[p];
|
|
25
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
26
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
27
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
28
|
+
t[p[i]] = s[p[i]];
|
|
29
|
+
}
|
|
30
|
+
return t;
|
|
31
|
+
};
|
|
21
32
|
import { tokens } from './tokens/js/tokens-esm';
|
|
22
|
-
import { omit } from 'lodash';
|
|
23
33
|
/**
|
|
24
34
|
* Create an agnostic palette for tailwind
|
|
25
35
|
* TODO: v2
|
|
@@ -58,12 +68,13 @@ const themedPalette = () => {
|
|
|
58
68
|
extractValue(tokens.palette.dark, 'palette');
|
|
59
69
|
return result;
|
|
60
70
|
};
|
|
71
|
+
const _a = tokens.zIndex, { alias: zIndexAlias } = _a, zIndexWithoutAlias = __rest(_a, ["alias"]);
|
|
61
72
|
/** @type {import('tailwindcss').Config['theme']} */
|
|
62
73
|
export const tailwindTheme = {
|
|
63
74
|
colors: Object.assign(Object.assign(Object.assign({}, tokens.colors), tokens.palette), themedPalette()),
|
|
64
75
|
borderRadius: tokens.borderRadius,
|
|
65
76
|
boxShadow: tokens.boxShadow,
|
|
66
|
-
zIndex: Object.assign(Object.assign({},
|
|
77
|
+
zIndex: Object.assign(Object.assign({}, zIndexAlias), zIndexWithoutAlias),
|
|
67
78
|
fontFamily: {
|
|
68
79
|
sans: ['"Nunito Sans"'],
|
|
69
80
|
mono: ['"Fira Code"'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tailwindTheme.js","sourceRoot":"","sources":["../../src/tailwindTheme.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG
|
|
1
|
+
{"version":3,"file":"tailwindTheme.js","sourceRoot":"","sources":["../../src/tailwindTheme.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAEhD;;;;;;GAMG;AACH,MAAM,aAAa,GAAG,GAAG,EAAE;IACzB,MAAM,MAAM,GAAG,EAAE,CAAC;IAClB,MAAM,YAAY,GAAG,CAAC,KAAK,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE;QAC3C,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;gBACjC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,GAAG,OAAO,IAAI,GAAG,EAAE,CAAC,CAAC;YAChD,CAAC,CAAC,CAAC;SACJ;QACD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B;;;;;;;;;;eAUG;YACH,IAAI,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBAC5B,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,OAAO,GAAG,CAAC;aACvC;iBAAM;gBACL,MAAM,CAAC,OAAO,CAAC,GAAG,aAAa,OAAO,IAAI,CAAC;aAC5C;SACF;IACH,CAAC,CAAC;IACF,YAAY,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC7C,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAEF,MAAM,KAAgD,MAAM,CAAC,MAAM,EAA7D,EAAE,KAAK,EAAE,WAAW,OAAyC,EAApC,kBAAkB,cAA3C,SAA6C,CAAgB,CAAC;AAEpE,oDAAoD;AACpD,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,MAAM,gDACD,MAAM,CAAC,MAAM,GACb,MAAM,CAAC,OAAO,GACd,aAAa,EAAE,CACnB;IACD,YAAY,EAAE,MAAM,CAAC,YAAY;IACjC,SAAS,EAAE,MAAM,CAAC,SAAS;IAC3B,MAAM,kCAAO,WAAW,GAAK,kBAAkB,CAAE;IACjD,UAAU,EAAE;QACV,IAAI,EAAE,CAAC,eAAe,CAAC;QACvB,IAAI,EAAE,CAAC,aAAa,CAAC;KACtB;IACD,OAAO,oBACF,MAAM,CAAC,WAAW,CACtB;IACD,sCAAsC;IACtC,wBAAwB,EAAE;QACxB,GAAG,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,OAAO;QACzD,OAAO,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,OAAO;KAC9D;IACD,kBAAkB,EAAE;QAClB,GAAG,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO;QAC/C,OAAO,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO;KACpD;IACD,kBAAkB,EAAE;QAClB,GAAG,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO;KAClD;CACF,CAAC"}
|
package/lib/tokens/js/tokens.js
CHANGED