// src/presets/material/inputnumber/index.ts var inputnumber_default = { root: { transitionDuration: "{transition.duration}" }, button: { width: "3rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, colorScheme: { light: { button: { background: "transparent", hoverBackground: "{surface.100}", activeBackground: "{surface.200}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.500}", activeColor: "{surface.600}" } }, dark: { button: { background: "transparent", hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.300}", activeColor: "{surface.200}" } } }, css: ({ dt }) => ` .p-inputnumber-stacked .p-inputnumber-button-group { top: 2px; right: 2px; height: calc(100% - 4px); } .p-inputnumber-horizontal:has(.p-variant-filled) .p-inputnumber-button { border-block-start-color: ${dt("inputtext.filled.background")}; border-inline-color: ${dt("inputtext.filled.background")}; background: ${dt("inputtext.filled.background")} no-repeat; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .p-inputnumber-vertical:has(.p-variant-filled) .p-inputnumber-button { border-block-color: ${dt("inputtext.filled.background")}; border-inline-color: ${dt("inputtext.filled.background")}; background: ${dt("inputtext.filled.background")} no-repeat; } .p-inputnumber-vertical:has(.p-variant-filled) .p-inputnumber-increment-button { border-block-end: 1px solid ${dt("inputtext.border.color")} } ` }; export { inputnumber_default as default }; //# sourceMappingURL=index.mjs.map