@serendie/ui 3.2.0 → 3.2.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 (517) hide show
  1. package/dist/client.js +6 -6
  2. package/dist/components/Accordion/Accordion.js +18 -21
  3. package/dist/components/Accordion/AccordionGroup.js +4 -4
  4. package/dist/components/Avatar/Avatar.js +19 -21
  5. package/dist/components/Badge/Badge.js +1 -1
  6. package/dist/components/Banner/Banner.js +4 -4
  7. package/dist/components/BottomNavigation/BottomNavigationItem.js +4 -4
  8. package/dist/components/Button/Button.js +6 -6
  9. package/dist/components/CheckBox/CheckBox.js +28 -32
  10. package/dist/components/ChoiceBox/ChoiceBox.js +46 -52
  11. package/dist/components/DashboardWidget/DashboardWidget.js +4 -4
  12. package/dist/components/DataTable/DataTableComponent.js +16 -17
  13. package/dist/components/DataTable/table/HeaderCell.js +4 -4
  14. package/dist/components/DataTable/table/Root.js +4 -4
  15. package/dist/components/DatePicker/DatePicker.js +107 -127
  16. package/dist/components/DatePicker/index.js +1 -1
  17. package/dist/components/Divider/Divider.js +4 -4
  18. package/dist/components/Drawer/Drawer.js +22 -26
  19. package/dist/components/DropdownMenu/DropdownMenu.js +36 -41
  20. package/dist/components/IconButton/IconButton.js +4 -4
  21. package/dist/components/List/ListItem.js +1 -1
  22. package/dist/components/ModalDialog/ModalDialog.js +27 -33
  23. package/dist/components/NotificationBadge/NotificationBadge.js +1 -1
  24. package/dist/components/Pagination/Pagination.js +54 -59
  25. package/dist/components/RadioButton/RadioButton.js +32 -36
  26. package/dist/components/RadioButton/RadioGroup.js +4 -4
  27. package/dist/components/Search/Search.js +67 -74
  28. package/dist/components/Select/Select.js +53 -60
  29. package/dist/components/Switch/Switch.js +18 -22
  30. package/dist/components/Tabs/TabItem.js +6 -6
  31. package/dist/components/Tabs/Tabs.js +9 -10
  32. package/dist/components/TextArea/TextArea.js +4 -4
  33. package/dist/components/TextField/TextField.js +1 -1
  34. package/dist/components/Toast/Toast.js +16 -17
  35. package/dist/components/Tooltip/Tooltip.js +30 -35
  36. package/dist/components/TopAppBar/TopAppBar.js +4 -4
  37. package/dist/index.js +6 -6
  38. package/dist/node_modules/@ark-ui/react/dist/_virtual/_rolldown/runtime.js +11 -0
  39. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-context.js +5 -0
  40. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-item-content.js +15 -12
  41. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-item-context.js +5 -0
  42. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-item-indicator.js +11 -8
  43. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-item-trigger.js +16 -16
  44. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-item.js +25 -22
  45. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-root-provider.js +24 -0
  46. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion-root.js +21 -12
  47. package/dist/node_modules/@ark-ui/react/dist/components/accordion/accordion.js +22 -0
  48. package/dist/node_modules/@ark-ui/react/dist/components/accordion/use-accordion-context.js +2 -2
  49. package/dist/node_modules/@ark-ui/react/dist/components/accordion/use-accordion-item-context.js +2 -2
  50. package/dist/node_modules/@ark-ui/react/dist/components/accordion/use-accordion-item-props-context.js +1 -1
  51. package/dist/node_modules/@ark-ui/react/dist/components/accordion/use-accordion.js +15 -13
  52. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar-context.js +5 -0
  53. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar-fallback.js +12 -9
  54. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar-image.js +11 -8
  55. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar-root-provider.js +20 -0
  56. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar-root.js +21 -11
  57. package/dist/node_modules/@ark-ui/react/dist/components/avatar/avatar.js +16 -0
  58. package/dist/node_modules/@ark-ui/react/dist/components/avatar/use-avatar-context.js +3 -3
  59. package/dist/node_modules/@ark-ui/react/dist/components/avatar/use-avatar.js +14 -12
  60. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-context.js +3 -3
  61. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-control.js +12 -9
  62. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-group-provider.js +22 -0
  63. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-group.js +32 -0
  64. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-hidden-input.js +13 -9
  65. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-indicator.js +17 -0
  66. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-label.js +13 -10
  67. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-root-provider.js +20 -0
  68. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox-root.js +19 -13
  69. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox.anatomy.js +5 -0
  70. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/checkbox.js +24 -0
  71. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/use-checkbox-context.js +1 -1
  72. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/use-checkbox-group-context.js +2 -2
  73. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/use-checkbox-group.js +43 -0
  74. package/dist/node_modules/@ark-ui/react/dist/components/checkbox/use-checkbox.js +16 -14
  75. package/dist/node_modules/@ark-ui/react/dist/components/collapsible/collapsible-content.js +14 -12
  76. package/dist/node_modules/@ark-ui/react/dist/components/collapsible/collapsible-root.js +15 -9
  77. package/dist/node_modules/@ark-ui/react/dist/components/collapsible/split-collapsible-props.js +5 -3
  78. package/dist/node_modules/@ark-ui/react/dist/components/collapsible/use-collapsible-context.js +1 -1
  79. package/dist/node_modules/@ark-ui/react/dist/components/collapsible/use-collapsible.js +17 -12
  80. package/dist/node_modules/@ark-ui/react/dist/components/collection/list-collection.js +2 -2
  81. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-clear-trigger.js +16 -0
  82. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-content.js +13 -10
  83. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-context.js +5 -0
  84. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-control.js +12 -9
  85. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-empty.js +15 -0
  86. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-input.js +14 -10
  87. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item-context.js +5 -0
  88. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item-group-label.js +17 -0
  89. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item-group.js +20 -11
  90. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item-indicator.js +17 -0
  91. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item-text.js +12 -9
  92. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-item.js +19 -10
  93. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-label.js +16 -0
  94. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-list.js +16 -0
  95. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-positioner.js +11 -8
  96. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-root-provider.js +25 -0
  97. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-root.js +24 -14
  98. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox-trigger.js +17 -0
  99. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox.anatomy.js +5 -0
  100. package/dist/node_modules/@ark-ui/react/dist/components/combobox/combobox.js +42 -0
  101. package/dist/node_modules/@ark-ui/react/dist/components/combobox/use-combobox-context.js +2 -2
  102. package/dist/node_modules/@ark-ui/react/dist/components/combobox/use-combobox-item-context.js +1 -1
  103. package/dist/node_modules/@ark-ui/react/dist/components/combobox/use-combobox-item-group-props-context.js +1 -1
  104. package/dist/node_modules/@ark-ui/react/dist/components/combobox/use-combobox-item-props-context.js +2 -2
  105. package/dist/node_modules/@ark-ui/react/dist/components/combobox/use-combobox.js +13 -11
  106. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-clear-trigger.js +16 -0
  107. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-content.js +13 -10
  108. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-context.js +2 -2
  109. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-control.js +12 -9
  110. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-input.js +13 -10
  111. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-label.js +12 -9
  112. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-month-select.js +14 -7
  113. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-next-trigger.js +14 -11
  114. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-positioner.js +11 -8
  115. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-preset-trigger.js +17 -0
  116. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-prev-trigger.js +14 -11
  117. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-range-text.js +21 -0
  118. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-root-provider.js +26 -0
  119. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-root.js +32 -16
  120. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-body.js +12 -9
  121. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-cell-trigger.js +16 -13
  122. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-cell.js +18 -13
  123. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-head.js +12 -9
  124. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-header.js +12 -9
  125. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table-row.js +12 -9
  126. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-table.js +22 -12
  127. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-trigger.js +11 -8
  128. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-value-text.js +25 -0
  129. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-view-control.js +12 -9
  130. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-view-trigger.js +17 -0
  131. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-view.js +16 -16
  132. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-week-number-cell.js +17 -0
  133. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-week-number-header-cell.js +17 -0
  134. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker-year-select.js +16 -9
  135. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker.anatomy.js +3 -3
  136. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/date-picker.js +64 -0
  137. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/use-date-picker-context.js +1 -1
  138. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/use-date-picker-table-cell-props-context.js +2 -2
  139. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/use-date-picker-table-props-context.js +2 -2
  140. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/use-date-picker-view-props-context.js +2 -2
  141. package/dist/node_modules/@ark-ui/react/dist/components/date-picker/use-date-picker.js +16 -14
  142. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-backdrop.js +19 -13
  143. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-close-trigger.js +12 -9
  144. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-content.js +15 -12
  145. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-context.js +5 -0
  146. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-description.js +12 -9
  147. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-positioner.js +13 -10
  148. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-root-provider.js +24 -0
  149. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-root.js +17 -7
  150. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-title.js +13 -10
  151. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog-trigger.js +21 -0
  152. package/dist/node_modules/@ark-ui/react/dist/components/dialog/dialog.js +26 -0
  153. package/dist/node_modules/@ark-ui/react/dist/components/dialog/use-dialog-context.js +3 -3
  154. package/dist/node_modules/@ark-ui/react/dist/components/dialog/use-dialog.js +15 -13
  155. package/dist/node_modules/@ark-ui/react/dist/components/factory.js +21 -22
  156. package/dist/node_modules/@ark-ui/react/dist/components/field/use-field-context.js +1 -1
  157. package/dist/node_modules/@ark-ui/react/dist/components/fieldset/use-fieldset-context.js +11 -0
  158. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-arrow-tip.js +16 -0
  159. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-arrow.js +16 -0
  160. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-checkbox-item.js +35 -0
  161. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-content.js +13 -10
  162. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-context-trigger.js +16 -0
  163. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-context.js +5 -0
  164. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-indicator.js +16 -0
  165. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item-context.js +5 -0
  166. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item-group-label.js +17 -0
  167. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item-group.js +21 -12
  168. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item-indicator.js +17 -0
  169. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item-text.js +17 -0
  170. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-item.js +25 -13
  171. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-positioner.js +14 -11
  172. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-radio-item-group.js +28 -0
  173. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-radio-item.js +39 -0
  174. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-root-provider.js +31 -0
  175. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-root.js +32 -19
  176. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-separator.js +16 -0
  177. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-trigger-item.js +21 -0
  178. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu-trigger.js +18 -17
  179. package/dist/node_modules/@ark-ui/react/dist/components/menu/menu.js +48 -0
  180. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-context.js +2 -2
  181. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-item-context.js +2 -2
  182. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-item-group-context.js +2 -2
  183. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-machine-context.js +2 -2
  184. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-option-item-props-context.js +2 -2
  185. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu-trigger-item-context.js +1 -1
  186. package/dist/node_modules/@ark-ui/react/dist/components/menu/use-menu.js +19 -14
  187. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-context.js +1 -1
  188. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-ellipsis.js +11 -8
  189. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-first-trigger.js +16 -0
  190. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-item.js +12 -9
  191. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-last-trigger.js +16 -0
  192. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-next-trigger.js +13 -10
  193. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-prev-trigger.js +13 -10
  194. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-root-provider.js +20 -0
  195. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination-root.js +20 -12
  196. package/dist/node_modules/@ark-ui/react/dist/components/pagination/pagination.js +24 -0
  197. package/dist/node_modules/@ark-ui/react/dist/components/pagination/use-pagination-context.js +4 -4
  198. package/dist/node_modules/@ark-ui/react/dist/components/pagination/use-pagination.js +15 -13
  199. package/dist/node_modules/@ark-ui/react/dist/components/portal/portal.js +16 -20
  200. package/dist/node_modules/@ark-ui/react/dist/components/presence/split-presence-props.js +1 -1
  201. package/dist/node_modules/@ark-ui/react/dist/components/presence/use-presence-context.js +3 -3
  202. package/dist/node_modules/@ark-ui/react/dist/components/presence/use-presence.js +13 -12
  203. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-context.js +5 -0
  204. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-indicator.js +16 -0
  205. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-item-context.js +1 -1
  206. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-item-control.js +12 -9
  207. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-item-hidden-input.js +12 -9
  208. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-item-text.js +14 -11
  209. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-item.js +26 -13
  210. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-label.js +16 -0
  211. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-root-provider.js +20 -0
  212. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group-root.js +18 -10
  213. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/radio-group.js +26 -0
  214. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/use-radio-group-context.js +1 -1
  215. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/use-radio-group-item-context.js +2 -2
  216. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/use-radio-group-item-props-context.js +1 -1
  217. package/dist/node_modules/@ark-ui/react/dist/components/radio-group/use-radio-group.js +20 -13
  218. package/dist/node_modules/@ark-ui/react/dist/components/select/select-clear-trigger.js +16 -0
  219. package/dist/node_modules/@ark-ui/react/dist/components/select/select-content.js +13 -10
  220. package/dist/node_modules/@ark-ui/react/dist/components/select/select-context.js +5 -0
  221. package/dist/node_modules/@ark-ui/react/dist/components/select/select-control.js +12 -9
  222. package/dist/node_modules/@ark-ui/react/dist/components/select/select-hidden-select.js +23 -0
  223. package/dist/node_modules/@ark-ui/react/dist/components/select/select-indicator.js +16 -0
  224. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item-context.js +5 -0
  225. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item-group-label.js +17 -0
  226. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item-group.js +24 -0
  227. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item-indicator.js +17 -0
  228. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item-text.js +17 -0
  229. package/dist/node_modules/@ark-ui/react/dist/components/select/select-item.js +22 -13
  230. package/dist/node_modules/@ark-ui/react/dist/components/select/select-label.js +13 -10
  231. package/dist/node_modules/@ark-ui/react/dist/components/select/select-list.js +16 -0
  232. package/dist/node_modules/@ark-ui/react/dist/components/select/select-positioner.js +11 -8
  233. package/dist/node_modules/@ark-ui/react/dist/components/select/select-root-provider.js +25 -0
  234. package/dist/node_modules/@ark-ui/react/dist/components/select/select-root.js +25 -14
  235. package/dist/node_modules/@ark-ui/react/dist/components/select/select-trigger.js +12 -9
  236. package/dist/node_modules/@ark-ui/react/dist/components/select/select-value-text.js +11 -7
  237. package/dist/node_modules/@ark-ui/react/dist/components/select/select.js +44 -0
  238. package/dist/node_modules/@ark-ui/react/dist/components/select/use-select-context.js +1 -1
  239. package/dist/node_modules/@ark-ui/react/dist/components/select/use-select-item-context.js +2 -2
  240. package/dist/node_modules/@ark-ui/react/dist/components/select/use-select-item-group-props.js +10 -0
  241. package/dist/node_modules/@ark-ui/react/dist/components/select/use-select-item-props-context.js +1 -1
  242. package/dist/node_modules/@ark-ui/react/dist/components/select/use-select.js +12 -10
  243. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-context.js +5 -0
  244. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-control.js +12 -9
  245. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-hidden-input.js +13 -9
  246. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-label.js +12 -9
  247. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-root-provider.js +20 -0
  248. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-root.js +18 -12
  249. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch-thumb.js +10 -7
  250. package/dist/node_modules/@ark-ui/react/dist/components/switch/switch.js +20 -0
  251. package/dist/node_modules/@ark-ui/react/dist/components/switch/use-switch-context.js +1 -1
  252. package/dist/node_modules/@ark-ui/react/dist/components/switch/use-switch.js +13 -11
  253. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tab-content.js +28 -0
  254. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tab-indicator.js +16 -0
  255. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tab-list.js +13 -10
  256. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tab-trigger.js +14 -11
  257. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tabs-context.js +5 -0
  258. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tabs-root-provider.js +24 -0
  259. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tabs-root.js +20 -11
  260. package/dist/node_modules/@ark-ui/react/dist/components/tabs/tabs.js +20 -0
  261. package/dist/node_modules/@ark-ui/react/dist/components/tabs/use-tabs-context.js +3 -3
  262. package/dist/node_modules/@ark-ui/react/dist/components/tabs/use-tabs.js +15 -13
  263. package/dist/node_modules/@ark-ui/react/dist/components/toast/create-toaster.js +2 -2
  264. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-action-trigger.js +16 -0
  265. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-close-trigger.js +16 -0
  266. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-context.js +5 -0
  267. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-description.js +16 -0
  268. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-root.js +14 -10
  269. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast-title.js +13 -10
  270. package/dist/node_modules/@ark-ui/react/dist/components/toast/toast.js +18 -0
  271. package/dist/node_modules/@ark-ui/react/dist/components/toast/toaster.js +37 -22
  272. package/dist/node_modules/@ark-ui/react/dist/components/toast/use-toast-context.js +4 -4
  273. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-arrow-tip.js +12 -9
  274. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-arrow.js +12 -9
  275. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-content.js +13 -10
  276. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-context.js +5 -0
  277. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-positioner.js +13 -10
  278. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-root-provider.js +20 -0
  279. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-root.js +16 -9
  280. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip-trigger.js +12 -8
  281. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/tooltip.js +22 -0
  282. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/use-tooltip-context.js +1 -1
  283. package/dist/node_modules/@ark-ui/react/dist/components/tooltip/use-tooltip.js +15 -13
  284. package/dist/node_modules/@ark-ui/react/dist/providers/environment/use-environment-context.js +1 -1
  285. package/dist/node_modules/@ark-ui/react/dist/providers/locale/use-locale-context.js +5 -2
  286. package/dist/node_modules/@ark-ui/react/dist/utils/compose-refs.js +7 -10
  287. package/dist/node_modules/@ark-ui/react/dist/utils/create-context.js +17 -20
  288. package/dist/node_modules/@ark-ui/react/dist/utils/create-split-props.js +4 -7
  289. package/dist/node_modules/@ark-ui/react/dist/utils/render-strategy.js +6 -6
  290. package/dist/node_modules/@ark-ui/react/dist/utils/use-controllable-state.js +8 -0
  291. package/dist/node_modules/@ark-ui/react/dist/utils/use-effect-once.js +1 -1
  292. package/dist/node_modules/@ark-ui/react/dist/utils/use-event.js +7 -10
  293. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +294 -289
  294. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +195 -194
  295. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +97 -97
  296. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +60 -62
  297. package/dist/node_modules/@internationalized/date/dist/GregorianCalendar.js +18 -12
  298. package/dist/node_modules/@internationalized/date/dist/conversion.js +35 -35
  299. package/dist/node_modules/@internationalized/date/dist/queries.js +126 -75
  300. package/dist/node_modules/@internationalized/date/dist/string.js +29 -28
  301. package/dist/node_modules/@zag-js/accordion/dist/accordion.anatomy.js +6 -0
  302. package/dist/node_modules/@zag-js/accordion/dist/accordion.connect.js +129 -0
  303. package/dist/node_modules/@zag-js/accordion/dist/accordion.dom.js +30 -0
  304. package/dist/node_modules/@zag-js/accordion/dist/accordion.machine.js +137 -0
  305. package/dist/node_modules/@zag-js/aria-hidden/dist/aria-hidden.js +14 -0
  306. package/dist/node_modules/@zag-js/aria-hidden/dist/index.js +12 -49
  307. package/dist/node_modules/@zag-js/aria-hidden/dist/walk-tree-outside.js +41 -0
  308. package/dist/node_modules/@zag-js/avatar/dist/avatar.anatomy.js +6 -0
  309. package/dist/node_modules/@zag-js/avatar/dist/avatar.connect.js +52 -0
  310. package/dist/node_modules/@zag-js/avatar/dist/avatar.dom.js +17 -0
  311. package/dist/node_modules/@zag-js/avatar/dist/avatar.machine.js +93 -0
  312. package/dist/node_modules/@zag-js/checkbox/dist/checkbox.anatomy.js +6 -0
  313. package/dist/node_modules/@zag-js/checkbox/dist/checkbox.connect.js +108 -0
  314. package/dist/node_modules/@zag-js/checkbox/dist/checkbox.dom.js +21 -0
  315. package/dist/node_modules/@zag-js/checkbox/dist/checkbox.machine.js +141 -0
  316. package/dist/node_modules/@zag-js/collapsible/dist/collapsible.anatomy.js +6 -0
  317. package/dist/node_modules/@zag-js/collapsible/dist/collapsible.connect.js +80 -0
  318. package/dist/node_modules/@zag-js/collapsible/dist/collapsible.dom.js +16 -0
  319. package/dist/node_modules/@zag-js/collapsible/dist/{index.js → collapsible.machine.js} +58 -115
  320. package/dist/node_modules/@zag-js/collection/dist/chunk-QZ7TP4HQ.js +4 -0
  321. package/dist/node_modules/@zag-js/collection/dist/{index.js → list-collection.js} +58 -56
  322. package/dist/node_modules/@zag-js/collection/dist/selection-map.js +58 -0
  323. package/dist/node_modules/@zag-js/combobox/dist/combobox.anatomy.js +21 -0
  324. package/dist/node_modules/@zag-js/combobox/dist/combobox.collection.js +6 -0
  325. package/dist/node_modules/@zag-js/combobox/dist/combobox.connect.js +341 -0
  326. package/dist/node_modules/@zag-js/combobox/dist/combobox.dom.js +68 -0
  327. package/dist/node_modules/@zag-js/combobox/dist/combobox.machine.js +936 -0
  328. package/dist/node_modules/@zag-js/core/dist/create-machine.js +32 -0
  329. package/dist/node_modules/@zag-js/core/dist/memo.js +11 -0
  330. package/dist/node_modules/@zag-js/core/dist/merge-props.js +48 -0
  331. package/dist/node_modules/@zag-js/core/dist/scope.js +19 -0
  332. package/dist/node_modules/@zag-js/core/dist/state.js +143 -0
  333. package/dist/node_modules/@zag-js/core/dist/types.js +5 -0
  334. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.anatomy.js +31 -0
  335. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.connect.js +742 -0
  336. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.dom.js +73 -0
  337. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.machine.js +1042 -0
  338. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.parse.js +8 -0
  339. package/dist/node_modules/@zag-js/date-picker/dist/date-picker.utils.js +155 -0
  340. package/dist/node_modules/@zag-js/date-utils/dist/align.js +15 -0
  341. package/dist/node_modules/@zag-js/date-utils/dist/assertion.js +26 -0
  342. package/dist/node_modules/@zag-js/date-utils/dist/constrain.js +40 -0
  343. package/dist/node_modules/@zag-js/date-utils/dist/date-month.js +74 -0
  344. package/dist/node_modules/@zag-js/date-utils/dist/date-year.js +37 -0
  345. package/dist/node_modules/@zag-js/date-utils/dist/duration.js +13 -0
  346. package/dist/node_modules/@zag-js/date-utils/dist/format.js +25 -0
  347. package/dist/node_modules/@zag-js/date-utils/dist/formatter.js +30 -0
  348. package/dist/node_modules/@zag-js/date-utils/dist/get-era-format.js +8 -0
  349. package/dist/node_modules/@zag-js/date-utils/dist/mutation.js +9 -0
  350. package/dist/node_modules/@zag-js/date-utils/dist/pagination.js +95 -0
  351. package/dist/node_modules/@zag-js/date-utils/dist/parse-date.js +34 -0
  352. package/dist/node_modules/@zag-js/date-utils/dist/preset.js +41 -0
  353. package/dist/node_modules/@zag-js/dialog/dist/dialog.anatomy.js +14 -0
  354. package/dist/node_modules/@zag-js/dialog/dist/dialog.connect.js +104 -0
  355. package/dist/node_modules/@zag-js/dialog/dist/dialog.dom.js +42 -0
  356. package/dist/node_modules/@zag-js/dialog/dist/dialog.machine.js +220 -0
  357. package/dist/node_modules/@zag-js/dismissable/dist/dismissable-layer.js +80 -0
  358. package/dist/node_modules/@zag-js/dismissable/dist/escape-keydown.js +11 -0
  359. package/dist/node_modules/@zag-js/dismissable/dist/layer-stack.js +103 -0
  360. package/dist/node_modules/@zag-js/dismissable/dist/pointer-event-outside.js +37 -0
  361. package/dist/node_modules/@zag-js/dom-query/dist/caret.js +12 -0
  362. package/dist/node_modules/@zag-js/dom-query/dist/chunk-QZ7TP4HQ.js +4 -0
  363. package/dist/node_modules/@zag-js/dom-query/dist/computed-style.js +8 -0
  364. package/dist/node_modules/@zag-js/dom-query/dist/controller.js +76 -0
  365. package/dist/node_modules/@zag-js/dom-query/dist/event.js +80 -0
  366. package/dist/node_modules/@zag-js/dom-query/dist/form.js +70 -0
  367. package/dist/node_modules/@zag-js/dom-query/dist/initial-focus.js +22 -0
  368. package/dist/node_modules/@zag-js/dom-query/dist/mutation-observer.js +41 -0
  369. package/dist/node_modules/@zag-js/dom-query/dist/navigate.js +13 -0
  370. package/dist/node_modules/@zag-js/dom-query/dist/node.js +87 -0
  371. package/dist/node_modules/@zag-js/dom-query/dist/overflow.js +27 -0
  372. package/dist/node_modules/@zag-js/dom-query/dist/platform.js +24 -0
  373. package/dist/node_modules/@zag-js/dom-query/dist/press.js +61 -0
  374. package/dist/node_modules/@zag-js/dom-query/dist/query.js +31 -0
  375. package/dist/node_modules/@zag-js/dom-query/dist/raf.js +51 -0
  376. package/dist/node_modules/@zag-js/dom-query/dist/resize-observer.js +34 -0
  377. package/dist/node_modules/@zag-js/dom-query/dist/searchable.js +17 -0
  378. package/dist/node_modules/@zag-js/dom-query/dist/set.js +29 -0
  379. package/dist/node_modules/@zag-js/dom-query/dist/shared.js +11 -0
  380. package/dist/node_modules/@zag-js/dom-query/dist/tabbable.js +110 -0
  381. package/dist/node_modules/@zag-js/dom-query/dist/text-selection.js +36 -0
  382. package/dist/node_modules/@zag-js/dom-query/dist/typeahead.js +25 -0
  383. package/dist/node_modules/@zag-js/dom-query/dist/visually-hidden.js +15 -0
  384. package/dist/node_modules/@zag-js/dom-query/dist/wait-for.js +42 -0
  385. package/dist/node_modules/@zag-js/focus-trap/dist/chunk-QZ7TP4HQ.js +4 -0
  386. package/dist/node_modules/@zag-js/focus-trap/dist/focus-trap.js +335 -0
  387. package/dist/node_modules/@zag-js/focus-trap/dist/index.js +24 -299
  388. package/dist/node_modules/@zag-js/focus-visible/dist/index.js +63 -39
  389. package/dist/node_modules/@zag-js/interact-outside/dist/frame-utils.js +60 -0
  390. package/dist/node_modules/@zag-js/interact-outside/dist/index.js +97 -131
  391. package/dist/node_modules/@zag-js/menu/dist/menu.anatomy.js +21 -0
  392. package/dist/node_modules/@zag-js/menu/dist/menu.connect.js +385 -0
  393. package/dist/node_modules/@zag-js/menu/dist/menu.dom.js +93 -0
  394. package/dist/node_modules/@zag-js/menu/dist/menu.machine.js +855 -0
  395. package/dist/node_modules/@zag-js/menu/dist/menu.utils.js +51 -0
  396. package/dist/node_modules/@zag-js/pagination/dist/pagination.anatomy.js +14 -0
  397. package/dist/node_modules/@zag-js/pagination/dist/pagination.connect.js +145 -0
  398. package/dist/node_modules/@zag-js/pagination/dist/pagination.dom.js +31 -0
  399. package/dist/node_modules/@zag-js/pagination/dist/pagination.machine.js +132 -0
  400. package/dist/node_modules/@zag-js/pagination/dist/pagination.utils.js +39 -0
  401. package/dist/node_modules/@zag-js/popper/dist/get-anchor.js +34 -0
  402. package/dist/node_modules/@zag-js/popper/dist/get-placement.js +190 -0
  403. package/dist/node_modules/@zag-js/popper/dist/get-styles.js +47 -0
  404. package/dist/node_modules/@zag-js/popper/dist/middleware.js +57 -0
  405. package/dist/node_modules/@zag-js/popper/dist/placement.js +11 -0
  406. package/dist/node_modules/@zag-js/presence/dist/presence.connect.js +16 -0
  407. package/dist/node_modules/@zag-js/presence/dist/{index.js → presence.machine.js} +39 -47
  408. package/dist/node_modules/@zag-js/radio-group/dist/radio-group.anatomy.js +13 -0
  409. package/dist/node_modules/@zag-js/radio-group/dist/radio-group.connect.js +197 -0
  410. package/dist/node_modules/@zag-js/radio-group/dist/radio-group.dom.js +57 -0
  411. package/dist/node_modules/@zag-js/radio-group/dist/radio-group.machine.js +179 -0
  412. package/dist/node_modules/@zag-js/react/dist/bindable.js +52 -0
  413. package/dist/node_modules/@zag-js/react/dist/machine.js +208 -0
  414. package/dist/node_modules/@zag-js/react/dist/normalize-props.js +5 -0
  415. package/dist/node_modules/@zag-js/react/dist/refs.js +15 -0
  416. package/dist/node_modules/@zag-js/react/dist/track.js +13 -0
  417. package/dist/node_modules/@zag-js/react/dist/use-layout-effect.js +5 -0
  418. package/dist/node_modules/@zag-js/rect-utils/dist/polygon.js +23 -0
  419. package/dist/node_modules/@zag-js/rect-utils/dist/rect.js +26 -0
  420. package/dist/node_modules/@zag-js/remove-scroll/dist/index.js +32 -23
  421. package/dist/node_modules/@zag-js/select/dist/select.anatomy.js +22 -0
  422. package/dist/node_modules/@zag-js/select/dist/select.collection.js +6 -0
  423. package/dist/node_modules/@zag-js/select/dist/select.connect.js +372 -0
  424. package/dist/node_modules/@zag-js/select/dist/select.dom.js +53 -0
  425. package/dist/node_modules/@zag-js/select/dist/select.machine.js +690 -0
  426. package/dist/node_modules/@zag-js/switch/dist/switch.anatomy.js +6 -0
  427. package/dist/node_modules/@zag-js/switch/dist/switch.connect.js +110 -0
  428. package/dist/node_modules/@zag-js/switch/dist/switch.dom.js +25 -0
  429. package/dist/node_modules/@zag-js/switch/dist/switch.machine.js +143 -0
  430. package/dist/node_modules/@zag-js/tabs/dist/tabs.anatomy.js +6 -0
  431. package/dist/node_modules/@zag-js/tabs/dist/tabs.connect.js +176 -0
  432. package/dist/node_modules/@zag-js/tabs/dist/tabs.dom.js +47 -0
  433. package/dist/node_modules/@zag-js/tabs/dist/tabs.machine.js +268 -0
  434. package/dist/node_modules/@zag-js/toast/dist/index.js +6 -798
  435. package/dist/node_modules/@zag-js/toast/dist/toast-group.connect.js +54 -0
  436. package/dist/node_modules/@zag-js/toast/dist/toast-group.machine.js +236 -0
  437. package/dist/node_modules/@zag-js/toast/dist/toast.anatomy.js +13 -0
  438. package/dist/node_modules/@zag-js/toast/dist/toast.connect.js +102 -0
  439. package/dist/node_modules/@zag-js/toast/dist/toast.dom.js +10 -0
  440. package/dist/node_modules/@zag-js/toast/dist/toast.machine.js +234 -0
  441. package/dist/node_modules/@zag-js/toast/dist/toast.store.js +134 -0
  442. package/dist/node_modules/@zag-js/toast/dist/toast.utils.js +122 -0
  443. package/dist/node_modules/@zag-js/tooltip/dist/tooltip.anatomy.js +6 -0
  444. package/dist/node_modules/@zag-js/tooltip/dist/tooltip.connect.js +120 -0
  445. package/dist/node_modules/@zag-js/tooltip/dist/tooltip.dom.js +25 -0
  446. package/dist/node_modules/@zag-js/tooltip/dist/{index.js → tooltip.machine.js} +109 -188
  447. package/dist/node_modules/@zag-js/tooltip/dist/tooltip.store.js +9 -0
  448. package/dist/node_modules/@zag-js/types/dist/prop-types.js +10 -0
  449. package/dist/node_modules/@zag-js/utils/dist/array.js +39 -0
  450. package/dist/node_modules/@zag-js/utils/dist/chunk-MXGZDBDQ.js +8 -0
  451. package/dist/node_modules/@zag-js/utils/dist/equal.js +27 -0
  452. package/dist/node_modules/@zag-js/utils/dist/functions.js +28 -0
  453. package/dist/node_modules/@zag-js/utils/dist/guard.js +19 -0
  454. package/dist/node_modules/@zag-js/utils/dist/number.js +11 -0
  455. package/dist/node_modules/@zag-js/utils/dist/object.js +13 -0
  456. package/dist/node_modules/@zag-js/utils/dist/store.js +25 -0
  457. package/dist/node_modules/@zag-js/utils/dist/timers.js +39 -0
  458. package/dist/node_modules/@zag-js/utils/dist/warning.js +25 -0
  459. package/dist/styled-system/css/css.js +1 -1
  460. package/dist/styled-system/helpers.js +85 -83
  461. package/dist/styled-system/jsx/is-valid-prop.js +1 -1
  462. package/dist/styles.css +1 -1
  463. package/package.json +18 -21
  464. package/styled-system/css/css.js +1 -1
  465. package/styled-system/helpers.js +3 -0
  466. package/styled-system/jsx/is-valid-prop.js +1 -1
  467. package/styled-system/patterns/aspect-ratio.d.ts +0 -1
  468. package/styled-system/patterns/bleed.d.ts +0 -1
  469. package/styled-system/patterns/box.d.ts +0 -1
  470. package/styled-system/patterns/center.d.ts +0 -1
  471. package/styled-system/patterns/circle.d.ts +0 -1
  472. package/styled-system/patterns/container.d.ts +0 -1
  473. package/styled-system/patterns/cq.d.ts +0 -1
  474. package/styled-system/patterns/divider.d.ts +0 -1
  475. package/styled-system/patterns/flex.d.ts +0 -1
  476. package/styled-system/patterns/float.d.ts +0 -1
  477. package/styled-system/patterns/grid-item.d.ts +0 -1
  478. package/styled-system/patterns/grid.d.ts +0 -1
  479. package/styled-system/patterns/hstack.d.ts +0 -1
  480. package/styled-system/patterns/link-overlay.d.ts +0 -1
  481. package/styled-system/patterns/spacer.d.ts +0 -1
  482. package/styled-system/patterns/square.d.ts +0 -1
  483. package/styled-system/patterns/stack.d.ts +0 -1
  484. package/styled-system/patterns/visually-hidden.d.ts +0 -1
  485. package/styled-system/patterns/vstack.d.ts +0 -1
  486. package/styled-system/patterns/wrap.d.ts +0 -1
  487. package/styled-system/themes/theme-asagi.json +1 -1
  488. package/styled-system/themes/theme-konjo-dark.json +1 -1
  489. package/styled-system/themes/theme-kurikawa.json +1 -1
  490. package/styled-system/themes/theme-sumire.json +1 -1
  491. package/styled-system/themes/theme-tsutsuji.json +1 -1
  492. package/styled-system/tokens/tokens.d.ts +1 -1
  493. package/styled-system/types/conditions.d.ts +11 -11
  494. package/styled-system/types/prop-type.d.ts +2 -0
  495. package/styled-system/types/style-props.d.ts +3 -4
  496. package/dist/node_modules/@zag-js/accordion/dist/index.js +0 -290
  497. package/dist/node_modules/@zag-js/avatar/dist/index.js +0 -154
  498. package/dist/node_modules/@zag-js/checkbox/dist/index.js +0 -270
  499. package/dist/node_modules/@zag-js/combobox/dist/index.js +0 -1415
  500. package/dist/node_modules/@zag-js/core/dist/index.js +0 -92
  501. package/dist/node_modules/@zag-js/date-picker/dist/index.js +0 -1826
  502. package/dist/node_modules/@zag-js/date-utils/dist/index.js +0 -366
  503. package/dist/node_modules/@zag-js/dialog/dist/index.js +0 -324
  504. package/dist/node_modules/@zag-js/dismissable/dist/index.js +0 -188
  505. package/dist/node_modules/@zag-js/dom-query/dist/index.js +0 -633
  506. package/dist/node_modules/@zag-js/menu/dist/index.js +0 -1235
  507. package/dist/node_modules/@zag-js/pagination/dist/index.js +0 -273
  508. package/dist/node_modules/@zag-js/popper/dist/index.js +0 -260
  509. package/dist/node_modules/@zag-js/radio-group/dist/index.js +0 -407
  510. package/dist/node_modules/@zag-js/react/dist/index.js +0 -269
  511. package/dist/node_modules/@zag-js/rect-utils/dist/index.js +0 -46
  512. package/dist/node_modules/@zag-js/select/dist/index.js +0 -1088
  513. package/dist/node_modules/@zag-js/switch/dist/index.js +0 -275
  514. package/dist/node_modules/@zag-js/tabs/dist/index.js +0 -475
  515. package/dist/node_modules/@zag-js/types/dist/index.js +0 -12
  516. package/dist/node_modules/@zag-js/utils/dist/index.js +0 -173
  517. /package/dist/node_modules/@zag-js/anatomy/dist/{index.js → create-anatomy.js} +0 -0
package/dist/styles.css CHANGED
@@ -1 +1 @@
1
- @import"https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+Mono:wght@100..900&family=Roboto:wght@100;400;700&display=swap";@layer reset,base,tokens,recipes,utilities;@layer base{:root{--global-font-body: "Roboto", "Noto Sans JP", sans-serif;--global-font-mono: "Noto Sans Mono", monospace;font-optical-sizing:auto;text-rendering:optimizeLegibility;font-feature-settings:"palt";letter-spacing:.03em}:root,[data-panda-theme]{background-color:var(--colors-sd-system-color-component-surface);color:var(--colors-sd-system-color-component-on-surface)}.docs-story{background-color:var(--colors-sd-system-color-component-surface)}}@layer reset{html,:host{--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent;line-height:1.5;font-family:var(--global-font-body, var(--font-fallback))}*,:before,:after,::backdrop,::file-selector-button{margin:0;padding:0;box-sizing:border-box;border-width:0px;border-style:solid;border-color:var(--global-color-border, currentColor)}hr{height:0px;color:inherit;border-top-width:1px}body{height:100%;line-height:inherit}img{border-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}h1,h2,h3,h4,h5,h6{text-wrap:balance;font-size:inherit;font-weight:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}ol,ul,menu{list-style:none}button,input:where([type=button],[type=reset],[type=submit]),::file-selector-button{-moz-appearance:button;appearance:button;-webkit-appearance:button}button,input,optgroup,select,textarea,::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;background:transparent}::placeholder{opacity:1;--placeholder-fallback: color-mix(in srgb, currentColor 50%, transparent);color:var(--global-color-placeholder, var(--placeholder-fallback))}textarea{resize:vertical}table{text-indent:0px;border-collapse:collapse;border-color:inherit}summary{display:list-item}small{font-size:80%}sub,sup{position:relative;vertical-align:baseline;font-size:75%;line-height:0}sub{bottom:-.25em}sup{top:-.5em}dialog{padding:0}a{color:inherit;text-decoration:inherit}abbr:where([title]){text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp,pre{--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";font-feature-settings:normal;font-variation-settings:normal;font-family:var(--global-font-mono, var(--font-mono-fallback));font-size:1em}progress{vertical-align:baseline}::-webkit-search-decoration,::-webkit-search-cancel-button{-webkit-appearance:none}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}:-moz-ui-invalid{box-shadow:none}:-moz-focusring{outline:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer base{:root{--made-with-panda: "🐼"}*,:before,:after,::backdrop{--blur: ;--brightness: ;--contrast: ;--grayscale: ;--hue-rotate: ;--invert: ;--saturate: ;--sepia: ;--drop-shadow: ;--backdrop-blur: ;--backdrop-brightness: ;--backdrop-contrast: ;--backdrop-grayscale: ;--backdrop-hue-rotate: ;--backdrop-invert: ;--backdrop-opacity: ;--backdrop-saturate: ;--backdrop-sepia: ;--gradient-from-position: ;--gradient-to-position: ;--gradient-via-position: ;--scroll-snap-strictness: proximity;--border-spacing-x: 0;--border-spacing-y: 0;--translate-x: 0;--translate-y: 0;--rotate: 0;--rotate-x: 0;--rotate-y: 0;--skew-x: 0;--skew-y: 0;--scale-x: 1;--scale-y: 1}}@layer tokens{:where(:root,:host){--colors-sd-reference-color-scale-white-1000: #FFFFFF;--colors-sd-reference-color-scale-black-1000: #000000;--colors-sd-reference-color-scale-transparency-bl2: #00000005;--colors-sd-reference-color-scale-transparency-bl5: #0000000D;--colors-sd-reference-color-scale-transparency-bl20: #00000033;--colors-sd-reference-color-scale-transparency-wh60: #FFFFFF99;--colors-sd-reference-color-scale-transparency-wh2: #FFFFFF05;--colors-sd-reference-color-scale-transparency-wh5: #FFFFFF0D;--colors-sd-reference-color-scale-transparency-wh20: #FFFFFF33;--colors-sd-reference-color-scale-transparency-bl60: #00000099;--colors-sd-reference-color-scale-gray-100: #F0F0F0;--colors-sd-reference-color-scale-gray-200: #E4E4E3;--colors-sd-reference-color-scale-gray-300: #D1D0CD;--colors-sd-reference-color-scale-gray-400: #B1B0AE;--colors-sd-reference-color-scale-gray-500: #8C8B87;--colors-sd-reference-color-scale-gray-600: #6F6F6F;--colors-sd-reference-color-scale-gray-700: #575757;--colors-sd-reference-color-scale-gray-800: #424242;--colors-sd-reference-color-scale-gray-900: #31312F;--colors-sd-reference-color-scale-gray-1000: #232322;--colors-sd-reference-color-scale-neutral-100: #FAFAFA;--colors-sd-reference-color-scale-neutral-200: #F5F5F5;--colors-sd-reference-color-scale-neutral-300: #F0F0F0;--colors-sd-reference-color-scale-neutral-400: #EBEBEB;--colors-sd-reference-color-scale-neutral-500: #E5E5E5;--colors-sd-reference-color-scale-neutral-600: #474747;--colors-sd-reference-color-scale-neutral-700: #3B3B3B;--colors-sd-reference-color-scale-neutral-800: #2E2E2E;--colors-sd-reference-color-scale-neutral-900: #212121;--colors-sd-reference-color-scale-neutral-1000: #141414;--colors-sd-reference-color-scale-red-100: #FCEBEA;--colors-sd-reference-color-scale-red-200: #FFDCDA;--colors-sd-reference-color-scale-red-300: #FFC0BB;--colors-sd-reference-color-scale-red-400: #FF8F8F;--colors-sd-reference-color-scale-red-500: #F64157;--colors-sd-reference-color-scale-red-600: #D00138;--colors-sd-reference-color-scale-red-700: #A4002A;--colors-sd-reference-color-scale-red-800: #81001F;--colors-sd-reference-color-scale-red-900: #600114;--colors-sd-reference-color-scale-red-1000: #400109;--colors-sd-reference-color-scale-chestnut-100: #FAECE6;--colors-sd-reference-color-scale-chestnut-200: #FDDDCE;--colors-sd-reference-color-scale-chestnut-300: #FCC4AB;--colors-sd-reference-color-scale-chestnut-400: #F49972;--colors-sd-reference-color-scale-chestnut-500: #DC6733;--colors-sd-reference-color-scale-chestnut-600: #B54E1B;--colors-sd-reference-color-scale-chestnut-700: #8F3D15;--colors-sd-reference-color-scale-chestnut-800: #702D0D;--colors-sd-reference-color-scale-chestnut-900: #50230D;--colors-sd-reference-color-scale-chestnut-1000: #371B0B;--colors-sd-reference-color-scale-beige-100: #FDF5EC;--colors-sd-reference-color-scale-beige-200: #F6E0C6;--colors-sd-reference-color-scale-beige-300: #F0CC9E;--colors-sd-reference-color-scale-beige-400: #DEB074;--colors-sd-reference-color-scale-beige-500: #AE8144;--colors-sd-reference-color-scale-beige-600: #8D6735;--colors-sd-reference-color-scale-beige-700: #70522A;--colors-sd-reference-color-scale-beige-800: #573F1D;--colors-sd-reference-color-scale-beige-900: #3E2D17;--colors-sd-reference-color-scale-beige-1000: #2B2013;--colors-sd-reference-color-scale-yellow-100: #FAF4E3;--colors-sd-reference-color-scale-yellow-200: #FCE998;--colors-sd-reference-color-scale-yellow-300: #EDD857;--colors-sd-reference-color-scale-yellow-400: #DEC400;--colors-sd-reference-color-scale-yellow-500: #A78E00;--colors-sd-reference-color-scale-yellow-600: #816E00;--colors-sd-reference-color-scale-yellow-700: #645600;--colors-sd-reference-color-scale-yellow-800: #514400;--colors-sd-reference-color-scale-yellow-900: #3A3000;--colors-sd-reference-color-scale-yellow-1000: #292200;--colors-sd-reference-color-scale-green-100: #DBF5EA;--colors-sd-reference-color-scale-green-200: #BCEEDD;--colors-sd-reference-color-scale-green-300: #90E4C7;--colors-sd-reference-color-scale-green-400: #46D2A2;--colors-sd-reference-color-scale-green-500: #2EAB80;--colors-sd-reference-color-scale-green-600: #2C7C60;--colors-sd-reference-color-scale-green-700: #146348;--colors-sd-reference-color-scale-green-800: #174A38;--colors-sd-reference-color-scale-green-900: #12372B;--colors-sd-reference-color-scale-green-1000: #0D271E;--colors-sd-reference-color-scale-sky-blue-100: #D9F6FC;--colors-sd-reference-color-scale-sky-blue-200: #C2EAEF;--colors-sd-reference-color-scale-sky-blue-300: #8DDDE3;--colors-sd-reference-color-scale-sky-blue-400: #4ACBD4;--colors-sd-reference-color-scale-sky-blue-500: #00A0AC;--colors-sd-reference-color-scale-sky-blue-600: #007882;--colors-sd-reference-color-scale-sky-blue-700: #006066;--colors-sd-reference-color-scale-sky-blue-800: #004A4F;--colors-sd-reference-color-scale-sky-blue-900: #02373C;--colors-sd-reference-color-scale-sky-blue-1000: #04272A;--colors-sd-reference-color-scale-blue-100: #EFF2FC;--colors-sd-reference-color-scale-blue-200: #DDE3FF;--colors-sd-reference-color-scale-blue-300: #C0CFFD;--colors-sd-reference-color-scale-blue-400: #8FAEFE;--colors-sd-reference-color-scale-blue-500: #3B86F9;--colors-sd-reference-color-scale-blue-600: #056AD8;--colors-sd-reference-color-scale-blue-700: #0353AA;--colors-sd-reference-color-scale-blue-800: #043F81;--colors-sd-reference-color-scale-blue-900: #073165;--colors-sd-reference-color-scale-blue-1000: #081E3F;--colors-sd-reference-color-scale-purple-100: #F4ECF6;--colors-sd-reference-color-scale-purple-200: #EEDEF2;--colors-sd-reference-color-scale-purple-300: #E1C7E7;--colors-sd-reference-color-scale-purple-400: #CC9FD9;--colors-sd-reference-color-scale-purple-500: #B36CCD;--colors-sd-reference-color-scale-purple-600: #9751B0;--colors-sd-reference-color-scale-purple-700: #7C3694;--colors-sd-reference-color-scale-purple-800: #5F2B70;--colors-sd-reference-color-scale-purple-900: #462352;--colors-sd-reference-color-scale-purple-1000: #32183A;--colors-sd-reference-color-scale-pink-100: #FFF4F8;--colors-sd-reference-color-scale-pink-200: #F9DCE5;--colors-sd-reference-color-scale-pink-300: #F3C4D3;--colors-sd-reference-color-scale-pink-400: #F691B6;--colors-sd-reference-color-scale-pink-500: #E2568F;--colors-sd-reference-color-scale-pink-600: #B9346C;--colors-sd-reference-color-scale-pink-700: #9B2657;--colors-sd-reference-color-scale-pink-800: #761A42;--colors-sd-reference-color-scale-pink-900: #591734;--colors-sd-reference-color-scale-pink-1000: #3E0F24;--colors-sd-system-color-impression-primary: #0353AA;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #0353AA;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #C0CFFD;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #C0CFFD;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #EFF2FC;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #EFF2FC;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #EFF2FC;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #C0CFFD;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #DDE3FF;--colors-sd-system-color-chart-mark-primary-02: #C0CFFD;--colors-sd-system-color-chart-mark-primary-03: #8FAEFE;--colors-sd-system-color-chart-mark-primary-04: #3B86F9;--colors-sd-system-color-chart-mark-primary-05: #056AD8;--colors-sd-system-color-chart-mark-primary-06: #073165;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #3B86F9;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F;--spacing-sd-reference-dimension-scale-0: 0px;--spacing-sd-reference-dimension-scale-1: 1px;--spacing-sd-reference-dimension-scale-2: 2px;--spacing-sd-reference-dimension-scale-3: 4px;--spacing-sd-reference-dimension-scale-4: 8px;--spacing-sd-reference-dimension-scale-5: 12px;--spacing-sd-reference-dimension-scale-6: 16px;--spacing-sd-reference-dimension-scale-7: 20px;--spacing-sd-reference-dimension-scale-8: 24px;--spacing-sd-reference-dimension-scale-9: 28px;--spacing-sd-reference-dimension-scale-10: 32px;--spacing-sd-reference-dimension-scale-11: 36px;--spacing-sd-reference-dimension-scale-12: 40px;--spacing-sd-reference-dimension-scale-13: 48px;--spacing-sd-reference-dimension-scale-14: 56px;--spacing-sd-reference-dimension-scale-15: 64px;--spacing-sd-reference-dimension-scale-16: 72px;--spacing-sd-reference-dimension-scale-17: 80px;--spacing-sd-reference-dimension-scale-18: 96px;--spacing-sd-system-dimension-spacing-none: 0px;--spacing-sd-system-dimension-spacing-two-extra-small: 4px;--spacing-sd-system-dimension-spacing-extra-small: 8px;--spacing-sd-system-dimension-spacing-small: 12px;--spacing-sd-system-dimension-spacing-medium: 16px;--spacing-sd-system-dimension-spacing-large: 20px;--spacing-sd-system-dimension-spacing-extra-large: 24px;--spacing-sd-system-dimension-spacing-two-extra-large: 32px;--spacing-sd-system-dimension-spacing-three-extra-large: 40px;--spacing-sd-system-dimension-spacing-four-extra-large: 48px;--spacing-sd-system-dimension-spacing-five-extra-large: 64px;--spacing-sd-system-dimension-spacing-six-extra-large: 80px;--sizes-sd-reference-dimension-breakpoint-small: 640px;--sizes-sd-reference-dimension-breakpoint-medium: 768px;--sizes-sd-reference-dimension-breakpoint-large: 1024px;--sizes-sd-reference-dimension-breakpoint-extra-large: 1280px;--sizes-sd-reference-dimension-scale-0: 0px;--sizes-sd-reference-dimension-scale-1: 1px;--sizes-sd-reference-dimension-scale-2: 2px;--sizes-sd-reference-dimension-scale-3: 4px;--sizes-sd-reference-dimension-scale-4: 8px;--sizes-sd-reference-dimension-scale-5: 12px;--sizes-sd-reference-dimension-scale-6: 16px;--sizes-sd-reference-dimension-scale-7: 20px;--sizes-sd-reference-dimension-scale-8: 24px;--sizes-sd-reference-dimension-scale-9: 28px;--sizes-sd-reference-dimension-scale-10: 32px;--sizes-sd-reference-dimension-scale-11: 36px;--sizes-sd-reference-dimension-scale-12: 40px;--sizes-sd-reference-dimension-scale-13: 48px;--sizes-sd-reference-dimension-scale-14: 56px;--sizes-sd-reference-dimension-scale-15: 64px;--sizes-sd-reference-dimension-scale-16: 72px;--sizes-sd-reference-dimension-scale-17: 80px;--sizes-sd-reference-dimension-scale-18: 96px;--sizes-sd-system-dimension-breakpoint-compact: 0px;--sizes-sd-system-dimension-breakpoint-expanded: 768px;--sizes-sd-system-dimension-spacing-none: 0px;--sizes-sd-system-dimension-spacing-two-extra-small: 4px;--sizes-sd-system-dimension-spacing-extra-small: 8px;--sizes-sd-system-dimension-spacing-small: 12px;--sizes-sd-system-dimension-spacing-medium: 16px;--sizes-sd-system-dimension-spacing-large: 20px;--sizes-sd-system-dimension-spacing-extra-large: 24px;--sizes-sd-system-dimension-spacing-two-extra-large: 32px;--sizes-sd-system-dimension-spacing-three-extra-large: 40px;--sizes-sd-system-dimension-spacing-four-extra-large: 48px;--sizes-sd-system-dimension-spacing-five-extra-large: 64px;--sizes-sd-system-dimension-spacing-six-extra-large: 80px;--sizes-breakpoint-expanded: 768px;--opacity-sd-reference-elevation-opacity-scale-0: 0;--opacity-sd-reference-elevation-opacity-scale-1: .1;--opacity-sd-reference-elevation-opacity-scale-2: .2;--opacity-sd-reference-elevation-opacity-scale-3: .3;--opacity-sd-reference-elevation-opacity-scale-4: .4;--opacity-sd-reference-elevation-opacity-scale-5: .5;--opacity-sd-reference-elevation-opacity-scale-6: .6;--opacity-sd-reference-elevation-opacity-scale-7: .7;--opacity-sd-reference-elevation-opacity-scale-8: .8;--opacity-sd-reference-elevation-opacity-scale-9: .9;--opacity-sd-reference-elevation-opacity-scale-10: 1;--fonts-sd-reference-typography-font-family-primary: inherit;--fonts-sd-reference-typography-font-family-monospace: Noto Sans Mono;--font-weights-sd-reference-typography-font-weight-regular: 400;--font-weights-sd-reference-typography-font-weight-bold: 700;--line-heights-sd-reference-typography-line-height-none: 1;--line-heights-sd-reference-typography-line-height-tight: 1.4;--line-heights-sd-reference-typography-line-height-normal: 1.6;--line-heights-sd-reference-typography-line-height-relaxed: 1.8;--font-sizes-sd-reference-typography-scale-expanded-four-extra-small: 10px;--font-sizes-sd-reference-typography-scale-expanded-three-extra-small: 11px;--font-sizes-sd-reference-typography-scale-expanded-two-extra-small: 12px;--font-sizes-sd-reference-typography-scale-expanded-extra-small: 13px;--font-sizes-sd-reference-typography-scale-expanded-small: 14px;--font-sizes-sd-reference-typography-scale-expanded-medium: 16px;--font-sizes-sd-reference-typography-scale-expanded-large: 18px;--font-sizes-sd-reference-typography-scale-expanded-extra-large: 21px;--font-sizes-sd-reference-typography-scale-expanded-two-extra-large: 26px;--font-sizes-sd-reference-typography-scale-expanded-three-extra-large: 32px;--font-sizes-sd-reference-typography-scale-expanded-four-extra-large: 43px;--font-sizes-sd-reference-typography-scale-expanded-five-extra-large: 64px;--font-sizes-sd-reference-typography-scale-compact-two-extra-small: 10px;--font-sizes-sd-reference-typography-scale-compact-extra-small: 11px;--font-sizes-sd-reference-typography-scale-compact-small: 12px;--font-sizes-sd-reference-typography-scale-compact-medium: 14px;--font-sizes-sd-reference-typography-scale-compact-large: 16px;--font-sizes-sd-reference-typography-scale-compact-extra-large: 19px;--font-sizes-sd-reference-typography-scale-compact-two-extra-large: 22px;--font-sizes-sd-reference-typography-scale-compact-three-extra-large: 28px;--font-sizes-sd-reference-typography-scale-compact-four-extra-large: 37px;--font-sizes-sd-reference-typography-scale-compact-five-extra-large: 56px;--border-widths-sd-system-dimension-border-medium: 1px;--border-widths-sd-system-dimension-border-thick: 2px;--border-widths-sd-system-dimension-border-extra-thick: 4px;--radii-sd-system-dimension-radius-extra-small: 2px;--radii-sd-system-dimension-radius-small: 4px;--radii-sd-system-dimension-radius-medium: 8px;--radii-sd-system-dimension-radius-large: 12px;--radii-sd-system-dimension-radius-extra-large: 16px;--radii-sd-system-dimension-radius-full: 9999px;--shadows-sd-system-elevation-shadow-level1: 0px 1px 2px 0px #0000004D;--shadows-sd-system-elevation-shadow-level2: 0px 1px 4px 0px #00000033;--shadows-sd-system-elevation-shadow-level3: 0px 2px 8px 0px #00000033;--shadows-sd-system-elevation-shadow-level4: 0px 4px 12px 0px #00000033;--shadows-sd-system-elevation-shadow-level5: 0px 8px 24px 0px #00000033;--z-index-sd-system-elevation-z-index-deep-dive: -1000;--z-index-sd-system-elevation-z-index-base: 0;--z-index-sd-system-elevation-z-index-docked: 10;--z-index-sd-system-elevation-z-index-dropdown: 500;--z-index-sd-system-elevation-z-index-modal: 1000;--z-index-sd-system-elevation-z-index-toast: 2000;--breakpoints-expanded: 768px}[data-panda-theme=asagi]{--colors-sd-system-color-impression-primary: #006066;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #006066;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #90E4C7;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #90E4C7;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #F0F0F0;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #F0F0F0;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #D9F6FC;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #90E4C7;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #C2EAEF;--colors-sd-system-color-chart-mark-primary-02: #8DDDE3;--colors-sd-system-color-chart-mark-primary-03: #4ACBD4;--colors-sd-system-color-chart-mark-primary-04: #00A0AC;--colors-sd-system-color-chart-mark-primary-05: #007882;--colors-sd-system-color-chart-mark-primary-06: #02373C;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #00A0AC;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=konjo-dark]{--colors-sd-system-color-impression-primary: #C0CFFD;--colors-sd-system-color-impression-on-primary: #000000;--colors-sd-system-color-impression-primary-container: #C0CFFD;--colors-sd-system-color-impression-on-primary-container: #000000;--colors-sd-system-color-impression-secondary: #043F81;--colors-sd-system-color-impression-on-secondary: #F0F0F0;--colors-sd-system-color-impression-secondary-container: #043F81;--colors-sd-system-color-impression-on-secondary-container: #F0F0F0;--colors-sd-system-color-impression-tertiary: #081E3F;--colors-sd-system-color-impression-on-tertiary: #F0F0F0;--colors-sd-system-color-impression-tertiary-container: #081E3F;--colors-sd-system-color-impression-on-tertiary-container: #F0F0F0;--colors-sd-system-color-impression-notice: #DEC400;--colors-sd-system-color-impression-on-notice: #FFFFFF;--colors-sd-system-color-impression-notice-container: #514400;--colors-sd-system-color-impression-on-notice-container: #FFFFFF;--colors-sd-system-color-impression-notice-container-variant: #3A3000;--colors-sd-system-color-impression-on-notice-container-variant: #F0F0F0;--colors-sd-system-color-impression-negative: #FFC0BB;--colors-sd-system-color-impression-on-negative: #000000;--colors-sd-system-color-impression-negative-container: #81001F;--colors-sd-system-color-impression-on-negative-container: #FFFFFF;--colors-sd-system-color-impression-negative-container-variant: #600114;--colors-sd-system-color-impression-on-negative-container-variant: #FFDCDA;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #146348;--colors-sd-system-color-impression-on-positive-container: #F0F0F0;--colors-sd-system-color-impression-positive-container-variant: #12372B;--colors-sd-system-color-impression-on-positive-container-variant: #F0F0F0;--colors-sd-system-color-component-surface: #141414;--colors-sd-system-color-component-on-surface: #E4E4E3;--colors-sd-system-color-component-on-surface-variant: #B1B0AE;--colors-sd-system-color-component-inverse-surface: #F0F0F0;--colors-sd-system-color-component-inverse-on-surface: #000000;--colors-sd-system-color-component-inverse-primary: #081E3F;--colors-sd-system-color-component-outline-bright: #424242;--colors-sd-system-color-component-outline: #575757;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000099;--colors-sd-system-color-component-surface-dim: #141414;--colors-sd-system-color-component-surface-bright: #3B3B3B;--colors-sd-system-color-component-surface-container-bright: #212121;--colors-sd-system-color-component-surface-container: #2E2E2E;--colors-sd-system-color-component-surface-container-dim: #474747;--colors-sd-system-color-interaction-disabled: #31312F;--colors-sd-system-color-interaction-disabled-on-surface: #6F6F6F;--colors-sd-system-color-interaction-selected: #FFFFFF05;--colors-sd-system-color-interaction-selected-surface: #043F81;--colors-sd-system-color-interaction-hovered: #FFFFFF33;--colors-sd-system-color-interaction-hovered-variant: #FFFFFF0D;--colors-sd-system-color-interaction-hovered-on-primary: #00000099;--colors-sd-system-color-chart-mark-primary-01: #DDE3FF;--colors-sd-system-color-chart-mark-primary-02: #C0CFFD;--colors-sd-system-color-chart-mark-primary-03: #8FAEFE;--colors-sd-system-color-chart-mark-primary-04: #3B86F9;--colors-sd-system-color-chart-mark-primary-05: #056AD8;--colors-sd-system-color-chart-mark-primary-06: #073165;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #3B86F9;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=kurikawa]{--colors-sd-system-color-impression-primary: #8F3D15;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #8F3D15;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #FCC4AB;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #FCC4AB;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #FDF5EC;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #FDF5EC;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #FAECE6;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #FCC4AB;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #FDDDCE;--colors-sd-system-color-chart-mark-primary-02: #FCC4AB;--colors-sd-system-color-chart-mark-primary-03: #F49972;--colors-sd-system-color-chart-mark-primary-04: #DC6733;--colors-sd-system-color-chart-mark-primary-05: #B54E1B;--colors-sd-system-color-chart-mark-primary-06: #50230D;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #DC6733;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=sumire]{--colors-sd-system-color-impression-primary: #7C3694;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #7C3694;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #E1C7E7;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #E1C7E7;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #073165;--colors-sd-system-color-impression-on-tertiary: #FFFFFF;--colors-sd-system-color-impression-tertiary-container: #073165;--colors-sd-system-color-impression-on-tertiary-container: #FFFFFF;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #F4ECF6;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #E1C7E7;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #EEDEF2;--colors-sd-system-color-chart-mark-primary-02: #E1C7E7;--colors-sd-system-color-chart-mark-primary-03: #CC9FD9;--colors-sd-system-color-chart-mark-primary-04: #B36CCD;--colors-sd-system-color-chart-mark-primary-05: #7C3694;--colors-sd-system-color-chart-mark-primary-06: #462352;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #B36CCD;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=tsutsuji]{--colors-sd-system-color-impression-primary: #9B2657;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #F9DCE5;--colors-sd-system-color-impression-on-primary-container: #000000;--colors-sd-system-color-impression-secondary: #F3C4D3;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #F3C4D3;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #591734;--colors-sd-system-color-impression-on-tertiary: #FFFFFF;--colors-sd-system-color-impression-tertiary-container: #591734;--colors-sd-system-color-impression-on-tertiary-container: #FFFFFF;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #FFF4F8;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #F3C4D3;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #F9DCE5;--colors-sd-system-color-chart-mark-primary-02: #F3C4D3;--colors-sd-system-color-chart-mark-primary-03: #F691B6;--colors-sd-system-color-chart-mark-primary-04: #E2568F;--colors-sd-system-color-chart-mark-primary-05: #9B2657;--colors-sd-system-color-chart-mark-primary-06: #591734;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #E2568F;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes progressIndicatorSlide{0%{transform:translate(-150%)}to{transform:translate(150%)}}}@layer utilities{@layer compositions{.textStyle_sd\.system\.typography\.body\.medium_compact{font-size:16px;font-weight:400;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.label\.extraLarge_compact{font-size:16px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.label\.small_compact{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.label\.medium_compact{font-size:12px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.label\.large_compact{font-size:14px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.body\.extraSmall_compact{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.textStyle_sd\.system\.typography\.title\.large_compact{font-size:22px;font-weight:700;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.body\.small_compact{font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.title\.small_compact{font-size:16px;font-weight:700;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.body\.extraSmall_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.textStyle_sd\.system\.typography\.title\.medium_compact{font-size:19px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.extraSmall_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.expanded\:textStyle_sd\.system\.typography\.label\.extraLarge_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.small_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.title\.large_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:18px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.medium_compact:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:16px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.label\.large_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:13px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.body\.small_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:13px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.title\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:16px;font-weight:700;font-family:inherit;line-height:1.6}@media screen and (min-width: 48rem){.expanded\:textStyle_sd\.system\.typography\.label\.small_expanded{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.medium_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.large_expanded{font-size:13px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded{font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.label\.small_compact{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.title\.small_expanded{font-size:14px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.small_expanded{font-size:13px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.extraSmall_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}}@media screen and (min-width: 48rem){.expanded\:expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}}}.d_flex{display:flex}.w_100\%{width:100%}.gap_sd\.system\.dimension\.spacing\.extraSmall{gap:var(--spacing-sd-system-dimension-spacing-extra-small)}.px_sd\.system\.dimension\.spacing\.medium{padding-inline:var(--spacing-sd-system-dimension-spacing-medium)}.py_sd\.system\.dimension\.spacing\.small{padding-block:var(--spacing-sd-system-dimension-spacing-small)}.cursor_pointer{cursor:pointer}.flex_1{flex:1 1 0%}.ta_left{text-align:left}.c_sd\.system\.color\.component\.onSurface{color:var(--colors-sd-system-color-component-on-surface)}.flex_0_0_24px{flex:0 0 24px}.trs_transform_0\.2s{transition:transform .2s}.trf_rotate\(-90deg\){transform:rotate(-90deg)}.bdr_50\%{border-radius:50%}.w_24{width:24px}.h_24{height:24px}.w_40{width:40px}.h_40{height:40px}.w_80{width:80px}.h_80{height:80px}.h_100\%{height:100%}.c_sd\.reference\.color\.scale\.black\.1000{color:var(--colors-sd-reference-color-scale-black-1000)}.d_inline-flex{display:inline-flex}.gap_2px{gap:2px}.bdr_sd\.system\.dimension\.radius\.extraLarge{border-radius:var(--radii-sd-system-dimension-radius-extra-large)}.bg_sd\.system\.color\.interaction\.hoveredVariant{background:var(--colors-sd-system-color-interaction-hovered-variant)}.h_16px{height:16px}.h_24px{height:24px}.h_32px{height:32px}.bg_sd\.reference\.color\.scale\.gray\.600{background:var(--colors-sd-reference-color-scale-gray-600)}.c_sd\.reference\.color\.scale\.white\.1000{color:var(--colors-sd-reference-color-scale-white-1000)}.bg_sd\.reference\.color\.scale\.blue\.600{background:var(--colors-sd-reference-color-scale-blue-600)}.bg_sd\.reference\.color\.scale\.green\.600{background:var(--colors-sd-reference-color-scale-green-600)}.bg_sd\.reference\.color\.scale\.yellow\.600{background:var(--colors-sd-reference-color-scale-yellow-600)}.bg_sd\.reference\.color\.scale\.chestnut\.600{background:var(--colors-sd-reference-color-scale-chestnut-600)}.bg_sd\.reference\.color\.scale\.red\.600{background:var(--colors-sd-reference-color-scale-red-600)}.bg_sd\.reference\.color\.scale\.gray\.100{background:var(--colors-sd-reference-color-scale-gray-100)}.c_sd\.reference\.color\.scale\.gray\.800{color:var(--colors-sd-reference-color-scale-gray-800)}.bg_sd\.reference\.color\.scale\.blue\.100{background:var(--colors-sd-reference-color-scale-blue-100)}.c_sd\.reference\.color\.scale\.blue\.800{color:var(--colors-sd-reference-color-scale-blue-800)}.bg_sd\.reference\.color\.scale\.green\.100{background:var(--colors-sd-reference-color-scale-green-100)}.c_sd\.reference\.color\.scale\.green\.800{color:var(--colors-sd-reference-color-scale-green-800)}.bg_sd\.reference\.color\.scale\.yellow\.100{background:var(--colors-sd-reference-color-scale-yellow-100)}.c_sd\.reference\.color\.scale\.yellow\.800{color:var(--colors-sd-reference-color-scale-yellow-800)}.bg_sd\.reference\.color\.scale\.chestnut\.100{background:var(--colors-sd-reference-color-scale-chestnut-100)}.c_sd\.reference\.color\.scale\.chestnut\.800{color:var(--colors-sd-reference-color-scale-chestnut-800)}.bg_sd\.reference\.color\.scale\.red\.100{background:var(--colors-sd-reference-color-scale-red-100)}.c_sd\.reference\.color\.scale\.red\.800{color:var(--colors-sd-reference-color-scale-red-800)}.w_12{width:12px}.h_12{height:12px}.d_grid{display:grid}.p_sd\.system\.dimension\.spacing\.small{padding:var(--spacing-sd-system-dimension-spacing-small)}.bdr_sd\.system\.dimension\.radius\.medium{border-radius:var(--radii-sd-system-dimension-radius-medium)}.bg_sd\.system\.color\.component\.surfaceContainer{background:var(--colors-sd-system-color-component-surface-container)}.bg_sd\.system\.color\.impression\.negativeContainer{background:var(--colors-sd-system-color-impression-negative-container)}.c_sd\.system\.color\.impression\.onNegativeContainer{color:var(--colors-sd-system-color-impression-on-negative-container)}.bg_sd\.system\.color\.impression\.noticeContainer{background:var(--colors-sd-system-color-impression-notice-container)}.c_sd\.system\.color\.impression\.onNoticeContainer{color:var(--colors-sd-system-color-impression-on-notice-container)}.c_sd\.system\.color\.impression\.negative{color:var(--colors-sd-system-color-impression-negative)}.grid-area_2_\/_2_\/_3_\/_3{grid-area:2 / 2 / 3 / 3}.h_64{height:64px}.bd-t_1px_solid{border-top:1px solid}.gap_sd\.system\.dimension\.spacing\.twoExtraSmall{gap:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pos_relative{position:relative}.c_sd\.system\.color\.impression\.primary{color:var(--colors-sd-system-color-impression-primary)}.pos_absolute{position:absolute}.bdr_sd\.system\.dimension\.radius\.full{border-radius:var(--radii-sd-system-dimension-radius-full)}.ov_hidden{overflow:hidden}.bg_sd\.system\.color\.impression\.primaryContainer{background:var(--colors-sd-system-color-impression-primary-container)}.c_sd\.system\.color\.impression\.onPrimaryContainer{color:var(--colors-sd-system-color-impression-on-primary-container)}.h_48{height:48px}.px_sd\.system\.dimension\.spacing\.extraLarge{padding-inline:var(--spacing-sd-system-dimension-spacing-extra-large)}.h_32{height:32px}.px_sd\.system\.dimension\.spacing\.small{padding-inline:var(--spacing-sd-system-dimension-spacing-small)}.py_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-block:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.z_sd\.system\.elevation\.zIndex\.base{z-index:var(--z-index-sd-system-elevation-z-index-base)}.c_subtle{color:subtle}.p_2px{padding:2px}.gap_sd\.system\.dimension\.spacing\.medium{gap:var(--spacing-sd-system-dimension-spacing-medium)}.c_sd\.system\.color\.component\.outlineDim{color:var(--colors-sd-system-color-component-outline-dim)}.flex-flow_column{flex-flow:column}.c_sd\.system\.color\.component\.onSurfaceVariant{color:var(--colors-sd-system-color-component-on-surface-variant)}.min-h_160px{min-height:160px}.gap_sd\.system\.dimension\.spacing\.twoExtraLarge{gap:var(--spacing-sd-system-dimension-spacing-two-extra-large)}.grid-c_span_2{grid-column:span 2}.order_-1{order:-1}.h_80\%{height:80%}.w_3px{width:3px}.cursor_col-resize{cursor:col-resize}.us_none{-webkit-user-select:none;user-select:none}.tch-a_none{touch-action:none}.bd-r_1px_solid{border-right:1px solid}.bd-b_1px_solid{border-bottom:1px solid}.va_middle{vertical-align:middle}.px_sd\.system\.dimension\.spacing\.extraSmall{padding-inline:var(--spacing-sd-system-dimension-spacing-extra-small)}.white-space_nowrap{white-space:nowrap}.bg_sd\.system\.color\.component\.surface{background:var(--colors-sd-system-color-component-surface)}.bg_sd\.system\.color\.impression\.positiveContainerVariant{background:var(--colors-sd-system-color-impression-positive-container-variant)}.bg_sd\.system\.color\.impression\.noticeContainerVariant{background:var(--colors-sd-system-color-impression-notice-container-variant)}.bg_sd\.system\.color\.impression\.negativeContainerVariant{background:var(--colors-sd-system-color-impression-negative-container-variant)}.c_sd\.system\.color\.impression\.onNegativeContainerVariant{color:var(--colors-sd-system-color-impression-on-negative-container-variant)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.component\.surface\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bg_sd\.system\.color\.component\.inversePrimary{background:var(--colors-sd-system-color-component-inverse-primary)}.h_40px{height:40px}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.positiveContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-positive-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.op_0\.95{opacity:.95}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.noticeContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-notice-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.negativeContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-negative-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.op_0\.98{opacity:.98}.w_sd\.system\.dimension\.spacing\.twoExtraLarge{width:var(--sizes-sd-system-dimension-spacing-two-extra-large)}.bd_1px_solid{border:1px solid}.bdr_4px{border-radius:4px}.bx-sh_sm{box-shadow:sm}.bd-cl_separate{border-collapse:separate}.bd-sp_0{border-spacing:0}.min-w_100\%{min-width:100%}.ap_none{-moz-appearance:none;appearance:none;-webkit-appearance:none}.ta_center{text-align:center}.z_sd\.system\.elevation\.zIndex\.dropdown{z-index:var(--z-index-sd-system-elevation-z-index-dropdown)}.bg_sd\.system\.color\.component\.surfaceContainerBright{background:var(--colors-sd-system-color-component-surface-container-bright)}.bx-sh_sd\.system\.elevation\.shadow\.level1{box-shadow:var(--shadows-sd-system-elevation-shadow-level1)}.gap_sd\.system\.dimension\.spacing\.small{gap:var(--spacing-sd-system-dimension-spacing-small)}.w_fit-content{width:fit-content}.px_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-inline:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.w_full{width:full}.p_0{padding:0}.w_40px{width:40px}.bd_none{border:none}.bg_transparent{background:transparent}.z_2{z-index:2}.trf_translateY\(-50\%\){transform:translateY(-50%)}.pointer-events_none{pointer-events:none}.--thickness_1px{--thickness: 1px}.h_sd\.reference\.dimension\.scale\.1{height:var(--sizes-sd-reference-dimension-scale-1)}.w_sd\.reference\.dimension\.scale\.1{width:var(--sizes-sd-reference-dimension-scale-1)}.min-h_10px{min-height:10px}.bg_sd\.system\.color\.component\.scrim{background:var(--colors-sd-system-color-component-scrim)}.pos_fixed{position:fixed}.inset_0{top:0;right:0;bottom:0;left:0}.z_sd\.system\.elevation\.zIndex\.modal{z-index:var(--z-index-sd-system-elevation-z-index-modal)}.w_calc\(100\%_-_\{spacing\.sd\.system\.dimension\.spacing\.extraLarge\}\){width:calc(100% - var(--spacing-sd-system-dimension-spacing-extra-large))}.max-w_375px{max-width:375px}.h_100vh{height:100vh}.bx-sh_sd\.system\.elevation\.shadow\.level5{box-shadow:var(--shadows-sd-system-elevation-shadow-level5)}.max-w_100\%{max-width:100%}.p_sd\.system\.dimension\.spacing\.twoExtraSmall{padding:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.ring_none{outline:2px solid transparent;outline-offset:2px}.w_240{width:240px}.h_48px{height:48px}.py_sd\.system\.dimension\.spacing\.extraSmall{padding-block:var(--spacing-sd-system-dimension-spacing-extra-small)}.ps_sd\.system\.dimension\.spacing\.medium{padding-inline-start:var(--spacing-sd-system-dimension-spacing-medium)}.w_\{spacing\.sd\.reference\.dimension\.scale\.17\}{width:var(--spacing-sd-reference-dimension-scale-17)}.h_\{spacing\.sd\.reference\.dimension\.scale\.17\}{height:var(--spacing-sd-reference-dimension-scale-17)}.w_\{spacing\.sd\.reference\.dimension\.scale\.13\}{width:var(--spacing-sd-reference-dimension-scale-13)}.h_\{spacing\.sd\.reference\.dimension\.scale\.13\}{height:var(--spacing-sd-reference-dimension-scale-13)}.w_\{spacing\.sd\.reference\.dimension\.scale\.10\}{width:var(--spacing-sd-reference-dimension-scale-10)}.h_\{spacing\.sd\.reference\.dimension\.scale\.10\}{height:var(--spacing-sd-reference-dimension-scale-10)}.min-h_48{min-height:48px}.min-h_38{min-height:38px}.min-w_24{min-width:24px}.trf_translate\(-50\%\,_-50\%\){transform:translate(-50%,-50%)}.w_calc\(100\%_-_\{spacing\.sd\.system\.dimension\.spacing\.large\}_\*_2\){width:calc(100% - var(--spacing-sd-system-dimension-spacing-large) * 2)}.max-w_408px{max-width:408px}.c_sd\.system\.color\.impression\.onNegative{color:var(--colors-sd-system-color-impression-on-negative)}.h_16{height:16px}.min-w_16{min-width:16px}.h_8{height:8px}.px_0{padding-inline:0}.min-w_8{min-width:8px}.page_1{page:1px}.gap_sd\.system\.dimension\.spacing\.none{gap:var(--spacing-sd-system-dimension-spacing-none)}.min-w_32{min-width:32px}.m_0{margin:0}.w_32{width:32px}.c_primary{color:primary}.h_4px{height:4px}.h_8px{height:8px}.w_12px{width:12px}.h_12px{height:12px}.w_16px{width:16px}.w_calc\(100\%_-_4px\){width:calc(100% - 4px)}.fill_none{fill:none}.bdr_0{border-radius:0}.stk_sd\.system\.color\.impression\.primary{stroke:var(--colors-sd-system-color-impression-primary)}.stk-lc_butt{stroke-linecap:butt}.trf-o_center{transform-origin:center}.h_2px{height:2px}.w_50\%{width:50%}.anim_progressIndicatorSlide_1\.7s_cubic-bezier\(0\.65\,_0\.05\,_0\.36\,_1\)_infinite{animation:progressIndicatorSlide 1.7s cubic-bezier(.65,.05,.36,1) infinite}.stk_sd\.reference\.color\.scale\.gray\.300{stroke:var(--colors-sd-reference-color-scale-gray-300)}.tov_ellipsis{text-overflow:ellipsis}.d_inline-grid{display:inline-grid}.w_20px{width:20px}.w_sd\.system\.dimension\.spacing\.large{width:var(--sizes-sd-system-dimension-spacing-large)}.h_sd\.system\.dimension\.spacing\.large{height:var(--sizes-sd-system-dimension-spacing-large)}.bdr_sd\.system\.dimension\.radius\.small{border-radius:var(--radii-sd-system-dimension-radius-small)}.w_52{width:52px}.d_block{display:block}.w_20{width:20px}.h_20{height:20px}.my_5{margin-block:5px}.mx_6{margin-inline:6px}.w_160{width:160px}.h_44{height:44px}.bd-b_2px_solid{border-bottom:2px solid}.w_8{width:8px}.w_16{width:16px}.field-sizing_content{field-sizing:content}.min-h_2lh{min-height:2lh}.ta_right{text-align:right}.gap_10px{gap:10px}.bx-sh_sd\.system\.elevation\.shadow\.level3{box-shadow:var(--shadows-sd-system-elevation-shadow-level3)}.bg_sd\.system\.color\.impression\.positiveContainer{background:var(--colors-sd-system-color-impression-positive-container)}.c_sd\.system\.color\.impression\.onPositiveContainer{color:var(--colors-sd-system-color-impression-on-positive-container)}.c_sd\.system\.color\.component\.inverseOnSurface{color:var(--colors-sd-system-color-component-inverse-on-surface)}.max-w_200px{max-width:200px}.z_1000{z-index:1000}.--arrow-size_8px{--arrow-size: 8px}.--arrow-background_colors\.sd\.system\.color\.component\.inverseSurface{--arrow-background: var(--colors-sd-system-color-component-inverse-surface)}.z_1001{z-index:1001}.gap_8px{gap:8px}.place-items_center{place-items:center}.w_48px{width:48px}.flex-d_row-reverse{flex-direction:row-reverse}.pt_sd\.system\.dimension\.spacing\.small{padding-top:var(--spacing-sd-system-dimension-spacing-small)}.pb_sd\.system\.dimension\.spacing\.medium{padding-bottom:var(--spacing-sd-system-dimension-spacing-medium)}.flex-d_column{flex-direction:column}.ai_center{align-items:center}.jc_center{justify-content:center}.bg-c_sd\.reference\.color\.scale\.blue\.200{background-color:var(--colors-sd-reference-color-scale-blue-200)}.fs_11{font-size:11px}.fs_19{font-size:19px}.fs_37{font-size:37px}.pr_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-right:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pl_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-left:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pr_sd\.system\.dimension\.spacing\.extraSmall{padding-right:var(--spacing-sd-system-dimension-spacing-extra-small)}.pl_sd\.system\.dimension\.spacing\.extraSmall{padding-left:var(--spacing-sd-system-dimension-spacing-extra-small)}.pr_sd\.system\.dimension\.spacing\.medium{padding-right:var(--spacing-sd-system-dimension-spacing-medium)}.pl_sd\.system\.dimension\.spacing\.medium{padding-left:var(--spacing-sd-system-dimension-spacing-medium)}.grid-tc_24px_1fr{grid-template-columns:24px 1fr}.cg_sd\.system\.dimension\.spacing\.twoExtraSmall{column-gap:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.rg_sd\.system\.dimension\.spacing\.extraSmall{row-gap:var(--spacing-sd-system-dimension-spacing-extra-small)}.bd-w_sd\.system\.dimension\.border\.medium{border-width:var(--border-widths-sd-system-dimension-border-medium)}.border-style_solid{border-style:solid}.bd-c_sd\.system\.color\.impression\.negativeContainer{border-color:var(--colors-sd-system-color-impression-negative-container)}.bd-c_sd\.system\.color\.impression\.noticeContainer{border-color:var(--colors-sd-system-color-impression-notice-container)}.jc_space-around{justify-content:space-around}.bd-t-c_sd\.system\.color\.component\.outline{border-top-color:var(--colors-sd-system-color-component-outline)}.top_-6px{top:-6px}.right_4px{right:4px}.top_-2\.5px{top:-2.5px}.ring-w_sd\.system\.dimension\.border\.medium{outline-width:var(--border-widths-sd-system-dimension-border-medium)}.outline-style_solid{outline-style:solid}.ring-c_sd\.system\.color\.component\.outline{outline-color:var(--colors-sd-system-color-component-outline)}.pl_sd\.system\.dimension\.spacing\.extraLarge{padding-left:var(--spacing-sd-system-dimension-spacing-extra-large)}.pr_sd\.system\.dimension\.spacing\.extraLarge{padding-right:var(--spacing-sd-system-dimension-spacing-extra-large)}.top_20{top:20px}.right_80{right:80px}.bottom_60{bottom:60px}.left_60{left:60px}.flex-sh_0{flex-shrink:0}.mt_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-top:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.ai_flex-start{align-items:flex-start}.bg-c_sd\.system\.color\.component\.surfaceContainerDim{background-color:var(--colors-sd-system-color-component-surface-container-dim)}.bg-c_sd\.system\.color\.component\.surface{background-color:var(--colors-sd-system-color-component-surface)}.jc_space-between{justify-content:space-between}.grid-tc_1fr{grid-template-columns:1fr}.grid-tc_auto_1fr{grid-template-columns:auto 1fr}.grid-tc_1fr_1fr{grid-template-columns:1fr 1fr}.as_flex-end{align-self:flex-end}.ai_baseline{align-items:baseline}.right_0{right:0}.top_10\%{top:10%}.bd-c_sd\.system\.color\.component\.outline{border-color:var(--colors-sd-system-color-component-outline)}.ff_Roboto\,_sans-serif{font-family:Roboto,sans-serif}.fw_400{font-weight:400}.fs_13px{font-size:13px}.fs_11px{font-size:11px}.fs_15px{font-size:15px}.fs_14px{font-size:14px}.ov-x_auto{overflow-x:auto}.grid-tc_1fr_auto_1fr{grid-template-columns:1fr auto 1fr}.fw_normal{font-weight:400}.fv-num_tabular-nums{font-variant-numeric:tabular-nums}.pr_30px{padding-right:30px}.top_50\%{top:50%}.border-block-end-width_var\(--thickness\){border-block-end-width:var(--thickness)}.bd-c_sd\.system\.color\.component\.outlineBright{border-color:var(--colors-sd-system-color-component-outline-bright)}.bd-c_sd\.system\.color\.component\.outlineDim{border-color:var(--colors-sd-system-color-component-outline-dim)}.border-bottom-style_solid{border-bottom-style:solid}.border-left-style_solid{border-left-style:solid}.top_0{top:0}.bg-c_sd\.system\.color\.component\.surfaceContainerBright{background-color:var(--colors-sd-system-color-component-surface-container-bright)}.left_0{left:0}.jc_flex-start{justify-content:flex-start}.jc_flex-end{justify-content:flex-end}.pr_sd\.system\.dimension\.spacing\.small{padding-right:var(--spacing-sd-system-dimension-spacing-small)}.ml_2px{margin-left:2px}.bg-c_sd\.system\.color\.impression\.primaryContainer{background-color:var(--colors-sd-system-color-impression-primary-container)}.ring-c_transparent{outline-color:transparent}.flex-g_1{flex-grow:1}.right_sd\.system\.dimension\.spacing\.medium{right:var(--spacing-sd-system-dimension-spacing-medium)}.top_sd\.system\.dimension\.spacing\.extraSmall{top:var(--spacing-sd-system-dimension-spacing-extra-small)}.left_50\%{left:50%}.pt_sd\.system\.dimension\.spacing\.extraLarge{padding-top:var(--spacing-sd-system-dimension-spacing-extra-large)}.pb_sd\.system\.dimension\.spacing\.large{padding-bottom:var(--spacing-sd-system-dimension-spacing-large)}.bg-c_sd\.system\.color\.impression\.negative{background-color:var(--colors-sd-system-color-impression-negative)}.bg-c_sd\.system\.color\.impression\.primary{background-color:var(--colors-sd-system-color-impression-primary)}.lh_24px{line-height:24px}.left_0px{left:0}.bg-c_sd\.reference\.color\.scale\.gray\.100{background-color:var(--colors-sd-reference-color-scale-gray-100)}.bg-c_sd\.reference\.color\.scale\.gray\.300{background-color:var(--colors-sd-reference-color-scale-gray-300)}.lh_1{line-height:1}.grid-tc_auto_1fr_auto{grid-template-columns:auto 1fr auto}.pb_sd\.system\.dimension\.spacing\.small{padding-bottom:var(--spacing-sd-system-dimension-spacing-small)}.pt_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-top:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pb_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-bottom:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.scr-pl_sd\.system\.dimension\.spacing\.twoExtraSmall{scroll-padding-left:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pb_sd\.system\.dimension\.spacing\.extraSmall{padding-bottom:var(--spacing-sd-system-dimension-spacing-extra-small)}.pt_sd\.system\.dimension\.spacing\.extraSmall{padding-top:var(--spacing-sd-system-dimension-spacing-extra-small)}.grid-tc_1fr_auto{grid-template-columns:1fr auto}.bg-c_sd\.system\.color\.interaction\.disabled{background-color:var(--colors-sd-system-color-interaction-disabled)}.bd-w_1{border-width:1px}.trs-dur_\.2s{--transition-duration: .2s;transition-duration:.2s}.trs-prop_background\,_borderColor{--transition-prop: background, borderColor;transition-property:background,borderColor}.trs-tmf_cubic-bezier\(\.2\,_0\,_0\,_1\){--transition-easing: cubic-bezier(.2, 0, 0, 1);transition-timing-function:cubic-bezier(.2,0,0,1)}.trs-dur_\.3s{--transition-duration: .3s;transition-duration:.3s}.trs-prop_transform\,_borderColor{--transition-prop: transform, borderColor;transition-property:transform,borderColor}.lh_sd\.reference\.typography\.lineHeight\.tight{line-height:var(--line-heights-sd-reference-typography-line-height-tight)}.trs-prop_color\,_border-color{--transition-prop: color, border-color;transition-property:color,border-color}.bd-b-c_transparent{border-bottom-color:transparent}.bg-c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\,_\{colors\.sd\.system\.color\.impression\.negativeContainer\}\)\;{background-color:color-mix(in srgb,var(--colors-sd-system-color-interaction-hovered-on-primary),var(--colors-sd-system-color-impression-negative-container))}.grid-tc_auto{grid-template-columns:auto}.mt_sd\.system\.dimension\.spacing\.extraSmall{margin-top:var(--spacing-sd-system-dimension-spacing-extra-small)}.mr_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-right:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.mb_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-bottom:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.ml_sd\.system\.dimension\.spacing\.small{margin-left:var(--spacing-sd-system-dimension-spacing-small)}.flex-d_row{flex-direction:row}.content_ツールチップの内容{content:ツールチップの内容}.content_上部に表示{content:上部に表示}.content_左側に表示{content:左側に表示}.content_右側に表示{content:右側に表示}.content_下部に表示{content:下部に表示}.content_左上に表示{content:左上に表示}.content_右上に表示{content:右上に表示}.content_左下に表示{content:左下に表示}.content_右下に表示{content:右下に表示}.content_すぐに表示(100ms){content:すぐに表示(100ms)}.content_デフォルト(700ms){content:デフォルト(700ms)}.content_ゆっくり表示(1500ms){content:ゆっくり表示(1500ms)}.content_これは長いツールチップテキストです。最大幅が200pxに設定されているため、自動的に改行されます。{content:これは長いツールチップテキストです。最大幅が200pxに設定されているため、自動的に改行されます。}.content_このツールチップは表示されます{content:このツールチップは表示されます}.content_このツールチップは表示されません{content:このツールチップは表示されません}.content_ボタンのツールチップ{content:ボタンのツールチップ}.content_テキストのツールチップ{content:テキストのツールチップ}.content_アイコンのツールチップ{content:アイコンのツールチップ}.bg-c_sd\.system\.color\.component\.inverseSurface{background-color:var(--colors-sd-system-color-component-inverse-surface)}.fw_medium{font-weight:medium}.grid-tc_auto_1fr_auto_auto{grid-template-columns:auto 1fr auto auto}.open\:trf_rotate\(180deg\):is([open],[data-open],[data-state=open]){transform:rotate(180deg)}.open\:trf_rotate\(0deg\):is([open],[data-open],[data-state=open]){transform:rotate(0)}.\[\&_svg\]\:w_sd\.reference\.dimension\.scale\.8 svg{width:var(--sizes-sd-reference-dimension-scale-8)}.\[\&_svg\]\:h_sd\.reference\.dimension\.scale\.8 svg{height:var(--sizes-sd-reference-dimension-scale-8)}.disabled\:cursor_not-allowed:is(:disabled,[disabled],[data-disabled]){cursor:not-allowed}.disabled\:bg_sd\.system\.color\.interaction\.disabled:is(:disabled,[disabled],[data-disabled]){background:var(--colors-sd-system-color-interaction-disabled)}.disabled\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.disabled\:ring_none:is(:disabled,[disabled],[data-disabled]){outline:2px solid transparent;outline-offset:2px}.\[\&_\.checkmark\]\:c_sd\.system\.color\.impression\.onPrimaryContainer .checkmark{color:var(--colors-sd-system-color-impression-on-primary-container)}.disabled\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.outlineDim\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled]){color:color-mix(in srgb,var(--colors-sd-system-color-component-outline-dim),var(--colors-sd-system-color-interaction-hovered-on-primary))}.after\:pos_absolute:after{position:absolute}.after\:pointer-events_none:after{pointer-events:none}.after\:w_100\%:after{width:100%}.after\:h_100\%:after{height:100%}.after\:bg_sd\.system\.color\.component\.inversePrimary:after{background:var(--colors-sd-system-color-component-inverse-primary)}.after\:z_1:after{z-index:1}.after\:mix-bm_multiply:after{mix-blend-mode:multiply}.open\:d_flex:is([open],[data-open],[data-state=open]){display:flex}.open\:anim_fadeIn_0\.25s_ease-out:is([open],[data-open],[data-state=open]){animation:fadeIn .25s ease-out}.closed\:d_none:is([closed],[data-closed],[data-state=closed]){display:none}.closed\:anim_fadeOut_0\.2s_ease-out:is([closed],[data-closed],[data-state=closed]){animation:fadeOut .2s ease-out}.hidden\:d_none:is([hidden],[data-hidden]){display:none}.before\:pos_absolute:before{position:absolute}.before\:inset_0:before{top:0;right:0;bottom:0;left:0}.before\:z_-1:before{z-index:-1}.before\:bdr_sd\.system\.dimension\.radius\.full:before{border-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-in-range\]\]\:bg_sd\.system\.color\.interaction\.selectedSurface[data-in-range]{background:var(--colors-sd-system-color-interaction-selected-surface)}.\[\&\[data-in-range\]\]\:bdr_0px[data-in-range]{border-radius:0}.\[\&\[data-in-range\]\&\[data-in-hover-range\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-in-range].\[\&\[data-in-range\]\&\[data-in-hover-range\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-in-hover-range],.\[\&\[data-hover-range-start\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-hover-range-start],.\[\&\[data-hover-range-end\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-hover-range-end]{background:var(--colors-sd-system-color-interaction-hovered-variant)}.selected\:c_sd\.system\.color\.impression\.onPrimaryContainer:is([aria-selected=true],[data-selected]){color:var(--colors-sd-system-color-impression-on-primary-container)}.selected\:z_100:is([aria-selected=true],[data-selected]){z-index:100}.unavailable\:c_sd\.system\.color\.interaction\.disabledOnSurface[data-unavailable]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.unavailable\:cursor_not-allowed[data-unavailable]{cursor:not-allowed}.unavailable\:td_line-through[data-unavailable]{text-decoration:line-through}.disabled\:ring_solid:is(:disabled,[disabled],[data-disabled]){outline:solid}.disabled\:ring-o_0px:is(:disabled,[disabled],[data-disabled]){outline-offset:0px}.disabled\:bg_transparent:is(:disabled,[disabled],[data-disabled]){background:transparent}.\[\&_svg\]\:w_sd\.reference\.dimension\.scale\.12 svg{width:var(--sizes-sd-reference-dimension-scale-12)}.\[\&_svg\]\:h_sd\.reference\.dimension\.scale\.12 svg{height:var(--sizes-sd-reference-dimension-scale-12)}.selected\:bg_sd\.system\.color\.interaction\.selectedSurface:is([aria-selected=true],[data-selected]){background:var(--colors-sd-system-color-interaction-selected-surface)}.disabled\:op_0\.3:is(:disabled,[disabled],[data-disabled]){opacity:.3}.\[\&_svg\]\:w_24px svg{width:24px}.\[\&_svg\]\:h_24px svg{height:24px}.\[\&_svg\]\:d_block svg{display:block}.\[\&_svg\]\:max-h_100\% svg{max-height:100%}.\[\&_svg\]\:max-w_100\% svg{max-width:100%}.\[\&_svg\]\:w_40px svg{width:40px}.\[\&_svg\]\:h_40px svg{height:40px}.\[\&\[data-selected\]\]\:c_sd\.system\.color\.interaction\.disabledOnSurface[data-selected]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.disabled\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled]){color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.placeholder\:c_sd\.system\.color\.component\.onSurfaceVariant::placeholder,.placeholder\:c_sd\.system\.color\.component\.onSurfaceVariant[data-placeholder]{color:var(--colors-sd-system-color-component-on-surface-variant)}[data-disabled] .\[\[data-disabled\]_\&\]\:c_sd\.system\.color\.interaction\.disabledOnSurface{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}[data-placeholder-shown] .\[\[data-placeholder-shown\]_\&\]\:c_sd\.system\.color\.component\.onSurfaceVariant{color:var(--colors-sd-system-color-component-on-surface-variant)}[data-state=open] .\[\[data-state\=\'open\'\]_\&\]\:trf_rotate\(180deg\){transform:rotate(180deg)}.disabled\:cursor_default:is(:disabled,[disabled],[data-disabled]){cursor:default}.checked\:trf_translateX\(19px\):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){transform:translate(19px)}.selected\:c_sd\.system\.color\.impression\.primary:is([aria-selected=true],[data-selected]){color:var(--colors-sd-system-color-impression-primary)}.disabled\:bg-c_sd\.system\.color\.interaction\.disabled:is(:disabled,[disabled],[data-disabled]){background-color:var(--colors-sd-system-color-interaction-disabled)}.after\:content_\'\':after{content:""}.after\:top_0:after{top:0}.after\:left_0:after{left:0}.expanded\:ring-w_sd\.system\.dimension\.border\.thick:is([aria-expanded=true],[data-expanded],[data-state=expanded]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.expanded\:ring-c_sd\.system\.color\.impression\.primary:is([aria-expanded=true],[data-expanded],[data-state=expanded]){outline-color:var(--colors-sd-system-color-impression-primary)}.before\:content_\'\':before{content:""}.\[\&\[data-hover-range-start\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-start]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-start]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\]\:bdr-tr_0px[data-hover-range-start]{border-top-right-radius:0}.\[\&\[data-hover-range-start\]\]\:bdr-br_0px[data-hover-range-start]{border-bottom-right-radius:0}.\[\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-end\]\]\:bdr-tl_0px[data-hover-range-end]{border-top-left-radius:0}.\[\&\[data-hover-range-end\]\]\:bdr-bl_0px[data-hover-range-end]{border-bottom-left-radius:0}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-start\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-range-start]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-start\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-range-start]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.highlighted\:bg-c_sd\.system\.color\.interaction\.hoveredVariant[data-highlighted]{background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.disabled\:ring-c_sd\.system\.color\.component\.outline:is(:disabled,[disabled],[data-disabled]){outline-color:var(--colors-sd-system-color-component-outline)}.disabled\:ring-w_sd\.system\.dimension\.border\.medium:is(:disabled,[disabled],[data-disabled]){outline-width:var(--border-widths-sd-system-dimension-border-medium)}.disabled\:ring-c_transparent:is(:disabled,[disabled],[data-disabled]){outline-color:transparent}.\[\&\[data-selected\]\]\:fw_bold[data-selected]{font-weight:700}.invalid\:ring-c_sd\.system\.color\.impression\.negative:is(:invalid,[data-invalid]){outline-color:var(--colors-sd-system-color-impression-negative)}.\[\&\[data-focus\=\"true\"\]_\.control\]\:bd-c_sd\.system\.color\.impression\.primary[data-focus=true] .control{border-color:var(--colors-sd-system-color-impression-primary)}.checked\:bg-c_sd\.system\.color\.impression\.primaryContainer:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){background-color:var(--colors-sd-system-color-impression-primary-container)}.checked\:bd-c_sd\.system\.color\.impression\.primaryContainer:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){border-color:var(--colors-sd-system-color-impression-primary-container)}.checked\:bd-c_sd\.system\.color\.component\.surface:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){border-color:var(--colors-sd-system-color-component-surface)}.selected\:fw_bold:is([aria-selected=true],[data-selected]){font-weight:700}.selected\:bd-b-c_sd\.system\.color\.impression\.primary:is([aria-selected=true],[data-selected]){border-bottom-color:var(--colors-sd-system-color-impression-primary)}.\[\&\:has\(\[data-focus\=\"true\"\]\)\]\:ring-w_sd\.system\.dimension\.border\.thick:has([data-focus=true]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.\[\&\:has\(\[data-focus\=\"true\"\]\)\]\:ring-c_sd\.system\.color\.impression\.primary:has([data-focus=true]){outline-color:var(--colors-sd-system-color-impression-primary)}.lastOfType\:pb_8px:last-of-type{padding-bottom:8px}.firstOfType\:pb_0px:first-of-type{padding-bottom:0}.focusWithin\:ring-w_sd\.system\.dimension\.border\.thick:focus-within{outline-width:var(--border-widths-sd-system-dimension-border-thick)}.focusWithin\:ring-c_sd\.system\.color\.impression\.primary:focus-within{outline-color:var(--colors-sd-system-color-impression-primary)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-o_-2px{outline-offset:-2px}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bdr_sd\.system\.dimension\.radius\.small{border-radius:var(--radii-sd-system-dimension-radius-small)}.focusVisible\:ring_1px_solid:is(:focus-visible,[data-focus-visible]){outline:1px solid}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bdr_sd\.system\.dimension\.radius\.full{border-radius:var(--radii-sd-system-dimension-radius-full)}.focusVisible\:ring-o_-1px:is(:focus-visible,[data-focus-visible]){outline-offset:-1px}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:outline-style_solid{outline-style:solid}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-w_1\.5px{outline-width:1.5px}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-c_sd\.system\.color\.impression\.primary{outline-color:var(--colors-sd-system-color-impression-primary)}.focusVisible\:ring-c_sd\.system\.color\.component\.outline:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-component-outline)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bg-c_sd\.system\.color\.interaction\.selectedSurface{background-color:var(--colors-sd-system-color-interaction-selected-surface)}.focus\:ring-w_sd\.system\.dimension\.border\.thick:is(:focus,[data-focus]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.focus\:ring-c_sd\.system\.color\.impression\.primary:is(:focus,[data-focus]){outline-color:var(--colors-sd-system-color-impression-primary)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bd-c_sd\.system\.color\.impression\.primary{border-color:var(--colors-sd-system-color-impression-primary)}.focusVisible\:ring-w_1px:is(:focus-visible,[data-focus-visible]){outline-width:1px}.focusVisible\:outline-style_solid:is(:focus-visible,[data-focus-visible]){outline-style:solid}.hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.surface\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\):is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface),var(--colors-sd-system-color-interaction-hovered-variant))}.hover\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]){background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\,_\{colors\.sd\.system\.color\.component\.surface\}\)\;:is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-interaction-hovered-variant),var(--colors-sd-system-color-component-surface))}.hover\:c_sd\.system\.color\.impression\.primary:is(:hover,[data-hover]){color:var(--colors-sd-system-color-impression-primary)}.hover\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.selected\:before\:bg_sd\.system\.color\.impression\.primaryContainer:is([aria-selected=true],[data-selected]):before{background:var(--colors-sd-system-color-impression-primary-container)}.expanded\:\[\&_svg\]\:trf_rotate\(180deg\):is([aria-expanded=true],[data-expanded],[data-state=expanded]) svg{transform:rotate(180deg)}.enabled\:focusVisible\:ring-o_-1px:enabled:is(:focus-visible,[data-focus-visible]){outline-offset:-1px}.selected\:hover\:bg_sd\.system\.color\.interaction\.selectedSurface:is([aria-selected=true],[data-selected]):is(:hover,[data-hover]){background:var(--colors-sd-system-color-interaction-selected-surface)}.disabled\:selected\:bg_transparent:is(:disabled,[disabled],[data-disabled]):is([aria-selected=true],[data-selected]){background:transparent}.disabled\:\[\&_svg\]\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled]) svg{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.disabled\:placeholder\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled])::placeholder,.disabled\:placeholder\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled])[data-placeholder]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}[data-placeholder-shown] .disabled\:\[\[data-placeholder-shown\]_\&\]\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.enabled\:hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.surface\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\):enabled:is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface),var(--colors-sd-system-color-interaction-hovered-variant))}.enabled\:focusVisible\:ring-w_sd\.system\.dimension\.border\.medium:enabled:is(:focus-visible,[data-focus-visible]){outline-width:var(--border-widths-sd-system-dimension-border-medium)}.enabled\:focusVisible\:outline-style_solid:enabled:is(:focus-visible,[data-focus-visible]){outline-style:solid}.enabled\:focusVisible\:ring-c_sd\.system\.color\.interaction\.hovered:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-interaction-hovered)}.enabled\:hover\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:enabled:is(:hover,[data-hover]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.enabled\:focusVisible\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:enabled:is(:focus-visible,[data-focus-visible]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.enabled\:focusVisible\:ring-c_sd\.system\.color\.component\.outlineDim:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-component-outline-dim)}.today\:before\:bd-w_sd\.system\.dimension\.border\.medium[data-today]:before{border-width:var(--border-widths-sd-system-dimension-border-medium)}.today\:before\:bd-c_sd\.system\.color\.component\.outline[data-today]:before{border-color:var(--colors-sd-system-color-component-outline)}.today\:before\:border-style_solid[data-today]:before{border-style:solid}.enabled\:hover\:bg-i_linear-gradient\(0deg\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_0\%\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_100\%\):enabled:is(:hover,[data-hover]){background-image:linear-gradient(0deg,var(--colors-sd-system-color-interaction-hovered) 0%,var(--colors-sd-system-color-interaction-hovered) 100%)}.enabled\:focusVisible\:bg-i_linear-gradient\(0deg\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_0\%\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_100\%\):enabled:is(:focus-visible,[data-focus-visible]){background-image:linear-gradient(0deg,var(--colors-sd-system-color-interaction-hovered) 0%,var(--colors-sd-system-color-interaction-hovered) 100%)}.enabled\:focusVisible\:ring-w_sd\.system\.dimension\.border\.thick:enabled:is(:focus-visible,[data-focus-visible]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.enabled\:focusVisible\:ring-c_sd\.system\.color\.impression\.primary:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-impression-primary)}.enabled\:hover\:ring-c_sd\.system\.color\.interaction\.hovered:enabled:is(:hover,[data-hover]){outline-color:var(--colors-sd-system-color-interaction-hovered)}.checked\:disabled\:bg-c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]):is(:disabled,[disabled],[data-disabled]){background-color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.checked\:disabled\:bd-c_transparent:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]):is(:disabled,[disabled],[data-disabled]){border-color:transparent}.hover\:after\:pos_absolute:is(:hover,[data-hover]):after{position:absolute}.hover\:after\:pointer-events_none:is(:hover,[data-hover]):after{pointer-events:none}.hover\:after\:w_100\%:is(:hover,[data-hover]):after{width:100%}.hover\:after\:h_100\%:is(:hover,[data-hover]):after{height:100%}.hover\:after\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]):after{background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:after\:z_1:is(:hover,[data-hover]):after{z-index:1}.hover\:after\:bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.component\.inversePrimary\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\):is(:hover,[data-hover]):after{background:color-mix(in srgb,var(--colors-sd-system-color-component-inverse-primary) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.hover\:after\:mix-bm_multiply:is(:hover,[data-hover]):after{mix-blend-mode:multiply}.hover\:before\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]):before{background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:disabled\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:hover,[data-hover]):is(:disabled,[disabled],[data-disabled]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.hover\:after\:content_\'\':is(:hover,[data-hover]):after{content:""}.hover\:after\:top_0:is(:hover,[data-hover]):after{top:0}.hover\:after\:left_0:is(:hover,[data-hover]):after{left:0}.enabled\:hover\:after\:pos_absolute:enabled:is(:hover,[data-hover]):after{position:absolute}.enabled\:hover\:after\:inset_0:enabled:is(:hover,[data-hover]):after{top:0;right:0;bottom:0;left:0}.enabled\:hover\:after\:bg_sd\.system\.color\.interaction\.hovered:enabled:is(:hover,[data-hover]):after{background:var(--colors-sd-system-color-interaction-hovered)}.enabled\:focusVisible\:after\:pos_absolute:enabled:is(:focus-visible,[data-focus-visible]):after{position:absolute}.enabled\:focusVisible\:after\:inset_0:enabled:is(:focus-visible,[data-focus-visible]):after{top:0;right:0;bottom:0;left:0}.enabled\:focusVisible\:after\:bg_sd\.system\.color\.interaction\.hovered:enabled:is(:focus-visible,[data-focus-visible]):after{background:var(--colors-sd-system-color-interaction-hovered)}.disabled\:checked\:\[\&_svg\]\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled]):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]) svg{color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.disabled\:checked\:\[\&_\.checkmark\]\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.disabled\}\,_\{colors\.sd\.system\.color\.impression\.onPrimaryContainer\}\)\;:is(:disabled,[disabled],[data-disabled]):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]) .checkmark{color:color-mix(in srgb,var(--colors-sd-system-color-interaction-disabled),var(--colors-sd-system-color-impression-on-primary-container))}.selected\:hover\:before\:bg_sd\.system\.color\.impression\.primaryContainer:is([aria-selected=true],[data-selected]):is(:hover,[data-hover]):before{background:var(--colors-sd-system-color-impression-primary-container)}.disabled\:hover\:before\:bg_transparent:is(:disabled,[disabled],[data-disabled]):is(:hover,[data-hover]):before{background:transparent}.unavailable\:hover\:before\:bg_transparent[data-unavailable]:is(:hover,[data-hover]):before{background:transparent}.enabled\:hover\:after\:content_\'\':enabled:is(:hover,[data-hover]):after{content:""}.enabled\:focusVisible\:after\:content_\'\':enabled:is(:focus-visible,[data-focus-visible]):after{content:""}.today\:\[\&\[data-in-range\]\]\:before\:bd-c_sd\.reference\.color\.scale\.white\.1000[data-today][data-in-range]:before{border-color:var(--colors-sd-reference-color-scale-white-1000)}@layer components{.\[\@layer_components\]\:w_min\(100\%\,_300px\){width:min(100%,300px)}.\[\@layer_components\]\:w_min\(100\%\,_150px\){width:min(100%,150px)}}@layer components;@media screen and (min-width: 48rem){.expanded\:w_44px{width:44px}.expanded\:h_44px{height:44px}.expanded\:pt_sd\.system\.dimension\.spacing\.large{padding-top:var(--spacing-sd-system-dimension-spacing-large)}.expanded\:flex-d_row-reverse{flex-direction:row-reverse}.expanded\:jc_end{justify-content:end}}}
1
+ @import"https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+Mono:wght@100..900&family=Roboto:wght@100;400;700&display=swap";@layer reset,base,tokens,recipes,utilities;@layer base{:root{--global-font-body: "Roboto", "Noto Sans JP", sans-serif;--global-font-mono: "Noto Sans Mono", monospace;font-optical-sizing:auto;text-rendering:optimizeLegibility;font-feature-settings:"palt";letter-spacing:.03em}:root,[data-panda-theme]{background-color:var(--colors-sd-system-color-component-surface);color:var(--colors-sd-system-color-component-on-surface)}.docs-story{background-color:var(--colors-sd-system-color-component-surface)}}@layer reset{html,:host{--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";line-height:1.5;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-tab-size:4;tab-size:4;font-family:var(--global-font-body, var(--font-fallback));-webkit-tap-highlight-color:transparent}*,:before,:after,::backdrop,::file-selector-button{margin:0;padding:0;border-width:0px;border-style:solid;border-color:var(--global-color-border, currentcolor);box-sizing:border-box}hr{color:inherit;height:0px;border-top-width:1px}body{line-height:inherit;height:100%}img{border-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}h1,h2,h3,h4,h5,h6{text-wrap:balance;font-size:inherit;font-weight:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}ol,ul,menu{list-style:none}button,input:where([type=button],[type=reset],[type=submit]),::file-selector-button{-moz-appearance:button;appearance:button;-webkit-appearance:button}button,input,optgroup,select,textarea,::file-selector-button{font:inherit;background:transparent;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit}::placeholder{--placeholder-fallback: rgba(0, 0, 0, .5);opacity:1;color:var(--global-color-placeholder, var(--placeholder-fallback))}@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px){::placeholder{--placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent)}}textarea{resize:vertical}table{border-color:inherit;text-indent:0px;border-collapse:collapse}summary{display:list-item}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}dialog{padding:0}a{text-decoration:inherit;color:inherit}abbr:where([title]){text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp,pre{--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";font-family:var(--global-font-mono, var(--font-mono-fallback));font-size:1em;font-feature-settings:normal;font-variation-settings:normal}progress{vertical-align:baseline}::-webkit-search-decoration,::-webkit-search-cancel-button{-webkit-appearance:none}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}:-moz-ui-invalid{box-shadow:none}:-moz-focusring{outline:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer base{:root{--made-with-panda: "🐼"}*,:before,:after,::backdrop{--blur: ;--brightness: ;--contrast: ;--grayscale: ;--hue-rotate: ;--invert: ;--saturate: ;--sepia: ;--drop-shadow: ;--backdrop-blur: ;--backdrop-brightness: ;--backdrop-contrast: ;--backdrop-grayscale: ;--backdrop-hue-rotate: ;--backdrop-invert: ;--backdrop-opacity: ;--backdrop-saturate: ;--backdrop-sepia: ;--gradient-from-position: ;--gradient-to-position: ;--gradient-via-position: ;--scroll-snap-strictness: proximity;--border-spacing-x: 0;--border-spacing-y: 0;--translate-x: 0;--translate-y: 0;--rotate: 0;--rotate-x: 0;--rotate-y: 0;--skew-x: 0;--skew-y: 0;--scale-x: 1;--scale-y: 1}}@layer tokens{:where(:root,:host){--colors-sd-reference-color-scale-white-1000: #FFFFFF;--colors-sd-reference-color-scale-black-1000: #000000;--colors-sd-reference-color-scale-transparency-bl2: #00000005;--colors-sd-reference-color-scale-transparency-bl5: #0000000D;--colors-sd-reference-color-scale-transparency-bl20: #00000033;--colors-sd-reference-color-scale-transparency-wh60: #FFFFFF99;--colors-sd-reference-color-scale-transparency-wh2: #FFFFFF05;--colors-sd-reference-color-scale-transparency-wh5: #FFFFFF0D;--colors-sd-reference-color-scale-transparency-wh20: #FFFFFF33;--colors-sd-reference-color-scale-transparency-bl60: #00000099;--colors-sd-reference-color-scale-gray-100: #F0F0F0;--colors-sd-reference-color-scale-gray-200: #E4E4E3;--colors-sd-reference-color-scale-gray-300: #D1D0CD;--colors-sd-reference-color-scale-gray-400: #B1B0AE;--colors-sd-reference-color-scale-gray-500: #8C8B87;--colors-sd-reference-color-scale-gray-600: #6F6F6F;--colors-sd-reference-color-scale-gray-700: #575757;--colors-sd-reference-color-scale-gray-800: #424242;--colors-sd-reference-color-scale-gray-900: #31312F;--colors-sd-reference-color-scale-gray-1000: #232322;--colors-sd-reference-color-scale-neutral-100: #FAFAFA;--colors-sd-reference-color-scale-neutral-200: #F5F5F5;--colors-sd-reference-color-scale-neutral-300: #F0F0F0;--colors-sd-reference-color-scale-neutral-400: #EBEBEB;--colors-sd-reference-color-scale-neutral-500: #E5E5E5;--colors-sd-reference-color-scale-neutral-600: #474747;--colors-sd-reference-color-scale-neutral-700: #3B3B3B;--colors-sd-reference-color-scale-neutral-800: #2E2E2E;--colors-sd-reference-color-scale-neutral-900: #212121;--colors-sd-reference-color-scale-neutral-1000: #141414;--colors-sd-reference-color-scale-red-100: #FCEBEA;--colors-sd-reference-color-scale-red-200: #FFDCDA;--colors-sd-reference-color-scale-red-300: #FFC0BB;--colors-sd-reference-color-scale-red-400: #FF8F8F;--colors-sd-reference-color-scale-red-500: #F64157;--colors-sd-reference-color-scale-red-600: #D00138;--colors-sd-reference-color-scale-red-700: #A4002A;--colors-sd-reference-color-scale-red-800: #81001F;--colors-sd-reference-color-scale-red-900: #600114;--colors-sd-reference-color-scale-red-1000: #400109;--colors-sd-reference-color-scale-chestnut-100: #FAECE6;--colors-sd-reference-color-scale-chestnut-200: #FDDDCE;--colors-sd-reference-color-scale-chestnut-300: #FCC4AB;--colors-sd-reference-color-scale-chestnut-400: #F49972;--colors-sd-reference-color-scale-chestnut-500: #DC6733;--colors-sd-reference-color-scale-chestnut-600: #B54E1B;--colors-sd-reference-color-scale-chestnut-700: #8F3D15;--colors-sd-reference-color-scale-chestnut-800: #702D0D;--colors-sd-reference-color-scale-chestnut-900: #50230D;--colors-sd-reference-color-scale-chestnut-1000: #371B0B;--colors-sd-reference-color-scale-beige-100: #FDF5EC;--colors-sd-reference-color-scale-beige-200: #F6E0C6;--colors-sd-reference-color-scale-beige-300: #F0CC9E;--colors-sd-reference-color-scale-beige-400: #DEB074;--colors-sd-reference-color-scale-beige-500: #AE8144;--colors-sd-reference-color-scale-beige-600: #8D6735;--colors-sd-reference-color-scale-beige-700: #70522A;--colors-sd-reference-color-scale-beige-800: #573F1D;--colors-sd-reference-color-scale-beige-900: #3E2D17;--colors-sd-reference-color-scale-beige-1000: #2B2013;--colors-sd-reference-color-scale-yellow-100: #FAF4E3;--colors-sd-reference-color-scale-yellow-200: #FCE998;--colors-sd-reference-color-scale-yellow-300: #EDD857;--colors-sd-reference-color-scale-yellow-400: #DEC400;--colors-sd-reference-color-scale-yellow-500: #A78E00;--colors-sd-reference-color-scale-yellow-600: #816E00;--colors-sd-reference-color-scale-yellow-700: #645600;--colors-sd-reference-color-scale-yellow-800: #514400;--colors-sd-reference-color-scale-yellow-900: #3A3000;--colors-sd-reference-color-scale-yellow-1000: #292200;--colors-sd-reference-color-scale-green-100: #DBF5EA;--colors-sd-reference-color-scale-green-200: #BCEEDD;--colors-sd-reference-color-scale-green-300: #90E4C7;--colors-sd-reference-color-scale-green-400: #46D2A2;--colors-sd-reference-color-scale-green-500: #2EAB80;--colors-sd-reference-color-scale-green-600: #2C7C60;--colors-sd-reference-color-scale-green-700: #146348;--colors-sd-reference-color-scale-green-800: #174A38;--colors-sd-reference-color-scale-green-900: #12372B;--colors-sd-reference-color-scale-green-1000: #0D271E;--colors-sd-reference-color-scale-sky-blue-100: #D9F6FC;--colors-sd-reference-color-scale-sky-blue-200: #C2EAEF;--colors-sd-reference-color-scale-sky-blue-300: #8DDDE3;--colors-sd-reference-color-scale-sky-blue-400: #4ACBD4;--colors-sd-reference-color-scale-sky-blue-500: #00A0AC;--colors-sd-reference-color-scale-sky-blue-600: #007882;--colors-sd-reference-color-scale-sky-blue-700: #006066;--colors-sd-reference-color-scale-sky-blue-800: #004A4F;--colors-sd-reference-color-scale-sky-blue-900: #02373C;--colors-sd-reference-color-scale-sky-blue-1000: #04272A;--colors-sd-reference-color-scale-blue-100: #EFF2FC;--colors-sd-reference-color-scale-blue-200: #DDE3FF;--colors-sd-reference-color-scale-blue-300: #C0CFFD;--colors-sd-reference-color-scale-blue-400: #8FAEFE;--colors-sd-reference-color-scale-blue-500: #3B86F9;--colors-sd-reference-color-scale-blue-600: #056AD8;--colors-sd-reference-color-scale-blue-700: #0353AA;--colors-sd-reference-color-scale-blue-800: #043F81;--colors-sd-reference-color-scale-blue-900: #073165;--colors-sd-reference-color-scale-blue-1000: #081E3F;--colors-sd-reference-color-scale-purple-100: #F4ECF6;--colors-sd-reference-color-scale-purple-200: #EEDEF2;--colors-sd-reference-color-scale-purple-300: #E1C7E7;--colors-sd-reference-color-scale-purple-400: #CC9FD9;--colors-sd-reference-color-scale-purple-500: #B36CCD;--colors-sd-reference-color-scale-purple-600: #9751B0;--colors-sd-reference-color-scale-purple-700: #7C3694;--colors-sd-reference-color-scale-purple-800: #5F2B70;--colors-sd-reference-color-scale-purple-900: #462352;--colors-sd-reference-color-scale-purple-1000: #32183A;--colors-sd-reference-color-scale-pink-100: #FFF4F8;--colors-sd-reference-color-scale-pink-200: #F9DCE5;--colors-sd-reference-color-scale-pink-300: #F3C4D3;--colors-sd-reference-color-scale-pink-400: #F691B6;--colors-sd-reference-color-scale-pink-500: #E2568F;--colors-sd-reference-color-scale-pink-600: #B9346C;--colors-sd-reference-color-scale-pink-700: #9B2657;--colors-sd-reference-color-scale-pink-800: #761A42;--colors-sd-reference-color-scale-pink-900: #591734;--colors-sd-reference-color-scale-pink-1000: #3E0F24;--colors-sd-system-color-impression-primary: #0353AA;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #0353AA;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #C0CFFD;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #C0CFFD;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #EFF2FC;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #EFF2FC;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #EFF2FC;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #C0CFFD;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #DDE3FF;--colors-sd-system-color-chart-mark-primary-02: #C0CFFD;--colors-sd-system-color-chart-mark-primary-03: #8FAEFE;--colors-sd-system-color-chart-mark-primary-04: #3B86F9;--colors-sd-system-color-chart-mark-primary-05: #056AD8;--colors-sd-system-color-chart-mark-primary-06: #073165;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #3B86F9;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F;--spacing-sd-reference-dimension-scale-0: 0px;--spacing-sd-reference-dimension-scale-1: 1px;--spacing-sd-reference-dimension-scale-2: 2px;--spacing-sd-reference-dimension-scale-3: 4px;--spacing-sd-reference-dimension-scale-4: 8px;--spacing-sd-reference-dimension-scale-5: 12px;--spacing-sd-reference-dimension-scale-6: 16px;--spacing-sd-reference-dimension-scale-7: 20px;--spacing-sd-reference-dimension-scale-8: 24px;--spacing-sd-reference-dimension-scale-9: 28px;--spacing-sd-reference-dimension-scale-10: 32px;--spacing-sd-reference-dimension-scale-11: 36px;--spacing-sd-reference-dimension-scale-12: 40px;--spacing-sd-reference-dimension-scale-13: 48px;--spacing-sd-reference-dimension-scale-14: 56px;--spacing-sd-reference-dimension-scale-15: 64px;--spacing-sd-reference-dimension-scale-16: 72px;--spacing-sd-reference-dimension-scale-17: 80px;--spacing-sd-reference-dimension-scale-18: 96px;--spacing-sd-system-dimension-spacing-none: 0px;--spacing-sd-system-dimension-spacing-two-extra-small: 4px;--spacing-sd-system-dimension-spacing-extra-small: 8px;--spacing-sd-system-dimension-spacing-small: 12px;--spacing-sd-system-dimension-spacing-medium: 16px;--spacing-sd-system-dimension-spacing-large: 20px;--spacing-sd-system-dimension-spacing-extra-large: 24px;--spacing-sd-system-dimension-spacing-two-extra-large: 32px;--spacing-sd-system-dimension-spacing-three-extra-large: 40px;--spacing-sd-system-dimension-spacing-four-extra-large: 48px;--spacing-sd-system-dimension-spacing-five-extra-large: 64px;--spacing-sd-system-dimension-spacing-six-extra-large: 80px;--sizes-sd-reference-dimension-breakpoint-small: 640px;--sizes-sd-reference-dimension-breakpoint-medium: 768px;--sizes-sd-reference-dimension-breakpoint-large: 1024px;--sizes-sd-reference-dimension-breakpoint-extra-large: 1280px;--sizes-sd-reference-dimension-scale-0: 0px;--sizes-sd-reference-dimension-scale-1: 1px;--sizes-sd-reference-dimension-scale-2: 2px;--sizes-sd-reference-dimension-scale-3: 4px;--sizes-sd-reference-dimension-scale-4: 8px;--sizes-sd-reference-dimension-scale-5: 12px;--sizes-sd-reference-dimension-scale-6: 16px;--sizes-sd-reference-dimension-scale-7: 20px;--sizes-sd-reference-dimension-scale-8: 24px;--sizes-sd-reference-dimension-scale-9: 28px;--sizes-sd-reference-dimension-scale-10: 32px;--sizes-sd-reference-dimension-scale-11: 36px;--sizes-sd-reference-dimension-scale-12: 40px;--sizes-sd-reference-dimension-scale-13: 48px;--sizes-sd-reference-dimension-scale-14: 56px;--sizes-sd-reference-dimension-scale-15: 64px;--sizes-sd-reference-dimension-scale-16: 72px;--sizes-sd-reference-dimension-scale-17: 80px;--sizes-sd-reference-dimension-scale-18: 96px;--sizes-sd-system-dimension-breakpoint-compact: 0px;--sizes-sd-system-dimension-breakpoint-expanded: 768px;--sizes-sd-system-dimension-spacing-none: 0px;--sizes-sd-system-dimension-spacing-two-extra-small: 4px;--sizes-sd-system-dimension-spacing-extra-small: 8px;--sizes-sd-system-dimension-spacing-small: 12px;--sizes-sd-system-dimension-spacing-medium: 16px;--sizes-sd-system-dimension-spacing-large: 20px;--sizes-sd-system-dimension-spacing-extra-large: 24px;--sizes-sd-system-dimension-spacing-two-extra-large: 32px;--sizes-sd-system-dimension-spacing-three-extra-large: 40px;--sizes-sd-system-dimension-spacing-four-extra-large: 48px;--sizes-sd-system-dimension-spacing-five-extra-large: 64px;--sizes-sd-system-dimension-spacing-six-extra-large: 80px;--sizes-breakpoint-expanded: 768px;--opacity-sd-reference-elevation-opacity-scale-0: 0;--opacity-sd-reference-elevation-opacity-scale-1: .1;--opacity-sd-reference-elevation-opacity-scale-2: .2;--opacity-sd-reference-elevation-opacity-scale-3: .3;--opacity-sd-reference-elevation-opacity-scale-4: .4;--opacity-sd-reference-elevation-opacity-scale-5: .5;--opacity-sd-reference-elevation-opacity-scale-6: .6;--opacity-sd-reference-elevation-opacity-scale-7: .7;--opacity-sd-reference-elevation-opacity-scale-8: .8;--opacity-sd-reference-elevation-opacity-scale-9: .9;--opacity-sd-reference-elevation-opacity-scale-10: 1;--fonts-sd-reference-typography-font-family-primary: inherit;--fonts-sd-reference-typography-font-family-monospace: Noto Sans Mono;--font-weights-sd-reference-typography-font-weight-regular: 400;--font-weights-sd-reference-typography-font-weight-bold: 700;--line-heights-sd-reference-typography-line-height-none: 1;--line-heights-sd-reference-typography-line-height-tight: 1.4;--line-heights-sd-reference-typography-line-height-normal: 1.6;--line-heights-sd-reference-typography-line-height-relaxed: 1.8;--font-sizes-sd-reference-typography-scale-expanded-four-extra-small: 10px;--font-sizes-sd-reference-typography-scale-expanded-three-extra-small: 11px;--font-sizes-sd-reference-typography-scale-expanded-two-extra-small: 12px;--font-sizes-sd-reference-typography-scale-expanded-extra-small: 13px;--font-sizes-sd-reference-typography-scale-expanded-small: 14px;--font-sizes-sd-reference-typography-scale-expanded-medium: 16px;--font-sizes-sd-reference-typography-scale-expanded-large: 18px;--font-sizes-sd-reference-typography-scale-expanded-extra-large: 21px;--font-sizes-sd-reference-typography-scale-expanded-two-extra-large: 26px;--font-sizes-sd-reference-typography-scale-expanded-three-extra-large: 32px;--font-sizes-sd-reference-typography-scale-expanded-four-extra-large: 43px;--font-sizes-sd-reference-typography-scale-expanded-five-extra-large: 64px;--font-sizes-sd-reference-typography-scale-compact-two-extra-small: 10px;--font-sizes-sd-reference-typography-scale-compact-extra-small: 11px;--font-sizes-sd-reference-typography-scale-compact-small: 12px;--font-sizes-sd-reference-typography-scale-compact-medium: 14px;--font-sizes-sd-reference-typography-scale-compact-large: 16px;--font-sizes-sd-reference-typography-scale-compact-extra-large: 19px;--font-sizes-sd-reference-typography-scale-compact-two-extra-large: 22px;--font-sizes-sd-reference-typography-scale-compact-three-extra-large: 28px;--font-sizes-sd-reference-typography-scale-compact-four-extra-large: 37px;--font-sizes-sd-reference-typography-scale-compact-five-extra-large: 56px;--border-widths-sd-system-dimension-border-medium: 1px;--border-widths-sd-system-dimension-border-thick: 2px;--border-widths-sd-system-dimension-border-extra-thick: 4px;--radii-sd-system-dimension-radius-extra-small: 2px;--radii-sd-system-dimension-radius-small: 4px;--radii-sd-system-dimension-radius-medium: 8px;--radii-sd-system-dimension-radius-large: 12px;--radii-sd-system-dimension-radius-extra-large: 16px;--radii-sd-system-dimension-radius-full: 9999px;--shadows-sd-system-elevation-shadow-level1: 0px 1px 2px 0px #0000004D;--shadows-sd-system-elevation-shadow-level2: 0px 1px 4px 0px #00000033;--shadows-sd-system-elevation-shadow-level3: 0px 2px 8px 0px #00000033;--shadows-sd-system-elevation-shadow-level4: 0px 4px 12px 0px #00000033;--shadows-sd-system-elevation-shadow-level5: 0px 8px 24px 0px #00000033;--z-index-sd-system-elevation-z-index-deep-dive: -1000;--z-index-sd-system-elevation-z-index-base: 0;--z-index-sd-system-elevation-z-index-docked: 10;--z-index-sd-system-elevation-z-index-dropdown: 500;--z-index-sd-system-elevation-z-index-modal: 1000;--z-index-sd-system-elevation-z-index-toast: 2000;--breakpoints-expanded: 768px}[data-panda-theme=asagi]{--colors-sd-system-color-impression-primary: #006066;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #006066;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #90E4C7;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #90E4C7;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #F0F0F0;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #F0F0F0;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #D9F6FC;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #90E4C7;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #C2EAEF;--colors-sd-system-color-chart-mark-primary-02: #8DDDE3;--colors-sd-system-color-chart-mark-primary-03: #4ACBD4;--colors-sd-system-color-chart-mark-primary-04: #00A0AC;--colors-sd-system-color-chart-mark-primary-05: #007882;--colors-sd-system-color-chart-mark-primary-06: #02373C;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #00A0AC;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=konjo-dark]{--colors-sd-system-color-impression-primary: #C0CFFD;--colors-sd-system-color-impression-on-primary: #000000;--colors-sd-system-color-impression-primary-container: #C0CFFD;--colors-sd-system-color-impression-on-primary-container: #000000;--colors-sd-system-color-impression-secondary: #043F81;--colors-sd-system-color-impression-on-secondary: #F0F0F0;--colors-sd-system-color-impression-secondary-container: #043F81;--colors-sd-system-color-impression-on-secondary-container: #F0F0F0;--colors-sd-system-color-impression-tertiary: #081E3F;--colors-sd-system-color-impression-on-tertiary: #F0F0F0;--colors-sd-system-color-impression-tertiary-container: #081E3F;--colors-sd-system-color-impression-on-tertiary-container: #F0F0F0;--colors-sd-system-color-impression-notice: #DEC400;--colors-sd-system-color-impression-on-notice: #FFFFFF;--colors-sd-system-color-impression-notice-container: #514400;--colors-sd-system-color-impression-on-notice-container: #FFFFFF;--colors-sd-system-color-impression-notice-container-variant: #3A3000;--colors-sd-system-color-impression-on-notice-container-variant: #F0F0F0;--colors-sd-system-color-impression-negative: #FFC0BB;--colors-sd-system-color-impression-on-negative: #000000;--colors-sd-system-color-impression-negative-container: #81001F;--colors-sd-system-color-impression-on-negative-container: #FFFFFF;--colors-sd-system-color-impression-negative-container-variant: #600114;--colors-sd-system-color-impression-on-negative-container-variant: #FFDCDA;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #146348;--colors-sd-system-color-impression-on-positive-container: #F0F0F0;--colors-sd-system-color-impression-positive-container-variant: #12372B;--colors-sd-system-color-impression-on-positive-container-variant: #F0F0F0;--colors-sd-system-color-component-surface: #141414;--colors-sd-system-color-component-on-surface: #E4E4E3;--colors-sd-system-color-component-on-surface-variant: #B1B0AE;--colors-sd-system-color-component-inverse-surface: #F0F0F0;--colors-sd-system-color-component-inverse-on-surface: #000000;--colors-sd-system-color-component-inverse-primary: #081E3F;--colors-sd-system-color-component-outline-bright: #424242;--colors-sd-system-color-component-outline: #575757;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000099;--colors-sd-system-color-component-surface-dim: #141414;--colors-sd-system-color-component-surface-bright: #3B3B3B;--colors-sd-system-color-component-surface-container-bright: #212121;--colors-sd-system-color-component-surface-container: #2E2E2E;--colors-sd-system-color-component-surface-container-dim: #474747;--colors-sd-system-color-interaction-disabled: #31312F;--colors-sd-system-color-interaction-disabled-on-surface: #6F6F6F;--colors-sd-system-color-interaction-selected: #FFFFFF05;--colors-sd-system-color-interaction-selected-surface: #043F81;--colors-sd-system-color-interaction-hovered: #FFFFFF33;--colors-sd-system-color-interaction-hovered-variant: #FFFFFF0D;--colors-sd-system-color-interaction-hovered-on-primary: #00000099;--colors-sd-system-color-chart-mark-primary-01: #DDE3FF;--colors-sd-system-color-chart-mark-primary-02: #C0CFFD;--colors-sd-system-color-chart-mark-primary-03: #8FAEFE;--colors-sd-system-color-chart-mark-primary-04: #3B86F9;--colors-sd-system-color-chart-mark-primary-05: #056AD8;--colors-sd-system-color-chart-mark-primary-06: #073165;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #3B86F9;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=kurikawa]{--colors-sd-system-color-impression-primary: #8F3D15;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #8F3D15;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #FCC4AB;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #FCC4AB;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #FDF5EC;--colors-sd-system-color-impression-on-tertiary: #000000;--colors-sd-system-color-impression-tertiary-container: #FDF5EC;--colors-sd-system-color-impression-on-tertiary-container: #000000;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #FAECE6;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #FCC4AB;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #FDDDCE;--colors-sd-system-color-chart-mark-primary-02: #FCC4AB;--colors-sd-system-color-chart-mark-primary-03: #F49972;--colors-sd-system-color-chart-mark-primary-04: #DC6733;--colors-sd-system-color-chart-mark-primary-05: #B54E1B;--colors-sd-system-color-chart-mark-primary-06: #50230D;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #DC6733;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=sumire]{--colors-sd-system-color-impression-primary: #7C3694;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #7C3694;--colors-sd-system-color-impression-on-primary-container: #FFFFFF;--colors-sd-system-color-impression-secondary: #E1C7E7;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #E1C7E7;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #073165;--colors-sd-system-color-impression-on-tertiary: #FFFFFF;--colors-sd-system-color-impression-tertiary-container: #073165;--colors-sd-system-color-impression-on-tertiary-container: #FFFFFF;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #F4ECF6;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #E1C7E7;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #EEDEF2;--colors-sd-system-color-chart-mark-primary-02: #E1C7E7;--colors-sd-system-color-chart-mark-primary-03: #CC9FD9;--colors-sd-system-color-chart-mark-primary-04: #B36CCD;--colors-sd-system-color-chart-mark-primary-05: #7C3694;--colors-sd-system-color-chart-mark-primary-06: #462352;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #B36CCD;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }[data-panda-theme=tsutsuji]{--colors-sd-system-color-impression-primary: #9B2657;--colors-sd-system-color-impression-on-primary: #FFFFFF;--colors-sd-system-color-impression-primary-container: #F9DCE5;--colors-sd-system-color-impression-on-primary-container: #000000;--colors-sd-system-color-impression-secondary: #F3C4D3;--colors-sd-system-color-impression-on-secondary: #000000;--colors-sd-system-color-impression-secondary-container: #F3C4D3;--colors-sd-system-color-impression-on-secondary-container: #000000;--colors-sd-system-color-impression-tertiary: #591734;--colors-sd-system-color-impression-on-tertiary: #FFFFFF;--colors-sd-system-color-impression-tertiary-container: #591734;--colors-sd-system-color-impression-on-tertiary-container: #FFFFFF;--colors-sd-system-color-impression-notice: #EDD857;--colors-sd-system-color-impression-on-notice: #000000;--colors-sd-system-color-impression-notice-container: #FCE998;--colors-sd-system-color-impression-on-notice-container: #000000;--colors-sd-system-color-impression-notice-container-variant: #FAF4E3;--colors-sd-system-color-impression-on-notice-container-variant: #000000;--colors-sd-system-color-impression-negative: #D00138;--colors-sd-system-color-impression-on-negative: #FFFFFF;--colors-sd-system-color-impression-negative-container: #FFDCDA;--colors-sd-system-color-impression-on-negative-container: #000000;--colors-sd-system-color-impression-negative-container-variant: #FCEBEA;--colors-sd-system-color-impression-on-negative-container-variant: #A4002A;--colors-sd-system-color-impression-positive: #2EAB80;--colors-sd-system-color-impression-on-positive: #FFFFFF;--colors-sd-system-color-impression-positive-container: #BCEEDD;--colors-sd-system-color-impression-on-positive-container: #000000;--colors-sd-system-color-impression-positive-container-variant: #DBF5EA;--colors-sd-system-color-impression-on-positive-container-variant: #000000;--colors-sd-system-color-component-surface: #FFFFFF;--colors-sd-system-color-component-on-surface: #000000;--colors-sd-system-color-component-on-surface-variant: #6F6F6F;--colors-sd-system-color-component-inverse-surface: #232322;--colors-sd-system-color-component-inverse-on-surface: #FFFFFF;--colors-sd-system-color-component-inverse-primary: #FFF4F8;--colors-sd-system-color-component-outline-bright: #E4E4E3;--colors-sd-system-color-component-outline: #D1D0CD;--colors-sd-system-color-component-outline-dim: #8C8B87;--colors-sd-system-color-component-scrim: #00000033;--colors-sd-system-color-component-surface-dim: #F0F0F0;--colors-sd-system-color-component-surface-bright: #FFFFFF;--colors-sd-system-color-component-surface-container-bright: #FFFFFF;--colors-sd-system-color-component-surface-container: #FAFAFA;--colors-sd-system-color-component-surface-container-dim: #F5F5F5;--colors-sd-system-color-interaction-disabled: #F0F0F0;--colors-sd-system-color-interaction-disabled-on-surface: #B1B0AE;--colors-sd-system-color-interaction-selected: #00000005;--colors-sd-system-color-interaction-selected-surface: #F3C4D3;--colors-sd-system-color-interaction-hovered: #00000033;--colors-sd-system-color-interaction-hovered-variant: #0000000D;--colors-sd-system-color-interaction-hovered-on-primary: #FFFFFF99;--colors-sd-system-color-chart-mark-primary-01: #F9DCE5;--colors-sd-system-color-chart-mark-primary-02: #F3C4D3;--colors-sd-system-color-chart-mark-primary-03: #F691B6;--colors-sd-system-color-chart-mark-primary-04: #E2568F;--colors-sd-system-color-chart-mark-primary-05: #9B2657;--colors-sd-system-color-chart-mark-primary-06: #591734;--colors-sd-system-color-chart-mark-positive-01: #BCEEDD;--colors-sd-system-color-chart-mark-positive-02: #90E4C7;--colors-sd-system-color-chart-mark-positive-03: #46D2A2;--colors-sd-system-color-chart-mark-positive-04: #2EAB80;--colors-sd-system-color-chart-mark-positive-05: #2C7C60;--colors-sd-system-color-chart-mark-positive-06: #12372B;--colors-sd-system-color-chart-mark-negative-01: #FFDCDA;--colors-sd-system-color-chart-mark-negative-02: #FFC0BB;--colors-sd-system-color-chart-mark-negative-03: #FF8F8F;--colors-sd-system-color-chart-mark-negative-04: #F64157;--colors-sd-system-color-chart-mark-negative-05: #D00138;--colors-sd-system-color-chart-mark-negative-06: #600114;--colors-sd-system-color-chart-mark-notice-01: #FCE998;--colors-sd-system-color-chart-mark-notice-02: #EDD857;--colors-sd-system-color-chart-mark-notice-03: #DEC400;--colors-sd-system-color-chart-mark-notice-04: #A78E00;--colors-sd-system-color-chart-mark-notice-05: #816E00;--colors-sd-system-color-chart-mark-notice-06: #3A3000;--colors-sd-system-color-chart-mark-multi-10: #AE8144;--colors-sd-system-color-chart-mark-multi-01: #056AD8;--colors-sd-system-color-chart-mark-multi-02: #46D2A2;--colors-sd-system-color-chart-mark-multi-03: #FF8F8F;--colors-sd-system-color-chart-mark-multi-04: #B36CCD;--colors-sd-system-color-chart-mark-multi-05: #8F3D15;--colors-sd-system-color-chart-mark-multi-06: #4ACBD4;--colors-sd-system-color-chart-mark-multi-07: #FCE998;--colors-sd-system-color-chart-mark-multi-08: #B54E1B;--colors-sd-system-color-chart-mark-multi-09: #9B2657;--colors-sd-system-color-chart-component-on-mark-label: #000000;--colors-sd-system-color-chart-component-inverse-on-mark-label: #FFFFFF;--colors-sd-system-color-chart-component-scalemark: #E4E4E3;--colors-sd-system-color-chart-component-threshold: #E2568F;--colors-sd-system-color-chart-component-chart-surface: #FFFFFF;--colors-sd-system-color-chart-component-on-chart-surface: #6F6F6F }@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes progressIndicatorSlide{0%{transform:translate(-150%)}to{transform:translate(150%)}}}@layer utilities{@layer compositions{.textStyle_sd\.system\.typography\.body\.medium_compact{font-size:16px;font-weight:400;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.label\.medium_compact{font-size:12px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.body\.extraSmall_compact{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.textStyle_sd\.system\.typography\.label\.extraLarge_compact{font-size:16px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.label\.small_compact{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.label\.large_compact{font-size:14px;font-weight:400;font-family:inherit;line-height:1}.textStyle_sd\.system\.typography\.title\.large_compact{font-size:22px;font-weight:700;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.body\.small_compact{font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.title\.small_compact{font-size:16px;font-weight:700;font-family:inherit;line-height:1.6}.textStyle_sd\.system\.typography\.body\.extraSmall_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.textStyle_sd\.system\.typography\.title\.medium_compact{font-size:19px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.extraSmall_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.expanded\:textStyle_sd\.system\.typography\.label\.extraLarge_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.small_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.title\.large_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:18px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.medium_compact:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:16px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.label\.large_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:13px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.body\.small_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:13px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.title\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:16px;font-weight:700;font-family:inherit;line-height:1.6}@media screen and (min-width: 48rem){.expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded{font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.label\.medium_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.body\.extraSmall_expanded{font-size:12px;font-weight:400;font-family:inherit;line-height:1.4}.expanded\:textStyle_sd\.system\.typography\.label\.small_expanded{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.large_expanded{font-size:13px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.label\.small_compact{font-size:11px;font-weight:400;font-family:inherit;line-height:1}.expanded\:textStyle_sd\.system\.typography\.title\.small_expanded{font-size:14px;font-weight:700;font-family:inherit;line-height:1.6}.expanded\:textStyle_sd\.system\.typography\.body\.small_expanded{font-size:13px;font-weight:400;font-family:inherit;line-height:1.6}}@media screen and (min-width: 48rem){.expanded\:expanded\:textStyle_sd\.system\.typography\.body\.medium_expanded:is([aria-expanded=true],[data-expanded],[data-state=expanded]){font-size:14px;font-weight:400;font-family:inherit;line-height:1.6}}}.--thickness_1px{--thickness: 1px}.--arrow-size_8px{--arrow-size: 8px}.--arrow-background_colors\.sd\.system\.color\.component\.inverseSurface{--arrow-background: var(--colors-sd-system-color-component-inverse-surface)}.bg_sd\.system\.color\.interaction\.hoveredVariant{background:var(--colors-sd-system-color-interaction-hovered-variant)}.bg_sd\.reference\.color\.scale\.gray\.600{background:var(--colors-sd-reference-color-scale-gray-600)}.bg_sd\.reference\.color\.scale\.blue\.600{background:var(--colors-sd-reference-color-scale-blue-600)}.bg_sd\.reference\.color\.scale\.green\.600{background:var(--colors-sd-reference-color-scale-green-600)}.bg_sd\.reference\.color\.scale\.yellow\.600{background:var(--colors-sd-reference-color-scale-yellow-600)}.bg_sd\.reference\.color\.scale\.chestnut\.600{background:var(--colors-sd-reference-color-scale-chestnut-600)}.bg_sd\.reference\.color\.scale\.red\.600{background:var(--colors-sd-reference-color-scale-red-600)}.bg_sd\.reference\.color\.scale\.gray\.100{background:var(--colors-sd-reference-color-scale-gray-100)}.bg_sd\.reference\.color\.scale\.blue\.100{background:var(--colors-sd-reference-color-scale-blue-100)}.bg_sd\.reference\.color\.scale\.green\.100{background:var(--colors-sd-reference-color-scale-green-100)}.bg_sd\.reference\.color\.scale\.yellow\.100{background:var(--colors-sd-reference-color-scale-yellow-100)}.bg_sd\.reference\.color\.scale\.chestnut\.100{background:var(--colors-sd-reference-color-scale-chestnut-100)}.bg_sd\.reference\.color\.scale\.red\.100{background:var(--colors-sd-reference-color-scale-red-100)}.p_sd\.system\.dimension\.spacing\.small{padding:var(--spacing-sd-system-dimension-spacing-small)}.bg_sd\.system\.color\.component\.surfaceContainer{background:var(--colors-sd-system-color-component-surface-container)}.bg_sd\.system\.color\.impression\.negativeContainer{background:var(--colors-sd-system-color-impression-negative-container)}.bg_sd\.system\.color\.impression\.noticeContainer{background:var(--colors-sd-system-color-impression-notice-container)}.grid-area_2_\/_2_\/_3_\/_3{grid-area:2 / 2 / 3 / 3}.bg_sd\.system\.color\.impression\.primaryContainer{background:var(--colors-sd-system-color-impression-primary-container)}.p_2px{padding:2px}.bg_sd\.system\.color\.component\.surfaceContainerBright{background:var(--colors-sd-system-color-component-surface-container-bright)}.p_0{padding:0}.bd_none{border:none}.bg_transparent{background:transparent}.bg_sd\.system\.color\.component\.scrim{background:var(--colors-sd-system-color-component-scrim)}.inset_0{top:0;right:0;bottom:0;left:0}.p_sd\.system\.dimension\.spacing\.twoExtraSmall{padding:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.m_0{margin:0}.anim_progressIndicatorSlide_1\.7s_cubic-bezier\(0\.65\,_0\.05\,_0\.36\,_1\)_infinite{animation:progressIndicatorSlide 1.7s cubic-bezier(.65,.05,.36,1) infinite}.bg_sd\.system\.color\.component\.surface{background:var(--colors-sd-system-color-component-surface)}.bg_sd\.system\.color\.impression\.positiveContainer{background:var(--colors-sd-system-color-impression-positive-container)}.bg_sd\.system\.color\.impression\.positiveContainerVariant{background:var(--colors-sd-system-color-impression-positive-container-variant)}.bg_sd\.system\.color\.impression\.noticeContainerVariant{background:var(--colors-sd-system-color-impression-notice-container-variant)}.bg_sd\.system\.color\.impression\.negativeContainerVariant{background:var(--colors-sd-system-color-impression-negative-container-variant)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.component\.surface\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bg_sd\.system\.color\.component\.inversePrimary{background:var(--colors-sd-system-color-component-inverse-primary)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.positiveContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-positive-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.noticeContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-notice-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.impression\.negativeContainerVariant\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\){background:color-mix(in srgb,var(--colors-sd-system-color-impression-negative-container-variant) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.bd_1px_solid{border:1px solid}.bdr_sd\.system\.dimension\.radius\.medium{border-radius:var(--radii-sd-system-dimension-radius-medium)}.ring_none{outline:2px solid transparent;outline-offset:2px}.place-items_center{place-items:center}.gap_sd\.system\.dimension\.spacing\.extraSmall{gap:var(--spacing-sd-system-dimension-spacing-extra-small)}.px_sd\.system\.dimension\.spacing\.medium{padding-inline:var(--spacing-sd-system-dimension-spacing-medium)}.py_sd\.system\.dimension\.spacing\.small{padding-block:var(--spacing-sd-system-dimension-spacing-small)}.flex_1{flex:1 1 0%}.flex_0_0_24px{flex:0 0 24px}.trs_transform_0\.2s{transition:transform .2s}.bdr_50\%{border-radius:50%}.gap_2px{gap:2px}.bdr_sd\.system\.dimension\.radius\.extraLarge{border-radius:var(--radii-sd-system-dimension-radius-extra-large)}.bd-w_sd\.system\.dimension\.border\.medium{border-width:var(--border-widths-sd-system-dimension-border-medium)}.border-style_solid{border-style:solid}.bd-c_sd\.system\.color\.impression\.negativeContainer{border-color:var(--colors-sd-system-color-impression-negative-container)}.bd-c_sd\.system\.color\.impression\.noticeContainer{border-color:var(--colors-sd-system-color-impression-notice-container)}.bd-t_1px_solid{border-top:1px solid}.gap_sd\.system\.dimension\.spacing\.twoExtraSmall{gap:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.bdr_sd\.system\.dimension\.radius\.full{border-radius:var(--radii-sd-system-dimension-radius-full)}.ov_hidden{overflow:hidden}.px_sd\.system\.dimension\.spacing\.extraLarge{padding-inline:var(--spacing-sd-system-dimension-spacing-extra-large)}.px_sd\.system\.dimension\.spacing\.small{padding-inline:var(--spacing-sd-system-dimension-spacing-small)}.py_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-block:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.gap_sd\.system\.dimension\.spacing\.medium{gap:var(--spacing-sd-system-dimension-spacing-medium)}.flex-flow_column{flex-flow:column}.gap_sd\.system\.dimension\.spacing\.twoExtraLarge{gap:var(--spacing-sd-system-dimension-spacing-two-extra-large)}.grid-c_span_2{grid-column:span 2}.bd-r_1px_solid{border-right:1px solid}.bd-c_sd\.system\.color\.component\.outline{border-color:var(--colors-sd-system-color-component-outline)}.gap_sd\.system\.dimension\.spacing\.small{gap:var(--spacing-sd-system-dimension-spacing-small)}.px_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-inline:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.bd-c_sd\.system\.color\.component\.outlineBright{border-color:var(--colors-sd-system-color-component-outline-bright)}.bd-c_sd\.system\.color\.component\.outlineDim{border-color:var(--colors-sd-system-color-component-outline-dim)}.py_sd\.system\.dimension\.spacing\.extraSmall{padding-block:var(--spacing-sd-system-dimension-spacing-extra-small)}.px_sd\.system\.dimension\.spacing\.extraSmall{padding-inline:var(--spacing-sd-system-dimension-spacing-extra-small)}.px_0{padding-inline:0}.gap_sd\.system\.dimension\.spacing\.none{gap:var(--spacing-sd-system-dimension-spacing-none)}.bdr_0{border-radius:0}.bdr_sd\.system\.dimension\.radius\.small{border-radius:var(--radii-sd-system-dimension-radius-small)}.bd-w_1{border-width:1px}.my_5{margin-block:5px}.mx_6{margin-inline:6px}.bd-b_2px_solid{border-bottom:2px solid}.gap_10px{gap:10px}.gap_8px{gap:8px}.bd-b_1px_solid{border-bottom:1px solid}.bdr_4px{border-radius:4px}.d_inline-grid{display:inline-grid}.grid-tc_auto{grid-template-columns:auto}.rg_sd\.system\.dimension\.spacing\.extraSmall{row-gap:var(--spacing-sd-system-dimension-spacing-extra-small)}.c_sd\.system\.color\.component\.onSurface{color:var(--colors-sd-system-color-component-on-surface)}.fw_medium{font-weight:medium}.c_sd\.system\.color\.impression\.negative{color:var(--colors-sd-system-color-impression-negative)}.d_grid{display:grid}.grid-tc_auto_1fr_auto_auto{grid-template-columns:auto 1fr auto auto}.ai_center{align-items:center}.outline-style_solid{outline-style:solid}.ring-w_sd\.system\.dimension\.border\.medium{outline-width:var(--border-widths-sd-system-dimension-border-medium)}.ring-c_sd\.system\.color\.component\.outline{outline-color:var(--colors-sd-system-color-component-outline)}.bg-c_sd\.system\.color\.component\.surface{background-color:var(--colors-sd-system-color-component-surface)}.c_sd\.system\.color\.component\.onSurfaceVariant{color:var(--colors-sd-system-color-component-on-surface-variant)}.d_flex{display:flex}.cursor_pointer{cursor:pointer}.flex-d_row-reverse{flex-direction:row-reverse}.ta_left{text-align:left}.trf_rotate\(-90deg\){transform:rotate(-90deg)}.flex-d_column{flex-direction:column}.jc_center{justify-content:center}.c_sd\.reference\.color\.scale\.black\.1000{color:var(--colors-sd-reference-color-scale-black-1000)}.bg-c_sd\.reference\.color\.scale\.blue\.200{background-color:var(--colors-sd-reference-color-scale-blue-200)}.fs_11{font-size:11px}.fs_19{font-size:19px}.fs_37{font-size:37px}.d_inline-flex{display:inline-flex}.c_sd\.reference\.color\.scale\.white\.1000{color:var(--colors-sd-reference-color-scale-white-1000)}.c_sd\.reference\.color\.scale\.gray\.800{color:var(--colors-sd-reference-color-scale-gray-800)}.c_sd\.reference\.color\.scale\.blue\.800{color:var(--colors-sd-reference-color-scale-blue-800)}.c_sd\.reference\.color\.scale\.green\.800{color:var(--colors-sd-reference-color-scale-green-800)}.c_sd\.reference\.color\.scale\.yellow\.800{color:var(--colors-sd-reference-color-scale-yellow-800)}.c_sd\.reference\.color\.scale\.chestnut\.800{color:var(--colors-sd-reference-color-scale-chestnut-800)}.c_sd\.reference\.color\.scale\.red\.800{color:var(--colors-sd-reference-color-scale-red-800)}.grid-tc_24px_1fr{grid-template-columns:24px 1fr}.cg_sd\.system\.dimension\.spacing\.twoExtraSmall{column-gap:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.c_sd\.system\.color\.impression\.onNegativeContainer{color:var(--colors-sd-system-color-impression-on-negative-container)}.c_sd\.system\.color\.impression\.onNoticeContainer{color:var(--colors-sd-system-color-impression-on-notice-container)}.jc_space-around{justify-content:space-around}.pos_relative{position:relative}.c_sd\.system\.color\.impression\.primary{color:var(--colors-sd-system-color-impression-primary)}.pos_absolute{position:absolute}.c_sd\.system\.color\.impression\.onPrimaryContainer{color:var(--colors-sd-system-color-impression-on-primary-container)}.z_sd\.system\.elevation\.zIndex\.base{z-index:var(--z-index-sd-system-elevation-z-index-base)}.c_subtle{color:subtle}.flex-sh_0{flex-shrink:0}.c_sd\.system\.color\.component\.outlineDim{color:var(--colors-sd-system-color-component-outline-dim)}.ai_flex-start{align-items:flex-start}.bg-c_sd\.system\.color\.component\.surfaceContainerDim{background-color:var(--colors-sd-system-color-component-surface-container-dim)}.jc_space-between{justify-content:space-between}.grid-tc_1fr{grid-template-columns:1fr}.grid-tc_auto_1fr{grid-template-columns:auto 1fr}.grid-tc_1fr_1fr{grid-template-columns:1fr 1fr}.order_-1{order:-1}.as_flex-end{align-self:flex-end}.ai_baseline{align-items:baseline}.cursor_col-resize{cursor:col-resize}.us_none{-webkit-user-select:none;user-select:none}.tch-a_none{touch-action:none}.grid-tc_1fr_auto_1fr{grid-template-columns:1fr auto 1fr}.ap_none{-moz-appearance:none;appearance:none;-webkit-appearance:none}.ta_center{text-align:center}.z_sd\.system\.elevation\.zIndex\.dropdown{z-index:var(--z-index-sd-system-elevation-z-index-dropdown)}.bx-sh_sd\.system\.elevation\.shadow\.level1{box-shadow:var(--shadows-sd-system-elevation-shadow-level1)}.bd-cl_separate{border-collapse:separate}.bd-sp_0{border-spacing:0}.fw_normal{font-weight:400}.fv-num_tabular-nums{font-variant-numeric:tabular-nums}.z_2{z-index:2}.trf_translateY\(-50\%\){transform:translateY(-50%)}.pointer-events_none{pointer-events:none}.bd-be-w_var\(--thickness\){border-block-end-width:var(--thickness)}.pos_fixed{position:fixed}.z_sd\.system\.elevation\.zIndex\.modal{z-index:var(--z-index-sd-system-elevation-z-index-modal)}.bg-c_sd\.system\.color\.component\.surfaceContainerBright{background-color:var(--colors-sd-system-color-component-surface-container-bright)}.bx-sh_sd\.system\.elevation\.shadow\.level5{box-shadow:var(--shadows-sd-system-elevation-shadow-level5)}.jc_flex-start{justify-content:flex-start}.jc_flex-end{justify-content:flex-end}.ps_sd\.system\.dimension\.spacing\.medium{padding-inline-start:var(--spacing-sd-system-dimension-spacing-medium)}.bg-c_sd\.system\.color\.impression\.primaryContainer{background-color:var(--colors-sd-system-color-impression-primary-container)}.ring-c_transparent{outline-color:transparent}.flex-g_1{flex-grow:1}.trf_translate\(-50\%\,_-50\%\){transform:translate(-50%,-50%)}.c_sd\.system\.color\.impression\.onNegative{color:var(--colors-sd-system-color-impression-on-negative)}.bg-c_sd\.system\.color\.impression\.negative{background-color:var(--colors-sd-system-color-impression-negative)}.bg-c_sd\.system\.color\.impression\.primary{background-color:var(--colors-sd-system-color-impression-primary)}.lh_24px{line-height:24px}.page_1{page:1px}.c_primary{color:primary}.fill_none{fill:none}.stk_sd\.system\.color\.impression\.primary{stroke:var(--colors-sd-system-color-impression-primary)}.stk-lc_butt{stroke-linecap:butt}.trf-o_center{transform-origin:center}.bg-c_sd\.reference\.color\.scale\.gray\.100{background-color:var(--colors-sd-reference-color-scale-gray-100)}.bg-c_sd\.reference\.color\.scale\.gray\.300{background-color:var(--colors-sd-reference-color-scale-gray-300)}.stk_sd\.reference\.color\.scale\.gray\.300{stroke:var(--colors-sd-reference-color-scale-gray-300)}.tov_ellipsis{text-overflow:ellipsis}.lh_1{line-height:1}.grid-tc_auto_1fr_auto{grid-template-columns:auto 1fr auto}.white-space_nowrap{white-space:nowrap}.grid-tc_1fr_auto{grid-template-columns:1fr auto}.bg-c_sd\.system\.color\.interaction\.disabled{background-color:var(--colors-sd-system-color-interaction-disabled)}.trs-dur_\.2s{--transition-duration: .2s;transition-duration:.2s}.trs-prop_background\,_borderColor{--transition-prop: background, borderColor;transition-property:background,borderColor}.trs-tmf_cubic-bezier\(\.2\,_0\,_0\,_1\){--transition-easing: cubic-bezier(.2, 0, 0, 1);transition-timing-function:cubic-bezier(.2,0,0,1)}.d_block{display:block}.trs-dur_\.3s{--transition-duration: .3s;transition-duration:.3s}.trs-prop_transform\,_borderColor{--transition-prop: transform, borderColor;transition-property:transform,borderColor}.lh_sd\.reference\.typography\.lineHeight\.tight{line-height:var(--line-heights-sd-reference-typography-line-height-tight)}.trs-prop_color\,_border-color{--transition-prop: color, border-color;transition-property:color,border-color}.bg-c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\,_\{colors\.sd\.system\.color\.impression\.negativeContainer\}\)\;{background-color:color-mix(in srgb,var(--colors-sd-system-color-interaction-hovered-on-primary),var(--colors-sd-system-color-impression-negative-container))}.field-sizing_content{field-sizing:content}.ta_right{text-align:right}.flex-d_row{flex-direction:row}.bx-sh_sd\.system\.elevation\.shadow\.level3{box-shadow:var(--shadows-sd-system-elevation-shadow-level3)}.c_sd\.system\.color\.impression\.onPositiveContainer{color:var(--colors-sd-system-color-impression-on-positive-container)}.c_sd\.system\.color\.component\.inverseOnSurface{color:var(--colors-sd-system-color-component-inverse-on-surface)}.content_ツールチップの内容{content:ツールチップの内容}.content_上部に表示{content:上部に表示}.content_左側に表示{content:左側に表示}.content_右側に表示{content:右側に表示}.content_下部に表示{content:下部に表示}.content_左上に表示{content:左上に表示}.content_右上に表示{content:右上に表示}.content_左下に表示{content:左下に表示}.content_右下に表示{content:右下に表示}.content_すぐに表示(100ms){content:すぐに表示(100ms)}.content_デフォルト(700ms){content:デフォルト(700ms)}.content_ゆっくり表示(1500ms){content:ゆっくり表示(1500ms)}.content_これは長いツールチップテキストです。最大幅が200pxに設定されているため、自動的に改行されます。{content:これは長いツールチップテキストです。最大幅が200pxに設定されているため、自動的に改行されます。}.content_このツールチップは表示されます{content:このツールチップは表示されます}.content_このツールチップは表示されません{content:このツールチップは表示されません}.content_ボタンのツールチップ{content:ボタンのツールチップ}.content_テキストのツールチップ{content:テキストのツールチップ}.content_アイコンのツールチップ{content:アイコンのツールチップ}.bg-c_sd\.system\.color\.component\.inverseSurface{background-color:var(--colors-sd-system-color-component-inverse-surface)}.z_1000{z-index:1000}.z_1001{z-index:1001}.ff_Roboto\,_sans-serif{font-family:Roboto,sans-serif}.va_middle{vertical-align:middle}.fw_400{font-weight:400}.fs_13px{font-size:13px}.c_sd\.system\.color\.impression\.onNegativeContainerVariant{color:var(--colors-sd-system-color-impression-on-negative-container-variant)}.fs_11px{font-size:11px}.fs_15px{font-size:15px}.op_0\.95{opacity:.95}.op_0\.98{opacity:.98}.fs_14px{font-size:14px}.bx-sh_sm{box-shadow:sm}.w_100\%{width:100%}.pl_sd\.system\.dimension\.spacing\.extraSmall{padding-left:var(--spacing-sd-system-dimension-spacing-extra-small)}.h_48{height:48px}.pt_sd\.system\.dimension\.spacing\.extraSmall{padding-top:var(--spacing-sd-system-dimension-spacing-extra-small)}.pr_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-right:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pb_sd\.system\.dimension\.spacing\.extraSmall{padding-bottom:var(--spacing-sd-system-dimension-spacing-extra-small)}.pl_sd\.system\.dimension\.spacing\.medium{padding-left:var(--spacing-sd-system-dimension-spacing-medium)}.w_48px{width:48px}.h_48px{height:48px}.pr_sd\.system\.dimension\.spacing\.medium{padding-right:var(--spacing-sd-system-dimension-spacing-medium)}.pt_sd\.system\.dimension\.spacing\.small{padding-top:var(--spacing-sd-system-dimension-spacing-small)}.pb_sd\.system\.dimension\.spacing\.medium{padding-bottom:var(--spacing-sd-system-dimension-spacing-medium)}.w_24{width:24px}.h_24{height:24px}.w_40{width:40px}.h_40{height:40px}.w_80{width:80px}.h_80{height:80px}.h_100\%{height:100%}.h_16px{height:16px}.pl_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-left:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.h_24px{height:24px}.pr_sd\.system\.dimension\.spacing\.extraSmall{padding-right:var(--spacing-sd-system-dimension-spacing-extra-small)}.h_32px{height:32px}.w_12{width:12px}.h_12{height:12px}.h_64{height:64px}.bd-t-c_sd\.system\.color\.component\.outline{border-top-color:var(--colors-sd-system-color-component-outline)}.top_-6px{top:-6px}.right_4px{right:4px}.top_-2\.5px{top:-2.5px}.h_32{height:32px}.pl_sd\.system\.dimension\.spacing\.extraLarge{padding-left:var(--spacing-sd-system-dimension-spacing-extra-large)}.pr_sd\.system\.dimension\.spacing\.extraLarge{padding-right:var(--spacing-sd-system-dimension-spacing-extra-large)}.top_20{top:20px}.right_80{right:80px}.bottom_60{bottom:60px}.left_60{left:60px}.mt_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-top:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.min-h_160px{min-height:160px}.right_0{right:0}.top_10\%{top:10%}.h_80\%{height:80%}.w_3px{width:3px}.min-w_100\%{min-width:100%}.w_fit-content{width:fit-content}.h_40px{height:40px}.w_full{width:full}.w_40px{width:40px}.pr_30px{padding-right:30px}.top_50\%{top:50%}.h_sd\.reference\.dimension\.scale\.1{height:var(--sizes-sd-reference-dimension-scale-1)}.border-bottom-style_solid{border-bottom-style:solid}.border-left-style_solid{border-left-style:solid}.w_sd\.reference\.dimension\.scale\.1{width:var(--sizes-sd-reference-dimension-scale-1)}.min-h_10px{min-height:10px}.top_0{top:0}.w_calc\(100\%_-_\{spacing\.sd\.system\.dimension\.spacing\.extraLarge\}\){width:calc(100% - var(--spacing-sd-system-dimension-spacing-extra-large))}.max-w_375px{max-width:375px}.h_100vh{height:100vh}.left_0{left:0}.max-w_100\%{max-width:100%}.w_240{width:240px}.pr_sd\.system\.dimension\.spacing\.small{padding-right:var(--spacing-sd-system-dimension-spacing-small)}.ml_2px{margin-left:2px}.w_\{spacing\.sd\.reference\.dimension\.scale\.17\}{width:var(--spacing-sd-reference-dimension-scale-17)}.h_\{spacing\.sd\.reference\.dimension\.scale\.17\}{height:var(--spacing-sd-reference-dimension-scale-17)}.w_\{spacing\.sd\.reference\.dimension\.scale\.13\}{width:var(--spacing-sd-reference-dimension-scale-13)}.h_\{spacing\.sd\.reference\.dimension\.scale\.13\}{height:var(--spacing-sd-reference-dimension-scale-13)}.w_\{spacing\.sd\.reference\.dimension\.scale\.10\}{width:var(--spacing-sd-reference-dimension-scale-10)}.h_\{spacing\.sd\.reference\.dimension\.scale\.10\}{height:var(--spacing-sd-reference-dimension-scale-10)}.min-h_48{min-height:48px}.min-h_38{min-height:38px}.right_sd\.system\.dimension\.spacing\.medium{right:var(--spacing-sd-system-dimension-spacing-medium)}.top_sd\.system\.dimension\.spacing\.extraSmall{top:var(--spacing-sd-system-dimension-spacing-extra-small)}.min-w_24{min-width:24px}.left_50\%{left:50%}.w_calc\(100\%_-_\{spacing\.sd\.system\.dimension\.spacing\.large\}_\*_2\){width:calc(100% - var(--spacing-sd-system-dimension-spacing-large) * 2)}.max-w_408px{max-width:408px}.pt_sd\.system\.dimension\.spacing\.extraLarge{padding-top:var(--spacing-sd-system-dimension-spacing-extra-large)}.pb_sd\.system\.dimension\.spacing\.large{padding-bottom:var(--spacing-sd-system-dimension-spacing-large)}.h_16{height:16px}.min-w_16{min-width:16px}.h_8{height:8px}.min-w_8{min-width:8px}.min-w_32{min-width:32px}.w_32{width:32px}.h_4px{height:4px}.h_8px{height:8px}.w_12px{width:12px}.h_12px{height:12px}.w_16px{width:16px}.w_calc\(100\%_-_4px\){width:calc(100% - 4px)}.left_0px{left:0}.h_2px{height:2px}.w_50\%{width:50%}.pb_sd\.system\.dimension\.spacing\.small{padding-bottom:var(--spacing-sd-system-dimension-spacing-small)}.pt_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-top:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.pb_sd\.system\.dimension\.spacing\.twoExtraSmall{padding-bottom:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.scr-pl_sd\.system\.dimension\.spacing\.twoExtraSmall{scroll-padding-left:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.w_20px{width:20px}.w_sd\.system\.dimension\.spacing\.large{width:var(--sizes-sd-system-dimension-spacing-large)}.h_sd\.system\.dimension\.spacing\.large{height:var(--sizes-sd-system-dimension-spacing-large)}.w_52{width:52px}.w_20{width:20px}.h_20{height:20px}.w_160{width:160px}.h_44{height:44px}.bd-b-c_transparent{border-bottom-color:transparent}.w_8{width:8px}.w_16{width:16px}.mt_sd\.system\.dimension\.spacing\.extraSmall{margin-top:var(--spacing-sd-system-dimension-spacing-extra-small)}.mr_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-right:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.mb_sd\.system\.dimension\.spacing\.twoExtraSmall{margin-bottom:var(--spacing-sd-system-dimension-spacing-two-extra-small)}.ml_sd\.system\.dimension\.spacing\.small{margin-left:var(--spacing-sd-system-dimension-spacing-small)}.min-h_2lh{min-height:2lh}.max-w_200px{max-width:200px}.w_sd\.system\.dimension\.spacing\.twoExtraLarge{width:var(--sizes-sd-system-dimension-spacing-two-extra-large)}.ov-x_auto{overflow-x:auto}.disabled\:bg_sd\.system\.color\.interaction\.disabled:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){background:var(--colors-sd-system-color-interaction-disabled)}.open\:anim_fadeIn_0\.25s_ease-out:is([open],[data-open],[data-state=open]){animation:fadeIn .25s ease-out}.closed\:anim_fadeOut_0\.2s_ease-out:is([closed],[data-closed],[data-state=closed]){animation:fadeOut .2s ease-out}.before\:inset_0:before{top:0;right:0;bottom:0;left:0}.\[\&\[data-in-range\]\]\:bg_sd\.system\.color\.interaction\.selectedSurface[data-in-range]{background:var(--colors-sd-system-color-interaction-selected-surface)}.\[\&\[data-in-range\]\&\[data-in-hover-range\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-in-range].\[\&\[data-in-range\]\&\[data-in-hover-range\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-in-hover-range],.\[\&\[data-hover-range-start\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-hover-range-start],.\[\&\[data-hover-range-end\]\]\:bg_sd\.system\.color\.interaction\.hoveredVariant[data-hover-range-end]{background:var(--colors-sd-system-color-interaction-hovered-variant)}.disabled\:bg_transparent:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){background:transparent}.selected\:bg_sd\.system\.color\.interaction\.selectedSurface:is([aria-selected=true],[data-selected]){background:var(--colors-sd-system-color-interaction-selected-surface)}.after\:bg_sd\.system\.color\.component\.inversePrimary:after{background:var(--colors-sd-system-color-component-inverse-primary)}.disabled\:ring_none:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline:2px solid transparent;outline-offset:2px}.before\:bdr_sd\.system\.dimension\.radius\.full:before{border-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-in-range\]\]\:bdr_0px[data-in-range]{border-radius:0}.unavailable\:td_line-through[data-unavailable]{text-decoration:line-through}.disabled\:ring_solid:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline:solid}.\[\&\[data-focus\=\"true\"\]_\.control\]\:bd-c_sd\.system\.color\.impression\.primary[data-focus=true] .control{border-color:var(--colors-sd-system-color-impression-primary)}.checked\:bd-c_sd\.system\.color\.impression\.primaryContainer:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){border-color:var(--colors-sd-system-color-impression-primary-container)}.checked\:bd-c_sd\.system\.color\.component\.surface:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){border-color:var(--colors-sd-system-color-component-surface)}.\[\&\:has\(\[data-focus\=\"true\"\]\)\]\:ring-w_sd\.system\.dimension\.border\.thick:has([data-focus=true]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.\[\&\:has\(\[data-focus\=\"true\"\]\)\]\:ring-c_sd\.system\.color\.impression\.primary:has([data-focus=true]){outline-color:var(--colors-sd-system-color-impression-primary)}.disabled\:bg-c_sd\.system\.color\.interaction\.disabled:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){background-color:var(--colors-sd-system-color-interaction-disabled)}.disabled\:cursor_not-allowed:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){cursor:not-allowed}.invalid\:ring-c_sd\.system\.color\.impression\.negative:is(:invalid,[data-invalid],[aria-invalid=true]){outline-color:var(--colors-sd-system-color-impression-negative)}.open\:trf_rotate\(180deg\):is([open],[data-open],[data-state=open]){transform:rotate(180deg)}.open\:trf_rotate\(0deg\):is([open],[data-open],[data-state=open]){transform:rotate(0)}.disabled\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.\[\&_\.checkmark\]\:c_sd\.system\.color\.impression\.onPrimaryContainer .checkmark{color:var(--colors-sd-system-color-impression-on-primary-container)}.disabled\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.outlineDim\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){color:color-mix(in srgb,var(--colors-sd-system-color-component-outline-dim),var(--colors-sd-system-color-interaction-hovered-on-primary))}.expanded\:ring-w_sd\.system\.dimension\.border\.thick:is([aria-expanded=true],[data-expanded],[data-state=expanded]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.expanded\:ring-c_sd\.system\.color\.impression\.primary:is([aria-expanded=true],[data-expanded],[data-state=expanded]){outline-color:var(--colors-sd-system-color-impression-primary)}.open\:d_flex:is([open],[data-open],[data-state=open]){display:flex}.closed\:d_none:is([closed],[data-closed],[data-state=closed]){display:none}.hidden\:d_none:is([hidden],[data-hidden]){display:none}.before\:content_\'\':before{content:""}.before\:pos_absolute:before{position:absolute}.before\:z_-1:before{z-index:-1}.selected\:c_sd\.system\.color\.impression\.onPrimaryContainer:is([aria-selected=true],[data-selected]){color:var(--colors-sd-system-color-impression-on-primary-container)}.selected\:z_100:is([aria-selected=true],[data-selected]){z-index:100}.unavailable\:c_sd\.system\.color\.interaction\.disabledOnSurface[data-unavailable]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.unavailable\:cursor_not-allowed[data-unavailable]{cursor:not-allowed}.highlighted\:bg-c_sd\.system\.color\.interaction\.hoveredVariant[data-highlighted]{background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.disabled\:ring-o_0px:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline-offset:0px}.disabled\:ring-c_sd\.system\.color\.component\.outline:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline-color:var(--colors-sd-system-color-component-outline)}.disabled\:ring-w_sd\.system\.dimension\.border\.medium:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline-width:var(--border-widths-sd-system-dimension-border-medium)}.disabled\:ring-c_transparent:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){outline-color:transparent}.disabled\:op_0\.3:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){opacity:.3}.\[\&_svg\]\:d_block svg{display:block}.\[\&\[data-selected\]\]\:c_sd\.system\.color\.interaction\.disabledOnSurface[data-selected]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.\[\&\[data-selected\]\]\:fw_bold[data-selected]{font-weight:700}.disabled\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.placeholder\:c_sd\.system\.color\.component\.onSurfaceVariant::placeholder,.placeholder\:c_sd\.system\.color\.component\.onSurfaceVariant[data-placeholder]{color:var(--colors-sd-system-color-component-on-surface-variant)}[data-disabled] .\[\[data-disabled\]_\&\]\:c_sd\.system\.color\.interaction\.disabledOnSurface{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}[data-placeholder-shown] .\[\[data-placeholder-shown\]_\&\]\:c_sd\.system\.color\.component\.onSurfaceVariant{color:var(--colors-sd-system-color-component-on-surface-variant)}[data-state=open] .\[\[data-state\=\'open\'\]_\&\]\:trf_rotate\(180deg\){transform:rotate(180deg)}.checked\:bg-c_sd\.system\.color\.impression\.primaryContainer:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){background-color:var(--colors-sd-system-color-impression-primary-container)}.disabled\:cursor_default:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){cursor:default}.checked\:trf_translateX\(19px\):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]){transform:translate(19px)}.selected\:c_sd\.system\.color\.impression\.primary:is([aria-selected=true],[data-selected]){color:var(--colors-sd-system-color-impression-primary)}.selected\:fw_bold:is([aria-selected=true],[data-selected]){font-weight:700}.after\:content_\'\':after{content:""}.after\:pos_absolute:after{position:absolute}.after\:pointer-events_none:after{pointer-events:none}.after\:z_1:after{z-index:1}.after\:mix-bm_multiply:after{mix-blend-mode:multiply}.\[\&_svg\]\:w_sd\.reference\.dimension\.scale\.8 svg{width:var(--sizes-sd-reference-dimension-scale-8)}.\[\&_svg\]\:h_sd\.reference\.dimension\.scale\.8 svg{height:var(--sizes-sd-reference-dimension-scale-8)}.\[\&\[data-hover-range-start\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-start]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-start]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\]\:bdr-tr_0px[data-hover-range-start]{border-top-right-radius:0}.\[\&\[data-hover-range-start\]\]\:bdr-br_0px[data-hover-range-start]{border-bottom-right-radius:0}.\[\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-end\]\]\:bdr-tl_0px[data-hover-range-end]{border-top-left-radius:0}.\[\&\[data-hover-range-end\]\]\:bdr-bl_0px[data-hover-range-end]{border-bottom-left-radius:0}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-start].\[\&\[data-hover-range-start\]\&\[data-hover-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-hover-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-start\]\]\:bdr-tl_sd\.system\.dimension\.radius\.full[data-range-start]{border-top-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-start\]\]\:bdr-bl_sd\.system\.dimension\.radius\.full[data-range-start]{border-bottom-left-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-end\]\]\:bdr-tr_sd\.system\.dimension\.radius\.full[data-range-end]{border-top-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&\[data-range-end\]\]\:bdr-br_sd\.system\.dimension\.radius\.full[data-range-end]{border-bottom-right-radius:var(--radii-sd-system-dimension-radius-full)}.\[\&_svg\]\:w_sd\.reference\.dimension\.scale\.12 svg{width:var(--sizes-sd-reference-dimension-scale-12)}.\[\&_svg\]\:h_sd\.reference\.dimension\.scale\.12 svg{height:var(--sizes-sd-reference-dimension-scale-12)}.\[\&_svg\]\:w_24px svg{width:24px}.\[\&_svg\]\:h_24px svg{height:24px}.\[\&_svg\]\:max-h_100\% svg{max-height:100%}.\[\&_svg\]\:max-w_100\% svg{max-width:100%}.\[\&_svg\]\:w_40px svg{width:40px}.\[\&_svg\]\:h_40px svg{height:40px}.selected\:bd-b-c_sd\.system\.color\.impression\.primary:is([aria-selected=true],[data-selected]){border-bottom-color:var(--colors-sd-system-color-impression-primary)}.lastOfType\:pb_8px:last-of-type{padding-bottom:8px}.firstOfType\:pb_0px:first-of-type{padding-bottom:0}.after\:top_0:after{top:0}.after\:left_0:after{left:0}.after\:w_100\%:after{width:100%}.after\:h_100\%:after{height:100%}.focusWithin\:ring-w_sd\.system\.dimension\.border\.thick:focus-within{outline-width:var(--border-widths-sd-system-dimension-border-thick)}.focusWithin\:ring-c_sd\.system\.color\.impression\.primary:focus-within{outline-color:var(--colors-sd-system-color-impression-primary)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bdr_sd\.system\.dimension\.radius\.small{border-radius:var(--radii-sd-system-dimension-radius-small)}.focusVisible\:ring_1px_solid:is(:focus-visible,[data-focus-visible]){outline:1px solid}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bdr_sd\.system\.dimension\.radius\.full{border-radius:var(--radii-sd-system-dimension-radius-full)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bd-c_sd\.system\.color\.impression\.primary{border-color:var(--colors-sd-system-color-impression-primary)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:outline-style_solid{outline-style:solid}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-o_-2px{outline-offset:-2px}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-w_1\.5px{outline-width:1.5px}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:ring-c_sd\.system\.color\.impression\.primary{outline-color:var(--colors-sd-system-color-impression-primary)}.focusVisible\:ring-c_sd\.system\.color\.component\.outline:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-component-outline)}.group:has(:focus-visible) .\[\.group\:has\(\:focus-visible\)_\&\]\:bg-c_sd\.system\.color\.interaction\.selectedSurface{background-color:var(--colors-sd-system-color-interaction-selected-surface)}.focus\:ring-w_sd\.system\.dimension\.border\.thick:is(:focus,[data-focus]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.focus\:ring-c_sd\.system\.color\.impression\.primary:is(:focus,[data-focus]){outline-color:var(--colors-sd-system-color-impression-primary)}.focusVisible\:ring-w_1px:is(:focus-visible,[data-focus-visible]){outline-width:1px}.focusVisible\:outline-style_solid:is(:focus-visible,[data-focus-visible]){outline-style:solid}.focusVisible\:ring-o_-1px:is(:focus-visible,[data-focus-visible]){outline-offset:-1px}.hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.surface\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\):is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface),var(--colors-sd-system-color-interaction-hovered-variant))}.hover\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]){background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\,_\{colors\.sd\.system\.color\.component\.surface\}\)\;:is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-interaction-hovered-variant),var(--colors-sd-system-color-component-surface))}.hover\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:c_sd\.system\.color\.impression\.primary:is(:hover,[data-hover]){color:var(--colors-sd-system-color-impression-primary)}.selected\:before\:bg_sd\.system\.color\.impression\.primaryContainer:is([aria-selected=true],[data-selected]):before{background:var(--colors-sd-system-color-impression-primary-container)}.selected\:hover\:bg_sd\.system\.color\.interaction\.selectedSurface:is([aria-selected=true],[data-selected]):is(:hover,[data-hover]){background:var(--colors-sd-system-color-interaction-selected-surface)}.disabled\:selected\:bg_transparent:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]):is([aria-selected=true],[data-selected]){background:transparent}.enabled\:hover\:bg_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.component\.surface\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredVariant\}\):enabled:is(:hover,[data-hover]){background:color-mix(in srgb,var(--colors-sd-system-color-component-surface),var(--colors-sd-system-color-interaction-hovered-variant))}.today\:before\:bd-w_sd\.system\.dimension\.border\.medium[data-today]:before{border-width:var(--border-widths-sd-system-dimension-border-medium)}.today\:before\:bd-c_sd\.system\.color\.component\.outline[data-today]:before{border-color:var(--colors-sd-system-color-component-outline)}.today\:before\:border-style_solid[data-today]:before{border-style:solid}.checked\:disabled\:bd-c_transparent:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]):is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){border-color:transparent}.enabled\:focusVisible\:ring-w_sd\.system\.dimension\.border\.medium:enabled:is(:focus-visible,[data-focus-visible]){outline-width:var(--border-widths-sd-system-dimension-border-medium)}.enabled\:focusVisible\:outline-style_solid:enabled:is(:focus-visible,[data-focus-visible]){outline-style:solid}.enabled\:focusVisible\:ring-c_sd\.system\.color\.interaction\.hovered:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-interaction-hovered)}.enabled\:hover\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:enabled:is(:hover,[data-hover]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.enabled\:focusVisible\:bg-c_sd\.system\.color\.interaction\.hoveredVariant:enabled:is(:focus-visible,[data-focus-visible]){background-color:var(--colors-sd-system-color-interaction-hovered-variant)}.enabled\:focusVisible\:ring-c_sd\.system\.color\.component\.outlineDim:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-component-outline-dim)}.expanded\:\[\&_svg\]\:trf_rotate\(180deg\):is([aria-expanded=true],[data-expanded],[data-state=expanded]) svg{transform:rotate(180deg)}.enabled\:hover\:bg-i_linear-gradient\(0deg\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_0\%\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_100\%\):enabled:is(:hover,[data-hover]){background-image:linear-gradient(0deg,var(--colors-sd-system-color-interaction-hovered) 0%,var(--colors-sd-system-color-interaction-hovered) 100%)}.enabled\:focusVisible\:ring-o_-1px:enabled:is(:focus-visible,[data-focus-visible]){outline-offset:-1px}.enabled\:focusVisible\:bg-i_linear-gradient\(0deg\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_0\%\,_\{colors\.sd\.system\.color\.interaction\.hovered\}_100\%\):enabled:is(:focus-visible,[data-focus-visible]){background-image:linear-gradient(0deg,var(--colors-sd-system-color-interaction-hovered) 0%,var(--colors-sd-system-color-interaction-hovered) 100%)}.disabled\:\[\&_svg\]\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]) svg{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.disabled\:placeholder\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled],[aria-disabled=true])::placeholder,.disabled\:placeholder\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled],[aria-disabled=true])[data-placeholder]{color:var(--colors-sd-system-color-interaction-disabled-on-surface)}[data-placeholder-shown] .disabled\:\[\[data-placeholder-shown\]_\&\]\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.enabled\:focusVisible\:ring-w_sd\.system\.dimension\.border\.thick:enabled:is(:focus-visible,[data-focus-visible]){outline-width:var(--border-widths-sd-system-dimension-border-thick)}.enabled\:focusVisible\:ring-c_sd\.system\.color\.impression\.primary:enabled:is(:focus-visible,[data-focus-visible]){outline-color:var(--colors-sd-system-color-impression-primary)}.enabled\:hover\:ring-c_sd\.system\.color\.interaction\.hovered:enabled:is(:hover,[data-hover]){outline-color:var(--colors-sd-system-color-interaction-hovered)}.checked\:disabled\:bg-c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:checked,[data-checked],[aria-checked=true],[data-state=checked]):is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){background-color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.hover\:before\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]):before{background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:after\:bg_sd\.system\.color\.interaction\.hoveredVariant:is(:hover,[data-hover]):after{background:var(--colors-sd-system-color-interaction-hovered-variant)}.hover\:after\:bg_color-mix\(in_srgb\,_token\(colors\.sd\.system\.color\.component\.inversePrimary\)_95\%\,_token\(colors\.sd\.system\.color\.component\.inverseSurface\)_5\%\):is(:hover,[data-hover]):after{background:color-mix(in srgb,var(--colors-sd-system-color-component-inverse-primary) 95%,var(--colors-sd-system-color-component-inverse-surface) 5%)}.hover\:disabled\:c_sd\.system\.color\.interaction\.disabledOnSurface:is(:hover,[data-hover]):is(:disabled,[disabled],[data-disabled],[aria-disabled=true]){color:var(--colors-sd-system-color-interaction-disabled-on-surface)}.hover\:after\:content_\'\':is(:hover,[data-hover]):after{content:""}.hover\:after\:pos_absolute:is(:hover,[data-hover]):after{position:absolute}.hover\:after\:pointer-events_none:is(:hover,[data-hover]):after{pointer-events:none}.hover\:after\:z_1:is(:hover,[data-hover]):after{z-index:1}.hover\:after\:mix-bm_multiply:is(:hover,[data-hover]):after{mix-blend-mode:multiply}.hover\:after\:top_0:is(:hover,[data-hover]):after{top:0}.hover\:after\:left_0:is(:hover,[data-hover]):after{left:0}.hover\:after\:w_100\%:is(:hover,[data-hover]):after{width:100%}.hover\:after\:h_100\%:is(:hover,[data-hover]):after{height:100%}.enabled\:hover\:after\:inset_0:enabled:is(:hover,[data-hover]):after{top:0;right:0;bottom:0;left:0}.enabled\:hover\:after\:bg_sd\.system\.color\.interaction\.hovered:enabled:is(:hover,[data-hover]):after{background:var(--colors-sd-system-color-interaction-hovered)}.enabled\:focusVisible\:after\:inset_0:enabled:is(:focus-visible,[data-focus-visible]):after{top:0;right:0;bottom:0;left:0}.enabled\:focusVisible\:after\:bg_sd\.system\.color\.interaction\.hovered:enabled:is(:focus-visible,[data-focus-visible]):after{background:var(--colors-sd-system-color-interaction-hovered)}.selected\:hover\:before\:bg_sd\.system\.color\.impression\.primaryContainer:is([aria-selected=true],[data-selected]):is(:hover,[data-hover]):before{background:var(--colors-sd-system-color-impression-primary-container)}.disabled\:hover\:before\:bg_transparent:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]):is(:hover,[data-hover]):before{background:transparent}.unavailable\:hover\:before\:bg_transparent[data-unavailable]:is(:hover,[data-hover]):before{background:transparent}.today\:\[\&\[data-in-range\]\]\:before\:bd-c_sd\.reference\.color\.scale\.white\.1000[data-today][data-in-range]:before{border-color:var(--colors-sd-reference-color-scale-white-1000)}.enabled\:hover\:after\:content_\'\':enabled:is(:hover,[data-hover]):after{content:""}.enabled\:hover\:after\:pos_absolute:enabled:is(:hover,[data-hover]):after{position:absolute}.enabled\:focusVisible\:after\:content_\'\':enabled:is(:focus-visible,[data-focus-visible]):after{content:""}.enabled\:focusVisible\:after\:pos_absolute:enabled:is(:focus-visible,[data-focus-visible]):after{position:absolute}.disabled\:checked\:\[\&_svg\]\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.impression\.primary\}\,_\{colors\.sd\.system\.color\.interaction\.hoveredOnPrimary\}\)\;:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]) svg{color:color-mix(in srgb,var(--colors-sd-system-color-impression-primary),var(--colors-sd-system-color-interaction-hovered-on-primary))}.disabled\:checked\:\[\&_\.checkmark\]\:c_color-mix\(in_srgb\,_\{colors\.sd\.system\.color\.interaction\.disabled\}\,_\{colors\.sd\.system\.color\.impression\.onPrimaryContainer\}\)\;:is(:disabled,[disabled],[data-disabled],[aria-disabled=true]):is(:checked,[data-checked],[aria-checked=true],[data-state=checked]) .checkmark{color:color-mix(in srgb,var(--colors-sd-system-color-interaction-disabled),var(--colors-sd-system-color-impression-on-primary-container))}@layer components{.\[\@layer_components\]\:w_min\(100\%\,_300px\){width:min(100%,300px)}.\[\@layer_components\]\:w_min\(100\%\,_150px\){width:min(100%,150px)}}@layer components;@media screen and (min-width: 48rem){.expanded\:flex-d_row-reverse{flex-direction:row-reverse}.expanded\:jc_end{justify-content:end}.expanded\:w_44px{width:44px}.expanded\:h_44px{height:44px}.expanded\:pt_sd\.system\.dimension\.spacing\.large{padding-top:var(--spacing-sd-system-dimension-spacing-large)}}}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@serendie/ui",
3
3
  "description": "Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric",
4
4
  "license": "MIT",
5
- "version": "3.2.0",
5
+ "version": "3.2.1",
6
6
  "type": "module",
7
7
  "types": "./dist/index.d.ts",
8
8
  "sideEffects": [
@@ -48,25 +48,20 @@
48
48
  "merge-refs": "^1.3.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@chromatic-com/storybook": "^1.6.1",
51
+ "@chromatic-com/storybook": "^5.1.1",
52
52
  "@eslint/eslintrc": "^3.1.0",
53
53
  "@eslint/js": "^9.8.0",
54
54
  "@figma/code-connect": "^1.3.4",
55
- "@pandacss/dev": "^0.53.0",
56
- "@pandacss/eslint-plugin": "^0.1.1",
57
- "@serendie/design-token": "^1.4.2",
58
- "@tanstack/intent": "^0.0.27",
59
- "@storybook/addon-designs": "^8.0.3",
60
- "@storybook/addon-essentials": "^8.2.4",
61
- "@storybook/addon-interactions": "^8.2.4",
62
- "@storybook/addon-links": "^8.2.4",
63
- "@storybook/addon-onboarding": "^8.2.4",
64
- "@storybook/addon-themes": "^8.2.8",
65
- "@storybook/blocks": "^8.2.4",
66
- "@storybook/react": "^8.2.4",
67
- "@storybook/react-vite": "^8.3.1",
68
- "@storybook/test": "^8.2.4",
69
- "@storybook/test-runner": "^0.19.1",
55
+ "@pandacss/dev": "^0.54.0",
56
+ "@pandacss/eslint-plugin": "^0.3.2",
57
+ "@serendie/design-token": "^1.4.5",
58
+ "@tanstack/intent": "^0.0.29",
59
+ "@storybook/addon-designs": "^11.1.3",
60
+ "@storybook/addon-links": "10.3.5",
61
+ "@storybook/addon-onboarding": "10.3.5",
62
+ "@storybook/addon-themes": "10.3.5",
63
+ "@storybook/react-vite": "10.3.5",
64
+ "@storybook/test-runner": "^0.24.3",
70
65
  "@types/eslint__js": "^8.42.3",
71
66
  "@types/react": "^18.3.1",
72
67
  "@types/react-dom": "^18.3.0",
@@ -78,19 +73,20 @@
78
73
  "eslint-plugin-prettier": "^5.2.1",
79
74
  "eslint-plugin-react-hooks": "^4.6.2",
80
75
  "eslint-plugin-react-refresh": "^0.4.8",
81
- "eslint-plugin-storybook": "^0.8.0",
76
+ "eslint-plugin-storybook": "10.3.5",
82
77
  "globby": "14.1.0",
83
78
  "husky": "^9.1.4",
84
79
  "lint-staged": "^15.2.8",
85
80
  "prettier": "^3.3.3",
86
81
  "release-it": "^17.11.0",
87
- "storybook": "^8.2.4",
82
+ "storybook": "10.3.5",
88
83
  "tsx": "^4.20.6",
89
84
  "typescript": "^5.5.3",
90
85
  "typescript-eslint": "^8.0.0",
91
86
  "vite": "^5.3.3",
92
87
  "vite-plugin-dts": "^4.2.1",
93
- "vite-plugin-svgr": "^4.2.0"
88
+ "vite-plugin-svgr": "^4.2.0",
89
+ "@storybook/addon-docs": "10.3.5"
94
90
  },
95
91
  "main": "./dist/index.cjs",
96
92
  "module": "./dist/index.js",
@@ -161,6 +157,7 @@
161
157
  "@rollup/rollup-linux-x64-gnu": "^4.14.3"
162
158
  },
163
159
  "overrides": {
164
- "axios": "1.13.2"
160
+ "axios": "1.13.2",
161
+ "lodash": "4.18.1"
165
162
  }
166
163
  }