@mfp-design-system/select 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/select.js CHANGED
@@ -58,7 +58,7 @@ let MfpSelect = class MfpSelect extends LitElement {
58
58
  }
59
59
 
60
60
  .control:focus-within {
61
- border-color: var(--color-status-info-solid, #2563eb);
61
+ border-color: var(--color-brand-primary, #2563eb);
62
62
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
63
63
  }
64
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mfp-design-system/select",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "description": "Select dropdown web component for the mfp-design-system, built with Lit.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  "lit": "^3.2.1"
25
25
  },
26
26
  "peerDependencies": {
27
- "@mfp-design-system/tokens": "^0.2.0"
27
+ "@mfp-design-system/tokens": "^0.3.0"
28
28
  },
29
29
  "peerDependenciesMeta": {
30
30
  "@mfp-design-system/tokens": {
@@ -34,7 +34,7 @@
34
34
  "devDependencies": {
35
35
  "rimraf": "^6.0.1",
36
36
  "typescript": "^5.6.3",
37
- "@mfp-design-system/tokens": "0.2.0"
37
+ "@mfp-design-system/tokens": "0.3.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
package/src/select.ts CHANGED
@@ -57,7 +57,7 @@ export class MfpSelect extends LitElement {
57
57
  }
58
58
 
59
59
  .control:focus-within {
60
- border-color: var(--color-status-info-solid, #2563eb);
60
+ border-color: var(--color-brand-primary, #2563eb);
61
61
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
62
62
  }
63
63