claritas-web-framework 6.4.26 → 7.0.0

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 (76) hide show
  1. package/dist/index.css +1 -1
  2. package/package.json +13 -25
  3. package/sass/modules/_modal.scss +1 -0
  4. package/js/polyfills/customevent.js +0 -16
  5. package/postcss.config.js +0 -42
  6. package/styles/helpers/container.css +0 -21
  7. package/styles/helpers/embed.css +0 -70
  8. package/styles/helpers/grid.css +0 -64
  9. package/styles/helpers/image.css +0 -5
  10. package/styles/helpers/link.css +0 -20
  11. package/styles/helpers/screen-readers.css +0 -22
  12. package/styles/helpers/wrap.css +0 -5
  13. package/styles/helpers.css +0 -7
  14. package/styles/index.css +0 -6
  15. package/styles/mixins/caret.css +0 -32
  16. package/styles/mixins/clearfix.css +0 -7
  17. package/styles/mixins/group.css +0 -78
  18. package/styles/mixins/helpers/container.css +0 -12
  19. package/styles/mixins/helpers/grid.css +0 -20
  20. package/styles/mixins/helpers/link.css +0 -18
  21. package/styles/mixins/helpers/wrap.css +0 -7
  22. package/styles/mixins/modules/button.css +0 -91
  23. package/styles/mixins/modules/card.css +0 -29
  24. package/styles/mixins/modules/close.css +0 -42
  25. package/styles/mixins/modules/list.css +0 -24
  26. package/styles/mixins/modules/pill.css +0 -43
  27. package/styles/mixins/modules/table.css +0 -75
  28. package/styles/mixins.css +0 -13
  29. package/styles/modules/alert.css +0 -85
  30. package/styles/modules/breadcrumbs.css +0 -41
  31. package/styles/modules/button.css +0 -151
  32. package/styles/modules/card.css +0 -80
  33. package/styles/modules/close.css +0 -5
  34. package/styles/modules/details.css +0 -61
  35. package/styles/modules/dialog.css +0 -82
  36. package/styles/modules/dropdown.css +0 -126
  37. package/styles/modules/form/checkbox.css +0 -99
  38. package/styles/modules/form/file.css +0 -119
  39. package/styles/modules/form/form-field-group.css +0 -71
  40. package/styles/modules/form/output.css +0 -5
  41. package/styles/modules/form/progress.css +0 -57
  42. package/styles/modules/form/radio.css +0 -49
  43. package/styles/modules/form/range.css +0 -105
  44. package/styles/modules/form/select.css +0 -25
  45. package/styles/modules/form/text.css +0 -19
  46. package/styles/modules/form.css +0 -176
  47. package/styles/modules/list.css +0 -99
  48. package/styles/modules/loader.css +0 -229
  49. package/styles/modules/nav.css +0 -99
  50. package/styles/modules/pill.css +0 -72
  51. package/styles/modules/table.css +0 -21
  52. package/styles/modules/tabs.css +0 -101
  53. package/styles/modules/tag.css +0 -118
  54. package/styles/modules/tile.css +0 -114
  55. package/styles/modules.css +0 -26
  56. package/styles/reboot.css +0 -403
  57. package/styles/utilities/align.css +0 -5
  58. package/styles/utilities/border.css +0 -63
  59. package/styles/utilities/colors.css +0 -65
  60. package/styles/utilities/display.css +0 -45
  61. package/styles/utilities/flex.css +0 -131
  62. package/styles/utilities/float.css +0 -15
  63. package/styles/utilities/order.css +0 -33
  64. package/styles/utilities/overflow.css +0 -31
  65. package/styles/utilities/pointer-events.css +0 -5
  66. package/styles/utilities/position.css +0 -79
  67. package/styles/utilities/shadow.css +0 -7
  68. package/styles/utilities/size.css +0 -123
  69. package/styles/utilities/spacing.css +0 -866
  70. package/styles/utilities/tooltip.css +0 -127
  71. package/styles/utilities/translate.css +0 -15
  72. package/styles/utilities/typography.css +0 -74
  73. package/styles/utilities/visibility.css +0 -14
  74. package/styles/utilities/zindex.css +0 -7
  75. package/styles/utilities.css +0 -18
  76. package/styles/vars.css +0 -159
@@ -1,33 +0,0 @@
1
- .order--first {
2
- order: -1 !important;
3
- }
4
-
5
- .order--last {
6
- order: 13 !important;
7
- }
8
-
9
- @for $i from 0 through 12 {
10
- .order--$(i) {
11
- order: $i !important;
12
- }
13
- }
14
-
15
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
16
- @media (--viewport-$(view)) {
17
- .order--$(view)-first {
18
- order: -1 !important;
19
- }
20
-
21
- .order--$(view)-last {
22
- order: 13 !important;
23
- }
24
- }
25
-
26
- @for $i from 0 through 12 {
27
- @media (--viewport-$(view)) {
28
- .order--$(view)-$(i) {
29
- order: $i !important;
30
- }
31
- }
32
- }
33
- }
@@ -1,31 +0,0 @@
1
- @each $name in (auto, hidden, visible, scroll) {
2
- .overflow--$(name) {
3
- overflow: $name !important;
4
- }
5
-
6
- .overflow-x--$(name) {
7
- overflow-x: $name !important;
8
- }
9
-
10
- .overflow-y--$(name) {
11
- overflow-y: $name !important;
12
- }
13
- }
14
-
15
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
16
- @each $name in (auto, hidden, visible, scroll) {
17
- @media (--viewport-$(view)) {
18
- .overflow--$(view)-$(name) {
19
- overflow: $name !important;
20
- }
21
-
22
- .overflow--$(view)-x-$(name) {
23
- overflow-x: $name !important;
24
- }
25
-
26
- .overflow--$(view)-y-$(name) {
27
- overflow-y: $name !important;
28
- }
29
- }
30
- }
31
- }
@@ -1,5 +0,0 @@
1
- @each $name in (auto, none) {
2
- .pointer-events--$(name) {
3
- pointer-events: $name !important;
4
- }
5
- }
@@ -1,79 +0,0 @@
1
- @each $name in (static, relative, absolute, fixed, sticky) {
2
- .position--$(name) {
3
- position: $name !important;
4
- z-index: var(--zindex-#{$name});
5
- }
6
- }
7
-
8
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
9
- @each $name in (static, relative, absolute, fixed, sticky) {
10
- @media (--viewport-$(view)) {
11
- .position--$(view)-$(name) {
12
- position: $name !important;
13
- z-index: var(--zindex-#{$name});
14
- }
15
- }
16
- }
17
- }
18
-
19
- .position--fixed-top {
20
- position: fixed !important;
21
- top: 0 !important;
22
- right: 0 !important;
23
- left: 0 !important;
24
- z-index: var(--zindex-fixed);
25
- }
26
-
27
- .positon--fixed-bottom {
28
- position: fixed !important;
29
- right: 0 !important;
30
- bottom: 0 !important;
31
- left: 0 !important;
32
- z-index: var(--zindex-fixed);
33
- }
34
-
35
- .position--sticky-top {
36
- position: sticky !important;
37
- top: 0 !important;
38
- z-index: var(--zindex-sticky);
39
- }
40
-
41
- @each $name in (0, 50, 100) {
42
- .top--$(name) {
43
- top: calc($(name) * 1%) !important;
44
- }
45
-
46
- .right--$(name) {
47
- right: calc($(name) * 1%) !important;
48
- }
49
-
50
- .bottom--$(name) {
51
- bottom: calc($(name) * 1%) !important;
52
- }
53
-
54
- .left--$(name) {
55
- left: calc($(name) * 1%) !important;
56
- }
57
- }
58
-
59
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
60
- @each $name in (0, 50, 100) {
61
- @media (--viewport-$(view)) {
62
- .top--$(view)-$(name) {
63
- top: calc($(name) * 1%) !important;
64
- }
65
-
66
- .bottom--$(view)-$(name) {
67
- bottom: calc($(name) * 1%) !important;
68
- }
69
-
70
- .left--$(view)-$(name) {
71
- left: calc($(name) * 1%) !important;
72
- }
73
-
74
- .right--$(view)-$(name) {
75
- right: calc($(name) * 1%) !important;
76
- }
77
- }
78
- }
79
- }
@@ -1,7 +0,0 @@
1
- @each $name
2
- in (none, small, medium, large, inverse-small, inverse-medium, inverse-large)
3
- {
4
- .box-shadow--$(name) {
5
- box-shadow: var(--box-shadow-#{$name}) !important;
6
- }
7
- }
@@ -1,123 +0,0 @@
1
- @for $i from 1 through 100 {
2
- .width--$(i) {
3
- width: calc($i * 1%) !important;
4
- }
5
-
6
- .height--$(i) {
7
- height: calc($i * 1%) !important;
8
- }
9
-
10
- .max-width--$(i) {
11
- max-width: calc($i * 1%) !important;
12
- }
13
-
14
- .max-height--$(i) {
15
- max-height: calc($i * 1%) !important;
16
- }
17
-
18
- .min-width--$(i) {
19
- min-width: calc($i * 1%) !important;
20
- }
21
-
22
- .min-height--$(i) {
23
- min-height: calc($i * 1%) !important;
24
- }
25
-
26
- .width--$(i)-viewport {
27
- width: calc($i * 1vw) !important;
28
- }
29
-
30
- .height--$(i)-viewport {
31
- height: calc($i * 1vh) !important;
32
- }
33
-
34
- .max-width--$(i)-viewport {
35
- max-width: calc($i * 1vw) !important;
36
- }
37
-
38
- .max-height--$(i)-viewport {
39
- max-height: calc($i * 1vh) !important;
40
- }
41
-
42
- .min-width--$(i)-viewport {
43
- min-width: calc($i * 1vw) !important;
44
- }
45
-
46
- .min-height--$(i)-viewport {
47
- min-height: calc($i * 1vh) !important;
48
- }
49
- }
50
-
51
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
52
- @for $i from 1 through 100 {
53
- @media (--viewport-$(view)) {
54
- .width--$(view)-$(i) {
55
- width: calc($i * 1%) !important;
56
- }
57
-
58
- .height--$(view)-$(i) {
59
- height: calc($i * 1%) !important;
60
- }
61
-
62
- .max-width--$(view)-$(i) {
63
- max-width: calc($i * 1%) !important;
64
- }
65
-
66
- .max-height--$(view)-$(i) {
67
- max-height: calc($i * 1%) !important;
68
- }
69
-
70
- .min-width--$(view)-$(i) {
71
- min-width: calc($i * 1%) !important;
72
- }
73
-
74
- .min-height--$(view)-$(i) {
75
- min-height: calc($i * 1%) !important;
76
- }
77
-
78
- .width--$(view)-$(i)-viewport {
79
- width: calc($i * 1vw) !important;
80
- }
81
-
82
- .height--$(view)-$(i)-viewport {
83
- height: calc($i * 1vh) !important;
84
- }
85
-
86
- .max-width--$(view)-$(i)-viewport {
87
- max-width: calc($i * 1vw) !important;
88
- }
89
-
90
- .max-height--$(view)-$(i)-viewport {
91
- max-height: calc($i * 1vh) !important;
92
- }
93
-
94
- .min-width--$(view)-$(i)-viewport {
95
- min-width: calc($i * 1vw) !important;
96
- }
97
-
98
- .min-height--$(view)-$(i)-viewport {
99
- min-height: calc($i * 1vh) !important;
100
- }
101
- }
102
- }
103
- }
104
-
105
- .width--auto {
106
- width: auto !important;
107
- }
108
-
109
- .height--auto {
110
- height: auto !important;
111
- }
112
-
113
- @each $view in mobile, tablet, desktop, widescreen, fullhd {
114
- @media (--viewport-$(view)) {
115
- .width--$(view)-auto {
116
- width: auto !important;
117
- }
118
-
119
- .height--$(view)-auto {
120
- height: auto !important;
121
- }
122
- }
123
- }