-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Accordion", | ||
"description": "This element renders content in an accordion.", | ||
"type": "object", | ||
"tag": "pfe-accordion", | ||
"class": "pfe-accordion", | ||
"category": "container", | ||
"properties": { | ||
"slots": { | ||
"title": "Slots", | ||
"description": "Definition of the supported slots", | ||
"type": "object", | ||
"properties": { | ||
"default": { | ||
"title": "Default", | ||
"type": "array", | ||
"namedSlot": false, | ||
"items": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "pfe-accordion-header" | ||
}, | ||
{ | ||
"$ref": "pfe-accordion-panel" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"attributes": { | ||
"title": "Attributes", | ||
"type": "object", | ||
"properties": {} | ||
} | ||
}, | ||
"required": ["slots", "attributes"], | ||
"additionalProperties": false | ||
} |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Autocomplete", | ||
"description": "Autocomplete provides options in a dropdown list as user types in an input box by showing result from an api call.", | ||
"type": "object", | ||
"tag": "pfe-autocomplete", | ||
"class": "pfe-autocomplete", | ||
"category": "content", | ||
"properties": { | ||
"slots": { | ||
"title": "Slots", | ||
"description": "Definition of the supported slots", | ||
"type": "object", | ||
"properties": { | ||
"content": { | ||
"title": "Content", | ||
"type": "array", | ||
"namedSlot": false, | ||
"items": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "input" | ||
} | ||
] | ||
}, | ||
"required": true | ||
} | ||
} | ||
}, | ||
"attributes": { | ||
"title": "Attributes", | ||
"type": "object", | ||
"properties": { | ||
"debounce_timer": { | ||
"title": "Debounce", | ||
"description": "The amount of time that should pass before the next API call is made", | ||
"type": "string", | ||
"prefixed": false | ||
}, | ||
"init_value": { | ||
"title": "Initial value", | ||
"description": "An initial value to show in the input field", | ||
"type": "string", | ||
"prefixed": false | ||
}, | ||
"is_disabled": { | ||
"title": "Is disabled", | ||
"description": "Disable the input", | ||
"type": "boolean", | ||
"prefixed": false | ||
} | ||
} | ||
} | ||
}, | ||
"required": ["slots", "attributes"], | ||
"additionalProperties": false | ||
} |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.