{"id":42559398,"url":"https://github.com/smartacephale/jabroni-outfit-gui","last_synced_at":"2026-04-29T17:03:41.458Z","repository":{"id":253313107,"uuid":"842958864","full_name":"smartacephale/Jabroni-Outfit-GUI","owner":"smartacephale","description":"out-of-the-box gui and persistent-state library based on vue","archived":false,"fork":false,"pushed_at":"2026-02-10T13:45:25.000Z","size":1510,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-10T18:28:08.770Z","etag":null,"topics":["cdn","gui","persistent-state","shadow-dom","tweaks","unocss","vue"],"latest_commit_sha":null,"homepage":"https://smartacephale.github.io/Jabroni-Outfit-GUI/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smartacephale.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-15T13:29:25.000Z","updated_at":"2026-02-10T13:45:29.000Z","dependencies_parsed_at":"2025-02-20T12:42:19.413Z","dependency_job_id":null,"html_url":"https://github.com/smartacephale/Jabroni-Outfit-GUI","commit_stats":null,"previous_names":["smartacephale/jabroni-outfit","smartacephale/jabroni-outfit-gui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/smartacephale/Jabroni-Outfit-GUI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartacephale%2FJabroni-Outfit-GUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartacephale%2FJabroni-Outfit-GUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartacephale%2FJabroni-Outfit-GUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartacephale%2FJabroni-Outfit-GUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smartacephale","download_url":"https://codeload.github.com/smartacephale/Jabroni-Outfit-GUI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartacephale%2FJabroni-Outfit-GUI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32435122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cdn","gui","persistent-state","shadow-dom","tweaks","unocss","vue"],"created_at":"2026-01-28T20:01:26.393Z","updated_at":"2026-04-29T17:03:41.453Z","avatar_url":"https://github.com/smartacephale.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg width=\"100\" src=\"https://github.com/smartacephale/Jabroni-Outfit-GUI/blob/main/docs/jabroni-outfit-logo.png?raw=true\"\u003e\u003c/img\u003e\u003c/p\u003e \n\u003ch1 align=\"center\"\u003eJabroni Outfit GUI\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003eSmall GUI and Persistent State library based on Vue\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\u003ca href=\"https://smartacephale.github.io/Jabroni-Outfit-GUI/\"\u003ehttps://smartacephale.github.io/Jabroni-Outfit-GUI/\u003c/a\u003e\u003c/p\u003e \n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://repository-images.githubusercontent.com/842958864/8e8f8ff5-f92b-45b4-afec-505fa53cc9e7\" alt=\"Sublime's custom image\"/\u003e\n\u003c/p\u003e\n\n### Features\n- Store vaiables are persistent by default.\n- Store variable with \u003c$\u003e prefix are not persistent.\n\n### Usage\n\n```javascript\nimport { JabronioStore, JabronioGUI } from 'jabroni-outfit';\n```\n\n```javascript\n\u003cscript src=\"https://unpkg.com/jabroni-outfit@latest/dist/jabroni-outfit.umd.js\"\u003e\u003c/script\u003e\n...\nconst { JabronioStore, JabronioGUI } = window.jabronioutfit;\n```\n\n### Example\n\n```javascript\nconst { JabronioGUI, JabronioStore, setupScheme } = window.jabronioutfit;\n\nconst example = () =\u003e {\n  const store = new JabronioStore();\n\n  const scheme: SchemeInput = setupScheme([\n    {\n      title: 'Colors',\n      content: [\n        {\n          $color1: 'coral',\n        },\n        {\n          color2: 'crimson',\n        },\n        {\n          $color3: 'tomato',\n        },\n        {\n          size: 100,\n          type: 'range',\n          max: '500',\n          min: '0',\n        },\n        {\n          gradientEnabled: true,\n          label: 'gradient enabled',\n        },\n        {\n          reset: () =\u003e {\n            store.state.$color1 = 'darkslateblue';\n            store.state.color2 = 'maroon';\n            store.state.$color3 = 'darksalmon';\n          },\n        },\n      ],\n    },\n    {\n      title: 'Advanced',\n      collapsed: true,\n      content: [\n        {\n          'clueless checkbox': false,\n        },\n      ],\n    },\n  ]);\n\n  new JabronioGUI(scheme, store);\n\n  function drawGradient() {\n    const { $color1, color2, $color3, gradientEnabled, size } = store.state;\n    if (!gradientEnabled) {\n      document.body.style.background = '#000';\n      return;\n    }\n    document.body.style.background = `repeating-radial-gradient(${$color1}, ${color2}, ${$color3} ${size}%)`;\n  }\n\n  drawGradient();\n\n  store.stateSubject.subscribe((_) =\u003e {\n    drawGradient();\n  });\n\n  store.eventSubject.subscribe((e) =\u003e {\n    console.log('event', e);\n  });\n};\n\nexample();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmartacephale%2Fjabroni-outfit-gui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmartacephale%2Fjabroni-outfit-gui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmartacephale%2Fjabroni-outfit-gui/lists"}