@ultraviolet/plus 0.15.1 → 0.15.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.
- package/dist/components/CodeEditor/CodeEditor.js +17 -24
- package/dist/components/ContentCard/Skeleton.js +28 -21
- package/dist/components/ContentCard/index.js +143 -149
- package/dist/components/ContentCardGroup/Card.js +84 -76
- package/dist/components/ContentCardGroup/SkeletonCard.js +19 -13
- package/dist/components/ContentCardGroup/index.js +17 -8
- package/dist/components/Conversation/index.js +100 -42
- package/dist/components/CustomerSatisfaction/index.js +58 -81
- package/dist/components/EstimateCost/Components/CustomUnitInput.js +19 -34
- package/dist/components/EstimateCost/Components/Item.js +182 -199
- package/dist/components/EstimateCost/Components/LineThrough.js +12 -9
- package/dist/components/EstimateCost/Components/NumberInput.js +8 -15
- package/dist/components/EstimateCost/Components/Region.js +16 -27
- package/dist/components/EstimateCost/Components/Regular.js +20 -28
- package/dist/components/EstimateCost/Components/Strong.js +15 -12
- package/dist/components/EstimateCost/Components/Unit.js +27 -33
- package/dist/components/EstimateCost/Components/UnitInput.js +39 -87
- package/dist/components/EstimateCost/Components/Zone.js +16 -26
- package/dist/components/EstimateCost/EstimateCost.js +24 -63
- package/dist/components/EstimateCost/EstimateCostContent.js +148 -208
- package/dist/components/EstimateCost/EstimateCostProvider.js +20 -23
- package/dist/components/EstimateCost/OverlayComponent.js +79 -73
- package/dist/components/EstimateCost/OverlayContext.js +3 -1
- package/dist/components/EstimateCost/componentStyle.js +206 -148
- package/dist/components/FAQ/index.js +9 -5
- package/dist/components/Navigation/Navigation.js +1 -10
- package/dist/components/Navigation/NavigationContent.js +96 -146
- package/dist/components/Navigation/NavigationProvider.js +57 -90
- package/dist/components/Navigation/components/Group.js +37 -41
- package/dist/components/Navigation/components/Item.js +284 -554
- package/dist/components/Navigation/components/PinnedItems.js +78 -119
- package/dist/components/Navigation/components/Separator.js +9 -4
- package/dist/components/SteppedListCard/Step.js +19 -38
- package/dist/components/SteppedListCard/SteppedListContainer.js +39 -48
- package/dist/components/SteppedListCard/SteppedListContent.js +46 -24
- package/dist/components/SteppedListCard/helper.js +1 -3
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/plus",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
4
4
|
"description": "Ultraviolet Plus",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -43,14 +43,13 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/core": "7.24.5",
|
|
46
|
-
"@emotion/babel-plugin": "11.11.0",
|
|
47
46
|
"@emotion/react": "11.11.4",
|
|
48
47
|
"@emotion/styled": "11.11.5",
|
|
49
48
|
"@types/react": "18.3.1",
|
|
50
49
|
"@types/react-dom": "18.3.0",
|
|
51
50
|
"react": "18.3.1",
|
|
52
51
|
"react-dom": "18.3.1",
|
|
53
|
-
"@ultraviolet/icons": "2.12.
|
|
52
|
+
"@ultraviolet/icons": "2.12.7",
|
|
54
53
|
"@ultraviolet/illustrations": "1.7.2"
|
|
55
54
|
},
|
|
56
55
|
"dependencies": {
|
|
@@ -58,12 +57,12 @@
|
|
|
58
57
|
"@uiw/codemirror-theme-material": "4.21.25",
|
|
59
58
|
"@uiw/react-codemirror": "4.21.25",
|
|
60
59
|
"react-intersection-observer": "9.8.2",
|
|
61
|
-
"@ultraviolet/icons": "2.12.
|
|
60
|
+
"@ultraviolet/icons": "2.12.7",
|
|
62
61
|
"@ultraviolet/themes": "1.10.1",
|
|
63
|
-
"@ultraviolet/ui": "1.51.
|
|
62
|
+
"@ultraviolet/ui": "1.51.3"
|
|
64
63
|
},
|
|
65
64
|
"scripts": {
|
|
66
|
-
"
|
|
65
|
+
"prebuild": "shx rm -rf dist",
|
|
67
66
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|
|
68
67
|
"build": "vite build --config vite.config.ts && pnpm run type:generate",
|
|
69
68
|
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
|