@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.
Files changed (3) hide show
  1. package/enums.ts +1 -1
  2. package/index.ts +3 -4
  3. package/package.json +1 -1
package/enums.ts CHANGED
@@ -187,7 +187,7 @@ export enum StepsModifier {
187
187
 
188
188
  export enum ListItemModifiers {
189
189
  BLOCK = "block",
190
- REVERSE = "reverse"
190
+ REVERSE = "reversed"
191
191
  }
192
192
 
193
193
  export enum MastheadModifier {
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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnx-mixtape/ids-shape",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "shape details for ids project",
5
5
  "main": "./index.ts",
6
6
  "type": "module",