@neo4j-ndl/base 1.2.0 → 1.3.0
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 +14 -0
- package/lib/LICENSES.txt +1649 -206
- package/lib/NOTICE.txt +9 -3
- package/lib/cjs/tailwind-preset.config.js +2 -2
- package/lib/cjs/tailwind-preset.config.js.map +1 -1
- package/lib/cjs/tailwindTheme.js +41 -2
- package/lib/cjs/tailwindTheme.js.map +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tailwind-preset.config.js +2 -2
- package/lib/esm/tailwind-preset.config.js.map +1 -1
- package/lib/esm/tailwindTheme.js +40 -2
- package/lib/esm/tailwindTheme.js.map +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 +27654 -12902
- 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/tailwindTheme.d.ts +2 -2
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- eecdfdb: dark theme components and tokens, tailwind theme agnostic tokens, and storybook double theme toolbar setting.
|
|
8
|
+
|
|
9
|
+
Also fixed weird white border in inputs (Switch, Radio and TextInput).
|
|
10
|
+
|
|
11
|
+
## 1.2.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 2e5ee6f: Center table cell content to work better with large content
|
|
16
|
+
|
|
3
17
|
## 1.2.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|