@fishawack/lab-velocity 0.3.4 → 0.3.6

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,37 +1,39 @@
1
1
  @import "element-plus/theme-chalk/el-breadcrumb";
2
2
  @import "element-plus/theme-chalk/el-breadcrumb-item";
3
+ .vel-breadcrumb {
3
4
 
4
- .el-breadcrumb__separator {
5
- display: none;
6
- margin:0px $spacing;
7
- }
8
-
9
- .el-breadcrumb__separator,
10
- .el-breadcrumb__inner {
11
- font-size: get-ratio(16px);
12
- line-height: get-ratio(24px);
13
- }
14
-
15
- .el-breadcrumb__inner {
16
- &.is-link {
17
- text-decoration: underline;
18
- font-weight: 500;
19
- color: $color2;
20
- text-transform: capitalize;
21
-
22
- &:hover {
23
- color:$color12;
5
+ .el-breadcrumb__separator {
6
+ display: none;
7
+ margin:0px $spacing;
8
+ }
9
+
10
+ .el-breadcrumb__separator,
11
+ .el-breadcrumb__inner {
12
+ font-size: get-ratio(16px);
13
+ line-height: get-ratio(24px);
14
+ }
15
+
16
+ .el-breadcrumb__inner {
17
+ &.is-link {
18
+ text-decoration: underline;
19
+ font-weight: 500;
20
+ color: $color2;
21
+ text-transform: capitalize;
22
+
23
+ &:hover {
24
+ color:$color12;
25
+ }
24
26
  }
25
27
  }
26
- }
27
-
28
- .el-breadcrumb__item {
29
- &:last-child {
30
- .el-breadcrumb__inner {
31
- &.is-link {
32
- color: $color2;
33
- font-weight: 400;
34
- text-decoration: none;
28
+
29
+ .el-breadcrumb__item {
30
+ &:last-child {
31
+ .el-breadcrumb__inner {
32
+ &.is-link {
33
+ color: $color2;
34
+ font-weight: 400;
35
+ text-decoration: none;
36
+ }
35
37
  }
36
38
  }
37
39
  }
@@ -1,4 +1,4 @@
1
- header {
1
+ .vel-header {
2
2
  border-bottom: solid get-ratio(1px) $color4;
3
3
  background-color: $color0;
4
4
  width: 100%;
@@ -13,7 +13,7 @@ header {
13
13
  }
14
14
  }
15
15
 
16
- .header--list {
16
+ .vel-header__list {
17
17
  > div {
18
18
  align-items: center;
19
19
  &:not(:last-child) {
@@ -8,7 +8,7 @@ ul.el-menu--vertical {
8
8
  }
9
9
 
10
10
  a {
11
- padding: 1.5* $spacing 2.5 $spacing;
11
+ padding: 1.5 * $spacing 2.5 * $spacing;
12
12
  height: 100%;
13
13
  width: 100%;
14
14
  border-left: solid .5 * $spacing $color8;
@@ -1,4 +1,4 @@
1
- .page-title {
1
+ .vel-page-title {
2
2
  padding: 2.5 * $spacing 3 * $spacing;
3
3
  background-color: $color0;
4
4
  border-bottom: .5 * $spacing solid;
@@ -1,4 +1,4 @@
1
- .side-bar {
1
+ .vel-side-bar {
2
2
  flex-basis: $spacing * 7.5;
3
3
  display: flex;
4
4
  flex-direction: column;
@@ -30,7 +30,7 @@
30
30
  }
31
31
  }
32
32
 
33
- .side-bar__button {
33
+ .vel-side-bar__button {
34
34
  outline: none;
35
35
  background-color: transparent;
36
36
  border: none;
package/form/Select.vue CHANGED
@@ -97,9 +97,6 @@ export default {
97
97
  return parseInt(value);
98
98
  }
99
99
  return value;
100
- },
101
- handleInput(value, $event) {
102
- this.$emit('change', value);
103
100
  }
104
101
  },
105
102
 
package/form/wysiwyg.vue CHANGED
@@ -24,6 +24,10 @@ export default {
24
24
  type: Boolean,
25
25
  default: false,
26
26
  },
27
+ baseClass: {
28
+ type: String,
29
+ default: "vel-wysiwyg",
30
+ },
27
31
  },
28
32
 
29
33
  data: () => ({
package/general.scss CHANGED
@@ -18,7 +18,7 @@
18
18
  @import "./components/_sidebar.scss";
19
19
  @import "./components/_typography.scss";
20
20
  @import "./components/_footer.scss";
21
- @import "./components/_navigation.scss";
21
+ @import "./components/_menu.scss";
22
22
  @import "./components/_header.scss";
23
23
  @import "./components/_pageTitle.scss";
24
24
  @import "./components/_form.scss";
package/layout/Footer.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <footer>
2
+ <footer class="vel-footer">
3
3
  <div>
4
4
  <h5 class="color-0 flex items-center">
5
5
  <slot/>
package/layout/Header.vue CHANGED
@@ -1,8 +1,8 @@
1
1
  <template>
2
- <header class="header grid justify-between items-center justify-end-dive grid--1/2 p-1.5">
2
+ <header class="vel-header grid justify-between items-center justify-end-dive grid--1/2 p-1.5">
3
3
  <slot/>
4
4
 
5
- <div class="grid pr-1.5 grid--gutters-x-1.5 header--list">
5
+ <div class="grid pr-1.5 grid--gutters-x-1.5 vel-header__list">
6
6
  <slot name="links"/>
7
7
  </div>
8
8
  </header>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="page-title">
2
+ <div class="vel-page-title">
3
3
  <h2 class="h1" v-html="title" />
4
4
  </div>
5
5
  </template>
@@ -1,11 +1,11 @@
1
1
  <template>
2
- <div class="side-bar" :class="{ active: active }">
2
+ <div class="vel-side-bar" :class="{ active: active }">
3
3
  <div>
4
4
  <slot name="navigation" />
5
5
  </div>
6
6
 
7
7
  <div class="flex justify-end border-t-color-1 border-t-solid py px-1.5">
8
- <button class="side-bar__button pointer" @click="active = !active">
8
+ <button class="vel-side-bar__button pointer" @click="active = !active">
9
9
  <slot name="expand">
10
10
  >
11
11
  </slot>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <el-breadcrumb :seperator="''">
2
+ <el-breadcrumb class="vel-breadcrumb" :seperator="''">
3
3
  <slot name="default">
4
4
  <template v-for="(crumb,index) in crumbs">
5
5
  <el-breadcrumb-item :to="crumb.href">{{ crumb.text }} </el-breadcrumb-item>
@@ -1,5 +1,6 @@
1
1
  <template>
2
2
  <el-menu
3
+ class="vel-menu"
3
4
  @open="handleOpen"
4
5
  @close="handleClose"
5
6
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-velocity",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "Avalere Health branded style system",
5
5
  "scripts": {
6
6
  "setup": "npm ci || npm i && npm run content",