@san-siva/blogkit 1.1.18 → 1.1.19
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/README.md +2 -2
- package/package.json +2 -2
- package/src/styles/Table.module.scss +10 -10
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
A comprehensive, production-ready blog component library for React and Next.js applications. Built with TypeScript and SCSS modules, Blogkit provides a complete suite of components for creating professional, interactive blog posts with advanced features including syntax highlighting, diagram rendering, callouts, and more.
|
|
6
6
|
|
|
7
|
-
**[View Full Documentation](https://blogkit
|
|
7
|
+
**[View Full Documentation](https://blogkit.santhoshsiva.dev/)**
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
@@ -102,7 +102,7 @@ export default function MyBlogPost() {
|
|
|
102
102
|
|
|
103
103
|
## Documentation
|
|
104
104
|
|
|
105
|
-
Comprehensive documentation is available at [https://blogkit
|
|
105
|
+
Comprehensive documentation is available at [https://blogkit.santhoshsiva.dev/](https://blogkit.santhoshsiva.dev/)
|
|
106
106
|
|
|
107
107
|
The documentation includes:
|
|
108
108
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@san-siva/blogkit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"description": "A reusable blog component library for React/Next.js applications with code highlighting, diagrams, and rich content features",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"author": "Santhosh Siva",
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@san-siva/stylekit": "^1.0.
|
|
41
|
+
"@san-siva/stylekit": "^1.0.8",
|
|
42
42
|
"schema-dts": "^1.1.5"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
word-wrap: break-word;
|
|
8
8
|
overflow-wrap: break-word;
|
|
9
9
|
display: flex;
|
|
10
|
-
align-items:
|
|
10
|
+
align-items: flex-start;
|
|
11
11
|
|
|
12
12
|
&:last-child {
|
|
13
13
|
border-right: none;
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
.table {
|
|
18
18
|
width: max-content;
|
|
19
19
|
max-width: 100%;
|
|
20
|
-
|
|
20
|
+
margin-right: auto;
|
|
21
21
|
overflow: hidden;
|
|
22
22
|
overflow-x: auto;
|
|
23
23
|
display: grid;
|
|
24
24
|
grid-auto-flow: row;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
background-color: styles.$color--primary-light;
|
|
26
|
+
border-radius: styles.$border-radius;
|
|
27
27
|
|
|
28
28
|
&__header {
|
|
29
29
|
display: contents;
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
background-color: styles.$color--primary;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
&__cell * {
|
|
39
|
+
font-size: inherit;
|
|
40
|
+
}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
&__row {
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
color: styles.$color--dark;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
&__cell * {
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
}
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|