@ultraviolet/plus 3.0.0-beta.8 → 3.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.
Files changed (223) hide show
  1. package/dist/components/CodeEditor/CodeEditor.d.ts +3 -2
  2. package/dist/components/CodeEditor/CodeEditor.js +44 -13
  3. package/dist/components/ContentCard/Skeleton.d.ts +1 -1
  4. package/dist/components/ContentCard/Skeleton.js +13 -8
  5. package/dist/components/ContentCard/index.d.ts +2 -1
  6. package/dist/components/ContentCard/index.js +131 -50
  7. package/dist/components/ContentCardGroup/Card.d.ts +2 -1
  8. package/dist/components/ContentCardGroup/Card.js +65 -86
  9. package/dist/components/ContentCardGroup/SkeletonCard.d.ts +1 -1
  10. package/dist/components/ContentCardGroup/SkeletonCard.js +4 -22
  11. package/dist/components/ContentCardGroup/index.d.ts +3 -1
  12. package/dist/components/ContentCardGroup/index.js +12 -18
  13. package/dist/components/ContentCardGroup/styles.css.d.ts +7 -0
  14. package/dist/components/ContentCardGroup/styles.css.js +18 -0
  15. package/dist/components/Conversation/index.d.ts +25 -17
  16. package/dist/components/Conversation/index.js +37 -103
  17. package/dist/components/Conversation/styles.css.d.ts +7 -0
  18. package/dist/components/Conversation/styles.css.js +17 -0
  19. package/dist/components/CustomerSatisfaction/index.d.ts +3 -1
  20. package/dist/components/CustomerSatisfaction/index.js +70 -96
  21. package/dist/components/CustomerSatisfaction/styles.css.d.ts +17 -0
  22. package/dist/components/CustomerSatisfaction/styles.css.js +6 -0
  23. package/dist/components/EstimateCost/Components/CustomUnitInput.d.ts +1 -1
  24. package/dist/components/EstimateCost/Components/CustomUnitInput.js +47 -27
  25. package/dist/components/EstimateCost/Components/Item.d.ts +3 -2
  26. package/dist/components/EstimateCost/Components/Item.js +308 -288
  27. package/dist/components/EstimateCost/Components/LineThrough.d.ts +3 -5
  28. package/dist/components/EstimateCost/Components/LineThrough.js +12 -12
  29. package/dist/components/EstimateCost/Components/NumberInput.d.ts +1 -1
  30. package/dist/components/EstimateCost/Components/NumberInput.js +18 -10
  31. package/dist/components/EstimateCost/Components/Region.d.ts +2 -2
  32. package/dist/components/EstimateCost/Components/Region.js +44 -33
  33. package/dist/components/EstimateCost/Components/Regular.d.ts +3 -2
  34. package/dist/components/EstimateCost/Components/Regular.js +21 -29
  35. package/dist/components/EstimateCost/Components/Strong.d.ts +3 -10
  36. package/dist/components/EstimateCost/Components/Strong.js +13 -24
  37. package/dist/components/EstimateCost/Components/Unit.d.ts +3 -1
  38. package/dist/components/EstimateCost/Components/Unit.js +23 -31
  39. package/dist/components/EstimateCost/Components/Zone.d.ts +3 -1
  40. package/dist/components/EstimateCost/Components/Zone.js +42 -32
  41. package/dist/components/EstimateCost/Components/components.css.d.ts +77 -0
  42. package/dist/components/EstimateCost/Components/components.css.js +124 -0
  43. package/dist/components/EstimateCost/EstimateCost.d.ts +29 -29
  44. package/dist/components/EstimateCost/EstimateCost.js +74 -25
  45. package/dist/components/EstimateCost/EstimateCostContent.d.ts +1 -1
  46. package/dist/components/EstimateCost/EstimateCostContent.js +270 -174
  47. package/dist/components/EstimateCost/EstimateCostProvider.d.ts +1 -1
  48. package/dist/components/EstimateCost/EstimateCostProvider.js +24 -21
  49. package/dist/components/EstimateCost/OverlayComponent.d.ts +1 -1
  50. package/dist/components/EstimateCost/OverlayComponent.js +57 -81
  51. package/dist/components/EstimateCost/OverlayContext.d.ts +1 -1
  52. package/dist/components/EstimateCost/OverlayContext.js +2 -4
  53. package/dist/components/EstimateCost/constants.js +0 -4
  54. package/dist/components/EstimateCost/styles.css.d.ts +76 -0
  55. package/dist/components/EstimateCost/styles.css.js +50 -0
  56. package/dist/components/EstimateCost/types.d.ts +2 -1
  57. package/dist/components/FAQ/index.d.ts +3 -1
  58. package/dist/components/FAQ/index.js +4 -3
  59. package/dist/components/FAQ/styles.css.js +0 -1
  60. package/dist/components/InfoTable/InfoTable.d.ts +9 -6
  61. package/dist/components/InfoTable/InfoTable.js +14 -18
  62. package/dist/components/InfoTable/components/Cell.d.ts +3 -6
  63. package/dist/components/InfoTable/components/Cell.js +28 -34
  64. package/dist/components/InfoTable/components/Row.d.ts +3 -14
  65. package/dist/components/InfoTable/components/Row.js +25 -18
  66. package/dist/components/InfoTable/context.d.ts +3 -0
  67. package/dist/components/InfoTable/context.js +5 -0
  68. package/dist/components/InfoTable/styles.css.d.ts +6 -0
  69. package/dist/components/InfoTable/styles.css.js +15 -0
  70. package/dist/components/Navigation/Footer.d.ts +1 -1
  71. package/dist/components/Navigation/Footer.js +35 -33
  72. package/dist/components/Navigation/Header.d.ts +1 -1
  73. package/dist/components/Navigation/Header.js +13 -26
  74. package/dist/components/Navigation/Navigation.d.ts +11 -8
  75. package/dist/components/Navigation/Navigation.js +2 -5
  76. package/dist/components/Navigation/NavigationContent.d.ts +1 -1
  77. package/dist/components/Navigation/NavigationContent.js +60 -71
  78. package/dist/components/Navigation/NavigationProvider.d.ts +1 -1
  79. package/dist/components/Navigation/NavigationProvider.js +108 -70
  80. package/dist/components/Navigation/animations.css.d.ts +6 -0
  81. package/dist/components/Navigation/components/Group.d.ts +3 -2
  82. package/dist/components/Navigation/components/Group.js +21 -43
  83. package/dist/components/Navigation/components/Item.d.ts +3 -2
  84. package/dist/components/Navigation/components/Item.js +552 -405
  85. package/dist/components/Navigation/components/ItemProvider.d.ts +1 -1
  86. package/dist/components/Navigation/components/ItemProvider.js +2 -4
  87. package/dist/components/Navigation/components/PinnedItems.d.ts +3 -2
  88. package/dist/components/Navigation/components/PinnedItems.js +95 -75
  89. package/dist/components/Navigation/components/Separator.d.ts +1 -1
  90. package/dist/components/Navigation/components/Separator.js +3 -11
  91. package/dist/components/Navigation/components/items.css.d.ts +70 -0
  92. package/dist/components/Navigation/components/items.css.js +47 -0
  93. package/dist/components/Navigation/components/styles.css.d.ts +23 -0
  94. package/dist/components/Navigation/components/styles.css.js +17 -0
  95. package/dist/components/Navigation/constants.d.ts +0 -12
  96. package/dist/components/Navigation/constants.js +1 -28
  97. package/dist/components/Navigation/styles.css.d.ts +33 -0
  98. package/dist/components/Navigation/styles.css.js +22 -0
  99. package/dist/components/Navigation/types.d.ts +2 -1
  100. package/dist/components/Navigation/variables.css.d.ts +1 -0
  101. package/dist/components/Navigation/variables.css.js +5 -0
  102. package/dist/components/OfferList/OfferList.d.ts +9 -6
  103. package/dist/components/OfferList/OfferList.js +43 -22
  104. package/dist/components/OfferList/OfferListProvider.d.ts +1 -1
  105. package/dist/components/OfferList/OfferListProvider.js +25 -15
  106. package/dist/components/OfferList/components/Banner.d.ts +1 -1
  107. package/dist/components/OfferList/components/Banner.js +32 -95
  108. package/dist/components/OfferList/components/Cell.d.ts +1 -1
  109. package/dist/components/OfferList/components/Cell.js +16 -37
  110. package/dist/components/OfferList/components/Row.d.ts +4 -2
  111. package/dist/components/OfferList/components/Row.js +141 -125
  112. package/dist/components/OfferList/styles.css.d.ts +42 -0
  113. package/dist/components/OfferList/styles.css.js +38 -0
  114. package/dist/components/OrderSummary/NonScrollableContent.d.ts +1 -1
  115. package/dist/components/OrderSummary/NonScrollableContent.js +70 -34
  116. package/dist/components/OrderSummary/Provider.js +1 -4
  117. package/dist/components/OrderSummary/ScrollableContent.d.ts +1 -1
  118. package/dist/components/OrderSummary/ScrollableContent.js +177 -67
  119. package/dist/components/OrderSummary/constants.js +7 -1
  120. package/dist/components/OrderSummary/helpers.js +39 -21
  121. package/dist/components/OrderSummary/index.d.ts +1 -1
  122. package/dist/components/OrderSummary/index.js +139 -83
  123. package/dist/components/OrderSummary/styles.css.d.ts +8 -0
  124. package/dist/components/OrderSummary/styles.css.js +19 -0
  125. package/dist/components/OrderSummary/types.d.ts +3 -1
  126. package/dist/components/Plans/FeatureHint.d.ts +1 -1
  127. package/dist/components/Plans/FeatureHint.js +27 -25
  128. package/dist/components/Plans/PlanHeader.d.ts +1 -1
  129. package/dist/components/Plans/PlanHeader.js +80 -84
  130. package/dist/components/Plans/index.d.ts +3 -1
  131. package/dist/components/Plans/index.js +150 -109
  132. package/dist/components/Plans/styles.css.d.ts +61 -0
  133. package/dist/components/Plans/styles.css.js +26 -0
  134. package/dist/components/SteppedListCard/Step.d.ts +6 -1
  135. package/dist/components/SteppedListCard/Step.js +44 -32
  136. package/dist/components/SteppedListCard/SteppedListCard.d.ts +9 -5
  137. package/dist/components/SteppedListCard/SteppedListCard.js +70 -45
  138. package/dist/components/SteppedListCard/SteppedListContent.d.ts +4 -3
  139. package/dist/components/SteppedListCard/SteppedListContent.js +20 -51
  140. package/dist/components/SteppedListCard/helper.d.ts +1 -1
  141. package/dist/components/SteppedListCard/helper.js +4 -1
  142. package/dist/components/SteppedListCard/styles.css.d.ts +8 -0
  143. package/dist/components/SteppedListCard/styles.css.js +19 -0
  144. package/dist/plus.css +1 -1
  145. package/package.json +13 -16
  146. package/dist/components/CodeEditor/CodeEditor.cjs +0 -49
  147. package/dist/components/CodeEditor/styles.css.cjs +0 -9
  148. package/dist/components/ContentCard/Skeleton.cjs +0 -23
  149. package/dist/components/ContentCard/index.cjs +0 -61
  150. package/dist/components/ContentCard/styles.css.cjs +0 -27
  151. package/dist/components/ContentCardGroup/Card.cjs +0 -94
  152. package/dist/components/ContentCardGroup/SkeletonCard.cjs +0 -35
  153. package/dist/components/ContentCardGroup/index.cjs +0 -31
  154. package/dist/components/Conversation/index.cjs +0 -127
  155. package/dist/components/CustomerSatisfaction/assets/1-5.svg.cjs +0 -3
  156. package/dist/components/CustomerSatisfaction/assets/1-5NB.svg.cjs +0 -3
  157. package/dist/components/CustomerSatisfaction/assets/2-5.svg.cjs +0 -3
  158. package/dist/components/CustomerSatisfaction/assets/2-5NB.svg.cjs +0 -3
  159. package/dist/components/CustomerSatisfaction/assets/3-5.svg.cjs +0 -3
  160. package/dist/components/CustomerSatisfaction/assets/3-5NB.svg.cjs +0 -3
  161. package/dist/components/CustomerSatisfaction/assets/4-5.svg.cjs +0 -3
  162. package/dist/components/CustomerSatisfaction/assets/4-5NB.svg.cjs +0 -3
  163. package/dist/components/CustomerSatisfaction/assets/5-5.svg.cjs +0 -3
  164. package/dist/components/CustomerSatisfaction/assets/5-5NB.svg.cjs +0 -3
  165. package/dist/components/CustomerSatisfaction/index.cjs +0 -123
  166. package/dist/components/EstimateCost/Components/CustomUnitInput.cjs +0 -34
  167. package/dist/components/EstimateCost/Components/Item.cjs +0 -303
  168. package/dist/components/EstimateCost/Components/LineThrough.cjs +0 -19
  169. package/dist/components/EstimateCost/Components/NumberInput.cjs +0 -31
  170. package/dist/components/EstimateCost/Components/Region.cjs +0 -43
  171. package/dist/components/EstimateCost/Components/Regular.cjs +0 -37
  172. package/dist/components/EstimateCost/Components/Strong.cjs +0 -30
  173. package/dist/components/EstimateCost/Components/Unit.cjs +0 -53
  174. package/dist/components/EstimateCost/Components/Zone.cjs +0 -42
  175. package/dist/components/EstimateCost/EstimateCost.cjs +0 -90
  176. package/dist/components/EstimateCost/EstimateCostContent.cjs +0 -256
  177. package/dist/components/EstimateCost/EstimateCostProvider.cjs +0 -37
  178. package/dist/components/EstimateCost/OverlayComponent.cjs +0 -123
  179. package/dist/components/EstimateCost/OverlayContext.cjs +0 -15
  180. package/dist/components/EstimateCost/componentStyle.cjs +0 -221
  181. package/dist/components/EstimateCost/componentStyle.d.ts +0 -106
  182. package/dist/components/EstimateCost/componentStyle.js +0 -219
  183. package/dist/components/EstimateCost/constants.cjs +0 -32
  184. package/dist/components/EstimateCost/helper.cjs +0 -16
  185. package/dist/components/EstimateCost/locales/en.cjs +0 -23
  186. package/dist/components/FAQ/index.cjs +0 -48
  187. package/dist/components/FAQ/styles.css.cjs +0 -6
  188. package/dist/components/InfoTable/InfoTable.cjs +0 -32
  189. package/dist/components/InfoTable/components/Cell.cjs +0 -44
  190. package/dist/components/InfoTable/components/Row.cjs +0 -26
  191. package/dist/components/Navigation/Footer.cjs +0 -71
  192. package/dist/components/Navigation/Header.cjs +0 -36
  193. package/dist/components/Navigation/Navigation.cjs +0 -18
  194. package/dist/components/Navigation/NavigationContent.cjs +0 -163
  195. package/dist/components/Navigation/NavigationProvider.cjs +0 -129
  196. package/dist/components/Navigation/components/Group.cjs +0 -62
  197. package/dist/components/Navigation/components/Item.cjs +0 -429
  198. package/dist/components/Navigation/components/ItemProvider.cjs +0 -14
  199. package/dist/components/Navigation/components/PinnedItems.cjs +0 -116
  200. package/dist/components/Navigation/components/Separator.cjs +0 -18
  201. package/dist/components/Navigation/constants.cjs +0 -37
  202. package/dist/components/Navigation/locales/en.cjs +0 -11
  203. package/dist/components/OfferList/OfferList.cjs +0 -58
  204. package/dist/components/OfferList/OfferListProvider.cjs +0 -38
  205. package/dist/components/OfferList/components/Banner.cjs +0 -108
  206. package/dist/components/OfferList/components/Cell.cjs +0 -50
  207. package/dist/components/OfferList/components/Row.cjs +0 -192
  208. package/dist/components/OrderSummary/NonScrollableContent.cjs +0 -68
  209. package/dist/components/OrderSummary/Provider.cjs +0 -18
  210. package/dist/components/OrderSummary/ScrollableContent.cjs +0 -106
  211. package/dist/components/OrderSummary/constants.cjs +0 -12
  212. package/dist/components/OrderSummary/helpers.cjs +0 -91
  213. package/dist/components/OrderSummary/index.cjs +0 -135
  214. package/dist/components/OrderSummary/locales/en.cjs +0 -11
  215. package/dist/components/Plans/FeatureHint.cjs +0 -42
  216. package/dist/components/Plans/PlanHeader.cjs +0 -102
  217. package/dist/components/Plans/index.cjs +0 -152
  218. package/dist/components/Plans/locales/en.cjs +0 -7
  219. package/dist/components/SteppedListCard/Step.cjs +0 -51
  220. package/dist/components/SteppedListCard/SteppedListCard.cjs +0 -82
  221. package/dist/components/SteppedListCard/SteppedListContent.cjs +0 -86
  222. package/dist/components/SteppedListCard/helper.cjs +0 -38
  223. package/dist/index.cjs +0 -33
@@ -1,106 +0,0 @@
1
- import type { Theme } from '@emotion/react';
2
- export declare const StyledDiv: import("@emotion/styled").StyledComponent<{
3
- theme?: Theme;
4
- as?: React.ElementType;
5
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
- export declare const StyledTable: import("@emotion/styled").StyledComponent<{
7
- theme?: Theme;
8
- as?: React.ElementType;
9
- } & {
10
- noTotal: boolean;
11
- }, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
12
- export declare const StyledFeesTable: import("@emotion/styled").StyledComponent<{
13
- theme?: Theme;
14
- as?: React.ElementType;
15
- }, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
16
- export declare const PriceCol: import("@emotion/styled").StyledComponent<{
17
- theme?: Theme;
18
- as?: React.ElementType;
19
- }, import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, {}>;
20
- export declare const priceCell: (theme: Theme) => import("@emotion/react").SerializedStyles;
21
- export declare const Cell: import("@emotion/styled").StyledComponent<{
22
- theme?: Theme;
23
- as?: React.ElementType;
24
- } & {
25
- hasBorder?: boolean;
26
- tabulation?: number;
27
- primary?: boolean;
28
- }, import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, {}>;
29
- export declare const TotalPriceCell: import("@emotion/styled").StyledComponent<{
30
- theme?: Theme;
31
- as?: React.ElementType;
32
- } & {
33
- hasBorder?: boolean;
34
- tabulation?: number;
35
- primary?: boolean;
36
- } & import("react").ClassAttributes<HTMLTableDataCellElement> & import("react").TdHTMLAttributes<HTMLTableDataCellElement> & {
37
- theme?: Theme;
38
- }, {}, {}>;
39
- export declare const EmptyTable: import("@emotion/styled").StyledComponent<{
40
- theme?: Theme;
41
- as?: React.ElementType;
42
- }, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
43
- export declare const Title: import("@emotion/styled").StyledComponent<{
44
- theme?: Theme;
45
- as?: React.ElementType;
46
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, {}>;
47
- export declare const EmptyCell: import("@emotion/styled").StyledComponent<{
48
- theme?: Theme;
49
- as?: React.ElementType;
50
- }, import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, {}>;
51
- export declare const TimeCell: import("@emotion/styled").StyledComponent<{
52
- theme?: Theme;
53
- as?: React.ElementType;
54
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
55
- export declare const BadgeBeta: import("@emotion/styled").StyledComponent<{
56
- className?: string;
57
- children: import("react").ReactNode;
58
- 'data-testid'?: string;
59
- } & {
60
- size?: "medium" | "large" | "small" | undefined;
61
- sentiment?: "black" | "white" | "danger" | "info" | "neutral" | "primary" | "secondary" | "success" | "warning" | undefined;
62
- prominence?: "default" | "strong" | undefined;
63
- disabled?: boolean | undefined;
64
- } & {
65
- theme?: Theme;
66
- } & {
67
- long: boolean;
68
- }, {}, {}>;
69
- export declare const StyledTr: import("@emotion/styled").StyledComponent<{
70
- theme?: Theme;
71
- as?: React.ElementType;
72
- } & {
73
- isFirstElement?: boolean;
74
- shouldBeHidden?: boolean;
75
- hideFromOverlay?: boolean;
76
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, {}>;
77
- export declare const OverlayRow: import("@emotion/styled").StyledComponent<{
78
- theme?: Theme;
79
- as?: React.ElementType;
80
- } & {
81
- isFirstElement?: boolean;
82
- shouldBeHidden?: boolean;
83
- hideFromOverlay?: boolean;
84
- }, import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, {}>;
85
- export declare const StyledLeftSide: import("@emotion/styled").StyledComponent<{
86
- theme?: Theme;
87
- as?: React.ElementType;
88
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
89
- export declare const ItemResourceName: import("@emotion/styled").StyledComponent<{
90
- theme?: Theme;
91
- as?: React.ElementType;
92
- } & {
93
- animated: boolean;
94
- }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
95
- export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
96
- className?: string;
97
- children: import("react").ReactNode;
98
- 'data-testid'?: string;
99
- } & {
100
- size?: "medium" | "large" | "small" | undefined;
101
- sentiment?: "black" | "white" | "danger" | "info" | "neutral" | "primary" | "secondary" | "success" | "warning" | undefined;
102
- prominence?: "default" | "strong" | undefined;
103
- disabled?: boolean | undefined;
104
- } & {
105
- theme?: Theme;
106
- }, {}, {}>;