pg_rails 7.1.8 → 7.1.9
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/pg_layout/app/views/layouts/pg_layout/base.html.slim +1 -1
- data/pg_rails/lib/version.rb +1 -1
- data/pg_scaffold/lib/generators/pg_rails/system_spec/templates/system_spec.rb +1 -0
- metadata +2 -4
- data/pg_rails/dist/types/pg_associable/app/javascript/asociable_controller.d.ts +0 -17
- data/pg_rails/dist/types/pg_layout/app/javascript/utils/utils.d.ts +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27fbc8e577ed0fed33aa886661ef3a3b0af756d2485e0af017eba42bedaed7c6
|
|
4
|
+
data.tar.gz: e579a2a15e0dd692d102ee83615ec25f1b641ccc4674b14ca704a41ca93fc11a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21ced186a92373d6289c79c364510e65252594fdfd46a514c19cac55f39ce55398323325a5ef2d5ae75d3d462fdca5dafa6bc2d1b5c906538a47faed208a0d83
|
|
7
|
+
data.tar.gz: e632afb4c13e2fb01ed5f641acce2efd681b610a96da8ef95ab5d48fed82c896634bd5a049833fef3669e11006db65b98af1fa4c3e2cd440fba72d954598e442
|
|
@@ -74,7 +74,7 @@ html
|
|
|
74
74
|
= render FlashContainerComponent.new
|
|
75
75
|
/ TODO: si hay varios flashes toast, se superponen. habría que
|
|
76
76
|
hacer un container con position absolute para los toasts
|
|
77
|
-
|
|
77
|
+
= yield(:filtros)
|
|
78
78
|
= content
|
|
79
79
|
div style="width:100%; height: 10em"
|
|
80
80
|
= render partial: 'layouts/footer'
|
data/pg_rails/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pg_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.1.
|
|
4
|
+
version: 7.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martín Rosso
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-08-
|
|
11
|
+
date: 2024-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -858,8 +858,6 @@ files:
|
|
|
858
858
|
- pg_layout/lib/pg_layout.rb
|
|
859
859
|
- pg_layout/lib/pg_layout/engine.rb
|
|
860
860
|
- pg_layout/spec/lib/navbar_spec.rb
|
|
861
|
-
- pg_rails/dist/types/pg_associable/app/javascript/asociable_controller.d.ts
|
|
862
|
-
- pg_rails/dist/types/pg_layout/app/javascript/utils/utils.d.ts
|
|
863
861
|
- pg_rails/js/index.js
|
|
864
862
|
- pg_rails/lib/pg_rails.rb
|
|
865
863
|
- pg_rails/lib/pg_rails/capybara_support.rb
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Controller } from '@hotwired/stimulus'
|
|
2
|
-
export default class extends Controller {
|
|
3
|
-
static outlets: string[]
|
|
4
|
-
lastValue: any
|
|
5
|
-
subWrapper: any
|
|
6
|
-
elemId: any
|
|
7
|
-
input: any
|
|
8
|
-
connect(): void;
|
|
9
|
-
resetResultados(): void;
|
|
10
|
-
setMaxHeight(): void;
|
|
11
|
-
crearItem(): void;
|
|
12
|
-
escribiAlgo(): void;
|
|
13
|
-
buscando(): void;
|
|
14
|
-
selectItem(e: any): void;
|
|
15
|
-
doSearch(force?: boolean): void;
|
|
16
|
-
completarCampo(object: any): void;
|
|
17
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare function round(value: any): number;
|
|
2
|
-
export declare function printCurrency(value: any, simboloMoneda?: string): string;
|
|
3
|
-
export declare function showPercentage(value: any): string;
|
|
4
|
-
export declare function numberWithDots(x: any): any;
|
|
5
|
-
export declare function flashMessage(message: any, flashType?: string, toast?: boolean): void;
|
|
6
|
-
export declare function fadeOut(e: any): void;
|
|
7
|
-
export declare function fadeIn(e: any): void;
|