mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
* feat(code-snippet): add copy functionality - docs: add custom feedback copy text example * feat(tile): support disabled state for SelectableTile, RadioTile Closes #539 * build(rollup): add clipboard-copy to globals * feat(copy-button): add copy functionality * feat(content-switcher): deprecate the light prop - docs: remove the light variant example * fix(toolbar-search): remove outer div * feat(search): add searchClass prop * fix(composed-modal): set hasScrollingContent class on ModalBody * docs(data-table): add expandable size examples * feat(tooltip): add TooltipFooter component * fix(time-picker): correctly display invalidText * feat(breadcrumb): support overflow menu * feat(multi-select): export inputRef prop * chore(deps-dev): upgrade carbon-components to v10.32.0 * feat(form): add noMargin prop to FormGroup * docs(tooltip): document TooltipFooter * feat(context-menu): support danger kind for ContextMenuOption * feat(data-table): support rendering empty table header in skeleton * refactor(types): use shorter import path in DataTableSkeleton * feat(data-table): allow sorting to be disabled for a specific header * docs(data-table): update example to desort the Protocol header As an example, it makes more sense because all the values ("http") are the same. * fix(context-menu): set initial y offset of context menu based on window height #577 * fix(context-menu): render submenu based on viewport constraints #577
38 lines
912 B
JSON
38 lines
912 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "run-p dev:*",
|
|
"dev:routify": "NODE_ENV=development routify run",
|
|
"dev:svite": "svite",
|
|
"build": "run-s build:*",
|
|
"build:routify": "routify run -b",
|
|
"build:svite": "svite build"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltech/routify": "^1.9.9",
|
|
"autoprefixer": "^10.2.3",
|
|
"carbon-components": "10.32.0",
|
|
"carbon-components-svelte": "../",
|
|
"mdsvex": "^0.8.8",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.2.4",
|
|
"prettier": "^2.1.2",
|
|
"prettier-plugin-svelte": "^1.4.1",
|
|
"prism-svelte": "^0.4.7",
|
|
"prismjs": "^1.21.0",
|
|
"remark-slug": "^6.0.0",
|
|
"sass": "^1.32.5",
|
|
"svelte": "3.29.0",
|
|
"svelte-hmr": "0.11.1",
|
|
"svelte-preprocess": "^4.3.2",
|
|
"svite": "0.7.2"
|
|
},
|
|
"routify": {
|
|
"routifyDir": ".routify",
|
|
"dynamicImports": true,
|
|
"extensions": [
|
|
"svelte",
|
|
"svx"
|
|
]
|
|
}
|
|
}
|