@tedi-design-system/core 2.3.0 → 2.5.0
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/_base.scss +1 -1
- package/_mixins.scss +25 -4
- package/_print.scss +1 -1
- package/_typography.scss +6 -0
- package/index.css +1 -1
- package/package.json +10 -5
- package/tedi-storybook-styles.scss +8 -8
- package/variables/_base-variables.scss +354 -241
- package/variables/_color-variables-legacy.scss +1113 -0
- package/variables/_color-variables.scss +2 -0
- package/variables/_dimensional-variables.scss +1005 -903
- package/variables/_font-variables-legacy.scss +77 -0
- package/variables/_font-variables.scss +1 -0
- package/variables/themes/default/color-variables__dark.scss +105 -71
- package/variables/themes/default/color-variables__default.scss +105 -71
- package/variables/themes/default/font-variables__default.scss +74 -74
- package/variables/themes/muis/color-variables__muis.scss +640 -0
- package/variables/themes/muis/font-variables__muis.scss +46 -0
- package/variables/themes/rit/color-variables__rit.scss +105 -71
- package/variables/themes/rit/font-variables__rit.scss +44 -88
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tedi-design-system/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"main": "src/index.scss",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prepare": "husky",
|
|
7
7
|
"build": "rm -rf dist && mkdir dist && cp -a src/* dist/ && sass src/index.scss dist/index.css --style=compressed --no-source-map && replace-in-file //fonts//g \"./fonts/\" dist/index.css --isRegex && mkdir dist/fonts && cp -a public/fonts/* dist/fonts/ && cp README.md dist/ && cp package.json dist/",
|
|
8
8
|
"release": "npx semantic-release",
|
|
9
|
-
"lint": "npx stylelint \"src/**/*.scss\" --fix"
|
|
9
|
+
"lint": "npx stylelint \"src/**/*.scss\" --fix",
|
|
10
|
+
"import-variables": "dotenv -e .env -- npx ts-node scripts/variable-exporter.ts"
|
|
10
11
|
},
|
|
11
12
|
"publishConfig": {
|
|
12
13
|
"access": "public"
|
|
@@ -26,17 +27,21 @@
|
|
|
26
27
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
27
28
|
"@semantic-release/git": "^10.0.1",
|
|
28
29
|
"@semantic-release/npm": "^12.0.1",
|
|
30
|
+
"dotenv-cli": "^11.0.0",
|
|
29
31
|
"husky": "^9.0.11",
|
|
30
32
|
"lint-staged": "^16.2.4",
|
|
31
|
-
"
|
|
32
|
-
"typescript": "5.9.3",
|
|
33
|
+
"node-fetch": "^3.3.2",
|
|
33
34
|
"prettier": "^2.8.8",
|
|
34
35
|
"replace-in-file": "^8.3.0",
|
|
35
36
|
"sass": "^1.86.0",
|
|
37
|
+
"semantic-release": "^24.2.7",
|
|
36
38
|
"stylelint": "^16.13.2",
|
|
37
39
|
"stylelint-config-recess-order": "^4.2.0",
|
|
38
40
|
"stylelint-config-standard-scss": "^14.0.0",
|
|
39
|
-
"stylelint-declaration-strict-value": "^1.9.2"
|
|
41
|
+
"stylelint-declaration-strict-value": "^1.9.2",
|
|
42
|
+
"ts-node": "^10.9.2",
|
|
43
|
+
"tslib": "^2.8.1",
|
|
44
|
+
"typescript": "5.9.3"
|
|
40
45
|
},
|
|
41
46
|
"commitlint": {
|
|
42
47
|
"extends": "@commitlint/config-conventional",
|
|
@@ -86,17 +86,17 @@ a {
|
|
|
86
86
|
|
|
87
87
|
.example-list {
|
|
88
88
|
overflow: hidden;
|
|
89
|
-
border: 1px solid var(--neutral-350);
|
|
89
|
+
border: 1px solid var(--tedi-neutral-350);
|
|
90
90
|
border-radius: var(--radius-03);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
.example-text {
|
|
94
94
|
&--primary {
|
|
95
|
-
color: var(--neutral-900);
|
|
95
|
+
color: var(--tedi-neutral-900);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
&--secondary {
|
|
99
|
-
color: var(--neutral-700);
|
|
99
|
+
color: var(--tedi-neutral-700);
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -107,7 +107,7 @@ a {
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.border-bottom {
|
|
110
|
-
border-bottom: 1px solid var(--neutral-350);
|
|
110
|
+
border-bottom: 1px solid var(--tedi-neutral-350);
|
|
111
111
|
|
|
112
112
|
&--3x {
|
|
113
113
|
border-width: 3px;
|
|
@@ -140,15 +140,15 @@ a {
|
|
|
140
140
|
width: 100%;
|
|
141
141
|
height: 100%;
|
|
142
142
|
content: '';
|
|
143
|
-
background-color: var(--neutral-150);
|
|
143
|
+
background-color: var(--tedi-neutral-150);
|
|
144
144
|
background-image: linear-gradient(
|
|
145
145
|
45deg,
|
|
146
|
-
var(--neutral-300) 25%,
|
|
146
|
+
var(--tedi-neutral-300) 25%,
|
|
147
147
|
transparent 25%,
|
|
148
148
|
transparent 75%,
|
|
149
|
-
var(--neutral-300) 75%
|
|
149
|
+
var(--tedi-neutral-300) 75%
|
|
150
150
|
),
|
|
151
|
-
linear-gradient(45deg, var(--neutral-300) 25%, transparent 25%, transparent 75%, var(--neutral-300) 75%);
|
|
151
|
+
linear-gradient(45deg, var(--tedi-neutral-300) 25%, transparent 25%, transparent 75%, var(--tedi-neutral-300) 75%);
|
|
152
152
|
background-position: 0 0, 10px 10px;
|
|
153
153
|
background-size: 20px 20px;
|
|
154
154
|
}
|