Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit ca13329

Browse files
authored
fix(chips): Upstream MDC .ts export (#2056)
1 parent fdc5529 commit ca13329

File tree

8 files changed

+1370
-1071
lines changed

8 files changed

+1370
-1071
lines changed

demos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@angular/platform-browser": "^9.0.0",
1818
"@angular/platform-browser-dynamic": "^9.0.0",
1919
"@angular/router": "^9.0.0",
20-
"material-components-web": "5.0.0-canary.b4727e43a.0",
20+
"material-components-web": "5.0.0-canary.91d9d5a65.0",
2121
"rxjs": "~6.5.3",
2222
"tslib": "^1.10.0",
2323
"zone.js": "~0.10.2"

demos/yarn.lock

Lines changed: 640 additions & 523 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@angular/forms": "^9.0.0",
3333
"@angular/platform-browser": "^9.0.0",
3434
"core-js": "2.6.9",
35-
"material-components-web": "5.0.0-canary.b4727e43a.0",
35+
"material-components-web": "5.0.0-canary.91d9d5a65.0",
3636
"rxjs": "^6.5.3",
3737
"tsickle": "0.38.0",
3838
"tslib": "1.10.0",

packages/chips/chip-set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {
3131
MDC_CHIPSET_PARENT_COMPONENT
3232
} from './chip';
3333

34-
import {MDCChipSetFoundation, MDCChipSetAdapter} from '@material/chips/chip-set';
34+
import {MDCChipSetFoundation, MDCChipSetAdapter} from '@material/chips';
3535

3636
export class MdcChipSetChange {
3737
constructor(

packages/chips/chip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import {MdcChipText} from './chip-directives';
4949
import {
5050
MDCChipAdapter,
5151
MDCChipFoundation
52-
} from '@material/chips/chip';
52+
} from '@material/chips';
5353

5454
/**
5555
* Injection token used to provide the parent MdcChipSet component to MdcChip.

packages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"private": false,
2424
"dependencies": {
2525
"@angular-mdc/theme": "0.0.0-PLACEHOLDER",
26-
"material-components-web": "5.0.0-canary.ab5f49a2c.0",
26+
"material-components-web": "5.0.0-canary.91d9d5a65.0",
2727
"@angular/cdk": "^9.0.0"
2828
},
2929
"peerDependencies": {

tools/package-tools/rollup-globals.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export const rollupGlobals = {
2929
'@material/auto-init': 'mdc.autoInit',
3030
'@material/base': 'mdc.base',
3131
'@material/checkbox': 'mdc.checkbox',
32-
'@material/chips/chip': 'mdc.chip',
33-
'@material/chips/chip-set': 'mdc.chipSet',
32+
'@material/chips': 'mdc.chips',
3433
'@material/dom': 'mdc.dom',
3534
'@material/dom/ponyfill': 'mdc.dom.ponyfill',
3635
'@material/dialog': 'mdc.dialog',

yarn.lock

Lines changed: 724 additions & 541 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)