public static function GridStackDefault::breakpoints in GridStack 8.2
Returns breakpoints.
7 calls to GridStackDefault::breakpoints()
- Bootstrap3::create in src/
Plugin/ gridstack/ engine/ Bootstrap3.php - Creates an instance of the plugin.
- Classes::getInternalClasses in src/
Plugin/ gridstack/ stylizer/ Classes.php - Returns the module feature CSS classes, not available at CSS frameworks.
- Form::globalForm in src/
Plugin/ gridstack/ stylizer/ Form.php - FoundationBase::create in src/
Plugin/ gridstack/ engine/ FoundationBase.php - Creates an instance of the plugin.
- GridStackEnginePluginBase::create in src/
GridStackEnginePluginBase.php - Creates an instance of the plugin.
File
- src/
GridStackDefault.php, line 289
Class
- GridStackDefault
- Defines shared plugin default settings for field formatter and Views style.
Namespace
Drupal\gridstackCode
public static function breakpoints() {
return [
'xs' => 'xsmall',
'sm' => 'small',
'md' => 'medium',
'lg' => 'large',
'xl' => 'xlarge',
];
}