Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f7debe6
include stuff from simply-modules dir
ylebre Jan 23, 2026
6d576a3
update generated
ylebre Jan 23, 2026
e8c3f36
remove console logs
ylebre Jan 23, 2026
aaadc4c
Add JSZip library as base component.
Potherca Jan 23, 2026
841f981
Add action to fetch ZIP files and extract their contents for an import.
Potherca Jan 23, 2026
265cf78
Update generated.html to reflect the latest changes.
Potherca Jan 23, 2026
26af2a5
add styling for import hint
ylebre Jan 23, 2026
813e745
add UI hint
ylebre Jan 23, 2026
d772a7c
add data api for merged versions
ylebre Jan 23, 2026
2d68914
add functions to get module base-components, components and pages
ylebre Jan 23, 2026
02ae2c5
remove modules, already handled in list calls
ylebre Jan 23, 2026
85fd057
use merged versions
ylebre Jan 23, 2026
6e3cb0f
update generated
ylebre Jan 23, 2026
9c5d716
include stuff from simply-modules dir
ylebre Jan 23, 2026
1ab4f67
update generated
ylebre Jan 23, 2026
a80e78f
remove console logs
ylebre Jan 23, 2026
0541eb2
add styling for import hint
ylebre Jan 23, 2026
88e3068
add UI hint
ylebre Jan 23, 2026
afe1f6c
add data api for merged versions
ylebre Jan 23, 2026
8636ad4
add functions to get module base-components, components and pages
ylebre Jan 23, 2026
521abb4
remove modules, already handled in list calls
ylebre Jan 23, 2026
99ffeb7
use merged versions
ylebre Jan 23, 2026
b70d869
update generated
ylebre Jan 23, 2026
6e9cbb4
Merge pull request #88 from SimplyEdit/feature/imports-fetch-zip
ylebre Jan 24, 2026
19e85ca
fetch imports on save of the import and save them to simply-modules
ylebre Jan 24, 2026
abd007a
add 'install all' button on imports overview
ylebre Jan 24, 2026
18d98a4
fix import creation
ylebre Jan 26, 2026
396bbb8
add link and rendering of module versions of the code
ylebre Jan 26, 2026
18c40b5
update generated
ylebre Jan 26, 2026
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
1 change: 1 addition & 0 deletions base-components/jszip/headHtml/js-zip.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<script src="js/jszip/jszip.js"></script>
1 change: 1 addition & 0 deletions base-components/jszip/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"id":"jszip","description":"Create, read and edit .zip files with Javascript"}
7 changes: 6 additions & 1 deletion components/1-styling/componentCss/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,9 @@ header .simplycode-controls {
}
.simplycode-editor-code textarea {
margin-top: -1px;
}
}
strong.simplycode-module {
color: var(--simplycode-highlight-dark);
float: right;
padding-right: 5px;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<div class="simply-toolbar-title">
<simply-render rel="logo"></simply-render>
</div>
<button disabled class="ds-button simply-toolbar-button">
<svg class="ds-icon ds-icon-feather">
<use xlink:href="/assets/img/feather-sprite.svg#save">
</use></svg>
Save
</button>
<button disabled class="ds-button simply-toolbar-button">
<svg class="ds-icon ds-icon-feather">
<use xlink:href="/assets/img/feather-sprite.svg#trash">
</use></svg>
Delete
</button>
<button class="ds-button simply-toolbar-button" data-simply-command="fetchImports">
<svg class="ds-icon ds-icon-feather">
<use xlink:href="/assets/img/feather-sprite.svg#download">
</use></svg>
Fetch imports
</button>
<span class="simply-toolbar-push-right"></span>
<button class="ds-button simply-toolbar-button" data-simply-command="preview">
<svg class="ds-icon ds-icon-feather">
<use xlink:href="/assets/img/feather-sprite.svg#eye">
</use></svg>
Preview
</button>
<button disabled class="ds-button simply-toolbar-button">
<svg class="ds-icon ds-icon-feather">
<use xlink:href="/assets/img/feather-sprite.svg#check">
</use></svg>
Publish
</button>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<template data-simply-template="default" rel="simply-toolbar-default"></template>
<template data-simply-template="Edit builder" rel="simply-toolbar-builder"></template>
<template data-simply-template="Edit import" rel="simply-toolbar-import"></template>
<template data-simply-template="Imports" rel="simply-toolbar-imports"></template>
<template data-simply-template="Edit page" rel="simply-toolbar-page"></template>
<template data-simply-template="Edit component" rel="simply-toolbar-component"></template>
<template data-simply-template="Edit base component" rel="simply-toolbar-base-component"></template>
Expand Down
Loading