@moser-inc/moser-labs-themes 1.4.0 → 1.4.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/base.js +7 -7
  3. package/package.json +15 -15
package/README.md CHANGED
@@ -15,7 +15,7 @@ Import the theme you want to use and pass it to the `preset` option of your Prim
15
15
  Enable css layering to avoid conflicts with utility classes.
16
16
 
17
17
  ```ts
18
- import Labs from "@moser-inc/moser-labs-themes/labs";
18
+ import Labs from '@moser-inc/moser-labs-themes/labs';
19
19
 
20
20
  const theme = {
21
21
  preset: Labs,
package/dist/base.js CHANGED
@@ -20,17 +20,17 @@ const Base = (0, src_exports.definePreset)(Lara, {
20
20
  light: {
21
21
  surface,
22
22
  formField: {
23
- background: "{surface.100}",
23
+ background: "{surface.0}",
24
24
  disabledBackground: "{surface.200}",
25
25
  filledBackground: "{surface.100}",
26
26
  filledHoverBackground: "{surface.100}",
27
27
  filledFocusBackground: "{surface.100}",
28
- borderColor: "{surface.200}"
28
+ borderColor: "{surface.300}"
29
29
  },
30
30
  content: {
31
31
  background: "{surface.0}",
32
32
  hoverBackground: "{surface.100}",
33
- borderColor: "{surface.200}"
33
+ borderColor: "{surface.300}"
34
34
  },
35
35
  overlay: {
36
36
  select: {
@@ -56,10 +56,10 @@ const Base = (0, src_exports.definePreset)(Lara, {
56
56
  surface,
57
57
  formField: {
58
58
  background: "{surface.900}",
59
- disabledBackground: "{surface.800}",
60
- filledBackground: "{surface.700}",
61
- filledHoverBackground: "{surface.700}",
62
- filledFocusBackground: "{surface.900}",
59
+ disabledBackground: "{surface.700}",
60
+ filledBackground: "{surface.800}",
61
+ filledHoverBackground: "{surface.800}",
62
+ filledFocusBackground: "{surface.800}",
63
63
  borderColor: "{surface.700}"
64
64
  },
65
65
  content: {
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@moser-inc/moser-labs-themes",
3
+ "version": "1.4.1",
3
4
  "description": "PrimeUIX themes for Moser Labs applications.",
4
- "type": "module",
5
- "version": "1.4.0",
5
+ "license": "UNLICENSED",
6
+ "author": "Moser Consulting",
6
7
  "repository": {
7
8
  "type": "git",
8
9
  "url": "git+https://github.com/moser-inc/moser-labs.git",
9
10
  "directory": "packages/themes"
10
11
  },
11
- "author": "Moser Consulting",
12
- "license": "UNLICENSED",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "type": "module",
13
16
  "exports": {
14
17
  ".": "./dist/index.js",
15
18
  "./aero": "./dist/aero.js",
@@ -37,9 +40,6 @@
37
40
  "./zomp": "./dist/zomp.js",
38
41
  "./package.json": "./package.json"
39
42
  },
40
- "files": [
41
- "dist"
42
- ],
43
43
  "publishConfig": {
44
44
  "access": "public",
45
45
  "provenance": false,
@@ -55,14 +55,6 @@
55
55
  "test:publish": "npm run test:attw && npm run test:publint",
56
56
  "type-check": "tsc --noEmit"
57
57
  },
58
- "peerDependencies": {
59
- "@primeuix/themes": ">=2.0.3"
60
- },
61
- "peerDependenciesMeta": {
62
- "@primeuix/themes": {
63
- "optional": true
64
- }
65
- },
66
58
  "dependencies": {
67
59
  "@primeuix/themes": "^2.0.3"
68
60
  },
@@ -74,5 +66,13 @@
74
66
  "prettier": "^3.8.1",
75
67
  "tsdown": "^0.21.1",
76
68
  "typescript": "~5.9.3"
69
+ },
70
+ "peerDependencies": {
71
+ "@primeuix/themes": ">=2.0.3"
72
+ },
73
+ "peerDependenciesMeta": {
74
+ "@primeuix/themes": {
75
+ "optional": true
76
+ }
77
77
  }
78
78
  }