@epam/uui 6.4.1 → 6.4.3
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/helpers.scss +3 -3
- package/assets/styles/index.scss +6 -6
- package/assets/styles/typography.scss +184 -184
- package/components/datePickers/DatePicker.d.ts.map +1 -1
- package/components/datePickers/RangeDatePickerInput.d.ts.map +1 -1
- package/components/filters/helpers/predicateHelpers.d.ts +11 -0
- package/components/filters/helpers/predicateHelpers.d.ts.map +1 -1
- package/components/inputs/timePicker/TimePicker.d.ts.map +1 -1
- package/components/layout/ScrollBars.d.ts +11 -1
- package/components/layout/ScrollBars.d.ts.map +1 -1
- package/components/widgets/DataRowAddons.d.ts.map +1 -1
- package/index.esm.js +153 -125
- package/index.esm.js.map +1 -1
- package/index.js +152 -124
- package/index.js.map +1 -1
- package/package.json +5 -5
- package/readme.md +9 -9
- package/stats.html +1 -1
- package/styles.css +1025 -1024
- package/styles.css.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/uui",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.3",
|
|
4
4
|
"description": "EPAM UUI components set",
|
|
5
5
|
"author": "EPAM",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"prepublish": "yarn build"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@epam/assets": "6.4.
|
|
16
|
-
"@epam/uui-components": "6.4.
|
|
17
|
-
"@epam/uui-core": "6.4.
|
|
15
|
+
"@epam/assets": "6.4.3",
|
|
16
|
+
"@epam/uui-components": "6.4.3",
|
|
17
|
+
"@epam/uui-core": "6.4.3",
|
|
18
18
|
"@floating-ui/react": "0.27.5",
|
|
19
19
|
"classnames": "2.2.6",
|
|
20
20
|
"dayjs": "1.11.12",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"type": "git",
|
|
32
32
|
"url": "https://github.com/epam/UUI"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "e7b3978633331b3b70087ff779a330ef760e50db",
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"directory": "build"
|
|
37
37
|
}
|
package/readme.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# UUI package
|
|
2
|
-
|
|
3
|
-
This package is a part of [EPAM UUI](https://github.com/epam/UUI) library.
|
|
4
|
-
|
|
5
|
-
`@epam/uui` contains theme agnostic set of UUI components.
|
|
6
|
-
|
|
7
|
-
It's required to connect any theme to your application for components styling.
|
|
8
|
-
You can read more about UUI Themes [here](https://uui.epam.com/documents?id=overview-themes&mode=doc&isSkin=null&category=themes).
|
|
9
|
-
|
|
1
|
+
# UUI package
|
|
2
|
+
|
|
3
|
+
This package is a part of [EPAM UUI](https://github.com/epam/UUI) library.
|
|
4
|
+
|
|
5
|
+
`@epam/uui` contains theme agnostic set of UUI components.
|
|
6
|
+
|
|
7
|
+
It's required to connect any theme to your application for components styling.
|
|
8
|
+
You can read more about UUI Themes [here](https://uui.epam.com/documents?id=overview-themes&mode=doc&isSkin=null&category=themes).
|
|
9
|
+
|
|
10
10
|
Full set of components can be found on [UUI site](https://uui.epam.com/documents?category=components&id=accordion&mode=doc).
|