@map2usdnbhd/md_components 1.0.18 → 1.0.20

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.
Files changed (25) hide show
  1. package/dist/{allPaths-PO4nvDBK.js → allPaths-B4O7Q4i4.js} +1 -1
  2. package/dist/{allPathsLoader-vKbaAuaD.js → allPathsLoader-0ZWfZs30.js} +2 -2
  3. package/dist/components/DragDrop/index.d.ts +3 -0
  4. package/dist/components/Dropdown/SearchDropdown/SearchDropdownInterface.d.ts +4 -0
  5. package/dist/components/FormInputs/ColorPicker/MdStaticColorPicker.d.ts +4 -0
  6. package/dist/components/FormInputs/ColorPicker/MdStaticColorPickerInterface.d.ts +3 -0
  7. package/dist/components/FormInputs/FontType/MdStaticFontType/MdStaticFontType.d.ts +3 -0
  8. package/dist/components/FormInputs/FontType/MdStaticFontType/MdStaticFontTypeInterface.d.ts +6 -0
  9. package/dist/components/FormInputs/SearchField/mdStaticSearchField/mdStaticSearchFieldInterface.d.ts +2 -0
  10. package/dist/components/FormInputs/TextInput/MdStaticTextField/MdStaticTextField.d.ts +3 -0
  11. package/dist/components/FormInputs/TextInput/MdStaticTextField/MdStaticTextFieldInterface.d.ts +8 -0
  12. package/dist/components/FormInputs/index.d.ts +4 -1
  13. package/dist/components/Infobox/MdStaticInfoBoxShadow/MdStaticInfoBoxShadow.d.ts +3 -0
  14. package/dist/components/Infobox/MdStaticInfoBoxShadow/MdStaticInfoBoxShadowInterface.d.ts +8 -0
  15. package/dist/components/Infobox/index.d.ts +2 -1
  16. package/dist/components/Modal/MdStaticModalAlert/MdStaticModalAlertInterface.d.ts +4 -0
  17. package/dist/components/Table/WSortIcon/WSortIcon.d.ts +5 -1
  18. package/dist/components/Table/WSortIcon/WSortIconInterface.d.ts +4 -1
  19. package/dist/components/index.d.ts +6 -3
  20. package/dist/index-K3m4k4B8.js +37027 -0
  21. package/dist/md-component.js +65 -28
  22. package/dist/md-component.umd.cjs +57 -32
  23. package/dist/{splitPathsBySizeLoader-ltQwxD1E.js → splitPathsBySizeLoader-RVWRULi_.js} +1 -1
  24. package/package.json +1 -1
  25. package/dist/index-L-tlACIc.js +0 -34895
@@ -1,6 +1,6 @@
1
1
  import { I as n } from "./index-_nYoEliG.js";
2
2
  import { I as e } from "./index-q-fN99gA.js";
3
- import { p as t, I as s } from "./index-L-tlACIc.js";
3
+ import { p as t, I as s } from "./index-K3m4k4B8.js";
4
4
  import "react";
5
5
  import "react-dom";
6
6
  function f(o, a) {
@@ -1,4 +1,4 @@
1
- import { _ as e, a as n } from "./index-L-tlACIc.js";
1
+ import { _ as e, a as n } from "./index-K3m4k4B8.js";
2
2
  import "react";
3
3
  import "react-dom";
4
4
  var u = function(o, a) {
@@ -9,7 +9,7 @@ var u = function(o, a) {
9
9
  case 0:
10
10
  return [4, import(
11
11
  /* webpackChunkName: "blueprint-icons-all-paths" */
12
- "./allPaths-PO4nvDBK.js"
12
+ "./allPaths-B4O7Q4i4.js"
13
13
  )];
14
14
  case 1:
15
15
  return t = r.sent().getIconPaths, [2, t(o, a)];
@@ -0,0 +1,3 @@
1
+ import MdStaticConstraintsDragDrop from "./MdStaticConstraintsDragDrop/MdStaticConstraintsDragDrop";
2
+ import { MdStaticDragDropSimple } from "./MdStaticDragDropSimple/MdStaticDragDropSimple";
3
+ export { MdStaticConstraintsDragDrop, MdStaticDragDropSimple };
@@ -2,4 +2,8 @@ export interface SearchDropdownInterface {
2
2
  backgroundColor?: string;
3
3
  PopBackgroundColor?: string;
4
4
  buttonText?: string;
5
+ filteredOptions: {
6
+ label: string;
7
+ link: string;
8
+ }[];
5
9
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const MdStaticColorPicker: React.FC<{
3
+ color: string;
4
+ }>;
@@ -0,0 +1,3 @@
1
+ export interface MdStaticColorPickerInterface {
2
+ color: string;
3
+ }
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { MdStaticFontTypeInterface } from "./MdStaticFontTypeInterface";
3
+ export declare const MdStaticFontType: React.FC<MdStaticFontTypeInterface>;
@@ -0,0 +1,6 @@
1
+ export interface MdStaticFontTypeInterface {
2
+ variant: "sans" | "serif" | "mono";
3
+ variant1: "italic" | "notitalic";
4
+ variant2: "thin" | "extralight" | "light" | "normal" | "medium" | "semibold" | "bold" | "extrabold" | "black";
5
+ text?: string;
6
+ }
@@ -4,4 +4,6 @@ export interface MdStaticSearchFieldInter {
4
4
  disabledProps: boolean;
5
5
  placeholderProps: string;
6
6
  buttonProps: string;
7
+ buttonHide: boolean;
8
+ requiredProp: boolean;
7
9
  }
@@ -0,0 +1,3 @@
1
+ import { FC } from "react";
2
+ import { MdStaticTextFieldInterface } from "./MdStaticTextFieldInterface";
3
+ export declare const MdStaticTextField: FC<MdStaticTextFieldInterface>;
@@ -0,0 +1,8 @@
1
+ export interface MdStaticTextFieldInterface {
2
+ placeholderProps: string;
3
+ colorPros: "Success" | "Error" | "Default";
4
+ validationProps: string;
5
+ disabledProps: boolean;
6
+ requiredProps: boolean;
7
+ labelProps: string;
8
+ }
@@ -24,5 +24,8 @@ import { MdStaticPDFViewer } from "./PDFViewer/MdStaticPDFViewer";
24
24
  import { MdStaticTagInput } from "./TagInput/TagInput1/TagInput1";
25
25
  import { MdStaticTextarea1 } from "./Textarea/Textarea1/Textarea1";
26
26
  import { MdStaticToggleSwitch } from "./ToggleSwitch/MdStaticToggleSwitch/MdStaticToggleSwitch";
27
- export { MdStaticPasswordField, MdStaticFileInput, MdStaticEmailField, MdStaticNumberField, MdStaticDatePickerField, MdStaticSearchField, MdStaticURLField, MdStaticTextAreaField, MdStaticTextFieldSet, MdStaticSpinnerField, MdStaticBadgeNotification, MdStaticBadgeIconNotification, MdStaticCountdown, MdstaticNumericInput1, MdStaticPDFViewer, MdStaticTagInput, MdStaticTextarea1, MdStaticToggleSwitch };
27
+ import { MdStaticColorPicker } from "./ColorPicker/MdStaticColorPicker";
28
+ import { MdStaticFontType } from "./FontType/MdStaticFontType/MdStaticFontType";
29
+ import { MdStaticTextField } from "./TextInput/MdStaticTextField/MdStaticTextField";
30
+ export { MdStaticPasswordField, MdStaticFileInput, MdStaticEmailField, MdStaticNumberField, MdStaticDatePickerField, MdStaticSearchField, MdStaticURLField, MdStaticTextAreaField, MdStaticTextFieldSet, MdStaticSpinnerField, MdStaticBadgeNotification, MdStaticBadgeIconNotification, MdStaticCountdown, MdstaticNumericInput1, MdStaticPDFViewer, MdStaticTagInput, MdStaticTextarea1, MdStaticToggleSwitch, MdStaticColorPicker, MdStaticFontType, MdStaticTextField };
28
31
  export type { MdStaticEmailFieldInter, MdStaticNumberFieldInter, MdStaticDatePickerFieldInter, MdStaticSearchFieldInter, MdStaticURLFieldInter, MdStaticTextAreaFieldInter, MdStaticTextFieldSetInter, MdStaticSpinnerFieldInter };
@@ -0,0 +1,3 @@
1
+ import { FC } from "react";
2
+ import { MdStaticInfoBoxShadowInterface } from "./MdStaticInfoBoxShadowInterface";
3
+ export declare const MdStaticInfoBoxShadow: FC<MdStaticInfoBoxShadowInterface>;
@@ -0,0 +1,8 @@
1
+ export interface MdStaticInfoBoxShadowInterface {
2
+ size: number;
3
+ variant: "success" | "primary" | "danger" | "warning" | "dark" | "light";
4
+ icon: "Flag" | "Mail" | "File" | "Star";
5
+ text1: string;
6
+ text2: string;
7
+ backgroundColor: string;
8
+ }
@@ -1,2 +1,3 @@
1
1
  import { MdStaticInfoBox } from "./MdStaticInfoBox/MdStaticInfoBox";
2
- export { MdStaticInfoBox };
2
+ import { MdStaticInfoBoxShadow } from "./MdStaticInfoBoxShadow/MdStaticInfoBoxShadow";
3
+ export { MdStaticInfoBox, MdStaticInfoBoxShadow };
@@ -4,4 +4,8 @@ export interface MdStaticModalAlertInterface {
4
4
  bgOpacity?: number;
5
5
  hideIcon?: boolean;
6
6
  intervalTime?: number;
7
+ btnTex0?: string;
8
+ btnTex1?: string;
9
+ alertText?: string;
10
+ colorFont: "black" | "white";
7
11
  }
@@ -2,6 +2,7 @@ import React, { ReactNode } from "react";
2
2
  import { WSortIconInterface } from "./WSortIconInterface";
3
3
  export declare const MdStaticWSortIcon: React.FC<{
4
4
  data: WSortIconInterface[];
5
+ headers: Array<keyof WSortIconInterface>;
5
6
  backgroundColor?: string;
6
7
  backgroundColor1?: string;
7
8
  TitleColor?: string;
@@ -10,5 +11,8 @@ export declare const MdStaticWSortIcon: React.FC<{
10
11
  ViewColor?: string;
11
12
  DeleteColor?: string;
12
13
  EditIcon?: ReactNode;
13
- borderRadius?: number;
14
+ hideIcon?: boolean;
15
+ hideIcon1?: boolean;
16
+ hideIcon2?: boolean;
17
+ filter?: boolean;
14
18
  }>;
@@ -13,5 +13,8 @@ export interface WSortIconInterface {
13
13
  ViewColor?: string;
14
14
  DeleteColor?: string;
15
15
  EditIcon?: string;
16
- borderRadius?: number;
16
+ hideIcon?: boolean;
17
+ hideIcon1?: boolean;
18
+ hideIcon2?: boolean;
19
+ filter?: boolean;
17
20
  }
@@ -1,4 +1,4 @@
1
- import { MdStaticButton, MdStaticMoreLessButton, MdStaticSplitButton } from "./Buttons";
1
+ import { MdStaticButton, MdStaticMoreLessButton, MdStaticSplitButton, MdStaticBtnIcon, MdStaticBtnIconOutline } from "./Buttons";
2
2
  import { MdStaticCalendar } from "./Calendar/Calendar1/MdStaticCalendar1";
3
3
  import { MdStaticCard, MdStaticCardImgSide, MdStaticCardProgressBar, MdStaticCardTab } from "./Card";
4
4
  import { MdStaticCarousel } from "./Carousel";
@@ -7,11 +7,14 @@ import { MdstaticCheckboxGroup } from "./Checkbox/CheckboxGroup/CheckbocGroup";
7
7
  import { MdStaticDropdown, MdStaticMultiselect, MdStaticSearchDropdown } from "./Dropdown";
8
8
  import { MdStaticFooter } from "./Footer/MdStaticFooter/MdStaticFooter";
9
9
  import { MdStaticFooter2 } from "./Footer/MdStaticFooter2/MdStaticFooter2";
10
- import { MdStaticPasswordField, MdStaticFileInput } from "./FormInputs";
10
+ import { MdStaticPasswordField, MdStaticFileInput, MdStaticColorPicker, MdStaticEmailField, MdStaticNumberField, MdStaticTextFieldSet, MdStaticTextAreaField, MdStaticURLField, MdStaticSearchField, MdStaticDatePickerField, MdStaticBadgeIconNotification, MdStaticBadgeNotification, MdStaticCountdown, MdStaticSpinnerField, MdStaticToggleSwitch, MdStaticTextarea1, MdStaticTagInput, MdStaticPDFViewer, MdstaticNumericInput1, MdStaticFontType, MdStaticTextField } from "./FormInputs";
11
11
  import { MdStaticHeader } from "./Header";
12
12
  import { MdStaticModalForm, MdStaticModalTab } from "./Modal";
13
13
  import { MdStaticNavbar } from "./Navbar";
14
14
  import { Table02, MdStaticWSortIcon } from "./Table";
15
+ import { MdStaticInfoBox, MdStaticInfoBoxShadow } from "./Infobox";
15
16
  import { MdStaticSidebar } from "./Sidebar";
16
17
  import { MdErrorPage404, MdErrorPage500 } from "./PageError";
17
- export { MdStaticPasswordField, MdStaticButton, MdStaticCard, MdStaticCarousel, MdStaticDropdown, MdStaticFileInput, MdStaticFooter, MdStaticFooter2, MdStaticHeader, MdStaticNavbar, MdStaticSidebar, Table02, MdStaticWSortIcon, MdStaticModalForm, MdStaticModalTab, MdStaticMultiselect, MdStaticSearchDropdown, MdStaticCalendar, MdStaticCardProgressBar, MdStaticCardTab, MdstaticCheckbox, MdstaticCheckboxGroup, MdStaticCardImgSide, MdStaticSplitButton, MdStaticMoreLessButton, MdErrorPage404, MdErrorPage500, };
18
+ import { MdStaticConstraintsDragDrop, MdStaticDragDropSimple } from "./DragDrop";
19
+ import { MdStaticToastAutoHide, MdStaticToastDefaultBottomLeft, MdStaticToastDefaultBottomRight, MdStaticToastDefaultTopLeft, MdStaticToastDefaultTopRight, MdStaticToastIcon, MdStaticToastImage, MdSweetToastError, MdSweetToastSuccess, MdSweetToastWarning, MdSweetToastInfo, MdSweetToastQuestion } from "./Toast";
20
+ export { MdStaticPasswordField, MdStaticFileInput, MdStaticColorPicker, MdStaticEmailField, MdStaticNumberField, MdStaticTextFieldSet, MdStaticTextAreaField, MdStaticURLField, MdStaticSearchField, MdStaticDatePickerField, MdStaticBadgeIconNotification, MdStaticBadgeNotification, MdStaticCountdown, MdStaticSpinnerField, MdStaticToggleSwitch, MdStaticTextarea1, MdStaticTagInput, MdStaticPDFViewer, MdstaticNumericInput1, MdStaticTextField, MdStaticFontType, MdStaticToastAutoHide, MdStaticToastDefaultBottomLeft, MdStaticToastDefaultBottomRight, MdStaticToastDefaultTopLeft, MdStaticToastDefaultTopRight, MdStaticToastIcon, MdStaticToastImage, MdSweetToastError, MdSweetToastSuccess, MdSweetToastWarning, MdSweetToastInfo, MdSweetToastQuestion, MdStaticButton, MdStaticBtnIcon, MdStaticBtnIconOutline, MdStaticCard, MdStaticCarousel, MdStaticDropdown, MdStaticFooter, MdStaticFooter2, MdStaticHeader, MdStaticNavbar, MdStaticSidebar, Table02, MdStaticWSortIcon, MdStaticModalForm, MdStaticModalTab, MdStaticMultiselect, MdStaticSearchDropdown, MdStaticCalendar, MdStaticCardProgressBar, MdStaticCardTab, MdstaticCheckbox, MdstaticCheckboxGroup, MdStaticCardImgSide, MdStaticSplitButton, MdStaticMoreLessButton, MdErrorPage404, MdErrorPage500, MdStaticInfoBox, MdStaticInfoBoxShadow, MdStaticConstraintsDragDrop, MdStaticDragDropSimple, };