test-bdk-cli 0.1.9 → 0.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-bdk-cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "test CLI",
5
5
  "author": "@raisulaslam",
6
6
  "bin": {
@@ -0,0 +1,3 @@
1
+ # React template
2
+
3
+ This is a minimal sample React template for `bdk apps:new --template react`.
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+ <title>Sample Iframe</title>
7
+ <style>body{font-family:Arial,Helvetica,sans-serif;padding:20px}</style>
8
+ </head>
9
+ <body>
10
+ <h1>Hello from the app iframe</h1>
11
+ <p>This is a simple placeholder iframe page generated by the CLI.</p>
12
+ </body>
13
+ </html>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
2
+ <rect width="64" height="64" rx="8" fill="#0b6c6c" />
3
+ <rect x="12" y="12" width="40" height="40" rx="6" fill="#fff" />
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="240" height="240" viewBox="0 0 240 240">
2
+ <rect width="240" height="240" rx="24" fill="#0b6c6c" />
3
+ <g fill="#fff" transform="translate(40,40)">
4
+ <rect x="0" y="0" width="160" height="160" rx="12" />
5
+ </g>
6
+ </svg>
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "sample-react-app",
3
+ "version": "0.1.0",
4
+ "author": "Your Name",
5
+ "description": "A sample React BoldDesk app",
6
+ "main": "dist/index.html",
7
+ "permissions": []
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "app": {
3
+ "name": "Zen Tunes",
4
+ "short_description": "Play the famous zen tunes in your help desk.",
5
+ "long_description": "Play the famous zen tunes in your help desk and \n listen to the beats it has to offer.",
6
+ "installation_instructions": "Simply click install."
7
+ }
8
+ }