@pnx-mixtape/ids-shape 0.0.5 → 0.0.6
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 +11 -14
- package/index.ts +2 -4
- package/package.json +1 -1
package/enums.ts
CHANGED
|
@@ -121,21 +121,18 @@ export enum TagTypes {
|
|
|
121
121
|
CHECKBOX = "checkbox"
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
export enum GridItemModifiers {
|
|
125
|
-
SPAN_2 = "span-2",
|
|
126
|
-
SPAN_3 = "span-3",
|
|
127
|
-
SPAN_4 = "span-4"
|
|
128
|
-
}
|
|
129
|
-
|
|
130
124
|
export enum GridModifiers {
|
|
131
|
-
XS_2 = "xs-2
|
|
132
|
-
SM_2 = "sm-2
|
|
133
|
-
MD_2 = "md-2
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
125
|
+
XS_2 = "xs-2",
|
|
126
|
+
SM_2 = "sm-2",
|
|
127
|
+
MD_2 = "md-2",
|
|
128
|
+
LG_2 = "lg-2",
|
|
129
|
+
XL_2 = "xl-2",
|
|
130
|
+
MD_3 = "md-3",
|
|
131
|
+
LG_3 = "lg-3",
|
|
132
|
+
XL_3 = "xl-3",
|
|
133
|
+
MD_4 = "md-4",
|
|
134
|
+
LG_4 = "lg-4",
|
|
135
|
+
XL_4 = "xl-4",
|
|
139
136
|
}
|
|
140
137
|
|
|
141
138
|
export enum CardModifier {
|
package/index.ts
CHANGED
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
ButtonTypes,
|
|
6
6
|
CardModifier,
|
|
7
7
|
GlobalAlertTypes,
|
|
8
|
-
GridItemModifiers,
|
|
9
8
|
GridModifiers,
|
|
10
9
|
HeadingTypes,
|
|
11
10
|
HeroBannerModifier,
|
|
@@ -125,9 +124,9 @@ export type WayfindingBlock = {
|
|
|
125
124
|
*/
|
|
126
125
|
|
|
127
126
|
export type GridItem = {
|
|
128
|
-
item: HTMLElement
|
|
127
|
+
item: string | HTMLElement
|
|
129
128
|
container?: boolean
|
|
130
|
-
modifiers?:
|
|
129
|
+
modifiers?: GridModifiers[]
|
|
131
130
|
as?: AsTypes
|
|
132
131
|
}
|
|
133
132
|
|
|
@@ -364,7 +363,6 @@ export {
|
|
|
364
363
|
ButtonTypes,
|
|
365
364
|
CardModifier,
|
|
366
365
|
GlobalAlertTypes,
|
|
367
|
-
GridItemModifiers,
|
|
368
366
|
GridModifiers,
|
|
369
367
|
HeadingTypes,
|
|
370
368
|
HeroBannerModifier,
|