@epam/uui 6.5.0 → 6.5.1-beta.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/assets/styles/clickable.scss +26 -26
- package/assets/styles/dnd.scss +9 -9
- package/assets/styles/effects.scss +6 -6
- package/assets/styles/index.scss +6 -6
- package/index.esm.js +103 -103
- package/index.esm.js.map +1 -1
- package/index.js +103 -103
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/readme.md +9 -9
- package/stats.html +1 -1
- package/styles.css +1071 -1071
- package/styles.css.map +1 -1
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
@mixin clickable-styles() {
|
|
2
|
-
text-decoration: none;
|
|
3
|
-
outline: none;
|
|
4
|
-
border: 0;
|
|
5
|
-
background: none;
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
appearance: none;
|
|
8
|
-
align-items: unset;
|
|
9
|
-
padding: unset;
|
|
10
|
-
margin: unset;
|
|
11
|
-
justify-content: unset;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
display: flex;
|
|
14
|
-
position: relative;
|
|
15
|
-
|
|
16
|
-
&:hover {
|
|
17
|
-
text-decoration: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&:global(.-clickable) {
|
|
21
|
-
cursor: pointer;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&:global(.uui-disabled) {
|
|
25
|
-
cursor: default;
|
|
26
|
-
}
|
|
1
|
+
@mixin clickable-styles() {
|
|
2
|
+
text-decoration: none;
|
|
3
|
+
outline: none;
|
|
4
|
+
border: 0;
|
|
5
|
+
background: none;
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
appearance: none;
|
|
8
|
+
align-items: unset;
|
|
9
|
+
padding: unset;
|
|
10
|
+
margin: unset;
|
|
11
|
+
justify-content: unset;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
display: flex;
|
|
14
|
+
position: relative;
|
|
15
|
+
|
|
16
|
+
&:hover {
|
|
17
|
+
text-decoration: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&:global(.-clickable) {
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&:global(.uui-disabled) {
|
|
25
|
+
cursor: default;
|
|
26
|
+
}
|
|
27
27
|
}
|
package/assets/styles/dnd.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@mixin dnd-cursor-style {
|
|
2
|
-
&:hover {
|
|
3
|
-
cursor: grab;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
&:active {
|
|
7
|
-
cursor: grabbing;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
1
|
+
@mixin dnd-cursor-style {
|
|
2
|
+
&:hover {
|
|
3
|
+
cursor: grab;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&:active {
|
|
7
|
+
cursor: grabbing;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@mixin dnd-ghost-shadow() { box-shadow: var(--uui-shadow-level-3); }
|
|
2
|
-
|
|
3
|
-
@mixin focus-visible-effect($offset: var(--uui-focus-outline-offset)) {
|
|
4
|
-
outline: var(--uui-focus-outline-width) solid var(--uui-outline-focus);
|
|
5
|
-
outline-offset: $offset;
|
|
6
|
-
}
|
|
1
|
+
@mixin dnd-ghost-shadow() { box-shadow: var(--uui-shadow-level-3); }
|
|
2
|
+
|
|
3
|
+
@mixin focus-visible-effect($offset: var(--uui-focus-outline-offset)) {
|
|
4
|
+
outline: var(--uui-focus-outline-width) solid var(--uui-outline-focus);
|
|
5
|
+
outline-offset: $offset;
|
|
6
|
+
}
|
package/assets/styles/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@forward 'clickable';
|
|
2
|
-
@forward 'effects';
|
|
3
|
-
@forward 'inputs';
|
|
4
|
-
@forward 'helpers';
|
|
5
|
-
//@forward 'typography'; don't include typography into index, since it will insert typography styles for each index import
|
|
6
|
-
@forward 'dnd';
|
|
1
|
+
@forward 'clickable';
|
|
2
|
+
@forward 'effects';
|
|
3
|
+
@forward 'inputs';
|
|
4
|
+
@forward 'helpers';
|
|
5
|
+
//@forward 'typography'; don't include typography into index, since it will insert typography styles for each index import
|
|
6
|
+
@forward 'dnd';
|