@thefreshop/tb 1.0.28 → 1.0.29

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.
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
  import { bottomType } from "../../types";
3
- declare const Bottom: ({ bottom }: {
3
+ declare const Bottom: ({ bottom, frameStyle }: {
4
4
  bottom: bottomType;
5
+ frameStyle?: any;
5
6
  }) => React.JSX.Element;
6
7
  export default Bottom;
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
- import { navType } from "../../types";
3
- declare const Tabs: ({ nav: { menuSet, openIcon, closeIcon } }: {
2
+ import { FrameStyleType, navType } from "../../types";
3
+ declare const Tabs: ({ nav: { menuSet, openIcon, closeIcon }, frameStyle }: {
4
4
  nav: navType;
5
+ frameStyle?: FrameStyleType;
5
6
  }) => React.JSX.Element;
6
7
  export default Tabs;
@@ -22,6 +22,14 @@ export type FrameStyleType = {
22
22
  nav_text?: React.CSSProperties;
23
23
  nav_openIcon?: React.CSSProperties;
24
24
  sub_item?: React.CSSProperties;
25
+ bottom_item?: React.CSSProperties;
26
+ tabFrame?: React.CSSProperties;
27
+ tab_item?: React.CSSProperties;
28
+ tab_item_text?: React.CSSProperties;
29
+ tab_item_button?: React.CSSProperties;
30
+ tab_x_button?: React.CSSProperties;
31
+ tab_normal?: React.CSSProperties;
32
+ tab_select?: React.CSSProperties;
25
33
  };
26
34
  export type TbFrameType = {
27
35
  admin_account_id: number;
package/dist/index.d.ts CHANGED
@@ -192,6 +192,14 @@ type FrameStyleType = {
192
192
  nav_text?: React.CSSProperties;
193
193
  nav_openIcon?: React.CSSProperties;
194
194
  sub_item?: React.CSSProperties;
195
+ bottom_item?: React.CSSProperties;
196
+ tabFrame?: React.CSSProperties;
197
+ tab_item?: React.CSSProperties;
198
+ tab_item_text?: React.CSSProperties;
199
+ tab_item_button?: React.CSSProperties;
200
+ tab_x_button?: React.CSSProperties;
201
+ tab_normal?: React.CSSProperties;
202
+ tab_select?: React.CSSProperties;
195
203
  };
196
204
  type TbFrameType = {
197
205
  admin_account_id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thefreshop/tb",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "tb framework",
5
5
  "license": "MIT",
6
6
  "repository": {