@startupjs-ui/card 0.1.5 → 0.1.11

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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.1.11](https://github.com/startupjs/startupjs-ui/compare/v0.1.10...v0.1.11) (2026-01-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** change shadow() stylus helper to have a constant black color for different levels ([5a49a24](https://github.com/startupjs/startupjs-ui/commit/5a49a24fcb52b147467fb528f4f432470f640794))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.1.10](https://github.com/startupjs/startupjs-ui/compare/v0.1.9...v0.1.10) (2026-01-18)
18
+
19
+ **Note:** Version bump only for package @startupjs-ui/card
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.1.5](https://github.com/startupjs/startupjs-ui/compare/v0.1.4...v0.1.5) (2025-12-29)
7
26
 
8
27
  **Note:** Version bump only for package @startupjs-ui/card
package/README.mdx CHANGED
@@ -54,6 +54,12 @@ Card `level` prop determines different levels of emphasis, depending on its leve
54
54
  ```jsx example
55
55
  return (
56
56
  <Div>
57
+ <Card level={0}>
58
+ <Span h4>Card Level - 0</Span>
59
+ <Br />
60
+ <Span>Card body</Span>
61
+ </Card>
62
+ <Br />
57
63
  <Card>
58
64
  <Span h4>Card Level - 1</Span>
59
65
  <Br />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/card",
3
- "version": "0.1.5",
3
+ "version": "0.1.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,13 +8,13 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/core": "^0.1.5",
12
- "@startupjs-ui/div": "^0.1.5"
11
+ "@startupjs-ui/core": "^0.1.11",
12
+ "@startupjs-ui/div": "^0.1.11"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "react": "*",
16
16
  "react-native": "*",
17
17
  "startupjs": "*"
18
18
  },
19
- "gitHead": "1b90893dc24a9b3ffde1284c58996b42e98913c6"
19
+ "gitHead": "b21659a9d8408cd921560196db22a18fd8eda82d"
20
20
  }