kku-ui 0.1.3 → 0.2.0

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 (111) hide show
  1. package/README.md +46 -34
  2. package/lib/es/common/hooks/index.d.ts +7 -0
  3. package/lib/es/common/hooks/useCleanId.d.ts +1 -0
  4. package/lib/es/common/hooks/useDropdownPosition.d.ts +16 -0
  5. package/lib/es/common/hooks/useDynamicRefs.d.ts +4 -0
  6. package/lib/es/common/hooks/useEscapeKey.d.ts +2 -0
  7. package/lib/es/common/hooks/useSafePortalContainer.d.ts +1 -0
  8. package/lib/es/common/util/keyboard.d.ts +2 -0
  9. package/lib/es/components/{button → actions/button}/KButton.d.ts +1 -1
  10. package/lib/es/components/actions/button/KButton.interface.d.ts +18 -0
  11. package/lib/es/components/actions/button-group/KButtonGroup.d.ts +3 -0
  12. package/lib/es/components/actions/button-group/KButtonGroup.interface.d.ts +6 -0
  13. package/lib/es/components/actions/button-group/index.d.ts +2 -0
  14. package/lib/es/components/actions/index.d.ts +3 -0
  15. package/lib/es/components/actions/switch/KSwitch.interface.d.ts +8 -0
  16. package/lib/es/components/{accordion → data-display/accordion}/KAccordion.d.ts +1 -1
  17. package/lib/es/components/data-display/accordion/KAccordion.interface.d.ts +9 -0
  18. package/lib/es/components/data-display/dropdown/KDropdown.context.d.ts +3 -0
  19. package/lib/es/components/data-display/dropdown/KDropdown.d.ts +10 -0
  20. package/lib/es/components/data-display/dropdown/KDropdown.interface.d.ts +43 -0
  21. package/lib/es/components/data-display/dropdown/KDropdownContent.d.ts +3 -0
  22. package/lib/es/components/data-display/dropdown/KDropdownTrigger.d.ts +3 -0
  23. package/lib/es/components/data-display/dropdown/index.d.ts +2 -0
  24. package/lib/es/components/data-display/index.d.ts +4 -0
  25. package/lib/es/components/data-display/menu/KMenu.d.ts +12 -0
  26. package/lib/es/components/data-display/menu/KMenu.interface.d.ts +19 -0
  27. package/lib/es/components/data-display/menu/KMenuItem.d.ts +3 -0
  28. package/lib/es/components/data-display/menu/KMenuItemDivider.d.ts +3 -0
  29. package/lib/es/components/data-display/menu/KMenuItemSelectable.d.ts +3 -0
  30. package/lib/es/components/data-display/menu/index.d.ts +2 -0
  31. package/lib/es/components/data-display/skeleton/KSkeleton.d.ts +6 -0
  32. package/lib/es/components/data-display/skeleton/KSkeleton.interface.d.ts +8 -0
  33. package/lib/es/components/data-display/skeleton/index.d.ts +2 -0
  34. package/lib/es/components/feedback/backdrop/KBackdrop.d.ts +6 -0
  35. package/lib/es/components/feedback/backdrop/KBackdrop.motion.d.ts +3 -0
  36. package/lib/es/components/feedback/backdrop/index.d.ts +2 -0
  37. package/lib/es/components/feedback/index.d.ts +3 -0
  38. package/lib/es/components/feedback/modal/KModal.context.d.ts +3 -0
  39. package/lib/es/components/feedback/modal/KModal.d.ts +12 -0
  40. package/lib/es/components/feedback/modal/KModal.interface.d.ts +34 -0
  41. package/lib/es/components/feedback/modal/KModal.motion.d.ts +2 -0
  42. package/lib/es/components/feedback/modal/KModalContent.d.ts +3 -0
  43. package/lib/es/components/feedback/modal/KModalFooter.d.ts +3 -0
  44. package/lib/es/components/feedback/modal/KModalHeader.d.ts +3 -0
  45. package/lib/es/components/feedback/spinner/KSpinner.d.ts +3 -0
  46. package/lib/es/components/feedback/spinner/index.d.ts +2 -0
  47. package/lib/es/components/{icon → foundations/icon}/KIcon.interface.d.ts +4 -8
  48. package/lib/es/components/foundations/index.d.ts +1 -0
  49. package/lib/es/components/index.d.ts +5 -9
  50. package/lib/es/components/input/index.d.ts +2 -0
  51. package/lib/es/components/input/select/KSelect.interface.d.ts +16 -8
  52. package/lib/es/components/input/textfield/KTextField.d.ts +2 -2
  53. package/lib/es/components/input/textfield/KTextField.interface.d.ts +14 -18
  54. package/lib/es/core/accordion/Accordion.context.d.ts +3 -0
  55. package/lib/es/core/accordion/Accordion.d.ts +10 -0
  56. package/lib/es/core/accordion/Accordion.interface.d.ts +21 -0
  57. package/lib/es/core/accordion/AccordionContent.d.ts +6 -0
  58. package/lib/es/core/accordion/AccordionSummary.d.ts +6 -0
  59. package/lib/es/core/accordion/index.d.ts +2 -0
  60. package/lib/es/core/button/Button.d.ts +3 -0
  61. package/lib/es/core/button/index.d.ts +2 -0
  62. package/lib/es/core/index.d.ts +7 -0
  63. package/lib/es/core/menu/Menu.d.ts +3 -0
  64. package/lib/es/core/menu/Menu.interface.d.ts +11 -0
  65. package/lib/es/core/menu/index.d.ts +2 -0
  66. package/lib/es/core/menu-item/MenuItem.d.ts +3 -0
  67. package/lib/es/core/menu-item/MenuItem.interface.d.ts +12 -0
  68. package/lib/es/core/menu-item/index.d.ts +2 -0
  69. package/lib/es/core/switch/Switch.d.ts +3 -0
  70. package/lib/es/core/switch/index.d.ts +2 -0
  71. package/lib/es/core/text-field/TextField.d.ts +3 -0
  72. package/lib/es/core/text-field/index.d.ts +2 -0
  73. package/lib/es/core/transition/Transition.d.ts +6 -0
  74. package/lib/es/core/transition/index.d.ts +2 -0
  75. package/lib/es/hooks.js +22 -0
  76. package/lib/es/index.d.ts +1 -1
  77. package/lib/es/index.js +6449 -6127
  78. package/lib/es/index.js.br +0 -0
  79. package/lib/es/index.js.gz +0 -0
  80. package/lib/index.css +1 -1
  81. package/package.json +29 -22
  82. package/lib/cjs/index.js +0 -32
  83. package/lib/cjs/index.js.gz +0 -0
  84. package/lib/cjs/index.js.map +0 -1
  85. package/lib/es/common/hook/useCleanId.d.ts +0 -1
  86. package/lib/es/common/util/variation.d.ts +0 -4
  87. package/lib/es/components/accordion/KAccordion.interface.d.ts +0 -17
  88. package/lib/es/components/button/KButton.interface.d.ts +0 -26
  89. package/lib/es/components/card/KCard.d.ts +0 -6
  90. package/lib/es/components/card/KCard.interface.d.ts +0 -13
  91. package/lib/es/components/card/index.d.ts +0 -2
  92. package/lib/es/components/drop-holder/KDropHolder.d.ts +0 -3
  93. package/lib/es/components/drop-holder/KDropHolder.interface.d.ts +0 -25
  94. package/lib/es/components/drop-holder/KDropHolder.motion.d.ts +0 -3
  95. package/lib/es/components/drop-holder/index.d.ts +0 -2
  96. package/lib/es/components/input/select/KSelect.motion.d.ts +0 -3
  97. package/lib/es/components/input/select/KSelectList.d.ts +0 -3
  98. package/lib/es/components/input/switch/KSwitch.interface.d.ts +0 -10
  99. package/lib/es/components/modal/KModal.d.ts +0 -6
  100. package/lib/es/components/modal/KModal.interface.d.ts +0 -26
  101. package/lib/es/components/modal/KModal.motion.d.ts +0 -2
  102. package/lib/es/index.js.map +0 -1
  103. /package/lib/es/common/{hook → hooks}/useClickOutside.d.ts +0 -0
  104. /package/lib/es/common/{hook → hooks/useRipple}/useRipple.d.ts +0 -0
  105. /package/lib/es/components/{button → actions/button}/index.d.ts +0 -0
  106. /package/lib/es/components/{input → actions}/switch/KSwitch.d.ts +0 -0
  107. /package/lib/es/components/{input → actions}/switch/index.d.ts +0 -0
  108. /package/lib/es/components/{accordion → data-display/accordion}/index.d.ts +0 -0
  109. /package/lib/es/components/{modal → feedback/modal}/index.d.ts +0 -0
  110. /package/lib/es/components/{icon → foundations/icon}/KIcon.d.ts +0 -0
  111. /package/lib/es/components/{icon → foundations/icon}/index.d.ts +0 -0
Binary file
Binary file
package/lib/index.css CHANGED
@@ -1 +1 @@
1
- .k-ripple{position:absolute;opacity:.1;border-radius:50%;background-color:var(--kku-background-color-ripple)}@keyframes ripple-effect{0%{transform:scale(.1);opacity:.32}to{transform:scale(1);opacity:.1}}.k-button{position:relative;display:inline-flex;justify-content:center;align-items:center;margin:0;border-width:1px;border-style:solid;border-radius:var(--kku-border-radius-default);cursor:pointer;transition:border-color,background-color .24s ease;overflow:hidden;user-select:none}.k-button .k-button__content{color:inherit}.k-button:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-button[disabled]{cursor:not-allowed}.k-button[disabled].k-button--color:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--kku-primary-color-default)}.k-button .k-button__content{white-space:nowrap}.k-button.k-button--default{color:var(--kku-text-color-primary);border-color:var(--kku-border-color-default);background-color:var(--kku-background-color-default)}.k-button.k-button--default:hover{border-color:var(--kku-border-color-hover);background-color:var(--kku-background-color-hover)}.k-button.k-button--default[disabled]{color:var(--kku-text-color-disabled);border-color:var(--kku-border-color-disabled);background-color:var(--kku-background-color-disabled)}.k-button.k-button--primary{color:var(--kku-white-color);border-color:var(--kku-primary-color-default);background-color:var(--kku-primary-color-default)}.k-button.k-button--primary:hover{color:var(--kku-white-color);border-color:var(--kku-primary-color-hover);background-color:var(--kku-primary-color-hover)}.k-button.k-button--primary[disabled]{color:var(--kku-gray-color-300);border-color:var(--kku-primary-color-disabled);background-color:var(--kku-primary-color-disabled)}.k-button.k-button--outlined{color:var(--kku-text-color-primary);border-color:var(--kku-gray-color-900);background:none}.k-button.k-button--outlined:hover{color:var(--kku-text-color-secondary);background-color:var(--kku-background-color-hover)}.k-button.k-button--outlined[disabled]{color:var(--kku-text-color-disabled);border-color:var(--kku-gray-color-600);background-color:var(--kku-gray-color-100)}.k-button.k-button--success{color:var(--kku-white-color);border-color:var(--kku-success-color-default);background-color:var(--kku-success-color-default)}.k-button.k-button--success:hover{color:var(--kku-white-color);border-color:var(--kku-success-color-hover);background-color:var(--kku-success-color-hover)}.k-button.k-button--success[disabled]{color:var(--kku-gray-color-300);border-color:var(--kku-success-color-disabled);background-color:var(--kku-success-color-disabled)}.k-button.k-button--warning{color:var(--kku-white-color);border-color:var(--kku-warning-color-default);background-color:var(--kku-warning-color-default)}.k-button.k-button--warning:hover{color:var(--kku-white-color);border-color:var(--kku-warning-color-hover);background-color:var(--kku-warning-color-hover)}.k-button.k-button--warning[disabled]{color:var(--kku-gray-color-300);border-color:var(--kku-warning-color-disabled);background-color:var(--kku-warning-color-disabled)}.k-button.k-button--error{color:var(--kku-white-color);border-color:var(--kku-error-color-default);background-color:var(--kku-error-color-default)}.k-button.k-button--error:hover{color:var(--kku-white-color);border-color:var(--kku-error-color-hover);background-color:var(--kku-error-color-hover)}.k-button.k-button--error[disabled]{color:var(--kku-gray-color-300);border-color:var(--kku-error-color-disabled);background-color:var(--kku-error-color-disabled)}.k-button.k-button--small{height:var(--kku-element-height-small);padding:0 var(--kku-spacing-10)}.k-button.k-button--small .k-button__content{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-button.k-button--medium{height:var(--kku-element-height-medium);padding:0 var(--kku-spacing-16)}.k-button.k-button--medium .k-button__content{font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.dark .k-button.k-button--outlined{border-color:var(--kku-gray-color-100);background-color:none}.dark .k-button.k-button--outlined:hover{color:var(--kku-text-color-secondary)}.dark .k-button.k-button--outlined[disabled]{color:var(--kku-text-color-disabled);border-color:var(--kku-gray-color-400);background-color:var(--kku-gray-color-900)}.k-text-field{position:relative;display:inline-flex;flex-direction:column;width:100%}.k-text-field .k-text-field__label{display:inline-flex;justify-content:flex-start;align-items:center;width:auto}.k-text-field .k-text-field__label .k-text-field__label__text{color:var(--kku-text-color-primary);white-space:nowrap}.k-text-field .k-text-field__label .k-text-field__label--required{color:var(--kku-error-color-default);margin-left:var(--kku-spacing-2)}.k-text-field .k-text-field__input{position:relative;display:inline-flex;width:100%}.k-text-field .k-text-field__input .k-text-field__input__left-action,.k-text-field .k-text-field__input .k-text-field__input__right-action{display:flex;justify-content:flex-start;align-items:center}.k-text-field .k-text-field__input .k-text-field__input__root{width:100%;height:100%;color:var(--kku-text-color-primary);border:1px solid var(--kku-border-color-default);background-color:var(--kku-background-color-default);border-radius:var(--kku-border-radius-default);transition:.24s ease;transition-property:color,border-color,background-color}.k-text-field .k-text-field__input .k-text-field__input__root:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-text-field .k-text-field__input .k-text-field__input__icon{position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;height:100%}.k-text-field .k-text-field__input:hover .k-text-field__input__root{color:var(--kku-text-color-secondary);border-color:var(--kku-border-color-hover)}.k-text-field.k-text-field--disabled .k-text-field__label .k-text-field__label__text{color:var(--kku-text-color-disabled)}.k-text-field.k-text-field--disabled .k-text-field__input .k-text-field__input__root{color:var(--kku-text-color-disabled);border-color:var(--kku-border-color-disabled);background-color:var(--kku-background-color-disabled);cursor:not-allowed}.k-text-field.k-text-field--small{max-width:200px}.k-text-field.k-text-field--small .k-text-field__label{margin-bottom:var(--kku-spacing-6);font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-text-field.k-text-field--small .k-text-field__input{height:var(--kku-element-height-small)}.k-text-field.k-text-field--small .k-text-field__input .k-text-field__input__left-action{margin-right:var(--kku-spacing-4)}.k-text-field.k-text-field--small .k-text-field__input .k-text-field__input__right-action{margin-left:var(--kku-spacing-4)}.k-text-field.k-text-field--small .k-text-field__input .k-text-field__input__root{padding:0 var(--kku-spacing-6);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-text-field.k-text-field--small .k-text-field__input__icon{gap:var(--kku-spacing-4);padding:0 var(--kku-spacing-6);z-index:1}.k-text-field.k-text-field--medium{max-width:280px}.k-text-field.k-text-field--medium .k-text-field__label{margin-bottom:var(--kku-spacing-8);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-text-field.k-text-field--medium .k-text-field__input{height:var(--kku-element-height-medium)}.k-text-field.k-text-field--medium .k-text-field__input .k-text-field__input__left-action{margin-right:var(--kku-spacing-6)}.k-text-field.k-text-field--medium .k-text-field__input .k-text-field__input__right-action{margin-left:var(--kku-spacing-6)}.k-text-field.k-text-field--medium .k-text-field__input .k-text-field__input__root{padding:0 var(--kku-spacing-10);font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.k-text-field.k-text-field--medium .k-text-field__input__icon{gap:var(--kku-spacing-6);padding:0 var(--kku-spacing-10)}.dark .k-text-field.k-text-field--disabled .k-text-field__label .k-text-field__label__text{color:var(--kku-text-color-disabled)}.k-icon{display:inline-flex;justify-content:center;align-items:center;color:var(--kku-gray-color-700);fill:var(--kku-gray-color-700);user-select:none}.k-icon.k-icon--clickable{cursor:pointer}.k-icon.k-icon--disabled{color:var(--kku-text-color-disabled);fill:var(--kku-text-color-disabled);cursor:not-allowed}.k-icon.k-icon--large{width:42px;height:42px}.k-icon.k-icon--medium{width:36px;height:36px}.k-icon.k-icon--small{width:28px;height:28px}.k-icon svg{width:100%;height:100%}.dark .k-icon{color:var(--kku-gray-color-300);fill:var(--kku-gray-color-300)}.dark .k-icon.k-icon--disabled{color:var(--kku-text-color-disabled);fill:var(--kku-text-color-disabled)}.k-select{position:relative;display:inline-flex;white-space:nowrap;font-size:0;cursor:pointer;user-select:none}.k-select.k-select--open .k-select__label .k-select__label__arrow-icon{color:var(--kku-border-color-hover);transform:rotate(180deg)}.k-select .k-select__label{position:relative;display:flex;justify-content:space-between;align-items:center;gap:var(--kku-spacing-8);border-width:1px;border-style:solid;border-color:var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);background:var(--kku-background-color-default);transition:.24s ease;transition-property:color,border-color;overflow:hidden}.k-select .k-select__label:hover{border-color:var(--kku-border-color-hover)}.k-select .k-select__label:hover .k-select__label__arrow-icon{color:var(--kku-border-color-hover)}.k-select .k-select__label:hover .k-select__label__text>.k-select__label__text__placeholder{color:var(--kku-text-color-primary)}.k-select .k-select__label:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-select .k-select__label .k-select__label__text{color:var(--kku-text-color-primary);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.k-select .k-select__label .k-select__label__text .k-select__label__text__placeholder{color:var(--kku-text-color-placeholder)}.k-select .k-select__label .k-select__label__arrow-icon{color:var(--kku-border-color-default);transition:color,transform .3s ease}.k-select .k-select__label .k-ripple{background-color:var(--kku-background-color-ripple)}.k-select.k-select--disabled .k-select__label{color:var(--kku-text-color-disabled);border-color:var(--kku-border-color-disabled);background:var(--kku-background-color-disabled);cursor:not-allowed}.k-select .k-select__label{color:var(--kku-text-color-primary);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.k-select .k-select__list{position:absolute;top:100%;left:0;width:100%;border-radius:var(--kku-border-radius-default)}.k-select .k-select__list .k-select__list__item{display:flex;justify-content:flex-start;align-items:center;border:1px solid var(--kku-border-color-default);background-color:var(--kku-background-color-default);transition:.24s ease;transition-property:color,border,background-color}.k-select .k-select__list .k-select__list__item .select__list__item--check-icon{color:var(--kku-black-color)}.k-select .k-select__list .k-select__list__item .k-select__list__item__text{color:var(--kku-text-color-primary);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.k-select .k-select__list .k-select__list__item:hover{border-color:var(--kku-border-color-hover)}.k-select .k-select__list .k-select__list__item:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-select .k-select__list .k-select__list__item:hover+.k-select__list__item{border-top:1px solid var(--kku-border-color-hover)}.k-select .k-select__list .k-select__list__item:first-child{border-top-left-radius:var(--kku-border-radius-default);border-top-right-radius:var(--kku-border-radius-default);border-bottom:none}.k-select .k-select__list .k-select__list__item:not(.k-select .k-select__list .k-select__list__item:first-child,.k-select .k-select__list .k-select__list__item:last-child){border-bottom:none}.k-select .k-select__list .k-select__list__item:last-child{border-bottom-left-radius:var(--kku-border-radius-default);border-bottom-right-radius:var(--kku-border-radius-default)}.k-select .k-select__list .k-select__list__item.k-select__list__item--no-data{border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default)}.k-select.k-select--small .k-select__label{width:120px;height:var(--kku-element-height-small);padding:0 var(--kku-spacing-6)}.k-select.k-select--small .k-select__label .k-select__label__text{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-select.k-select--small .k-select__list .k-select__list__item{gap:4px;height:var(--kku-element-height-small);padding:0 var(--kku-spacing-6)}.k-select.k-select--small .k-select__list .k-select__list__item .k-select__list__item__text{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-select.k-select--medium .k-select__label{width:144px;height:var(--kku-element-height-medium);padding:0 var(--kku-spacing-10)}.k-select.k-select--medium .k-select__label .k-select__label__text{font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.k-select.k-select--medium .k-select__list .k-select__list__item{gap:6px;height:var(--kku-element-height-medium);padding:0 var(--kku-spacing-10)}.k-select.k-select--medium .k-select__list .k-select__list__item .k-select__list__item__text{font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.dark .k-select .k-select__label .k-select__label__arrow-icon,.dark .k-select .k-select__list__item .select__list__item--check-icon{color:var(--kku-white-color)}.k-drop-holder{position:relative;display:inline-flex;justify-content:center;align-items:center;cursor:pointer}.k-drop-holder .k-drop-holder__content{position:fixed;will-change:transform}.k-switch{position:relative;display:inline-flex;justify-content:flex-start;align-items:center}.k-switch .k-switch__input{display:none}.k-switch.k-switch--on.k-switch--small .k-switch__label{background-color:var(--kku-primary-color-default)}.k-switch.k-switch--on.k-switch--small .k-switch__label .k-switch__label__ball{left:calc(100% - 23px)}.k-switch.k-switch--on.k-switch--medium .k-switch__label{background-color:var(--kku-primary-color-default)}.k-switch.k-switch--on.k-switch--medium .k-switch__label .k-switch__label__ball{left:calc(100% - 27px)}.k-switch .k-switch__label{position:relative;width:50px;height:24px;background-color:var(--kku-gray-color-300);transition:background-color .24s ease-out;cursor:pointer;overflow:hidden}.k-switch .k-switch__label:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-switch .k-switch__label .k-switch__label__ball{position:absolute;top:3px;left:3px;border-radius:50%;background-color:var(--kku-white-color);transition:left .24s ease}.k-switch.k-switch--small .k-switch__label{width:48px;height:26px;border-radius:13px}.k-switch.k-switch--small .k-switch__label .k-switch__label__ball{width:20px;height:20px}.k-switch.k-switch--medium .k-switch__label{width:54px;height:30px;border-radius:15px}.k-switch.k-switch--medium .k-switch__label .k-switch__label__ball{width:24px;height:24px}.k-switch.k-switch--disabled .k-switch__label{cursor:not-allowed}.k-switch.k-switch--disabled .k-switch__label:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00000029}.dark .k-switch .k-switch__label{background-color:var(--kku-gray-color-700)}.k-card{display:inline-flex;border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);transition:.24s ease;transition-property:border,background-color}.k-card .k-card__container{position:relative;flex-direction:column;padding:var(--kku-spacing-12);background-color:var(--kku-background-color-default);color:var(--kku-text-color-primary);font-family:var(--font-family);overflow:hidden}.k-card .k-card__container .k-card__title{font-size:var(--kku-text-size-large);line-height:var(--kku-line-height-large);font-weight:700}.k-card .k-card__container .k-card__title+.k-card__subtitle{margin-top:var(--kku-spacing-8)}.k-card.k-card--clickable{transition:.24s ease;transition-property:box-shadow,background-color,transform}.k-card.k-card--clickable .k-card__container{cursor:pointer}.k-card.k-card--clickable:hover{box-shadow:var(--kku-box-shadow-default);transform:translateY(-2px)}.k-card.k-card--clickable:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-card.k-card--disabled .k-card__container{cursor:not-allowed;background-color:var(--kku-background-color-disabled);color:var(--kku-text-color-disabled)}.k-card.k-card--disabled:hover{box-shadow:none;transform:none}.k-accordion{border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);color:var(--kku-text-color-primary);background-color:var(--kku-background-color-default)}.k-accordion.k-accordion--open .k-accordion__summary__icon__wrapper .k-accordion__summary__icon{transform:rotate(180deg)}.k-accordion.k-accordion--open .k-accordion__summary{border-bottom:1px solid var(--kku-border-color-default)}.k-accordion .k-accordion__summary{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid transparent;transition:.3s ease;transition-property:border,background-color;list-style-type:none;user-select:none;cursor:pointer}.k-accordion .k-accordion__summary:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:2px}.k-accordion .k-accordion__summary:hover{background-color:var(--kku-background-color-hover)}.k-accordion .k-accordion__summary::-webkit-details-marker{display:none}.k-accordion .k-accordion__summary .k-accordion__summary__container{display:flex;align-items:center;justify-content:flex-start;color:var(--default-font-color)}.k-accordion .k-accordion__summary .k-accordion__summary__icon__wrapper{display:flex;justify-content:center;align-items:center}.k-accordion .k-accordion__summary .k-accordion__summary__icon__wrapper .k-accordion__summary__icon{transition:.3s ease;transition-property:transform;cursor:pointer}.k-accordion .k-accordion__content{max-height:0;height:auto;background-color:var(--white-color);overflow:hidden;transition:max-height .3s ease}.k-accordion.k-accordion--large{font-size:var(--kku-text-size-large);line-height:var(--kku-line-height-large)}.k-accordion.k-accordion--large .k-accordion__summary,.k-accordion.k-accordion--large .k-accordion__content__wrapper{padding:var(--kku-spacing-16)}.k-accordion.k-accordion--large .k-accordion__summary__icon~.k-accordion__summary__text{margin-left:var(--kku-spacing-12)}.k-accordion.k-accordion--medium{font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.k-accordion.k-accordion--medium .k-accordion__summary,.k-accordion.k-accordion--medium .k-accordion__content__wrapper{padding:var(--kku-spacing-12) var(--kku-spacing-16)}.k-accordion.k-accordion--medium .k-accordion__summary__icon~.k-accordion__summary__text{margin-left:var(--kku-spacing-10)}.k-accordion.k-accordion--small{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-accordion.k-accordion--small .k-accordion__summary,.k-accordion.k-accordion--small .k-accordion__content__wrapper{padding:var(--kku-spacing-8) var(--kku-spacing-12)}.k-accordion.k-accordion--small .k-accordion__summary__icon~.k-accordion__summary__text{margin-left:var(--kku-spacing-8)}:root{--kku-gray-color-100: #F2F3F4;--kku-gray-color-200: #ECEDEF;--kku-gray-color-300: #DBDADE;--kku-gray-color-400: #808793;--kku-gray-color-500: #737A84;--kku-gray-color-600: #6A707A;--kku-gray-color-700: #60656E;--kku-gray-color-800: #4D5158;--kku-gray-color-900: #3A3D42;--kku-blue-color-100: #E6F1FE;--kku-blue-color-200: #D5E9FF;--kku-blue-color-300: #A1CFFF;--kku-blue-color-400: #0074F0;--kku-blue-color-500: #0068D8;--kku-blue-color-600: #005DC0;--kku-blue-color-700: #0057B4;--kku-blue-color-800: #004690;--kku-blue-color-900: #00346C;--kku-green-color-100: #F1FEEE;--kku-green-color-200: #EAFFEE;--kku-green-color-300: #D4FFCB;--kku-green-color-400: #73F557;--kku-green-color-500: #68E64E;--kku-green-color-600: #5CCC46;--kku-green-color-700: #58BF41;--kku-green-color-800: #459934;--kku-green-color-900: #347327;--kku-orange-color-100: #FEF4E8;--kku-orange-color-200: #FEF0DD;--kku-orange-color-300: #FDDEB8;--kku-orange-color-400: #F7931A;--kku-orange-color-500: #DE8417;--kku-orange-color-600: #C67615;--kku-orange-color-700: #B96E14;--kku-orange-color-800: #945810;--kku-orange-color-900: #6F420C;--kku-red-color-100: #FEE6E6;--kku-red-color-200: #FDDD9D;--kku-red-color-300: #FBBB1B;--kku-red-color-400: #F10404;--kku-red-color-500: #D90404;--kku-red-color-600: #C10303;--kku-red-color-700: #B50303;--kku-red-color-800: #910202;--kku-red-color-900: #6C0202;--kku-white-color: #ffffff;--kku-black-color: #000000;--kku-text-size-xlarge: 24px;--kku-text-size-large: 18px;--kku-text-size-medium: 16px;--kku-text-size-small: 14px;--kku-text-size-xsmall: 12px;--kku-line-height-xlarge: 26px;--kku-line-height-large: 20px;--kku-line-height-medium: 18px;--kku-line-height-small: 16px;--kku-line-height-xsize: 14px;--kku-spacing-2: 2px;--kku-spacing-4: 4px;--kku-spacing-6: 6px;--kku-spacing-8: 8px;--kku-spacing-10: 10px;--kku-spacing-12: 12px;--kku-spacing-14: 14px;--kku-spacing-16: 16px;--kku-spacing-20: 20px;--kku-spacing-24: 24px;--kku-spacing-28: 28px;--kku-spacing-32: 32px;--kku-spacing-36: 36px;--kku-spacing-40: 40px;--kku-spacing-44: 44px;--kku-spacing-48: 48px;--kku-spacing-52: 52px;--kku-spacing-56: 56px;--kku-spacing-60: 60px;--kku-spacing-64: 64px;--kku-spacing-68: 68px;--kku-spacing-72: 72px;--kku-spacing-76: 76px;--kku-spacing-80: 80px;--kku-border-radius-default: 3px;--kku-default-font-family: "Arial", sans-serif;--kku-z-idnex-0: 0;--kku-z-idnex-1: 1;--kku-z-idnex-10: 10;--kku-z-idnex-100: 100;--kku-z-idnex-200: 200;--kku-z-idnex-500: 500;--kku-z-idnex-1000: 1000;--kku-z-idnex-1001: 1001;--kku-z-idnex-5000: 5000;--kku-z-idnex-9999: 9999;--kku-box-shadow-default: rgba(0, 0, 0, .2) 0px 12px 28px 0px, rgba(0, 0, 0, .1) 0px 2px 4px 0px, rgba(255, 255, 255, .05) 0px 0px 0px 1px inset}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;font-family:var(--kku-default-font-family)}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}*{box-sizing:border-box}:root{--kku-text-color-primary: var(--kku-gray-color-900);--kku-text-color-secondary: var(--kku-gray-color-700);--kku-text-color-tertiary: var(--kku-gray-color-500);--kku-text-color-disabled: var(--kku-gray-color-400);--kku-text-color-link: var(--kku-blue-color-400);--kku-text-color-placeholder: var(--kku-gray-color-600);--kku-border-color-default: var(--kku-gray-color-300);--kku-border-color-hover: var(--kku-gray-color-500);--kku-border-color-disabled: var(--kku-gray-color-300);--kku-background-color-default: var(--kku-white-color);--kku-background-color-hover: var(--kku-gray-color-100);--kku-background-color-disabled: var(--kku-gray-color-200);--kku-background-color-ripple: var(--kku-gray-color-900);--kku-primary-color-default: var(--kku-blue-color-400);--kku-primary-color-hover: var(--kku-blue-color-500);--kku-primary-color-disabled: var(--kku-blue-color-800);--kku-success-color-default: var(--kku-green-color-600);--kku-success-color-hover: var(--kku-green-color-700);--kku-success-color-disabled: var(--kku-green-color-800);--kku-warning-color-default: var(--kku-orange-color-400);--kku-warning-color-hover: var(--kku-orange-color-500);--kku-warning-color-disabled: var(--kku-orange-color-800);--kku-error-color-default: var(--kku-red-color-500);--kku-error-color-hover: var(--kku-red-color-600);--kku-error-color-disabled: var(--kku-red-color-800);--kku-focus-visible-color: var(--kku-blue-color-300);--kku-element-height-medium: 34px;--kku-element-height-small: 30px;--kku-modal-overlay-z-index: var(--kku-z-idnex-1000);--kku-modal-content-z-index: var(--kku-z-idnex-1001)}:root .dark{--kku-text-color-primary: var(--kku-gray-color-100);--kku-text-color-secondary: var(--kku-gray-color-300);--kku-text-color-tertiary: var(--kku-gray-color-500);--kku-text-color-disabled: var(--kku-gray-color-600);--kku-text-color-link: var(--kku-blue-color-400);--kku-border-color-default: var(--kku-gray-color-700);--kku-border-color-hover: var(--kku-gray-color-700);--kku-border-color-disabled: var(--kku-gray-color-700);--kku-background-color-default: var(--kku-gray-color-900);--kku-background-color-hover: var(--kku-gray-color-800);--kku-background-color-disabled: var(--kku-gray-color-800);--kku-background-color-ripple: var(--kku-gray-color-300)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.k-modal{position:fixed;top:0;left:0;width:100dvw;height:100dvh;color:var(--kku-text-color-primary)}.k-modal .k-modal__container{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;background-color:var(--kku-background-color-default);border-radius:var(--kku-border-radius-default);box-shadow:var(--kku-box-shadow-default);z-index:var(--kku-modal-content-z-index);overflow:hidden}.k-modal .k-modal__container.k-modal__container--small{max-width:640px}.k-modal .k-modal__container.k-modal__container--medium{max-width:824px}.k-modal .k-modal__container.k-modal__container--large{max-width:1040px}.k-modal .k-modal__container .k-modal__container__header{display:flex;justify-content:space-between;align-items:center;width:100%;padding:var(--kku-spacing-12) var(--kku-spacing-16);border-bottom:.5px solid var(--kku-gray-color-300)}.k-modal .k-modal__container .k-modal__container__header .k-modal__container__header__text{font-size:var(--kku-text-size-large);line-height:var(--kku-line-height-large);font-weight:700}.k-modal .k-modal__container .k-modal__container__content{padding:var(--kku-spacing-12) var(--kku-spacing-16);font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.k-modal .k-modal__container.k-modal__container--no-title .k-modal__container__content{padding:var(--kku-spacing-16)}.k-modal .k-modal__container .k-modal__container__footer{display:flex;justify-content:center;align-items:center;gap:8px;padding:0 var(--kku-spacing-16) var(--kku-spacing-12) var(--kku-spacing-16)}.k-modal .k-modal__overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:var(--kku-modal-overlay-z-index)}.k-modal .k-modal__overlay.k-modal__overlay--active{background-color:var(--kku-gray-color-900);opacity:.48}.k-modal .k-modal__overlay.k-modal__overlay--transparent{background-color:transparent;opacity:0}.dark .k-modal .k-modal__overlay.k-modal__overlay--active{background-color:var(--kku-gray-color-200)}
1
+ @font-face{font-family:Pretendard;src:local("Pretendard Medium"),url("fonts/pretendard/Pretendard-Medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Pretendard;src:local("Pretendard Regular"),url("fonts/pretendard/Pretendard-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Pretendard;src:local("Pretendard Bold"),url("fonts/pretendard/Pretendard-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}:root{--kku-gray-color-100: #ededed;--kku-gray-color-200: #e3e3e3;--kku-gray-color-300: #c6c6c6;--kku-gray-color-400: #474747;--kku-gray-color-500: #404040;--kku-gray-color-600: #393939;--kku-gray-color-700: #353535;--kku-gray-color-800: #2b2b2b;--kku-gray-color-900: #202020;--kku-slate-color-100: #f7f8fb;--kku-slate-color-200: #f3f5f8;--kku-slate-color-300: #e7ebf1;--kku-slate-color-400: #b0bdd2;--kku-slate-color-500: #9eaabd;--kku-slate-color-600: #8d97a8;--kku-slate-color-700: #848e9e;--kku-slate-color-800: #6a717e;--kku-slate-color-900: #4f555e;--kku-blue-color-100: #e6effc;--kku-blue-color-200: #d9e7fa;--kku-blue-color-300: #b0cdf5;--kku-blue-color-400: #005ee0;--kku-blue-color-500: #0055ca;--kku-blue-color-600: #004bb3;--kku-blue-color-700: #0047a8;--kku-blue-color-800: #003886;--kku-blue-color-900: #002a65;--kku-green-color-100: #F1FEEE;--kku-green-color-200: #EAFFEE;--kku-green-color-300: #D4FFCB;--kku-green-color-400: #0f6bff;--kku-green-color-500: #68E64E;--kku-green-color-600: #5CCC46;--kku-green-color-700: #58BF41;--kku-green-color-800: #459934;--kku-green-color-900: #347327;--kku-orange-color-100: #FEF4E8;--kku-orange-color-200: #FEF0DD;--kku-orange-color-300: #FDDEB8;--kku-orange-color-400: #F7931A;--kku-orange-color-500: #DE8417;--kku-orange-color-600: #C67615;--kku-orange-color-700: #B96E14;--kku-orange-color-800: #945810;--kku-orange-color-900: #6F420C;--kku-red-color-100: #FEE6E6;--kku-red-color-200: #fdd9d9;--kku-red-color-300: #fbb1b1;--kku-red-color-400: #F10404;--kku-red-color-500: #D90404;--kku-red-color-600: #C10303;--kku-red-color-700: #B50303;--kku-red-color-800: #910202;--kku-red-color-900: #6C0202;--kku-white-color: #ffffff;--kku-black-color: #000000;--kku-white-hover-dim: rgba(255, 255, 255, .16);--kku-white-active-dim: rgba(255, 255, 255, .24);--kku-black-hover-dim: rgba(0, 0, 0, .16);--kku-black-active-dim: rgba(0, 0, 0, .24);--kku-text-size-xlarge: 24px;--kku-text-size-large: 18px;--kku-text-size-medium: 16px;--kku-text-size-small: 14px;--kku-text-size-xsmall: 12px;--kku-text-size-xxsmall: 10px;--kku-line-height-xlarge: 26px;--kku-line-height-large: 20px;--kku-line-height-medium: 18px;--kku-line-height-small: 16px;--kku-line-height-xsize: 14px;--kku-line-height-xxsmall: 12px;--kku-spacing-2: 2px;--kku-spacing-4: 4px;--kku-spacing-6: 6px;--kku-spacing-8: 8px;--kku-spacing-10: 10px;--kku-spacing-12: 12px;--kku-spacing-14: 14px;--kku-spacing-16: 16px;--kku-spacing-20: 20px;--kku-spacing-24: 24px;--kku-spacing-28: 28px;--kku-spacing-32: 32px;--kku-spacing-36: 36px;--kku-spacing-40: 40px;--kku-spacing-44: 44px;--kku-spacing-48: 48px;--kku-spacing-52: 52px;--kku-spacing-56: 56px;--kku-spacing-60: 60px;--kku-spacing-64: 64px;--kku-spacing-68: 68px;--kku-spacing-72: 72px;--kku-spacing-76: 76px;--kku-spacing-80: 80px;--kku-border-radius-default: 3px;--kku-bottom-sheet-border-radius: 16px;--kku-default-font-family: "Pretendard", "Arial", sans-serif;--kku-z-idnex-0: 0;--kku-z-idnex-1: 1;--kku-z-idnex-10: 10;--kku-z-idnex-100: 100;--kku-z-idnex-200: 200;--kku-z-idnex-500: 500;--kku-z-idnex-1000: 1000;--kku-z-idnex-1001: 1001;--kku-z-idnex-2000: 2000;--kku-z-idnex-2001: 2001;--kku-z-idnex-5000: 5000;--kku-z-idnex-9999: 9999;--kku-box-shadow-default: rgba(0, 0, 0, .2) 0px 12px 28px 0px, rgba(0, 0, 0, .1) 0px 2px 4px 0px, rgba(255, 255, 255, .05) 0px 0px 0px 1px inset}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;font-family:var(--kku-default-font-family)}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}*{box-sizing:border-box}:root{--kku-text-color-default: var(--kku-gray-color-900);--kku-text-color-hover: var(--kku-gray-color-900);--kku-text-color-disabled: var(--kku-slate-color-400);--kku-text-color-link: var(--kku-blue-color-400);--kku-text-color-label: var(--kku-slate-color-800);--kku-text-color-placeholder: var(--kku-slate-color-800);--kku-border-color-default: var(--kku-slate-color-500);--kku-border-color-hover: var(--kku-slate-color-800);--kku-border-color-disabled: var(--kku-slate-color-400);--kku-background-color-default: var(--kku-white-color);--kku-background-color-hover: var(--kku-slate-color-100);--kku-background-color-disabled: var(--kku-slate-color-100);--kku-backdrop-background-color-light: var(--kku-black-color);--kku-backdrop-background-color-dark: var(--kku-slate-color-200);--kku-ripple-background-color: var(--kku-gray-color-500);--kku-primary-color-default: var(--kku-blue-color-400);--kku-primary-color-hover: var(--kku-blue-color-500);--kku-primary-color-disabled: var(--kku-blue-color-800);--kku-success-color-default: var(--kku-green-color-600);--kku-success-color-hover: var(--kku-green-color-700);--kku-success-color-disabled: var(--kku-green-color-800);--kku-warning-color-default: var(--kku-orange-color-400);--kku-warning-color-hover: var(--kku-orange-color-500);--kku-warning-color-disabled: var(--kku-orange-color-800);--kku-error-color-default: var(--kku-red-color-600);--kku-error-color-hover: var(--kku-red-color-700);--kku-error-color-disabled: var(--kku-red-color-800);--kku-focus-visible-color: var(--kku-blue-color-400);--kku-element-height-medium: 36px;--kku-element-height-small: 28px;--kku-modal-content-z-index: var(--kku-z-idnex-1001);--kku-bottom-sheet-z-index: var(--kku-z-idnex-1001);--kku-full-screen-loader-z-index: var(--kku-z-idnex-1001)}:root .dark{--kku-text-color-link: var(--kku-blue-color-400);--kku-border-color-default: var(--kku-slate-color-700);--kku-border-color-hover: var(--kku-slate-color-700);--kku-border-color-disabled: var(--kku-slate-color-700);--kku-background-color-default: var(--kku-slate-color-900);--kku-background-color-hover: var(--kku-slate-color-800);--kku-background-color-disabled: var(--kku-slate-color-800);--kku-ripple-background-color: var(--kku-slate-color-300)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{0%{opacity:1}50%{opacity:.4}to{opacity:1}}@keyframes wave{0%{left:-150px}to{left:100%}}.k-button{position:relative;display:inline-flex;justify-content:center;align-items:center;margin:0;border-width:1px;border-style:solid;border-radius:var(--kku-border-radius-default);cursor:pointer;overflow:hidden;user-select:none;font-family:var(--kku-default-font-family);transition:.16s ease;transition-property:background,border-color}.k-button:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:var(--kku-spacing-2);border-radius:var(--kku-border-radius-default);z-index:1}.k-button+.k-button{margin-left:var(--kku-spacing-8)}.k-button.k-button--disabled{cursor:not-allowed}.k-button.k-button--outlined{color:var(--kku-text-color-default);border-color:var(--kku-border-color-default);background:var(--kku-background-color-default)}.k-button.k-button--outlined:hover:not(.k-button--disabled){border-color:var(--kku-slate-color-700);background:var(--kku-background-color-hover)}.k-button.k-button--outlined.k-button--disabled{color:var(--kku-text-color-disabled);border-color:var(--kku-border-color-disabled);background:var(--kku-background-color-disabled)}.k-button.k-button--solid{color:var(--kku-white-color);border:none;background-color:var(--kku-black-color)}.k-button.k-button--solid:hover:not(.k-button--disabled){background:linear-gradient(0deg,#ffffff26 0% 100%),var(--kku-black-color)}.k-button.k-button--solid.k-button--disabled{color:var(--kku-slate-color-500);border-color:var(--kku-slate-color-900);background:var(--kku-slate-color-900)}.k-button.k-button--primary{color:var(--kku-white-color);border-color:var(--kku-primary-color-default);background-color:var(--kku-primary-color-default)}.k-button.k-button--primary:hover{color:var(--kku-white-color);border-color:var(--kku-primary-color-hover);background-color:var(--kku-primary-color-hover)}.k-button.k-button--primary.k-button--disabled{color:var(--kku-slate-color-300);border-color:var(--kku-primary-color-disabled);background-color:var(--kku-primary-color-disabled)}.k-button.k-button--subtle{color:var(--kku-text-color-default);border-color:var(--kku-slate-color-200);background:var(--kku-slate-color-200)}.k-button.k-button--subtle:hover:not(.k-button--disabled){border-color:var(--kku-slate-color-300);background:var(--kku-slate-color-300)}.k-button.k-button--subtle.k-button--disabled{color:var(--kku-slate-color-600)}.k-button.k-button--plain{color:var(--kku-text-color-default);border-color:transparent;background:transparent}.k-button.k-button--plain:hover{color:var(--kku-text-color-hover)}.k-button.k-button--plain.k-button--disabled{color:var(--kku-text-color-disabled)}.k-button.k-button--danger.k-button--outlined{color:var(--kku-error-color-default);border-color:var(--kku-error-color-default);background-color:var(--kku-background-color-default)}.k-button.k-button--danger.k-button--outlined:hover{color:var(--kku-error-color-hover);border-color:var(--kku-error-color-hover);background-color:var(--kku-background-color-default)}.k-button.k-button--danger.k-button--outlined.k-button--disabled{border-color:var(--kku-error-color-disabled);background-color:var(--kku-background-color-disabled)}.k-button.k-button--danger.k-button--solid,.k-button.k-button--danger.k-button--primary,.k-button.k-button--danger.k-button--subtle{color:var(--kku-white-color);border-color:var(--kku-error-color-default);background-color:var(--kku-error-color-default)}.k-button.k-button--danger.k-button--solid:hover,.k-button.k-button--danger.k-button--primary:hover,.k-button.k-button--danger.k-button--subtle:hover{border-color:var(--kku-error-color-hover);background-color:var(--kku-error-color-hover)}.k-button.k-button--danger.k-button--solid.k-button--disabled,.k-button.k-button--danger.k-button--primary.k-button--disabled,.k-button.k-button--danger.k-button--subtle.k-button--disabled{color:var(--kku-text-color-disabled);border-color:var(--kku-error-color-disabled);background-color:var(--kku-error-color-disabled)}.k-button.k-button--danger.k-button--plain{color:var(--kku-error-color-default)}.k-button.k-button--danger.k-button--plain:hover{color:var(--kku-error-color-hover)}.k-button.k-button--danger.k-button--plain.k-button--disabled{color:var(--kku-error-color-disabled)}.k-button.k-button--small{height:30px;padding:0 var(--kku-spacing-12);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-button.k-button--medium{height:36px;padding:0 var(--kku-spacing-20);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-button-group{white-space:nowrap}.k-button-group .k-button:first-child{border-top-left-radius:var(--kku-border-radius-default);border-bottom-left-radius:var(--kku-border-radius-default)}.k-button-group .k-button:last-child{border-top-right-radius:var(--kku-border-radius-default);border-bottom-right-radius:var(--kku-border-radius-default);margin-right:-1px}.k-button-group .k-button{margin-left:0;margin-right:-1px;border-radius:0}.k-button-group .k-button+.k-button{margin-right:-1px}.k-button-group .k-button.k-button--outlined:hover{z-index:1}.k-switch{position:relative;display:inline-flex;justify-content:flex-start;align-items:center;border:none;outline:0;width:50px;height:24px;transition:.16s ease;transition-property:background;cursor:pointer}.k-switch:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:var(--kku-spacing-2);border-radius:var(--kku-border-radius-default);z-index:1}.k-switch .k-switch__toggle{position:absolute;top:3px;left:3px;border-radius:50%;background:var(--kku-white-color);transition:left .24s ease}.k-switch.k-switch--small{width:44px;height:26px;border-radius:13px}.k-switch.k-switch--small .k-switch__toggle{width:20px;height:20px}.k-switch.k-switch--medium{width:52px;height:30px;border-radius:15px}.k-switch.k-switch--medium .k-switch__toggle{width:24px;height:24px}.k-switch.k-switch--on{background:var(--kku-primary-color-default)}.k-switch.k-switch--on:hover:not(.k-switch--disabled){background:var(--kku-blue-color-500)}.k-switch.k-switch--on.k-switch--small .k-switch__toggle{left:calc(100% - 23px)}.k-switch.k-switch--on.k-switch--medium .k-switch__toggle{left:calc(100% - 27px)}.k-switch.k-switch--off{background:var(--kku-slate-color-400)}.k-switch.k-switch--off:hover:not(.k-switch--disabled){background:var(--kku-slate-color-500)}.k-switch.k-switch--disabled{cursor:not-allowed;background:var(--kku-background-color-disabled)}.k-switch.k-switch--disabled .k-switch__toggle{background:var(--kku-slate-color-300)}.k-accordion{color:var(--kku-text-color-default);border-bottom:1px solid var(--kku-slate-color-400)}.k-accordion[data-open=true] .k-accordion__summary__icon{transform:rotate(180deg)}.k-accordion .k-accordion__summary{display:flex;justify-content:space-between;align-items:center;list-style-type:none;user-select:none;cursor:pointer;transition:.16s ease;transition-property:background,border-bottom-color}.k-accordion .k-accordion__summary:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:var(--kku-spacing-2);border-radius:var(--kku-border-radius-default);z-index:1}.k-accordion .k-accordion__summary::-webkit-details-marker{display:none}.k-accordion .k-accordion__summary .k-accordion__summary__text{font-size:inherit}.k-accordion .k-accordion__summary .k-accordion__summary__icon{transition:.16s ease;transition-duration:.2s;transition-property:transform}.k-accordion .k-accordion__content{transition:.16s ease;transition-duration:.2s;transition-property:max-height;background-color:var(--white-color);overflow:hidden}.k-accordion.k-accordion--small{width:100%;max-width:480px;font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-accordion.k-accordion--small .k-accordion__summary,.k-accordion.k-accordion--small .k-accordion__content>.k-accordion__content__container{padding:var(--kku-spacing-8) var(--kku-spacing-2)}.k-accordion.k-accordion--medium{width:100%;max-width:640px;font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium)}.k-accordion.k-accordion--medium .k-accordion__summary,.k-accordion.k-accordion--medium .k-accordion__content>.k-accordion__content__container{padding:var(--kku-spacing-12) var(--kku-spacing-2)}.k-menu{display:inline-flex;flex-direction:column;border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);padding:0;margin:0}.k-menu.k-menu--small{width:120px}.k-menu.k-menu--medium{width:164px}.k-menu .k-menu-item:first-child{border-top-right-radius:calc(var(--kku-border-radius-default) - 1px);border-top-left-radius:calc(var(--kku-border-radius-default) - 1px)}.k-menu .k-menu-item:last-child{border-bottom-right-radius:calc(var(--kku-border-radius-default) - 1px);border-bottom-left-radius:calc(var(--kku-border-radius-default) - 1px)}.k-menu-item{position:relative;display:flex;justify-content:flex-start;align-items:center;border:none;outline:0;width:100%;background:var(--kku-white-color);overflow:hidden;cursor:pointer;transition:.16s ease;transition-property:background}.k-menu-item:after{position:absolute;top:0;left:0;width:calc(100% - 4px);height:calc(100% - 4px);border:2px solid var(--kku-primary-color-default);z-index:1}.k-menu-item:focus-visible:after{content:""}.k-menu-item:hover:not(.k-menu-item--disabled){background:var(--kku-slate-color-200)}.k-menu-item .k-menu-item__left-content,.k-menu-item .k-menu-item__right-content{display:inline-flex;justify-content:center;align-items:center}.k-menu-item .k-menu-item__label{flex:1 1 auto;text-align:left;color:var(--kku-text-color-default);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.k-menu-item .k-menu-item__shortcut{display:flex;justify-content:center;align-items:center;border-radius:var(--kku-border-radius-default);background:var(--kku-slate-color-200);color:var(--kku-slate-color-900)}.k-menu-item.k-menu-item--small{height:30px;padding:0 var(--kku-spacing-12);font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-menu-item.k-menu-item--small .k-menu-item__left-content{margin-right:var(--kku-spacing-4)}.k-menu-item.k-menu-item--small .k-menu-item__shortcut{font-size:var(--kku-text-size-xxsmall);line-height:var(--kku-line-height-xxsmall);padding:1px var(--kku-spacing-2)}.k-menu-item.k-menu-item--small .k-menu-item__right-content{margin-left:var(--kku-spacing-4)}.k-menu-item.k-menu-item--medium{height:36px;padding:0 var(--kku-spacing-12);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-menu-item.k-menu-item--medium .k-menu-item__left-content{margin-right:var(--kku-spacing-6)}.k-menu-item.k-menu-item--medium .k-menu-item__shortcut{font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall);padding:0 var(--kku-spacing-4)}.k-menu-item.k-menu-item--medium .k-menu-item__right-content{margin-left:var(--kku-spacing-6)}.k-menu-item.k-menu-item--disabled{cursor:not-allowed}.k-menu-item.k-menu-item--disabled .k-menu-item__label,.k-menu-item.k-menu-item--disabled .k-menu-item__shortcut{color:var(--kku-text-color-disabled)}.k-menu-item.k-menu-item-selectable.k-menu-item--small{padding-left:var(--kku-spacing-12)}.k-menu-item.k-menu-item-selectable.k-menu-item--small .k-menu-item__left-content{margin-right:0}.k-menu-item.k-menu-item-selectable.k-menu-item--small.k-menu-item-selectable--selected{padding-left:var(--kku-spacing-2)}.k-menu-item.k-menu-item-selectable.k-menu-item--medium{padding-left:var(--kku-spacing-12)}.k-menu-item.k-menu-item-selectable.k-menu-item--medium .k-menu-item__left-content{margin-right:0}.k-menu-item.k-menu-item-selectable.k-menu-item--medium.k-menu-item-selectable--selected{padding-left:var(--kku-spacing-2)}.k-menu-item.k-menu-item-selectable.k-menu-item-selectable--selected{background:var(--kku-slate-color-300)}.k-menu-item-divider{background:var(--kku-slate-color-300);height:1px;margin:var(--kku-spacing-6) var(--kku-spacing-12)}.k-skeleton{position:relative;display:inline-block;background-color:var(--kku-slate-color-300);border-radius:var(--kku-border-radius-default);overflow:hidden}.k-skeleton--pulse{animation:pulse 1.6s ease-in-out infinite}.k-skeleton--wave:after{content:"";position:absolute;top:0;left:-150px;height:100%;width:25%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.56),transparent);animation:wave 1.6s linear infinite}.dark .k-skeleton{background-color:red}.k-dropdown{display:inline-flex}.k-dropdown .k-dropdown__trigger{display:inline-flex;justify-content:center;align-items:center}.k-dropdown .k-dropdown__trigger:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:var(--kku-spacing-2);border-radius:var(--kku-border-radius-default);z-index:1}.k-dropdown .k-dropdown__trigger.k-dropdown__trigger--disabled{cursor:not-allowed}.k-dropdown .k-dropdown__content:focus-visible{outline:0}.k-backdrop{position:fixed;top:0;left:0;width:100dvw;height:100dvh;background-color:#0000007a;z-index:10}.k-backdrop .k-backdrop__container{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.k-backdrop .k-backdrop__container:focus-visible{outline:2px solid var(--kku-focus-visible-color);outline-offset:-2px;z-index:1}.k-backdrop .k-backdrop__container~*{z-index:11}.dark .k-backdrop{background-color:#ffffff7a}.k-modal{position:fixed;display:flex;flex-direction:column;width:100%;color:var(--kku-text-color-default);border-radius:var(--kku-border-radius-default);background-color:var(--kku-background-color-default);box-shadow:var(--kku-box-shadow-default);z-index:var(--kku-modal-content-z-index);overflow:hidden}.k-modal.k-modal--small{max-width:640px;height:400px}.k-modal.k-modal--medium{max-width:800px;height:460px}.k-modal.k-modal--large{max-width:1040px;height:600px}.k-modal .k-modal__header{display:flex;justify-content:flex-start;align-items:center;flex:0 0 44px;width:100%;padding:var(--kku-spacing-12) var(--kku-spacing-16);border-bottom:1px solid var(--kku-slate-color-300);font-size:var(--kku-text-size-large);line-height:var(--kku-line-height-large)}.k-modal .k-modal__content{flex:1 1 100%;padding:var(--kku-spacing-12) var(--kku-spacing-16);font-size:var(--kku-text-size-medium);line-height:var(--kku-line-height-medium);overflow:auto}.k-modal.k-modal__container--no-title .k-modal__content{padding:var(--kku-spacing-16)}.k-modal .k-modal__footer{display:flex;justify-content:center;align-items:center;flex:1 1 0;padding:0 var(--kku-spacing-16) var(--kku-spacing-12) var(--kku-spacing-16)}.k-modal .k-modal__footer.k-modal__footer--left{justify-content:flex-start}.k-modal .k-modal__footer.k-modal__footer--center{justify-content:center}.k-modal .k-modal__footer.k-modal__footer--right{justify-content:flex-end}@media screen and (max-width: 1040px){.k-modal.k-modal--large{max-width:calc(100dvw - var(--kku-spacing-32))}}@media screen and (max-width: 800px){.k-modal.k-modal--medium{max-width:calc(100dvw - var(--kku-spacing-24))}}@media screen and (max-width: 640px){.k-modal.k-modal--small{max-width:calc(100dvw - var(--kku-spacing-16))}}.k-spinner{padding:var(--kku-spacing-4)}.k-spinner .k-spinner__body{animation:spin .96s cubic-bezier(.5,.1,.5,.9) infinite}.k-spinner .k-spinner__body .k-spinner__body__circle{color:var(--kku-slate-color-300)}.k-spinner.k-spinner--small{width:32px;height:32px}.k-spinner.k-spinner--medium{width:48px;height:48px}.dark .k-spinner .k-spinner__body .k-spinner__body__circle{color:var(--kku-slate-color-600)}.k-icon{display:inline-flex;justify-content:center;align-items:center;color:var(--kku-gray-color-600);fill:var(--kku-gray-color-600);user-select:none}.k-icon.k-icon--clickable{cursor:pointer}.k-icon.k-icon--disabled{color:var(--kku-text-color-disabled);fill:var(--kku-text-color-disabled);cursor:not-allowed}.k-icon.k-icon--xlarge{width:28px;height:28px}.k-icon.k-icon--large{width:24px;height:24px}.k-icon.k-icon--medium{width:20px;height:20px}.k-icon.k-icon--small{width:16px;height:16px}.k-icon.k-icon--xsmall{width:12px;height:12px}.k-icon svg{width:100%;height:100%}.dark .k-icon{color:var(--kku-gray-color-300);fill:var(--kku-gray-color-300)}.dark .k-icon.k-icon--disabled{color:var(--kku-text-color-disabled);fill:var(--kku-text-color-disabled)}.k-dropdown.k-select{position:relative;display:inline-flex;flex-direction:column;cursor:pointer;user-select:none}.k-dropdown.k-select .k-select__fieldset{display:inline-flex;justify-content:flex-start;align-items:center;width:100%;color:var(--kku-text-color-label);min-inline-size:0;outline:0;border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);transition:.16s ease;transition-property:border-color}.k-dropdown.k-select .k-select__fieldset:hover{border-color:var(--kku-border-color-hover)}.k-dropdown.k-select .k-select__fieldset:hover .k-select__fieldset__legend{color:var(--kku-text-color-default)}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__legend{display:flex;justify-content:flex-start;align-items:center;height:16px;color:var(--kku-text-color-label);transition:.16s ease;transition-property:color;z-index:0}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__legend.k-select__fieldset__legend--show{padding:0 var(--kku-spacing-2)}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__legend .k-select__fieldset__legend__required{margin-left:var(--kku-spacing-2);color:var(--kku-error-color-default);transition:.16s ease;transition-property:color}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__container{position:relative;width:100%;overflow:hidden}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__value,.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__placeholder{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__value{color:var(--kku-text-color-default)}.k-dropdown.k-select .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__placeholder{color:var(--kku-text-color-placeholder)}.k-dropdown.k-select .k-select__trigger{display:inline-flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.k-dropdown.k-select .k-select__trigger:focus-visible:not(.k-select--disabled){outline:0}.k-dropdown.k-select .k-select__trigger:focus-visible:not(.k-select--disabled) .k-select__fieldset{outline:none;border-color:var(--kku-focus-visible-color)}.k-dropdown.k-select .k-select__trigger:focus-visible:not(.k-select--disabled) .k-select__fieldset .k-select__fieldset__legend{color:var(--kku-focus-visible-color)}.k-dropdown.k-select .k-select__trigger:focus-visible:not(.k-select--disabled) .k-select__fieldset .k-select__fieldset__legend .k-select__fieldset__legend__required{color:var(--kku-focus-visible-color)}.k-dropdown.k-select.k-select--error .k-select__fieldset{border-color:var(--kku-error-color-default)}.k-dropdown.k-select.k-select--error .k-select__fieldset .k-select__fieldset__legend,.k-dropdown.k-select.k-select--error .k-select__fieldset .k-select__fieldset__legend .k-select__fieldset__legend__required{color:var(--kku-error-color-default)}.k-dropdown.k-select .k-select__fieldset__message{padding:var(--kku-spacing-4) 0 0 var(--kku-spacing-4);color:var(--kku-error-color-default)}.k-dropdown.k-select .k-select__fieldset__container{display:flex;align-items:center;height:100%}.k-dropdown.k-select.k-select--small{width:140px}.k-dropdown.k-select.k-select--small .k-select__fieldset{height:38px}.k-dropdown.k-select.k-select--small .k-select__fieldset .k-select__fieldset__legend{margin-left:var(--kku-spacing-10);font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-dropdown.k-select.k-select--small .k-select__fieldset .k-select__fieldset__container{height:30px;padding:0 var(--kku-spacing-8);margin-top:-8px;font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-dropdown.k-select.k-select--small .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__left{margin-left:var(--kku-spacing-8)}.k-dropdown.k-select.k-select--small .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__right,.k-dropdown.k-select.k-select--small .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__icon{flex:0 0 var(--kku-text-size-medium);margin-right:var(--kku-spacing-8)}.k-dropdown.k-select.k-select--small .k-select__fieldset__message{font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-dropdown.k-select.k-select--medium{width:180px}.k-dropdown.k-select.k-select--medium .k-select__fieldset{height:44px}.k-dropdown.k-select.k-select--medium .k-select__fieldset .k-select__fieldset__legend{margin-left:var(--kku-spacing-12);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-dropdown.k-select.k-select--medium .k-select__fieldset .k-select__fieldset__container{height:36px;padding:0 var(--kku-spacing-10);margin-top:-8px;font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-dropdown.k-select.k-select--medium .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__right,.k-dropdown.k-select.k-select--medium .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__icon{flex:0 0 var(--kku-text-size-large);margin-right:var(--kku-spacing-10)}.k-dropdown.k-select.k-select--medium .k-select__fieldset__message{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-dropdown.k-select.k-select--disabled{cursor:not-allowed}.k-dropdown.k-select.k-select--disabled .k-select__fieldset{border-color:var(--kku-border-color-disabled);background:var(--kku-background-color-disabled)}.k-dropdown.k-select.k-select--disabled .k-select__fieldset .k-select__fieldset__legend,.k-dropdown.k-select.k-select--disabled .k-select__fieldset .k-select__fieldset__container .k-select__fieldset__container__value{color:var(--kku-text-color-disabled)}.k-dropdown__content.k-select__content .k-select__content__menu--small>.k-menu-item{height:30px}.k-dropdown__content.k-select__content .k-select__content__menu--medium>.k-menu-item{height:36px}.k-text-field{position:relative;display:inline-flex;flex-direction:column;width:100%}.k-text-field .k-text-field__fieldset{display:inline-flex;color:var(--kku-text-color-label);min-inline-size:0;border:1px solid var(--kku-border-color-default);border-radius:var(--kku-border-radius-default);transition:.16s ease;transition-property:border-color}.k-text-field .k-text-field__fieldset:hover{border-color:var(--kku-border-color-hover)}.k-text-field .k-text-field__fieldset:hover .k-text-field__fieldset__legend>.k-text-field__fieldset__legend__label{color:var(--kku-text-color-default)}.k-text-field .k-text-field__fieldset .k-text-field__fieldset__legend{height:16px;z-index:0}.k-text-field .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label{color:var(--kku-text-color-label);transition:.16s ease;transition-property:color}.k-text-field .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label.k-text-field__fieldset__legend__label--show{padding:0 var(--kku-spacing-2)}.k-text-field .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label__required{margin-left:var(--kku-spacing-2);color:var(--kku-error-color-default);transition:.16s ease;transition-property:color}.k-text-field.k-text-field--focus:not(.k-text-field--readOnly) .k-text-field__fieldset{outline:none;border-color:var(--kku-focus-visible-color)}.k-text-field.k-text-field--focus:not(.k-text-field--readOnly) .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label{color:var(--kku-focus-visible-color)}.k-text-field.k-text-field--focus:not(.k-text-field--readOnly) .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label__required{color:var(--kku-focus-visible-color)}.k-text-field.k-text-field--error .k-text-field__fieldset{border-color:var(--kku-error-color-default)}.k-text-field.k-text-field--error .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label,.k-text-field.k-text-field--error .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label__required{color:var(--kku-error-color-default)}.k-text-field .k-text-field__fieldset__message{padding:var(--kku-spacing-4) 0 0 var(--kku-spacing-4);color:var(--kku-error-color-default)}.k-text-field .k-text-field__fieldset__container{display:flex;align-items:center;width:100%;height:100%}.k-text-field .k-text-field__fieldset__container .k-text-field__fieldset__container__input{flex:1 1 auto;outline:0;border:none;background:none;width:100%;height:100%;padding:0;font-size:inherit;line-height:inherit;background:transparent;transition:.16s ease;transition-property:background,color}.k-text-field .k-text-field__fieldset__container .k-text-field__fieldset__container__input::placeholder{color:var(--kku-text-color-placeholder)}.k-text-field.k-text-field--small{width:220px}.k-text-field.k-text-field--small .k-text-field__fieldset{height:38px}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__legend{margin-left:var(--kku-spacing-10)}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label{font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__container{height:30px;margin-top:-8px}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__left{margin-left:var(--kku-spacing-8)}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__input{padding:0 var(--kku-spacing-8);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__right,.k-text-field.k-text-field--small .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__icon{flex:0 0 var(--kku-text-size-medium);margin-right:var(--kku-spacing-8)}.k-text-field.k-text-field--small .k-text-field__fieldset__message{font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-text-field.k-text-field--medium{width:220px}.k-text-field.k-text-field--medium .k-text-field__fieldset{height:44px}.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__legend{margin-left:var(--kku-spacing-12)}.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__legend .k-text-field__fieldset__legend__label{font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__container{height:36px;margin-top:-8px}.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__input{padding:0 var(--kku-spacing-10);font-size:var(--kku-text-size-small);line-height:var(--kku-line-height-small)}.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__right,.k-text-field.k-text-field--medium .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__icon{flex:0 0 var(--kku-text-size-large);margin-right:var(--kku-spacing-10)}.k-text-field.k-text-field--medium .k-text-field__fieldset__message{font-size:var(--kku-text-size-xsmall);line-height:var(--kku-line-height-xsmall)}.k-text-field.k-text-field--disabled .k-text-field__fieldset{border-color:var(--kku-border-color-disabled);background:var(--kku-background-color-disabled)}.k-text-field.k-text-field--disabled .k-text-field__fieldset .k-text-field__fieldset__legend>.k-text-field__fieldset__legend__label{color:var(--kku-text-color-disabled)}.k-text-field.k-text-field--disabled .k-text-field__fieldset .k-text-field__fieldset__container .k-text-field__fieldset__container__input{color:var(--kku-text-color-disabled);cursor:not-allowed}.k-ripple{position:absolute;opacity:.1;border-radius:50%}@keyframes ripple-effect{0%{transform:scale(.1);opacity:.32}to{transform:scale(1);opacity:.1}}@keyframes ripple-hide-effect{0%{opacity:.1}to{opacity:0}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kku-ui",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/es/index.js",
@@ -8,7 +8,12 @@
8
8
  ".": {
9
9
  "import": "./lib/es/index.js",
10
10
  "require": "./lib/cjs/index.js"
11
- }
11
+ },
12
+ "./hooks": {
13
+ "import": "./lib/es/hooks.js",
14
+ "require": "./lib/cjs/hooks.js"
15
+ },
16
+ "./index.css": "./lib/index.css"
12
17
  },
13
18
  "types": "lib/es/index.d.ts",
14
19
  "files": [
@@ -35,31 +40,31 @@
35
40
  "lodash-es": "^4.17.21",
36
41
  "motion": "^12.9.2",
37
42
  "react": "^19.1.0",
38
- "react-dom": "^19.1.0"
43
+ "react-dom": "^19.1.0",
44
+ "zustand": "^5.0.6"
39
45
  },
40
46
  "devDependencies": {
41
- "@chromatic-com/storybook": "^1",
42
- "@storybook/addon-essentials": "^8.5.3",
43
- "@storybook/addon-highlight": "^8.5.3",
44
- "@storybook/addon-interactions": "^8.5.3",
45
- "@storybook/addon-links": "^8.5.3",
46
- "@storybook/addon-onboarding": "^8.5.3",
47
- "@storybook/blocks": "^8.5.3",
48
- "@storybook/manager": "^8.5.3",
47
+ "@chromatic-com/storybook": "^4.0.1",
48
+ "@storybook/addon-a11y": "^9.0.15",
49
+ "@storybook/addon-docs": "^9.0.15",
50
+ "@storybook/addon-links": "^9.0.15",
51
+ "@storybook/addon-onboarding": "^9.0.15",
49
52
  "@storybook/preset-scss": "^1.0.3",
50
- "@storybook/react": "^8.5.3",
51
- "@storybook/react-vite": "^8.5.3",
52
- "@storybook/test": "^8.5.3",
53
+ "@storybook/preview-api": "^8.6.14",
54
+ "@storybook/react-vite": "^9.0.15",
55
+ "@storybook/theming": "^8.6.14",
56
+ "@storybook/types": "^8.6.14",
53
57
  "@testing-library/jest-dom": "^6.6.3",
54
58
  "@testing-library/react": "^16.3.0",
55
59
  "@testing-library/user-event": "^14.6.1",
56
60
  "@types/lodash-es": "^4.17.12",
57
- "@types/react": "^19.0.8",
58
- "@types/react-dom": "^19.0.3",
61
+ "@types/react": "^19.1.8",
62
+ "@types/react-dom": "^19.1.6",
59
63
  "@typescript-eslint/eslint-plugin": "^7.0.0",
60
64
  "@typescript-eslint/parser": "^7.0.0",
61
65
  "@vitejs/plugin-react-swc": "^3.9.0",
62
66
  "@vitest/ui": "^3.1.2",
67
+ "add": "^2.0.6",
63
68
  "chromatic": "^10.7.1",
64
69
  "eslint": "^8.56.0",
65
70
  "eslint-config-airbnb": "^19.0.4",
@@ -69,18 +74,20 @@
69
74
  "eslint-plugin-react": "^7.37.4",
70
75
  "eslint-plugin-react-hooks": "^4.3.0",
71
76
  "eslint-plugin-react-refresh": "^0.4.19",
72
- "eslint-plugin-storybook": "^0.8.0",
77
+ "eslint-plugin-storybook": "^9.0.15",
73
78
  "jsdom": "^26.1.0",
79
+ "react-docgen-typescript": "^2.4.0",
80
+ "rollup-plugin-visualizer": "^6.0.3",
74
81
  "sass": "^1.86.3",
75
- "storybook": "^8.5.3",
82
+ "storybook": "^9.0.15",
76
83
  "storybook-dark-mode": "^4.0.2",
77
84
  "ts-node": "^10.9.1",
78
85
  "typescript": "5.3.3",
79
- "vite": "^6.3.4",
80
- "vite-plugin-compression2": "^1.3.3",
81
- "vite-plugin-dts": "^4.5.3",
86
+ "vite": "^6.3.5",
87
+ "vite-plugin-compression2": "^2.2.0",
88
+ "vite-plugin-dts": "^4.5.4",
82
89
  "vite-plugin-eslint": "^1.8.1",
83
- "vitest": "^3.1.2"
90
+ "vitest": "^3.2.4"
84
91
  },
85
92
  "license": "MIT"
86
93
  }