jaci-ui 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +85 -0
  3. package/dist/components/calendar/calendar.cjs +377 -0
  4. package/dist/components/calendar/calendar.cjs.map +1 -0
  5. package/dist/components/calendar/calendar.d.cts +56 -0
  6. package/dist/components/calendar/calendar.d.ts +56 -0
  7. package/dist/components/calendar/calendar.js +368 -0
  8. package/dist/components/calendar/calendar.js.map +1 -0
  9. package/dist/components/calendar/index.d.cts +2 -0
  10. package/dist/components/calendar/index.d.ts +2 -0
  11. package/dist/components/combobox/combobox.cjs +13 -1
  12. package/dist/components/combobox/combobox.cjs.map +1 -1
  13. package/dist/components/combobox/combobox.d.cts +7 -2
  14. package/dist/components/combobox/combobox.d.ts +7 -2
  15. package/dist/components/combobox/combobox.js +13 -2
  16. package/dist/components/combobox/combobox.js.map +1 -1
  17. package/dist/components/combobox/index.d.cts +2 -2
  18. package/dist/components/combobox/index.d.ts +2 -2
  19. package/dist/components/command/command.cjs +55 -34
  20. package/dist/components/command/command.cjs.map +1 -1
  21. package/dist/components/command/command.d.cts +1 -0
  22. package/dist/components/command/command.d.ts +1 -0
  23. package/dist/components/command/command.js +55 -34
  24. package/dist/components/command/command.js.map +1 -1
  25. package/dist/components/controls/input.cjs +26 -5
  26. package/dist/components/controls/input.cjs.map +1 -1
  27. package/dist/components/controls/input.d.cts +5 -2
  28. package/dist/components/controls/input.d.ts +5 -2
  29. package/dist/components/controls/input.js +28 -7
  30. package/dist/components/controls/input.js.map +1 -1
  31. package/dist/components/controls/textarea.cjs +26 -5
  32. package/dist/components/controls/textarea.cjs.map +1 -1
  33. package/dist/components/controls/textarea.d.cts +5 -2
  34. package/dist/components/controls/textarea.d.ts +5 -2
  35. package/dist/components/controls/textarea.js +28 -7
  36. package/dist/components/controls/textarea.js.map +1 -1
  37. package/dist/components/data-toolbar/data-toolbar.cjs +141 -0
  38. package/dist/components/data-toolbar/data-toolbar.cjs.map +1 -0
  39. package/dist/components/data-toolbar/data-toolbar.d.cts +50 -0
  40. package/dist/components/data-toolbar/data-toolbar.d.ts +50 -0
  41. package/dist/components/data-toolbar/data-toolbar.js +132 -0
  42. package/dist/components/data-toolbar/data-toolbar.js.map +1 -0
  43. package/dist/components/data-toolbar/index.d.cts +2 -0
  44. package/dist/components/data-toolbar/index.d.ts +2 -0
  45. package/dist/components/data-view/data-view.cjs +33 -1
  46. package/dist/components/data-view/data-view.cjs.map +1 -1
  47. package/dist/components/data-view/data-view.d.cts +12 -1
  48. package/dist/components/data-view/data-view.d.ts +12 -1
  49. package/dist/components/data-view/data-view.js +31 -2
  50. package/dist/components/data-view/data-view.js.map +1 -1
  51. package/dist/components/data-view/index.d.cts +2 -2
  52. package/dist/components/data-view/index.d.ts +2 -2
  53. package/dist/components/date-picker/date-picker.cjs +9 -9
  54. package/dist/components/date-picker/date-picker.cjs.map +1 -1
  55. package/dist/components/date-picker/date-picker.d.cts +3 -1
  56. package/dist/components/date-picker/date-picker.d.ts +3 -1
  57. package/dist/components/date-picker/date-picker.js +9 -9
  58. package/dist/components/date-picker/date-picker.js.map +1 -1
  59. package/dist/components/date-range-picker/date-range-picker.cjs +589 -0
  60. package/dist/components/date-range-picker/date-range-picker.cjs.map +1 -0
  61. package/dist/components/date-range-picker/date-range-picker.d.cts +134 -0
  62. package/dist/components/date-range-picker/date-range-picker.d.ts +134 -0
  63. package/dist/components/date-range-picker/date-range-picker.js +568 -0
  64. package/dist/components/date-range-picker/date-range-picker.js.map +1 -0
  65. package/dist/components/date-range-picker/index.d.cts +2 -0
  66. package/dist/components/date-range-picker/index.d.ts +2 -0
  67. package/dist/components/field/field.cjs +106 -11
  68. package/dist/components/field/field.cjs.map +1 -1
  69. package/dist/components/field/field.d.cts +22 -4
  70. package/dist/components/field/field.d.ts +22 -4
  71. package/dist/components/field/field.js +107 -13
  72. package/dist/components/field/field.js.map +1 -1
  73. package/dist/components/field/index.d.cts +2 -2
  74. package/dist/components/field/index.d.ts +2 -2
  75. package/dist/components/list/list.cjs +3 -1
  76. package/dist/components/list/list.cjs.map +1 -1
  77. package/dist/components/list/list.d.cts +3 -1
  78. package/dist/components/list/list.d.ts +3 -1
  79. package/dist/components/list/list.js +3 -1
  80. package/dist/components/list/list.js.map +1 -1
  81. package/dist/components/pagination/index.d.cts +2 -2
  82. package/dist/components/pagination/index.d.ts +2 -2
  83. package/dist/components/pagination/pagination.cjs +122 -21
  84. package/dist/components/pagination/pagination.cjs.map +1 -1
  85. package/dist/components/pagination/pagination.d.cts +25 -13
  86. package/dist/components/pagination/pagination.d.ts +25 -13
  87. package/dist/components/pagination/pagination.js +122 -23
  88. package/dist/components/pagination/pagination.js.map +1 -1
  89. package/dist/components/pin-input/index.d.cts +2 -0
  90. package/dist/components/pin-input/index.d.ts +2 -0
  91. package/dist/components/pin-input/pin-input.cjs +266 -0
  92. package/dist/components/pin-input/pin-input.cjs.map +1 -0
  93. package/dist/components/pin-input/pin-input.d.cts +46 -0
  94. package/dist/components/pin-input/pin-input.d.ts +46 -0
  95. package/dist/components/pin-input/pin-input.js +258 -0
  96. package/dist/components/pin-input/pin-input.js.map +1 -0
  97. package/dist/components/select/index.d.cts +2 -2
  98. package/dist/components/select/index.d.ts +2 -2
  99. package/dist/components/select/select.cjs +80 -3
  100. package/dist/components/select/select.cjs.map +1 -1
  101. package/dist/components/select/select.d.cts +18 -3
  102. package/dist/components/select/select.d.ts +18 -3
  103. package/dist/components/select/select.js +78 -5
  104. package/dist/components/select/select.js.map +1 -1
  105. package/dist/components/table/index.d.cts +2 -2
  106. package/dist/components/table/index.d.ts +2 -2
  107. package/dist/components/table/table.cjs +265 -46
  108. package/dist/components/table/table.cjs.map +1 -1
  109. package/dist/components/table/table.d.cts +41 -8
  110. package/dist/components/table/table.d.ts +41 -8
  111. package/dist/components/table/table.js +264 -48
  112. package/dist/components/table/table.js.map +1 -1
  113. package/dist/components/tags-input/tags-input.cjs +83 -5
  114. package/dist/components/tags-input/tags-input.cjs.map +1 -1
  115. package/dist/components/tags-input/tags-input.d.cts +3 -0
  116. package/dist/components/tags-input/tags-input.d.ts +3 -0
  117. package/dist/components/tags-input/tags-input.js +83 -5
  118. package/dist/components/tags-input/tags-input.js.map +1 -1
  119. package/dist/components/tree-view/index.d.cts +2 -2
  120. package/dist/components/tree-view/index.d.ts +2 -2
  121. package/dist/components/tree-view/tree-view.cjs +60 -3
  122. package/dist/components/tree-view/tree-view.cjs.map +1 -1
  123. package/dist/components/tree-view/tree-view.d.cts +12 -1
  124. package/dist/components/tree-view/tree-view.d.ts +12 -1
  125. package/dist/components/tree-view/tree-view.js +58 -4
  126. package/dist/components/tree-view/tree-view.js.map +1 -1
  127. package/dist/components/upload/index.d.cts +2 -2
  128. package/dist/components/upload/index.d.ts +2 -2
  129. package/dist/components/upload/upload.cjs +90 -10
  130. package/dist/components/upload/upload.cjs.map +1 -1
  131. package/dist/components/upload/upload.d.cts +25 -2
  132. package/dist/components/upload/upload.d.ts +25 -2
  133. package/dist/components/upload/upload.js +89 -11
  134. package/dist/components/upload/upload.js.map +1 -1
  135. package/dist/index.cjs +74 -1
  136. package/dist/index.d.cts +17 -9
  137. package/dist/index.d.ts +17 -9
  138. package/dist/index.js +14 -10
  139. package/dist/styled-system/recipes/calendar.cjs +43 -0
  140. package/dist/styled-system/recipes/calendar.cjs.map +1 -0
  141. package/dist/styled-system/recipes/calendar.js +43 -0
  142. package/dist/styled-system/recipes/calendar.js.map +1 -0
  143. package/dist/styled-system/recipes/combobox.cjs +1 -0
  144. package/dist/styled-system/recipes/combobox.cjs.map +1 -1
  145. package/dist/styled-system/recipes/combobox.js +1 -0
  146. package/dist/styled-system/recipes/combobox.js.map +1 -1
  147. package/dist/styled-system/recipes/data-toolbar.cjs +40 -0
  148. package/dist/styled-system/recipes/data-toolbar.cjs.map +1 -0
  149. package/dist/styled-system/recipes/data-toolbar.js +40 -0
  150. package/dist/styled-system/recipes/data-toolbar.js.map +1 -0
  151. package/dist/styled-system/recipes/data-view.cjs +3 -0
  152. package/dist/styled-system/recipes/data-view.cjs.map +1 -1
  153. package/dist/styled-system/recipes/data-view.js +3 -0
  154. package/dist/styled-system/recipes/data-view.js.map +1 -1
  155. package/dist/styled-system/recipes/date-range-picker.cjs +52 -0
  156. package/dist/styled-system/recipes/date-range-picker.cjs.map +1 -0
  157. package/dist/styled-system/recipes/date-range-picker.js +52 -0
  158. package/dist/styled-system/recipes/date-range-picker.js.map +1 -0
  159. package/dist/styled-system/recipes/list.cjs +7 -1
  160. package/dist/styled-system/recipes/list.cjs.map +1 -1
  161. package/dist/styled-system/recipes/list.js +7 -1
  162. package/dist/styled-system/recipes/list.js.map +1 -1
  163. package/dist/styled-system/recipes/pagination.cjs +9 -1
  164. package/dist/styled-system/recipes/pagination.cjs.map +1 -1
  165. package/dist/styled-system/recipes/pagination.js +9 -1
  166. package/dist/styled-system/recipes/pagination.js.map +1 -1
  167. package/dist/styled-system/recipes/pin-input.cjs +39 -0
  168. package/dist/styled-system/recipes/pin-input.cjs.map +1 -0
  169. package/dist/styled-system/recipes/pin-input.js +39 -0
  170. package/dist/styled-system/recipes/pin-input.js.map +1 -0
  171. package/dist/styled-system/recipes/select.cjs +5 -1
  172. package/dist/styled-system/recipes/select.cjs.map +1 -1
  173. package/dist/styled-system/recipes/select.js +5 -1
  174. package/dist/styled-system/recipes/select.js.map +1 -1
  175. package/dist/styled-system/recipes/table.cjs +15 -2
  176. package/dist/styled-system/recipes/table.cjs.map +1 -1
  177. package/dist/styled-system/recipes/table.js +15 -2
  178. package/dist/styled-system/recipes/table.js.map +1 -1
  179. package/dist/styled-system/recipes/tree-view.cjs +4 -1
  180. package/dist/styled-system/recipes/tree-view.cjs.map +1 -1
  181. package/dist/styled-system/recipes/tree-view.js +4 -1
  182. package/dist/styled-system/recipes/tree-view.js.map +1 -1
  183. package/dist/styled-system/recipes/upload.cjs +2 -0
  184. package/dist/styled-system/recipes/upload.cjs.map +1 -1
  185. package/dist/styled-system/recipes/upload.js +2 -0
  186. package/dist/styled-system/recipes/upload.js.map +1 -1
  187. package/dist/styles.css +995 -95
  188. package/package.json +3 -2
package/dist/styles.css CHANGED
@@ -1951,6 +1951,185 @@
1951
1951
  max-width: 100%;
1952
1952
  }
1953
1953
 
1954
+ .jaci-calendar__root {
1955
+ gap: var(--jaci-spacing-3);
1956
+ color: var(--jaci-colors-fg-default);
1957
+ display: flex;
1958
+ flex-direction: column;
1959
+ min-width: 18rem;
1960
+ width: 100%;
1961
+ }
1962
+
1963
+ .jaci-calendar__header {
1964
+ gap: var(--jaci-spacing-2);
1965
+ align-items: center;
1966
+ display: flex;
1967
+ justify-content: space-between;
1968
+ }
1969
+
1970
+ .jaci-calendar__caption {
1971
+ flex: 1 1 0%;
1972
+ font-size: var(--jaci-font-sizes-sm);
1973
+ font-weight: 700;
1974
+ text-align: center;
1975
+ text-transform: capitalize;
1976
+ }
1977
+
1978
+ .jaci-calendar__navigation {
1979
+ border: 0;
1980
+ border-radius: var(--jaci-radii-md);
1981
+ align-items: center;
1982
+ background-color: var(--jaci-colors-transparent);
1983
+ color: var(--jaci-colors-fg-default);
1984
+ cursor: pointer;
1985
+ display: inline-flex;
1986
+ font-size: var(--jaci-font-sizes-lg);
1987
+ justify-content: center;
1988
+ height: var(--jaci-sizes-8);
1989
+ width: var(--jaci-sizes-8);
1990
+ }
1991
+
1992
+ .jaci-calendar__navigation:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
1993
+ cursor: not-allowed;
1994
+ opacity: 0.45;
1995
+ }
1996
+
1997
+ .jaci-calendar__navigation:is(:focus-visible, [data-focus-visible]) {
1998
+ outline: 2px solid;
1999
+ outline-color: var(--jaci-colors-focus);
2000
+ outline-offset: 2px;
2001
+ }
2002
+
2003
+ .jaci-calendar__navigation:is(:hover, [data-hover]) {
2004
+ background-color: var(--jaci-colors-surface-subtle);
2005
+ }
2006
+
2007
+ .jaci-calendar__monthSelect {
2008
+ border-color: var(--jaci-colors-border-default);
2009
+ border-radius: var(--jaci-radii-md);
2010
+ border-style: solid;
2011
+ border-width: 1px;
2012
+ outline: var(--jaci-borders-none);
2013
+ padding-inline: var(--jaci-spacing-2);
2014
+ padding-block: var(--jaci-spacing-1);
2015
+ background-color: var(--jaci-colors-surface-default);
2016
+ color: var(--jaci-colors-fg-default);
2017
+ font-size: var(--jaci-font-sizes-sm);
2018
+ font-weight: 600;
2019
+ max-width: 10rem;
2020
+ min-width: var(--jaci-sizes-0);
2021
+ }
2022
+
2023
+ .jaci-calendar__monthSelect:is(:focus-visible, [data-focus-visible]) {
2024
+ border-color: var(--jaci-colors-accent-default);
2025
+ outline: 2px solid;
2026
+ outline-color: var(--jaci-colors-focus);
2027
+ outline-offset: 1px;
2028
+ }
2029
+
2030
+ .jaci-calendar__yearSelect {
2031
+ border-color: var(--jaci-colors-border-default);
2032
+ border-radius: var(--jaci-radii-md);
2033
+ border-style: solid;
2034
+ border-width: 1px;
2035
+ outline: var(--jaci-borders-none);
2036
+ padding-inline: var(--jaci-spacing-2);
2037
+ padding-block: var(--jaci-spacing-1);
2038
+ background-color: var(--jaci-colors-surface-default);
2039
+ color: var(--jaci-colors-fg-default);
2040
+ font-size: var(--jaci-font-sizes-sm);
2041
+ font-weight: 600;
2042
+ max-width: 7rem;
2043
+ min-width: var(--jaci-sizes-0);
2044
+ }
2045
+
2046
+ .jaci-calendar__yearSelect:is(:focus-visible, [data-focus-visible]) {
2047
+ border-color: var(--jaci-colors-accent-default);
2048
+ outline: 2px solid;
2049
+ outline-color: var(--jaci-colors-focus);
2050
+ outline-offset: 1px;
2051
+ }
2052
+
2053
+ .jaci-calendar__calendar {
2054
+ width: 100%;
2055
+ }
2056
+
2057
+ .jaci-calendar__weekdays {
2058
+ display: grid;
2059
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2060
+ margin-bottom: var(--jaci-spacing-1);
2061
+ }
2062
+
2063
+ .jaci-calendar__weekday {
2064
+ color: var(--jaci-colors-fg-muted);
2065
+ font-size: var(--jaci-font-sizes-xs);
2066
+ font-weight: 700;
2067
+ text-align: center;
2068
+ text-transform: uppercase;
2069
+ padding-bottom: var(--jaci-spacing-2);
2070
+ }
2071
+
2072
+ .jaci-calendar__grid {
2073
+ gap: var(--jaci-spacing-1);
2074
+ display: flex;
2075
+ flex-direction: column;
2076
+ }
2077
+
2078
+ .jaci-calendar__row {
2079
+ display: grid;
2080
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2081
+ }
2082
+
2083
+ .jaci-calendar__day {
2084
+ border: 0;
2085
+ border-radius: var(--jaci-radii-full);
2086
+ outline: var(--jaci-borders-none);
2087
+ align-items: center;
2088
+ aspect-ratio: 1;
2089
+ background-color: var(--jaci-colors-transparent);
2090
+ color: var(--jaci-colors-fg-default);
2091
+ cursor: pointer;
2092
+ display: inline-flex;
2093
+ font-size: var(--jaci-font-sizes-sm);
2094
+ justify-content: center;
2095
+ position: relative;
2096
+ min-width: var(--jaci-sizes-8);
2097
+ width: 100%;
2098
+ }
2099
+
2100
+ .jaci-calendar__day:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
2101
+ cursor: not-allowed;
2102
+ opacity: 0.4;
2103
+ }
2104
+
2105
+ .jaci-calendar__day[data-outside-month] {
2106
+ color: var(--jaci-colors-fg-muted);
2107
+ }
2108
+
2109
+ .jaci-calendar__day[data-selected] {
2110
+ background-color: var(--jaci-colors-accent-default);
2111
+ color: var(--jaci-colors-fg-on-accent);
2112
+ font-weight: 700;
2113
+ }
2114
+
2115
+ .jaci-calendar__day[data-selected]:is(:hover, [data-hover]) {
2116
+ background-color: var(--jaci-colors-accent-hover);
2117
+ }
2118
+
2119
+ .jaci-calendar__day[data-today] {
2120
+ box-shadow: inset 0 0 0 1px var(--jaci-colors-accent-default);
2121
+ }
2122
+
2123
+ .jaci-calendar__day:is(:focus-visible, [data-focus-visible]) {
2124
+ outline: 2px solid;
2125
+ outline-color: var(--jaci-colors-focus);
2126
+ outline-offset: -2px;
2127
+ }
2128
+
2129
+ .jaci-calendar__day:is(:hover, [data-hover]) {
2130
+ background-color: var(--jaci-colors-surface-subtle);
2131
+ }
2132
+
1954
2133
  .jaci-card__root {
1955
2134
  border-color: var(--jaci-colors-border-default);
1956
2135
  border-radius: var(--jaci-radii-2xl);
@@ -2658,7 +2837,7 @@
2658
2837
  padding-top: var(--jaci-spacing-2);
2659
2838
  }
2660
2839
 
2661
- .jaci-combobox__empty {
2840
+ .jaci-combobox__empty,.jaci-combobox__loading {
2662
2841
  padding: var(--jaci-spacing-3);
2663
2842
  color: var(--jaci-colors-fg-muted);
2664
2843
  font-size: var(--jaci-font-sizes-sm);
@@ -3034,6 +3213,34 @@
3034
3213
  line-height: 1;
3035
3214
  }
3036
3215
 
3216
+ .jaci-inputGroup__root {
3217
+ align-items: stretch;
3218
+ display: flex;
3219
+ min-width: var(--jaci-sizes-0);
3220
+ width: 100%;
3221
+ }
3222
+
3223
+ .jaci-inputGroup__root > [data-slot=input] {
3224
+ flex: 1 1 0%;
3225
+ min-width: var(--jaci-sizes-0);
3226
+ }
3227
+
3228
+ .jaci-inputGroup__addon {
3229
+ border-color: var(--jaci-colors-border-default);
3230
+ border-style: solid;
3231
+ border-width: 2px;
3232
+ overflow: hidden;
3233
+ padding-inline: var(--jaci-spacing-3);
3234
+ align-items: center;
3235
+ background-color: var(--jaci-colors-surface-subtle);
3236
+ color: var(--jaci-colors-fg-muted);
3237
+ display: inline-flex;
3238
+ flex-shrink: 0;
3239
+ font-size: var(--jaci-font-sizes-sm);
3240
+ white-space: nowrap;
3241
+ max-width: 50%;
3242
+ }
3243
+
3037
3244
  .jaci-radio-group__root {
3038
3245
  gap: var(--jaci-spacing-3);
3039
3246
  display: flex;
@@ -3241,71 +3448,228 @@
3241
3448
  width: 1px;
3242
3449
  }
3243
3450
 
3244
- .jaci-data-view__root {
3245
- gap: var(--jaci-spacing-4);
3246
- color: var(--jaci-colors-fg-default);
3451
+ .jaci-data-toolbar__root {
3452
+ gap: var(--jaci-spacing-2);
3453
+ align-items: center;
3247
3454
  display: flex;
3248
- flex-direction: column;
3455
+ flex-wrap: wrap;
3249
3456
  min-width: var(--jaci-sizes-0);
3250
3457
  width: 100%;
3251
3458
  }
3252
3459
 
3253
- .jaci-data-view__root[data-layout='grid'] [data-slot='data-view-content'] {
3254
- gap: var(--jaci-spacing-4);
3255
- display: grid;
3256
- }
3257
-
3258
- .jaci-data-view__root[data-layout='list'] [data-slot='data-view-content'] {
3259
- display: flex;
3260
- flex-direction: column;
3261
- }
3262
-
3263
- .jaci-data-view__root[data-layout='grid'][data-columns='1'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='2'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='3'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='4'] [data-slot='data-view-content'] {
3264
- grid-template-columns: repeat(1, minmax(0, 1fr));
3460
+ .jaci-data-toolbar__search {
3461
+ border-color: var(--jaci-colors-border-default);
3462
+ border-radius: var(--jaci-radii-lg);
3463
+ border-style: solid;
3464
+ border-width: 1px;
3465
+ flex: 1 1 14rem;
3466
+ outline: var(--jaci-borders-none);
3467
+ padding-inline: var(--jaci-spacing-3);
3468
+ padding-block: var(--jaci-spacing-2);
3469
+ background-color: var(--jaci-colors-surface-raised);
3470
+ box-sizing: border-box;
3471
+ color: var(--jaci-colors-fg-default);
3472
+ min-height: var(--jaci-sizes-10);
3473
+ min-width: 10rem;
3265
3474
  }
3266
3475
 
3267
- .jaci-data-view__root[data-layout='table'] [data-slot='data-view-content'] {
3268
- overflow-x: auto;
3476
+ .jaci-data-toolbar__search:is(:focus-visible, [data-focus-visible]) {
3477
+ border-color: var(--jaci-colors-accent-default);
3478
+ outline: 2px solid;
3479
+ outline-color: var(--jaci-colors-focus);
3480
+ outline-offset: 1px;
3269
3481
  }
3270
3482
 
3271
- .jaci-data-view__toolbar {
3272
- gap: var(--jaci-spacing-3);
3483
+ .jaci-data-toolbar__filters {
3484
+ gap: var(--jaci-spacing-2);
3273
3485
  align-items: center;
3274
3486
  display: flex;
3275
3487
  flex-wrap: wrap;
3276
- justify-content: space-between;
3277
- }
3278
-
3279
- .jaci-data-view__content {
3280
3488
  min-width: var(--jaci-sizes-0);
3281
- width: 100%;
3282
- }
3283
-
3284
- .jaci-data-view__loading,.jaci-data-view__empty {
3285
- padding: var(--jaci-spacing-8);
3286
- align-items: center;
3287
- color: var(--jaci-colors-fg-muted);
3288
- display: flex;
3289
- justify-content: center;
3290
- text-align: center;
3291
- min-height: var(--jaci-sizes-24);
3292
3489
  }
3293
3490
 
3294
- .jaci-data-view__error {
3295
- padding: var(--jaci-spacing-4);
3296
- border-color: var(--jaci-colors-danger);
3491
+ .jaci-data-toolbar__sort {
3492
+ border-color: var(--jaci-colors-border-default);
3297
3493
  border-radius: var(--jaci-radii-lg);
3298
3494
  border-style: solid;
3299
3495
  border-width: 1px;
3496
+ outline: var(--jaci-borders-none);
3497
+ padding-inline: var(--jaci-spacing-3);
3498
+ padding-block: var(--jaci-spacing-2);
3300
3499
  background-color: var(--jaci-colors-surface-raised);
3301
- color: var(--jaci-colors-danger);
3500
+ color: var(--jaci-colors-fg-default);
3501
+ max-width: 100%;
3502
+ min-height: var(--jaci-sizes-10);
3503
+ min-width: 9rem;
3302
3504
  }
3303
3505
 
3304
- .jaci-date-picker__root {
3305
- gap: var(--jaci-spacing-2);
3306
- display: flex;
3307
- flex-direction: column;
3308
- width: 100%;
3506
+ .jaci-data-toolbar__sort:is(:focus-visible, [data-focus-visible]) {
3507
+ border-color: var(--jaci-colors-accent-default);
3508
+ outline: 2px solid;
3509
+ outline-color: var(--jaci-colors-focus);
3510
+ outline-offset: 1px;
3511
+ }
3512
+
3513
+ .jaci-data-toolbar__selection {
3514
+ gap: var(--jaci-spacing-2);
3515
+ align-items: center;
3516
+ display: inline-flex;
3517
+ flex-wrap: wrap;
3518
+ min-width: var(--jaci-sizes-0);
3519
+ }
3520
+
3521
+ .jaci-data-toolbar__clearSelection {
3522
+ border: 0;
3523
+ border-radius: var(--jaci-radii-md);
3524
+ padding-inline: var(--jaci-spacing-2);
3525
+ align-items: center;
3526
+ background-color: var(--jaci-colors-transparent);
3527
+ color: var(--jaci-colors-accent-default);
3528
+ cursor: pointer;
3529
+ display: inline-flex;
3530
+ font-size: var(--jaci-font-sizes-sm);
3531
+ min-height: var(--jaci-sizes-8);
3532
+ }
3533
+
3534
+ .jaci-data-toolbar__clearSelection:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
3535
+ cursor: not-allowed;
3536
+ opacity: 0.5;
3537
+ }
3538
+
3539
+ .jaci-data-toolbar__clearSelection:is(:focus-visible, [data-focus-visible]) {
3540
+ outline: 2px solid;
3541
+ outline-color: var(--jaci-colors-focus);
3542
+ outline-offset: 1px;
3543
+ }
3544
+
3545
+ .jaci-data-toolbar__clearSelection:is(:hover, [data-hover]) {
3546
+ background-color: var(--jaci-colors-surface-subtle);
3547
+ }
3548
+
3549
+ .jaci-data-toolbar__actions {
3550
+ gap: var(--jaci-spacing-2);
3551
+ align-items: center;
3552
+ display: inline-flex;
3553
+ flex-wrap: wrap;
3554
+ margin-inline-start: auto;
3555
+ }
3556
+
3557
+ .jaci-data-toolbar__clear {
3558
+ border: 0;
3559
+ border-radius: var(--jaci-radii-md);
3560
+ padding-inline: var(--jaci-spacing-2);
3561
+ align-items: center;
3562
+ background-color: var(--jaci-colors-transparent);
3563
+ color: var(--jaci-colors-fg-muted);
3564
+ cursor: pointer;
3565
+ display: inline-flex;
3566
+ min-height: var(--jaci-sizes-8);
3567
+ }
3568
+
3569
+ .jaci-data-toolbar__clear:is(:focus-visible, [data-focus-visible]) {
3570
+ outline: 2px solid;
3571
+ outline-color: var(--jaci-colors-focus);
3572
+ outline-offset: 1px;
3573
+ }
3574
+
3575
+ .jaci-data-toolbar__clear:is(:hover, [data-hover]) {
3576
+ background-color: var(--jaci-colors-surface-subtle);
3577
+ color: var(--jaci-colors-fg-default);
3578
+ }
3579
+
3580
+ .jaci-data-toolbar__separator {
3581
+ background-color: var(--jaci-colors-border-default);
3582
+ flex-shrink: 0;
3583
+ height: var(--jaci-sizes-6);
3584
+ width: 1px;
3585
+ }
3586
+
3587
+ .jaci-data-view__root {
3588
+ gap: var(--jaci-spacing-4);
3589
+ color: var(--jaci-colors-fg-default);
3590
+ display: flex;
3591
+ flex-direction: column;
3592
+ min-width: var(--jaci-sizes-0);
3593
+ width: 100%;
3594
+ }
3595
+
3596
+ .jaci-data-view__root[data-layout='grid'] [data-slot='data-view-content'] {
3597
+ gap: var(--jaci-spacing-4);
3598
+ display: grid;
3599
+ }
3600
+
3601
+ .jaci-data-view__root[data-layout='list'] [data-slot='data-view-content'] {
3602
+ display: flex;
3603
+ flex-direction: column;
3604
+ }
3605
+
3606
+ .jaci-data-view__root[data-layout='grid'][data-columns='1'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='2'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='3'] [data-slot='data-view-content'],.jaci-data-view__root[data-layout='grid'][data-columns='4'] [data-slot='data-view-content'] {
3607
+ grid-template-columns: repeat(1, minmax(0, 1fr));
3608
+ }
3609
+
3610
+ .jaci-data-view__root[data-layout='table'] [data-slot='data-view-content'] {
3611
+ overflow-x: auto;
3612
+ }
3613
+
3614
+ .jaci-data-view__toolbar {
3615
+ gap: var(--jaci-spacing-3);
3616
+ justify-content: space-between;
3617
+ }
3618
+
3619
+ .jaci-data-view__toolbar,.jaci-data-view__filters {
3620
+ align-items: center;
3621
+ display: flex;
3622
+ flex-wrap: wrap;
3623
+ }
3624
+
3625
+ .jaci-data-view__filters {
3626
+ gap: var(--jaci-spacing-2);
3627
+ min-width: var(--jaci-sizes-0);
3628
+ }
3629
+
3630
+ .jaci-data-view__content {
3631
+ min-width: var(--jaci-sizes-0);
3632
+ width: 100%;
3633
+ }
3634
+
3635
+ .jaci-data-view__footer {
3636
+ gap: var(--jaci-spacing-3);
3637
+ align-items: center;
3638
+ display: flex;
3639
+ flex-wrap: wrap;
3640
+ justify-content: space-between;
3641
+ }
3642
+
3643
+ .jaci-data-view__pagination {
3644
+ min-width: var(--jaci-sizes-0);
3645
+ width: 100%;
3646
+ }
3647
+
3648
+ .jaci-data-view__loading,.jaci-data-view__empty {
3649
+ padding: var(--jaci-spacing-8);
3650
+ align-items: center;
3651
+ color: var(--jaci-colors-fg-muted);
3652
+ display: flex;
3653
+ justify-content: center;
3654
+ text-align: center;
3655
+ min-height: var(--jaci-sizes-24);
3656
+ }
3657
+
3658
+ .jaci-data-view__error {
3659
+ padding: var(--jaci-spacing-4);
3660
+ border-color: var(--jaci-colors-danger);
3661
+ border-radius: var(--jaci-radii-lg);
3662
+ border-style: solid;
3663
+ border-width: 1px;
3664
+ background-color: var(--jaci-colors-surface-raised);
3665
+ color: var(--jaci-colors-danger);
3666
+ }
3667
+
3668
+ .jaci-date-picker__root {
3669
+ gap: var(--jaci-spacing-2);
3670
+ display: flex;
3671
+ flex-direction: column;
3672
+ width: 100%;
3309
3673
  }
3310
3674
 
3311
3675
  .jaci-date-picker__label {
@@ -3653,7 +4017,312 @@
3653
4017
 
3654
4018
  .jaci-date-picker__weekday {
3655
4019
  color: var(--jaci-colors-fg-muted);
3656
- font-family: system-ui, sans-serif;
4020
+ font-family: system-ui, sans-serif;
4021
+ font-size: var(--jaci-font-sizes-xs);
4022
+ font-weight: 700;
4023
+ text-align: center;
4024
+ text-transform: uppercase;
4025
+ padding-bottom: var(--jaci-spacing-2);
4026
+ }
4027
+
4028
+ .jaci-date-picker__grid {
4029
+ display: grid;
4030
+ grid-template-columns: repeat(7, minmax(0, 1fr));
4031
+ row-gap: var(--jaci-spacing-1);
4032
+ }
4033
+
4034
+ .jaci-date-picker__day {
4035
+ border: 0;
4036
+ border-radius: var(--jaci-radii-full);
4037
+ outline: var(--jaci-borders-none);
4038
+ align-items: center;
4039
+ aspect-ratio: 1;
4040
+ background-color: var(--jaci-colors-transparent);
4041
+ color: var(--jaci-colors-fg-default);
4042
+ cursor: pointer;
4043
+ display: inline-flex;
4044
+ font-family: system-ui, sans-serif;
4045
+ font-size: var(--jaci-font-sizes-sm);
4046
+ justify-content: center;
4047
+ position: relative;
4048
+ min-width: var(--jaci-sizes-8);
4049
+ width: 100%;
4050
+ }
4051
+
4052
+ .jaci-date-picker__day:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4053
+ cursor: not-allowed;
4054
+ opacity: 0.4;
4055
+ }
4056
+
4057
+ .jaci-date-picker__day[data-selected] {
4058
+ background-color: var(--jaci-colors-accent-default);
4059
+ color: var(--jaci-colors-fg-on-accent);
4060
+ font-weight: 700;
4061
+ }
4062
+
4063
+ .jaci-date-picker__day[data-selected]:is(:hover, [data-hover]) {
4064
+ background-color: var(--jaci-colors-accent-hover);
4065
+ }
4066
+
4067
+ .jaci-date-picker__day[data-outside-month] {
4068
+ color: var(--jaci-colors-fg-muted);
4069
+ opacity: 0.65;
4070
+ }
4071
+
4072
+ .jaci-date-picker__day[data-today] {
4073
+ font-weight: 700;
4074
+ }
4075
+
4076
+ .jaci-date-picker__day:is(:focus-visible, [data-focus-visible]) {
4077
+ outline: 2px solid;
4078
+ outline-color: var(--jaci-colors-accent-default);
4079
+ outline-offset: -2px;
4080
+ }
4081
+
4082
+ .jaci-date-picker__day:is(:hover, [data-hover]) {
4083
+ background-color: var(--jaci-colors-surface-subtle);
4084
+ }
4085
+
4086
+ .jaci-date-range-picker__root {
4087
+ gap: var(--jaci-spacing-2);
4088
+ display: flex;
4089
+ flex-direction: column;
4090
+ width: 100%;
4091
+ }
4092
+
4093
+ .jaci-date-range-picker__label {
4094
+ color: var(--jaci-colors-fg-default);
4095
+ font-size: var(--jaci-font-sizes-sm);
4096
+ font-weight: 600;
4097
+ }
4098
+
4099
+ .jaci-date-range-picker__control {
4100
+ gap: var(--jaci-spacing-2);
4101
+ align-items: center;
4102
+ display: flex;
4103
+ width: 100%;
4104
+ }
4105
+
4106
+ .jaci-date-range-picker__trigger {
4107
+ border-color: var(--jaci-colors-border-default);
4108
+ border-radius: var(--jaci-radii-lg);
4109
+ border-style: solid;
4110
+ border-width: 1px;
4111
+ overflow: hidden;
4112
+ padding-inline: var(--jaci-spacing-3);
4113
+ padding-block: var(--jaci-spacing-2);
4114
+ align-items: center;
4115
+ background-color: var(--jaci-colors-surface-raised);
4116
+ color: var(--jaci-colors-fg-default);
4117
+ cursor: pointer;
4118
+ display: flex;
4119
+ justify-content: space-between;
4120
+ text-align: left;
4121
+ min-height: var(--jaci-sizes-10);
4122
+ min-width: var(--jaci-sizes-0);
4123
+ width: 100%;
4124
+ }
4125
+
4126
+ .jaci-date-range-picker__trigger:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4127
+ cursor: not-allowed;
4128
+ opacity: 0.5;
4129
+ }
4130
+
4131
+ .jaci-date-range-picker__trigger:is(:focus-visible, [data-focus-visible]) {
4132
+ outline: 2px solid;
4133
+ outline-color: var(--jaci-colors-focus);
4134
+ outline-offset: 2px;
4135
+ }
4136
+
4137
+ .jaci-date-range-picker__trigger:is(:hover, [data-hover]) {
4138
+ border-color: var(--jaci-colors-border-strong);
4139
+ background-color: var(--jaci-colors-surface-subtle);
4140
+ }
4141
+
4142
+ .jaci-date-range-picker__value {
4143
+ overflow: hidden;
4144
+ text-overflow: ellipsis;
4145
+ white-space: nowrap;
4146
+ min-width: var(--jaci-sizes-0);
4147
+ }
4148
+
4149
+ .jaci-date-range-picker__clear {
4150
+ border: 0;
4151
+ border-radius: var(--jaci-radii-full);
4152
+ align-items: center;
4153
+ background-color: var(--jaci-colors-transparent);
4154
+ color: var(--jaci-colors-fg-muted);
4155
+ cursor: pointer;
4156
+ display: inline-flex;
4157
+ flex-shrink: 0;
4158
+ justify-content: center;
4159
+ height: var(--jaci-sizes-8);
4160
+ width: var(--jaci-sizes-8);
4161
+ }
4162
+
4163
+ .jaci-date-range-picker__clear:is(:focus-visible, [data-focus-visible]) {
4164
+ outline: 2px solid;
4165
+ outline-color: var(--jaci-colors-focus);
4166
+ outline-offset: 2px;
4167
+ }
4168
+
4169
+ .jaci-date-range-picker__clear:is(:hover, [data-hover]) {
4170
+ background-color: var(--jaci-colors-surface-subtle);
4171
+ color: var(--jaci-colors-fg-default);
4172
+ }
4173
+
4174
+ .jaci-date-range-picker__close {
4175
+ border-color: var(--jaci-colors-accent-default);
4176
+ border-radius: var(--jaci-radii-md);
4177
+ border-style: solid;
4178
+ border-width: 1px;
4179
+ padding-inline: var(--jaci-spacing-3);
4180
+ padding-block: var(--jaci-spacing-2);
4181
+ align-self: flex-end;
4182
+ background-color: var(--jaci-colors-accent-default);
4183
+ color: var(--jaci-colors-fg-on-accent);
4184
+ cursor: pointer;
4185
+ white-space: nowrap;
4186
+ min-height: var(--jaci-sizes-9);
4187
+ min-width: 5rem;
4188
+ max-width: 100%;
4189
+ }
4190
+
4191
+ .jaci-date-range-picker__close:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4192
+ cursor: not-allowed;
4193
+ opacity: 0.5;
4194
+ }
4195
+
4196
+ .jaci-date-range-picker__close:is(:focus-visible, [data-focus-visible]) {
4197
+ outline: 2px solid;
4198
+ outline-color: var(--jaci-colors-focus);
4199
+ outline-offset: 2px;
4200
+ }
4201
+
4202
+ .jaci-date-range-picker__close:is(:hover, [data-hover]) {
4203
+ border-color: var(--jaci-colors-accent-hover);
4204
+ background-color: var(--jaci-colors-accent-hover);
4205
+ }
4206
+
4207
+ .jaci-date-range-picker__positioner {
4208
+ outline: var(--jaci-borders-none);
4209
+ z-index: 50;
4210
+ }
4211
+
4212
+ .jaci-date-range-picker__popup {
4213
+ padding: var(--jaci-spacing-4);
4214
+ border-color: var(--jaci-colors-border-default);
4215
+ border-radius: var(--jaci-radii-xl);
4216
+ border-style: solid;
4217
+ border-width: 1px;
4218
+ overflow: hidden;
4219
+ --backdrop-blur: blur(var(--jaci-blurs-md));
4220
+ backdrop-filter: var(--backdrop-blur, ) var(--backdrop-brightness, ) var(--backdrop-contrast, ) var(--backdrop-grayscale, ) var(--backdrop-hue-rotate, ) var(--backdrop-invert, ) var(--backdrop-opacity, ) var(--backdrop-saturate, ) var(--backdrop-sepia, );
4221
+ -webkit-backdrop-filter: var(--backdrop-blur, ) var(--backdrop-brightness, ) var(--backdrop-contrast, ) var(--backdrop-grayscale, ) var(--backdrop-hue-rotate, ) var(--backdrop-invert, ) var(--backdrop-opacity, ) var(--backdrop-saturate, ) var(--backdrop-sepia, );
4222
+ background-color: var(--jaci-colors-surface-overlay);
4223
+ box-shadow: var(--jaci-shadows-xl);
4224
+ color: var(--jaci-colors-fg-default);
4225
+ min-width: var(--jaci-sizes-80);
4226
+ max-width: calc(100vw - 1rem);
4227
+ }
4228
+
4229
+ .jaci-date-range-picker__header {
4230
+ gap: var(--jaci-spacing-2);
4231
+ align-items: center;
4232
+ display: flex;
4233
+ justify-content: space-between;
4234
+ margin-bottom: var(--jaci-spacing-4);
4235
+ }
4236
+
4237
+ .jaci-date-range-picker__caption {
4238
+ flex: 1 1 0%;
4239
+ font-size: var(--jaci-font-sizes-sm);
4240
+ font-weight: 700;
4241
+ text-align: center;
4242
+ text-transform: capitalize;
4243
+ }
4244
+
4245
+ .jaci-date-range-picker__monthSelect {
4246
+ border-color: var(--jaci-colors-border-default);
4247
+ border-radius: var(--jaci-radii-md);
4248
+ border-style: solid;
4249
+ border-width: 1px;
4250
+ padding-inline: var(--jaci-spacing-2);
4251
+ padding-block: var(--jaci-spacing-1);
4252
+ background-color: var(--jaci-colors-surface-default);
4253
+ color: var(--jaci-colors-fg-default);
4254
+ font-size: var(--jaci-font-sizes-sm);
4255
+ max-width: 10rem;
4256
+ min-width: var(--jaci-sizes-0);
4257
+ }
4258
+
4259
+ .jaci-date-range-picker__monthSelect:is(:focus-visible, [data-focus-visible]) {
4260
+ outline: 2px solid;
4261
+ outline-color: var(--jaci-colors-focus);
4262
+ outline-offset: 1px;
4263
+ }
4264
+
4265
+ .jaci-date-range-picker__yearSelect {
4266
+ border-color: var(--jaci-colors-border-default);
4267
+ border-radius: var(--jaci-radii-md);
4268
+ border-style: solid;
4269
+ border-width: 1px;
4270
+ padding-inline: var(--jaci-spacing-2);
4271
+ padding-block: var(--jaci-spacing-1);
4272
+ background-color: var(--jaci-colors-surface-default);
4273
+ color: var(--jaci-colors-fg-default);
4274
+ font-size: var(--jaci-font-sizes-sm);
4275
+ max-width: 7rem;
4276
+ min-width: var(--jaci-sizes-0);
4277
+ }
4278
+
4279
+ .jaci-date-range-picker__yearSelect:is(:focus-visible, [data-focus-visible]) {
4280
+ outline: 2px solid;
4281
+ outline-color: var(--jaci-colors-focus);
4282
+ outline-offset: 1px;
4283
+ }
4284
+
4285
+ .jaci-date-range-picker__navigation {
4286
+ border: 0;
4287
+ border-radius: var(--jaci-radii-md);
4288
+ align-items: center;
4289
+ background-color: var(--jaci-colors-transparent);
4290
+ color: var(--jaci-colors-fg-default);
4291
+ cursor: pointer;
4292
+ display: inline-flex;
4293
+ font-size: var(--jaci-font-sizes-lg);
4294
+ justify-content: center;
4295
+ height: var(--jaci-sizes-8);
4296
+ width: var(--jaci-sizes-8);
4297
+ }
4298
+
4299
+ .jaci-date-range-picker__navigation:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4300
+ cursor: not-allowed;
4301
+ opacity: 0.45;
4302
+ }
4303
+
4304
+ .jaci-date-range-picker__navigation:is(:focus-visible, [data-focus-visible]) {
4305
+ outline: 2px solid;
4306
+ outline-color: var(--jaci-colors-focus);
4307
+ outline-offset: 2px;
4308
+ }
4309
+
4310
+ .jaci-date-range-picker__navigation:is(:hover, [data-hover]) {
4311
+ background-color: var(--jaci-colors-surface-subtle);
4312
+ }
4313
+
4314
+ .jaci-date-range-picker__calendar {
4315
+ width: 100%;
4316
+ }
4317
+
4318
+ .jaci-date-range-picker__weekdays {
4319
+ display: grid;
4320
+ grid-template-columns: repeat(7, minmax(0, 1fr));
4321
+ margin-bottom: var(--jaci-spacing-1);
4322
+ }
4323
+
4324
+ .jaci-date-range-picker__weekday {
4325
+ color: var(--jaci-colors-fg-muted);
3657
4326
  font-size: var(--jaci-font-sizes-xs);
3658
4327
  font-weight: 700;
3659
4328
  text-align: center;
@@ -3661,13 +4330,13 @@
3661
4330
  padding-bottom: var(--jaci-spacing-2);
3662
4331
  }
3663
4332
 
3664
- .jaci-date-picker__grid {
4333
+ .jaci-date-range-picker__grid {
3665
4334
  display: grid;
3666
4335
  grid-template-columns: repeat(7, minmax(0, 1fr));
3667
4336
  row-gap: var(--jaci-spacing-1);
3668
4337
  }
3669
4338
 
3670
- .jaci-date-picker__day {
4339
+ .jaci-date-range-picker__day {
3671
4340
  border: 0;
3672
4341
  border-radius: var(--jaci-radii-full);
3673
4342
  outline: var(--jaci-borders-none);
@@ -3677,7 +4346,6 @@
3677
4346
  color: var(--jaci-colors-fg-default);
3678
4347
  cursor: pointer;
3679
4348
  display: inline-flex;
3680
- font-family: system-ui, sans-serif;
3681
4349
  font-size: var(--jaci-font-sizes-sm);
3682
4350
  justify-content: center;
3683
4351
  position: relative;
@@ -3685,40 +4353,74 @@
3685
4353
  width: 100%;
3686
4354
  }
3687
4355
 
3688
- .jaci-date-picker__day:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4356
+ .jaci-date-range-picker__day[data-in-range] {
4357
+ border-radius: 0;
4358
+ background-color: var(--jaci-colors-selected);
4359
+ }
4360
+
4361
+ .jaci-date-range-picker__day:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
3689
4362
  cursor: not-allowed;
3690
4363
  opacity: 0.4;
3691
4364
  }
3692
4365
 
3693
- .jaci-date-picker__day[data-selected] {
4366
+ .jaci-date-range-picker__day[data-outside-month] {
4367
+ color: var(--jaci-colors-fg-muted);
4368
+ opacity: 0.65;
4369
+ }
4370
+
4371
+ .jaci-date-range-picker__day[data-range-start],.jaci-date-range-picker__day[data-range-end] {
3694
4372
  background-color: var(--jaci-colors-accent-default);
3695
4373
  color: var(--jaci-colors-fg-on-accent);
3696
4374
  font-weight: 700;
3697
4375
  }
3698
4376
 
3699
- .jaci-date-picker__day[data-selected]:is(:hover, [data-hover]) {
3700
- background-color: var(--jaci-colors-accent-hover);
3701
- }
3702
-
3703
- .jaci-date-picker__day[data-outside-month] {
3704
- color: var(--jaci-colors-fg-muted);
3705
- opacity: 0.65;
4377
+ .jaci-date-range-picker__day[data-range-start] {
4378
+ border-top-left-radius: var(--jaci-radii-full);
4379
+ border-bottom-left-radius: var(--jaci-radii-full);
3706
4380
  }
3707
4381
 
3708
- .jaci-date-picker__day[data-today] {
3709
- font-weight: 700;
4382
+ .jaci-date-range-picker__day[data-range-end] {
4383
+ border-top-right-radius: var(--jaci-radii-full);
4384
+ border-bottom-right-radius: var(--jaci-radii-full);
3710
4385
  }
3711
4386
 
3712
- .jaci-date-picker__day:is(:focus-visible, [data-focus-visible]) {
4387
+ .jaci-date-range-picker__day:is(:focus-visible, [data-focus-visible]) {
3713
4388
  outline: 2px solid;
3714
- outline-color: var(--jaci-colors-accent-default);
4389
+ outline-color: var(--jaci-colors-focus);
3715
4390
  outline-offset: -2px;
3716
4391
  }
3717
4392
 
3718
- .jaci-date-picker__day:is(:hover, [data-hover]) {
4393
+ .jaci-date-range-picker__day:is(:hover, [data-hover]) {
3719
4394
  background-color: var(--jaci-colors-surface-subtle);
3720
4395
  }
3721
4396
 
4397
+ .jaci-date-range-picker__preview {
4398
+ color: var(--jaci-colors-fg-muted);
4399
+ font-size: var(--jaci-font-sizes-sm);
4400
+ min-height: var(--jaci-sizes-5);
4401
+ }
4402
+
4403
+ .jaci-date-range-picker__input {
4404
+ border-color: var(--jaci-colors-border-default);
4405
+ border-radius: var(--jaci-radii-md);
4406
+ border-style: solid;
4407
+ border-width: 1px;
4408
+ padding-inline: var(--jaci-spacing-3);
4409
+ background-color: var(--jaci-colors-surface-default);
4410
+ box-sizing: border-box;
4411
+ color: var(--jaci-colors-fg-default);
4412
+ min-height: var(--jaci-sizes-9);
4413
+ min-width: var(--jaci-sizes-0);
4414
+ width: 100%;
4415
+ }
4416
+
4417
+ .jaci-date-range-picker__input:is(:focus-visible, [data-focus-visible]) {
4418
+ border-color: var(--jaci-colors-accent-default);
4419
+ outline: 2px solid;
4420
+ outline-color: var(--jaci-colors-focus);
4421
+ outline-offset: 1px;
4422
+ }
4423
+
3722
4424
  .jaci-drawer__trigger {
3723
4425
  border-color: var(--jaci-colors-border-interactive);
3724
4426
  border-radius: var(--jaci-radii-lg);
@@ -4063,34 +4765,6 @@
4063
4765
  line-height: 1.5;
4064
4766
  }
4065
4767
 
4066
- .jaci-inputGroup__root {
4067
- align-items: stretch;
4068
- display: flex;
4069
- min-width: var(--jaci-sizes-0);
4070
- width: 100%;
4071
- }
4072
-
4073
- .jaci-inputGroup__root > [data-slot=input] {
4074
- flex: 1 1 0%;
4075
- min-width: var(--jaci-sizes-0);
4076
- }
4077
-
4078
- .jaci-inputGroup__addon {
4079
- border-color: var(--jaci-colors-border-default);
4080
- border-style: solid;
4081
- border-width: 2px;
4082
- overflow: hidden;
4083
- padding-inline: var(--jaci-spacing-3);
4084
- align-items: center;
4085
- background-color: var(--jaci-colors-surface-subtle);
4086
- color: var(--jaci-colors-fg-muted);
4087
- display: inline-flex;
4088
- flex-shrink: 0;
4089
- font-size: var(--jaci-font-sizes-sm);
4090
- white-space: nowrap;
4091
- max-width: 50%;
4092
- }
4093
-
4094
4768
  .jaci-list__root {
4095
4769
  margin: var(--jaci-spacing-0);
4096
4770
  padding: var(--jaci-spacing-0);
@@ -5054,17 +5728,92 @@
5054
5728
  }
5055
5729
 
5056
5730
  .jaci-pagination__ellipsis {
5731
+ align-items: center;
5057
5732
  color: var(--jaci-colors-fg-muted);
5733
+ display: inline-flex;
5734
+ font-size: var(--jaci-font-sizes-sm);
5735
+ font-weight: 600;
5736
+ justify-content: center;
5058
5737
  min-height: var(--jaci-sizes-9);
5059
5738
  min-width: var(--jaci-sizes-9);
5060
5739
  }
5061
5740
 
5062
- .jaci-pagination__ellipsis,.jaci-popover__trigger {
5063
- align-items: center;
5064
- display: inline-flex;
5741
+ .jaci-pinInput__root {
5742
+ gap: var(--jaci-spacing-2);
5743
+ display: flex;
5744
+ flex-direction: column;
5745
+ max-width: 100%;
5746
+ min-width: var(--jaci-sizes-0);
5747
+ }
5748
+
5749
+ .jaci-pinInput__label {
5750
+ color: var(--jaci-colors-fg-default);
5065
5751
  font-size: var(--jaci-font-sizes-sm);
5066
5752
  font-weight: 600;
5067
- justify-content: center;
5753
+ }
5754
+
5755
+ .jaci-pinInput__control {
5756
+ display: flex;
5757
+ max-width: 100%;
5758
+ min-width: var(--jaci-sizes-0);
5759
+ }
5760
+
5761
+ .jaci-pinInput__inputs {
5762
+ gap: var(--jaci-spacing-2);
5763
+ display: flex;
5764
+ flex-wrap: wrap;
5765
+ max-width: 100%;
5766
+ }
5767
+
5768
+ .jaci-pinInput__input {
5769
+ border-color: var(--jaci-colors-border-default);
5770
+ border-radius: var(--jaci-radii-md);
5771
+ border-style: solid;
5772
+ border-width: 1px;
5773
+ outline: var(--jaci-borders-none);
5774
+ background-color: var(--jaci-colors-surface-canvas);
5775
+ color: var(--jaci-colors-fg-default);
5776
+ font-family: inherit;
5777
+ font-size: var(--jaci-font-sizes-lg);
5778
+ font-weight: 600;
5779
+ text-align: center;
5780
+ height: var(--jaci-sizes-12);
5781
+ min-width: var(--jaci-sizes-0);
5782
+ width: 3rem;
5783
+ }
5784
+
5785
+ .jaci-pinInput__input:is(:invalid, [data-invalid], [aria-invalid=true]) {
5786
+ border-color: danger.default;
5787
+ }
5788
+
5789
+ .jaci-pinInput__input:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
5790
+ background-color: var(--jaci-colors-surface-subtle);
5791
+ cursor: not-allowed;
5792
+ opacity: 0.65;
5793
+ }
5794
+
5795
+ .jaci-pinInput__input:is(:focus-visible, [data-focus-visible]) {
5796
+ border-color: var(--jaci-colors-accent-default);
5797
+ box-shadow: 0 0 0 3px colors\.focus\.ring;
5798
+ }
5799
+
5800
+ .jaci-pinInput__description {
5801
+ color: var(--jaci-colors-fg-muted);
5802
+ font-size: var(--jaci-font-sizes-sm);
5803
+ }
5804
+
5805
+ .jaci-pinInput__error {
5806
+ color: danger.default;
5807
+ font-size: var(--jaci-font-sizes-sm);
5808
+ }
5809
+
5810
+ .jaci-pinInput__hiddenInput {
5811
+ overflow: hidden;
5812
+ position: absolute;
5813
+ clip: rect(0 0 0 0);
5814
+ white-space: nowrap;
5815
+ width: 1px;
5816
+ height: 1px;
5068
5817
  }
5069
5818
 
5070
5819
  .jaci-popover__trigger {
@@ -5075,10 +5824,15 @@
5075
5824
  gap: var(--jaci-spacing-2);
5076
5825
  padding-inline: var(--jaci-spacing-3);
5077
5826
  padding-block: var(--jaci-spacing-2);
5827
+ align-items: center;
5078
5828
  background-color: var(--jaci-colors-transparent);
5079
5829
  color: var(--jaci-colors-fg-default);
5080
5830
  cursor: pointer;
5831
+ display: inline-flex;
5081
5832
  font-family: system-ui, sans-serif;
5833
+ font-size: var(--jaci-font-sizes-sm);
5834
+ font-weight: 600;
5835
+ justify-content: center;
5082
5836
  --transition-duration: var(--jaci-durations-slow);
5083
5837
  transition-duration: var(--jaci-durations-slow);
5084
5838
  --transition-prop: background-color, border-color, box-shadow, color, transform;
@@ -5670,6 +6424,42 @@
5670
6424
  width: 100%;
5671
6425
  }
5672
6426
 
6427
+ .jaci-select__clear {
6428
+ border: 0;
6429
+ border-radius: var(--jaci-radii-sm);
6430
+ align-items: center;
6431
+ background-color: var(--jaci-colors-transparent);
6432
+ color: var(--jaci-colors-fg-muted);
6433
+ cursor: pointer;
6434
+ display: inline-flex;
6435
+ flex-shrink: 0;
6436
+ font-size: var(--jaci-font-sizes-lg);
6437
+ justify-content: center;
6438
+ min-height: var(--jaci-sizes-6);
6439
+ min-width: var(--jaci-sizes-6);
6440
+ }
6441
+
6442
+ .jaci-select__clear:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
6443
+ cursor: not-allowed;
6444
+ opacity: 0.55;
6445
+ }
6446
+
6447
+ .jaci-select__clear:is(:focus-visible, [data-focus-visible]) {
6448
+ outline: 2px solid;
6449
+ outline-color: var(--jaci-colors-accent-default);
6450
+ outline-offset: 1px;
6451
+ }
6452
+
6453
+ .jaci-select__empty,.jaci-select__loading {
6454
+ padding-inline: var(--jaci-spacing-3);
6455
+ padding-block: var(--jaci-spacing-2);
6456
+ }
6457
+
6458
+ .jaci-select__empty,.jaci-select__loading,.jaci-select__status {
6459
+ color: var(--jaci-colors-fg-muted);
6460
+ font-size: var(--jaci-font-sizes-sm);
6461
+ }
6462
+
5673
6463
  .jaci-sidebar__root {
5674
6464
  overflow: visible;
5675
6465
  box-sizing: border-box;
@@ -5971,6 +6761,12 @@
5971
6761
  font-weight: 600;
5972
6762
  }
5973
6763
 
6764
+ .jaci-table__description {
6765
+ margin-block: var(--jaci-spacing-2);
6766
+ color: var(--jaci-colors-fg-muted);
6767
+ font-size: var(--jaci-font-sizes-sm);
6768
+ }
6769
+
5974
6770
  .jaci-table__header {
5975
6771
  background-color: var(--jaci-colors-surface-default);
5976
6772
  }
@@ -6012,6 +6808,22 @@
6012
6808
  white-space: nowrap;
6013
6809
  }
6014
6810
 
6811
+ .jaci-table__head[data-align=start] {
6812
+ text-align: left;
6813
+ }
6814
+
6815
+ .jaci-table__head[data-align=center] {
6816
+ text-align: center;
6817
+ }
6818
+
6819
+ .jaci-table__head[data-align=end] {
6820
+ text-align: right;
6821
+ }
6822
+
6823
+ .jaci-table__head[data-hide-below=sm],.jaci-table__head[data-hide-below=md],.jaci-table__head[data-hide-below=lg] {
6824
+ display: none;
6825
+ }
6826
+
6015
6827
  .jaci-table__sortButton {
6016
6828
  background: var(--jaci-colors-transparent);
6017
6829
  border: 0;
@@ -6043,6 +6855,22 @@
6043
6855
  vertical-align: middle;
6044
6856
  }
6045
6857
 
6858
+ .jaci-table__cell[data-align=start] {
6859
+ text-align: left;
6860
+ }
6861
+
6862
+ .jaci-table__cell[data-align=center] {
6863
+ text-align: center;
6864
+ }
6865
+
6866
+ .jaci-table__cell[data-align=end] {
6867
+ text-align: right;
6868
+ }
6869
+
6870
+ .jaci-table__cell[data-hide-below=sm],.jaci-table__cell[data-hide-below=md],.jaci-table__cell[data-hide-below=lg] {
6871
+ display: none;
6872
+ }
6873
+
6046
6874
  .jaci-table__selection {
6047
6875
  padding-inline: var(--jaci-spacing-3);
6048
6876
  text-align: center;
@@ -6966,6 +7794,19 @@
6966
7794
  min-width: var(--jaci-sizes-0);
6967
7795
  }
6968
7796
 
7797
+ .jaci-tree-view__loading,.jaci-tree-view__empty {
7798
+ color: var(--jaci-colors-fg-muted);
7799
+ }
7800
+
7801
+ .jaci-tree-view__loading,.jaci-tree-view__empty,.jaci-tree-view__error {
7802
+ padding: var(--jaci-spacing-2);
7803
+ font-size: var(--jaci-font-sizes-sm);
7804
+ }
7805
+
7806
+ .jaci-tree-view__error {
7807
+ color: var(--jaci-colors-danger);
7808
+ }
7809
+
6969
7810
  .jaci-upload__root {
6970
7811
  gap: var(--jaci-spacing-3);
6971
7812
  width: 100%;
@@ -7223,6 +8064,37 @@
7223
8064
  color: var(--jaci-colors-fg-default);
7224
8065
  }
7225
8066
 
8067
+ .jaci-upload__cancel {
8068
+ border: 1px solid;
8069
+ border-color: var(--jaci-colors-border-default);
8070
+ border-radius: var(--jaci-radii-md);
8071
+ padding-inline: var(--jaci-spacing-2);
8072
+ align-items: center;
8073
+ background-color: var(--jaci-colors-transparent);
8074
+ color: var(--jaci-colors-fg-default);
8075
+ cursor: pointer;
8076
+ display: inline-flex;
8077
+ font-size: var(--jaci-font-sizes-sm);
8078
+ justify-content: center;
8079
+ min-height: var(--jaci-sizes-8);
8080
+ }
8081
+
8082
+ .jaci-upload__cancel:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
8083
+ cursor: not-allowed;
8084
+ opacity: 0.55;
8085
+ }
8086
+
8087
+ .jaci-upload__cancel:is(:focus-visible, [data-focus-visible]) {
8088
+ outline: 2px solid;
8089
+ outline-color: var(--jaci-colors-accent-default);
8090
+ outline-offset: 2px;
8091
+ }
8092
+
8093
+ .jaci-upload__status {
8094
+ color: var(--jaci-colors-fg-muted);
8095
+ font-size: var(--jaci-font-sizes-sm);
8096
+ }
8097
+
7226
8098
  .jaci-upload__error {
7227
8099
  margin: var(--jaci-spacing-0);
7228
8100
  color: var(--jaci-colors-danger);
@@ -7237,6 +8109,9 @@
7237
8109
  }
7238
8110
  .jaci-navbar__drawer {
7239
8111
  width: 66.666667%;
8112
+ }
8113
+ .jaci-table__head[data-hide-below=sm],.jaci-table__cell[data-hide-below=sm] {
8114
+ display: table-cell;
7240
8115
  }
7241
8116
  }
7242
8117
 
@@ -7303,6 +8178,9 @@
7303
8178
  font-size: var(--jaci-font-sizes-md);
7304
8179
  min-height: var(--jaci-sizes-10);
7305
8180
  min-width: var(--jaci-sizes-10);
8181
+ }
8182
+ .jaci-table__head[data-hide-below=md],.jaci-table__cell[data-hide-below=md] {
8183
+ display: table-cell;
7306
8184
  }
7307
8185
  .jaci-toast__viewport {
7308
8186
  bottom: var(--jaci-spacing-6);
@@ -7339,6 +8217,9 @@
7339
8217
  }
7340
8218
  .jaci-bottomNavigation__root {
7341
8219
  border-radius: var(--jaci-radii-2xl);
8220
+ }
8221
+ .jaci-table__head[data-hide-below=lg],.jaci-table__cell[data-hide-below=lg] {
8222
+ display: table-cell;
7342
8223
  }
7343
8224
  }
7344
8225
  }
@@ -7565,6 +8446,11 @@
7565
8446
  border-bottom: 0;
7566
8447
  }
7567
8448
 
8449
+ .jaci-list__item--density_compact {
8450
+ padding-block: var(--jaci-spacing-2);
8451
+ padding-inline: var(--jaci-spacing-3);
8452
+ }
8453
+
7568
8454
  .jaci-list__item--variant_divided {
7569
8455
  border-radius: 0;
7570
8456
  border-bottom-color: var(--jaci-colors-border-default);
@@ -7705,6 +8591,16 @@
7705
8591
  grid-template-columns: repeat(1, minmax(0, 1fr));
7706
8592
  }
7707
8593
 
8594
+ .jaci-pagination__link--density_compact {
8595
+ padding-inline: var(--jaci-spacing-2);
8596
+ font-size: var(--jaci-font-sizes-sm);
8597
+ }
8598
+
8599
+ .jaci-pagination__link--density_compact,.jaci-pagination__ellipsis--density_compact {
8600
+ min-height: var(--jaci-sizes-8);
8601
+ min-width: var(--jaci-sizes-8);
8602
+ }
8603
+
7708
8604
  .jaci-pagination__link--active_true {
7709
8605
  border-color: var(--jaci-colors-accent-default);
7710
8606
  background-color: var(--jaci-colors-accent-default);
@@ -8080,4 +8976,8 @@
8080
8976
  .jaci-flex-d_horizontal {
8081
8977
  flex-direction: horizontal;
8082
8978
  }
8979
+
8980
+ .jaci-page_1 {
8981
+ page: 1px;
8982
+ }
8083
8983
  }