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.
- package/dist/index.css +1 -1
- package/package.json +13 -25
- package/sass/modules/_modal.scss +1 -0
- package/js/polyfills/customevent.js +0 -16
- package/postcss.config.js +0 -42
- package/styles/helpers/container.css +0 -21
- package/styles/helpers/embed.css +0 -70
- package/styles/helpers/grid.css +0 -64
- package/styles/helpers/image.css +0 -5
- package/styles/helpers/link.css +0 -20
- package/styles/helpers/screen-readers.css +0 -22
- package/styles/helpers/wrap.css +0 -5
- package/styles/helpers.css +0 -7
- package/styles/index.css +0 -6
- package/styles/mixins/caret.css +0 -32
- package/styles/mixins/clearfix.css +0 -7
- package/styles/mixins/group.css +0 -78
- package/styles/mixins/helpers/container.css +0 -12
- package/styles/mixins/helpers/grid.css +0 -20
- package/styles/mixins/helpers/link.css +0 -18
- package/styles/mixins/helpers/wrap.css +0 -7
- package/styles/mixins/modules/button.css +0 -91
- package/styles/mixins/modules/card.css +0 -29
- package/styles/mixins/modules/close.css +0 -42
- package/styles/mixins/modules/list.css +0 -24
- package/styles/mixins/modules/pill.css +0 -43
- package/styles/mixins/modules/table.css +0 -75
- package/styles/mixins.css +0 -13
- package/styles/modules/alert.css +0 -85
- package/styles/modules/breadcrumbs.css +0 -41
- package/styles/modules/button.css +0 -151
- package/styles/modules/card.css +0 -80
- package/styles/modules/close.css +0 -5
- package/styles/modules/details.css +0 -61
- package/styles/modules/dialog.css +0 -82
- package/styles/modules/dropdown.css +0 -126
- package/styles/modules/form/checkbox.css +0 -99
- package/styles/modules/form/file.css +0 -119
- package/styles/modules/form/form-field-group.css +0 -71
- package/styles/modules/form/output.css +0 -5
- package/styles/modules/form/progress.css +0 -57
- package/styles/modules/form/radio.css +0 -49
- package/styles/modules/form/range.css +0 -105
- package/styles/modules/form/select.css +0 -25
- package/styles/modules/form/text.css +0 -19
- package/styles/modules/form.css +0 -176
- package/styles/modules/list.css +0 -99
- package/styles/modules/loader.css +0 -229
- package/styles/modules/nav.css +0 -99
- package/styles/modules/pill.css +0 -72
- package/styles/modules/table.css +0 -21
- package/styles/modules/tabs.css +0 -101
- package/styles/modules/tag.css +0 -118
- package/styles/modules/tile.css +0 -114
- package/styles/modules.css +0 -26
- package/styles/reboot.css +0 -403
- package/styles/utilities/align.css +0 -5
- package/styles/utilities/border.css +0 -63
- package/styles/utilities/colors.css +0 -65
- package/styles/utilities/display.css +0 -45
- package/styles/utilities/flex.css +0 -131
- package/styles/utilities/float.css +0 -15
- package/styles/utilities/order.css +0 -33
- package/styles/utilities/overflow.css +0 -31
- package/styles/utilities/pointer-events.css +0 -5
- package/styles/utilities/position.css +0 -79
- package/styles/utilities/shadow.css +0 -7
- package/styles/utilities/size.css +0 -123
- package/styles/utilities/spacing.css +0 -866
- package/styles/utilities/tooltip.css +0 -127
- package/styles/utilities/translate.css +0 -15
- package/styles/utilities/typography.css +0 -74
- package/styles/utilities/visibility.css +0 -14
- package/styles/utilities/zindex.css +0 -7
- package/styles/utilities.css +0 -18
- 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,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,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
|
-
}
|