@codesinger0/shared-components 1.1.95 → 1.1.97

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.
@@ -11,6 +11,7 @@ const FullscreenCarousel = ({
11
11
  loop = true,
12
12
  showDots = true,
13
13
  showArrows = true,
14
+ dotsColor = 'rgba(255, 255, 255, 1)',
14
15
  className = '',
15
16
  ...props
16
17
  }) => {
@@ -273,7 +274,7 @@ const FullscreenCarousel = ({
273
274
  }
274
275
 
275
276
  .fullscreen-carousel__dot {
276
- background-color: rgba(255, 255, 255, 0.5);
277
+ background-color: ${dotsColor};
277
278
  border: none;
278
279
  width: 0.75rem;
279
280
  height: 0.75rem;
@@ -282,10 +283,10 @@ const FullscreenCarousel = ({
282
283
  opacity: 0.5;
283
284
  transition: all 0.2s ease;
284
285
  }
285
-
286
+
286
287
  .fullscreen-carousel__dot--selected {
287
288
  opacity: 1;
288
- background-color: rgba(255, 255, 255, 1);
289
+ background-color: ${dotsColor};
289
290
  transform: scale(1.2);
290
291
  }
291
292
 
@@ -164,7 +164,7 @@ const OrderForm = ({
164
164
  'Content-Type': 'application/json'
165
165
  },
166
166
  body: JSON.stringify({
167
- businessName: 'confectioneryShop',
167
+ businessName,
168
168
  operation: 'createPaymentLink',
169
169
  customerName: orderData.customerName,
170
170
  customerPhone: orderData.customerPhone,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codesinger0/shared-components",
3
- "version": "1.1.95",
3
+ "version": "1.1.97",
4
4
  "description": "Shared React components for customer projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [