ehscan-react-components 0.1.49 → 0.1.50

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/README.md CHANGED
@@ -322,6 +322,9 @@ const WindowWrapper = ({ windowOpen, setWindowOpen }) => {
322
322
  ----
323
323
  # Changelog
324
324
 
325
+ ## [0.1.50] - 2025-12-16
326
+ - Button default style adjustments
327
+
325
328
  ## [0.1.49] - 2025-12-12
326
329
  - Image and docu for Drag and Drop
327
330
 
@@ -3,15 +3,15 @@
3
3
  display: inline-flex;
4
4
  align-items: center;
5
5
  justify-content: center;
6
- gap: var(--ext-btn-gap, 0.5rem);
6
+ gap: var(--ext-btn-gap, 0);
7
7
  font-family: inherit;
8
8
  font-size: var(--ext-btn-font-size, 1rem);
9
9
  font-weight: var(--ext-btn-font-weight, 500);
10
10
  color: var(--ext-btn-color, #fff);
11
- background-color: var(--btn-bg, #007aff);
11
+ background-color: var(--ext-btn-bg, #007aff);
12
12
  border: none;
13
- border-radius: var(--ext-btn-radius, 18px);
14
- padding: var(--ext-btn-padding, 5px 10px 5px 5px);
13
+ border-radius: var(--ext-btn-radius, 12px);
14
+ padding: var(--ext-btn-padding, 5px);
15
15
  width: var(--ext-btn-width, fit-content);
16
16
  height: var(--ext-btn-height, auto);
17
17
  cursor: pointer;
@@ -90,7 +90,7 @@
90
90
  Apply Ripple effect
91
91
  ---------------*/
92
92
  .ApplyRipple {
93
- box-shadow: var(--ripple-box-shadow, rgb(100 100 111 / 20%) 0px 7px 29px 0px);
93
+ box-shadow: var(--ext-btn-ripple-box-shadow, none); /* rgb(100 100 111 / 20%) 0px 7px 29px 0px */
94
94
  position: relative;
95
95
  overflow: hidden;
96
96
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ehscan-react-components",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
4
4
  "description": "components",
5
5
  "main": "dist/Components.js",
6
6
  "types": "dist/Components.d.ts",