2023-11-08 15:34:16 +01:00
|
|
|
import { defaultButtonLabel } from '../constants'
|
|
|
|
|
import { RatingInputBlock } from '../rating'
|
|
|
|
|
|
|
|
|
|
export const defaultRatingInputOptions = {
|
|
|
|
|
buttonType: 'Numbers',
|
|
|
|
|
length: 10,
|
|
|
|
|
labels: {
|
|
|
|
|
button: defaultButtonLabel,
|
|
|
|
|
},
|
2024-02-06 17:01:53 +01:00
|
|
|
startsAt: 0,
|
2023-11-08 15:34:16 +01:00
|
|
|
customIcon: { isEnabled: false },
|
|
|
|
|
isOneClickSubmitEnabled: false,
|
|
|
|
|
} as const satisfies RatingInputBlock['options']
|