@julseb-lib/react 0.0.53 → 0.0.55

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 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-react
7
+ ```shell
8
+ npm i @julseb-lib/react
9
9
  ```
10
10
 
11
11
  or
12
12
 
13
- ```
14
- yarn add julseb-lib-react
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
- /*==================== Imports ====================*/
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 */
@@ -109,6 +109,7 @@ const ButtonsContainer = styled(Flexbox).attrs({
109
109
  }
110
110
  `
111
111
 
112
+ // @ts-ignore
112
113
  const IconButton = styled(ButtonIcon).attrs({
113
114
  size: 24,
114
115
  variant: "transparent",
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  /*=============================================== MarkdownEditor sub components types ===============================================*/
2
3
 
3
4
  import type { RefObject } from "react"
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  /*=============================================== Utils ===============================================*/
2
3
 
3
4
  import { LIB_TOKENS } from "../.."
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  /*=============================================== Timepicker component ===============================================*/
2
3
 
3
4
  import { forwardRef, useRef, type ChangeEvent } from "react"
@@ -1,3 +1,5 @@
1
+ "use client"
2
+
1
3
  /*=============================================== Theme context ===============================================*/
2
4
 
3
5
  import { useState, useEffect, createContext, useContext } from "react"
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  /*=============================================== Toaster context ===============================================*/
2
3
 
3
4
  import { createContext, useReducer, useContext } from "react"
@@ -1,3 +1,5 @@
1
+ "use client"
2
+
1
3
  /*=============================================== Exports ===============================================*/
2
4
 
3
- export * from "./Toaster.context"
5
+ export * from "./Toaster.context"
@@ -2,7 +2,7 @@
2
2
 
3
3
  /*=============================================== TSX Lib base CSS ===============================================*/
4
4
 
5
- /*==================== Imports ====================*/
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.53",
3
+ "version": "0.0.55",
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.5",
53
+ "axios": "^1.7.7",
54
54
  "cssjson-cli": "^1.0.1",
55
55
  "cypress": "^13.13.3",
56
56
  "eslint": "^9.9.1",
@@ -92,6 +92,12 @@
92
92
  "require": "./dist/lib/types/components-props.ts",
93
93
  "types": "./dist/lib/types/components-props.ts",
94
94
  "default": "./dist/lib/types/components-props.ts"
95
+ },
96
+ "./ts-lib": {
97
+ "import": "./dist/lib",
98
+ "require": "./dist/lib",
99
+ "types": "./dist/lib",
100
+ "default": "./dist/lib"
95
101
  }
96
102
  },
97
103
  "typesVersions": {