pages_core 3.12.5 → 3.12.6
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/VERSION +1 -1
- data/app/assets/builds/fonts/2a3059ad.ttf +0 -0
- data/app/assets/builds/fonts/47262711.woff2 +0 -0
- data/app/assets/builds/fonts/500ddeb0.woff2 +0 -0
- data/app/assets/builds/fonts/81221036.ttf +0 -0
- data/app/assets/builds/pages_core/admin-dist.js +1 -1
- data/app/assets/builds/pages_core/admin-dist.js.map +4 -4
- data/app/assets/builds/pages_core/admin.css +9 -10
- data/app/javascript/controllers/EditPageController.ts +1 -1
- data/app/javascript/controllers/LoginController.ts +1 -1
- data/app/javascript/controllers/MainController.ts +2 -2
- metadata +5 -5
- data/app/assets/builds/fonts/661557ef.ttf +0 -0
- data/app/assets/builds/fonts/a18fc2d2.woff2 +0 -0
- data/app/assets/builds/fonts/b2c7b78f.woff2 +0 -0
- data/app/assets/builds/fonts/ceddc204.ttf +0 -0
|
@@ -543,9 +543,9 @@ template {
|
|
|
543
543
|
margin-left: -7px; } }
|
|
544
544
|
|
|
545
545
|
/*!
|
|
546
|
-
* Font Awesome Free 6.2
|
|
546
|
+
* Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
|
|
547
547
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
548
|
-
* Copyright
|
|
548
|
+
* Copyright 2023 Fonticons, Inc.
|
|
549
549
|
*/
|
|
550
550
|
|
|
551
551
|
.fa {
|
|
@@ -6814,9 +6814,9 @@ readers do not read off random characters that represent icons */
|
|
|
6814
6814
|
border-width: 0; }
|
|
6815
6815
|
|
|
6816
6816
|
/*!
|
|
6817
|
-
* Font Awesome Free 6.2
|
|
6817
|
+
* Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
|
|
6818
6818
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
6819
|
-
* Copyright
|
|
6819
|
+
* Copyright 2023 Fonticons, Inc.
|
|
6820
6820
|
*/
|
|
6821
6821
|
|
|
6822
6822
|
:root, :host {
|
|
@@ -6827,16 +6827,16 @@ readers do not read off random characters that represent icons */
|
|
|
6827
6827
|
font-style: normal;
|
|
6828
6828
|
font-weight: 900;
|
|
6829
6829
|
font-display: block;
|
|
6830
|
-
src: url("../fonts/
|
|
6830
|
+
src: url("../fonts/47262711.woff2") format("woff2"), url("../fonts/2a3059ad.ttf") format("truetype"); }
|
|
6831
6831
|
|
|
6832
6832
|
.fas,
|
|
6833
6833
|
.fa-solid {
|
|
6834
6834
|
font-weight: 900; }
|
|
6835
6835
|
|
|
6836
6836
|
/*!
|
|
6837
|
-
* Font Awesome Free 6.2
|
|
6837
|
+
* Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
|
|
6838
6838
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
6839
|
-
* Copyright
|
|
6839
|
+
* Copyright 2023 Fonticons, Inc.
|
|
6840
6840
|
*/
|
|
6841
6841
|
|
|
6842
6842
|
:root, :host {
|
|
@@ -6848,7 +6848,7 @@ readers do not read off random characters that represent icons */
|
|
|
6848
6848
|
font-style: normal;
|
|
6849
6849
|
font-weight: 400;
|
|
6850
6850
|
font-display: block;
|
|
6851
|
-
src: url("../fonts/
|
|
6851
|
+
src: url("../fonts/500ddeb0.woff2") format("woff2"), url("../fonts/81221036.ttf") format("truetype"); }
|
|
6852
6852
|
|
|
6853
6853
|
.far,
|
|
6854
6854
|
.fa-regular {
|
|
@@ -7803,8 +7803,7 @@ main .page-description h3 {
|
|
|
7803
7803
|
-moz-user-select: none;
|
|
7804
7804
|
user-select: none;
|
|
7805
7805
|
cursor: pointer;
|
|
7806
|
-
transition: border-radius 200ms, margin 200ms, width 200ms, height 200ms,
|
|
7807
|
-
border-color 200ms ease-out;
|
|
7806
|
+
transition: border-radius 200ms, margin 200ms, width 200ms, height 200ms, border-color 200ms ease-out;
|
|
7808
7807
|
}
|
|
7809
7808
|
|
|
7810
7809
|
.image-editor .focal-editor .focal-point:after {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Controller } from "@hotwired/stimulus";
|
|
2
2
|
|
|
3
3
|
export default class MainController extends Controller {
|
|
4
|
-
readonly linkTargets: HTMLLinkElement[];
|
|
5
|
-
readonly tabTargets: HTMLDivElement[];
|
|
4
|
+
declare readonly linkTargets: HTMLLinkElement[];
|
|
5
|
+
declare readonly tabTargets: HTMLDivElement[];
|
|
6
6
|
|
|
7
7
|
static get targets() {
|
|
8
8
|
return ["tab", "link"];
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pages_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.12.
|
|
4
|
+
version: 3.12.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Inge Jørgensen
|
|
@@ -384,10 +384,10 @@ files:
|
|
|
384
384
|
- README.md
|
|
385
385
|
- Rakefile
|
|
386
386
|
- VERSION
|
|
387
|
-
- app/assets/builds/fonts/
|
|
388
|
-
- app/assets/builds/fonts/
|
|
389
|
-
- app/assets/builds/fonts/
|
|
390
|
-
- app/assets/builds/fonts/
|
|
387
|
+
- app/assets/builds/fonts/2a3059ad.ttf
|
|
388
|
+
- app/assets/builds/fonts/47262711.woff2
|
|
389
|
+
- app/assets/builds/fonts/500ddeb0.woff2
|
|
390
|
+
- app/assets/builds/fonts/81221036.ttf
|
|
391
391
|
- app/assets/builds/pages_core/admin-dist.js
|
|
392
392
|
- app/assets/builds/pages_core/admin-dist.js.map
|
|
393
393
|
- app/assets/builds/pages_core/admin.css
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|