@map2usdnbhd/md_components 1.0.49 → 1.0.51
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/dist/{allPaths-CdhEA0up.js → allPaths-DxkcHbvd.js} +1 -1
- package/dist/{allPathsLoader-zinvwsj2.js → allPathsLoader-CS5mJvrc.js} +2 -2
- package/dist/components/Buttons/MdStaticBtnIcon/MdStaticBtnIconInterface.d.ts +3 -2
- package/dist/components/Card/MdStaticCardColorHeader/MdStaticCardColorHeader.d.ts +3 -0
- package/dist/components/Checkbox/MdStaticCheckbox1/MdStaticCheckbox1Interface.d.ts +2 -2
- package/dist/components/FormInputs/EmailInput/mdStaticEmailField/mdStaticEmailFieldInterface.d.ts +2 -1
- package/dist/components/FormInputs/FontType/MdStaticFontType/MdStaticFontTypeInterface.d.ts +2 -1
- package/dist/components/FormInputs/TextInput/MdStaticTextField/MdStaticTextFieldInterface.d.ts +8 -2
- package/dist/components/Layout/MdStaticFormLayout/MdStaticFormLayoutInterface.d.ts +0 -2
- package/dist/components/SignPost/MdSignPostOpened/MdSignPostOpened.d.ts +3 -0
- package/dist/components/SignPost/MdSignPostOpened/MdSignPostOpenedInterface.d.ts +8 -0
- package/dist/components/SignPost/MdStaticSignPostInitial/MdStaticSignPostInitial.d.ts +1 -1
- package/dist/{index-CGwWjFkp.js → index-Ca30mhGi.js} +6815 -6346
- package/dist/md-component.js +1 -1
- package/dist/md-component.umd.cjs +29 -29
- package/dist/{splitPathsBySizeLoader-CyhdXl4d.js → splitPathsBySizeLoader-DAMStkKf.js} +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { I as n } from "./index-BcyZRf8d.js";
|
|
2
2
|
import { I as e } from "./index-CPmyzV1b.js";
|
|
3
|
-
import { p as r, I as s } from "./index-
|
|
3
|
+
import { p as r, I as s } from "./index-Ca30mhGi.js";
|
|
4
4
|
function I(o, t) {
|
|
5
5
|
var a = r(o);
|
|
6
6
|
return t === s.STANDARD ? n[a] : e[a];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as n, a as o } from "./index-
|
|
1
|
+
import { _ as n, a as o } from "./index-Ca30mhGi.js";
|
|
2
2
|
var s = function(a, e) {
|
|
3
3
|
return n(void 0, void 0, void 0, function() {
|
|
4
4
|
var t;
|
|
@@ -7,7 +7,7 @@ var s = function(a, e) {
|
|
|
7
7
|
case 0:
|
|
8
8
|
return [4, import(
|
|
9
9
|
/* webpackChunkName: "blueprint-icons-all-paths" */
|
|
10
|
-
"./allPaths-
|
|
10
|
+
"./allPaths-DxkcHbvd.js"
|
|
11
11
|
)];
|
|
12
12
|
case 1:
|
|
13
13
|
return t = r.sent().getIconPaths, [2, t(a, e)];
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
export interface MdstaticBtnIconInterface {
|
|
3
3
|
size: "sm" | "md" | "lg";
|
|
4
4
|
disable?: boolean;
|
|
5
|
-
iconType?: "Setting" | " Appstore" | "CloseCircle" | "CheckCircle" | "Notification" | "CloudUpload" | "CloudDownload" | "Eye" | "Pen" | "TrashCan" | "mask";
|
|
6
|
-
variant: "success" | "primary" | "danger" | "warning" | "dark" | "light";
|
|
5
|
+
iconType?: "Setting" | " Appstore" | "CloseCircle" | "CheckCircle" | "Notification" | "CloudUpload" | "CloudDownload" | "Eye" | "Pen" | "TrashCan" | "mask" | "CircleAlert";
|
|
6
|
+
variant: "success" | "primary" | "danger" | "warning" | "dark" | "light" | "None";
|
|
7
7
|
className: String;
|
|
8
|
+
shadow: boolean;
|
|
8
9
|
children?: React.ReactNode;
|
|
9
10
|
}
|
|
@@ -9,6 +9,9 @@ export interface MdStaticCardColorHeaderProps {
|
|
|
9
9
|
ContentColor?: string;
|
|
10
10
|
backgroundColor?: string;
|
|
11
11
|
showTitle?: boolean;
|
|
12
|
+
link?: any;
|
|
13
|
+
overflow?: boolean;
|
|
14
|
+
maxHeight?: string;
|
|
12
15
|
children: React.ReactChild;
|
|
13
16
|
}
|
|
14
17
|
declare const MdStaticCardColorHeader: FC<MdStaticCardColorHeaderProps>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { InputHTMLAttributes } from "react";
|
|
2
|
+
export interface MdStaticCheckbox1Interface extends InputHTMLAttributes<HTMLInputElement> {
|
|
2
3
|
label: string;
|
|
3
4
|
name: string;
|
|
4
|
-
id: string;
|
|
5
5
|
value: string;
|
|
6
6
|
className?: string;
|
|
7
7
|
disabledProps?: boolean;
|
package/dist/components/FormInputs/EmailInput/mdStaticEmailField/mdStaticEmailFieldInterface.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { InputHTMLAttributes } from "react";
|
|
2
|
+
export interface MdStaticEmailFieldInter extends InputHTMLAttributes<HTMLInputElement> {
|
|
2
3
|
placeholderProps: string;
|
|
3
4
|
colorPros: "Success" | "Error" | "Default";
|
|
4
5
|
validationProps: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { InputHTMLAttributes } from "react";
|
|
2
|
+
export interface MdStaticFontTypeInterface extends InputHTMLAttributes<HTMLSelectElement> {
|
|
2
3
|
variant: "sans" | "serif" | "mono";
|
|
3
4
|
variant1: "italic" | "notitalic";
|
|
4
5
|
variant2: "thin" | "extralight" | "light" | "normal" | "medium" | "semibold" | "bold" | "extrabold" | "black";
|
package/dist/components/FormInputs/TextInput/MdStaticTextField/MdStaticTextFieldInterface.d.ts
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import { InputHTMLAttributes } from "react";
|
|
2
|
+
export interface MdStaticTextFieldInterface extends InputHTMLAttributes<HTMLInputElement> {
|
|
2
3
|
placeholderProps: string;
|
|
3
4
|
colorPros: "Success" | "Error" | "Default";
|
|
4
|
-
|
|
5
|
+
validationMessage: string;
|
|
5
6
|
disabledProps: boolean;
|
|
6
7
|
requiredProps: boolean;
|
|
7
8
|
labelProps: string;
|
|
9
|
+
size?: number;
|
|
10
|
+
label?: string;
|
|
11
|
+
crossOrigin?: string;
|
|
12
|
+
error?: boolean;
|
|
13
|
+
success?: boolean;
|
|
8
14
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MdSignPostOpenedInterface extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
isVisible?: boolean;
|
|
6
|
+
variant: "top" | "left" | "right" | "down";
|
|
7
|
+
Arrow: "top" | "left" | "right" | "down";
|
|
8
|
+
}
|