aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/smartsheet
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2023-01-19 22:50:09 +0000
committerLibravatar GitHub <noreply@github.com>2023-01-19 22:50:09 +0000
commit6a12a29e1224939aa115a14715a4415e14b0b389 (patch)
treeac0d61fcde02e061d833a8ce9986417d2a092dab /recipes/smartsheet
parentfix: add mastodon hosted option and remove teamId (diff)
downloadferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.gz
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.zst
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.zip
feat: add several recipes (#293)
Diffstat (limited to 'recipes/smartsheet')
-rw-r--r--recipes/smartsheet/icon.svg12
-rw-r--r--recipes/smartsheet/index.js1
-rw-r--r--recipes/smartsheet/package.json9
-rw-r--r--recipes/smartsheet/webview.js9
4 files changed, 31 insertions, 0 deletions
diff --git a/recipes/smartsheet/icon.svg b/recipes/smartsheet/icon.svg
new file mode 100644
index 0000000..5f2170b
--- /dev/null
+++ b/recipes/smartsheet/icon.svg
@@ -0,0 +1,12 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4 viewBox="0 0 652 652" style="enable-background:new 0 0 652 652;" xml:space="preserve">
5<style type="text/css">
6 .st0{fill:#003059;}
7</style>
8<path class="st0" d="M167,266.3c0,0,26.6-40.3,62.9-40.3c54.9-1.6,100.1,101.7,108.1,116.2c61.3-142,163-262.3,245.3-342.1H75
9 c0,49.2,0,545.5,0,586.6c0,22.6-2.4,43.6-6.5,65.4c66.2-11.3,131.5-27.4,194.5-50c154.1-57.3,214.6-117.8,214.6-117.8l4-4l2.4,4.8
10 c9.7,24.2,24.2,46,38.7,67.8c21,26.6,32.3,29,40.3,26.6c8.9-2.4,13.7-17.8,16.1-41.2c2.4-24.2,4-76.7,4-142v-351
11 C435.7,234.8,325.2,518.9,325.2,518.9S251.8,265.5,167,266.3z"/>
12</svg>
diff --git a/recipes/smartsheet/index.js b/recipes/smartsheet/index.js
new file mode 100644
index 0000000..06cc84f
--- /dev/null
+++ b/recipes/smartsheet/index.js
@@ -0,0 +1 @@
module.exports = Ferdium => class SmartSheet extends Ferdium {};
diff --git a/recipes/smartsheet/package.json b/recipes/smartsheet/package.json
new file mode 100644
index 0000000..aa19e96
--- /dev/null
+++ b/recipes/smartsheet/package.json
@@ -0,0 +1,9 @@
1{
2 "id": "smartsheet",
3 "name": "SmartSheet",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://app.smartsheet.com"
8 }
9}
diff --git a/recipes/smartsheet/webview.js b/recipes/smartsheet/webview.js
new file mode 100644
index 0000000..56a20b6
--- /dev/null
+++ b/recipes/smartsheet/webview.js
@@ -0,0 +1,9 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
9};