@seed-design/css 1.1.23 → 1.1.24

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/css",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
@@ -7,7 +7,7 @@
7
7
  vertical-align: top;
8
8
  width: 100%;
9
9
  height: 100%;
10
- background-color: var(--seed-color-palette-gray-400)
10
+ background-color: var(--seed-color-palette-gray-500)
11
11
  }
12
12
  .seed-identity-placeholder__image {
13
13
  display: block;
@@ -15,5 +15,5 @@
15
15
  height: 100%;
16
16
  object-fit: cover;
17
17
  overflow: hidden;
18
- fill: #f7f8fa
18
+ fill: var(--seed-color-palette-static-white-alpha-800)
19
19
  }
@@ -2,7 +2,7 @@ declare interface IdentityPlaceholderVariant {
2
2
  /**
3
3
  * @default "person"
4
4
  */
5
- identity: "person";
5
+ identity: "person" | "business";
6
6
  }
7
7
 
8
8
  declare type IdentityPlaceholderVariantMap = {
@@ -20,7 +20,8 @@ const compoundVariants = [];
20
20
 
21
21
  export const identityPlaceholderVariantMap = {
22
22
  "identity": [
23
- "person"
23
+ "person",
24
+ "business"
24
25
  ]
25
26
  };
26
27
 
@@ -2,10 +2,10 @@ export declare const vars: {
2
2
  "base": {
3
3
  "enabled": {
4
4
  "root": {
5
- "color": "var(--seed-color-palette-gray-400)"
5
+ "color": "var(--seed-color-palette-gray-500)"
6
6
  },
7
7
  "image": {
8
- "color": "#f7f8fa"
8
+ "color": "var(--seed-color-palette-static-white-alpha-800)"
9
9
  }
10
10
  }
11
11
  }
@@ -2,10 +2,10 @@ export const vars = {
2
2
  "base": {
3
3
  "enabled": {
4
4
  "root": {
5
- "color": "var(--seed-color-palette-gray-400)"
5
+ "color": "var(--seed-color-palette-gray-500)"
6
6
  },
7
7
  "image": {
8
- "color": "#f7f8fa"
8
+ "color": "var(--seed-color-palette-static-white-alpha-800)"
9
9
  }
10
10
  }
11
11
  }