feat: Initial AcfLayout field
This commit is contained in:
18
wp-content/themes/headless/app/components/acf/AcfLayout.gql
Normal file
18
wp-content/themes/headless/app/components/acf/AcfLayout.gql
Normal file
@@ -0,0 +1,18 @@
|
||||
fragment LayoutColor on GroupLayoutColor_Fields {
|
||||
color @nullToUndefined @enum(values: ["default", "muted", "inverted", "primary"])
|
||||
}
|
||||
|
||||
fragment LayoutContainer on GroupLayoutContainer_Fields {
|
||||
container @nullToUndefined @enum(values: ["default", "xl", "lg", "md", "sm", "fluid", "none"])
|
||||
}
|
||||
|
||||
fragment LayoutPadding on GroupLayoutPadding_Fields {
|
||||
verticalPadding @nullToUndefined @enum(values: ["none", "sm", "md", "lg"])
|
||||
}
|
||||
|
||||
fragment AcfLayout on GroupAbstractBuilderSectionsLayoutSettings_Fields {
|
||||
__typename
|
||||
...LayoutColor
|
||||
...LayoutContainer
|
||||
...LayoutPadding
|
||||
}
|
||||
Reference in New Issue
Block a user