@total_onion/onion-library 2.0.167 → 2.0.179
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/.github/workflows/npm-publish.yml +14 -10
- package/components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.scss +1 -1
- package/components/block-post-info-v3/group_6866429531436.json +2673 -821
- package/components/component-nav-menu-v3/nav-menu-v3.twig +10 -10
- package/components/fields-post-info-v3/group_6867bbe167dd2.json +1087 -1104
- package/onion-utils.mjs +700 -0
- package/package.json +1 -1
|
@@ -8,27 +8,31 @@ on:
|
|
|
8
8
|
types: [created]
|
|
9
9
|
branches:
|
|
10
10
|
- master
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write # Required for OIDC
|
|
13
|
+
contents: read
|
|
11
14
|
|
|
12
15
|
jobs:
|
|
13
16
|
build:
|
|
14
17
|
runs-on: ubuntu-latest
|
|
15
18
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
17
|
-
- uses: actions/setup-node@
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
- uses: actions/setup-node@v4
|
|
18
21
|
with:
|
|
19
|
-
node-version:
|
|
22
|
+
node-version: 24
|
|
23
|
+
# Ensure npm 11.5.1 or later is installed
|
|
24
|
+
- name: Update npm
|
|
25
|
+
run: npm install -g npm@latest
|
|
20
26
|
- run: npm ci
|
|
21
27
|
|
|
22
|
-
|
|
28
|
+
|
|
29
|
+
publish:
|
|
23
30
|
needs: build
|
|
24
31
|
runs-on: ubuntu-latest
|
|
25
32
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
27
|
-
- uses: actions/setup-node@
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
- uses: actions/setup-node@v4
|
|
28
35
|
with:
|
|
29
|
-
node-version:
|
|
36
|
+
node-version: 24
|
|
30
37
|
registry-url: https://registry.npmjs.org/
|
|
31
|
-
- run: npm ci
|
|
32
38
|
- run: npm publish
|
|
33
|
-
env:
|
|
34
|
-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../fields-core-functions-v3/core-functions-v3';
|
|
3
3
|
@use '../component-element-positioning-v3/element-positioning-v3';
|
|
4
4
|
@use '../../breakpoints';
|
|
5
|
-
@use '
|
|
5
|
+
@use 'NodeModules/swiper/swiper-bundle.min.css';
|
|
6
6
|
|
|
7
7
|
.carousel-multi-layout-v3 {
|
|
8
8
|
display: grid;
|