mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
refactor(types): separate script to generate types
This commit is contained in:
parent
010fe986e9
commit
c8b0b008c7
4 changed files with 1277 additions and 1248 deletions
|
@ -36,19 +36,34 @@
|
|||
* @typedef {ColumnSize | ColumnSizeDescriptor} ColumnBreakpoint
|
||||
*/
|
||||
|
||||
/** @type {ColumnBreakpoint} [sm] */
|
||||
/**
|
||||
* Set the small breakpoint
|
||||
* @type {ColumnBreakpoint} [sm]
|
||||
*/
|
||||
export let sm = undefined;
|
||||
|
||||
/** @type {ColumnBreakpoint} [md] */
|
||||
/**
|
||||
* Set the medium breakpoint
|
||||
* @type {ColumnBreakpoint} [md]
|
||||
*/
|
||||
export let md = undefined;
|
||||
|
||||
/** @type {ColumnBreakpoint} [lg] */
|
||||
/**
|
||||
* Set the large breakpoint
|
||||
* @type {ColumnBreakpoint} [lg]
|
||||
*/
|
||||
export let lg = undefined;
|
||||
|
||||
/** @type {ColumnBreakpoint} [xlg] */
|
||||
/**
|
||||
* Set the extra large breakpoint
|
||||
* @type {ColumnBreakpoint} [xlg]
|
||||
*/
|
||||
export let xlg = undefined;
|
||||
|
||||
/** @type {ColumnBreakpoint} [max] */
|
||||
/**
|
||||
* Set the maximum breakpoint
|
||||
* @type {ColumnBreakpoint} [max]
|
||||
*/
|
||||
export let max = undefined;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue