@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.
@@ -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-CGwWjFkp.js";
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-CGwWjFkp.js";
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-CdhEA0up.js"
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
- export interface MdStaticCheckbox1Interface {
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;
@@ -1,4 +1,5 @@
1
- export interface MdStaticEmailFieldInter {
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
- export interface MdStaticFontTypeInterface {
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";
@@ -1,8 +1,14 @@
1
- export interface MdStaticTextFieldInterface {
1
+ import { InputHTMLAttributes } from "react";
2
+ export interface MdStaticTextFieldInterface extends InputHTMLAttributes<HTMLInputElement> {
2
3
  placeholderProps: string;
3
4
  colorPros: "Success" | "Error" | "Default";
4
- validationProps: string;
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
  }
@@ -1,6 +1,4 @@
1
- import { ReactNode } from "react";
2
1
  export interface MdStaticFormLayoutInterface {
3
2
  labelText: string;
4
3
  borderbottom: boolean;
5
- formContent: ReactNode;
6
4
  }
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { MdSignPostOpenedInterface } from "./MdSignPostOpenedInterface";
3
+ export declare const MdSignPostOpened: React.FC<MdSignPostOpenedInterface>;
@@ -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
+ }
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  import { MdStaticSignPostInitialInterface } from "./MdStaticSignPostInitialInterface";
3
3
  export declare const MdStaticSignPostInitial: React.FC<MdStaticSignPostInitialInterface>;