ngx-com 0.0.5 → 0.0.7
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.
- package/fesm2022/ngx-com-components-calendar.mjs +5 -5
- package/fesm2022/ngx-com-components-calendar.mjs.map +1 -1
- package/fesm2022/ngx-com-components-dropdown.mjs +13 -11
- package/fesm2022/ngx-com-components-dropdown.mjs.map +1 -1
- package/fesm2022/ngx-com-components-form-field.mjs +13 -0
- package/fesm2022/ngx-com-components-form-field.mjs.map +1 -1
- package/fesm2022/ngx-com-components-icon.mjs +1 -1
- package/fesm2022/ngx-com-components-icon.mjs.map +1 -1
- package/fesm2022/ngx-com-components-item.mjs +3 -3
- package/fesm2022/ngx-com-components-item.mjs.map +1 -1
- package/fesm2022/ngx-com-components-sort.mjs +4 -4
- package/fesm2022/ngx-com-components-sort.mjs.map +1 -1
- package/fesm2022/ngx-com-components-tabs.mjs +5 -2
- package/fesm2022/ngx-com-components-tabs.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ngx-com-components-calendar.d.ts +1 -1
- package/types/ngx-com-components-dropdown.d.ts +4 -2
- package/types/ngx-com-components-form-field.d.ts +5 -2
- package/types/ngx-com-components-item.d.ts +1 -1
- package/types/ngx-com-components-tabs.d.ts +3 -0
|
@@ -391,7 +391,7 @@ const calendarCellVariants = cva(
|
|
|
391
391
|
{
|
|
392
392
|
state: 'disabled',
|
|
393
393
|
outside: true,
|
|
394
|
-
class: ['text-disabled-foreground'
|
|
394
|
+
class: ['text-disabled-foreground'],
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
state: 'selected',
|
|
@@ -3227,16 +3227,16 @@ const datepickerIconVariants = cva([
|
|
|
3227
3227
|
/**
|
|
3228
3228
|
* CVA variants for the clear button.
|
|
3229
3229
|
*
|
|
3230
|
-
* @tokens `--color-ring`, `--color-muted-foreground`, `--radius-interactive-sm`
|
|
3230
|
+
* @tokens `--color-ring`, `--color-muted-foreground`, `--color-foreground`, `--radius-interactive-sm`
|
|
3231
3231
|
*/
|
|
3232
3232
|
const datepickerClearVariants = cva([
|
|
3233
3233
|
'inline-flex',
|
|
3234
3234
|
'items-center',
|
|
3235
3235
|
'justify-center',
|
|
3236
3236
|
'rounded-interactive-sm',
|
|
3237
|
-
'
|
|
3238
|
-
'transition-
|
|
3239
|
-
'hover:
|
|
3237
|
+
'text-muted-foreground',
|
|
3238
|
+
'transition-colors',
|
|
3239
|
+
'hover:text-foreground',
|
|
3240
3240
|
'focus:outline-none',
|
|
3241
3241
|
'focus:ring-1',
|
|
3242
3242
|
'focus:ring-ring',
|