blue-web 1.21.1 → 1.21.2

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 (73) hide show
  1. package/LICENSE +164 -164
  2. package/README.md +74 -74
  3. package/dist/js/actions.d.ts +6 -6
  4. package/dist/js/color-mode.d.ts +4 -4
  5. package/dist/js/dialog.d.ts +18 -18
  6. package/dist/js/edit-view.d.ts +14 -14
  7. package/dist/js/edit-view.js +2 -2
  8. package/dist/js/input-splitted.d.ts +19 -19
  9. package/dist/js/odometer.d.ts +30 -30
  10. package/dist/js/odometer.js +8 -8
  11. package/dist/js/progress.d.ts +2 -2
  12. package/dist/js/read-view.d.ts +35 -35
  13. package/dist/js/read-view.js +18 -18
  14. package/dist/js/select-list.d.ts +46 -46
  15. package/dist/js/select-list.js +17 -17
  16. package/dist/js/shared.d.ts +14 -14
  17. package/dist/js/side-layout.d.ts +7 -7
  18. package/dist/js/utils.d.ts +18 -18
  19. package/dist/js/utils.js +6 -6
  20. package/dist/merged.scss +2170 -2170
  21. package/dist/neu.scss +92 -92
  22. package/dist/style.css +1 -1
  23. package/dist/style.min.css +1 -1
  24. package/dist/style.scss +62 -62
  25. package/dist/styles/_action-menu.scss +57 -57
  26. package/dist/styles/_actions.scss +37 -37
  27. package/dist/styles/_anchor.scss +42 -42
  28. package/dist/styles/_bootstrap-mixins_overwritten.scss +106 -106
  29. package/dist/styles/_bootstrap-variables.scss +46 -46
  30. package/dist/styles/_bootstrap.scss +64 -64
  31. package/dist/styles/_button-icon-wrapper.scss +28 -28
  32. package/dist/styles/_buttons.scss +120 -120
  33. package/dist/styles/_collapse.scss +72 -72
  34. package/dist/styles/_container-grid.scss +52 -52
  35. package/dist/styles/_devexpress.scss +104 -104
  36. package/dist/styles/_general.scss +55 -55
  37. package/dist/styles/_hover.scss +37 -37
  38. package/dist/styles/_input-group.scss +29 -29
  39. package/dist/styles/_inter.scss +19 -19
  40. package/dist/styles/_intro.scss +22 -22
  41. package/dist/styles/_keyframes.scss +73 -73
  42. package/dist/styles/_layout.scss +175 -175
  43. package/dist/styles/_menu-item.scss +86 -86
  44. package/dist/styles/_mixins.scss +6 -6
  45. package/dist/styles/_modal.scss +118 -118
  46. package/dist/styles/_page-header.scss +14 -14
  47. package/dist/styles/_scrollspy.scss +78 -78
  48. package/dist/styles/_status.scss +131 -131
  49. package/dist/styles/_text-icons.scss +15 -15
  50. package/dist/styles/_tooltips.scss +150 -150
  51. package/dist/styles/_utils.scss +20 -20
  52. package/dist/styles/_variables.scss +128 -128
  53. package/dist/styles/mixins/_action-menu.scss +64 -64
  54. package/dist/styles/mixins/_custom-property.scss +10 -10
  55. package/dist/styles/mixins/_menu-item.scss +136 -136
  56. package/dist/styles/mixins/_misc.scss +7 -7
  57. package/dist/styles/mixins/_scroll-shadow.scss +9 -9
  58. package/dist/styles/mixins/_switch.scss +91 -91
  59. package/package.json +88 -88
  60. package/dist/container-grid.css +0 -196
  61. package/dist/js/auto-theme.bundle.js +0 -1
  62. package/dist/js/auto-theme.d.ts +0 -26
  63. package/dist/js/auto-theme.js +0 -169
  64. package/dist/js/button.bundle.js +0 -1
  65. package/dist/js/button.d.ts +0 -6
  66. package/dist/js/button.js +0 -16
  67. package/dist/js/dialog.bundle.js.LICENSE.txt +0 -5
  68. package/dist/js/dxf-viewer.js +0 -129
  69. package/dist/js/searchbox.bundle.js +0 -2
  70. package/dist/js/searchbox.bundle.js.LICENSE.txt +0 -11
  71. package/dist/js/searchbox.d.ts +0 -16
  72. package/dist/js/searchbox.js +0 -158
  73. package/dist/tailwind-main.css +0 -737
@@ -1,106 +1,106 @@
1
- /**
2
- * This will overwrite button-variant mixin from Bootstrap: On hover buttons will get lighter instead of darker
3
- */
4
-
5
- @mixin button-variant(
6
- $background,
7
- $border,
8
- $color: color-contrast($background),
9
- $hover-background:
10
- if(
11
- $color == $color-contrast-light,
12
- tint-color($background, $btn-hover-bg-tint-amount),
13
- shade-color($background, $btn-hover-bg-shade-amount)
14
- ),
15
- $hover-border:
16
- if(
17
- $color == $color-contrast-light,
18
- tint-color($border, $btn-hover-border-tint-amount),
19
- shade-color($border, $btn-hover-border-shade-amount)
20
- ),
21
- $hover-color: color-contrast($background),
22
- $active-background:
23
- if(
24
- $color == $color-contrast-light,
25
- shade-color($background, $btn-active-bg-shade-amount),
26
- tint-color($background, $btn-active-bg-tint-amount)
27
- ),
28
- $active-border:
29
- if(
30
- $color == $color-contrast-light,
31
- shade-color($border, $btn-active-border-shade-amount),
32
- tint-color($border, $btn-active-border-tint-amount)
33
- ),
34
- $active-color: color-contrast($active-background),
35
- $disabled-background: $background,
36
- $disabled-border: $border,
37
- $disabled-color: color-contrast($disabled-background)
38
- ) {
39
- color: $color;
40
- @include gradient-bg($background);
41
- border-color: $border;
42
- @include box-shadow($btn-box-shadow);
43
-
44
- &:hover {
45
- color: $hover-color;
46
- @include gradient-bg($hover-background);
47
- border-color: $hover-border;
48
- }
49
-
50
- .btn-check:focus + &,
51
- &:focus {
52
- color: $hover-color;
53
- @include gradient-bg($hover-background);
54
- border-color: $hover-border;
55
- @if $enable-shadows {
56
- @include box-shadow(
57
- $btn-box-shadow,
58
- 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), 0.5)
59
- );
60
- } @else {
61
- // Avoid using mixin so we can pass custom focus shadow properly
62
- box-shadow: 0
63
- 0
64
- 0
65
- $btn-focus-width
66
- rgba(mix($color, $border, 15%), 0.5);
67
- }
68
- }
69
-
70
- .btn-check:checked + &,
71
- .btn-check:active + &,
72
- &:active,
73
- &.active,
74
- .show > &.dropdown-toggle {
75
- color: $active-color;
76
- background-color: $active-background;
77
- // Remove CSS gradients if they're enabled
78
- background-image: if($enable-gradients, none, null);
79
- border-color: $active-border;
80
-
81
- &:focus {
82
- @if $enable-shadows {
83
- @include box-shadow(
84
- $btn-active-box-shadow,
85
- 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), 0.5)
86
- );
87
- } @else {
88
- // Avoid using mixin so we can pass custom focus shadow properly
89
- box-shadow: 0
90
- 0
91
- 0
92
- $btn-focus-width
93
- rgba(mix($color, $border, 15%), 0.5);
94
- }
95
- }
96
- }
97
-
98
- &:disabled,
99
- &.disabled {
100
- color: $disabled-color;
101
- background-color: $disabled-background;
102
- // Remove CSS gradients if they're enabled
103
- background-image: if($enable-gradients, none, null);
104
- border-color: $disabled-border;
105
- }
106
- }
1
+ /**
2
+ * This will overwrite button-variant mixin from Bootstrap: On hover buttons will get lighter instead of darker
3
+ */
4
+
5
+ @mixin button-variant(
6
+ $background,
7
+ $border,
8
+ $color: color-contrast($background),
9
+ $hover-background:
10
+ if(
11
+ $color == $color-contrast-light,
12
+ tint-color($background, $btn-hover-bg-tint-amount),
13
+ shade-color($background, $btn-hover-bg-shade-amount)
14
+ ),
15
+ $hover-border:
16
+ if(
17
+ $color == $color-contrast-light,
18
+ tint-color($border, $btn-hover-border-tint-amount),
19
+ shade-color($border, $btn-hover-border-shade-amount)
20
+ ),
21
+ $hover-color: color-contrast($background),
22
+ $active-background:
23
+ if(
24
+ $color == $color-contrast-light,
25
+ shade-color($background, $btn-active-bg-shade-amount),
26
+ tint-color($background, $btn-active-bg-tint-amount)
27
+ ),
28
+ $active-border:
29
+ if(
30
+ $color == $color-contrast-light,
31
+ shade-color($border, $btn-active-border-shade-amount),
32
+ tint-color($border, $btn-active-border-tint-amount)
33
+ ),
34
+ $active-color: color-contrast($active-background),
35
+ $disabled-background: $background,
36
+ $disabled-border: $border,
37
+ $disabled-color: color-contrast($disabled-background)
38
+ ) {
39
+ color: $color;
40
+ @include gradient-bg($background);
41
+ border-color: $border;
42
+ @include box-shadow($btn-box-shadow);
43
+
44
+ &:hover {
45
+ color: $hover-color;
46
+ @include gradient-bg($hover-background);
47
+ border-color: $hover-border;
48
+ }
49
+
50
+ .btn-check:focus + &,
51
+ &:focus {
52
+ color: $hover-color;
53
+ @include gradient-bg($hover-background);
54
+ border-color: $hover-border;
55
+ @if $enable-shadows {
56
+ @include box-shadow(
57
+ $btn-box-shadow,
58
+ 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), 0.5)
59
+ );
60
+ } @else {
61
+ // Avoid using mixin so we can pass custom focus shadow properly
62
+ box-shadow: 0
63
+ 0
64
+ 0
65
+ $btn-focus-width
66
+ rgba(mix($color, $border, 15%), 0.5);
67
+ }
68
+ }
69
+
70
+ .btn-check:checked + &,
71
+ .btn-check:active + &,
72
+ &:active,
73
+ &.active,
74
+ .show > &.dropdown-toggle {
75
+ color: $active-color;
76
+ background-color: $active-background;
77
+ // Remove CSS gradients if they're enabled
78
+ background-image: if($enable-gradients, none, null);
79
+ border-color: $active-border;
80
+
81
+ &:focus {
82
+ @if $enable-shadows {
83
+ @include box-shadow(
84
+ $btn-active-box-shadow,
85
+ 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), 0.5)
86
+ );
87
+ } @else {
88
+ // Avoid using mixin so we can pass custom focus shadow properly
89
+ box-shadow: 0
90
+ 0
91
+ 0
92
+ $btn-focus-width
93
+ rgba(mix($color, $border, 15%), 0.5);
94
+ }
95
+ }
96
+ }
97
+
98
+ &:disabled,
99
+ &.disabled {
100
+ color: $disabled-color;
101
+ background-color: $disabled-background;
102
+ // Remove CSS gradients if they're enabled
103
+ background-image: if($enable-gradients, none, null);
104
+ border-color: $disabled-border;
105
+ }
106
+ }
@@ -1,46 +1,46 @@
1
- // Main color theme. E.g. used for background for body and sidebar.
2
- $theme: hsl(217deg 10% 94%) !default;
3
- $theme-dark: hsl(217deg 10% 8%) !default;
4
- $primary: hsl(221, 97%, 53%) !default;
5
- $white: #fff !default;
6
- $gray-100: hsl(217deg 17% 98%) !default;
7
- $gray-200: hsl(217deg 16% 93%) !default;
8
- $gray-300: hsl(217deg 14% 89%) !default;
9
- $gray-400: hsl(217deg 14% 83%) !default;
10
- $gray-500: hsl(217deg 11% 71%) !default;
11
- $gray-600: hsl(217deg 7% 46%) !default;
12
- $gray-700: hsl(217deg 9% 31%) !default;
13
- $gray-800: hsl(217deg 10% 23%) !default;
14
- $gray-900: hsl(217deg 11% 15%) !default;
15
- $black: #000 !default;
16
-
17
- $light: #ecedf0 !default;
18
-
19
- // Components
20
- //
21
-
22
- $font-size-base: 1rem !default;
23
-
24
- $h1-font-size: $font-size-base * 2 !default;
25
- $h2-font-size: $font-size-base * 1.5 !default;
26
- $h3-font-size: $font-size-base * 1.25 !default;
27
- $h4-font-size: $font-size-base * 1.125 !default;
28
- $h5-font-size: $font-size-base * 1.1 !default;
29
- $h6-font-size: $font-size-base !default;
30
-
31
- $border-radius: 0.7rem !default;
32
- $border-radius-lg: 1rem !default;
33
- $border-radius-sm: 0.5rem !default;
34
-
35
- $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
36
-
37
- $link-decoration: none !default;
38
- $link-hover-decoration: underline !default;
39
-
40
- // Tint focus border and shadow in primary color.
41
- // In a future Bootstrap release, this might not be necessary anymore.
42
- $focus-ring-color: #{rgba(var(--bs-primary-rgb), 25%)} !default;
43
- $input-focus-border-color: #{rgba(var(--bs-primary-rgb), 50%)} !default;
44
-
45
- $enable-button-pointers: false !default;
46
- $focus-ring-width: 0.125rem !default;
1
+ // Main color theme. E.g. used for background for body and sidebar.
2
+ $theme: hsl(217deg 10% 94%) !default;
3
+ $theme-dark: hsl(217deg 10% 8%) !default;
4
+ $primary: hsl(221, 97%, 53%) !default;
5
+ $white: #fff !default;
6
+ $gray-100: hsl(217deg 17% 98%) !default;
7
+ $gray-200: hsl(217deg 16% 93%) !default;
8
+ $gray-300: hsl(217deg 14% 89%) !default;
9
+ $gray-400: hsl(217deg 14% 83%) !default;
10
+ $gray-500: hsl(217deg 11% 71%) !default;
11
+ $gray-600: hsl(217deg 7% 46%) !default;
12
+ $gray-700: hsl(217deg 9% 31%) !default;
13
+ $gray-800: hsl(217deg 10% 23%) !default;
14
+ $gray-900: hsl(217deg 11% 15%) !default;
15
+ $black: #000 !default;
16
+
17
+ $light: #ecedf0 !default;
18
+
19
+ // Components
20
+ //
21
+
22
+ $font-size-base: 1rem !default;
23
+
24
+ $h1-font-size: $font-size-base * 2 !default;
25
+ $h2-font-size: $font-size-base * 1.5 !default;
26
+ $h3-font-size: $font-size-base * 1.25 !default;
27
+ $h4-font-size: $font-size-base * 1.125 !default;
28
+ $h5-font-size: $font-size-base * 1.1 !default;
29
+ $h6-font-size: $font-size-base !default;
30
+
31
+ $border-radius: 0.7rem !default;
32
+ $border-radius-lg: 1rem !default;
33
+ $border-radius-sm: 0.5rem !default;
34
+
35
+ $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
36
+
37
+ $link-decoration: none !default;
38
+ $link-hover-decoration: underline !default;
39
+
40
+ // Tint focus border and shadow in primary color.
41
+ // In a future Bootstrap release, this might not be necessary anymore.
42
+ $focus-ring-color: #{rgba(var(--bs-primary-rgb), 25%)} !default;
43
+ $input-focus-border-color: #{rgba(var(--bs-primary-rgb), 50%)} !default;
44
+
45
+ $enable-button-pointers: false !default;
46
+ $focus-ring-width: 0.125rem !default;
@@ -1,64 +1,64 @@
1
- @import "node_modules/bootstrap/scss/mixins/banner";
2
- @include bsBanner("");
3
-
4
- // scss-docs-start import-stack
5
- // Configuration
6
- @import "node_modules/bootstrap/scss/functions";
7
- @import "node_modules/bootstrap/scss/variables";
8
- @import "node_modules/bootstrap/scss/variables-dark";
9
- @import "node_modules/bootstrap/scss/maps";
10
- @import "node_modules/bootstrap/scss/mixins";
11
- @import "node_modules/bootstrap/scss/utilities";
12
-
13
- // Layout & components
14
- @import "node_modules/bootstrap/scss/root";
15
- @import "node_modules/bootstrap/scss/reboot";
16
- @import "node_modules/bootstrap/scss/type";
17
- @import "node_modules/bootstrap/scss/images";
18
- @import "node_modules/bootstrap/scss/containers";
19
- @import "node_modules/bootstrap/scss/grid";
20
- @import "node_modules/bootstrap/scss/tables";
21
- @import "node_modules/bootstrap/scss/forms";
22
- @import "node_modules/bootstrap/scss/buttons";
23
- @import "node_modules/bootstrap/scss/transitions";
24
- @import "node_modules/bootstrap/scss/dropdown";
25
- @import "node_modules/bootstrap/scss/button-group";
26
- @import "node_modules/bootstrap/scss/nav";
27
- @import "node_modules/bootstrap/scss/navbar";
28
- @import "node_modules/bootstrap/scss/card";
29
- @import "node_modules/bootstrap/scss/accordion";
30
- @import "node_modules/bootstrap/scss/breadcrumb";
31
- @import "node_modules/bootstrap/scss/pagination";
32
- @import "node_modules/bootstrap/scss/badge";
33
- @import "node_modules/bootstrap/scss/alert";
34
- @import "node_modules/bootstrap/scss/progress";
35
- @import "node_modules/bootstrap/scss/list-group";
36
- @import "node_modules/bootstrap/scss/close";
37
- @import "node_modules/bootstrap/scss/toasts";
38
- @import "node_modules/bootstrap/scss/modal";
39
- @import "node_modules/bootstrap/scss/tooltip";
40
- @import "node_modules/bootstrap/scss/popover";
41
- @import "node_modules/bootstrap/scss/carousel";
42
- @import "node_modules/bootstrap/scss/spinners";
43
- @import "node_modules/bootstrap/scss/offcanvas";
44
- @import "node_modules/bootstrap/scss/placeholders";
45
-
46
- // Helpers
47
- @import "node_modules/bootstrap/scss/helpers";
48
-
49
- // Enable responsive for position
50
- $utilities: map-merge(
51
- $utilities,
52
- (
53
- "position": map-merge(
54
- map-get($utilities, "position"),
55
- (
56
- responsive: true
57
- )
58
- )
59
- )
60
- );
61
-
62
- // Utilities
63
- @import "node_modules/bootstrap/scss/utilities/api";
64
- // scss-docs-end import-stack
1
+ @import "node_modules/bootstrap/scss/mixins/banner";
2
+ @include bsBanner("");
3
+
4
+ // scss-docs-start import-stack
5
+ // Configuration
6
+ @import "node_modules/bootstrap/scss/functions";
7
+ @import "node_modules/bootstrap/scss/variables";
8
+ @import "node_modules/bootstrap/scss/variables-dark";
9
+ @import "node_modules/bootstrap/scss/maps";
10
+ @import "node_modules/bootstrap/scss/mixins";
11
+ @import "node_modules/bootstrap/scss/utilities";
12
+
13
+ // Layout & components
14
+ @import "node_modules/bootstrap/scss/root";
15
+ @import "node_modules/bootstrap/scss/reboot";
16
+ @import "node_modules/bootstrap/scss/type";
17
+ @import "node_modules/bootstrap/scss/images";
18
+ @import "node_modules/bootstrap/scss/containers";
19
+ @import "node_modules/bootstrap/scss/grid";
20
+ @import "node_modules/bootstrap/scss/tables";
21
+ @import "node_modules/bootstrap/scss/forms";
22
+ @import "node_modules/bootstrap/scss/buttons";
23
+ @import "node_modules/bootstrap/scss/transitions";
24
+ @import "node_modules/bootstrap/scss/dropdown";
25
+ @import "node_modules/bootstrap/scss/button-group";
26
+ @import "node_modules/bootstrap/scss/nav";
27
+ @import "node_modules/bootstrap/scss/navbar";
28
+ @import "node_modules/bootstrap/scss/card";
29
+ @import "node_modules/bootstrap/scss/accordion";
30
+ @import "node_modules/bootstrap/scss/breadcrumb";
31
+ @import "node_modules/bootstrap/scss/pagination";
32
+ @import "node_modules/bootstrap/scss/badge";
33
+ @import "node_modules/bootstrap/scss/alert";
34
+ @import "node_modules/bootstrap/scss/progress";
35
+ @import "node_modules/bootstrap/scss/list-group";
36
+ @import "node_modules/bootstrap/scss/close";
37
+ @import "node_modules/bootstrap/scss/toasts";
38
+ @import "node_modules/bootstrap/scss/modal";
39
+ @import "node_modules/bootstrap/scss/tooltip";
40
+ @import "node_modules/bootstrap/scss/popover";
41
+ @import "node_modules/bootstrap/scss/carousel";
42
+ @import "node_modules/bootstrap/scss/spinners";
43
+ @import "node_modules/bootstrap/scss/offcanvas";
44
+ @import "node_modules/bootstrap/scss/placeholders";
45
+
46
+ // Helpers
47
+ @import "node_modules/bootstrap/scss/helpers";
48
+
49
+ // Enable responsive for position
50
+ $utilities: map-merge(
51
+ $utilities,
52
+ (
53
+ "position": map-merge(
54
+ map-get($utilities, "position"),
55
+ (
56
+ responsive: true
57
+ )
58
+ )
59
+ )
60
+ );
61
+
62
+ // Utilities
63
+ @import "node_modules/bootstrap/scss/utilities/api";
64
+ // scss-docs-end import-stack
@@ -1,28 +1,28 @@
1
- // Extending `.icon-link > .bi` by Bootstrap to allow wrapped icons.
2
-
3
- .blue-btn-icon-wrapper {
4
- display: contents;
5
-
6
- & > * {
7
- flex-shrink: 0;
8
- @include transition($icon-link-icon-transition);
9
- }
10
- & > svg {
11
- width: $icon-link-icon-size;
12
- height: $icon-link-icon-size;
13
- fill: currentcolor;
14
- }
15
- }
16
-
17
- .icon-link-hover {
18
- &:hover,
19
- &:focus-visible {
20
- .blue-btn-icon-wrapper > * {
21
- transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform);
22
- }
23
- }
24
- }
25
-
26
- .blue-btn-square {
27
- padding: calc(var(--bs-btn-padding-y) + #{$icon-link-underline-offset});
28
- }
1
+ // Extending `.icon-link > .bi` by Bootstrap to allow wrapped icons.
2
+
3
+ .blue-btn-icon-wrapper {
4
+ display: contents;
5
+
6
+ & > * {
7
+ flex-shrink: 0;
8
+ @include transition($icon-link-icon-transition);
9
+ }
10
+ & > svg {
11
+ width: $icon-link-icon-size;
12
+ height: $icon-link-icon-size;
13
+ fill: currentcolor;
14
+ }
15
+ }
16
+
17
+ .icon-link-hover {
18
+ &:hover,
19
+ &:focus-visible {
20
+ .blue-btn-icon-wrapper > * {
21
+ transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform);
22
+ }
23
+ }
24
+ }
25
+
26
+ .blue-btn-square {
27
+ padding: calc(var(--bs-btn-padding-y) + #{$icon-link-underline-offset});
28
+ }