@monoui/vuejs 1.1.10

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 (83) hide show
  1. package/README.md +27 -0
  2. package/dist/main.js +410 -0
  3. package/package.json +105 -0
  4. package/src/components/BreadCrumb/BreadCrumb.vue +59 -0
  5. package/src/components/BreadCrumb/index.js +3 -0
  6. package/src/components/Button/Button.vue +118 -0
  7. package/src/components/Button/ButtonCore.vue +59 -0
  8. package/src/components/Button/ButtonEdit.vue +15 -0
  9. package/src/components/Button/ButtonRemove.vue +15 -0
  10. package/src/components/Button/index.js +4 -0
  11. package/src/components/Card/Card.vue +82 -0
  12. package/src/components/Card/CardBody.vue +72 -0
  13. package/src/components/Card/CardFooter.vue +55 -0
  14. package/src/components/Card/CardHeader.vue +58 -0
  15. package/src/components/Card/CardSubTitle.vue +43 -0
  16. package/src/components/Card/CardText.vue +21 -0
  17. package/src/components/Card/CardTitle.vue +38 -0
  18. package/src/components/Card/index.js +17 -0
  19. package/src/components/Checkbox/Checkbox.vue +72 -0
  20. package/src/components/Checkbox/index.js +3 -0
  21. package/src/components/Cron/Cron.vue +68 -0
  22. package/src/components/Cron/index.js +3 -0
  23. package/src/components/Date/DatePicker.vue +406 -0
  24. package/src/components/Date/index.js +3 -0
  25. package/src/components/Dropdown/Dropdown.vue +51 -0
  26. package/src/components/Dropdown/DropdownDivider.vue +12 -0
  27. package/src/components/Dropdown/DropdownItem.vue +23 -0
  28. package/src/components/Dropdown/index.js +5 -0
  29. package/src/components/DynamicInput/DynamicInput.vue +192 -0
  30. package/src/components/DynamicInput/index.js +3 -0
  31. package/src/components/DynamicInput/inputTypes.js +14 -0
  32. package/src/components/Icon/Icon.vue +43 -0
  33. package/src/components/Icon/index.js +3 -0
  34. package/src/components/Info/Info.vue +19 -0
  35. package/src/components/Info/index.js +3 -0
  36. package/src/components/Input/Input.vue +73 -0
  37. package/src/components/Input/index.js +3 -0
  38. package/src/components/KeyValue/KeyValue.vue +138 -0
  39. package/src/components/KeyValue/index.js +3 -0
  40. package/src/components/KeyValueInput/KeyValueInput.vue +203 -0
  41. package/src/components/KeyValueInput/index.js +3 -0
  42. package/src/components/Loader/Loader.vue +82 -0
  43. package/src/components/Loader/content-loader.js +150 -0
  44. package/src/components/Loader/index.js +2 -0
  45. package/src/components/Modal/Alert.vue +96 -0
  46. package/src/components/Modal/Modal.vue +125 -0
  47. package/src/components/Modal/RemoveAlert.vue +58 -0
  48. package/src/components/Modal/UnsavedChangesAlert.vue +83 -0
  49. package/src/components/Modal/index.js +6 -0
  50. package/src/components/MultiKeyValue/MultiKeyValue.vue +359 -0
  51. package/src/components/MultiKeyValue/index.js +3 -0
  52. package/src/components/NoData/NoData.vue +20 -0
  53. package/src/components/NoData/index.js +3 -0
  54. package/src/components/Popover/Popover.vue +91 -0
  55. package/src/components/Popover/index.js +3 -0
  56. package/src/components/Select/Select.vue +71 -0
  57. package/src/components/Select/index.js +3 -0
  58. package/src/components/Spinner/Spinner.vue +19 -0
  59. package/src/components/Spinner/index.js +3 -0
  60. package/src/components/Table/Icons/ArrowDown.vue +18 -0
  61. package/src/components/Table/Icons/ArrowDownLong.vue +18 -0
  62. package/src/components/Table/Icons/ArrowUp.vue +18 -0
  63. package/src/components/Table/Icons/ArrowUpLong.vue +18 -0
  64. package/src/components/Table/Icons/BaseIcon.vue +46 -0
  65. package/src/components/Table/Icons/Sorting.vue +16 -0
  66. package/src/components/Table/Icons/SortingAZ.vue +18 -0
  67. package/src/components/Table/Icons/SortingArrows.vue +18 -0
  68. package/src/components/Table/Table.vue +548 -0
  69. package/src/components/Table/index.js +3 -0
  70. package/src/components/Tabs/Tab.vue +36 -0
  71. package/src/components/Tabs/Tabs.vue +44 -0
  72. package/src/components/Tabs/index.js +4 -0
  73. package/src/components/TagInput/TagInput.vue +129 -0
  74. package/src/components/TagInput/index.js +3 -0
  75. package/src/components/Timeline/Timeline.vue +33 -0
  76. package/src/components/Timeline/TimelineItem.vue +40 -0
  77. package/src/components/Timeline/index.js +4 -0
  78. package/src/components/Tooltip/Tooltip.vue +62 -0
  79. package/src/components/Tooltip/index.js +3 -0
  80. package/src/functions/alert.js +40 -0
  81. package/src/functions/notification.js +51 -0
  82. package/src/icons.js +144 -0
  83. package/src/index.js +133 -0
@@ -0,0 +1,19 @@
1
+ <template>
2
+ <b-spinner v-bind="this.$props"></b-spinner>
3
+ </template>
4
+
5
+ <script>
6
+ export default {
7
+ name: "mui-spinner",
8
+ props: {
9
+ key: {},
10
+ variant: {},
11
+ type: {},
12
+ small: { type: Boolean },
13
+ label: {},
14
+ class: {},
15
+ tag: {},
16
+ role: {}
17
+ }
18
+ };
19
+ </script>
@@ -0,0 +1,3 @@
1
+ import Spinner from "./Spinner.vue";
2
+
3
+ export default Spinner;
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <path d="M0 0h24v24H0V0z" fill="none" />
5
+ <path
6
+ d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <rect fill="none" height="24" width="24" />
5
+ <path
6
+ d="M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <path d="M0 0h24v24H0V0z" fill="none" />
5
+ <path
6
+ d="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <rect fill="none" height="24" width="24" />
5
+ <path
6
+ d="M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>
@@ -0,0 +1,46 @@
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ :width="width"
5
+ :height="height"
6
+ viewBox="0 0 24 24"
7
+ :aria-labelledby="iconName"
8
+ role="presentation"
9
+ >
10
+ <title :id="iconName" lang="en">{{ iconName }} icon</title>
11
+ <g :fill="iconColor">
12
+ <slot />
13
+ </g>
14
+ </svg>
15
+ </template>
16
+
17
+ <script>
18
+ export default {
19
+ props: {
20
+ iconName: {
21
+ type: String,
22
+ default: "box"
23
+ },
24
+ width: {
25
+ type: [Number, String],
26
+ default: 18
27
+ },
28
+ height: {
29
+ type: [Number, String],
30
+ default: 18
31
+ },
32
+ iconColor: {
33
+ type: String,
34
+ default: "currentColor"
35
+ }
36
+ }
37
+ };
38
+ </script>
39
+
40
+ <style scoped>
41
+ svg {
42
+ display: inline-block;
43
+ vertical-align: baseline;
44
+ margin-bottom: -2px; /* yes, I'm that particular about formatting */
45
+ }
46
+ </style>
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <path d="M0 0h24v24H0V0z" fill="none" />
5
+ <path d="M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" />
6
+ </g>
7
+ </base-icon>
8
+ </template>
9
+ <script>
10
+ import BaseIcon from "./BaseIcon.vue";
11
+ export default {
12
+ components: {
13
+ BaseIcon
14
+ }
15
+ };
16
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <path d="M0 0h24v24H0V0z" fill="none" />
5
+ <path
6
+ d="M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <base-icon>
3
+ <g>
4
+ <path d="M0 0h24v24H0V0z" fill="none" />
5
+ <path
6
+ d="M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"
7
+ />
8
+ </g>
9
+ </base-icon>
10
+ </template>
11
+ <script>
12
+ import BaseIcon from "./BaseIcon.vue";
13
+ export default {
14
+ components: {
15
+ BaseIcon
16
+ }
17
+ };
18
+ </script>