@total_onion/onion-library 2.0.96 → 2.0.98

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,5 +1,7 @@
1
1
  @use '../component-social-networks-v3/social-networks-v3';
2
2
 
3
3
  .social-networks-v3 {
4
+ display: flex;
5
+ gap: 10px;
4
6
  @include social-networks-v3.socialNetworksV3();
5
7
  }
@@ -13,7 +13,7 @@
13
13
  {{sectionStyles}}
14
14
  }
15
15
  </style>
16
- <section {{block.anchor ? "id=" ~ block.anchor : ''}} class="{{blockClassName}} {{block.className}} {{classNameEntryPoint}} lazy-fade" {{dataAttributeEntryPoint}} data-blockid="{{block.id}}" style="{{sectionStyles}}" data-assetkey="{{blockClassName}}">
16
+ <section {{block.anchor ? "id=" ~ block.anchor : ''}} class="{{blockClassName}} {{block.section_class}} {{classNameEntryPoint}} {{block.id}} lazy-fade" {{dataAttributeEntryPoint}} data-blockid="{{block.id}}" data-assetkey="{{blockClassName}}">
17
17
  {% if fields.wysiwyg_editor is not empty %}
18
18
  {{ include('components/wysiwyg-editor-v3.twig', { fields, block, blockClassName}, with_context = false, ignore_missing = true) }}
19
19
  {% endif %}
@@ -137,6 +137,18 @@
137
137
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
138
138
  }
139
139
  }
140
+ @keyframes reveal-up-and-slide {
141
+ from {
142
+ opacity: 1;
143
+ transition: -100%;
144
+ clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
145
+ }
146
+ 100% {
147
+ opacity: 1;
148
+ transition: 0%;
149
+ clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
150
+ }
151
+ }
140
152
 
141
153
  &.trigger-animation {
142
154
  animation: var(--animation-name) var(--animation-duration)
@@ -1,4 +1,3 @@
1
- // LIBRARY FILE - Do not modify/override here as your changes will be lost when the package is updated.
2
1
  @use '../fields-core-functions-v3/core-functions-v3';
3
2
  @use '../fields-core-mixins-v3/core-mixins-v3';
4
3
  @use '../../breakpoints';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@total_onion/onion-library",
3
- "version": "2.0.96",
3
+ "version": "2.0.98",
4
4
  "description": "Component library",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +0,0 @@
1
- @mixin additionalStyles() {
2
- }