@cloudtower/eagle 0.29.2 → 0.29.4-dry

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudtower/eagle",
3
- "version": "0.29.2",
3
+ "version": "0.29.4-dry",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -27,8 +27,8 @@
27
27
  "sync:color": "node tools/fetch-figma-color.js"
28
28
  },
29
29
  "dependencies": {
30
- "@cloudtower/icons-react": "0.29.2",
31
- "@cloudtower/parrot": "0.29.2",
30
+ "@cloudtower/icons-react": "0.29.4-dry",
31
+ "@cloudtower/parrot": "0.29.4-dry",
32
32
  "@cloudtower/rc-notification": "^4.6.1",
33
33
  "@linaria/core": "^4.2.2",
34
34
  "@linaria/react": "^4.3.0",
@@ -112,5 +112,5 @@
112
112
  "vite": "^4.5.1",
113
113
  "vitest": "^0.24.1"
114
114
  },
115
- "gitHead": "c67a42c3ca5697e86610d7131aa1458bf6eddb3f"
115
+ "gitHead": "2af581f5613ac05d6e82b65413520becf0e2b369"
116
116
  }
@@ -1,23 +0,0 @@
1
- import Button from "../../../src/core/Button";
2
- import { Meta, StoryObj } from "@storybook/react";
3
- import React from "react";
4
- declare const Demo: (props: {
5
- name?: string;
6
- }) => React.JSX.Element;
7
- /**
8
- *
9
- * KitStoreProvider 提供 modal store 环境,并且相互隔离。
10
- *
11
- * ModalStack 需要放置于 KitStoreProvider 的子层级中。
12
- *
13
- * ModalStack 会向上查找 KitStoreContext, 如果未查找到,会使用 eagle 提供的默认 store。
14
- *
15
- * usePushModal,usePopModal,useCloseModal 与 ModalStack 同理。
16
- */
17
- declare const meta: Meta<typeof Demo>;
18
- export default meta;
19
- type Story = StoryObj<typeof Button>;
20
- export declare const WithKitStoreProviderPrimary: Story;
21
- export declare const WithKitStoreProviderSecondary: Story;
22
- export declare const WithoutKitStoreProviderPrimary: Story;
23
- export declare const WithoutKitStoreProviderSecondary: Story;