@ikatec/nebula-react 1.0.2 → 1.0.4

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/dist/index.d.mts CHANGED
@@ -430,7 +430,7 @@ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
430
430
 
431
431
  interface BoxProps extends PropsWithChildren<HTMLAttributes<HTMLDivElement>> {
432
432
  border?: boolean;
433
- paddingSize?: 'sm' | 'md' | 'lg';
433
+ paddingSize?: 'sm' | 'md' | 'lg' | 'xl';
434
434
  shadow?: 'sm' | 'md' | 'lg';
435
435
  variant?: 'primary' | 'secondary';
436
436
  }
package/dist/index.d.ts CHANGED
@@ -430,7 +430,7 @@ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
430
430
 
431
431
  interface BoxProps extends PropsWithChildren<HTMLAttributes<HTMLDivElement>> {
432
432
  border?: boolean;
433
- paddingSize?: 'sm' | 'md' | 'lg';
433
+ paddingSize?: 'sm' | 'md' | 'lg' | 'xl';
434
434
  shadow?: 'sm' | 'md' | 'lg';
435
435
  variant?: 'primary' | 'secondary';
436
436
  }
package/dist/index.js CHANGED
@@ -405,7 +405,7 @@ var Label = React8__namespace.forwardRef(({ className, ...props }, ref) => /* @_
405
405
  {
406
406
  ref,
407
407
  className: cn(
408
- "text-sm text-label-text-default font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
408
+ "text-sm text-label-text-active font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
409
409
  className
410
410
  ),
411
411
  ...props
@@ -2391,7 +2391,8 @@ var Box = ({
2391
2391
  {
2392
2392
  "p-4": paddingSize === "sm",
2393
2393
  "p-6": paddingSize === "md",
2394
- "p-8": paddingSize === "lg"
2394
+ "p-8": paddingSize === "lg",
2395
+ "p-10": paddingSize === "xl"
2395
2396
  },
2396
2397
  {
2397
2398
  "border border-box-border": border
package/dist/index.mjs CHANGED
@@ -367,7 +367,7 @@ var Label = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
367
367
  {
368
368
  ref,
369
369
  className: cn(
370
- "text-sm text-label-text-default font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
370
+ "text-sm text-label-text-active font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
371
371
  className
372
372
  ),
373
373
  ...props
@@ -2353,7 +2353,8 @@ var Box = ({
2353
2353
  {
2354
2354
  "p-4": paddingSize === "sm",
2355
2355
  "p-6": paddingSize === "md",
2356
- "p-8": paddingSize === "lg"
2356
+ "p-8": paddingSize === "lg",
2357
+ "p-10": paddingSize === "xl"
2357
2358
  },
2358
2359
  {
2359
2360
  "border border-box-border": border
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-react",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "React components",
5
5
  "publishConfig": {
6
6
  "access": "public"