@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.
- package/index.ts +3 -3
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
306
|
+
modifiers?: StepsModifier[]
|
|
307
307
|
fill?: boolean
|
|
308
308
|
counters?: boolean
|
|
309
309
|
progress?: boolean
|