@loworbitstudio/visor 1.5.0 → 1.6.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "0.4.0",
3
- "generated_at": "2026-06-04T00:42:59.549Z",
3
+ "generated_at": "2026-06-11T14:53:30.672Z",
4
4
  "components": {
5
5
  "accessibility-specimen": {
6
6
  "changeType": "current",
@@ -290,6 +290,12 @@
290
290
  "breakingChange": false,
291
291
  "migrationNote": null
292
292
  },
293
+ "infographic-bar": {
294
+ "changeType": "current",
295
+ "files": [],
296
+ "breakingChange": false,
297
+ "migrationNote": null
298
+ },
293
299
  "inline": {
294
300
  "changeType": "current",
295
301
  "files": [],
@@ -332,6 +338,12 @@
332
338
  "breakingChange": false,
333
339
  "migrationNote": null
334
340
  },
341
+ "matrix-table": {
342
+ "changeType": "current",
343
+ "files": [],
344
+ "breakingChange": false,
345
+ "migrationNote": null
346
+ },
335
347
  "menubar": {
336
348
  "changeType": "current",
337
349
  "files": [],
@@ -452,6 +464,12 @@
452
464
  "breakingChange": false,
453
465
  "migrationNote": null
454
466
  },
467
+ "section-nav": {
468
+ "changeType": "current",
469
+ "files": [],
470
+ "breakingChange": false,
471
+ "migrationNote": null
472
+ },
455
473
  "select": {
456
474
  "changeType": "current",
457
475
  "files": [],
@@ -554,6 +572,12 @@
554
572
  "breakingChange": false,
555
573
  "migrationNote": null
556
574
  },
575
+ "surface-scale-stack": {
576
+ "changeType": "current",
577
+ "files": [],
578
+ "breakingChange": false,
579
+ "migrationNote": null
580
+ },
557
581
  "switch": {
558
582
  "changeType": "current",
559
583
  "files": [],
@@ -620,6 +644,12 @@
620
644
  "breakingChange": false,
621
645
  "migrationNote": null
622
646
  },
647
+ "type-scale-stack": {
648
+ "changeType": "current",
649
+ "files": [],
650
+ "breakingChange": false,
651
+ "migrationNote": null
652
+ },
623
653
  "type-specimen": {
624
654
  "changeType": "current",
625
655
  "files": [],
package/dist/index.js CHANGED
@@ -4464,7 +4464,7 @@ function mapAdapterPath(relPath) {
4464
4464
  function emitVisorThemesPubspec() {
4465
4465
  return [
4466
4466
  `name: visor_themes`,
4467
- `description: All Visor-generated Flutter ThemeData packages \u2014 4 stock + 7 custom themes. GENERATED \u2014 regenerate with \`npm run themes:apply-flutter\`.`,
4467
+ `description: All Visor-generated Flutter ThemeData packages. GENERATED \u2014 regenerate with \`npm run themes:apply-flutter\`.`,
4468
4468
  `version: 0.1.0+1`,
4469
4469
  `publish_to: none`,
4470
4470
  ``,
@@ -4515,7 +4515,7 @@ function emitMetaBarrel(slugs) {
4515
4515
  `// GENERATED BY visor \u2014 DO NOT EDIT.`,
4516
4516
  `// Regenerate with \`npm run themes:apply-flutter\`.`,
4517
4517
  `//`,
4518
- `// Aggregates Dart ThemeData for all Visor themes (4 stock + 7 custom).`,
4518
+ `// Aggregates Dart ThemeData for all Visor themes.`,
4519
4519
  `// Access themes via [VisorThemes], e.g. VisorThemes.blackout.light`,
4520
4520
  ``,
4521
4521
  `import 'package:flutter/material.dart';`,
@@ -7355,7 +7355,7 @@ theme.command("register").description(
7355
7355
  );
7356
7356
  theme.command("unregister").description(
7357
7357
  "Remove a theme from the docs site \u2014 deletes CSS file, removes globals.css import and theme-config.ts entry"
7358
- ).argument("<slug>", "theme slug to unregister (e.g. entr, kaiah)").option("--json", "output structured JSON (for AI agents)").action(
7358
+ ).argument("<slug>", "theme slug to unregister (e.g. my-theme)").option("--json", "output structured JSON (for AI agents)").action(
7359
7359
  (slug2, options) => {
7360
7360
  themeUnregisterCommand(slug2, process.cwd(), options);
7361
7361
  }