@ncds/ui-admin 1.4.1 → 1.5.1

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 (82) hide show
  1. package/dist/cjs/assets/scripts/comboBox.js +18 -0
  2. package/dist/cjs/assets/scripts/datePicker.js +60 -7
  3. package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +6 -19
  4. package/dist/cjs/assets/scripts/notification/MessageNotification.js +146 -0
  5. package/dist/cjs/assets/scripts/notification/Notification.js +6 -3
  6. package/dist/cjs/assets/scripts/notification/const/classNames.js +14 -0
  7. package/dist/cjs/assets/scripts/notification/const/index.js +14 -1
  8. package/dist/cjs/assets/scripts/notification/const/sizes.js +7 -1
  9. package/dist/cjs/assets/scripts/notification/const/types.js +10 -1
  10. package/dist/cjs/assets/scripts/notification/index.js +8 -0
  11. package/dist/cjs/assets/scripts/notification/utils.js +3 -3
  12. package/dist/cjs/assets/scripts/utils/selectbox/DropdownModel.js +7 -0
  13. package/dist/cjs/assets/scripts/utils/selectbox/UnifiedSelectBox.js +77 -43
  14. package/dist/cjs/src/components/button/ButtonGroup.js +1 -2
  15. package/dist/cjs/src/components/button/ButtonStepper.js +23 -0
  16. package/dist/cjs/src/components/button/index.js +22 -0
  17. package/dist/cjs/src/components/date-picker/DatePicker.js +45 -6
  18. package/dist/cjs/src/components/date-picker/RangeDatePicker.js +3 -1
  19. package/dist/cjs/src/components/date-picker/RangeDatePickerWithButtons.js +7 -3
  20. package/dist/cjs/src/components/index.js +11 -0
  21. package/dist/cjs/src/components/input/InputBase.js +1 -1
  22. package/dist/cjs/src/components/input/NumberInput.js +130 -0
  23. package/dist/cjs/src/components/input/PasswordInput.js +3 -2
  24. package/dist/cjs/src/components/input/index.js +11 -0
  25. package/dist/cjs/src/components/notification/MessageNotification.js +137 -0
  26. package/dist/cjs/src/components/notification/Notification.js +23 -9
  27. package/dist/cjs/src/components/notification/index.js +11 -0
  28. package/dist/cjs/src/components/tooltip/Tooltip.js +32 -21
  29. package/dist/esm/assets/scripts/comboBox.js +18 -0
  30. package/dist/esm/assets/scripts/datePicker.js +60 -7
  31. package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +6 -19
  32. package/dist/esm/assets/scripts/notification/MessageNotification.js +141 -0
  33. package/dist/esm/assets/scripts/notification/Notification.js +6 -3
  34. package/dist/esm/assets/scripts/notification/const/classNames.js +14 -0
  35. package/dist/esm/assets/scripts/notification/const/index.js +2 -1
  36. package/dist/esm/assets/scripts/notification/const/sizes.js +6 -0
  37. package/dist/esm/assets/scripts/notification/const/types.js +8 -1
  38. package/dist/esm/assets/scripts/notification/index.js +1 -0
  39. package/dist/esm/assets/scripts/notification/utils.js +3 -3
  40. package/dist/esm/assets/scripts/utils/selectbox/DropdownModel.js +7 -0
  41. package/dist/esm/assets/scripts/utils/selectbox/UnifiedSelectBox.js +77 -43
  42. package/dist/esm/src/components/button/ButtonStepper.js +15 -0
  43. package/dist/esm/src/components/button/index.js +3 -1
  44. package/dist/esm/src/components/date-picker/DatePicker.js +46 -7
  45. package/dist/esm/src/components/date-picker/RangeDatePicker.js +3 -1
  46. package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +7 -3
  47. package/dist/esm/src/components/index.js +2 -1
  48. package/dist/esm/src/components/input/InputBase.js +1 -1
  49. package/dist/esm/src/components/input/NumberInput.js +124 -0
  50. package/dist/esm/src/components/input/PasswordInput.js +4 -3
  51. package/dist/esm/src/components/input/index.js +1 -0
  52. package/dist/esm/src/components/notification/MessageNotification.js +130 -0
  53. package/dist/esm/src/components/notification/Notification.js +23 -9
  54. package/dist/esm/src/components/notification/index.js +2 -1
  55. package/dist/esm/src/components/tooltip/Tooltip.js +33 -22
  56. package/dist/types/assets/scripts/comboBox.d.ts +12 -0
  57. package/dist/types/assets/scripts/datePicker.d.ts +1 -0
  58. package/dist/types/assets/scripts/notification/MessageNotification.d.ts +23 -0
  59. package/dist/types/assets/scripts/notification/Notification.d.ts +1 -1
  60. package/dist/types/assets/scripts/notification/const/classNames.d.ts +14 -0
  61. package/dist/types/assets/scripts/notification/const/index.d.ts +2 -1
  62. package/dist/types/assets/scripts/notification/const/sizes.d.ts +5 -0
  63. package/dist/types/assets/scripts/notification/const/types.d.ts +1 -0
  64. package/dist/types/assets/scripts/notification/index.d.ts +1 -0
  65. package/dist/types/assets/scripts/utils/selectbox/DropdownModel.d.ts +4 -0
  66. package/dist/types/assets/scripts/utils/selectbox/UnifiedSelectBox.d.ts +20 -1
  67. package/dist/types/src/components/button/ButtonGroup.d.ts +1 -3
  68. package/dist/types/src/components/button/ButtonStepper.d.ts +10 -0
  69. package/dist/types/src/components/button/index.d.ts +2 -0
  70. package/dist/types/src/components/date-picker/DatePicker.d.ts +1 -0
  71. package/dist/types/src/components/date-picker/RangeDatePickerWithButtons.d.ts +4 -4
  72. package/dist/types/src/components/index.d.ts +1 -0
  73. package/dist/types/src/components/input/NumberInput.d.ts +10 -0
  74. package/dist/types/src/components/input/index.d.ts +1 -0
  75. package/dist/types/src/components/modal/Modal.d.ts +2 -2
  76. package/dist/types/src/components/notification/MessageNotification.d.ts +40 -0
  77. package/dist/types/src/components/notification/Notification.d.ts +6 -1
  78. package/dist/types/src/components/notification/index.d.ts +1 -0
  79. package/dist/types/src/components/selectbox/SelectBox.d.ts +1 -1
  80. package/dist/types/src/components/tooltip/Tooltip.d.ts +4 -2
  81. package/dist/ui-admin/assets/styles/style.css +298 -18
  82. package/package.json +1 -1
@@ -754,6 +754,62 @@ button {
754
754
  background-color: rgba(255, 255, 255, 0.2);
755
755
  }
756
756
 
757
+ .ncua-button-stepper {
758
+ display: inline-flex;
759
+ align-items: center;
760
+ justify-content: center;
761
+ width: 20px;
762
+ height: 10px;
763
+ cursor: pointer;
764
+ background-color: var(--gray-100);
765
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
766
+ background-repeat: no-repeat;
767
+ background-position: center;
768
+ background-size: 6px 4px;
769
+ border-radius: 4px 4px 1px 1px;
770
+ }
771
+ .ncua-button-stepper:hover:not(:disabled), .ncua-button-stepper:focus:not(:disabled) {
772
+ background-color: var(--gray-200);
773
+ }
774
+ .ncua-button-stepper:disabled {
775
+ background-color: var(--gray-100);
776
+ }
777
+ .ncua-button-stepper--xs {
778
+ width: 20px;
779
+ height: 10px;
780
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
781
+ background-size: 6px 4px;
782
+ }
783
+ .ncua-button-stepper--xs:hover:not(:disabled), .ncua-button-stepper--xs:focus:not(:disabled) {
784
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
785
+ }
786
+ .ncua-input:focus-within .ncua-button-stepper--xs {
787
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
788
+ }
789
+ .ncua-input.is-disabled .ncua-button-stepper--xs, .ncua-button-stepper--xs:disabled {
790
+ cursor: not-allowed;
791
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
792
+ }
793
+ .ncua-button-stepper--sm {
794
+ width: 22px;
795
+ height: 14px;
796
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
797
+ background-size: 8.2px 4.7px;
798
+ }
799
+ .ncua-button-stepper--sm:hover:not(:disabled), .ncua-button-stepper--sm:focus:not(:disabled) {
800
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
801
+ }
802
+ .ncua-input:focus-within .ncua-button-stepper--sm {
803
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
804
+ }
805
+ .ncua-input.is-disabled .ncua-button-stepper--sm, .ncua-button-stepper--sm:disabled {
806
+ cursor: not-allowed;
807
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
808
+ }
809
+ .ncua-button-stepper--down {
810
+ transform: rotate(180deg);
811
+ }
812
+
757
813
  .ncua-checkbox-input {
758
814
  --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23171818' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
759
815
  --check-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23d3d4d8' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
@@ -1317,6 +1373,16 @@ button {
1317
1373
  .ncua-input__field--sm {
1318
1374
  padding: 6px 12px;
1319
1375
  }
1376
+ .ncua-input__field:has(.ncua-input__stepper-button-group ~ .ncua-input__number) {
1377
+ padding-top: 2px;
1378
+ padding-bottom: 2px;
1379
+ padding-left: 2px;
1380
+ }
1381
+ .ncua-input__field:has(.ncua-input__number ~ .ncua-input__stepper-button-group) {
1382
+ padding-top: 2px;
1383
+ padding-bottom: 2px;
1384
+ padding-right: 2px;
1385
+ }
1320
1386
  .ncua-input__field {
1321
1387
  position: relative;
1322
1388
  flex: 1;
@@ -1449,16 +1515,6 @@ button {
1449
1515
  .ncua-input.is-disabled .ncua-input__field {
1450
1516
  overflow: hidden;
1451
1517
  }
1452
- .ncua-input.is-disabled .ncua-input__field::after {
1453
- position: absolute;
1454
- top: 0;
1455
- left: 0;
1456
- content: "";
1457
- width: 100%;
1458
- height: 100%;
1459
- background: inherit;
1460
- opacity: 0.5;
1461
- }
1462
1518
  .ncua-input.is-disabled input,
1463
1519
  .ncua-input.is-disabled textarea {
1464
1520
  color: var(--gray-300);
@@ -1473,6 +1529,31 @@ button {
1473
1529
  .ncua-input.full-width {
1474
1530
  width: 100%;
1475
1531
  }
1532
+ .ncua-input__number::-webkit-inner-spin-button, .ncua-input__number::-webkit-outer-spin-button {
1533
+ -webkit-appearance: none;
1534
+ margin: 0;
1535
+ }
1536
+ .ncua-input__number {
1537
+ -moz-appearance: textfield;
1538
+ appearance: textfield;
1539
+ }
1540
+ .ncua-input__stepper-button-group {
1541
+ display: flex;
1542
+ flex-direction: column;
1543
+ gap: 2px;
1544
+ }
1545
+ .ncua-input__field--xs .ncua-input__stepper-button-group ~ .ncua-input__number {
1546
+ padding-left: 10px;
1547
+ }
1548
+ .ncua-input__field--sm .ncua-input__stepper-button-group ~ .ncua-input__number {
1549
+ padding-left: 12px;
1550
+ }
1551
+ .ncua-input__field--xs .ncua-input__icon-wrap + .ncua-input__stepper-button-group {
1552
+ margin-left: 10px;
1553
+ }
1554
+ .ncua-input__field--sm .ncua-input__icon-wrap + .ncua-input__stepper-button-group {
1555
+ margin-left: 12px;
1556
+ }
1476
1557
 
1477
1558
  .ncua-input__leading-text-wrap .ncua-input__leading-text {
1478
1559
  display: flex;
@@ -1782,12 +1863,14 @@ button {
1782
1863
  line-height: var(--line-heights-sm);
1783
1864
  color: var(--gray-700);
1784
1865
  word-break: break-all;
1866
+ white-space: pre-line;
1785
1867
  }
1786
1868
  .ncua-modal__title .ncua-modal__title-subtitle {
1787
1869
  font-weight: var(--font-weights-commerce-sans-0);
1788
1870
  font-size: var(--font-size-xs);
1789
1871
  line-height: var(--line-heights-xs);
1790
1872
  color: var(--gray-400);
1873
+ white-space: pre-line;
1791
1874
  }
1792
1875
 
1793
1876
  .ncua-modal__close-button {
@@ -2207,6 +2290,207 @@ button {
2207
2290
  }
2208
2291
  }
2209
2292
 
2293
+ .ncua-message-notification {
2294
+ width: 100%;
2295
+ }
2296
+ .ncua-message-notification__container {
2297
+ display: flex;
2298
+ align-items: center;
2299
+ flex-direction: column;
2300
+ width: 100%;
2301
+ padding: 16px 24px;
2302
+ }
2303
+ @media (max-width: 768px) {
2304
+ .ncua-message-notification__container {
2305
+ padding: 16px;
2306
+ }
2307
+ }
2308
+ .ncua-message-notification__content {
2309
+ width: 100%;
2310
+ display: flex;
2311
+ align-items: center;
2312
+ justify-content: space-between;
2313
+ gap: 24px;
2314
+ }
2315
+ @media (max-width: 768px) {
2316
+ .ncua-message-notification__content {
2317
+ flex-direction: column;
2318
+ align-items: flex-start;
2319
+ gap: 12px;
2320
+ }
2321
+ }
2322
+ .ncua-message-notification__content-wrapper {
2323
+ flex: 1;
2324
+ display: flex;
2325
+ align-items: center;
2326
+ gap: 12px;
2327
+ min-width: 0;
2328
+ }
2329
+ .ncua-message-notification__icon {
2330
+ flex-shrink: 0;
2331
+ }
2332
+ .ncua-message-notification__text-container {
2333
+ flex: 1;
2334
+ display: flex;
2335
+ flex-direction: column;
2336
+ min-width: 0;
2337
+ }
2338
+ .ncua-message-notification__title {
2339
+ font-size: var(--font-size-md);
2340
+ line-height: var(--line-heights-md);
2341
+ font-weight: var(--font-weights-commerce-sans-2);
2342
+ }
2343
+ .ncua-message-notification__supporting-text {
2344
+ font-size: var(--font-size-sm);
2345
+ line-height: var(--line-heights-sm);
2346
+ font-weight: var(--font-weights-commerce-sans-0);
2347
+ }
2348
+ .ncua-message-notification__actions-container {
2349
+ display: flex;
2350
+ align-items: center;
2351
+ gap: 8px;
2352
+ flex-shrink: 0;
2353
+ }
2354
+ @media (max-width: 768px) {
2355
+ .ncua-message-notification__actions-container {
2356
+ width: 100%;
2357
+ justify-content: flex-end;
2358
+ }
2359
+ }
2360
+ .ncua-message-notification__actions {
2361
+ display: flex;
2362
+ align-items: center;
2363
+ gap: 8px;
2364
+ }
2365
+ .ncua-message-notification__footer-container {
2366
+ display: flex;
2367
+ align-items: center;
2368
+ gap: 8px;
2369
+ justify-content: flex-end;
2370
+ }
2371
+ .ncua-message-notification__hide-link {
2372
+ text-decoration: underline;
2373
+ cursor: pointer;
2374
+ font-size: var(--font-size-xs);
2375
+ line-height: var(--line-heights-xs);
2376
+ font-weight: var(--font-weights-commerce-sans-0);
2377
+ }
2378
+ .ncua-message-notification__close-button {
2379
+ display: flex;
2380
+ align-items: center;
2381
+ justify-content: center;
2382
+ background: transparent;
2383
+ border: none;
2384
+ cursor: pointer;
2385
+ border-radius: 8px;
2386
+ padding: 8px;
2387
+ flex-shrink: 0;
2388
+ }
2389
+ .ncua-message-notification--neutral {
2390
+ color: var(--gray-600);
2391
+ background-color: var(--gray-50);
2392
+ border-radius: 8px;
2393
+ border: 1px solid var(--gray-300);
2394
+ box-shadow: var(--shadow-lg);
2395
+ }
2396
+ .ncua-message-notification--neutral .ncua-message-notification__title {
2397
+ color: var(--gray-600);
2398
+ }
2399
+ .ncua-message-notification--neutral .ncua-message-notification__supporting-text {
2400
+ color: var(--gray-500);
2401
+ opacity: 0.8;
2402
+ }
2403
+ .ncua-message-notification--neutral .ncua-notification__action-button {
2404
+ color: var(--gray-500);
2405
+ }
2406
+ .ncua-message-notification--neutral .ncua-notification__action-button--text, .ncua-message-notification--neutral .ncua-notification__action-button--text-gray {
2407
+ color: var(--gray-600);
2408
+ }
2409
+ .ncua-message-notification--neutral .ncua-message-notification__hide-link {
2410
+ color: var(--gray-500);
2411
+ }
2412
+ .ncua-message-notification--error {
2413
+ color: var(--primary-red-600);
2414
+ background-color: var(--primary-red-50);
2415
+ border-radius: 8px;
2416
+ border: 1px solid var(--primary-red-300);
2417
+ box-shadow: var(--shadow-lg);
2418
+ }
2419
+ .ncua-message-notification--error .ncua-message-notification__title {
2420
+ color: var(--primary-red-600);
2421
+ }
2422
+ .ncua-message-notification--error .ncua-message-notification__supporting-text {
2423
+ color: var(--gray-500);
2424
+ opacity: 0.8;
2425
+ }
2426
+ .ncua-message-notification--error .ncua-notification__action-button {
2427
+ color: var(--primary-red-500);
2428
+ }
2429
+ .ncua-message-notification--error .ncua-notification__action-button--text, .ncua-message-notification--error .ncua-notification__action-button--text-gray {
2430
+ color: var(--primary-red-600);
2431
+ }
2432
+ .ncua-message-notification--error .ncua-message-notification__hide-link {
2433
+ color: var(--gray-500);
2434
+ }
2435
+ .ncua-message-notification--warning {
2436
+ color: var(--orange-600);
2437
+ background-color: var(--orange-50);
2438
+ border-radius: 8px;
2439
+ border: 1px solid var(--orange-300);
2440
+ box-shadow: var(--shadow-lg);
2441
+ }
2442
+ .ncua-message-notification--warning .ncua-message-notification__title {
2443
+ color: var(--orange-600);
2444
+ }
2445
+ .ncua-message-notification--warning .ncua-message-notification__supporting-text {
2446
+ color: var(--gray-500);
2447
+ opacity: 0.8;
2448
+ }
2449
+ .ncua-message-notification--warning .ncua-notification__action-button {
2450
+ color: var(--orange-500);
2451
+ }
2452
+ .ncua-message-notification--warning .ncua-notification__action-button--text, .ncua-message-notification--warning .ncua-notification__action-button--text-gray {
2453
+ color: var(--orange-600);
2454
+ }
2455
+ .ncua-message-notification--warning .ncua-message-notification__hide-link {
2456
+ color: var(--gray-500);
2457
+ }
2458
+ .ncua-message-notification--success {
2459
+ color: var(--green-600);
2460
+ background-color: var(--green-50);
2461
+ border-radius: 8px;
2462
+ border: 1px solid var(--green-300);
2463
+ box-shadow: var(--shadow-lg);
2464
+ }
2465
+ .ncua-message-notification--success .ncua-message-notification__title {
2466
+ color: var(--green-600);
2467
+ }
2468
+ .ncua-message-notification--success .ncua-message-notification__supporting-text {
2469
+ color: var(--gray-500);
2470
+ opacity: 0.8;
2471
+ }
2472
+ .ncua-message-notification--success .ncua-notification__action-button {
2473
+ color: var(--green-500);
2474
+ }
2475
+ .ncua-message-notification--success .ncua-notification__action-button--text, .ncua-message-notification--success .ncua-notification__action-button--text-gray {
2476
+ color: var(--green-600);
2477
+ }
2478
+ .ncua-message-notification--success .ncua-message-notification__hide-link {
2479
+ color: var(--gray-500);
2480
+ }
2481
+ .ncua-message-notification .ncua-notification__action-button {
2482
+ background: transparent;
2483
+ border: none;
2484
+ padding: 0;
2485
+ vertical-align: middle;
2486
+ font-size: var(--font-size-xs);
2487
+ line-height: var(--line-heights-xs);
2488
+ font-weight: var(--font-weights-commerce-sans-0);
2489
+ }
2490
+ .ncua-message-notification .ncua-notification__action-button--text, .ncua-message-notification .ncua-notification__action-button--text-gray {
2491
+ font-weight: var(--font-weights-commerce-sans-1);
2492
+ }
2493
+
2210
2494
  .ncua-radio-input {
2211
2495
  position: relative;
2212
2496
  flex: none;
@@ -4626,12 +4910,8 @@ button {
4626
4910
  bottom: 0;
4627
4911
  left: 0;
4628
4912
  }
4629
- .ncua-horizontal-tab--button-primary .swiper-slide:first-child, .ncua-horizontal-tab--button-white .swiper-slide:first-child {
4630
- padding-left: 4px;
4631
- }
4632
- .ncua-horizontal-tab--button-primary .swiper-slide:last-child, .ncua-horizontal-tab--button-white .swiper-slide:last-child {
4633
- padding-right: 4px;
4634
- margin-right: 0;
4913
+ .ncua-horizontal-tab--button-primary .swiper-wrapper, .ncua-horizontal-tab--button-white .swiper-wrapper {
4914
+ padding: 0 4px;
4635
4915
  }
4636
4916
  .ncua-horizontal-tab--button-primary .ncua-tab-button:hover, .ncua-horizontal-tab--button-primary .ncua-tab-button.is-active {
4637
4917
  background-color: var(--gray-50);
@@ -6042,7 +6322,7 @@ span.flatpickr-weekday {
6042
6322
  }
6043
6323
  }
6044
6324
  /**
6045
- * Swiper 11.2.6
6325
+ * Swiper 11.2.10
6046
6326
  * Most modern mobile touch slider and framework with hardware accelerated transitions
6047
6327
  * https://swiperjs.com
6048
6328
  *
@@ -6050,7 +6330,7 @@ span.flatpickr-weekday {
6050
6330
  *
6051
6331
  * Released under the MIT License
6052
6332
  *
6053
- * Released on: March 19, 2025
6333
+ * Released on: June 28, 2025
6054
6334
  */
6055
6335
  /* FONT_START */
6056
6336
  @font-face {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ncds/ui-admin",
3
- "version": "1.4.1",
3
+ "version": "1.5.1",
4
4
  "description": "nhn-commerce의 어드민 디자인 시스템입니다.",
5
5
  "scripts": {
6
6
  "barrel": "node barrel.js",