@react-md/core 1.0.0-next.3 → 1.0.0-next.5
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +12 -0
- package/coverage/clover.xml +529 -437
- package/coverage/coverage-final.json +3 -3
- package/coverage/lcov-report/ListItem.tsx.html +2 -2
- package/coverage/lcov-report/ListItemLink.tsx.html +616 -0
- package/coverage/lcov-report/getListItemHeight.ts.html +298 -0
- package/coverage/lcov-report/index.html +38 -23
- package/coverage/lcov.info +423 -317
- package/dist/_core.scss +1 -1
- package/dist/form/_form.scss +1 -1
- package/dist/list/ListItem.js +1 -1
- package/dist/list/ListItem.js.map +1 -1
- package/dist/list/ListItemLink.js +1 -1
- package/dist/list/ListItemLink.js.map +1 -1
- package/dist/list/getListItemHeight.d.ts +0 -1
- package/dist/list/getListItemHeight.js +2 -2
- package/dist/list/getListItemHeight.js.map +1 -1
- package/dist/list/types.d.ts +1 -1
- package/dist/list/types.js.map +1 -1
- package/dist/menu/_menu.scss +0 -2
- package/dist/theme/_theme.scss +20 -10
- package/package.json +7 -7
- package/src/_core.scss +1 -1
- package/src/form/_form.scss +1 -1
- package/src/list/ListItem.tsx +1 -1
- package/src/list/ListItemLink.tsx +1 -1
- package/src/list/__tests__/getListItemHeight.ts +2 -2
- package/src/list/getListItemHeight.ts +2 -3
- package/src/list/types.ts +1 -1
- package/src/menu/_menu.scss +0 -2
- package/src/theme/_theme.scss +20 -10
- package/.turbo/turbo-lint.log +0 -12
- package/.turbo/turbo-test.log +0 -179
- package/.turbo/turbo-typecheck.log +0 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
> @react-md/core@1.0.0-next.
|
|
2
|
+
> @react-md/core@1.0.0-next.4 build /home/mlaursen/code/react-md/packages/core
|
|
3
3
|
> npm-run-all build-esm build-scss build-types
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @react-md/core@1.0.0-next.
|
|
6
|
+
> @react-md/core@1.0.0-next.4 build-esm /home/mlaursen/code/react-md/packages/core
|
|
7
7
|
> swc src -d ./dist
|
|
8
8
|
|
|
9
|
-
Successfully compiled: 368 files with swc (
|
|
9
|
+
Successfully compiled: 368 files with swc (551.18ms)
|
|
10
10
|
|
|
11
|
-
> @react-md/core@1.0.0-next.
|
|
11
|
+
> @react-md/core@1.0.0-next.4 build-scss /home/mlaursen/code/react-md/packages/core
|
|
12
12
|
> node scripts/copySassFiles.js
|
|
13
13
|
|
|
14
14
|
Copied 38 scss files
|
|
15
15
|
|
|
16
|
-
> @react-md/core@1.0.0-next.
|
|
16
|
+
> @react-md/core@1.0.0-next.4 build-types /home/mlaursen/code/react-md/packages/core
|
|
17
17
|
> tsc -P tsconfig.types.json
|
|
18
18
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @react-md/core
|
|
2
2
|
|
|
3
|
+
## 1.0.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed compile output directory by reverting to @swc/cli@0.1.63
|
|
8
|
+
|
|
9
|
+
## 1.0.0-next.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fixed Sass variable issues and other CSS tweaks.
|
|
14
|
+
|
|
3
15
|
## 1.0.0-next.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|