@team_yumi/ramen 0.4.0-next.20231205-faf85e5-1c376b6160cfa2745ae992f15d5d65f8 → 0.4.0-next.20231212-3c46c0e-13ac97040b546197bbc724b38edd52dc
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/components/core/{xalert → x-alert}/root.d.ts +15 -0
- package/index.core.d.ts +1 -1
- package/index.css +46 -39
- package/index.js +1 -1
- package/index.mobile.d.ts +1 -1
- package/index.web.d.ts +1 -1
- package/models/Collections/IAlertType.d.ts +1 -1
- package/models/Collections/IIconColor.d.ts +1 -1
- package/package.json +1 -1
- /package/components/core/{xalert → x-alert}/index.d.ts +0 -0
package/index.mobile.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ declare const _default: {
|
|
|
99
99
|
XCheckbox: import("react").FC<import("./components/core/xcheckbox/root").IProps>;
|
|
100
100
|
XRadioButton: import("react").FC<import("./components/core/x-radio-button/root").IProps>;
|
|
101
101
|
XAvatar: import("react").FC<import("./components/core/xavatar/root").IProps>;
|
|
102
|
-
XAlert: import("react").FC<import("./components/core/
|
|
102
|
+
XAlert: import("react").FC<import("./components/core/x-alert/root").IProps>;
|
|
103
103
|
XTextArea: import("react").FC<import("./components/core/x-text-area/root").IProps>;
|
|
104
104
|
XFormItem: import("react").FC<import("./components/core/xform-item/root").IProps>;
|
|
105
105
|
XList: typeof import("./components/core/xlist/root").default;
|
package/index.web.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ declare const _default: {
|
|
|
86
86
|
XCheckbox: import("react").FC<import("./components/core/xcheckbox/root").IProps>;
|
|
87
87
|
XRadioButton: import("react").FC<import("./components/core/x-radio-button/root").IProps>;
|
|
88
88
|
XAvatar: import("react").FC<import("./components/core/xavatar/root").IProps>;
|
|
89
|
-
XAlert: import("react").FC<import("./components/core/
|
|
89
|
+
XAlert: import("react").FC<import("./components/core/x-alert/root").IProps>;
|
|
90
90
|
XTextArea: import("react").FC<import("./components/core/x-text-area/root").IProps>;
|
|
91
91
|
XFormItem: import("react").FC<import("./components/core/xform-item/root").IProps>;
|
|
92
92
|
XList: typeof import("./components/core/xlist/root").default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IAlertType: readonly ["
|
|
1
|
+
export declare const IAlertType: readonly ["success", "success-neutral", "info", "info-neutral", "warning", "warning-neutral", "error", "error-neutral"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IIconColor: readonly ["black", "gray", "disabled", "green", "sky-blue", "orange", "red", "purple", "pink", "green-check", "red-refuse", "yellow", "turquoise"];
|
|
1
|
+
export declare const IIconColor: readonly ["black", "gray", "disabled", "green", "sky-blue", "orange", "red", "purple", "pink", "green-check", "red-refuse", "yellow", "turquoise", "info-blue", "error-red", "success-green", "warning-orange"];
|
package/package.json
CHANGED
|
File without changes
|