ingred-ui 26.1.0 → 27.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/bin/README.md +16 -3
  2. package/bin/codemods/palette-v2.mjs +86 -10
  3. package/dist/components/AdvancedFilter/AdvancedFilter.stories.d.ts +1 -1
  4. package/dist/components/Badge/types.d.ts +13 -13
  5. package/dist/components/Button/Button.d.ts +1 -1
  6. package/dist/components/Button/Button.stories.d.ts +2 -2
  7. package/dist/components/DataTable2/DataTable2.stories.d.ts +4 -4
  8. package/dist/components/DataTable2/types/tableActions.d.ts +3 -2
  9. package/dist/components/Drawer/Drawer.stories.d.ts +1 -1
  10. package/dist/components/FilterComboBox/FilterComboBox.stories.d.ts +10 -9
  11. package/dist/components/FilterInputAbstract/FilterInputAbstract.stories.d.ts +4 -3
  12. package/dist/components/FilterSelectInput/FilterSelectInput.stories.d.ts +6 -6
  13. package/dist/components/FilterTagInput/FilterTagInput.stories.d.ts +5 -5
  14. package/dist/components/FullSizeConfirmModal/FullSizeConfirmModal.stories.d.ts +78 -54
  15. package/dist/components/Menu/Menu.stories.d.ts +26 -18
  16. package/dist/components/MenuList/MenuList.stories.d.ts +26 -18
  17. package/dist/components/Select2/Select2.stories.d.ts +87 -15
  18. package/dist/components/Slider/Slider.stories.d.ts +1 -1
  19. package/dist/components/Snackbar/Snackbar.stories.d.ts +39 -27
  20. package/dist/components/Tag/Tag.stories.d.ts +2 -1
  21. package/dist/components/Toast/Toast.stories.d.ts +52 -36
  22. package/dist/index.es.js +11 -11
  23. package/dist/index.es.js.map +1 -1
  24. package/dist/index.js +111 -111
  25. package/dist/index.js.map +1 -1
  26. package/dist/styles/shadow.d.ts +2 -2
  27. package/package.json +9 -9
package/bin/README.md CHANGED
@@ -41,14 +41,27 @@ npx ingred-ui-codemod palette-v2 ./src
41
41
  | `palette.danger.light` | `palette.danger.lighter` |
42
42
  | `palette.warning.deepDark` | `palette.warning.ultraDark` |
43
43
  | `colors.basic` | `colors.gray` |
44
- | `color="gray"` | `color="neutral"` |
44
+ | `color="gray"` | `color="secondaryDark"`(Button 等) |
45
+
46
+ 後続ステップで **Button / Badge の旧 `color` 文字列**も置換します(`palette-v2` 内の [5/7]〜[7/7])。
47
+
48
+ | 対象(例) | 新 |
49
+ | --- | --- |
50
+ | `color="gray"`(Button) | `color="secondaryDark"` |
51
+ | `color="primaryPale"` | `color="primarySubtle"` |
52
+ | `color="basicLight"` | `color="secondaryLight"` |
53
+ | `color="neutral"`(Button 等) | `color="secondaryDark"` |
54
+ | `<Badge color="secondary"` | `<Badge color="secondaryDark"` |
55
+ | `<Badge color="basic"` | `<Badge color="inverse"` |
56
+
57
+ **注意:** `color="neutral"` の置換は **Typography の `color` や styled-components の CSS 値**にもマッチする可能性があります。置換後は必ず型チェックと差分確認を行ってください。
45
58
 
46
59
  **手動対応が必要なもの:**
47
60
 
48
61
  以下のパターンは自動置換せず、警告のみ表示します。
49
62
 
50
- - `primaryPale` 廃止。`palette.primary` の適切なスロットに置き換えてください。
51
- - `basicDark` — 廃止。`color="neutral"` に置き換えてください。
63
+ - `primaryPale`(palette 等の **パレット参照**)— 廃止。`palette.primary` の適切なスロットに置き換えてください。
64
+ - `basicDark` — 廃止。Button 等は `color="secondaryDark"` に置き換えてください。
52
65
  - `colors.blue[40]` — 廃止。`colors.blue[50]` に置き換えてください。
53
66
 
54
67
  ## オプション
@@ -37,7 +37,7 @@ function findFiles(dir) {
37
37
 
38
38
  const STEPS = [
39
39
  {
40
- label: "[1/6] palette.gray → palette.neutral(段名変更含む)",
40
+ label: "[1/7] palette.gray → palette.neutral(段名変更含む)",
41
41
  replacements: [
42
42
  {
43
43
  pattern: /palette\.gray\.deepDark/g,
@@ -72,7 +72,7 @@ const STEPS = [
72
72
  ],
73
73
  },
74
74
  {
75
- label: "[2/6] colors.basic → colors.gray",
75
+ label: "[2/7] colors.basic → colors.gray",
76
76
  replacements: [
77
77
  {
78
78
  pattern: /colors\.basic/g,
@@ -82,7 +82,7 @@ const STEPS = [
82
82
  ],
83
83
  },
84
84
  {
85
- label: "[3/6] palette.*.main → palette.*.base",
85
+ label: "[3/7] palette.*.main → palette.*.base",
86
86
  replacements: [
87
87
  {
88
88
  pattern: /palette\.primary\.main/g,
@@ -112,7 +112,7 @@ const STEPS = [
112
112
  ],
113
113
  },
114
114
  {
115
- label: "[4/6] 段名の修正(旧色値を維持するための付け替え)",
115
+ label: "[4/7] 段名の修正(旧色値を維持するための付け替え)",
116
116
  replacements: [
117
117
  {
118
118
  pattern: /palette\.primary\.light/g,
@@ -152,17 +152,93 @@ const STEPS = [
152
152
  ],
153
153
  },
154
154
  {
155
- label: "[5/6] Button color prop",
155
+ label: "[5/7] Button color(旧 gray)",
156
156
  replacements: [
157
157
  {
158
158
  pattern: /color="gray"/g,
159
- replacement: 'color="neutral"',
160
- description: 'color="gray" → color="neutral"',
159
+ replacement: 'color="secondaryDark"',
160
+ description: 'color="gray" → color="secondaryDark"',
161
161
  },
162
162
  {
163
163
  pattern: /color='gray'/g,
164
- replacement: "color='neutral'",
165
- description: "color='gray' → color='neutral'",
164
+ replacement: "color='secondaryDark'",
165
+ description: "color='gray' → color='secondaryDark'",
166
+ },
167
+ ],
168
+ },
169
+ {
170
+ label: "[6/7] Button color(primaryPale / basicLight / neutral)",
171
+ replacements: [
172
+ {
173
+ pattern: /color="primaryPale"/g,
174
+ replacement: 'color="primarySubtle"',
175
+ description: 'color="primaryPale" → color="primarySubtle"',
176
+ },
177
+ {
178
+ pattern: /color='primaryPale'/g,
179
+ replacement: "color='primarySubtle'",
180
+ description: "color='primaryPale' → color='primarySubtle'",
181
+ },
182
+ {
183
+ pattern: /color="basicLight"/g,
184
+ replacement: 'color="secondaryLight"',
185
+ description: 'color="basicLight" → color="secondaryLight"',
186
+ },
187
+ {
188
+ pattern: /color='basicLight'/g,
189
+ replacement: "color='secondaryLight'",
190
+ description: "color='basicLight' → color='secondaryLight'",
191
+ },
192
+ {
193
+ pattern: /color="neutral"/g,
194
+ replacement: 'color="secondaryDark"',
195
+ description:
196
+ 'color="neutral" → color="secondaryDark"(Button 等の color プロップ向け。palette.neutral や Typography とは別なので要確認)',
197
+ },
198
+ {
199
+ pattern: /color='neutral'/g,
200
+ replacement: "color='secondaryDark'",
201
+ description: "color='neutral' → color='secondaryDark'",
202
+ },
203
+ {
204
+ pattern: /color: "primaryPale"/g,
205
+ replacement: 'color: "primarySubtle"',
206
+ description: 'color: "primaryPale" → color: "primarySubtle"',
207
+ },
208
+ {
209
+ pattern: /color: "basicLight"/g,
210
+ replacement: 'color: "secondaryLight"',
211
+ description: 'color: "basicLight" → color: "secondaryLight"',
212
+ },
213
+ {
214
+ pattern: /color: "neutral"/g,
215
+ replacement: 'color: "secondaryDark"',
216
+ description: 'color: "neutral" → color: "secondaryDark"',
217
+ },
218
+ ],
219
+ },
220
+ {
221
+ label: "[7/7] Badge color(secondary / basic)",
222
+ replacements: [
223
+ {
224
+ pattern: /<Badge color="secondary"/g,
225
+ replacement: '<Badge color="secondaryDark"',
226
+ description: 'Badge color="secondary" → color="secondaryDark"',
227
+ },
228
+ {
229
+ pattern: /<Badge color='secondary'/g,
230
+ replacement: "<Badge color='secondaryDark'",
231
+ description: "Badge color='secondary' → color='secondaryDark'",
232
+ },
233
+ {
234
+ pattern: /<Badge color="basic"/g,
235
+ replacement: '<Badge color="inverse"',
236
+ description: 'Badge color="basic" → color="inverse"',
237
+ },
238
+ {
239
+ pattern: /<Badge color='basic'/g,
240
+ replacement: "<Badge color='inverse'",
241
+ description: "Badge color='basic' → color='inverse'",
166
242
  },
167
243
  ],
168
244
  },
@@ -177,7 +253,7 @@ const WARNING_PATTERNS = [
177
253
  {
178
254
  pattern: /basicDark/,
179
255
  description:
180
- "basicDark は廃止されました。color=\"neutral\" に置き換えてください。",
256
+ "basicDark は廃止されました。Button 等の color は color=\"secondaryDark\" に置き換えてください。",
181
257
  },
182
258
  {
183
259
  pattern: /blue\[40\]/,
@@ -2,5 +2,5 @@ import type { Meta, StoryObj } from "@storybook/react";
2
2
  import { AdvancedFilter } from "./AdvancedFilter";
3
3
  declare const meta: Meta<typeof AdvancedFilter>;
4
4
  export default meta;
5
- type Story = StoryObj<typeof meta>;
5
+ type Story = StoryObj<typeof AdvancedFilter>;
6
6
  export declare const Default: Story;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { Theme } from "../../themes";
3
- export type BadgeColor = "primary" | "secondary" | "success" | "warning" | "danger" | "basic";
3
+ export type BadgeColor = "primary" | "secondaryDark" | "success" | "warning" | "danger" | "inverse";
4
4
  export type BadgeType = "normal" | "pill" | "signal";
5
5
  export type BadgeSize = "xs" | "small" | "medium";
6
6
  export declare const BADGE_SIZE: {
@@ -41,53 +41,53 @@ export declare const BADGE_SIZE: {
41
41
  export declare const BACKGROUND_COLOR_MAP: {
42
42
  normal: {
43
43
  primary: (theme: Theme) => string;
44
- secondary: (theme: Theme) => string;
44
+ secondaryDark: (theme: Theme) => string;
45
45
  success: (theme: Theme) => string;
46
46
  warning: (theme: Theme) => string;
47
47
  danger: (theme: Theme) => string;
48
- basic: (theme: Theme) => string;
48
+ inverse: (theme: Theme) => string;
49
49
  };
50
50
  pill: {
51
51
  primary: (theme: Theme) => string;
52
- secondary: (theme: Theme) => string;
52
+ secondaryDark: (theme: Theme) => string;
53
53
  success: (theme: Theme) => string;
54
54
  warning: (theme: Theme) => string;
55
55
  danger: (theme: Theme) => string;
56
- basic: (theme: Theme) => string;
56
+ inverse: (theme: Theme) => string;
57
57
  };
58
58
  signal: {
59
59
  primary: (theme: Theme) => string;
60
- secondary: (theme: Theme) => string;
60
+ secondaryDark: (theme: Theme) => string;
61
61
  success: (theme: Theme) => string;
62
62
  warning: (theme: Theme) => string;
63
63
  danger: (theme: Theme) => string;
64
- basic: (theme: Theme) => string;
64
+ inverse: (theme: Theme) => string;
65
65
  };
66
66
  };
67
67
  export declare const TEXT_COLOR_MAP: {
68
68
  normal: {
69
69
  primary: (theme: Theme) => string;
70
- secondary: (theme: Theme) => string;
70
+ secondaryDark: (theme: Theme) => string;
71
71
  success: (theme: Theme) => string;
72
72
  warning: (theme: Theme) => string;
73
73
  danger: (theme: Theme) => string;
74
- basic: (theme: Theme) => string;
74
+ inverse: (theme: Theme) => string;
75
75
  };
76
76
  pill: {
77
77
  primary: (theme: Theme) => string;
78
- secondary: (theme: Theme) => string;
78
+ secondaryDark: (theme: Theme) => string;
79
79
  success: (theme: Theme) => string;
80
80
  warning: (theme: Theme) => string;
81
81
  danger: (theme: Theme) => string;
82
- basic: (theme: Theme) => string;
82
+ inverse: (theme: Theme) => string;
83
83
  };
84
84
  signal: {
85
85
  primary: (theme: Theme) => string;
86
- secondary: (theme: Theme) => string;
86
+ secondaryDark: (theme: Theme) => string;
87
87
  success: (theme: Theme) => string;
88
88
  warning: (theme: Theme) => string;
89
89
  danger: (theme: Theme) => string;
90
- basic: (theme: Theme) => string;
90
+ inverse: (theme: Theme) => string;
91
91
  };
92
92
  };
93
93
  export declare const getBackgroundColor: (key: BadgeColor, theme: Theme, type: BadgeType) => string;
@@ -1,7 +1,7 @@
1
1
  import * as React from "react";
2
2
  import { Theme } from "../../themes";
3
3
  export type ButtonSize = "small" | "medium" | "large";
4
- export type ButtonColor = "primary" | "primaryPale" | "basicLight" | "neutral" | "danger" | "clear";
4
+ export type ButtonColor = "primary" | "primarySubtle" | "secondaryLight" | "secondaryDark" | "danger" | "clear";
5
5
  export type ButtonColorStyle = {
6
6
  normal: {
7
7
  background: string;
@@ -21,8 +21,8 @@ export declare const Primary: StoryObj<ButtonProps>;
21
21
  export declare const BasicLight: StoryObj<ButtonProps>;
22
22
  export declare const Danger: StoryObj<ButtonProps>;
23
23
  export declare const Clear: StoryObj<ButtonProps>;
24
- export declare const BasicDark: StoryObj<ButtonProps>;
25
- export declare const PrimaryPale: StoryObj<ButtonProps>;
24
+ export declare const SecondaryDark: StoryObj<ButtonProps>;
25
+ export declare const PrimarySubtle: StoryObj<ButtonProps>;
26
26
  export declare const Small: StoryObj<ButtonProps>;
27
27
  export declare const Medium: StoryObj<ButtonProps>;
28
28
  export declare const Large: StoryObj<ButtonProps>;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { StoryObj } from "@storybook/react";
3
- import { type TableColumn, type TableAction } from "./index";
3
+ import { type TableColumn, type TableAction, DataTable2 } from "./index";
4
4
  declare const meta: {
5
5
  title: string;
6
6
  component: ({ bordered, currentPage, pageSize, pageSizeOptions, totalCount, columns, onPageChange, onPageSizeChange, onColumnsChange, onCheckedRowsChange, children, tableActions, customTableActionArea, }: {
@@ -66,8 +66,8 @@ export default meta;
66
66
  * </DataTable2>
67
67
  * ```
68
68
  */
69
- export declare const Default: StoryObj<typeof meta>;
70
- export declare const Sample: StoryObj<typeof meta>;
69
+ export declare const Default: StoryObj<typeof DataTable2>;
70
+ export declare const Sample: StoryObj<typeof DataTable2>;
71
71
  /**
72
72
  * 以下のように、セルの loading を true に設定すると、スピナーが表示されます。
73
73
  * ```
@@ -78,4 +78,4 @@ export declare const Sample: StoryObj<typeof meta>;
78
78
  * また、DataTable2 の props について `rowControls` や `extraButtons` を未指定にすると、該当機能のボタンが表示されません。
79
79
  * 「カラム」でフィルターやソートを明示しない場合も、それらの機能は非表示になります。
80
80
  */
81
- export declare const Loading: StoryObj<typeof meta>;
81
+ export declare const Loading: StoryObj<typeof DataTable2>;
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ import type { ButtonColor } from "../../Button/Button";
2
3
  /**
3
4
  * テーブルアクションボタン群の定義。enabledWhenとdisplayInで表示場所を制御:
4
5
  * - enabledWhen: "checked" + displayIn: "toolbar" → デスクトップ時は左側の直接ボタン、モバイル時は「n件を操作」ドロップダウン
@@ -11,7 +12,7 @@ export type TableAction = {
11
12
  label: string;
12
13
  icon?: React.ReactNode;
13
14
  onClick: (selectedRows: string[]) => void;
14
- color?: "danger" | "primary" | "primaryPale" | "basicLight" | "neutral" | "clear";
15
+ color?: ButtonColor;
15
16
  displayIn?: "toolbar" | "dropdown";
16
17
  enabledWhen?: "checked" | "unchecked" | "custom";
17
18
  /** 追加の無効化条件。enabledWhenの基本条件に加えて評価される(customの場合はこの関数の結果のみで決定) */
@@ -28,7 +29,7 @@ export type TableAction = {
28
29
  label: string;
29
30
  icon?: React.ReactNode;
30
31
  onClick: (selectedRows: string[]) => void;
31
- color?: "danger" | "primary" | "primaryPale" | "basicLight" | "neutral" | "clear";
32
+ color?: ButtonColor;
32
33
  enabledWhen?: "checked" | "unchecked" | "custom";
33
34
  /** 追加の無効化条件。enabledWhenの基本条件に加えて評価される(customの場合はこの関数の結果のみで決定) */
34
35
  disabled?: (checkedRows: string[]) => boolean;
@@ -2,7 +2,7 @@ import type { Meta, StoryObj } from "@storybook/react";
2
2
  import Drawer from "./Drawer";
3
3
  declare const meta: Meta<typeof Drawer>;
4
4
  export default meta;
5
- type Story = StoryObj<typeof meta>;
5
+ type Story = StoryObj<typeof Drawer>;
6
6
  export declare const Default: Story;
7
7
  export declare const Responsive: Story;
8
8
  export declare const WithStickyHeaderFooter: Story;
@@ -1,5 +1,6 @@
1
1
  import React from "react";
2
2
  import { StoryObj } from "@storybook/react";
3
+ import { FilterComboBox } from "./index";
3
4
  declare const meta: {
4
5
  title: string;
5
6
  component: ({ values, options, selectedIndex, selectOptions, onChange, onSelectChange, size, variant, tagVariant, searchPlaceholder, noResultsMessage, disabled, applyButtonText, cancelButtonText, error, placement, middleware, }: {
@@ -41,7 +42,7 @@ declare const meta: {
41
42
  argTypes: {
42
43
  size: {
43
44
  control: {
44
- type: string;
45
+ type: "radio";
45
46
  };
46
47
  options: string[];
47
48
  description: string;
@@ -56,7 +57,7 @@ declare const meta: {
56
57
  };
57
58
  variant: {
58
59
  control: {
59
- type: string;
60
+ type: "radio";
60
61
  };
61
62
  options: string[];
62
63
  description: string;
@@ -71,7 +72,7 @@ declare const meta: {
71
72
  };
72
73
  tagVariant: {
73
74
  control: {
74
- type: string;
75
+ type: "radio";
75
76
  };
76
77
  options: string[];
77
78
  description: string;
@@ -105,7 +106,7 @@ export default meta;
105
106
  * 例:
106
107
  * options の項目が `[ "イルカ", ["パンダ", "ぱんだ", "熊猫"], "ライオン" ]` の場合、ユーザー入力が "ぱんだ"、"パン"、"猫" と入力したときにどの場合にも「パンダ」がフィルタリングされます。
107
108
  */
108
- export declare const Default: StoryObj<typeof meta>;
109
+ export declare const Default: StoryObj<typeof FilterComboBox>;
109
110
  /**
110
111
  * サイズバリエーション
111
112
  *
@@ -113,7 +114,7 @@ export declare const Default: StoryObj<typeof meta>;
113
114
  * - medium: 高さ32px(デフォルト)
114
115
  * - large: 高さ40px
115
116
  */
116
- export declare const Sizes: StoryObj<typeof meta>;
117
+ export declare const Sizes: StoryObj<typeof FilterComboBox>;
117
118
  /**
118
119
  * カラーバリエーション
119
120
  *
@@ -128,18 +129,18 @@ export declare const Sizes: StoryObj<typeof meta>;
128
129
  * コンポーネントのvariantに応じてタグのvariantが自動的に切り替わります。
129
130
  * variantが"light"の場合はタグは"dark"に、variantが"dark"の場合はタグは"light"になります。
130
131
  */
131
- export declare const Variants: StoryObj<typeof meta>;
132
+ export declare const Variants: StoryObj<typeof FilterComboBox>;
132
133
  /**
133
134
  * 無効状態のサンプル
134
135
  */
135
- export declare const Disabled: StoryObj<typeof meta>;
136
+ export declare const Disabled: StoryObj<typeof FilterComboBox>;
136
137
  /**
137
138
  * エラー状態
138
139
  */
139
- export declare const Error: StoryObj<typeof meta>;
140
+ export declare const Error: StoryObj<typeof FilterComboBox>;
140
141
  /**
141
142
  * Middleware使用例
142
143
  *
143
144
  * Floating UIのmiddlewareを使用してメニューの位置を細かく制御できます。
144
145
  */
145
- export declare const WithCustomMiddleware: StoryObj<typeof meta>;
146
+ export declare const WithCustomMiddleware: StoryObj<typeof FilterComboBox>;
@@ -1,5 +1,6 @@
1
1
  import React from "react";
2
2
  import { StoryObj } from "@storybook/react";
3
+ import { FilterInputAbstract } from "./FilterInputAbstract";
3
4
  declare const meta: {
4
5
  title: string;
5
6
  component: ({ selectedIndex, selectOptions, onSelectChange, children, size, variant, disabled, error, isOpen, }: {
@@ -19,7 +20,7 @@ declare const meta: {
19
20
  argTypes: {
20
21
  size: {
21
22
  control: {
22
- type: string;
23
+ type: "select";
23
24
  };
24
25
  options: string[];
25
26
  description: string;
@@ -39,8 +40,8 @@ export default meta;
39
40
  * Internal use only!
40
41
  * このコンポーネントは内部利用専用です。プロダクトには利用しないでください。
41
42
  */
42
- export declare const Default: StoryObj<typeof meta>;
43
+ export declare const Default: StoryObj<typeof FilterInputAbstract>;
43
44
  /**
44
45
  * サイズバリエーション
45
46
  */
46
- export declare const Sizes: StoryObj<typeof meta>;
47
+ export declare const Sizes: StoryObj<typeof FilterInputAbstract>;
@@ -8,7 +8,7 @@ export default meta;
8
8
  *
9
9
  * 自動で横 100% に広がります。必要に応じて、親要素の幅を指定してください。
10
10
  */
11
- export declare const Default: StoryObj<typeof meta>;
11
+ export declare const Default: StoryObj<typeof FilterSelectInput>;
12
12
  /**
13
13
  * サイズバリエーション
14
14
  *
@@ -16,16 +16,16 @@ export declare const Default: StoryObj<typeof meta>;
16
16
  * - medium: 高さ32px(デフォルト)
17
17
  * - large: 高さ40px
18
18
  */
19
- export declare const Sizes: StoryObj<typeof meta>;
20
- export declare const Variants: StoryObj<typeof meta>;
19
+ export declare const Sizes: StoryObj<typeof FilterSelectInput>;
20
+ export declare const Variants: StoryObj<typeof FilterSelectInput>;
21
21
  /**
22
22
  * 無効化状態のサンプル
23
23
  */
24
- export declare const Disabled: StoryObj<typeof meta>;
25
- export declare const Error: StoryObj<typeof meta>;
24
+ export declare const Disabled: StoryObj<typeof FilterSelectInput>;
25
+ export declare const Error: StoryObj<typeof FilterSelectInput>;
26
26
  /**
27
27
  * Middleware使用例
28
28
  *
29
29
  * Floating UIのmiddlewareを使用してメニューの位置を細かく制御できます。
30
30
  */
31
- export declare const WithCustomMiddleware: StoryObj<typeof meta>;
31
+ export declare const WithCustomMiddleware: StoryObj<typeof FilterSelectInput>;
@@ -40,8 +40,8 @@ export default meta;
40
40
  * ```
41
41
  *
42
42
  */
43
- export declare const Default: StoryObj<typeof meta>;
44
- export declare const Sizes: StoryObj<typeof meta>;
45
- export declare const Variants: StoryObj<typeof meta>;
46
- export declare const Disabled: StoryObj<typeof meta>;
47
- export declare const Error: StoryObj<typeof meta>;
43
+ export declare const Default: StoryObj<typeof FilterTagInput>;
44
+ export declare const Sizes: StoryObj<typeof FilterTagInput>;
45
+ export declare const Variants: StoryObj<typeof FilterTagInput>;
46
+ export declare const Disabled: StoryObj<typeof FilterTagInput>;
47
+ export declare const Error: StoryObj<typeof FilterTagInput>;