@pnx-mixtape/ids-shape 0.0.14 → 0.0.16
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/enums.ts +1 -1
- package/index.ts +3 -4
- package/package.json +1 -1
package/enums.ts
CHANGED
package/index.ts
CHANGED
|
@@ -172,10 +172,7 @@ export type FormTextArea = InputBase & {
|
|
|
172
172
|
label?: string,
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
export type FormInput =
|
|
176
|
-
fieldType: "text" | "textarea" | "select" | "checkbox" | "radio"
|
|
177
|
-
input: FormText | FormTextArea | FormSelect | FormControl
|
|
178
|
-
}
|
|
175
|
+
export type FormInput = FormText | FormTextArea | FormSelect | FormControl
|
|
179
176
|
|
|
180
177
|
export type FormDescription = {
|
|
181
178
|
id: string
|
|
@@ -317,6 +314,8 @@ export type Footer = {
|
|
|
317
314
|
links?: Link[]
|
|
318
315
|
socials?: SocialLinks
|
|
319
316
|
background?: FooterModifier
|
|
317
|
+
copyright?: string
|
|
318
|
+
logo?: LinkedImage | LinkedImage[]
|
|
320
319
|
}
|
|
321
320
|
|
|
322
321
|
/**
|