@design-factory/design-factory 19.0.0 → 19.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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@design-factory/design-factory",
3
3
  "description": "Amadeus design system",
4
4
  "license": "BSD-3-Clause",
5
- "version": "19.0.0",
5
+ "version": "19.0.1",
6
6
  "dependencies": {
7
7
  "tslib": "^2.0.0"
8
8
  },
@@ -50,6 +50,8 @@
50
50
  },
51
51
  "./design-factory.scss": "./design-factory.scss",
52
52
  "./design-factory.css": "./design-factory.css",
53
+ "./design-factory-initial-branding.scss": "./design-factory-initial-branding.scss",
54
+ "./design-factory-initial-branding.css": "./design-factory-initial-branding.css",
53
55
  "./themes/initial-branding": {
54
56
  "sass": "./design-factory-initial-branding.scss",
55
57
  "style": "./design-factory-initial-branding.css"
@@ -12,6 +12,10 @@ form {
12
12
  --#{$prefix}form-switch-sm-height: #{math.div($df-form-switch-sm-width, 2)};
13
13
  --#{$prefix}form-switch-lg-width: #{$df-form-switch-lg-width};
14
14
  --#{$prefix}form-switch-lg-height: #{math.div($df-form-switch-lg-width, 2)};
15
+
16
+ .form-check-input {
17
+ margin-top: 0;
18
+ }
15
19
  }
16
20
 
17
21
  .form-inline {
@@ -167,6 +171,6 @@ form {
167
171
  }
168
172
  }
169
173
 
170
- .ng-invalid {
174
+ .ng-invalid.ng-touched {
171
175
  @extend .is-invalid;
172
176
  }
@@ -138,6 +138,7 @@
138
138
  .df-form-switch-container {
139
139
  display: flex;
140
140
  align-items: center;
141
+ margin-top: #{($line-height-base - $form-check-input-width) * 0.5};
141
142
  }
142
143
  }
143
144
  }