@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.
- package/README.md +177 -49
- package/_Build/vue/components/Icon.vue +33 -0
- package/_Build/vue/components/Svg.vue +45 -0
- package/{basic → _Build/vue/components/basic}/Button.vue +17 -19
- package/{basic → _Build/vue/components/basic}/link.vue +8 -7
- package/{form → _Build/vue/components/form}/Cascader.vue +13 -13
- package/{form → _Build/vue/components/form}/CheckboxGroup.vue +28 -6
- package/{form → _Build/vue/components/form}/DatePicker.vue +23 -7
- package/{form → _Build/vue/components/form}/InputNumber.vue +1 -2
- package/{form → _Build/vue/components/form}/Select.vue +10 -11
- package/_Build/vue/components/form/Spinner.vue +5 -0
- package/{form → _Build/vue/components/form}/Switch.vue +2 -2
- package/{form → _Build/vue/components/form}/Upload.vue +4 -6
- package/{form → _Build/vue/components/form}/Wysiwyg.vue +14 -14
- package/_Build/vue/components/form/Wysiwyg2.vue +577 -0
- package/{form → _Build/vue/components/form}/basic.vue +25 -7
- package/{form → _Build/vue/components/form}/file.vue +1 -1
- package/{form → _Build/vue/components/form}/input.js +2 -2
- package/{form → _Build/vue/components/form}/input.vue +31 -11
- package/{layout → _Build/vue/components/layout}/Alert.vue +10 -10
- package/_Build/vue/components/layout/Footer.vue +50 -0
- package/{layout → _Build/vue/components/layout}/Header.vue +5 -7
- package/_Build/vue/components/layout/Loader.vue +59 -0
- package/{layout → _Build/vue/components/layout}/Tooltip.vue +12 -12
- package/{layout → _Build/vue/components/layout}/pageTitle.vue +4 -4
- package/{layout → _Build/vue/components/layout}/sideBar.vue +4 -6
- package/{navigation → _Build/vue/components/navigation}/Breadcrumbs.vue +15 -10
- package/{navigation → _Build/vue/components/navigation}/BreadcrumbsItem.vue +6 -6
- package/_Build/vue/components/navigation/Menu.vue +14 -0
- package/_Build/vue/components/navigation/MenuItem.vue +20 -0
- package/_Build/vue/components/navigation/MenuItemGroup.vue +20 -0
- package/_Build/vue/components/navigation/SubMenu.vue +20 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/Upload/upload.vue +259 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/create.vue +62 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/edit.vue +98 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/index.vue +90 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/partials/form.vue +181 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/Children/show.vue +267 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PCompanies/parent.vue +36 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/create.vue +113 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/edit.vue +101 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/index.vue +112 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/partials/form.vue +174 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/Children/show.vue +123 -0
- package/_Build/vue/modules/AuthModule/adminRoutes/PUsers/parent.vue +36 -0
- package/{AuthModule → _Build/vue/modules/AuthModule}/components/AuthModal.vue +30 -35
- package/_Build/vue/modules/AuthModule/components/Chip.vue +70 -0
- package/_Build/vue/modules/AuthModule/components/Chips.vue +26 -0
- package/_Build/vue/modules/AuthModule/components/FormRole.vue +117 -0
- package/_Build/vue/modules/AuthModule/components/VBreadcrumbs.vue +33 -0
- package/_Build/vue/modules/AuthModule/components/VFormFooter.vue +52 -0
- package/_Build/vue/modules/AuthModule/components/VPageHeader.vue +38 -0
- package/_Build/vue/modules/AuthModule/components/VPasswordValidation.vue +106 -0
- package/_Build/vue/modules/AuthModule/components/VRoleLegend.vue +43 -0
- package/_Build/vue/modules/AuthModule/components/VTable.vue +136 -0
- package/_Build/vue/modules/AuthModule/components/VTableSorter.vue +252 -0
- package/_Build/vue/modules/AuthModule/js/FakeAPI.js +78 -0
- package/_Build/vue/modules/AuthModule/js/axios.js +81 -0
- package/_Build/vue/modules/AuthModule/js/router.js +295 -0
- package/_Build/vue/modules/AuthModule/js/store.js +62 -0
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/account-exists.vue +6 -8
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/change-password.vue +39 -38
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/container.vue +4 -8
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/expired-reset.vue +17 -15
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/expired-verification.vue +21 -20
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/force-reset.vue +45 -40
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/forgot.vue +15 -11
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/login.vue +27 -26
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/logincallback.vue +6 -13
- package/_Build/vue/modules/AuthModule/routes/loginheadless.vue +21 -0
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/loginsso.vue +34 -29
- package/_Build/vue/modules/AuthModule/routes/logout.vue +19 -0
- package/_Build/vue/modules/AuthModule/routes/logoutheadless.vue +25 -0
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/register.vue +52 -37
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/reset.vue +29 -19
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/success-forgot.vue +22 -19
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/success-reset.vue +6 -6
- package/_Build/vue/modules/AuthModule/routes/success-verify.vue +30 -0
- package/{AuthModule → _Build/vue/modules/AuthModule}/routes/verify.vue +26 -26
- package/_base.scss +0 -1
- package/_defaults.scss +3 -15
- package/_variables.scss +24 -21
- package/components/_alert.scss +2 -2
- package/components/_auth.scss +163 -0
- package/components/_basic.scss +5 -4
- package/components/_breadcrumbs.scss +7 -8
- package/components/_button.scss +11 -12
- package/components/_cascader.scss +1 -1
- package/components/_checkbox.scss +27 -26
- package/components/_chip.scss +24 -0
- package/components/_collapse.scss +2 -3
- package/components/_datepicker.scss +7 -6
- package/components/_footer.scss +1 -1
- package/components/_form.scss +6 -4
- package/components/_header.scss +4 -5
- package/components/_icon.scss +4 -3
- package/components/_inputNumber.scss +4 -3
- package/components/_link.scss +7 -7
- package/components/_loader.scss +3 -4
- package/components/_menu.scss +22 -22
- package/{modules → components}/_modal.scss +3 -3
- package/components/_pageTitle.scss +3 -3
- package/components/_permissionLegend.scss +18 -0
- package/components/_select.scss +3 -2
- package/components/_sidebar.scss +5 -6
- package/components/_switch.scss +2 -2
- package/components/_table.scss +3 -3
- package/components/_tooltip.scss +2 -2
- package/components/_typography.scss +71 -62
- package/components/_upload.scss +1 -1
- package/components/_wysiwyg.scss +3 -2
- package/components/_wysiwyg2.scss +37 -31
- package/general.scss +1 -2
- package/index.js +38 -30
- package/package.json +104 -102
- package/vendor.scss +2 -3
- package/AuthModule/components/VPasswordValidation.vue +0 -66
- package/AuthModule/js/AuthAxios.js +0 -59
- package/AuthModule/js/AuthRoutes.js +0 -186
- package/AuthModule/js/AuthStore.js +0 -99
- package/AuthModule/js/FakeAPI.js +0 -84
- package/AuthModule/routes/loginheadless.vue +0 -16
- package/AuthModule/routes/logout.vue +0 -21
- package/AuthModule/routes/success-verify.vue +0 -29
- package/Icon.vue +0 -33
- package/Svg.vue +0 -40
- package/components/_input.scss +0 -0
- package/form/Wysiwyg2.vue +0 -278
- package/layout/Footer.vue +0 -35
- package/layout/Loader.vue +0 -39
- package/modules/_AuthModule.scss +0 -209
- package/modules/_AuthVariables.scss +0 -7
- package/navigation/Menu.vue +0 -16
- package/navigation/MenuItem.vue +0 -20
- package/navigation/MenuItemGroup.vue +0 -20
- package/navigation/SubMenu.vue +0 -20
- /package/{form → _Build/vue/components/form}/Checkbox.vue +0 -0
- /package/{form → _Build/vue/components/form}/color.vue +0 -0
package/components/_tooltip.scss
CHANGED
|
@@ -2,119 +2,128 @@
|
|
|
2
2
|
/* Primary font
|
|
3
3
|
-------------------------------------------------- */
|
|
4
4
|
@font-face {
|
|
5
|
-
font-family
|
|
6
|
-
font-weight
|
|
7
|
-
font-style
|
|
5
|
+
font-family: $primaryFont;
|
|
6
|
+
font-weight: 400;
|
|
7
|
+
font-style: normal;
|
|
8
8
|
|
|
9
|
-
src
|
|
10
|
-
resolve($primaryFontRegular +
|
|
11
|
-
resolve($primaryFontRegular +
|
|
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
|
|
16
|
-
font-weight
|
|
17
|
-
font-style
|
|
15
|
+
font-family: $primaryFont;
|
|
16
|
+
font-weight: 100;
|
|
17
|
+
font-style: normal;
|
|
18
18
|
|
|
19
|
-
src
|
|
20
|
-
resolve($primaryFontThin +
|
|
21
|
-
resolve($primaryFontThin +
|
|
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
|
|
26
|
-
font-weight
|
|
27
|
-
font-style
|
|
25
|
+
font-family: $primaryFont;
|
|
26
|
+
font-weight: 200;
|
|
27
|
+
font-style: normal;
|
|
28
28
|
|
|
29
|
-
src
|
|
30
|
-
resolve($primaryFontExtraLight +
|
|
31
|
-
resolve($primaryFontExtraLight +
|
|
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
|
|
36
|
-
font-weight
|
|
37
|
-
font-style
|
|
35
|
+
font-family: $primaryFont;
|
|
36
|
+
font-weight: 300;
|
|
37
|
+
font-style: normal;
|
|
38
38
|
|
|
39
|
-
src
|
|
40
|
-
resolve($primaryFontLight +
|
|
41
|
-
resolve($primaryFontLight +
|
|
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
|
|
46
|
-
font-weight
|
|
47
|
-
font-style
|
|
45
|
+
font-family: $primaryFont;
|
|
46
|
+
font-weight: 500;
|
|
47
|
+
font-style: normal;
|
|
48
48
|
|
|
49
|
-
src
|
|
50
|
-
resolve($primaryFontMedium +
|
|
51
|
-
resolve($primaryFontMedium +
|
|
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
|
|
56
|
-
font-weight
|
|
57
|
-
font-style
|
|
55
|
+
font-family: $primaryFont;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
font-style: normal;
|
|
58
58
|
|
|
59
|
-
src
|
|
60
|
-
resolve($primaryFontSemiBold +
|
|
61
|
-
resolve($primaryFontSemiBold +
|
|
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
|
|
66
|
-
font-weight
|
|
67
|
-
font-style
|
|
65
|
+
font-family: $primaryFont;
|
|
66
|
+
font-weight: 700;
|
|
67
|
+
font-style: normal;
|
|
68
68
|
|
|
69
|
-
src
|
|
70
|
-
resolve($primaryFontBold +
|
|
71
|
-
resolve($primaryFontBold +
|
|
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
|
|
78
|
-
font-weight
|
|
79
|
-
font-style
|
|
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
|
|
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,
|
|
89
|
+
h2,
|
|
90
|
+
.h2 {
|
|
93
91
|
font-size: get-ratio(36px);
|
|
94
92
|
line-height: get-ratio(48px);
|
|
95
|
-
font-family
|
|
93
|
+
font-family: $secondaryFont;
|
|
96
94
|
}
|
|
97
95
|
|
|
98
|
-
h3,
|
|
96
|
+
h3,
|
|
97
|
+
.h3 {
|
|
99
98
|
font-size: get-ratio(32px);
|
|
100
99
|
line-height: get-ratio(42px);
|
|
101
|
-
font-family
|
|
100
|
+
font-family: $primaryFont;
|
|
102
101
|
}
|
|
103
102
|
|
|
104
|
-
h4,
|
|
103
|
+
h4,
|
|
104
|
+
.h4 {
|
|
105
105
|
font-size: get-ratio(24px);
|
|
106
106
|
line-height: get-ratio(32px);
|
|
107
|
-
font-family
|
|
107
|
+
font-family: $primaryFont;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
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
|
|
115
|
+
font-family: $primaryFont;
|
|
115
116
|
}
|
|
116
|
-
h1
|
|
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
|
|
161
|
+
font-family: $primaryFont;
|
|
153
162
|
}
|
package/components/_upload.scss
CHANGED
package/components/_wysiwyg.scss
CHANGED
|
@@ -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,
|
|
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
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
// border: solid 1px $color1;
|
|
92
|
+
background-color: transparent;
|
|
93
|
+
// cursor: pointer;
|
|
93
94
|
|
|
94
|
-
|
|
95
|
-
|
|
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,
|
|
104
|
-
|
|
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
|
|
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,
|
|
134
|
-
|
|
137
|
+
&:active,
|
|
138
|
+
&:focus-within,
|
|
139
|
+
&.selectedCell {
|
|
140
|
+
background-color: transparentize($color: $color5, $amount: 0.8);
|
|
135
141
|
}
|
|
136
142
|
}
|
package/general.scss
CHANGED
package/index.js
CHANGED
|
@@ -1,34 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
|
18
|
-
export { default as
|
|
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
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
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 {
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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
|
}
|