@julseb-lib/react 0.0.53 → 0.0.54
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 +4 -4
- package/dist/index.css +2 -2
- package/dist/lib/components/MarkdownEditor/styles.tsx +1 -0
- package/dist/lib/components/MarkdownEditor/subtypes.ts +1 -0
- package/dist/lib/components/TextIcon/utils.ts +1 -0
- package/dist/lib/components/Timepicker/Timepicker.tsx +1 -0
- package/dist/lib/context/Theme.context.tsx +2 -0
- package/dist/lib/context/Toaster/Toaster.context.tsx +1 -0
- package/dist/lib/context/Toaster/index.ts +3 -1
- package/dist/lib/index.css +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,14 +4,14 @@ A small components library for React.
|
|
|
4
4
|
|
|
5
5
|
## Install in your project
|
|
6
6
|
|
|
7
|
-
```
|
|
8
|
-
npm i julseb-lib
|
|
7
|
+
```shell
|
|
8
|
+
npm i @julseb-lib/react
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
or
|
|
12
12
|
|
|
13
|
-
```
|
|
14
|
-
yarn add julseb-lib
|
|
13
|
+
```shell
|
|
14
|
+
yarn add @julseb-lib/react
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Full documentation
|
package/dist/index.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/*=============================================== TSX Lib base CSS ===============================================*/
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
/*====================== Fonts ======================*/
|
|
6
6
|
|
|
7
7
|
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
|
|
8
8
|
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
|
|
194
194
|
/* Font families */
|
|
195
195
|
|
|
196
|
-
--font-family-body: "Lato", sans-serif;
|
|
196
|
+
--font-family-body: "Lato-regular", sans-serif;
|
|
197
197
|
--font-family-code: monospace;
|
|
198
198
|
|
|
199
199
|
/* Font sizes */
|
package/dist/lib/index.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/*=============================================== TSX Lib base CSS ===============================================*/
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
/*====================== Fonts ======================*/
|
|
6
6
|
|
|
7
7
|
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
|
|
8
8
|
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
|
|
194
194
|
/* Font families */
|
|
195
195
|
|
|
196
|
-
--font-family-body: "Lato", sans-serif;
|
|
196
|
+
--font-family-body: "Lato-regular", sans-serif;
|
|
197
197
|
--font-family-code: monospace;
|
|
198
198
|
|
|
199
199
|
/* Font sizes */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julseb-lib/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.54",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
51
51
|
"@types/styled-components": "^5.1.34",
|
|
52
52
|
"@vitejs/plugin-react": "^4.3.1",
|
|
53
|
-
"axios": "^1.7.
|
|
53
|
+
"axios": "^1.7.7",
|
|
54
54
|
"cssjson-cli": "^1.0.1",
|
|
55
55
|
"cypress": "^13.13.3",
|
|
56
56
|
"eslint": "^9.9.1",
|