@deepnoid/ui 0.1.158 → 0.1.159

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.
Files changed (35) hide show
  1. package/.turbo/turbo-build.log +146 -146
  2. package/dist/{chunk-IRJP6BF3.mjs → chunk-7QL54JRV.mjs} +1 -1
  3. package/dist/{chunk-7YMXOYES.mjs → chunk-OBOPDVVM.mjs} +1 -1
  4. package/dist/{chunk-HKHVSCER.mjs → chunk-OY5W6JCO.mjs} +1 -1
  5. package/dist/{chunk-SFGFRMWL.mjs → chunk-QR5CKZLL.mjs} +56 -61
  6. package/dist/{chunk-V64PCWVW.mjs → chunk-SFA2DEUD.mjs} +1 -1
  7. package/dist/components/fileUpload/fileUpload.js +56 -61
  8. package/dist/components/fileUpload/fileUpload.mjs +2 -2
  9. package/dist/components/fileUpload/index.js +56 -61
  10. package/dist/components/fileUpload/index.mjs +2 -2
  11. package/dist/components/input/index.js +56 -61
  12. package/dist/components/input/index.mjs +1 -1
  13. package/dist/components/input/input.d.mts +6 -3
  14. package/dist/components/input/input.d.ts +6 -3
  15. package/dist/components/input/input.js +56 -61
  16. package/dist/components/input/input.mjs +1 -1
  17. package/dist/components/pagination/index.js +56 -61
  18. package/dist/components/pagination/index.mjs +2 -2
  19. package/dist/components/pagination/pagination.js +56 -61
  20. package/dist/components/pagination/pagination.mjs +2 -2
  21. package/dist/components/picker/datePicker.js +56 -61
  22. package/dist/components/picker/datePicker.mjs +2 -2
  23. package/dist/components/picker/index.js +56 -61
  24. package/dist/components/picker/index.mjs +2 -2
  25. package/dist/components/table/index.js +56 -61
  26. package/dist/components/table/index.mjs +3 -3
  27. package/dist/components/table/table-body.js +56 -61
  28. package/dist/components/table/table-body.mjs +3 -3
  29. package/dist/components/table/table-head.js +56 -61
  30. package/dist/components/table/table-head.mjs +3 -3
  31. package/dist/components/table/table.js +56 -61
  32. package/dist/components/table/table.mjs +3 -3
  33. package/dist/index.js +56 -61
  34. package/dist/index.mjs +5 -5
  35. package/package.json +1 -1
@@ -5273,7 +5273,7 @@ var Input = (0, import_react2.forwardRef)((originalProps, ref) => {
5273
5273
  ),
5274
5274
  size: originalProps.size
5275
5275
  }),
5276
- [slots, classNames, originalProps.size]
5276
+ [slots, classNames, originalProps.size, inputProps.readOnly]
5277
5277
  );
5278
5278
  const renderStartContent = () => {
5279
5279
  if ((0, import_react2.isValidElement)(startContent)) {
@@ -5396,31 +5396,22 @@ var inputStyle = tv(
5396
5396
  "placeholder:text-neutral-main",
5397
5397
  "outline-none",
5398
5398
  "focus:ring-0",
5399
- "group-has-[:hover]/input:text-neutral-dark",
5400
- "group-has-[:hover]/input:placeholder:text-neutral-dark",
5401
- "group-has-[:focus]/input:text-neutral-dark",
5402
- "group-has-[:focus]/input:placeholder:text-neutral-dark",
5403
- "group-has-[p.error]/input:text-danger-main",
5404
- "group-has-[p.error]/input:placeholder:text-danger-main",
5405
- "group-has-[p.error]/input:placeholder:hover:!text-danger-main"
5399
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
5400
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:placeholder:text-neutral-dark",
5401
+ "group-has-[:focus:not(:read-only)]/input:text-neutral-dark",
5402
+ "group-has-[:focus:not(:read-only)]/input:placeholder:text-neutral-dark",
5403
+ "read-only:!text-body-foreground",
5404
+ "read-only:placeholder:!text-body-foreground"
5406
5405
  ],
5407
5406
  content: [
5408
5407
  "flex",
5409
5408
  "items-center",
5410
5409
  "select-none",
5411
5410
  "text-neutral-main",
5412
- "group-has-[:hover]/input:text-neutral-dark",
5413
- "group-has-[p.error]/input:text-danger-main",
5414
- "group-has-[p.error]/input:hover:text-danger-main",
5415
- "group-has-[p.error]/input:focus:text-danger-main"
5416
- ],
5417
- helperMessage: [
5418
- "text-neutral-main",
5419
- "group-has-[:hover]/input:text-neutral-dark",
5420
- "group-has-[p.error]/input:text-danger-main",
5421
- "group-has-[p.error]/input:hover:text-danger-main",
5422
- "group-has-[p.error]/input:focus:text-danger-main"
5411
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
5412
+ "read-only:!text-body-foreground"
5423
5413
  ],
5414
+ helperMessage: ["text-neutral-main", "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark"],
5424
5415
  errorMessage: ["text-danger-main"],
5425
5416
  readonlyWrapper: [
5426
5417
  "pointer-events-none",
@@ -5429,7 +5420,7 @@ var inputStyle = tv(
5429
5420
  "[&>input]:text-body-foreground",
5430
5421
  "[&>input]:placeholder:text-body-foreground"
5431
5422
  ],
5432
- readonly: []
5423
+ readonly: ["text-body-foreground"]
5433
5424
  },
5434
5425
  variants: {
5435
5426
  variant: {
@@ -5440,8 +5431,8 @@ var inputStyle = tv(
5440
5431
  outline: {
5441
5432
  inputWrapper: [
5442
5433
  "border-neutral-light",
5443
- "group-has-[:hover]/input:bg-trans-soft",
5444
- "group-has-[:focus]/input:bg-body-background",
5434
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
5435
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
5445
5436
  "group-has-[p.error]/input:border-danger-main"
5446
5437
  ],
5447
5438
  readonlyWrapper: ["!bg-trans-soft"]
@@ -5450,8 +5441,8 @@ var inputStyle = tv(
5450
5441
  inputWrapper: [
5451
5442
  "bg-transparent",
5452
5443
  "rounded-none",
5453
- "group-has-[:hover]/input:bg-trans-soft",
5454
- "group-has-[:focus]/input:bg-body-background",
5444
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
5445
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
5455
5446
  "group-has-[p.error]/input:border-danger-main"
5456
5447
  ],
5457
5448
  readonlyWrapper: ["!bg-trans-soft"]
@@ -5459,22 +5450,13 @@ var inputStyle = tv(
5459
5450
  },
5460
5451
  color: {
5461
5452
  primary: {
5462
- content: ["group-has-[:focus]/input:text-primary-main", "group-has-[:focus]/input:hover:text-primary-main"],
5463
- helperMessage: [
5464
- "group-has-[:focus]/input:text-primary-main",
5465
- "group-has-[:focus]/input:hover:text-primary-main"
5466
- ],
5453
+ content: ["group-has-[:focus:not(:read-only)]/input:text-primary-main", "read-only:!text-primary-main"],
5454
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-primary-main"],
5467
5455
  readonly: ["text-primary-main"]
5468
5456
  },
5469
5457
  secondary: {
5470
- content: [
5471
- "group-has-[:focus]/input:text-secondary-main",
5472
- "group-has-[:focus]/input:hover:text-secondary-main"
5473
- ],
5474
- helperMessage: [
5475
- "group-has-[:focus]/input:text-secondary-main",
5476
- "group-has-[:focus]/input:hover:text-secondary-main"
5477
- ],
5458
+ content: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main", "read-only:!text-secondary-main"],
5459
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main"],
5478
5460
  readonly: ["text-secondary-main"]
5479
5461
  }
5480
5462
  },
@@ -5525,14 +5507,9 @@ var inputStyle = tv(
5525
5507
  },
5526
5508
  disabled: {
5527
5509
  true: {
5528
- inputWrapper: ["!bg-neutral-soft", "pointer-events-none", "group-has-[p.error]/input:!text-danger-light"],
5529
- input: [
5530
- "!text-neutral-light",
5531
- "placeholder:!text-neutral-light",
5532
- "group-has-[p.error]/input:!text-danger-light",
5533
- "group-has-[p.error]/input:placeholder:!text-danger-light"
5534
- ],
5535
- content: ["!text-neutral-light", "group-has-[p.error]/input:!text-danger-light"],
5510
+ inputWrapper: ["!bg-neutral-soft", "pointer-events-none"],
5511
+ input: ["!text-neutral-light", "placeholder:!text-neutral-light"],
5512
+ content: ["!text-neutral-light"],
5536
5513
  helperMessage: ["!text-neutral-light"],
5537
5514
  errorMessage: ["!text-danger-light"]
5538
5515
  }
@@ -5540,11 +5517,9 @@ var inputStyle = tv(
5540
5517
  readonly: {
5541
5518
  true: {
5542
5519
  readonlyWrapper: ["pointer-events-none"],
5543
- input: [
5544
- "group-has-[p.error]/input:!text-danger-main",
5545
- "group-has-[p.error]/input:placeholder:!text-danger-main"
5546
- ],
5547
- content: ["group-has-[p.error]/input:!text-danger-main"]
5520
+ input: ["!text-body-foreground", "placeholder:!text-body-foreground"],
5521
+ content: ["!text-body-foreground"],
5522
+ helperMessage: ["!text-body-foreground"]
5548
5523
  }
5549
5524
  }
5550
5525
  },
@@ -5605,17 +5580,6 @@ var inputStyle = tv(
5605
5580
  inputWrapper: ["border-b-xl"]
5606
5581
  }
5607
5582
  },
5608
- {
5609
- disabled: true,
5610
- variant: ["outline", "underline"],
5611
- class: {
5612
- inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"],
5613
- content: [
5614
- "group-has-[p.error]/input:!text-danger-light",
5615
- "group-has-[p.error]/input:placeholder:!text-danger-light"
5616
- ]
5617
- }
5618
- },
5619
5583
  {
5620
5584
  readonly: true,
5621
5585
  color: "primary",
@@ -5631,6 +5595,37 @@ var inputStyle = tv(
5631
5595
  input: ["!text-secondary-main", "placeholder:!text-secondary-main"],
5632
5596
  content: ["!text-secondary-main"]
5633
5597
  }
5598
+ },
5599
+ {
5600
+ disabled: true,
5601
+ class: {
5602
+ input: [
5603
+ "group-has-[p.error]/input:!text-danger-light",
5604
+ "group-has-[p.error]/input:placeholder:!text-danger-light"
5605
+ ],
5606
+ content: ["group-has-[p.error]/input:!text-danger-light"],
5607
+ helperMessage: ["group-has-[p.error]/input:!text-danger-light"],
5608
+ errorMessage: ["!text-danger-light"]
5609
+ }
5610
+ },
5611
+ {
5612
+ disabled: true,
5613
+ variant: ["outline", "underline"],
5614
+ class: {
5615
+ inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"]
5616
+ }
5617
+ },
5618
+ {
5619
+ disabled: false,
5620
+ class: {
5621
+ input: [
5622
+ "group-has-[p.error]/input:!text-danger-main",
5623
+ "group-has-[p.error]/input:placeholder:!text-danger-main"
5624
+ ],
5625
+ content: ["group-has-[p.error]/input:!text-danger-main"],
5626
+ helperMessage: ["group-has-[p.error]/input:!text-danger-main"],
5627
+ errorMessage: ["!text-danger-main"]
5628
+ }
5634
5629
  }
5635
5630
  ],
5636
5631
  defaultVariants: {
@@ -2,10 +2,10 @@
2
2
  import "../../chunk-7B7LRG5J.mjs";
3
3
  import {
4
4
  pagination_default
5
- } from "../../chunk-IRJP6BF3.mjs";
5
+ } from "../../chunk-7QL54JRV.mjs";
6
6
  import "../../chunk-F3HENRVM.mjs";
7
7
  import "../../chunk-2GCSFWHD.mjs";
8
- import "../../chunk-SFGFRMWL.mjs";
8
+ import "../../chunk-QR5CKZLL.mjs";
9
9
  import "../../chunk-ZYIIXWVY.mjs";
10
10
  import "../../chunk-R7KUEH3N.mjs";
11
11
  import "../../chunk-E3G5QXSH.mjs";
@@ -5271,7 +5271,7 @@ var Input = (0, import_react2.forwardRef)((originalProps, ref) => {
5271
5271
  ),
5272
5272
  size: originalProps.size
5273
5273
  }),
5274
- [slots, classNames, originalProps.size]
5274
+ [slots, classNames, originalProps.size, inputProps.readOnly]
5275
5275
  );
5276
5276
  const renderStartContent = () => {
5277
5277
  if ((0, import_react2.isValidElement)(startContent)) {
@@ -5394,31 +5394,22 @@ var inputStyle = tv(
5394
5394
  "placeholder:text-neutral-main",
5395
5395
  "outline-none",
5396
5396
  "focus:ring-0",
5397
- "group-has-[:hover]/input:text-neutral-dark",
5398
- "group-has-[:hover]/input:placeholder:text-neutral-dark",
5399
- "group-has-[:focus]/input:text-neutral-dark",
5400
- "group-has-[:focus]/input:placeholder:text-neutral-dark",
5401
- "group-has-[p.error]/input:text-danger-main",
5402
- "group-has-[p.error]/input:placeholder:text-danger-main",
5403
- "group-has-[p.error]/input:placeholder:hover:!text-danger-main"
5397
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
5398
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:placeholder:text-neutral-dark",
5399
+ "group-has-[:focus:not(:read-only)]/input:text-neutral-dark",
5400
+ "group-has-[:focus:not(:read-only)]/input:placeholder:text-neutral-dark",
5401
+ "read-only:!text-body-foreground",
5402
+ "read-only:placeholder:!text-body-foreground"
5404
5403
  ],
5405
5404
  content: [
5406
5405
  "flex",
5407
5406
  "items-center",
5408
5407
  "select-none",
5409
5408
  "text-neutral-main",
5410
- "group-has-[:hover]/input:text-neutral-dark",
5411
- "group-has-[p.error]/input:text-danger-main",
5412
- "group-has-[p.error]/input:hover:text-danger-main",
5413
- "group-has-[p.error]/input:focus:text-danger-main"
5414
- ],
5415
- helperMessage: [
5416
- "text-neutral-main",
5417
- "group-has-[:hover]/input:text-neutral-dark",
5418
- "group-has-[p.error]/input:text-danger-main",
5419
- "group-has-[p.error]/input:hover:text-danger-main",
5420
- "group-has-[p.error]/input:focus:text-danger-main"
5409
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
5410
+ "read-only:!text-body-foreground"
5421
5411
  ],
5412
+ helperMessage: ["text-neutral-main", "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark"],
5422
5413
  errorMessage: ["text-danger-main"],
5423
5414
  readonlyWrapper: [
5424
5415
  "pointer-events-none",
@@ -5427,7 +5418,7 @@ var inputStyle = tv(
5427
5418
  "[&>input]:text-body-foreground",
5428
5419
  "[&>input]:placeholder:text-body-foreground"
5429
5420
  ],
5430
- readonly: []
5421
+ readonly: ["text-body-foreground"]
5431
5422
  },
5432
5423
  variants: {
5433
5424
  variant: {
@@ -5438,8 +5429,8 @@ var inputStyle = tv(
5438
5429
  outline: {
5439
5430
  inputWrapper: [
5440
5431
  "border-neutral-light",
5441
- "group-has-[:hover]/input:bg-trans-soft",
5442
- "group-has-[:focus]/input:bg-body-background",
5432
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
5433
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
5443
5434
  "group-has-[p.error]/input:border-danger-main"
5444
5435
  ],
5445
5436
  readonlyWrapper: ["!bg-trans-soft"]
@@ -5448,8 +5439,8 @@ var inputStyle = tv(
5448
5439
  inputWrapper: [
5449
5440
  "bg-transparent",
5450
5441
  "rounded-none",
5451
- "group-has-[:hover]/input:bg-trans-soft",
5452
- "group-has-[:focus]/input:bg-body-background",
5442
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
5443
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
5453
5444
  "group-has-[p.error]/input:border-danger-main"
5454
5445
  ],
5455
5446
  readonlyWrapper: ["!bg-trans-soft"]
@@ -5457,22 +5448,13 @@ var inputStyle = tv(
5457
5448
  },
5458
5449
  color: {
5459
5450
  primary: {
5460
- content: ["group-has-[:focus]/input:text-primary-main", "group-has-[:focus]/input:hover:text-primary-main"],
5461
- helperMessage: [
5462
- "group-has-[:focus]/input:text-primary-main",
5463
- "group-has-[:focus]/input:hover:text-primary-main"
5464
- ],
5451
+ content: ["group-has-[:focus:not(:read-only)]/input:text-primary-main", "read-only:!text-primary-main"],
5452
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-primary-main"],
5465
5453
  readonly: ["text-primary-main"]
5466
5454
  },
5467
5455
  secondary: {
5468
- content: [
5469
- "group-has-[:focus]/input:text-secondary-main",
5470
- "group-has-[:focus]/input:hover:text-secondary-main"
5471
- ],
5472
- helperMessage: [
5473
- "group-has-[:focus]/input:text-secondary-main",
5474
- "group-has-[:focus]/input:hover:text-secondary-main"
5475
- ],
5456
+ content: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main", "read-only:!text-secondary-main"],
5457
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main"],
5476
5458
  readonly: ["text-secondary-main"]
5477
5459
  }
5478
5460
  },
@@ -5523,14 +5505,9 @@ var inputStyle = tv(
5523
5505
  },
5524
5506
  disabled: {
5525
5507
  true: {
5526
- inputWrapper: ["!bg-neutral-soft", "pointer-events-none", "group-has-[p.error]/input:!text-danger-light"],
5527
- input: [
5528
- "!text-neutral-light",
5529
- "placeholder:!text-neutral-light",
5530
- "group-has-[p.error]/input:!text-danger-light",
5531
- "group-has-[p.error]/input:placeholder:!text-danger-light"
5532
- ],
5533
- content: ["!text-neutral-light", "group-has-[p.error]/input:!text-danger-light"],
5508
+ inputWrapper: ["!bg-neutral-soft", "pointer-events-none"],
5509
+ input: ["!text-neutral-light", "placeholder:!text-neutral-light"],
5510
+ content: ["!text-neutral-light"],
5534
5511
  helperMessage: ["!text-neutral-light"],
5535
5512
  errorMessage: ["!text-danger-light"]
5536
5513
  }
@@ -5538,11 +5515,9 @@ var inputStyle = tv(
5538
5515
  readonly: {
5539
5516
  true: {
5540
5517
  readonlyWrapper: ["pointer-events-none"],
5541
- input: [
5542
- "group-has-[p.error]/input:!text-danger-main",
5543
- "group-has-[p.error]/input:placeholder:!text-danger-main"
5544
- ],
5545
- content: ["group-has-[p.error]/input:!text-danger-main"]
5518
+ input: ["!text-body-foreground", "placeholder:!text-body-foreground"],
5519
+ content: ["!text-body-foreground"],
5520
+ helperMessage: ["!text-body-foreground"]
5546
5521
  }
5547
5522
  }
5548
5523
  },
@@ -5603,17 +5578,6 @@ var inputStyle = tv(
5603
5578
  inputWrapper: ["border-b-xl"]
5604
5579
  }
5605
5580
  },
5606
- {
5607
- disabled: true,
5608
- variant: ["outline", "underline"],
5609
- class: {
5610
- inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"],
5611
- content: [
5612
- "group-has-[p.error]/input:!text-danger-light",
5613
- "group-has-[p.error]/input:placeholder:!text-danger-light"
5614
- ]
5615
- }
5616
- },
5617
5581
  {
5618
5582
  readonly: true,
5619
5583
  color: "primary",
@@ -5629,6 +5593,37 @@ var inputStyle = tv(
5629
5593
  input: ["!text-secondary-main", "placeholder:!text-secondary-main"],
5630
5594
  content: ["!text-secondary-main"]
5631
5595
  }
5596
+ },
5597
+ {
5598
+ disabled: true,
5599
+ class: {
5600
+ input: [
5601
+ "group-has-[p.error]/input:!text-danger-light",
5602
+ "group-has-[p.error]/input:placeholder:!text-danger-light"
5603
+ ],
5604
+ content: ["group-has-[p.error]/input:!text-danger-light"],
5605
+ helperMessage: ["group-has-[p.error]/input:!text-danger-light"],
5606
+ errorMessage: ["!text-danger-light"]
5607
+ }
5608
+ },
5609
+ {
5610
+ disabled: true,
5611
+ variant: ["outline", "underline"],
5612
+ class: {
5613
+ inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"]
5614
+ }
5615
+ },
5616
+ {
5617
+ disabled: false,
5618
+ class: {
5619
+ input: [
5620
+ "group-has-[p.error]/input:!text-danger-main",
5621
+ "group-has-[p.error]/input:placeholder:!text-danger-main"
5622
+ ],
5623
+ content: ["group-has-[p.error]/input:!text-danger-main"],
5624
+ helperMessage: ["group-has-[p.error]/input:!text-danger-main"],
5625
+ errorMessage: ["!text-danger-main"]
5626
+ }
5632
5627
  }
5633
5628
  ],
5634
5629
  defaultVariants: {
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  pagination_default
4
- } from "../../chunk-IRJP6BF3.mjs";
4
+ } from "../../chunk-7QL54JRV.mjs";
5
5
  import "../../chunk-F3HENRVM.mjs";
6
6
  import "../../chunk-2GCSFWHD.mjs";
7
- import "../../chunk-SFGFRMWL.mjs";
7
+ import "../../chunk-QR5CKZLL.mjs";
8
8
  import "../../chunk-ZYIIXWVY.mjs";
9
9
  import "../../chunk-R7KUEH3N.mjs";
10
10
  import "../../chunk-E3G5QXSH.mjs";
@@ -6309,7 +6309,7 @@ var Input = (0, import_react6.forwardRef)((originalProps, ref) => {
6309
6309
  ),
6310
6310
  size: originalProps.size
6311
6311
  }),
6312
- [slots, classNames, originalProps.size]
6312
+ [slots, classNames, originalProps.size, inputProps.readOnly]
6313
6313
  );
6314
6314
  const renderStartContent = () => {
6315
6315
  if ((0, import_react6.isValidElement)(startContent)) {
@@ -6432,31 +6432,22 @@ var inputStyle = tv(
6432
6432
  "placeholder:text-neutral-main",
6433
6433
  "outline-none",
6434
6434
  "focus:ring-0",
6435
- "group-has-[:hover]/input:text-neutral-dark",
6436
- "group-has-[:hover]/input:placeholder:text-neutral-dark",
6437
- "group-has-[:focus]/input:text-neutral-dark",
6438
- "group-has-[:focus]/input:placeholder:text-neutral-dark",
6439
- "group-has-[p.error]/input:text-danger-main",
6440
- "group-has-[p.error]/input:placeholder:text-danger-main",
6441
- "group-has-[p.error]/input:placeholder:hover:!text-danger-main"
6435
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
6436
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:placeholder:text-neutral-dark",
6437
+ "group-has-[:focus:not(:read-only)]/input:text-neutral-dark",
6438
+ "group-has-[:focus:not(:read-only)]/input:placeholder:text-neutral-dark",
6439
+ "read-only:!text-body-foreground",
6440
+ "read-only:placeholder:!text-body-foreground"
6442
6441
  ],
6443
6442
  content: [
6444
6443
  "flex",
6445
6444
  "items-center",
6446
6445
  "select-none",
6447
6446
  "text-neutral-main",
6448
- "group-has-[:hover]/input:text-neutral-dark",
6449
- "group-has-[p.error]/input:text-danger-main",
6450
- "group-has-[p.error]/input:hover:text-danger-main",
6451
- "group-has-[p.error]/input:focus:text-danger-main"
6452
- ],
6453
- helperMessage: [
6454
- "text-neutral-main",
6455
- "group-has-[:hover]/input:text-neutral-dark",
6456
- "group-has-[p.error]/input:text-danger-main",
6457
- "group-has-[p.error]/input:hover:text-danger-main",
6458
- "group-has-[p.error]/input:focus:text-danger-main"
6447
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark",
6448
+ "read-only:!text-body-foreground"
6459
6449
  ],
6450
+ helperMessage: ["text-neutral-main", "group-has-[:hover:not(:read-only):not(:focus)]/input:text-neutral-dark"],
6460
6451
  errorMessage: ["text-danger-main"],
6461
6452
  readonlyWrapper: [
6462
6453
  "pointer-events-none",
@@ -6465,7 +6456,7 @@ var inputStyle = tv(
6465
6456
  "[&>input]:text-body-foreground",
6466
6457
  "[&>input]:placeholder:text-body-foreground"
6467
6458
  ],
6468
- readonly: []
6459
+ readonly: ["text-body-foreground"]
6469
6460
  },
6470
6461
  variants: {
6471
6462
  variant: {
@@ -6476,8 +6467,8 @@ var inputStyle = tv(
6476
6467
  outline: {
6477
6468
  inputWrapper: [
6478
6469
  "border-neutral-light",
6479
- "group-has-[:hover]/input:bg-trans-soft",
6480
- "group-has-[:focus]/input:bg-body-background",
6470
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
6471
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
6481
6472
  "group-has-[p.error]/input:border-danger-main"
6482
6473
  ],
6483
6474
  readonlyWrapper: ["!bg-trans-soft"]
@@ -6486,8 +6477,8 @@ var inputStyle = tv(
6486
6477
  inputWrapper: [
6487
6478
  "bg-transparent",
6488
6479
  "rounded-none",
6489
- "group-has-[:hover]/input:bg-trans-soft",
6490
- "group-has-[:focus]/input:bg-body-background",
6480
+ "group-has-[:hover:not(:read-only):not(:focus)]/input:bg-trans-soft",
6481
+ "group-has-[:focus:not(:read-only)]/input:bg-body-background",
6491
6482
  "group-has-[p.error]/input:border-danger-main"
6492
6483
  ],
6493
6484
  readonlyWrapper: ["!bg-trans-soft"]
@@ -6495,22 +6486,13 @@ var inputStyle = tv(
6495
6486
  },
6496
6487
  color: {
6497
6488
  primary: {
6498
- content: ["group-has-[:focus]/input:text-primary-main", "group-has-[:focus]/input:hover:text-primary-main"],
6499
- helperMessage: [
6500
- "group-has-[:focus]/input:text-primary-main",
6501
- "group-has-[:focus]/input:hover:text-primary-main"
6502
- ],
6489
+ content: ["group-has-[:focus:not(:read-only)]/input:text-primary-main", "read-only:!text-primary-main"],
6490
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-primary-main"],
6503
6491
  readonly: ["text-primary-main"]
6504
6492
  },
6505
6493
  secondary: {
6506
- content: [
6507
- "group-has-[:focus]/input:text-secondary-main",
6508
- "group-has-[:focus]/input:hover:text-secondary-main"
6509
- ],
6510
- helperMessage: [
6511
- "group-has-[:focus]/input:text-secondary-main",
6512
- "group-has-[:focus]/input:hover:text-secondary-main"
6513
- ],
6494
+ content: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main", "read-only:!text-secondary-main"],
6495
+ helperMessage: ["group-has-[:focus:not(:read-only)]/input:text-secondary-main"],
6514
6496
  readonly: ["text-secondary-main"]
6515
6497
  }
6516
6498
  },
@@ -6561,14 +6543,9 @@ var inputStyle = tv(
6561
6543
  },
6562
6544
  disabled: {
6563
6545
  true: {
6564
- inputWrapper: ["!bg-neutral-soft", "pointer-events-none", "group-has-[p.error]/input:!text-danger-light"],
6565
- input: [
6566
- "!text-neutral-light",
6567
- "placeholder:!text-neutral-light",
6568
- "group-has-[p.error]/input:!text-danger-light",
6569
- "group-has-[p.error]/input:placeholder:!text-danger-light"
6570
- ],
6571
- content: ["!text-neutral-light", "group-has-[p.error]/input:!text-danger-light"],
6546
+ inputWrapper: ["!bg-neutral-soft", "pointer-events-none"],
6547
+ input: ["!text-neutral-light", "placeholder:!text-neutral-light"],
6548
+ content: ["!text-neutral-light"],
6572
6549
  helperMessage: ["!text-neutral-light"],
6573
6550
  errorMessage: ["!text-danger-light"]
6574
6551
  }
@@ -6576,11 +6553,9 @@ var inputStyle = tv(
6576
6553
  readonly: {
6577
6554
  true: {
6578
6555
  readonlyWrapper: ["pointer-events-none"],
6579
- input: [
6580
- "group-has-[p.error]/input:!text-danger-main",
6581
- "group-has-[p.error]/input:placeholder:!text-danger-main"
6582
- ],
6583
- content: ["group-has-[p.error]/input:!text-danger-main"]
6556
+ input: ["!text-body-foreground", "placeholder:!text-body-foreground"],
6557
+ content: ["!text-body-foreground"],
6558
+ helperMessage: ["!text-body-foreground"]
6584
6559
  }
6585
6560
  }
6586
6561
  },
@@ -6641,17 +6616,6 @@ var inputStyle = tv(
6641
6616
  inputWrapper: ["border-b-xl"]
6642
6617
  }
6643
6618
  },
6644
- {
6645
- disabled: true,
6646
- variant: ["outline", "underline"],
6647
- class: {
6648
- inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"],
6649
- content: [
6650
- "group-has-[p.error]/input:!text-danger-light",
6651
- "group-has-[p.error]/input:placeholder:!text-danger-light"
6652
- ]
6653
- }
6654
- },
6655
6619
  {
6656
6620
  readonly: true,
6657
6621
  color: "primary",
@@ -6667,6 +6631,37 @@ var inputStyle = tv(
6667
6631
  input: ["!text-secondary-main", "placeholder:!text-secondary-main"],
6668
6632
  content: ["!text-secondary-main"]
6669
6633
  }
6634
+ },
6635
+ {
6636
+ disabled: true,
6637
+ class: {
6638
+ input: [
6639
+ "group-has-[p.error]/input:!text-danger-light",
6640
+ "group-has-[p.error]/input:placeholder:!text-danger-light"
6641
+ ],
6642
+ content: ["group-has-[p.error]/input:!text-danger-light"],
6643
+ helperMessage: ["group-has-[p.error]/input:!text-danger-light"],
6644
+ errorMessage: ["!text-danger-light"]
6645
+ }
6646
+ },
6647
+ {
6648
+ disabled: true,
6649
+ variant: ["outline", "underline"],
6650
+ class: {
6651
+ inputWrapper: ["!bg-body-background", "group-has-[p.error]/input:!border-danger-light"]
6652
+ }
6653
+ },
6654
+ {
6655
+ disabled: false,
6656
+ class: {
6657
+ input: [
6658
+ "group-has-[p.error]/input:!text-danger-main",
6659
+ "group-has-[p.error]/input:placeholder:!text-danger-main"
6660
+ ],
6661
+ content: ["group-has-[p.error]/input:!text-danger-main"],
6662
+ helperMessage: ["group-has-[p.error]/input:!text-danger-main"],
6663
+ errorMessage: ["!text-danger-main"]
6664
+ }
6670
6665
  }
6671
6666
  ],
6672
6667
  defaultVariants: {
@@ -2,11 +2,11 @@
2
2
  import {
3
3
  datePickerStyle,
4
4
  datePicker_default
5
- } from "../../chunk-7YMXOYES.mjs";
5
+ } from "../../chunk-OBOPDVVM.mjs";
6
6
  import "../../chunk-4DESGO3D.mjs";
7
7
  import "../../chunk-FWFEKWWD.mjs";
8
8
  import "../../chunk-2GCSFWHD.mjs";
9
- import "../../chunk-SFGFRMWL.mjs";
9
+ import "../../chunk-QR5CKZLL.mjs";
10
10
  import "../../chunk-MY5U63QO.mjs";
11
11
  import "../../chunk-Q364C3FI.mjs";
12
12
  import "../../chunk-ITWKPTSD.mjs";