@neo4j-ndl/base 2.0.0 → 2.0.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 +6 -0
- package/lib/NOTICE.txt +2 -0
- 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/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/neo4j-ds-styles.css +2 -5
- 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
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#674](https://github.com/neo4j/neo4j-design/pull/674) [`c35e010`](https://github.com/neo4j/neo4j-design/commit/c35e010f4081384917573b1faf56d4438c8bc9fb) Thanks [@basickarl](https://github.com/basickarl)! - Fixed color issues with CypherCodeBlock
|
|
8
|
+
|
|
3
9
|
## 2.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/lib/NOTICE.txt
CHANGED
|
@@ -27,6 +27,8 @@ Third-party licenses
|
|
|
27
27
|
│ │ ├─ URL: https://github.com/babel/babel.git
|
|
28
28
|
│ │ ├─ VendorName: The Babel Team
|
|
29
29
|
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-core
|
|
30
|
+
│ ├─ [38;5;166m@changesets/[39m[38;5;173mchangelog-github[39m[38;5;111m@[39m[38;5;111mnpm:0.4.8[39m (via [38;5;37mnpm:^0.4.8[39m)
|
|
31
|
+
│ │ └─ URL: https://github.com/changesets/changesets/tree/main/packages/changelog-github
|
|
30
32
|
│ ├─ [38;5;166m@changesets/[39m[38;5;173mcli[39m[38;5;111m@[39m[38;5;111mnpm:2.26.1[39m (via [38;5;37mnpm:^2.22.0[39m)
|
|
31
33
|
│ │ ├─ URL: https://github.com/changesets/changesets/tree/main/packages/cli
|
|
32
34
|
│ │ └─ VendorName: Changesets Contributors
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -4654,7 +4654,7 @@ a.ndl-btn{
|
|
|
4654
4654
|
content:'';
|
|
4655
4655
|
}
|
|
4656
4656
|
.cm-light{
|
|
4657
|
-
--background:var(--theme-light-palette-neutral-bg-
|
|
4657
|
+
--background:var(--theme-light-palette-neutral-bg-default);
|
|
4658
4658
|
--color:var(--theme-light-palette-neutral-text-default);
|
|
4659
4659
|
--cursor-color:var(--colors-neutral-70);
|
|
4660
4660
|
--selection-bg:var(--colors-neutral-20);
|
|
@@ -4676,7 +4676,7 @@ a.ndl-btn{
|
|
|
4676
4676
|
--ac-tooltip-background:var(--theme-light-palette-neutral-bg-weak);
|
|
4677
4677
|
}
|
|
4678
4678
|
.cm-dark{
|
|
4679
|
-
--background:var(--theme-dark-palette-neutral-bg-
|
|
4679
|
+
--background:var(--theme-dark-palette-neutral-bg-strong);
|
|
4680
4680
|
--color:var(--colors-neutral-50);
|
|
4681
4681
|
--cursor-color:var(--colors-neutral-50);
|
|
4682
4682
|
--selection-bg:var(--colors-neutral-70);
|
|
@@ -4697,9 +4697,6 @@ a.ndl-btn{
|
|
|
4697
4697
|
--ac-tooltip-border:var(--colors-neutral-80);
|
|
4698
4698
|
--ac-tooltip-background:var(--theme-dark-palette-neutral-bg-weak);
|
|
4699
4699
|
}
|
|
4700
|
-
.ndl-cypher-code-block .cm-light{
|
|
4701
|
-
--background:var(--colors-neutral-20);
|
|
4702
|
-
}
|
|
4703
4700
|
.autocomplete-icon-shared{
|
|
4704
4701
|
font-family:'Fira Code';
|
|
4705
4702
|
border-radius:100%;
|
package/lib/tokens/js/tokens.js
CHANGED