No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

361 líneas
12 KiB

  1. <!doctype html><html lang="en"><head><meta charset="utf-8"><title>Webpack App</title><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="prefetch" href="./sb-common-assets/nunito-sans-regular.woff2" as="font" type="font/woff2" crossorigin><link rel="prefetch" href="./sb-common-assets/nunito-sans-italic.woff2" as="font" type="font/woff2" crossorigin><link rel="prefetch" href="./sb-common-assets/nunito-sans-bold.woff2" as="font" type="font/woff2" crossorigin><link rel="prefetch" href="./sb-common-assets/nunito-sans-bold-italic.woff2" as="font" type="font/woff2" crossorigin><link rel="stylesheet" href="./sb-common-assets/fonts.css"><base target="_parent"><style>/* While we aren't showing the main block yet, but still preparing, we want everything the user
  2. has rendered, which may or may not be in #storybook-root, to be display none */
  3. .sb-show-preparing-story:not(.sb-show-main) > :not(.sb-preparing-story) {
  4. display: none;
  5. }
  6. .sb-show-preparing-docs:not(.sb-show-main) > :not(.sb-preparing-docs) {
  7. display: none;
  8. }
  9. /* Hide our own blocks when we aren't supposed to be showing them */
  10. :not(.sb-show-preparing-story) > .sb-preparing-story,
  11. :not(.sb-show-preparing-docs) > .sb-preparing-docs,
  12. :not(.sb-show-nopreview) > .sb-nopreview,
  13. :not(.sb-show-errordisplay) > .sb-errordisplay {
  14. display: none;
  15. }
  16. .sb-show-main.sb-main-centered {
  17. margin: 0;
  18. display: flex;
  19. align-items: center;
  20. min-height: 100vh;
  21. }
  22. .sb-show-main.sb-main-centered #storybook-root {
  23. box-sizing: border-box;
  24. margin: auto;
  25. padding: 1rem;
  26. max-height: 100%; /* Hack for centering correctly in IE11 */
  27. }
  28. /* Vertical centering fix for IE11 */
  29. @media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  30. .sb-show-main.sb-main-centered:after {
  31. content: '';
  32. min-height: inherit;
  33. font-size: 0;
  34. }
  35. }
  36. .sb-show-main.sb-main-fullscreen {
  37. margin: 0;
  38. padding: 0;
  39. display: block;
  40. }
  41. .sb-show-main.sb-main-padded {
  42. margin: 0;
  43. padding: 1rem;
  44. display: block;
  45. box-sizing: border-box;
  46. }
  47. .sb-wrapper {
  48. position: fixed;
  49. top: 0;
  50. bottom: 0;
  51. left: 0;
  52. right: 0;
  53. padding: 20px;
  54. font-family: 'Nunito Sans', -apple-system, '.SFNSText-Regular', 'San Francisco',
  55. BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  56. -webkit-font-smoothing: antialiased;
  57. overflow: auto;
  58. }
  59. .sb-heading {
  60. font-size: 14px;
  61. font-weight: 600;
  62. letter-spacing: 0.2px;
  63. margin: 10px 0;
  64. padding-right: 25px;
  65. }
  66. .sb-nopreview {
  67. display: flex;
  68. align-content: center;
  69. justify-content: center;
  70. }
  71. .sb-nopreview_main {
  72. margin: auto;
  73. padding: 30px;
  74. border-radius: 10px;
  75. background: rgba(0, 0, 0, 0.03);
  76. }
  77. .sb-nopreview_heading {
  78. text-align: center;
  79. }
  80. .sb-errordisplay {
  81. border: 20px solid rgb(187, 49, 49);
  82. background: #222;
  83. color: #fff;
  84. z-index: 999999;
  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',
  91. 'Lucida Console', Consolas, Monaco, monospace;
  92. }
  93. .sb-errordisplay pre {
  94. white-space: pre-wrap;
  95. }
  96. @-webkit-keyframes sb-rotate360 {
  97. from {
  98. transform: rotate(0deg);
  99. }
  100. to {
  101. transform: rotate(360deg);
  102. }
  103. }
  104. @keyframes sb-rotate360 {
  105. from {
  106. transform: rotate(0deg);
  107. }
  108. to {
  109. transform: rotate(360deg);
  110. }
  111. }
  112. @-webkit-keyframes sb-glow {
  113. 0%,
  114. 100% {
  115. opacity: 1;
  116. }
  117. 50% {
  118. opacity: 0.4;
  119. }
  120. }
  121. @keyframes sb-glow {
  122. 0%,
  123. 100% {
  124. opacity: 1;
  125. }
  126. 50% {
  127. opacity: 0.4;
  128. }
  129. }
  130. /* We display the preparing loaders *over* the rendering story */
  131. .sb-preparing-story,
  132. .sb-preparing-docs {
  133. background-color: white;
  134. /* Maximum possible z-index. It would be better to use stacking contexts to ensure it's always
  135. on top, but this isn't possible as it would require making CSS changes that could affect user code */
  136. z-index: 2147483647;
  137. }
  138. .sb-loader {
  139. -webkit-animation: sb-rotate360 0.7s linear infinite;
  140. animation: sb-rotate360 0.7s linear infinite;
  141. border-color: rgba(97, 97, 97, 0.29);
  142. border-radius: 50%;
  143. border-style: solid;
  144. border-top-color: #646464;
  145. border-width: 2px;
  146. display: inline-block;
  147. height: 32px;
  148. left: 50%;
  149. margin-left: -16px;
  150. margin-top: -16px;
  151. mix-blend-mode: difference;
  152. overflow: hidden;
  153. position: absolute;
  154. top: 50%;
  155. transition: all 200ms ease-out;
  156. vertical-align: top;
  157. width: 32px;
  158. z-index: 4;
  159. }
  160. .sb-previewBlock {
  161. background: #fff;
  162. border: 1px solid rgba(0, 0, 0, 0.1);
  163. border-radius: 4px;
  164. box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0;
  165. margin: 25px auto 40px;
  166. max-width: 600px;
  167. }
  168. .sb-previewBlock_header {
  169. align-items: center;
  170. box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 0 0 inset;
  171. display: flex;
  172. gap: 14px;
  173. height: 40px;
  174. padding: 0 12px;
  175. }
  176. .sb-previewBlock_icon {
  177. -webkit-animation: sb-glow 1.5s ease-in-out infinite;
  178. animation: sb-glow 1.5s ease-in-out infinite;
  179. background: #e6e6e6;
  180. height: 14px;
  181. width: 14px;
  182. }
  183. .sb-previewBlock_icon:last-child {
  184. margin-left: auto;
  185. }
  186. .sb-previewBlock_body {
  187. -webkit-animation: sb-glow 1.5s ease-in-out infinite;
  188. animation: sb-glow 1.5s ease-in-out infinite;
  189. height: 182px;
  190. position: relative;
  191. }
  192. .sb-argstableBlock {
  193. border-collapse: collapse;
  194. border-spacing: 0;
  195. font-size: 13px;
  196. line-height: 20px;
  197. margin: 25px auto 40px;
  198. max-width: 600px;
  199. text-align: left;
  200. width: 100%;
  201. }
  202. .sb-argstableBlock th:first-of-type,
  203. .sb-argstableBlock td:first-of-type {
  204. padding-left: 20px;
  205. }
  206. .sb-argstableBlock th:nth-of-type(2),
  207. .sb-argstableBlock td:nth-of-type(2) {
  208. width: 35%;
  209. }
  210. .sb-argstableBlock th:nth-of-type(3),
  211. .sb-argstableBlock td:nth-of-type(3) {
  212. width: 15%;
  213. }
  214. .sb-argstableBlock th:last-of-type,
  215. .sb-argstableBlock td:last-of-type {
  216. width: 25%;
  217. padding-right: 20px;
  218. }
  219. .sb-argstableBlock th span,
  220. .sb-argstableBlock td span {
  221. -webkit-animation: sb-glow 1.5s ease-in-out infinite;
  222. animation: sb-glow 1.5s ease-in-out infinite;
  223. background-color: rgba(0, 0, 0, 0.1);
  224. border-radius: 0;
  225. box-shadow: none;
  226. color: transparent;
  227. }
  228. .sb-argstableBlock th {
  229. padding: 10px 15px;
  230. }
  231. .sb-argstableBlock-body {
  232. border-radius: 4px;
  233. box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 1px, rgba(0, 0, 0, 0.065) 0 0 0 1px;
  234. }
  235. .sb-argstableBlock-body tr {
  236. background: transparent;
  237. overflow: hidden;
  238. }
  239. .sb-argstableBlock-body tr:not(:first-child) {
  240. border-top: 1px solid #e6e6e6;
  241. }
  242. .sb-argstableBlock-body tr:first-child td:first-child {
  243. border-top-left-radius: 4px;
  244. }
  245. .sb-argstableBlock-body tr:first-child td:last-child {
  246. border-top-right-radius: 4px;
  247. }
  248. .sb-argstableBlock-body tr:last-child td:first-child {
  249. border-bottom-left-radius: 4px;
  250. }
  251. .sb-argstableBlock-body tr:last-child td:last-child {
  252. border-bottom-right-radius: 4px;
  253. }
  254. .sb-argstableBlock-body td {
  255. background: #fff;
  256. padding-bottom: 10px;
  257. padding-top: 10px;
  258. vertical-align: top;
  259. }
  260. .sb-argstableBlock-body td:not(:first-of-type) {
  261. padding-left: 15px;
  262. padding-right: 15px;
  263. }
  264. .sb-argstableBlock-body button {
  265. -webkit-animation: sb-glow 1.5s ease-in-out infinite;
  266. animation: sb-glow 1.5s ease-in-out infinite;
  267. background-color: rgba(0, 0, 0, 0.1);
  268. border: 0;
  269. border-radius: 0;
  270. box-shadow: none;
  271. color: transparent;
  272. display: inline;
  273. font-size: 12px;
  274. line-height: 1;
  275. padding: 10px 16px;
  276. }
  277. .sb-argstableBlock-summary {
  278. margin-top: 4px;
  279. }
  280. .sb-argstableBlock-code {
  281. margin-right: 4px;
  282. margin-bottom: 4px;
  283. padding: 2px 5px;
  284. }</style><script>/* globals window */
  285. /* eslint-disable no-underscore-dangle */
  286. try {
  287. if (window.top !== window) {
  288. window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.top.__REACT_DEVTOOLS_GLOBAL_HOOK__;
  289. window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.top.__VUE_DEVTOOLS_GLOBAL_HOOK__;
  290. window.top.__VUE_DEVTOOLS_CONTEXT__ = window.document;
  291. }
  292. } catch (e) {
  293. // eslint-disable-next-line no-console
  294. console.warn('unable to connect to top frame for connecting dev tools');
  295. }</script><script>var ihk = ihk || {};
  296. ihk.translations = {
  297. overview: "Übersicht",
  298. loadMoreImages: "Mehr Bilder laden",
  299. loadMoreArticles: "Mehr laden",
  300. ihkFinderYourIhkButton:"ihk.finder.page.yourIhkButton"
  301. };</script><style>#storybook-root[hidden],
  302. #storybook-docs[hidden] {
  303. display: none !important;
  304. }</style></head><body><div class="sb-preparing-story sb-wrapper"><div class="sb-loader"></div></div><div class="sb-preparing-docs sb-wrapper"><div class="sb-previewBlock"><div class="sb-previewBlock_header"><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div><div class="sb-previewBlock_icon"></div></div><div class="sb-previewBlock_body"><div class="sb-loader"></div></div></div><table aria-hidden="true" class="sb-argstableBlock"><thead class="sb-argstableBlock-head"><tr><th><span>Name</span></th><th><span>Description</span></th><th><span>Default</span></th><th><span>Control</span></th></tr></thead><tbody class="sb-argstableBlock-body"><tr><td><span>propertyName</span><span title="Required">*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr><tr><td><span>propertyName</span><span>*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr><tr><td><span>propertyName</span><span>*</span></td><td><div><span>This is a short description</span></div><div class="sb-argstableBlock-summary"><div><span class="sb-argstableBlock-code">summary</span></div></div></td><td><div><span class="sb-argstableBlock-code">defaultValue</span></div></td><td><button>Set string</button></td></tr></tbody></table></div><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="storybook-root"></div><div id="storybook-docs"></div><script>window['CONFIG_TYPE'] = "PRODUCTION";
  305. window['LOGLEVEL'] = "info";
  306. window['FRAMEWORK_OPTIONS'] = {};
  307. window['FEATURES'] = {"warnOnLegacyHierarchySeparator":true,"buildStoriesJson":false,"storyStoreV7":true,"argTypeTargetsV7":true,"legacyDecoratorFileOrder":false};
  308. window['STORIES'] = [{"titlePrefix":"","directory":"./stories","files":"**/*.stories.mdx","importPathMatcher":"^\\.[\\\\/](?:stories(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.mdx)$"},{"titlePrefix":"","directory":"./stories","files":"**/*.stories.@(js|jsx|ts|tsx)","importPathMatcher":"^\\.[\\\\/](?:stories(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(js|jsx|ts|tsx))$"}];
  309. window['DOCS_OPTIONS'] = {"defaultName":"Docs","autodocs":true};</script><script type="module">import './sb-preview/runtime.js';
  310. import './runtime~main.162eb979.iframe.bundle.js';
  311. import './2084.012e3dc4.iframe.bundle.js';
  312. import './main.64a51cfd.iframe.bundle.js';</script></body></html>