From c77618fd84d84ac9199e784812f82702d4980393 Mon Sep 17 00:00:00 2001 From: vdegenne Date: Tue, 24 Oct 2023 17:01:02 +0200 Subject: [PATCH 1/4] chore(all): add chip-set to all.js file --- all.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/all.ts b/all.ts index 46df0c2c5..a518b3cb3 100644 --- a/all.ts +++ b/all.ts @@ -19,6 +19,7 @@ import './button/filled-tonal-button.js'; import './button/outlined-button.js'; import './button/text-button.js'; import './checkbox/checkbox.js'; +import './chips/chip-set.js'; import './chips/assist-chip.js'; import './chips/filter-chip.js'; import './chips/input-chip.js'; @@ -66,6 +67,7 @@ export * from './button/filled-tonal-button.js'; export * from './button/outlined-button.js'; export * from './button/text-button.js'; export * from './checkbox/checkbox.js'; +export * from './chips/chip-set.js'; export * from './chips/assist-chip.js'; export * from './chips/filter-chip.js'; export * from './chips/input-chip.js'; From 02867fd44314225010c6ec4b5f32d0f77bdadb37 Mon Sep 17 00:00:00 2001 From: vdegenne Date: Tue, 24 Oct 2023 20:43:23 +0200 Subject: [PATCH 2/4] chore(all): add chip-set to common.js --- common.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.ts b/common.ts index 0fba6c1d7..f0c8ac5ce 100644 --- a/common.ts +++ b/common.ts @@ -19,6 +19,7 @@ import './button/filled-button.js'; import './button/outlined-button.js'; import './button/text-button.js'; import './checkbox/checkbox.js'; +import './chips/chip-set.js'; import './chips/assist-chip.js'; import './chips/filter-chip.js'; import './dialog/dialog.js'; @@ -46,6 +47,7 @@ export * from './button/filled-button.js'; export * from './button/outlined-button.js'; export * from './button/text-button.js'; export * from './checkbox/checkbox.js'; +export * from './chips/chip-set.js'; export * from './chips/assist-chip.js'; export * from './chips/filter-chip.js'; export * from './dialog/dialog.js'; From 380d0092e65b048b904a7c9edeb5aa00b444159a Mon Sep 17 00:00:00 2001 From: Valentin Degenne Date: Wed, 25 Oct 2023 09:06:26 +0200 Subject: [PATCH 3/4] sort all.ts alphabetically --- all.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/all.ts b/all.ts index a518b3cb3..617e41970 100644 --- a/all.ts +++ b/all.ts @@ -19,8 +19,8 @@ import './button/filled-tonal-button.js'; import './button/outlined-button.js'; import './button/text-button.js'; import './checkbox/checkbox.js'; -import './chips/chip-set.js'; import './chips/assist-chip.js'; +import './chips/chip-set.js'; import './chips/filter-chip.js'; import './chips/input-chip.js'; import './chips/suggestion-chip.js'; @@ -67,8 +67,8 @@ export * from './button/filled-tonal-button.js'; export * from './button/outlined-button.js'; export * from './button/text-button.js'; export * from './checkbox/checkbox.js'; -export * from './chips/chip-set.js'; export * from './chips/assist-chip.js'; +export * from './chips/chip-set.js'; export * from './chips/filter-chip.js'; export * from './chips/input-chip.js'; export * from './chips/suggestion-chip.js'; From f643991abff0d7c3d651ecf443aec7dba87c7133 Mon Sep 17 00:00:00 2001 From: Valentin Degenne Date: Wed, 25 Oct 2023 09:07:01 +0200 Subject: [PATCH 4/4] sort common.ts alphabetically --- common.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.ts b/common.ts index f0c8ac5ce..8039b8fb2 100644 --- a/common.ts +++ b/common.ts @@ -19,8 +19,8 @@ import './button/filled-button.js'; import './button/outlined-button.js'; import './button/text-button.js'; import './checkbox/checkbox.js'; -import './chips/chip-set.js'; import './chips/assist-chip.js'; +import './chips/chip-set.js'; import './chips/filter-chip.js'; import './dialog/dialog.js'; import './icon/icon.js'; @@ -47,8 +47,8 @@ export * from './button/filled-button.js'; export * from './button/outlined-button.js'; export * from './button/text-button.js'; export * from './checkbox/checkbox.js'; -export * from './chips/chip-set.js'; export * from './chips/assist-chip.js'; +export * from './chips/chip-set.js'; export * from './chips/filter-chip.js'; export * from './dialog/dialog.js'; export * from './icon/icon.js';