plutonium 0.50.0 → 0.52.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.
- checksums.yaml +4 -4
- data/.claude/skills/plutonium/SKILL.md +85 -102
- data/.claude/skills/plutonium-app/SKILL.md +574 -0
- data/.claude/skills/plutonium-auth/SKILL.md +167 -302
- data/.claude/skills/plutonium-behavior/SKILL.md +838 -0
- data/.claude/skills/plutonium-resource/SKILL.md +1176 -0
- data/.claude/skills/plutonium-tenancy/SKILL.md +674 -0
- data/.claude/skills/plutonium-testing/SKILL.md +9 -6
- data/.claude/skills/plutonium-ui/SKILL.md +900 -0
- data/CHANGELOG.md +44 -2
- data/Rakefile +2 -1
- data/app/assets/plutonium.css +1 -11
- data/app/assets/plutonium.js +1010 -1214
- data/app/assets/plutonium.js.map +3 -3
- data/app/assets/plutonium.min.js +52 -51
- data/app/assets/plutonium.min.js.map +3 -3
- data/docs/.vitepress/config.ts +38 -29
- data/docs/.vitepress/theme/components/HomeAudienceSplit.vue +53 -0
- data/docs/.vitepress/theme/components/HomeCta.vue +108 -0
- data/docs/.vitepress/theme/components/HomeHero.vue +70 -0
- data/docs/.vitepress/theme/components/HomeInTheBox.vue +74 -0
- data/docs/.vitepress/theme/components/HomePillars.vue +42 -0
- data/docs/.vitepress/theme/components/HomeStopWriting.vue +49 -0
- data/docs/.vitepress/theme/components/HomeWalkthrough.vue +111 -0
- data/docs/.vitepress/theme/components/SectionLanding.vue +115 -0
- data/docs/.vitepress/theme/custom.css +144 -0
- data/docs/.vitepress/theme/index.ts +58 -1
- data/docs/getting-started/index.md +33 -57
- data/docs/getting-started/installation.md +37 -80
- data/docs/getting-started/tutorial/02-first-resource.md +17 -8
- data/docs/getting-started/tutorial/03-authentication.md +31 -23
- data/docs/getting-started/tutorial/05-custom-actions.md +9 -4
- data/docs/getting-started/tutorial/06-nested-resources.md +7 -1
- data/docs/getting-started/tutorial/07-author-portal.md +8 -0
- data/docs/getting-started/tutorial/08-customizing-ui.md +4 -0
- data/docs/getting-started/tutorial/index.md +4 -5
- data/docs/guides/adding-resources.md +66 -377
- data/docs/guides/authentication.md +98 -462
- data/docs/guides/authorization.md +124 -370
- data/docs/guides/creating-packages.md +93 -298
- data/docs/guides/custom-actions.md +126 -441
- data/docs/guides/customizing-ui.md +258 -0
- data/docs/guides/index.md +49 -52
- data/docs/guides/multi-tenancy.md +123 -186
- data/docs/guides/nested-resources.md +137 -396
- data/docs/guides/search-filtering.md +127 -238
- data/docs/guides/testing.md +10 -5
- data/docs/guides/theming.md +168 -405
- data/docs/guides/troubleshooting.md +5 -3
- data/docs/guides/user-invites.md +112 -425
- data/docs/guides/user-profile.md +82 -241
- data/docs/index.md +10 -219
- data/docs/public/asciinema/home-scaffold.cast +305 -0
- data/docs/public/images/guides/custom-actions-bulk.png +0 -0
- data/docs/public/images/guides/multi-tenancy-dashboard.png +0 -0
- data/docs/public/images/guides/multi-tenancy-welcome.png +0 -0
- data/docs/public/images/guides/nested-inputs.png +0 -0
- data/docs/public/images/guides/nested-resources-tab.png +0 -0
- data/docs/public/images/guides/search-filtering-index.png +0 -0
- data/docs/public/images/guides/search-filtering-panel.png +0 -0
- data/docs/public/images/guides/theming-after.png +0 -0
- data/docs/public/images/guides/theming-before.png +0 -0
- data/docs/public/images/guides/user-invites-landing.png +0 -0
- data/docs/public/images/guides/user-profile-edit.png +0 -0
- data/docs/public/images/guides/user-profile-show.png +0 -0
- data/docs/public/images/home-index.png +0 -0
- data/docs/public/images/home-new.png +0 -0
- data/docs/public/images/home-show.png +0 -0
- data/docs/public/images/tutorial/02-empty-index.png +0 -0
- data/docs/public/images/tutorial/02-index-with-posts.png +0 -0
- data/docs/public/images/tutorial/02-new-form-modal.png +0 -0
- data/docs/public/images/tutorial/02-new-form.png +0 -0
- data/docs/public/images/tutorial/03-create-account.png +0 -0
- data/docs/public/images/tutorial/03-login.png +0 -0
- data/docs/public/images/tutorial/04-admin-index.png +0 -0
- data/docs/public/images/tutorial/05-actions-menu.png +0 -0
- data/docs/public/images/tutorial/05-row-actions.png +0 -0
- data/docs/public/images/tutorial/06-comments-tab.png +0 -0
- data/docs/public/images/tutorial/06-post-with-comments.png +0 -0
- data/docs/public/images/tutorial/07-author-dashboard.png +0 -0
- data/docs/public/images/tutorial/07-author-portal.png +0 -0
- data/docs/public/images/tutorial/08-customized-index.png +0 -0
- data/docs/reference/app/generators.md +517 -0
- data/docs/reference/app/index.md +158 -0
- data/docs/reference/app/packages.md +146 -0
- data/docs/reference/app/portals.md +377 -0
- data/docs/reference/auth/accounts.md +229 -0
- data/docs/reference/auth/index.md +88 -0
- data/docs/reference/auth/profile.md +185 -0
- data/docs/reference/behavior/controllers.md +395 -0
- data/docs/reference/behavior/index.md +22 -0
- data/docs/reference/behavior/interactions.md +341 -0
- data/docs/reference/behavior/policies.md +417 -0
- data/docs/reference/index.md +67 -48
- data/docs/reference/resource/actions.md +423 -0
- data/docs/reference/resource/definition.md +508 -0
- data/docs/reference/resource/index.md +50 -0
- data/docs/reference/resource/model.md +348 -0
- data/docs/reference/resource/query.md +305 -0
- data/docs/reference/tenancy/entity-scoping.md +368 -0
- data/docs/reference/tenancy/index.md +36 -0
- data/docs/reference/tenancy/invites.md +400 -0
- data/docs/reference/tenancy/nested-resources.md +267 -0
- data/docs/reference/testing/index.md +287 -0
- data/docs/reference/ui/assets.md +400 -0
- data/docs/reference/ui/components.md +165 -0
- data/docs/reference/ui/displays.md +104 -0
- data/docs/reference/ui/forms.md +284 -0
- data/docs/reference/ui/index.md +30 -0
- data/docs/reference/ui/layouts.md +106 -0
- data/docs/reference/ui/pages.md +189 -0
- data/docs/reference/ui/tables.md +121 -0
- data/docs/superpowers/plans/2026-05-15-public-pages-overhaul.md +1648 -0
- data/docs/superpowers/plans/2026-05-15-public-pages-overhaul.md.tasks.json +109 -0
- data/docs/superpowers/specs/2026-05-09-typeahead-endpoint-design.md +203 -0
- data/docs/superpowers/specs/2026-05-12-skill-compaction-design.md +99 -0
- data/docs/superpowers/specs/2026-05-13-docs-restructure-design.md +186 -0
- data/docs/superpowers/specs/2026-05-15-public-pages-overhaul-design.md +263 -0
- data/gemfiles/rails_7.gemfile.lock +1 -1
- data/gemfiles/rails_8.0.gemfile.lock +1 -1
- data/gemfiles/rails_8.1.gemfile.lock +1 -1
- data/lib/generators/pu/core/assets/assets_generator.rb +10 -0
- data/lib/generators/pu/core/update/update_generator.rb +0 -20
- data/lib/generators/pu/invites/install_generator.rb +45 -0
- data/lib/generators/pu/invites/templates/packages/invites/app/controllers/invites/user_invitations_controller.rb.tt +1 -0
- data/lib/generators/pu/profile/conn_generator.rb +2 -2
- data/lib/generators/pu/res/conn/conn_generator.rb +33 -6
- data/lib/generators/pu/res/model/templates/model.rb.tt +4 -0
- data/lib/generators/pu/rodauth/account_generator.rb +2 -1
- data/lib/generators/pu/rodauth/admin_generator.rb +0 -2
- data/lib/generators/pu/rodauth/migration_generator.rb +0 -2
- data/lib/generators/pu/rodauth/views_generator.rb +0 -2
- data/lib/generators/pu/saas/membership/USAGE +4 -1
- data/lib/generators/pu/saas/setup_generator.rb +16 -4
- data/lib/generators/pu/saas/welcome/templates/app/controllers/welcome_controller.rb.tt +1 -1
- data/lib/plutonium/definition/base.rb +1 -1
- data/lib/plutonium/definition/{views.rb → index_views.rb} +21 -20
- data/lib/plutonium/helpers/turbo_helper.rb +30 -0
- data/lib/plutonium/helpers/turbo_stream_actions_helper.rb +14 -0
- data/lib/plutonium/resource/controller.rb +1 -0
- data/lib/plutonium/resource/controllers/crud_actions.rb +23 -5
- data/lib/plutonium/resource/controllers/interactive_actions.rb +3 -3
- data/lib/plutonium/resource/controllers/typeahead.rb +180 -0
- data/lib/plutonium/resource/policy.rb +7 -0
- data/lib/plutonium/routing/mapper_extensions.rb +15 -0
- data/lib/plutonium/ui/component/methods.rb +5 -0
- data/lib/plutonium/ui/form/base.rb +23 -3
- data/lib/plutonium/ui/form/components/json.rb +58 -0
- data/lib/plutonium/ui/form/components/resource_select.rb +62 -8
- data/lib/plutonium/ui/form/components/secure_association.rb +103 -22
- data/lib/plutonium/ui/form/concerns/typeahead_attributes.rb +83 -0
- data/lib/plutonium/ui/form/interaction.rb +1 -1
- data/lib/plutonium/ui/form/resource.rb +0 -4
- data/lib/plutonium/ui/form/theme.rb +1 -1
- data/lib/plutonium/ui/grid/resource.rb +1 -1
- data/lib/plutonium/ui/layout/base.rb +1 -0
- data/lib/plutonium/ui/page/base.rb +0 -7
- data/lib/plutonium/ui/page/edit.rb +1 -1
- data/lib/plutonium/ui/page/index.rb +4 -4
- data/lib/plutonium/ui/page/new.rb +1 -1
- data/lib/plutonium/ui/table/components/filter_form.rb +12 -4
- data/lib/plutonium/ui/table/resource.rb +1 -1
- data/lib/plutonium/version.rb +1 -1
- data/lib/plutonium.rb +8 -0
- data/lib/tasks/release.rake +15 -1
- data/package.json +13 -10
- data/src/css/slim_select.css +4 -0
- data/src/js/controllers/form_controller.js +5 -4
- data/src/js/controllers/slim_select_controller.js +61 -0
- data/src/js/turbo/turbo_actions.js +33 -0
- data/yarn.lock +661 -544
- metadata +86 -33
- data/.claude/skills/plutonium-assets/SKILL.md +0 -512
- data/.claude/skills/plutonium-controller/SKILL.md +0 -396
- data/.claude/skills/plutonium-create-resource/SKILL.md +0 -303
- data/.claude/skills/plutonium-definition/SKILL.md +0 -1223
- data/.claude/skills/plutonium-entity-scoping/SKILL.md +0 -317
- data/.claude/skills/plutonium-forms/SKILL.md +0 -465
- data/.claude/skills/plutonium-installation/SKILL.md +0 -331
- data/.claude/skills/plutonium-interaction/SKILL.md +0 -413
- data/.claude/skills/plutonium-invites/SKILL.md +0 -408
- data/.claude/skills/plutonium-model/SKILL.md +0 -440
- data/.claude/skills/plutonium-nested-resources/SKILL.md +0 -360
- data/.claude/skills/plutonium-package/SKILL.md +0 -198
- data/.claude/skills/plutonium-policy/SKILL.md +0 -456
- data/.claude/skills/plutonium-portal/SKILL.md +0 -410
- data/.claude/skills/plutonium-views/SKILL.md +0 -651
- data/docs/reference/assets/index.md +0 -496
- data/docs/reference/controller/index.md +0 -412
- data/docs/reference/definition/actions.md +0 -462
- data/docs/reference/definition/fields.md +0 -383
- data/docs/reference/definition/index.md +0 -326
- data/docs/reference/definition/query.md +0 -351
- data/docs/reference/generators/index.md +0 -648
- data/docs/reference/interaction/index.md +0 -449
- data/docs/reference/model/features.md +0 -248
- data/docs/reference/model/index.md +0 -218
- data/docs/reference/policy/index.md +0 -456
- data/docs/reference/portal/index.md +0 -379
- data/docs/reference/views/forms.md +0 -411
- data/docs/reference/views/index.md +0 -544
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plutonium
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.52.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Froelich
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-05-
|
|
10
|
+
date: 2026-05-21 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: zeitwerk
|
|
@@ -427,23 +427,13 @@ extensions: []
|
|
|
427
427
|
extra_rdoc_files: []
|
|
428
428
|
files:
|
|
429
429
|
- "# Plutonium: The pre-alpha demo.md"
|
|
430
|
-
- ".claude/skills/plutonium-
|
|
430
|
+
- ".claude/skills/plutonium-app/SKILL.md"
|
|
431
431
|
- ".claude/skills/plutonium-auth/SKILL.md"
|
|
432
|
-
- ".claude/skills/plutonium-
|
|
433
|
-
- ".claude/skills/plutonium-
|
|
434
|
-
- ".claude/skills/plutonium-
|
|
435
|
-
- ".claude/skills/plutonium-entity-scoping/SKILL.md"
|
|
436
|
-
- ".claude/skills/plutonium-forms/SKILL.md"
|
|
437
|
-
- ".claude/skills/plutonium-installation/SKILL.md"
|
|
438
|
-
- ".claude/skills/plutonium-interaction/SKILL.md"
|
|
439
|
-
- ".claude/skills/plutonium-invites/SKILL.md"
|
|
440
|
-
- ".claude/skills/plutonium-model/SKILL.md"
|
|
441
|
-
- ".claude/skills/plutonium-nested-resources/SKILL.md"
|
|
442
|
-
- ".claude/skills/plutonium-package/SKILL.md"
|
|
443
|
-
- ".claude/skills/plutonium-policy/SKILL.md"
|
|
444
|
-
- ".claude/skills/plutonium-portal/SKILL.md"
|
|
432
|
+
- ".claude/skills/plutonium-behavior/SKILL.md"
|
|
433
|
+
- ".claude/skills/plutonium-resource/SKILL.md"
|
|
434
|
+
- ".claude/skills/plutonium-tenancy/SKILL.md"
|
|
445
435
|
- ".claude/skills/plutonium-testing/SKILL.md"
|
|
446
|
-
- ".claude/skills/plutonium-
|
|
436
|
+
- ".claude/skills/plutonium-ui/SKILL.md"
|
|
447
437
|
- ".claude/skills/plutonium/SKILL.md"
|
|
448
438
|
- ".cliff.toml"
|
|
449
439
|
- ".node-version"
|
|
@@ -542,6 +532,14 @@ files:
|
|
|
542
532
|
- config/initializers/rabl.rb
|
|
543
533
|
- config/initializers/sqlite_alias.rb
|
|
544
534
|
- docs/.vitepress/config.ts
|
|
535
|
+
- docs/.vitepress/theme/components/HomeAudienceSplit.vue
|
|
536
|
+
- docs/.vitepress/theme/components/HomeCta.vue
|
|
537
|
+
- docs/.vitepress/theme/components/HomeHero.vue
|
|
538
|
+
- docs/.vitepress/theme/components/HomeInTheBox.vue
|
|
539
|
+
- docs/.vitepress/theme/components/HomePillars.vue
|
|
540
|
+
- docs/.vitepress/theme/components/HomeStopWriting.vue
|
|
541
|
+
- docs/.vitepress/theme/components/HomeWalkthrough.vue
|
|
542
|
+
- docs/.vitepress/theme/components/SectionLanding.vue
|
|
545
543
|
- docs/.vitepress/theme/custom.css
|
|
546
544
|
- docs/.vitepress/theme/index.ts
|
|
547
545
|
- docs/getting-started/index.md
|
|
@@ -560,6 +558,7 @@ files:
|
|
|
560
558
|
- docs/guides/authorization.md
|
|
561
559
|
- docs/guides/creating-packages.md
|
|
562
560
|
- docs/guides/custom-actions.md
|
|
561
|
+
- docs/guides/customizing-ui.md
|
|
563
562
|
- docs/guides/index.md
|
|
564
563
|
- docs/guides/multi-tenancy.md
|
|
565
564
|
- docs/guides/nested-resources.md
|
|
@@ -574,9 +573,39 @@ files:
|
|
|
574
573
|
- docs/public/android-chrome-192x192.png
|
|
575
574
|
- docs/public/android-chrome-512x512.png
|
|
576
575
|
- docs/public/apple-touch-icon.png
|
|
576
|
+
- docs/public/asciinema/home-scaffold.cast
|
|
577
577
|
- docs/public/favicon-16x16.png
|
|
578
578
|
- docs/public/favicon-32x32.png
|
|
579
579
|
- docs/public/favicon.ico
|
|
580
|
+
- docs/public/images/guides/custom-actions-bulk.png
|
|
581
|
+
- docs/public/images/guides/multi-tenancy-dashboard.png
|
|
582
|
+
- docs/public/images/guides/multi-tenancy-welcome.png
|
|
583
|
+
- docs/public/images/guides/nested-inputs.png
|
|
584
|
+
- docs/public/images/guides/nested-resources-tab.png
|
|
585
|
+
- docs/public/images/guides/search-filtering-index.png
|
|
586
|
+
- docs/public/images/guides/search-filtering-panel.png
|
|
587
|
+
- docs/public/images/guides/theming-after.png
|
|
588
|
+
- docs/public/images/guides/theming-before.png
|
|
589
|
+
- docs/public/images/guides/user-invites-landing.png
|
|
590
|
+
- docs/public/images/guides/user-profile-edit.png
|
|
591
|
+
- docs/public/images/guides/user-profile-show.png
|
|
592
|
+
- docs/public/images/home-index.png
|
|
593
|
+
- docs/public/images/home-new.png
|
|
594
|
+
- docs/public/images/home-show.png
|
|
595
|
+
- docs/public/images/tutorial/02-empty-index.png
|
|
596
|
+
- docs/public/images/tutorial/02-index-with-posts.png
|
|
597
|
+
- docs/public/images/tutorial/02-new-form-modal.png
|
|
598
|
+
- docs/public/images/tutorial/02-new-form.png
|
|
599
|
+
- docs/public/images/tutorial/03-create-account.png
|
|
600
|
+
- docs/public/images/tutorial/03-login.png
|
|
601
|
+
- docs/public/images/tutorial/04-admin-index.png
|
|
602
|
+
- docs/public/images/tutorial/05-actions-menu.png
|
|
603
|
+
- docs/public/images/tutorial/05-row-actions.png
|
|
604
|
+
- docs/public/images/tutorial/06-comments-tab.png
|
|
605
|
+
- docs/public/images/tutorial/06-post-with-comments.png
|
|
606
|
+
- docs/public/images/tutorial/07-author-dashboard.png
|
|
607
|
+
- docs/public/images/tutorial/07-author-portal.png
|
|
608
|
+
- docs/public/images/tutorial/08-customized-index.png
|
|
580
609
|
- docs/public/og-image.png
|
|
581
610
|
- docs/public/plutonium.png
|
|
582
611
|
- docs/public/site.webmanifest
|
|
@@ -593,21 +622,36 @@ files:
|
|
|
593
622
|
- docs/public/tutorial/plutonium-posts-detail-customized.png
|
|
594
623
|
- docs/public/tutorial/plutonium-posts-detail.png
|
|
595
624
|
- docs/public/tutorial/plutonium-publish-post.png
|
|
596
|
-
- docs/reference/
|
|
597
|
-
- docs/reference/
|
|
598
|
-
- docs/reference/
|
|
599
|
-
- docs/reference/
|
|
600
|
-
- docs/reference/
|
|
601
|
-
- docs/reference/
|
|
602
|
-
- docs/reference/
|
|
625
|
+
- docs/reference/app/generators.md
|
|
626
|
+
- docs/reference/app/index.md
|
|
627
|
+
- docs/reference/app/packages.md
|
|
628
|
+
- docs/reference/app/portals.md
|
|
629
|
+
- docs/reference/auth/accounts.md
|
|
630
|
+
- docs/reference/auth/index.md
|
|
631
|
+
- docs/reference/auth/profile.md
|
|
632
|
+
- docs/reference/behavior/controllers.md
|
|
633
|
+
- docs/reference/behavior/index.md
|
|
634
|
+
- docs/reference/behavior/interactions.md
|
|
635
|
+
- docs/reference/behavior/policies.md
|
|
603
636
|
- docs/reference/index.md
|
|
604
|
-
- docs/reference/
|
|
605
|
-
- docs/reference/
|
|
606
|
-
- docs/reference/
|
|
607
|
-
- docs/reference/
|
|
608
|
-
- docs/reference/
|
|
609
|
-
- docs/reference/
|
|
610
|
-
- docs/reference/
|
|
637
|
+
- docs/reference/resource/actions.md
|
|
638
|
+
- docs/reference/resource/definition.md
|
|
639
|
+
- docs/reference/resource/index.md
|
|
640
|
+
- docs/reference/resource/model.md
|
|
641
|
+
- docs/reference/resource/query.md
|
|
642
|
+
- docs/reference/tenancy/entity-scoping.md
|
|
643
|
+
- docs/reference/tenancy/index.md
|
|
644
|
+
- docs/reference/tenancy/invites.md
|
|
645
|
+
- docs/reference/tenancy/nested-resources.md
|
|
646
|
+
- docs/reference/testing/index.md
|
|
647
|
+
- docs/reference/ui/assets.md
|
|
648
|
+
- docs/reference/ui/components.md
|
|
649
|
+
- docs/reference/ui/displays.md
|
|
650
|
+
- docs/reference/ui/forms.md
|
|
651
|
+
- docs/reference/ui/index.md
|
|
652
|
+
- docs/reference/ui/layouts.md
|
|
653
|
+
- docs/reference/ui/pages.md
|
|
654
|
+
- docs/reference/ui/tables.md
|
|
611
655
|
- docs/superpowers/plans/2026-04-08-plutonium-skills-overhaul.md
|
|
612
656
|
- docs/superpowers/plans/2026-04-14-plutonium-testing.md
|
|
613
657
|
- docs/superpowers/plans/2026-04-14-plutonium-testing.md.tasks.json
|
|
@@ -615,9 +659,15 @@ files:
|
|
|
615
659
|
- docs/superpowers/plans/2026-05-06-multi-invite-model-support.md.tasks.json
|
|
616
660
|
- docs/superpowers/plans/2026-05-07-ui-layout-overhaul.md
|
|
617
661
|
- docs/superpowers/plans/2026-05-07-ui-layout-overhaul.md.tasks.json
|
|
662
|
+
- docs/superpowers/plans/2026-05-15-public-pages-overhaul.md
|
|
663
|
+
- docs/superpowers/plans/2026-05-15-public-pages-overhaul.md.tasks.json
|
|
618
664
|
- docs/superpowers/specs/2026-04-08-plutonium-skills-overhaul-design.md
|
|
619
665
|
- docs/superpowers/specs/2026-04-14-plutonium-testing-design.md
|
|
620
666
|
- docs/superpowers/specs/2026-05-07-ui-layout-overhaul-design.md
|
|
667
|
+
- docs/superpowers/specs/2026-05-09-typeahead-endpoint-design.md
|
|
668
|
+
- docs/superpowers/specs/2026-05-12-skill-compaction-design.md
|
|
669
|
+
- docs/superpowers/specs/2026-05-13-docs-restructure-design.md
|
|
670
|
+
- docs/superpowers/specs/2026-05-15-public-pages-overhaul-design.md
|
|
621
671
|
- esbuild.config.js
|
|
622
672
|
- exe/pug
|
|
623
673
|
- gemfiles/rails_7.gemfile
|
|
@@ -912,6 +962,7 @@ files:
|
|
|
912
962
|
- lib/plutonium/definition/base.rb
|
|
913
963
|
- lib/plutonium/definition/config_attr.rb
|
|
914
964
|
- lib/plutonium/definition/defineable_props.rb
|
|
965
|
+
- lib/plutonium/definition/index_views.rb
|
|
915
966
|
- lib/plutonium/definition/inheritable_config_attr.rb
|
|
916
967
|
- lib/plutonium/definition/metadata.rb
|
|
917
968
|
- lib/plutonium/definition/nested_inputs.rb
|
|
@@ -919,7 +970,6 @@ files:
|
|
|
919
970
|
- lib/plutonium/definition/scoping.rb
|
|
920
971
|
- lib/plutonium/definition/search.rb
|
|
921
972
|
- lib/plutonium/definition/sorting.rb
|
|
922
|
-
- lib/plutonium/definition/views.rb
|
|
923
973
|
- lib/plutonium/engine.rb
|
|
924
974
|
- lib/plutonium/engine/validator.rb
|
|
925
975
|
- lib/plutonium/helpers.rb
|
|
@@ -983,6 +1033,7 @@ files:
|
|
|
983
1033
|
- lib/plutonium/resource/controllers/interactive_actions.rb
|
|
984
1034
|
- lib/plutonium/resource/controllers/presentable.rb
|
|
985
1035
|
- lib/plutonium/resource/controllers/queryable.rb
|
|
1036
|
+
- lib/plutonium/resource/controllers/typeahead.rb
|
|
986
1037
|
- lib/plutonium/resource/definition.rb
|
|
987
1038
|
- lib/plutonium/resource/interaction.rb
|
|
988
1039
|
- lib/plutonium/resource/policy.rb
|
|
@@ -1039,6 +1090,7 @@ files:
|
|
|
1039
1090
|
- lib/plutonium/ui/form/components/flatpickr.rb
|
|
1040
1091
|
- lib/plutonium/ui/form/components/hidden_wrapper.rb
|
|
1041
1092
|
- lib/plutonium/ui/form/components/intl_tel_input.rb
|
|
1093
|
+
- lib/plutonium/ui/form/components/json.rb
|
|
1042
1094
|
- lib/plutonium/ui/form/components/key_value_store.rb
|
|
1043
1095
|
- lib/plutonium/ui/form/components/resource_select.rb
|
|
1044
1096
|
- lib/plutonium/ui/form/components/secure_association.rb
|
|
@@ -1046,6 +1098,7 @@ files:
|
|
|
1046
1098
|
- lib/plutonium/ui/form/components/sticky_footer.rb
|
|
1047
1099
|
- lib/plutonium/ui/form/components/uppy.rb
|
|
1048
1100
|
- lib/plutonium/ui/form/concerns/renders_nested_resource_fields.rb
|
|
1101
|
+
- lib/plutonium/ui/form/concerns/typeahead_attributes.rb
|
|
1049
1102
|
- lib/plutonium/ui/form/interaction.rb
|
|
1050
1103
|
- lib/plutonium/ui/form/options/inferred_types.rb
|
|
1051
1104
|
- lib/plutonium/ui/form/query.rb
|
|
@@ -1172,7 +1225,7 @@ metadata:
|
|
|
1172
1225
|
homepage_uri: https://radioactive-labs.github.io/plutonium-core/
|
|
1173
1226
|
source_code_uri: https://github.com/radioactive-labs/plutonium-core
|
|
1174
1227
|
post_install_message: |
|
|
1175
|
-
⚠️ Plutonium 0.
|
|
1228
|
+
⚠️ Plutonium 0.52.0 — breaking change
|
|
1176
1229
|
|
|
1177
1230
|
Entity-scoped URL helpers and path params have been renamed from
|
|
1178
1231
|
`<entity>_scope_*` to `<entity>_scoped_*`.
|