@simple-reporting/base 1.0.25 → 1.0.26
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 +5 -4
- package/dev/package.json +1 -1
- package/livingdocs/010.Titles/010.title-h1/scss/word.scss +2 -0
- package/livingdocs/040.Media/010.table/scss/general.scss +16 -18
- package/livingdocs/080.CV/020.cv-time-span/scss/word.scss +5 -0
- package/package.json +4 -1
- package/scripts/build.js +4 -1
- package/livingdocs/020.Text/050.quote/properties.json +0 -7
|
@@ -7,18 +7,19 @@ on:
|
|
|
7
7
|
release:
|
|
8
8
|
types: [created]
|
|
9
9
|
|
|
10
|
+
permissions:
|
|
11
|
+
id-token: write # Required for OIDC
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
10
14
|
jobs:
|
|
11
|
-
|
|
12
15
|
publish-npm:
|
|
13
16
|
runs-on: ubuntu-latest
|
|
14
17
|
steps:
|
|
15
18
|
- uses: actions/checkout@v4
|
|
16
19
|
- uses: actions/setup-node@v4
|
|
17
20
|
with:
|
|
18
|
-
node-version:
|
|
21
|
+
node-version: 24
|
|
19
22
|
registry-url: https://registry.npmjs.org/
|
|
20
23
|
- run: npm ci
|
|
21
24
|
- run: node scripts/renamePackage.js
|
|
22
25
|
- run: node scripts/doPublish.js -v ${{ github.ref_name }}
|
|
23
|
-
env:
|
|
24
|
-
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
|
package/dev/package.json
CHANGED
|
@@ -91,7 +91,7 @@ td {
|
|
|
91
91
|
/*
|
|
92
92
|
Borders
|
|
93
93
|
*/
|
|
94
|
-
&[class*=
|
|
94
|
+
&[class*='head'] {
|
|
95
95
|
border-bottom: (
|
|
96
96
|
srl.system-root-style(srl-table-border-bold-width)
|
|
97
97
|
map.get($table-border-bold, style)
|
|
@@ -99,15 +99,15 @@ td {
|
|
|
99
99
|
);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
&[class*=
|
|
102
|
+
&[class*='linetop'] {
|
|
103
103
|
border-top: (
|
|
104
|
-
srl-table-border-regular-width
|
|
104
|
+
srl.system-root-style(srl-table-border-regular-width)
|
|
105
105
|
map.get($table-border-regular, style)
|
|
106
106
|
srl.colors-get(map.get($table-border-regular, color))
|
|
107
107
|
);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
&[class*=
|
|
110
|
+
&[class*='blinetop'] {
|
|
111
111
|
border-top: (
|
|
112
112
|
srl.system-root-style(srl-table-border-bold-width)
|
|
113
113
|
map.get($table-border-bold, style)
|
|
@@ -115,21 +115,19 @@ td {
|
|
|
115
115
|
);
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
&[class*=
|
|
118
|
+
&[class*='nolinetop'] {
|
|
119
119
|
border-top: (
|
|
120
120
|
srl.system-root-style(srl-table-border-regular-width)
|
|
121
121
|
map.get($table-border-regular, style)
|
|
122
122
|
transparent
|
|
123
123
|
);
|
|
124
124
|
|
|
125
|
-
&[class*=
|
|
126
|
-
border-top-width: (
|
|
127
|
-
srl.system-root-style(srl-table-border-regular-width)
|
|
128
|
-
);
|
|
125
|
+
&[class*='head'] {
|
|
126
|
+
border-top-width: srl.system-root-style(srl-table-border-regular-width)
|
|
129
127
|
}
|
|
130
128
|
}
|
|
131
129
|
|
|
132
|
-
&[class*=
|
|
130
|
+
&[class*='linebottom'] {
|
|
133
131
|
border-bottom: (
|
|
134
132
|
srl.system-root-style(srl-table-border-regular-width)
|
|
135
133
|
map.get($table-border-regular, style)
|
|
@@ -137,7 +135,7 @@ td {
|
|
|
137
135
|
);
|
|
138
136
|
}
|
|
139
137
|
|
|
140
|
-
&[class*=
|
|
138
|
+
&[class*='blinebottom'] {
|
|
141
139
|
border-bottom: (
|
|
142
140
|
srl.system-root-style(srl-table-border-bold-width)
|
|
143
141
|
map.get($table-border-bold, style)
|
|
@@ -145,7 +143,7 @@ td {
|
|
|
145
143
|
);
|
|
146
144
|
}
|
|
147
145
|
|
|
148
|
-
&[class*=
|
|
146
|
+
&[class*='nolinebottom'] {
|
|
149
147
|
border-bottom: (
|
|
150
148
|
srl.system-root-style(srl-table-border-regular-width)
|
|
151
149
|
map.get($table-border-regular, style)
|
|
@@ -157,7 +155,7 @@ td {
|
|
|
157
155
|
}
|
|
158
156
|
}
|
|
159
157
|
|
|
160
|
-
&[class*=
|
|
158
|
+
&[class*='lineleft'] {
|
|
161
159
|
border-left: (
|
|
162
160
|
srl.system-root-style(srl-table-border-regular-width)
|
|
163
161
|
map.get($table-border-regular, style)
|
|
@@ -165,7 +163,7 @@ td {
|
|
|
165
163
|
);
|
|
166
164
|
}
|
|
167
165
|
|
|
168
|
-
&[class*=
|
|
166
|
+
&[class*='blineleft'] {
|
|
169
167
|
border-left: (
|
|
170
168
|
srl.system-root-style(srl-table-border-bold-width)
|
|
171
169
|
map.get($table-border-bold, style)
|
|
@@ -173,7 +171,7 @@ td {
|
|
|
173
171
|
);
|
|
174
172
|
}
|
|
175
173
|
|
|
176
|
-
&[class*=
|
|
174
|
+
&[class*='nolineleft'] {
|
|
177
175
|
border-left: (
|
|
178
176
|
srl.system-root-style(srl-table-border-regular-width)
|
|
179
177
|
map.get($table-border-regular, style)
|
|
@@ -181,7 +179,7 @@ td {
|
|
|
181
179
|
);
|
|
182
180
|
}
|
|
183
181
|
|
|
184
|
-
&[class*=
|
|
182
|
+
&[class*='lineright'] {
|
|
185
183
|
border-right: (
|
|
186
184
|
srl.system-root-style(srl-table-border-regular-width)
|
|
187
185
|
map.get($table-border-regular, style)
|
|
@@ -189,7 +187,7 @@ td {
|
|
|
189
187
|
);
|
|
190
188
|
}
|
|
191
189
|
|
|
192
|
-
&[class*=
|
|
190
|
+
&[class*='blineright'] {
|
|
193
191
|
border-right: (
|
|
194
192
|
srl.system-root-style(srl-table-border-bold-width)
|
|
195
193
|
map.get($table-border-bold, style)
|
|
@@ -197,7 +195,7 @@ td {
|
|
|
197
195
|
);
|
|
198
196
|
}
|
|
199
197
|
|
|
200
|
-
&[class*=
|
|
198
|
+
&[class*='nolineright'] {
|
|
201
199
|
border-right: (
|
|
202
200
|
srl.system-root-style(srl-table-border-regular-width)
|
|
203
201
|
map.get($table-border-regular, style)
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simple-reporting/base",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "Manage srl templates, build and publish",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mmssolutionsio/simple-reporting-library"
|
|
7
|
+
},
|
|
5
8
|
"bin": {
|
|
6
9
|
"srl": "cli.js"
|
|
7
10
|
},
|
package/scripts/build.js
CHANGED
|
@@ -798,13 +798,16 @@ async function build(version, options = {}) {
|
|
|
798
798
|
|
|
799
799
|
const livingdocsJson = await readLivingDocsJson();
|
|
800
800
|
new LivingdocsDesignValidator(livingdocsJson).IsDesignValid();
|
|
801
|
-
await zipLdd();
|
|
802
801
|
}
|
|
803
802
|
|
|
804
803
|
if (has('pdf') && options.customer) {
|
|
805
804
|
await buildPdfCustomer(options.customer);
|
|
806
805
|
}
|
|
807
806
|
|
|
807
|
+
if (has('ldd')) {
|
|
808
|
+
await zipLdd();
|
|
809
|
+
}
|
|
810
|
+
|
|
808
811
|
if (has('app')) {
|
|
809
812
|
await zipApp();
|
|
810
813
|
}
|