@pnx-mixtape/ids-shape 0.0.6 → 0.0.7

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 (2) hide show
  1. package/index.ts +3 -3
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -214,7 +214,7 @@ export type Card = WayfindingBlock & {
214
214
  tags?: Tags
215
215
  date?: string
216
216
  linkList?: LinkList
217
- modifier?: CardModifier
217
+ modifiers?: CardModifier[]
218
218
  }
219
219
 
220
220
  export type CardGrid = WayfindingBlock & {
@@ -266,7 +266,7 @@ export type HeroBanner = WayfindingBlock & {
266
266
  image?: Image
267
267
  linkList?: LinkList
268
268
  highlight?: boolean
269
- modifier?: HeroBannerModifier
269
+ modifiers?: HeroBannerModifier[]
270
270
  }
271
271
 
272
272
  export type InPageAlert = {
@@ -303,7 +303,7 @@ export type StepItem = {
303
303
 
304
304
  export type Steps = {
305
305
  items: StepItem[],
306
- modifier?: StepsModifier
306
+ modifiers?: StepsModifier[]
307
307
  fill?: boolean
308
308
  counters?: boolean
309
309
  progress?: boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnx-mixtape/ids-shape",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "shape details for ids project",
5
5
  "main": "./index.ts",
6
6
  "type": "module",