@tedi-design-system/core 3.0.0 → 3.0.1
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/package.json +6 -6
- package/tedi-storybook-styles.scss +5 -42
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tedi-design-system/core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"main": "src/index.scss",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prepare": "husky",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"node": ">=18.0.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@commitlint/cli": "^20.
|
|
25
|
-
"@commitlint/config-conventional": "^20.
|
|
24
|
+
"@commitlint/cli": "^20.3.0",
|
|
25
|
+
"@commitlint/config-conventional": "^20.3.0",
|
|
26
26
|
"@semantic-release/changelog": "^6.0.3",
|
|
27
27
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
28
28
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"husky": "^9.0.11",
|
|
32
32
|
"lint-staged": "^16.2.7",
|
|
33
33
|
"node-fetch": "^3.3.2",
|
|
34
|
-
"prettier": "^
|
|
35
|
-
"replace-in-file": "^8.
|
|
36
|
-
"sass": "^1.
|
|
34
|
+
"prettier": "^3.7.4",
|
|
35
|
+
"replace-in-file": "^8.4.0",
|
|
36
|
+
"sass": "^1.97.1",
|
|
37
37
|
"semantic-release": "^24.2.7",
|
|
38
38
|
"stylelint": "^16.26.1",
|
|
39
39
|
"stylelint-config-recess-order": "^7.4.0",
|
|
@@ -1,37 +1,3 @@
|
|
|
1
|
-
.mobile {
|
|
2
|
-
.tedi-text {
|
|
3
|
-
&--h1 {
|
|
4
|
-
font-size: var(--heading-h1-size-mobile);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
&--h2 {
|
|
8
|
-
font-size: var(--heading-h2-size-mobile);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
&--h3 {
|
|
12
|
-
font-size: var(--heading-h3-size-mobile);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&--h4 {
|
|
16
|
-
font-size: var(--heading-h4-size-mobile);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&--h5 {
|
|
20
|
-
font-size: var(--heading-h5-size-mobile);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&--h6 {
|
|
24
|
-
font-size: var(--heading-h6-size-mobile);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.text {
|
|
29
|
-
&-subtitle {
|
|
30
|
-
font-size: var(--heading-subtitle-small-size-mobile);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
1
|
a {
|
|
36
2
|
color: var(--link-primary-default);
|
|
37
3
|
|
|
@@ -141,15 +107,12 @@ a {
|
|
|
141
107
|
height: 100%;
|
|
142
108
|
content: '';
|
|
143
109
|
background-color: var(--tedi-neutral-150);
|
|
144
|
-
background-image:
|
|
145
|
-
|
|
146
|
-
var(--tedi-neutral-300) 25%,
|
|
147
|
-
transparent 25%,
|
|
148
|
-
transparent 75%,
|
|
149
|
-
var(--tedi-neutral-300) 75%
|
|
150
|
-
),
|
|
110
|
+
background-image:
|
|
111
|
+
linear-gradient(45deg, var(--tedi-neutral-300) 25%, transparent 25%, transparent 75%, var(--tedi-neutral-300) 75%),
|
|
151
112
|
linear-gradient(45deg, var(--tedi-neutral-300) 25%, transparent 25%, transparent 75%, var(--tedi-neutral-300) 75%);
|
|
152
|
-
background-position:
|
|
113
|
+
background-position:
|
|
114
|
+
0 0,
|
|
115
|
+
10px 10px;
|
|
153
116
|
background-size: 20px 20px;
|
|
154
117
|
}
|
|
155
118
|
|