@fairys/taro-tools-react 1.0.14 → 1.0.15

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.
@@ -4,7 +4,7 @@ import clsx from "clsx";
4
4
  import { useMemo } from "react";
5
5
  const FairysTaroMainPage = (props)=>{
6
6
  const { className: itemClassName, children, ...rest } = props;
7
- const cls = useMemo(()=>clsx('fairys_taro-ui-main-page fairystaro__text-red-100 fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto', itemClassName), [
7
+ const cls = useMemo(()=>clsx('fairys_taro-ui-main-page fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto', itemClassName), [
8
8
  itemClassName
9
9
  ]);
10
10
  return /*#__PURE__*/ jsx(View, {
@@ -189,11 +189,6 @@
189
189
  color: red;
190
190
  }
191
191
 
192
- .fairystaro__text-red-100 {
193
- --un-text-opacity: 1;
194
- color: rgb(254 226 226 / var(--un-text-opacity));
195
- }
196
-
197
192
  .fairystaro__font-bold {
198
193
  font-weight: 700;
199
194
  }
@@ -45,7 +45,7 @@ var external_clsx_default = /*#__PURE__*/ __webpack_require__.n(external_clsx_na
45
45
  const external_react_namespaceObject = require("react");
46
46
  const FairysTaroMainPage = (props)=>{
47
47
  const { className: itemClassName, children, ...rest } = props;
48
- const cls = (0, external_react_namespaceObject.useMemo)(()=>external_clsx_default()('fairys_taro-ui-main-page fairystaro__text-red-100 fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto', itemClassName), [
48
+ const cls = (0, external_react_namespaceObject.useMemo)(()=>external_clsx_default()('fairys_taro-ui-main-page fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto', itemClassName), [
49
49
  itemClassName
50
50
  ]);
51
51
  return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(components_namespaceObject.View, {
@@ -6,7 +6,7 @@ var __webpack_modules__ = {
6
6
  "./global.data.instance": function(module) {
7
7
  module.exports = require("./global.data.instance.js");
8
8
  },
9
- "context/global.setting.data.instance": function(module) {
9
+ "./global.setting.data.instance": function(module) {
10
10
  module.exports = require("./global.setting.data.instance.js");
11
11
  },
12
12
  "./page.data.instance": function(module) {
@@ -83,7 +83,7 @@ var __webpack_exports__ = {};
83
83
  return _auth_data_instance__WEBPACK_IMPORTED_MODULE_3__[key];
84
84
  }).bind(0, __WEBPACK_IMPORT_KEY__);
85
85
  __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
86
- var _global_setting_data_instance__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("context/global.setting.data.instance");
86
+ var _global_setting_data_instance__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./global.setting.data.instance");
87
87
  var __WEBPACK_REEXPORT_OBJECT__ = {};
88
88
  for(var __WEBPACK_IMPORT_KEY__ in _global_setting_data_instance__WEBPACK_IMPORTED_MODULE_4__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
89
89
  return _global_setting_data_instance__WEBPACK_IMPORTED_MODULE_4__[key];
@@ -189,11 +189,6 @@
189
189
  color: red;
190
190
  }
191
191
 
192
- .fairystaro__text-red-100 {
193
- --un-text-opacity: 1;
194
- color: rgb(254 226 226 / var(--un-text-opacity));
195
- }
196
-
197
192
  .fairystaro__font-bold {
198
193
  font-weight: 700;
199
194
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "SunLxy <1011771396@qq.com>",
4
4
  "description": "框架组件库",
5
5
  "homepage": "https://github.com/autumn-fairy-tales/fairys-taro-react",
6
- "version": "1.0.14",
6
+ "version": "1.0.15",
7
7
  "main": "esm/index.js",
8
8
  "types": "esm/index.d.ts",
9
9
  "module": "esm/index.js",
@@ -10,7 +10,7 @@ export const FairysTaroMainPage = (props: FairysTaroMainPageProps) => {
10
10
  const cls = useMemo(
11
11
  () =>
12
12
  clsx(
13
- 'fairys_taro-ui-main-page fairystaro__text-red-100 fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto',
13
+ 'fairys_taro-ui-main-page fairystaro__box-border fairystaro__w-full fairystaro__h-full fairystaro__flex fairystaro__flex-col fairystaro__overflow-auto',
14
14
  itemClassName,
15
15
  ),
16
16
  [itemClassName],