@ultraviolet/plus 3.6.0 → 3.7.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/_virtual/_rolldown/runtime.js +10 -0
- package/dist/components/CodeEditor/CodeEditor.js +6 -4
- package/dist/components/CodeEditor/index.js +9 -0
- package/dist/components/ContentCard/index.js +7 -5
- package/dist/components/ContentCardGroup/index.js +7 -5
- package/dist/components/Conversation/index.js +7 -5
- package/dist/components/CustomerSatisfaction/index.js +7 -5
- package/dist/components/EstimateCost/index.js +8 -9
- package/dist/components/FAQ/index.js +7 -5
- package/dist/components/InfoTable/index.js +7 -5
- package/dist/components/Navigation/index.js +9 -13
- package/dist/components/OfferList/OfferList.js +6 -4
- package/dist/components/OfferList/index.js +9 -0
- package/dist/components/OrderSummary/index.js +7 -5
- package/dist/components/Plans/index.js +7 -5
- package/dist/components/SteppedListCard/index.js +7 -5
- package/dist/components/index.js +37 -0
- package/dist/index.js +9 -0
- package/package.json +8 -8
- package/dist/components/Conversation/styles.css.d.ts +0 -8
- package/dist/components/Conversation/styles.css.d.ts.map +0 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __name = (target, value) => __defProp(target, "name", {
|
|
4
|
+
value,
|
|
5
|
+
configurable: true
|
|
6
|
+
});
|
|
7
|
+
var __esmMin = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
8
|
+
|
|
9
|
+
//#endregion
|
|
10
|
+
export { __esmMin };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { CodeEditor } from "@ultraviolet/ui/compositions/CodeEditor";
|
|
3
4
|
|
|
4
5
|
//#region src/components/CodeEditor/CodeEditor.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CodeEditor$1;
|
|
7
|
+
var init_CodeEditor = __esmMin(() => {
|
|
8
|
+
CodeEditor$1 = CodeEditor;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
12
|
+
init_CodeEditor();
|
|
11
13
|
export { CodeEditor$1 as CodeEditor };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
|
+
import { CodeEditor } from "./CodeEditor.js";
|
|
3
|
+
|
|
4
|
+
//#region src/components/CodeEditor/index.ts
|
|
5
|
+
var init_CodeEditor = __esmMin(() => {});
|
|
6
|
+
|
|
7
|
+
//#endregion
|
|
8
|
+
init_CodeEditor();
|
|
9
|
+
export { init_CodeEditor };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { ContentCard } from "@ultraviolet/ui/compositions/ContentCard";
|
|
3
4
|
|
|
4
5
|
//#region src/components/ContentCard/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ContentCard$1;
|
|
7
|
+
var init_ContentCard = __esmMin(() => {
|
|
8
|
+
ContentCard$1 = ContentCard;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_ContentCard();
|
|
13
|
+
export { ContentCard$1 as ContentCard, init_ContentCard };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { ContentCardGroup } from "@ultraviolet/ui/compositions/ContentCardGroup";
|
|
3
4
|
|
|
4
5
|
//#region src/components/ContentCardGroup/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ContentCardGroup$1;
|
|
7
|
+
var init_ContentCardGroup = __esmMin(() => {
|
|
8
|
+
ContentCardGroup$1 = ContentCardGroup;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_ContentCardGroup();
|
|
13
|
+
export { ContentCardGroup$1 as ContentCardGroup, init_ContentCardGroup };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { Conversation } from "@ultraviolet/ui/compositions/Conversation";
|
|
3
4
|
|
|
4
5
|
//#region src/components/Conversation/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var Conversation$1;
|
|
7
|
+
var init_Conversation = __esmMin(() => {
|
|
8
|
+
Conversation$1 = Conversation;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_Conversation();
|
|
13
|
+
export { Conversation$1 as Conversation, init_Conversation };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { CustomerSatisfaction } from "@ultraviolet/ui/compositions/CustomerSatisfaction";
|
|
3
4
|
|
|
4
5
|
//#region src/components/CustomerSatisfaction/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CustomerSatisfaction$1;
|
|
7
|
+
var init_CustomerSatisfaction = __esmMin(() => {
|
|
8
|
+
CustomerSatisfaction$1 = CustomerSatisfaction;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_CustomerSatisfaction();
|
|
13
|
+
export { CustomerSatisfaction$1 as CustomerSatisfaction, init_CustomerSatisfaction };
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { EstimateCost, estimateCostDefaultLocales } from "@ultraviolet/ui/compositions/EstimateCost";
|
|
3
4
|
|
|
4
5
|
//#region src/components/EstimateCost/index.ts
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
* @deprecated Use `estimateCostDefaultLocales` from `@ultraviolet/ui/composition/EstimateCost` instead
|
|
11
|
-
*/
|
|
12
|
-
const estimateCostDefaultLocales$1 = estimateCostDefaultLocales;
|
|
6
|
+
var EstimateCost$1, estimateCostDefaultLocales$1;
|
|
7
|
+
var init_EstimateCost = __esmMin(() => {
|
|
8
|
+
EstimateCost$1 = EstimateCost;
|
|
9
|
+
estimateCostDefaultLocales$1 = estimateCostDefaultLocales;
|
|
10
|
+
});
|
|
13
11
|
|
|
14
12
|
//#endregion
|
|
15
|
-
|
|
13
|
+
init_EstimateCost();
|
|
14
|
+
export { EstimateCost$1 as EstimateCost, estimateCostDefaultLocales$1 as estimateCostDefaultLocales, init_EstimateCost };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { FAQ } from "@ultraviolet/ui/compositions/FAQ";
|
|
3
4
|
|
|
4
5
|
//#region src/components/FAQ/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var FAQ$1;
|
|
7
|
+
var init_FAQ = __esmMin(() => {
|
|
8
|
+
FAQ$1 = FAQ;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_FAQ();
|
|
13
|
+
export { FAQ$1 as FAQ, init_FAQ };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { InfoTable } from "@ultraviolet/ui/compositions/InfoTable";
|
|
3
4
|
|
|
4
5
|
//#region src/components/InfoTable/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var InfoTable$1;
|
|
7
|
+
var init_InfoTable = __esmMin(() => {
|
|
8
|
+
InfoTable$1 = InfoTable;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_InfoTable();
|
|
13
|
+
export { InfoTable$1 as InfoTable, init_InfoTable };
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { Navigation, NavigationProvider, useNavigation } from "@ultraviolet/ui/compositions/Navigation";
|
|
3
4
|
|
|
4
5
|
//#region src/components/Navigation/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*/
|
|
12
|
-
const NavigationProvider$1 = NavigationProvider;
|
|
13
|
-
/**
|
|
14
|
-
* @deprecated Use `useNavigation` from `@ultraviolet/ui/composition/Navigation` instead
|
|
15
|
-
*/
|
|
16
|
-
const useNavigation$1 = useNavigation;
|
|
6
|
+
var Navigation$1, NavigationProvider$1, useNavigation$1;
|
|
7
|
+
var init_Navigation = __esmMin(() => {
|
|
8
|
+
Navigation$1 = Navigation;
|
|
9
|
+
NavigationProvider$1 = NavigationProvider;
|
|
10
|
+
useNavigation$1 = useNavigation;
|
|
11
|
+
});
|
|
17
12
|
|
|
18
13
|
//#endregion
|
|
19
|
-
|
|
14
|
+
init_Navigation();
|
|
15
|
+
export { Navigation$1 as Navigation, NavigationProvider$1 as NavigationProvider, init_Navigation, useNavigation$1 as useNavigation };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { OfferList } from "@ultraviolet/ui/compositions/OfferList";
|
|
3
4
|
|
|
4
5
|
//#region src/components/OfferList/OfferList.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var OfferList$1;
|
|
7
|
+
var init_OfferList = __esmMin(() => {
|
|
8
|
+
OfferList$1 = OfferList;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
12
|
+
init_OfferList();
|
|
11
13
|
export { OfferList$1 as OfferList };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
|
+
import { OfferList } from "./OfferList.js";
|
|
3
|
+
|
|
4
|
+
//#region src/components/OfferList/index.ts
|
|
5
|
+
var init_OfferList = __esmMin(() => {});
|
|
6
|
+
|
|
7
|
+
//#endregion
|
|
8
|
+
init_OfferList();
|
|
9
|
+
export { init_OfferList };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { OrderSummary } from "@ultraviolet/ui/compositions/OrderSummary";
|
|
3
4
|
|
|
4
5
|
//#region src/components/OrderSummary/index.ts
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var OrderSummary$1;
|
|
7
|
+
var init_OrderSummary = __esmMin(() => {
|
|
8
|
+
OrderSummary$1 = OrderSummary;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_OrderSummary();
|
|
13
|
+
export { OrderSummary$1 as OrderSummary, init_OrderSummary };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { Plans } from "@ultraviolet/ui/compositions/Plans";
|
|
3
4
|
|
|
4
5
|
//#region src/components/Plans/index.tsx
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var Plans$1;
|
|
7
|
+
var init_Plans = __esmMin(() => {
|
|
8
|
+
Plans$1 = Plans;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_Plans();
|
|
13
|
+
export { Plans$1 as Plans, init_Plans };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { __esmMin } from "../../_virtual/_rolldown/runtime.js";
|
|
2
3
|
import { SteppedListCard } from "@ultraviolet/ui/compositions/SteppedListCard";
|
|
3
4
|
|
|
4
5
|
//#region src/components/SteppedListCard/index.ts
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var SteppedListCard$1;
|
|
7
|
+
var init_SteppedListCard = __esmMin(() => {
|
|
8
|
+
SteppedListCard$1 = SteppedListCard;
|
|
9
|
+
});
|
|
9
10
|
|
|
10
11
|
//#endregion
|
|
11
|
-
|
|
12
|
+
init_SteppedListCard();
|
|
13
|
+
export { SteppedListCard$1 as SteppedListCard, init_SteppedListCard };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { __esmMin } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
import { CodeEditor } from "./CodeEditor/CodeEditor.js";
|
|
3
|
+
import { init_CodeEditor } from "./CodeEditor/index.js";
|
|
4
|
+
import { ContentCard, init_ContentCard } from "./ContentCard/index.js";
|
|
5
|
+
import { ContentCardGroup, init_ContentCardGroup } from "./ContentCardGroup/index.js";
|
|
6
|
+
import { Conversation, init_Conversation } from "./Conversation/index.js";
|
|
7
|
+
import { CustomerSatisfaction, init_CustomerSatisfaction } from "./CustomerSatisfaction/index.js";
|
|
8
|
+
import { EstimateCost, estimateCostDefaultLocales, init_EstimateCost } from "./EstimateCost/index.js";
|
|
9
|
+
import { FAQ, init_FAQ } from "./FAQ/index.js";
|
|
10
|
+
import { InfoTable, init_InfoTable } from "./InfoTable/index.js";
|
|
11
|
+
import { Navigation, NavigationProvider, init_Navigation, useNavigation } from "./Navigation/index.js";
|
|
12
|
+
import { OfferList } from "./OfferList/OfferList.js";
|
|
13
|
+
import { init_OfferList } from "./OfferList/index.js";
|
|
14
|
+
import { OrderSummary, init_OrderSummary } from "./OrderSummary/index.js";
|
|
15
|
+
import { Plans, init_Plans } from "./Plans/index.js";
|
|
16
|
+
import { SteppedListCard, init_SteppedListCard } from "./SteppedListCard/index.js";
|
|
17
|
+
|
|
18
|
+
//#region src/components/index.ts
|
|
19
|
+
var init_components = __esmMin(() => {
|
|
20
|
+
init_CodeEditor();
|
|
21
|
+
init_ContentCard();
|
|
22
|
+
init_ContentCardGroup();
|
|
23
|
+
init_Conversation();
|
|
24
|
+
init_CustomerSatisfaction();
|
|
25
|
+
init_EstimateCost();
|
|
26
|
+
init_FAQ();
|
|
27
|
+
init_InfoTable();
|
|
28
|
+
init_Navigation();
|
|
29
|
+
init_OfferList();
|
|
30
|
+
init_OrderSummary();
|
|
31
|
+
init_Plans();
|
|
32
|
+
init_SteppedListCard();
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
//#endregion
|
|
36
|
+
init_components();
|
|
37
|
+
export { init_components };
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __esmMin } from "./_virtual/_rolldown/runtime.js";
|
|
1
2
|
import { CodeEditor } from "./components/CodeEditor/CodeEditor.js";
|
|
2
3
|
import { ContentCard } from "./components/ContentCard/index.js";
|
|
3
4
|
import { ContentCardGroup } from "./components/ContentCardGroup/index.js";
|
|
@@ -11,5 +12,13 @@ import { OfferList } from "./components/OfferList/OfferList.js";
|
|
|
11
12
|
import { OrderSummary } from "./components/OrderSummary/index.js";
|
|
12
13
|
import { Plans } from "./components/Plans/index.js";
|
|
13
14
|
import { SteppedListCard } from "./components/SteppedListCard/index.js";
|
|
15
|
+
import { init_components } from "./components/index.js";
|
|
14
16
|
|
|
17
|
+
//#region src/index.ts
|
|
18
|
+
var init_src = __esmMin(() => {
|
|
19
|
+
init_components();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
//#endregion
|
|
23
|
+
init_src();
|
|
15
24
|
export { CodeEditor, ContentCard, ContentCardGroup, Conversation, CustomerSatisfaction, EstimateCost, FAQ, InfoTable, Navigation, NavigationProvider, OfferList, OrderSummary, Plans, SteppedListCard, estimateCostDefaultLocales, useNavigation };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/plus",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "Ultraviolet Plus",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"@types/react-dom": "19.2.3",
|
|
63
63
|
"react": "19.2.4",
|
|
64
64
|
"react-dom": "19.2.4",
|
|
65
|
-
"vite": "8.0.0-beta.
|
|
66
|
-
"@repo/config": "0.0.
|
|
67
|
-
"@ultraviolet/illustrations": "6.0.
|
|
65
|
+
"vite": "8.0.0-beta.18",
|
|
66
|
+
"@repo/config": "0.0.3",
|
|
67
|
+
"@ultraviolet/illustrations": "6.0.12",
|
|
68
68
|
"@utils/test": "0.0.1"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
@@ -77,10 +77,10 @@
|
|
|
77
77
|
"@vanilla-extract/vite-plugin": "5.1.4",
|
|
78
78
|
"csstype": "3.2.3",
|
|
79
79
|
"react-intersection-observer": "10.0.3",
|
|
80
|
-
"@ultraviolet/icons": "5.1.
|
|
81
|
-
"@ultraviolet/themes": "3.1.
|
|
82
|
-
"@ultraviolet/ui": "3.
|
|
83
|
-
"@ultraviolet/utils": "1.0.
|
|
80
|
+
"@ultraviolet/icons": "5.1.6",
|
|
81
|
+
"@ultraviolet/themes": "3.1.2",
|
|
82
|
+
"@ultraviolet/ui": "3.12.0",
|
|
83
|
+
"@ultraviolet/utils": "1.0.6"
|
|
84
84
|
},
|
|
85
85
|
"scripts": {
|
|
86
86
|
"type:generate": "tsgo --declaration -p tsconfig.build.json",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const conversationInfos: Record<"left" | "right", string>;
|
|
2
|
-
export declare const styledText: string;
|
|
3
|
-
export declare const conversationContainer: Record<"left" | "right", string>;
|
|
4
|
-
export declare const conversationRawMessage: Record<"left" | "right", string>;
|
|
5
|
-
export declare const conversationAvatar: string;
|
|
6
|
-
export declare const conversationBubble: string;
|
|
7
|
-
export declare const conversationTag: string;
|
|
8
|
-
//# sourceMappingURL=styles.css.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"styles.css.d.ts","sourceRoot":"","sources":["../../../src/components/Conversation/styles.css.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,iBAAiB,kCAG5B,CAAA;AAEF,eAAO,MAAM,UAAU,QAGrB,CAAA;AAOF,eAAO,MAAM,qBAAqB,kCAGhC,CAAA;AAQF,eAAO,MAAM,sBAAsB,kCASjC,CAAA;AAEF,eAAO,MAAM,kBAAkB,QAG7B,CAAA;AAEF,eAAO,MAAM,kBAAkB,QAA2B,CAAA;AAE1D,eAAO,MAAM,eAAe,QAI1B,CAAA"}
|