Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download html #633

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
aa78a80
Permite fazer dowload da pagina
eltonjhsouza Jun 14, 2024
2435209
Adicionar tool para trocar link
eltonjhsouza Jun 15, 2024
0735552
Ajustes para troca de link
eltonjhsouza Jun 16, 2024
15daadc
Tradução das ferramentas e permite selecionar texto para editar
eltonjhsouza Jun 16, 2024
cf46301
Ajuste na seleção de texto
eltonjhsouza Jun 18, 2024
a8780b3
Adiciona imagem com duplo click e add pixel
eltonjhsouza Jun 18, 2024
cb4d330
Ajusta permissões no manifast
eltonjhsouza Jun 20, 2024
bbe9dd4
Adiciona recurso para visualizar mobile
eltonjhsouza Jun 20, 2024
c28876f
Adiciona novos icones
eltonjhsouza Jun 20, 2024
470fcd1
feat: Improve mobile view button styling and functionality
eltonjhsouza Jun 22, 2024
78ad411
Update extension name to "I.A Copi"
eltonjhsouza Jun 22, 2024
09c8b21
feat: Add functionality to update link on double click
eltonjhsouza Jun 22, 2024
210675a
feat: Adjust iframe height to 99% for better display
eltonjhsouza Jun 22, 2024
122a7de
feat: Adjust iframe height to 99% for better display
eltonjhsouza Jun 22, 2024
cd0443c
Documenta funcionalidades de métodos
eltonjhsouza Jun 22, 2024
7873ef6
Remove permissão de filesystem
eltonjhsouza Jun 23, 2024
dc2a57f
Permite substituir imagem de background
eltonjhsouza Jun 23, 2024
eac316a
Permite altera os videos
eltonjhsouza Jun 23, 2024
0a99363
Adiciona tecla de atalho ctrl+l para inserir link em elementos
eltonjhsouza Jun 23, 2024
f949dea
feat: Add functionality to update link and image on double click
eltonjhsouza Jun 26, 2024
9f8f1f7
feat: Add prompt to request user email and handle tool access
eltonjhsouza Jun 26, 2024
d98b7cc
Realiza download da imagem em caso de falha
eltonjhsouza Jun 27, 2024
3a29bce
Implementa autenticação
eltonjhsouza Jun 27, 2024
0bf6c3e
Melhorias no fluxo de download do html
eltonjhsouza Jul 4, 2024
2cc881b
Remove scripts de GTM e Pixel Meta
eltonjhsouza Jul 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/components/_variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
@import "open-props/gray.shadow.min.css";
@import "open-props/gray-hsl.shadow.min.css";

:root {
--layer-1: 10;
--theme-bd-2: #ffffff;
--theme-bg: #f0f0f0;
--theme-text_color: #333333;
--theme-icon_color: #666666;
--theme-icon_hover-bg: #e0e0e0;
--theme-icon_active-bg: #cccccc;
--neon-pink: #ff007f;
--shadow-2: 0 0.25em 0.5em hsla(0, 76%, 44%, 0.1);
}

:host {
--theme-bg: white;
--theme-bd: hsl(0 0% 100% / var(--theme-bd-opacity));
Expand Down
6 changes: 3 additions & 3 deletions app/components/_variables_dark.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
:host {
--theme-bg: hsl(0 0% 10%);
--theme-bg: hsl(14, 96%, 49%);
--theme-bd: hsl(0 0% 10% / var(--theme-bd-opacity));
--theme-bd-2: hsl(0 0% 10% / var(--theme-bd-2-opacity));
--theme-color: hsl(330deg 65% 75%);
--theme-text_color: hsl(0 0% 90%);
--theme-icon_color: hsl(0 0% 80%);
--theme-icon_hover-bg: hsl(0 0% 15%);
--theme-icon_active-bg: hsl(0 0% 20%);
--theme-icon_hover-bg: hsl(0, 97%, 44%);
--theme-icon_active-bg: hsl(0, 100%, 46%);
}
4 changes: 4 additions & 0 deletions app/components/hotkey-map/hotkeys.element.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import $ from 'blingblingjs'
import hotkeys from 'hotkeys-js'
import { metaKey } from '../../utilities/'

import { GuidesHotkeys } from './guides.element'
import { InspectorHotkeys } from './inspector.element'
Expand All @@ -14,6 +15,7 @@ import { PositionHotkeys } from './position.element'
import { FontHotkeys } from './font.element'
import { TextHotkeys } from './text.element'
import { SearchHotkeys } from './search.element'
import { undoLastEvent, redoLastEvent } from '../../features/history'

export class Hotkeys extends HTMLElement {

Expand Down Expand Up @@ -47,6 +49,8 @@ export class Hotkeys extends HTMLElement {
: this.showTool())

hotkeys('esc', e => this.hideTool())
hotkeys(`${metaKey}+z`, (e) => undoLastEvent());
hotkeys(`${metaKey}+shift+z`, (e) => redoLastEvent());
}

disconnectedCallback() {}
Expand Down
Loading