@fishawack/lab-velocity 1.11.1 → 2.0.0-beta.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 (138) hide show
  1. package/README.md +177 -49
  2. package/_Build/vue/components/Icon.vue +33 -0
  3. package/_Build/vue/components/Svg.vue +45 -0
  4. package/{basic → _Build/vue/components/basic}/Button.vue +17 -19
  5. package/{basic → _Build/vue/components/basic}/link.vue +8 -7
  6. package/{form → _Build/vue/components/form}/Cascader.vue +13 -13
  7. package/{form → _Build/vue/components/form}/CheckboxGroup.vue +28 -6
  8. package/{form → _Build/vue/components/form}/DatePicker.vue +23 -7
  9. package/{form → _Build/vue/components/form}/InputNumber.vue +1 -2
  10. package/{form → _Build/vue/components/form}/Select.vue +10 -11
  11. package/_Build/vue/components/form/Spinner.vue +5 -0
  12. package/{form → _Build/vue/components/form}/Switch.vue +2 -2
  13. package/{form → _Build/vue/components/form}/Upload.vue +4 -6
  14. package/{form → _Build/vue/components/form}/Wysiwyg.vue +14 -14
  15. package/_Build/vue/components/form/Wysiwyg2.vue +577 -0
  16. package/{form → _Build/vue/components/form}/basic.vue +25 -7
  17. package/{form → _Build/vue/components/form}/file.vue +1 -1
  18. package/{form → _Build/vue/components/form}/input.js +2 -2
  19. package/{form → _Build/vue/components/form}/input.vue +31 -11
  20. package/{layout → _Build/vue/components/layout}/Alert.vue +10 -10
  21. package/_Build/vue/components/layout/Footer.vue +50 -0
  22. package/{layout → _Build/vue/components/layout}/Header.vue +5 -7
  23. package/_Build/vue/components/layout/Loader.vue +59 -0
  24. package/{layout → _Build/vue/components/layout}/Tooltip.vue +12 -12
  25. package/{layout → _Build/vue/components/layout}/pageTitle.vue +4 -4
  26. package/{layout → _Build/vue/components/layout}/sideBar.vue +4 -6
  27. package/{navigation → _Build/vue/components/navigation}/Breadcrumbs.vue +15 -10
  28. package/{navigation → _Build/vue/components/navigation}/BreadcrumbsItem.vue +6 -6
  29. package/_Build/vue/components/navigation/Menu.vue +14 -0
  30. package/_Build/vue/components/navigation/MenuItem.vue +20 -0
  31. package/_Build/vue/components/navigation/MenuItemGroup.vue +20 -0
  32. package/_Build/vue/components/navigation/SubMenu.vue +20 -0
  33. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/Upload/upload.vue +259 -0
  34. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/create.vue +62 -0
  35. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/edit.vue +98 -0
  36. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/index.vue +90 -0
  37. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/partials/form.vue +181 -0
  38. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/show.vue +267 -0
  39. package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/parent.vue +36 -0
  40. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/create.vue +113 -0
  41. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/edit.vue +101 -0
  42. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/index.vue +112 -0
  43. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/partials/form.vue +174 -0
  44. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/show.vue +123 -0
  45. package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/parent.vue +36 -0
  46. package/{AuthModule → _Build/vue/modules/AuthModule}/components/AuthModal.vue +30 -35
  47. package/_Build/vue/modules/AuthModule/components/Chip.vue +70 -0
  48. package/_Build/vue/modules/AuthModule/components/Chips.vue +26 -0
  49. package/_Build/vue/modules/AuthModule/components/FormRole.vue +117 -0
  50. package/_Build/vue/modules/AuthModule/components/VBreadcrumbs.vue +33 -0
  51. package/_Build/vue/modules/AuthModule/components/VFormFooter.vue +52 -0
  52. package/_Build/vue/modules/AuthModule/components/VPageHeader.vue +38 -0
  53. package/_Build/vue/modules/AuthModule/components/VPasswordValidation.vue +106 -0
  54. package/_Build/vue/modules/AuthModule/components/VRoleLegend.vue +43 -0
  55. package/_Build/vue/modules/AuthModule/components/VTable.vue +136 -0
  56. package/_Build/vue/modules/AuthModule/components/VTableSorter.vue +252 -0
  57. package/_Build/vue/modules/AuthModule/js/FakeAPI.js +78 -0
  58. package/_Build/vue/modules/AuthModule/js/axios.js +81 -0
  59. package/_Build/vue/modules/AuthModule/js/router.js +295 -0
  60. package/_Build/vue/modules/AuthModule/js/store.js +62 -0
  61. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/account-exists.vue +6 -8
  62. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/change-password.vue +39 -38
  63. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/container.vue +4 -8
  64. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/expired-reset.vue +17 -15
  65. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/expired-verification.vue +21 -20
  66. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/force-reset.vue +45 -40
  67. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/forgot.vue +15 -11
  68. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/login.vue +27 -26
  69. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/logincallback.vue +6 -13
  70. package/_Build/vue/modules/AuthModule/routes/loginheadless.vue +21 -0
  71. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/loginsso.vue +34 -29
  72. package/_Build/vue/modules/AuthModule/routes/logout.vue +19 -0
  73. package/_Build/vue/modules/AuthModule/routes/logoutheadless.vue +25 -0
  74. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/register.vue +52 -37
  75. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/reset.vue +29 -19
  76. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/success-forgot.vue +22 -19
  77. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/success-reset.vue +6 -6
  78. package/_Build/vue/modules/AuthModule/routes/success-verify.vue +30 -0
  79. package/{AuthModule → _Build/vue/modules/AuthModule}/routes/verify.vue +26 -26
  80. package/_base.scss +0 -1
  81. package/_defaults.scss +3 -15
  82. package/_variables.scss +24 -21
  83. package/components/_alert.scss +2 -2
  84. package/components/_auth.scss +163 -0
  85. package/components/_basic.scss +5 -4
  86. package/components/_breadcrumbs.scss +7 -8
  87. package/components/_button.scss +11 -12
  88. package/components/_cascader.scss +1 -1
  89. package/components/_checkbox.scss +27 -26
  90. package/components/_chip.scss +24 -0
  91. package/components/_collapse.scss +2 -3
  92. package/components/_datepicker.scss +7 -6
  93. package/components/_footer.scss +1 -1
  94. package/components/_form.scss +6 -4
  95. package/components/_header.scss +4 -5
  96. package/components/_icon.scss +4 -3
  97. package/components/_inputNumber.scss +4 -3
  98. package/components/_link.scss +7 -7
  99. package/components/_loader.scss +3 -4
  100. package/components/_menu.scss +22 -22
  101. package/{modules → components}/_modal.scss +3 -3
  102. package/components/_pageTitle.scss +3 -3
  103. package/components/_permissionLegend.scss +18 -0
  104. package/components/_select.scss +3 -2
  105. package/components/_sidebar.scss +5 -6
  106. package/components/_switch.scss +2 -2
  107. package/components/_table.scss +3 -3
  108. package/components/_tooltip.scss +2 -2
  109. package/components/_typography.scss +71 -62
  110. package/components/_upload.scss +1 -1
  111. package/components/_wysiwyg.scss +3 -2
  112. package/components/_wysiwyg2.scss +37 -31
  113. package/general.scss +1 -2
  114. package/index.js +38 -30
  115. package/package.json +104 -102
  116. package/vendor.scss +2 -3
  117. package/AuthModule/components/VPasswordValidation.vue +0 -66
  118. package/AuthModule/js/AuthAxios.js +0 -59
  119. package/AuthModule/js/AuthRoutes.js +0 -186
  120. package/AuthModule/js/AuthStore.js +0 -99
  121. package/AuthModule/js/FakeAPI.js +0 -84
  122. package/AuthModule/routes/loginheadless.vue +0 -16
  123. package/AuthModule/routes/logout.vue +0 -21
  124. package/AuthModule/routes/success-verify.vue +0 -29
  125. package/Icon.vue +0 -33
  126. package/Svg.vue +0 -40
  127. package/components/_input.scss +0 -0
  128. package/form/Wysiwyg2.vue +0 -278
  129. package/layout/Footer.vue +0 -35
  130. package/layout/Loader.vue +0 -39
  131. package/modules/_AuthModule.scss +0 -209
  132. package/modules/_AuthVariables.scss +0 -7
  133. package/navigation/Menu.vue +0 -16
  134. package/navigation/MenuItem.vue +0 -20
  135. package/navigation/MenuItemGroup.vue +0 -20
  136. package/navigation/SubMenu.vue +0 -20
  137. /package/{form → _Build/vue/components/form}/Checkbox.vue +0 -0
  138. /package/{form → _Build/vue/components/form}/color.vue +0 -0
@@ -1,4 +1,4 @@
1
1
  @import "element-plus/theme-chalk/el-tooltip";
2
2
 
3
- .vel-tooltip{
4
- }
3
+ .vel-tooltip {
4
+ }
@@ -2,119 +2,128 @@
2
2
  /* Primary font
3
3
  -------------------------------------------------- */
4
4
  @font-face {
5
- font-family : $primaryFont;
6
- font-weight : 400;
7
- font-style : normal;
5
+ font-family: $primaryFont;
6
+ font-weight: 400;
7
+ font-style: normal;
8
8
 
9
- src :
10
- resolve($primaryFontRegular + '.woff2') format('woff2'),
11
- resolve($primaryFontRegular + '.woff') format('woff'),
9
+ src:
10
+ resolve($primaryFontRegular + ".woff2") format("woff2"),
11
+ resolve($primaryFontRegular + ".woff") format("woff");
12
12
  }
13
13
 
14
14
  @font-face {
15
- font-family : $primaryFont;
16
- font-weight : 100;
17
- font-style : normal;
15
+ font-family: $primaryFont;
16
+ font-weight: 100;
17
+ font-style: normal;
18
18
 
19
- src :
20
- resolve($primaryFontThin + '.woff2') format('woff2'),
21
- resolve($primaryFontThin + '.woff') format('woff'),
19
+ src:
20
+ resolve($primaryFontThin + ".woff2") format("woff2"),
21
+ resolve($primaryFontThin + ".woff") format("woff");
22
22
  }
23
23
 
24
24
  @font-face {
25
- font-family : $primaryFont;
26
- font-weight : 200;
27
- font-style : normal;
25
+ font-family: $primaryFont;
26
+ font-weight: 200;
27
+ font-style: normal;
28
28
 
29
- src :
30
- resolve($primaryFontExtraLight + '.woff2') format('woff2'),
31
- resolve($primaryFontExtraLight + '.woff') format('woff'),
29
+ src:
30
+ resolve($primaryFontExtraLight + ".woff2") format("woff2"),
31
+ resolve($primaryFontExtraLight + ".woff") format("woff");
32
32
  }
33
33
 
34
34
  @font-face {
35
- font-family : $primaryFont;
36
- font-weight : 300;
37
- font-style : normal;
35
+ font-family: $primaryFont;
36
+ font-weight: 300;
37
+ font-style: normal;
38
38
 
39
- src :
40
- resolve($primaryFontLight + '.woff2') format('woff2'),
41
- resolve($primaryFontLight + '.woff') format('woff'),
39
+ src:
40
+ resolve($primaryFontLight + ".woff2") format("woff2"),
41
+ resolve($primaryFontLight + ".woff") format("woff");
42
42
  }
43
43
 
44
44
  @font-face {
45
- font-family : $primaryFont;
46
- font-weight : 500;
47
- font-style : normal;
45
+ font-family: $primaryFont;
46
+ font-weight: 500;
47
+ font-style: normal;
48
48
 
49
- src :
50
- resolve($primaryFontMedium + '.woff2') format('woff2'),
51
- resolve($primaryFontMedium + '.woff') format('woff'),
49
+ src:
50
+ resolve($primaryFontMedium + ".woff2") format("woff2"),
51
+ resolve($primaryFontMedium + ".woff") format("woff");
52
52
  }
53
53
 
54
54
  @font-face {
55
- font-family : $primaryFont;
56
- font-weight : 600;
57
- font-style : normal;
55
+ font-family: $primaryFont;
56
+ font-weight: 600;
57
+ font-style: normal;
58
58
 
59
- src :
60
- resolve($primaryFontSemiBold + '.woff2') format('woff2'),
61
- resolve($primaryFontSemiBold + '.woff') format('woff'),
59
+ src:
60
+ resolve($primaryFontSemiBold + ".woff2") format("woff2"),
61
+ resolve($primaryFontSemiBold + ".woff") format("woff");
62
62
  }
63
63
 
64
64
  @font-face {
65
- font-family : $primaryFont;
66
- font-weight : 700;
67
- font-style : normal;
65
+ font-family: $primaryFont;
66
+ font-weight: 700;
67
+ font-style: normal;
68
68
 
69
- src :
70
- resolve($primaryFontBold + '.woff2') format('woff2'),
71
- resolve($primaryFontBold + '.woff2') format('woff2'),
69
+ src:
70
+ resolve($primaryFontBold + ".woff2") format("woff2"),
71
+ resolve($primaryFontBold + ".woff2") format("woff2");
72
72
  }
73
73
 
74
-
75
-
76
74
  @font-face {
77
- font-family : $secondaryFont;
78
- font-weight : 500;
79
- font-style : normal;
75
+ font-family: $secondaryFont;
76
+ font-weight: 500;
77
+ font-style: normal;
80
78
 
81
- src :
82
- resolve($secondaryFontMedium + '.ttf') format('truetype')
79
+ src: resolve($secondaryFontMedium + ".ttf") format("truetype");
83
80
  }
84
81
 
85
-
86
- h1,.h1 {
82
+ h1,
83
+ .h1 {
87
84
  font-size: get-ratio(48px);
88
85
  line-height: get-ratio(56px);
89
86
  font-family: $primaryFont;
90
87
  }
91
88
 
92
- h2, .h2 {
89
+ h2,
90
+ .h2 {
93
91
  font-size: get-ratio(36px);
94
92
  line-height: get-ratio(48px);
95
- font-family : $secondaryFont;
93
+ font-family: $secondaryFont;
96
94
  }
97
95
 
98
- h3, .h3 {
96
+ h3,
97
+ .h3 {
99
98
  font-size: get-ratio(32px);
100
99
  line-height: get-ratio(42px);
101
- font-family : $primaryFont;
100
+ font-family: $primaryFont;
102
101
  }
103
102
 
104
- h4, .h4 {
103
+ h4,
104
+ .h4 {
105
105
  font-size: get-ratio(24px);
106
106
  line-height: get-ratio(32px);
107
- font-family : $primaryFont;
107
+ font-family: $primaryFont;
108
108
  }
109
109
 
110
- h5, .h5 {
110
+ h5,
111
+ .h5 {
111
112
  font-size: get-ratio(20px);
112
113
  line-height: get-ratio(24px);
113
114
  font-weight: 700;
114
- font-family : $primaryFont;
115
+ font-family: $primaryFont;
115
116
  }
116
- h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5 {
117
-
117
+ h1,
118
+ .h1,
119
+ h2,
120
+ .h2,
121
+ h3,
122
+ .h3,
123
+ h4,
124
+ .h4,
125
+ h5,
126
+ .h5 {
118
127
  font-weight: 500;
119
128
  }
120
129
 
@@ -149,5 +158,5 @@ h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5 {
149
158
  font-size: get-ratio(60px);
150
159
  line-height: get-ratio(68px);
151
160
  font-weight: 500;
152
- font-family : $primaryFont;
161
+ font-family: $primaryFont;
153
162
  }
@@ -12,4 +12,4 @@
12
12
  &__error {
13
13
  color: $colorAlert;
14
14
  }
15
- }
15
+ }
@@ -1,6 +1,7 @@
1
1
  @import "quill/dist/quill.snow";
2
2
  @import "quill/dist/quill.core";
3
3
 
4
- .ql-container,.ql-toolbar {
4
+ .ql-container,
5
+ .ql-toolbar {
5
6
  background-color: $color0;
6
- }
7
+ }
@@ -11,9 +11,9 @@
11
11
  border-bottom: none;
12
12
  // margin-bottom: .5 * $spacing;
13
13
  font-size: get-ratio(14px);
14
- padding: 0 .5 * $spacing;
14
+ padding: 0 0.5 * $spacing;
15
15
  > * {
16
- padding: .5 * $spacing;
16
+ padding: 0.5 * $spacing;
17
17
  padding-right: $spacing;
18
18
  --el-font-size-base: get-ratio(14px);
19
19
  &:not(:last-child) {
@@ -29,7 +29,8 @@
29
29
  padding: 3px 5px;
30
30
  line-height: 1;
31
31
  border: none;
32
- &.is-active, &:hover {
32
+ &.is-active,
33
+ &:hover {
33
34
  background-color: $color5;
34
35
  }
35
36
  svg {
@@ -47,61 +48,64 @@
47
48
  stroke-linejoin: round;
48
49
  stroke-width: 2;
49
50
  }
50
-
51
+
51
52
  .ql-stroke-miter {
52
53
  fill: none;
53
54
  stroke: #444;
54
55
  stroke-miterlimit: 10;
55
56
  stroke-width: 2;
56
57
  }
57
-
58
+
58
59
  .ql-fill,
59
60
  .ql-stroke.ql-fill {
60
61
  fill: #444;
61
62
  }
62
-
63
+
63
64
  .ql-empty {
64
65
  fill: none;
65
66
  }
66
-
67
+
67
68
  .ql-even {
68
69
  fill-rule: evenodd;
69
70
  }
70
-
71
+
71
72
  .ql-thin,
72
73
  .ql-stroke.ql-thin {
73
74
  stroke-width: 1;
74
75
  }
75
-
76
+
76
77
  .ql-transparent {
77
78
  opacity: 0.4;
78
- }
79
+ }
79
80
 
80
- ~ div {
81
- // margin-top: $spacing;
82
- border: solid $color5 2px;
83
- background-color: $color0;
84
- > div {
85
- padding: 2 * $spacing;
81
+ ~ div {
82
+ // margin-top: $spacing;
83
+ border: solid $color5 2px;
84
+ background-color: $color0;
85
+ > div {
86
+ padding: 2 * $spacing;
87
+ }
86
88
  }
87
- }
88
89
  }
89
90
  .vel-wysiwyg__button {
90
- // border: solid 1px $color1;
91
- background-color: transparent;
92
- // cursor: pointer;
91
+ // border: solid 1px $color1;
92
+ background-color: transparent;
93
+ // cursor: pointer;
93
94
 
94
- &.is-active, &:hover {
95
- background-color: $color5;
96
- }
95
+ &.is-active,
96
+ &:hover {
97
+ background-color: $color5;
98
+ }
97
99
  }
98
100
 
99
101
  .vel-wysiwyg {
100
102
  // border: solid $color1 1px;
101
103
  // padding: $spacing * 1.5;
102
104
 
103
- table,td,th {
104
- border: solid .5px $color1;
105
+ table,
106
+ td,
107
+ th {
108
+ border: solid 0.5px $color1;
105
109
  }
106
110
  th {
107
111
  background-color: $color5;
@@ -115,10 +119,10 @@
115
119
  }
116
120
  }
117
121
 
118
-
119
-
120
- .lab-table, .lab-table-cell, .lab-table-header {
121
- border: solid .5px $color1;
122
+ .lab-table,
123
+ .lab-table-cell,
124
+ .lab-table-header {
125
+ border: solid 0.5px $color1;
122
126
  }
123
127
  .lab-table-header {
124
128
  background-color: $color5;
@@ -130,7 +134,9 @@
130
134
  }
131
135
  }
132
136
  .lab-table-cell {
133
- &:active, &:focus-within, &.selectedCell {
134
- background-color: transparentize($color: $color5, $amount: .8);
137
+ &:active,
138
+ &:focus-within,
139
+ &.selectedCell {
140
+ background-color: transparentize($color: $color5, $amount: 0.8);
135
141
  }
136
142
  }
package/general.scss CHANGED
@@ -31,5 +31,4 @@
31
31
  @import "./components/_loader.scss";
32
32
  @import "./modules/_AuthModule.scss";
33
33
 
34
-
35
- @import "./_base.scss";
34
+ @import "./_base.scss";
package/index.js CHANGED
@@ -1,34 +1,42 @@
1
- export { default as Button } from "./basic/Button.vue";
2
- export { default as Link } from "./basic/link.vue";
1
+ import Router from "./_Build/vue/modules/AuthModule/js/router.js";
2
+ import Axios from "./_Build/vue/modules/AuthModule/js/axios.js";
3
+ import Store from "./_Build/vue/modules/AuthModule/js/store.js";
3
4
 
4
- export { default as Basic } from "./form/basic.vue";
5
- export { default as Checkbox } from "./form/Checkbox.vue";
6
- export { default as CheckboxGroup } from "./form/CheckboxGroup.vue";
7
- export { default as Color } from "./form/color.vue";
8
- export { default as DatePicker } from "./form/DatePicker.vue";
9
- export { default as file } from "./form/file.vue";
10
- export { default as Select } from "./form/Select.vue";
11
- export { default as Switch } from "./form/Switch.vue";
12
- export { default as Wysiwyg } from "./form/Wysiwyg.vue";
13
- export { default as Wysiwyg2 } from "./form/Wysiwyg2.vue";
14
- export { default as Upload } from "./form/Upload.vue";
15
- export { default as InputNumber } from "./form/InputNumber.vue";
5
+ export const Auth = {
6
+ Router,
7
+ Axios,
8
+ Store,
9
+ };
16
10
 
17
- export { default as SideBar } from "./layout/sideBar.vue";
18
- export { default as Footer } from "./layout/Footer.vue";
19
- export { default as Header } from "./layout/Header.vue";
20
- export { default as PageTitle } from "./layout/pageTitle.vue";
21
- export { default as Alert } from "./layout/Alert.vue";
22
- export { default as Tooltip } from "./layout/Tooltip.vue";
23
- export { default as Menu } from "./navigation/Menu.vue";
24
- export { default as MenuItem } from "./navigation/MenuItem.vue";
25
- export { default as MenuItemGroup } from "./navigation/MenuItemGroup.vue";
26
- export { default as SubMenu } from "./navigation/SubMenu.vue";
27
- export { default as Breadcrumbs } from "./navigation/Breadcrumbs.vue";
28
- export { default as BreadcrumbsItem } from "./navigation/BreadcrumbsItem.vue";
11
+ export { default as Button } from "./_Build/vue/components/basic/Button.vue";
12
+ export { default as Link } from "./_Build/vue/components/basic/link.vue";
29
13
 
30
- export { default as Icon } from "./Icon.vue";
31
- export { default as Svg } from "./Svg.vue";
32
- export { default as Loader } from "./layout/Loader.vue";
14
+ export { default as Basic } from "./_Build/vue/components/form/basic.vue";
15
+ export { default as Checkbox } from "./_Build/vue/components/form/Checkbox.vue";
16
+ export { default as CheckboxGroup } from "./_Build/vue/components/form/CheckboxGroup.vue";
17
+ export { default as Color } from "./_Build/vue/components/form/color.vue";
18
+ export { default as DatePicker } from "./_Build/vue/components/form/DatePicker.vue";
19
+ export { default as file } from "./_Build/vue/components/form/file.vue";
20
+ export { default as Select } from "./_Build/vue/components/form/Select.vue";
21
+ export { default as Switch } from "./_Build/vue/components/form/Switch.vue";
22
+ export { default as Wysiwyg } from "./_Build/vue/components/form/Wysiwyg.vue";
23
+ export { default as Wysiwyg2 } from "./_Build/vue/components/form/Wysiwyg2.vue";
24
+ export { default as Upload } from "./_Build/vue/components/form/Upload.vue";
25
+ export { default as InputNumber } from "./_Build/vue/components/form/InputNumber.vue";
33
26
 
34
- export { authRoutes } from './AuthModule/js/AuthRoutes.js';
27
+ export { default as SideBar } from "./_Build/vue/components/layout/sideBar.vue";
28
+ export { default as Footer } from "./_Build/vue/components/layout/Footer.vue";
29
+ export { default as Header } from "./_Build/vue/components/layout/Header.vue";
30
+ export { default as PageTitle } from "./_Build/vue/components/layout/pageTitle.vue";
31
+ export { default as Alert } from "./_Build/vue/components/layout/Alert.vue";
32
+ export { default as Tooltip } from "./_Build/vue/components/layout/Tooltip.vue";
33
+ export { default as Menu } from "./_Build/vue/components/navigation/Menu.vue";
34
+ export { default as MenuItem } from "./_Build/vue/components/navigation/MenuItem.vue";
35
+ export { default as MenuItemGroup } from "./_Build/vue/components/navigation/MenuItemGroup.vue";
36
+ export { default as SubMenu } from "./_Build/vue/components/navigation/SubMenu.vue";
37
+ export { default as Breadcrumbs } from "./_Build/vue/components/navigation/Breadcrumbs.vue";
38
+ export { default as BreadcrumbsItem } from "./_Build/vue/components/navigation/BreadcrumbsItem.vue";
39
+
40
+ export { default as Icon } from "./_Build/vue/components/Icon.vue";
41
+ export { default as Svg } from "./_Build/vue/components/Svg.vue";
42
+ export { default as Loader } from "./_Build/vue/components/layout/Loader.vue";
package/package.json CHANGED
@@ -1,104 +1,106 @@
1
1
  {
2
- "name": "@fishawack/lab-velocity",
3
- "version": "1.11.1",
4
- "description": "Avalere Health branded style system",
5
- "scripts": {
6
- "setup": "npm ci || npm i && npm run content",
7
- "content": "npm run content --prefix node_modules/@fishawack/core/",
8
- "start": "npm run production && npm run story:dev",
9
- "start-modules": "npm start --prefix node_modules/@fishawack/core/",
10
- "production": "npm run production --prefix node_modules/@fishawack/core/ && npm run story:build",
11
- "test": "npm test --prefix node_modules/@fishawack/core/",
12
- "package": "npm run package --prefix node_modules/@fishawack/core/",
13
- "deploy": "npm run deploy --prefix node_modules/@fishawack/core/",
14
- "mail": "npm run mail --prefix node_modules/@fishawack/core/",
15
- "story:dev": "histoire dev",
16
- "story:build": "histoire build",
17
- "preversion": "cp -r _Build/sass/** ./ && cp -r _Build/vue/components/** ./ && cp -r _Build/vue/modules/AuthModule ./"
18
- },
19
- "license": "BSD-3-Clause",
20
- "author": {
21
- "name": "Fishawack",
22
- "url": "https://fishawack.com/"
23
- },
24
- "keywords": [
25
- "css",
26
- "components"
27
- ],
28
- "devDependencies": {
29
- "@fishawack/core": "^8.16.1",
30
- "@fishawack/lab-ui": "^12.5.0",
31
- "@histoire/plugin-vue": "^0.17.17",
32
- "@vitejs/plugin-vue": "^5.1.1",
33
- "histoire": "^0.17.17",
34
- "sass": "^1.77.8",
35
- "vite": "^5.3.5",
36
- "vite-svg-loader": "^5.1.0",
37
- "vue": "^3.4.34",
38
- "vue-loader": "^17.2.2",
39
- "vue-router": "^4.4.0",
40
- "vuex": "^4.1.0",
41
- "vuex-persistedstate": "^4.1.0",
42
- "form-backend-validation": "github:mikemellor11/form-backend-validation#master",
43
- "mitt": "^3.0.1"
44
- },
45
- "dependencies": {
46
- "@tiptap/extension-link": "^2.11.2",
47
- "@tiptap/extension-subscript": "^2.11.2",
48
- "@tiptap/extension-superscript": "^2.11.2",
49
- "@tiptap/extension-table": "^2.11.2",
50
- "@tiptap/extension-table-cell": "^2.11.2",
51
- "@tiptap/extension-table-header": "^2.11.2",
52
- "@tiptap/extension-table-row": "^2.11.2",
53
- "@tiptap/extension-underline": "^2.11.2",
54
- "@tiptap/pm": "^2.11.2",
55
- "@tiptap/starter-kit": "^2.11.2",
56
- "@tiptap/vue-3": "^2.11.2",
57
- "element-plus": "^2.7.8",
58
- "quill": "^1.3.7",
59
- "sanitize-html": "^2.13.1"
60
- },
61
- "files": [
62
- "*.scss",
63
- "*.vue",
64
- "form",
65
- "components",
66
- "layout",
67
- "navigation",
68
- "basic",
69
- "modules",
70
- "AuthModule"
71
- ],
72
- "main": "index.js",
73
- "release": {
74
- "plugins": [
75
- [
76
- "@semantic-release/commit-analyzer",
77
- {
78
- "preset": "conventionalcommits"
79
- }
80
- ],
81
- [
82
- "@semantic-release/release-notes-generator",
83
- {
84
- "preset": "conventionalcommits",
85
- "writerOpts": {
86
- "headerPartial": "### {{version}} ({{date}})\n",
87
- "mainTemplate": "{{> header}}\n{{#each commitGroups}}\n\n{{#if title}}\n#### {{title}}\n\n{{/if}}\n{{#each commits}}\n{{> commit root=@root}}\n{{/each}}\n{{/each}}"
88
- },
89
- "presetConfig": {
90
- "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commits/{{hash}}"
91
- }
92
- }
93
- ],
94
- [
95
- "@semantic-release/changelog",
96
- {
97
- "changelogTitle": "## Changelog"
98
- }
99
- ],
100
- "@semantic-release/npm",
101
- "@semantic-release/git"
102
- ]
103
- }
2
+ "name": "@fishawack/lab-velocity",
3
+ "version": "2.0.0-beta.10",
4
+ "description": "Avalere Health branded style system",
5
+ "scripts": {
6
+ "setup": "npm ci || npm i && npm run content",
7
+ "content": "npm run content --prefix node_modules/@fishawack/core/",
8
+ "start": "npm run production && npm run story:dev",
9
+ "start-modules": "npm start --prefix node_modules/@fishawack/core/",
10
+ "production": "npm run production --prefix node_modules/@fishawack/core/ && npm run story:build",
11
+ "test": "npm test --prefix node_modules/@fishawack/core/",
12
+ "package": "npm run package --prefix node_modules/@fishawack/core/",
13
+ "deploy": "npm run deploy --prefix node_modules/@fishawack/core/",
14
+ "mail": "npm run mail --prefix node_modules/@fishawack/core/",
15
+ "story:dev": "histoire dev",
16
+ "story:build": "histoire build",
17
+ "preversion": "cp -r _Build/sass/** ./"
18
+ },
19
+ "license": "BSD-3-Clause",
20
+ "author": {
21
+ "name": "Fishawack",
22
+ "url": "https://fishawack.com/"
23
+ },
24
+ "keywords": [
25
+ "css",
26
+ "components"
27
+ ],
28
+ "devDependencies": {
29
+ "@fishawack/core": "^8.16.1",
30
+ "@fishawack/lab-ui": "^12.5.0",
31
+ "@histoire/plugin-vue": "^0.17.17",
32
+ "@vitejs/plugin-vue": "^5.1.1",
33
+ "histoire": "^0.17.17",
34
+ "mitt": "^3.0.1",
35
+ "sass": "^1.77.8",
36
+ "vite": "^5.3.5",
37
+ "vite-svg-loader": "^5.1.0",
38
+ "vue": "^3.4.34",
39
+ "vue-loader": "^17.2.2",
40
+ "vue-router": "^4.4.0",
41
+ "vuex": "^4.1.0",
42
+ "vuex-persistedstate": "^4.1.0"
43
+ },
44
+ "dependencies": {
45
+ "@tiptap/extension-link": "^2.11.2",
46
+ "@tiptap/extension-subscript": "^2.11.2",
47
+ "@tiptap/extension-superscript": "^2.11.2",
48
+ "@tiptap/extension-table": "^2.11.2",
49
+ "@tiptap/extension-table-cell": "^2.11.2",
50
+ "@tiptap/extension-table-header": "^2.11.2",
51
+ "@tiptap/extension-table-row": "^2.11.2",
52
+ "@tiptap/extension-underline": "^2.11.2",
53
+ "@tiptap/pm": "^2.11.2",
54
+ "@tiptap/starter-kit": "^2.11.2",
55
+ "@tiptap/vue-3": "^2.11.2",
56
+ "axios": "^1.11.0",
57
+ "element-plus": "^2.7.8",
58
+ "form-backend-validation": "github:mikemellor11/form-backend-validation#master",
59
+ "lodash": "^4.17.21",
60
+ "quill": "^1.3.7",
61
+ "sanitize-html": "^2.13.1"
62
+ },
63
+ "files": [
64
+ "*.scss",
65
+ "components",
66
+ "_Build/vue/components",
67
+ "_Build/vue/modules/AuthModule"
68
+ ],
69
+ "main": "index.js",
70
+ "release": {
71
+ "plugins": [
72
+ [
73
+ "@semantic-release/commit-analyzer",
74
+ {
75
+ "preset": "conventionalcommits"
76
+ }
77
+ ],
78
+ [
79
+ "@semantic-release/release-notes-generator",
80
+ {
81
+ "preset": "conventionalcommits",
82
+ "writerOpts": {
83
+ "headerPartial": "### {{version}} ({{date}})\n",
84
+ "mainTemplate": "{{> header}}\n{{#each commitGroups}}\n\n{{#if title}}\n#### {{title}}\n\n{{/if}}\n{{#each commits}}\n{{> commit root=@root}}\n{{/each}}\n{{/each}}"
85
+ },
86
+ "presetConfig": {
87
+ "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commits/{{hash}}"
88
+ }
89
+ }
90
+ ],
91
+ [
92
+ "@semantic-release/changelog",
93
+ {
94
+ "changelogTitle": "## Changelog"
95
+ }
96
+ ],
97
+ "@semantic-release/npm",
98
+ [
99
+ "@semantic-release/git",
100
+ {
101
+ "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
102
+ }
103
+ ]
104
+ ]
105
+ }
104
106
  }