Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eebc8d7

Browse files
committed
Deploying to main from @ 3f37b1d πŸš€
1 parent e9ed616 commit eebc8d7

34 files changed

+399
-0
lines changed

β€Ždocs/build/main.bundle.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždocs/code-brackets.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/comments.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/component.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/direction.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/favicon.ico

32.2 KB
Binary file not shown.

β€Ždocs/flow.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/iframe.html

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Storybook</title><meta name="viewport" content="width=device-width,initial-scale=1"><base target="_parent"><style>:not(.sb-show-main) > .sb-main,
2+
:not(.sb-show-nopreview) > .sb-nopreview,
3+
:not(.sb-show-errordisplay) > .sb-errordisplay {
4+
display: none;
5+
}
6+
7+
.sb-show-main.sb-main-centered {
8+
margin: 0;
9+
display: flex;
10+
align-items: center;
11+
min-height: 100vh;
12+
}
13+
14+
.sb-show-main.sb-main-centered #root {
15+
box-sizing: border-box;
16+
margin: auto;
17+
padding: 1rem;
18+
max-height: 100%; /* Hack for centering correctly in IE11 */
19+
}
20+
21+
/* Vertical centering fix for IE11 */
22+
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
23+
.sb-show-main.sb-main-centered:after {
24+
content: '';
25+
min-height: inherit;
26+
font-size: 0;
27+
}
28+
}
29+
30+
.sb-show-main.sb-main-fullscreen {
31+
margin: 0;
32+
padding: 0;
33+
display: block;
34+
}
35+
36+
.sb-show-main.sb-main-padded {
37+
margin: 0;
38+
padding: 1rem;
39+
display: block;
40+
}
41+
42+
.sb-wrapper {
43+
position: fixed;
44+
top: 0;
45+
bottom: 0;
46+
left: 0;
47+
right: 0;
48+
padding: 20px;
49+
font-family: "Nunito Sans", -apple-system, ".SFNSText-Regular", "San Francisco", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
50+
-webkit-font-smoothing: antialiased;
51+
overflow: auto;
52+
}
53+
54+
.sb-heading {
55+
font-size: 14px;
56+
font-weight: 600;
57+
letter-spacing: 0.2px;
58+
margin: 10px 0;
59+
padding-right: 25px;
60+
}
61+
62+
.sb-nopreview {
63+
display: flex;
64+
align-content: center;
65+
justify-content: center;
66+
}
67+
68+
.sb-nopreview_main {
69+
margin: auto;
70+
padding: 30px;
71+
border-radius: 10px;
72+
background: rgba(0,0,0,0.03);
73+
}
74+
75+
.sb-nopreview_heading {
76+
text-align: center;
77+
}
78+
79+
.sb-errordisplay {
80+
border: 20px solid rgb(187, 49, 49);
81+
background: #222;
82+
color: #fff;
83+
z-index: 999999;
84+
}
85+
86+
.sb-errordisplay_code {
87+
padding: 10px;
88+
background: #000;
89+
color: #eee;
90+
font-family: "Operator Mono", "Fira Code Retina", "Fira Code", "FiraCode-Retina", "Andale Mono", "Lucida Console", Consolas, Monaco, monospace;
91+
}
92+
93+
.sb-errordisplay pre {
94+
white-space: pre-wrap;
95+
}</style><script>/* globals window */
96+
/* eslint-disable no-underscore-dangle */
97+
try {
98+
if (window.top !== window) {
99+
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.top.__REACT_DEVTOOLS_GLOBAL_HOOK__;
100+
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.top.__VUE_DEVTOOLS_GLOBAL_HOOK__;
101+
window.top.__VUE_DEVTOOLS_CONTEXT__ = window.document;
102+
}
103+
} catch (e) {
104+
// eslint-disable-next-line no-console
105+
console.warn('unable to connect to top frame for connecting dev tools');
106+
}
107+
108+
window.onerror = function onerror(message, source, line, column, err) {
109+
if (window.CONFIG_TYPE !== 'DEVELOPMENT') return;
110+
// eslint-disable-next-line no-var, vars-on-top
111+
var error = { message: err.message, name: err.name, stack: err.stack };
112+
window.fetch('/runtime-error', {
113+
method: 'POST',
114+
headers: { 'Content-Type': 'application/json' },
115+
body: JSON.stringify({ message, source, line, column, error, origin: 'preview' }),
116+
});
117+
};</script><style>#root[hidden],
118+
#docs-root[hidden] {
119+
display: none !important;
120+
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script>window['LOGLEVEL'] = "info";
121+
122+
123+
124+
window['FRAMEWORK_OPTIONS'] = {};</script><script src="runtime~main.4104c7a72f83f2c87c84.bundle.js"></script><script src="vendors~main.4104c7a72f83f2c87c84.bundle.js"></script><script src="main.4104c7a72f83f2c87c84.bundle.js"></script></body></html>

β€Ždocs/image.svg

Lines changed: 1 addition & 0 deletions
Loading

β€Ždocs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Cloudinary Vue SDK</title><link rel="icon" type="image/x-icon" href="./favicon.png"></head><body><div id="rsg-root"></div><style>@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Montserrat:400,500,600');body {font-family: 'Open Sans', Arial, sans-serif;font-size: 16px;line-height: 1.5;color: #3c3c3c;background-color: white;}.cld-doc h1,.cld-doc h2,.cld-doc h3,.cld-doc h4,.cld-doc h5,.cld-doc h6,.cld-doc .h1,.cld-doc .h2,.cld-doc .h3,.cld-doc .h4,.cld-doc .h5,.cld-doc .h6 {font-family: 'Montserrat', Helvetica, Arial, sans-serif;}.cld-doc .h1,.cld-doc h1 {font-size: 40px;color: #000;margin-top: 0;margin-bottom: 25px;}.cld-doc .h2,.cld-doc h2 {font-size: 32px;}.cld-doc .h3,.cld-doc h3 {font-size: 24px;}.cld-doc .h4,.cld-doc h4 {font-size: 20px;}.cld-doc .h5,.cld-doc h5 {margin-top: 22px;font-size: 18px;}.cld-doc .h6,.cld-doc h6 {font-size: 16px;}.cld-doc .h1,.cld-doc h1,.cld-doc .h2,.cld-doc h2 {font-weight: 500;letter-spacing: -1.2px;}.cld-doc .h3,.cld-doc h3,.cld-doc .h4,.cld-doc h4,.cld-doc .h5,.cld-doc h5,.cld-doc .h6,.cld-doc h6 {font-weight: 500;letter-spacing: -0.5px;}.cld-doc h1,.cld-doc h2,.cld-doc h3,.cld-doc h4,.cld-doc h5,.cld-doc h6 {color: #000;}.cld-doc h1 a, .cld-doc h2 a, .cld-doc h3 a, .cld-doc h4 a, .cld-doc h5 a, .cld-doc h6 a {color: #000;}.cld-doc h1 a:visited, .cld-doc h2 a:visited, .cld-doc h3 a:visited, .cld-doc h4 a:visited, .cld-doc h5 a:visited, .cld-doc h6 a:visited {color: inherit;}.cld-doc h1 a:hover, .cld-doc h2 a:hover, .cld-doc h3 a:hover, .cld-doc h4 a:hover, .cld-doc h5 a:hover, .cld-doc h6 a:hover {color: #f96726;text-decoration: none;}.cld-doc.cld-doc.cld-doc a,.cld-doc.cld-doc.cld-doc :link {text-decoration: none;transition: color 0.3s;color: #f96726;}.cld-doc.cld-doc.cld-doc a:hover {color: #f96726;text-decoration: underline;}.cld-doc.cld-doc.cld-doc a:visited {color: #d44e12;}.cld-doc.cld-doc.cld-doc a:focus {color: #d44e12;text-decoration: underline;outline: none;}table[class^=rsg] {border-collapse: collapse;margin: 2em 0;}.cld-doc ul {list-style: none}.cld-doc ul li::before {content: "β€’"; color: #f96726; margin-right: 10px;}button[name="rsg-code-editor"] {display: none;}.CodeMirror.CodeMirror-wrap {border-radius: 6px;}table[class^=rsg] td, table[class^=rsg] th {font-size: 13px;padding: 7px 10px;border: 1px solid #ddd;line-height: 18px;overflow-wrap: break-word;}table[class^=rsg] th {color: #888;font-weight: bold;}table[class^=rsg] td a {font-weight: normal;}table[class^=rsg] code {font-size: 12px;overflow-wrap: break-word;word-break: break-word;}div.explain {display: block;position: relative;border: 1px dotted #db0f60;}div.explain:before {content: attr(style);position: absolute;top:0; left: 0;border-bottom: 1px dotted #db0f60;border-right: 1px dotted #db0f60;z-index: 2;background: white;color: black;padding: 3px;font-size: 7pt;font-family: sans-serif;opacity: 0.5;}div.explain:hover:before {opacity: 0.9;}div.explain * {border: 1px dashed #000;}div.explain * {border-color: #db0fbc;}div.explain * * {border-color: #6a0fdb;}div.explain * * * {border-color: #190fdb;}div.explain * * * {border-color: #0f71db;}</style><script src="build/chunk-vendors.js"></script><script src="build/main.bundle.js"></script></body></html>

β€Ždocs/main.0211b929b2d5ed8d2bbf.bundle.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždocs/main.4104c7a72f83f2c87c84.bundle.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)