@swisspost/design-system-styles 7.4.1 → 8.1.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/_svg-icon-map.scss +24 -0
- package/components/alert.css +1 -1
- package/components/alert.scss +4 -3
- package/components/floating-label.css +1 -1
- package/components/floating-label.scss +15 -1
- package/components/form-select.css +1 -1
- package/components/form-select.scss +0 -50
- package/components/form-validation.css +1 -1
- package/components/form-validation.scss +0 -81
- package/components/forms.css +1 -1
- package/components/forms.scss +3 -10
- package/components/pagination.css +1 -1
- package/components/pagination.scss +1 -0
- package/components/stepper.css +1 -1
- package/components/stepper.scss +1 -1
- package/index.css +3 -3
- package/intranet.css +3 -3
- package/package.json +11 -11
- package/variables/components/_form-select.scss +0 -8
- package/variables/components/_tables.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swisspost/design-system-styles",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "Design System Styles for the Swiss Post web platform.",
|
|
5
5
|
"author": "Swiss Post <design-system@post.ch>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"linkDirectory": true
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@
|
|
21
|
-
"@
|
|
20
|
+
"@angular/core": "^18.0.0",
|
|
21
|
+
"@ng-bootstrap/ng-bootstrap": "^17.0.0",
|
|
22
22
|
"bootstrap": "~5.3.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependenciesMeta": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"bootstrap": "5.3.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@swisspost/design-system-icons": "
|
|
41
|
-
"@types/node": "20.14.
|
|
40
|
+
"@swisspost/design-system-icons": "8.1.0",
|
|
41
|
+
"@types/node": "20.14.12",
|
|
42
42
|
"autoprefixer": "10.4.19",
|
|
43
43
|
"copyfiles": "2.4.1",
|
|
44
44
|
"glob": "11.0.0",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"jest": "29.7.0",
|
|
50
50
|
"postcss": "8.4.39",
|
|
51
51
|
"postcss-scss": "4.0.9",
|
|
52
|
-
"prettier": "3.3.
|
|
52
|
+
"prettier": "3.3.3",
|
|
53
53
|
"rimraf": "6.0.1",
|
|
54
|
-
"sass": "1.77.
|
|
55
|
-
"stylelint": "16.
|
|
54
|
+
"sass": "1.77.8",
|
|
55
|
+
"stylelint": "16.7.0",
|
|
56
56
|
"stylelint-config-sass-guidelines": "11.1.0",
|
|
57
|
-
"stylelint-prettier": "5.0.
|
|
58
|
-
"stylelint-scss": "6.
|
|
59
|
-
"typescript": "5.
|
|
57
|
+
"stylelint-prettier": "5.0.2",
|
|
58
|
+
"stylelint-scss": "6.4.1",
|
|
59
|
+
"typescript": "5.5.4"
|
|
60
60
|
},
|
|
61
61
|
"sass": {
|
|
62
62
|
"includePaths": [
|
|
@@ -11,11 +11,3 @@ $form-select-indicator: url('#{icons.get-colored-svg-url('2113', $form-select-in
|
|
|
11
11
|
$form-select-indicator-disabled: url('#{icons.get-colored-svg-url('2113', $form-select-disabled-border-color)}') !default;
|
|
12
12
|
$form-select-indicator-hcm-dark: url('#{icons.get-colored-svg-url('2113', color.$white)}') !default;
|
|
13
13
|
$form-select-indicator-hcm-light: url('#{icons.get-colored-svg-url('2113', color.$black)}') !default;
|
|
14
|
-
|
|
15
|
-
$form-select-indicator-success: url('#{icons.get-colored-svg-url('2105', color.$success)}') !default;
|
|
16
|
-
$form-select-indicator-success-hcm-dark: url('#{icons.get-colored-svg-url('2105', color.$white)}') !default;
|
|
17
|
-
$form-select-indicator-success-hcm-light: url('#{icons.get-colored-svg-url('2105', color.$black)}') !default;
|
|
18
|
-
|
|
19
|
-
$form-select-indicator-error: url('#{icons.get-colored-svg-url('2104', color.$error)}') !default;
|
|
20
|
-
$form-select-indicator-error-hcm-dark: url('#{icons.get-colored-svg-url('2104', color.$white)}') !default;
|
|
21
|
-
$form-select-indicator-error-hcm-light: url('#{icons.get-colored-svg-url('2104', color.$black)}') !default;
|
|
@@ -37,7 +37,7 @@ $table-cell-padding: $table-cell-padding-y $table-cell-padding-x !default;
|
|
|
37
37
|
$table-cell-padding-sm: $table-cell-padding-y-sm $table-cell-padding-x-sm !default;
|
|
38
38
|
|
|
39
39
|
// DEPRECATED
|
|
40
|
-
$table-head-color:
|
|
40
|
+
$table-head-color: color.$error !default;
|
|
41
41
|
$table-dark-bg: color.$gray-80 !default;
|
|
42
42
|
$table-dark-accent-bg: rgba(color.$white, 0.05) !default;
|
|
43
43
|
$table-dark-hover-bg: rgba(color.$white, 0.075) !default;
|