@pnx-mixtape/ids-shape 0.0.6 → 0.0.8
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 +7 -5
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -39,16 +39,18 @@ export type Link = {
|
|
|
39
39
|
external?: boolean
|
|
40
40
|
current?: boolean
|
|
41
41
|
download?: boolean
|
|
42
|
-
|
|
42
|
+
iconStart?: Icon
|
|
43
|
+
iconEnd?: Icon
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
export type Button = {
|
|
46
47
|
title: string
|
|
47
48
|
as: ButtonTypes
|
|
48
49
|
modifiers?: ButtonModifiers[]
|
|
49
|
-
icon?: Icon
|
|
50
50
|
href?: string
|
|
51
51
|
disabled?: boolean
|
|
52
|
+
iconStart?: Icon
|
|
53
|
+
iconEnd?: Icon
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
export type Heading = {
|
|
@@ -214,7 +216,7 @@ export type Card = WayfindingBlock & {
|
|
|
214
216
|
tags?: Tags
|
|
215
217
|
date?: string
|
|
216
218
|
linkList?: LinkList
|
|
217
|
-
|
|
219
|
+
modifiers?: CardModifier[]
|
|
218
220
|
}
|
|
219
221
|
|
|
220
222
|
export type CardGrid = WayfindingBlock & {
|
|
@@ -266,7 +268,7 @@ export type HeroBanner = WayfindingBlock & {
|
|
|
266
268
|
image?: Image
|
|
267
269
|
linkList?: LinkList
|
|
268
270
|
highlight?: boolean
|
|
269
|
-
|
|
271
|
+
modifiers?: HeroBannerModifier[]
|
|
270
272
|
}
|
|
271
273
|
|
|
272
274
|
export type InPageAlert = {
|
|
@@ -303,7 +305,7 @@ export type StepItem = {
|
|
|
303
305
|
|
|
304
306
|
export type Steps = {
|
|
305
307
|
items: StepItem[],
|
|
306
|
-
|
|
308
|
+
modifiers?: StepsModifier[]
|
|
307
309
|
fill?: boolean
|
|
308
310
|
counters?: boolean
|
|
309
311
|
progress?: boolean
|