alchemy-media 0.5.2 → 0.6.2
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.
- package/CHANGELOG.md +11 -4
- package/assets/fonts/fontawesome6/fa-brands-400.ttf +0 -0
- package/assets/fonts/fontawesome6/fa-brands-400.woff2 +0 -0
- package/assets/fonts/fontawesome6/fa-regular-400.ttf +0 -0
- package/assets/fonts/fontawesome6/fa-regular-400.woff2 +0 -0
- package/assets/fonts/fontawesome6/fa-solid-900.ttf +0 -0
- package/assets/fonts/fontawesome6/fa-solid-900.woff2 +0 -0
- package/assets/fonts/fontawesome6/fa-v4compatibility.ttf +0 -0
- package/assets/fonts/fontawesome6/fa-v4compatibility.woff2 +0 -0
- package/assets/stylesheets/alchemy_icons.scss +68 -0
- package/assets/stylesheets/alchemy_svg.scss +9 -0
- package/assets/stylesheets/chimera/mediafield.less +1 -2
- package/assets/stylesheets/element/alchemy_file.scss +95 -0
- package/assets/stylesheets/fontawesome6/_animated.scss +153 -0
- package/assets/stylesheets/fontawesome6/_bordered-pulled.scss +20 -0
- package/assets/stylesheets/fontawesome6/_core.scss +33 -0
- package/assets/stylesheets/fontawesome6/_fixed-width.scss +7 -0
- package/assets/stylesheets/fontawesome6/_functions.scss +57 -0
- package/assets/stylesheets/fontawesome6/_icons.scss +9 -0
- package/assets/stylesheets/fontawesome6/_list.scss +18 -0
- package/assets/stylesheets/fontawesome6/_mixins.scss +73 -0
- package/assets/stylesheets/fontawesome6/_rotated-flipped.scss +31 -0
- package/assets/stylesheets/fontawesome6/_screen-reader.scss +14 -0
- package/assets/stylesheets/fontawesome6/_shims.scss +2027 -0
- package/assets/stylesheets/fontawesome6/_sizing.scss +16 -0
- package/assets/stylesheets/fontawesome6/_stacked.scss +32 -0
- package/assets/stylesheets/fontawesome6/_variables.scss +4885 -0
- package/assets/stylesheets/fontawesome6/brands.scss +30 -0
- package/assets/stylesheets/fontawesome6/fontawesome.scss +21 -0
- package/assets/stylesheets/fontawesome6/regular.scss +26 -0
- package/assets/stylesheets/fontawesome6/solid.scss +26 -0
- package/assets/stylesheets/fontawesome6/v4-shims.scss +11 -0
- package/bootstrap.js +1 -0
- package/controller/media_files_controller.js +20 -0
- package/controller/media_gallery_chimera_controller.js +1 -0
- package/element/al_file.js +275 -0
- package/element/al_ico_element.js +17 -0
- package/element/al_svg.js +81 -0
- package/helper/media_helper.js +56 -10
- package/helper/widgets/image_widget.js +46 -0
- package/{lib/field_type → helper_field}/file_field_type.js +5 -3
- package/lib/media_types/image_media_type.js +34 -9
- package/model/media_file_model.js +9 -3
- package/model/media_raw_model.js +529 -529
- package/package.json +6 -6
- package/view/element/al_file.hwk +18 -0
- package/view/form/inputs/edit/file.hwk +8 -0
- package/assets/scripts/chimera/mediafield.js +0 -451
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// sizing icons
|
|
2
|
+
// -------------------------
|
|
3
|
+
|
|
4
|
+
// literal magnification scale
|
|
5
|
+
@for $i from 1 through 10 {
|
|
6
|
+
.#{$fa-css-prefix}-#{$i}x {
|
|
7
|
+
font-size: $i * 1em;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// step-based scale (with alignment)
|
|
12
|
+
@each $size, $value in $fa-sizes {
|
|
13
|
+
.#{$fa-css-prefix}-#{$size} {
|
|
14
|
+
@include fa-size($value);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// stacking icons
|
|
2
|
+
// -------------------------
|
|
3
|
+
|
|
4
|
+
.#{$fa-css-prefix}-stack {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
height: 2em;
|
|
7
|
+
line-height: 2em;
|
|
8
|
+
position: relative;
|
|
9
|
+
vertical-align: $fa-stack-vertical-align;
|
|
10
|
+
width: $fa-stack-width;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.#{$fa-css-prefix}-stack-1x,
|
|
14
|
+
.#{$fa-css-prefix}-stack-2x {
|
|
15
|
+
left: 0;
|
|
16
|
+
position: absolute;
|
|
17
|
+
text-align: center;
|
|
18
|
+
width: 100%;
|
|
19
|
+
z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.#{$fa-css-prefix}-stack-1x {
|
|
23
|
+
line-height: inherit;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.#{$fa-css-prefix}-stack-2x {
|
|
27
|
+
font-size: 2em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.#{$fa-css-prefix}-inverse {
|
|
31
|
+
color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
|
|
32
|
+
}
|