jobdone-shared-files 1.0.13 → 1.0.16

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 (32) hide show
  1. package/ProjectManagement/projectNavbar.vue +363 -363
  2. package/autocompleteSelect.vue +461 -461
  3. package/common/directives/collapse.js +12 -12
  4. package/common/directives/popovers.js +10 -10
  5. package/common/directives/selectPlaceholder.js +52 -52
  6. package/common/directives/textareaAutoHeight.js +10 -10
  7. package/common/directives/tooltip.js +10 -10
  8. package/common/format.js +26 -26
  9. package/index.js +14 -14
  10. package/lightboxWithOverview.vue +156 -156
  11. package/package.json +19 -19
  12. package/paginate.vue +141 -141
  13. package/style/css/vue-loading-overlay/index.css +40 -40
  14. package/style/scss/Common/Animation.scss +9 -9
  15. package/style/scss/Common/SelectableTable.scss +34 -34
  16. package/style/scss/Common/filepond.scss +31 -31
  17. package/style/scss/Common/thumbnail-group.scss +14 -14
  18. package/style/scss/Layout/LayoutBase.scss +1031 -1031
  19. package/style/scss/Layout/LayoutMobile.scss +206 -206
  20. package/style/scss/Layout/LayoutProject.scss +126 -126
  21. package/style/scss/Layout/LayoutSinglePage.scss +17 -17
  22. package/style/scss/Layout/LayoutTwoColumn.scss +60 -60
  23. package/style/scss/Settings/_Mixins.scss +232 -232
  24. package/style/scss/Settings/_MobileVariables.scss +11 -11
  25. package/style/scss/Settings/_bs-variables-dark.scss +70 -70
  26. package/style/scss/Settings/_bs-variables.scss +1743 -1743
  27. package/style/scss/Settings/_color-mode.scss +122 -122
  28. package/style/scss/Settings/_custom-variables.scss +10 -10
  29. package/tagEditor.vue +249 -249
  30. package/tree.vue +68 -69
  31. package/treeItem.vue +355 -371
  32. package/vueLoadingOverlay.vue +74 -74
@@ -1,70 +1,70 @@
1
- // Dark color mode variables
2
- //
3
- // Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
4
-
5
- //
6
- // Global colors
7
- //
8
-
9
- // scss-docs-start sass-dark-mode-vars
10
- $primary-text-dark: $blue-300 !default;
11
- $secondary-text-dark: $gray-300 !default;
12
- $success-text-dark: $green-300 !default;
13
- $info-text-dark: $cyan-300 !default;
14
- $warning-text-dark: $yellow-300 !default;
15
- $danger-text-dark: $red-300 !default;
16
- $light-text-dark: $gray-100 !default;
17
- $dark-text-dark: $gray-300 !default;
18
-
19
- $primary-bg-subtle-dark: $blue-900 !default;
20
- $secondary-bg-subtle-dark: $gray-900 !default;
21
- $success-bg-subtle-dark: $green-900 !default;
22
- $info-bg-subtle-dark: $cyan-900 !default;
23
- $warning-bg-subtle-dark: $yellow-900 !default;
24
- $danger-bg-subtle-dark: $red-900 !default;
25
- $light-bg-subtle-dark: $gray-800 !default;
26
- $dark-bg-subtle-dark: mix($gray-800, $black) !default;
27
-
28
- $primary-border-subtle-dark: $blue-700 !default;
29
- $secondary-border-subtle-dark: $gray-700 !default;
30
- $success-border-subtle-dark: $green-700 !default;
31
- $info-border-subtle-dark: $cyan-800 !default;
32
- $warning-border-subtle-dark: $yellow-800 !default;
33
- $danger-border-subtle-dark: $red-700 !default;
34
- $light-border-subtle-dark: $gray-700 !default;
35
- $dark-border-subtle-dark: $gray-800 !default;
36
-
37
- $body-color-dark: $gray-500 !default;
38
- $body-bg-dark: $gray-900 !default;
39
- $body-emphasis-color-dark: $gray-100 !default;
40
- $body-secondary-color-dark: rgba($body-color-dark, .75) !default;
41
- $body-secondary-bg-dark: $gray-800 !default;
42
- $body-tertiary-color-dark: rgba($body-color-dark, .5) !default;
43
- $body-tertiary-bg-dark: mix($gray-800, $gray-900, 50%) !default;
44
- $emphasis-color-dark: $white !default;
45
- $border-color-dark: $gray-700 !default;
46
- $border-color-translucent-dark: rgba($white, .15) !default;
47
- $headings-color-dark: #fff !default;
48
- $link-color-dark: $blue-300 !default;
49
- $link-hover-color-dark: $blue-200 !default;
50
- $code-color-dark: $pink-300 !default;
51
-
52
-
53
- //
54
- // Forms
55
- //
56
-
57
- $form-select-indicator-color-dark: $body-color-dark !default;
58
- $form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
59
-
60
- $form-switch-color-dark: rgba($white, .25) !default;
61
- $form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>") !default;
62
-
63
-
64
- //
65
- // Accordion
66
- //
67
-
68
- $accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
69
- $accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
70
- // scss-docs-end sass-dark-mode-vars
1
+ // Dark color mode variables
2
+ //
3
+ // Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
4
+
5
+ //
6
+ // Global colors
7
+ //
8
+
9
+ // scss-docs-start sass-dark-mode-vars
10
+ $primary-text-dark: $blue-300 !default;
11
+ $secondary-text-dark: $gray-300 !default;
12
+ $success-text-dark: $green-300 !default;
13
+ $info-text-dark: $cyan-300 !default;
14
+ $warning-text-dark: $yellow-300 !default;
15
+ $danger-text-dark: $red-300 !default;
16
+ $light-text-dark: $gray-100 !default;
17
+ $dark-text-dark: $gray-300 !default;
18
+
19
+ $primary-bg-subtle-dark: $blue-900 !default;
20
+ $secondary-bg-subtle-dark: $gray-900 !default;
21
+ $success-bg-subtle-dark: $green-900 !default;
22
+ $info-bg-subtle-dark: $cyan-900 !default;
23
+ $warning-bg-subtle-dark: $yellow-900 !default;
24
+ $danger-bg-subtle-dark: $red-900 !default;
25
+ $light-bg-subtle-dark: $gray-800 !default;
26
+ $dark-bg-subtle-dark: mix($gray-800, $black) !default;
27
+
28
+ $primary-border-subtle-dark: $blue-700 !default;
29
+ $secondary-border-subtle-dark: $gray-700 !default;
30
+ $success-border-subtle-dark: $green-700 !default;
31
+ $info-border-subtle-dark: $cyan-800 !default;
32
+ $warning-border-subtle-dark: $yellow-800 !default;
33
+ $danger-border-subtle-dark: $red-700 !default;
34
+ $light-border-subtle-dark: $gray-700 !default;
35
+ $dark-border-subtle-dark: $gray-800 !default;
36
+
37
+ $body-color-dark: $gray-500 !default;
38
+ $body-bg-dark: $gray-900 !default;
39
+ $body-emphasis-color-dark: $gray-100 !default;
40
+ $body-secondary-color-dark: rgba($body-color-dark, .75) !default;
41
+ $body-secondary-bg-dark: $gray-800 !default;
42
+ $body-tertiary-color-dark: rgba($body-color-dark, .5) !default;
43
+ $body-tertiary-bg-dark: mix($gray-800, $gray-900, 50%) !default;
44
+ $emphasis-color-dark: $white !default;
45
+ $border-color-dark: $gray-700 !default;
46
+ $border-color-translucent-dark: rgba($white, .15) !default;
47
+ $headings-color-dark: #fff !default;
48
+ $link-color-dark: $blue-300 !default;
49
+ $link-hover-color-dark: $blue-200 !default;
50
+ $code-color-dark: $pink-300 !default;
51
+
52
+
53
+ //
54
+ // Forms
55
+ //
56
+
57
+ $form-select-indicator-color-dark: $body-color-dark !default;
58
+ $form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
59
+
60
+ $form-switch-color-dark: rgba($white, .25) !default;
61
+ $form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>") !default;
62
+
63
+
64
+ //
65
+ // Accordion
66
+ //
67
+
68
+ $accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
69
+ $accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
70
+ // scss-docs-end sass-dark-mode-vars