jobdone-shared-files 0.0.1-beta.21 → 0.0.1-beta.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jobdone-shared-files",
3
- "version": "0.0.1-beta.21",
3
+ "version": "0.0.1-beta.23",
4
4
  "description": "Shared JS and SCSS for Jobdone Enterprise.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -556,10 +556,10 @@ $border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3
556
556
  // fusv-enable
557
557
 
558
558
  // scss-docs-start box-shadow-variables
559
- $box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
560
- $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
561
- $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
562
- $box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;
559
+ $box-shadow: 0 .5rem 1rem rgba($gray-800, .15) !default;
560
+ $box-shadow-sm: 0 .125rem .25rem rgba($gray-800, .075) !default;
561
+ $box-shadow-lg: 0 1rem 3rem rgba($gray-800, .175) !default;
562
+ $box-shadow-inset: inset 0 1px 2px rgba($gray-800, .075) !default;
563
563
  // scss-docs-end box-shadow-variables
564
564
 
565
565
  $component-active-color: $white !default;
@@ -829,11 +829,11 @@ $btn-font-size-lg: $input-btn-font-size-lg !default;
829
829
  $btn-border-width: $input-btn-border-width !default;
830
830
 
831
831
  $btn-font-weight: $font-weight-normal !default;
832
- $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
832
+ $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($gray-800, .075) !default;
833
833
  $btn-focus-width: $input-btn-focus-width !default;
834
834
  $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
835
835
  $btn-disabled-opacity: .4 !default;
836
- $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
836
+ $btn-active-box-shadow: inset 0 3px 5px rgba($gray-800, .125) !default;
837
837
 
838
838
  $btn-link-color: var(--#{$prefix}link-color) !default;
839
839
  $btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
package/treeItem.vue CHANGED
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <li class="tree-item" :class="[itemClass]">
3
3
  <div class="card flex-row d-flex input-group flex-nowrap">
4
- <button class="btn text-primary border-end px-1" :disabled="!item.children" data-bs-toggle="collapse" :data-bs-target="'#collapse-'+item.id">
4
+ <button type="button" class="btn text-primary border-end px-1" :disabled="!item.children" data-bs-toggle="collapse" :data-bs-target="'#collapse-'+item.id">
5
5
  <span class="material-icons">arrow_drop_down</span>
6
6
  </button>
7
7
  <input type="radio" name="tree-item" :id="item.id">