lines-overlay 0.1.24 → 0.1.25

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,19 +26,19 @@ Este pacote assume que o seu projeto já usa:
26
26
  ## Uso básico
27
27
 
28
28
  ```tsx
29
- import { RowGrid } from 'lines-overlay';
29
+ import { LinesOverlay } from 'lines-overlay';
30
30
 
31
31
  export function App() {
32
32
  return (
33
33
  <div>
34
34
  {/* Sua interface normal aqui */}
35
- <RowGrid />
35
+ <LinesOverlay />
36
36
  </div>
37
37
  );
38
38
  }
39
39
  ```
40
40
 
41
- Ao incluir o componente `RowGrid` em qualquer lugar do seu aplicativo React, um botão “Mostrar linhas” aparece fixo no canto inferior direito.
41
+ Ao incluir o componente `LinesOverlay` em qualquer lugar do seu aplicativo React, um botão “Mostrar linhas” aparece fixo no canto inferior direito.
42
42
 
43
43
  - **Atalho de teclado**
44
44
  - `Ctrl + ;` também alterna entre mostrar/ocultar as linhas.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lines-overlay",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/LeonardoSouzaBento/lines-overlay-npm-package.git"