diff --git a/package.json b/package.json index 1638a82..33321a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@finsweet/ts-utils", - "version": "0.14.1", + "version": "0.14.2", "description": "Typescript utils for custom Webflow projects.", "main": "index.ts", "module": "index.ts", diff --git a/webflow/css.ts b/webflow/css.ts index d17953e..380f285 100644 --- a/webflow/css.ts +++ b/webflow/css.ts @@ -27,3 +27,12 @@ export const CMS_CSS_CLASSES = { paginationNext: 'w-pagination-next', paginationPrevious: 'w-pagination-previous', } as const; + +export const FORM_CSS_CLASSES = { + formBlock: 'w-form', + checkboxField: 'w-checkbox', + checkboxInput: 'w-checkbox-input', + radioField: 'w-radio', + radioInput: 'w-radio-input', + checkboxOrRadioLabel: 'w-form-label', +} as const;