@mfp-design-system/input 0.2.0 → 1.0.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/dist/input.js CHANGED
@@ -45,7 +45,7 @@ let MfpInput = class MfpInput extends LitElement {
45
45
  }
46
46
 
47
47
  .control:focus-within {
48
- border-color: var(--color-status-info-solid, #2563eb);
48
+ border-color: var(--color-brand-primary, #2563eb);
49
49
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
50
50
  }
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mfp-design-system/input",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "description": "Input web component for the mfp-design-system, built with Lit.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  "lit": "^3.2.1"
26
26
  },
27
27
  "peerDependencies": {
28
- "@mfp-design-system/tokens": "^0.2.0"
28
+ "@mfp-design-system/tokens": "^0.3.0"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "@mfp-design-system/tokens": {
@@ -35,7 +35,7 @@
35
35
  "devDependencies": {
36
36
  "rimraf": "^6.0.1",
37
37
  "typescript": "^5.6.3",
38
- "@mfp-design-system/tokens": "0.2.0"
38
+ "@mfp-design-system/tokens": "0.3.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
package/src/input.ts CHANGED
@@ -45,7 +45,7 @@ export class MfpInput extends LitElement {
45
45
  }
46
46
 
47
47
  .control:focus-within {
48
- border-color: var(--color-status-info-solid, #2563eb);
48
+ border-color: var(--color-brand-primary, #2563eb);
49
49
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
50
50
  }
51
51