this.gui 0.0.61 → 1.0.1

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.
@@ -0,0 +1,5 @@
1
+ const t = `html{font-size:19px}html,body{margin:auto;background:#fefefe;-webkit-font-smoothing:antialiased}body{font-family:Vollkorn,Palatino,Times;color:#333;line-height:1.4;text-align:justify}#write{max-width:960px;margin:0 auto 2em;line-height:1.53;padding-top:40px}@media only screen and (min-width: 1400px){#write{max-width:1100px}}@media print{html{font-size:13px}}#write>h1:first-child,h1{margin-top:1.6em;font-weight:400}h1{font-size:3em}h2{margin-top:2em;font-weight:400}h3{font-weight:400;font-style:italic;margin-top:3em}h1,h2,h3{text-align:center}h2:after{border-bottom:1px solid #2f2f2f;content:"";width:100px;display:block;margin:0 auto;height:1px}h1+h2,h2+h3{margin-top:.83em}p,.mathjax-block{margin-top:0;-webkit-hypens:auto;-moz-hypens:auto;-webkit-hyphens:auto;hyphens:auto}ul{list-style:square;padding-left:1.2em}ol{padding-left:1.2em}@media print{ol{padding-left:40px}}blockquote{margin-left:1em;padding-left:1em;border-left:1px solid #ddd}code,pre{font-family:Consolas,Menlo,Monaco,monospace,serif;font-size:.9em;background:white}.md-fences{margin-left:1em;padding-left:1em;border:1px solid #ddd;padding-bottom:8px;padding-top:6px;margin-bottom:1.5em}a{color:#2484c1;text-decoration:none}a:hover{text-decoration:underline}a img{border:none}h1 a,h1 a:hover{color:#333;text-decoration:none}hr{color:#ddd;height:1px;margin:2em 0;border-top:solid 1px #ddd;border-bottom:none;border-left:0;border-right:0}.ty-table-edit{background:#ededed;padding-top:4px}table{margin-bottom:1.333333rem}table th,table td{padding:8px;line-height:1.333333rem;vertical-align:top;border-top:1px solid #ddd}table th{font-weight:700}table thead th{vertical-align:bottom}table caption+thead tr:first-child th,table caption+thead tr:first-child td,table colgroup+thead tr:first-child th,table colgroup+thead tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td{border-top:0}table tbody+tbody{border-top:2px solid #ddd}.task-list{padding:0}.md-task-list-item{padding-left:1.6rem}.md-task-list-item>input:before{content:"√";display:inline-block;width:1.33333333rem;height:1.6rem;vertical-align:middle;text-align:center;color:#ddd;background-color:#fefefe}.md-task-list-item>input:checked:before,.md-task-list-item>input[checked]:before{color:inherit}.md-tag{color:inherit;font:inherit}#write pre.md-meta-block{min-height:35px;white-space:pre;background:#f8f8f8;border:0px;color:#999;width:100vw;max-width:calc(100% + 60px);margin-left:-30px;border-left:30px #f8f8f8 solid;border-right:30px #f8f8f8 solid;margin-bottom:2em;margin-top:-1.3333333333333rem;line-height:1.8em;font-size:.76em;padding:26px 1em 10px 0}.md-img-error.md-image>.md-meta{vertical-align:bottom}#write>h5.md-focus:before{top:2px}.md-toc{margin-top:40px}.md-toc-content{padding-bottom:20px}.outline-expander:before{color:inherit;font-size:14px;top:auto;content:"";font-family:FontAwesome}.outline-expander:hover:before,.outline-item-open>.outline-item>.outline-expander:before{content:""}#typora-source{font-family:Courier,monospace;color:#6a6a6a}.html-for-mac #typora-sidebar{box-shadow:0 6px 12px #0000002d}.cm-s-typora-default .cm-header,.cm-s-typora-default .cm-property,.CodeMirror.cm-s-typora-default div.CodeMirror-cursor{color:#428bca}.cm-s-typora-default .cm-atom,.cm-s-typora-default .cm-number{color:#777}.typora-node .file-list-item-parent-loc,.typora-node .file-list-item-time,.typora-node .file-list-item-summary{font-family:arial,sans-serif}.md-task-list-item>input{margin-left:-1.3em;margin-top:calc(1rem - 12px)}.md-mathjax-midline{background:#fafafa}.md-fences .code-tooltip{bottom:-2em!important}.dropdown-menu .divider{border-color:#e5e5e5}
2
+ `;
3
+ export {
4
+ t as default
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "this.gui",
3
- "version": "0.0.61",
3
+ "version": "1.0.1",
4
4
  "description": "This Graphic User Interface.",
5
5
  "main": "dist/this-gui.umd.js",
6
6
  "module": "dist/this-gui.es.js",
@@ -9,21 +9,22 @@
9
9
  "url": "git+https://github.com/neurons-me/GUI.git"
10
10
  },
11
11
  "scripts": {
12
- "start": "vite",
12
+ "start": "node ./src/scripts/logASCIIArt.js && concurrently \"vite --open\" \"storybook dev -p ${STORYBOOK_PORT:-6006} --no-open\"",
13
13
  "dev": "vite",
14
14
  "build": "vite build",
15
15
  "prepublishOnly": "npm run build",
16
- "storybook": "storybook dev -p 6006",
16
+ "storybook": "storybook dev -p ${STORYBOOK_PORT:-6006}",
17
17
  "build-storybook": "storybook build"
18
18
  },
19
19
  "type": "module",
20
20
  "author": "suiGn",
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@storybook/addons": "^7.6.17",
24
23
  "@storybook/builder-vite": "^8.2.9",
25
24
  "@vitejs/plugin-react": "^4.3.1",
26
25
  "autoprefixer": "^10.4.20",
26
+ "dotenv": "^16.4.5",
27
+ "figlet": "^1.7.0",
27
28
  "fs": "^0.0.1-security",
28
29
  "postcss": "^8.4.45",
29
30
  "tailwindcss": "^3.4.10"
@@ -38,16 +39,18 @@
38
39
  "@mdx-js/react": "^3.0.1",
39
40
  "@mdx-js/rollup": "^3.0.1",
40
41
  "@storybook/addon-docs": "^8.3.0",
41
- "@storybook/addon-essentials": "^8.2.9",
42
- "@storybook/addon-interactions": "^8.2.9",
43
- "@storybook/addon-links": "^8.2.9",
42
+ "@storybook/addon-essentials": "^8.3.0",
43
+ "@storybook/addon-interactions": "^8.3.0",
44
+ "@storybook/addon-links": "^8.3.0",
44
45
  "@storybook/addon-onboarding": "^8.2.9",
45
46
  "@storybook/blocks": "^8.2.9",
46
47
  "@storybook/manager-api": "^8.2.9",
47
- "@storybook/react": "^8.2.9",
48
- "@storybook/react-vite": "^8.2.9",
48
+ "@storybook/react": "^8.3.0",
49
+ "@storybook/react-vite": "^8.3.0",
49
50
  "@storybook/test": "^8.2.9",
50
51
  "@storybook/theming": "^8.2.9",
52
+ "concurrently": "^9.0.1",
53
+ "cross-env": "^7.0.3",
51
54
  "prop-types": "^15.8.1",
52
55
  "react": "^18.0.0",
53
56
  "react-dom": "^18.0.0",