@ultraviolet/plus 3.0.0-beta.12 → 3.0.0-beta.13

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 (97) hide show
  1. package/dist/components/ContentCardGroup/styles.css.cjs +1 -0
  2. package/dist/components/ContentCardGroup/styles.css.js +1 -0
  3. package/dist/components/Conversation/styles.css.cjs +0 -1
  4. package/dist/components/Conversation/styles.css.js +0 -1
  5. package/dist/components/EstimateCost/Components/Item.cjs +32 -115
  6. package/dist/components/EstimateCost/Components/Item.js +34 -115
  7. package/dist/components/EstimateCost/Components/LineThrough.cjs +6 -14
  8. package/dist/components/EstimateCost/Components/LineThrough.d.ts +3 -5
  9. package/dist/components/EstimateCost/Components/LineThrough.js +6 -12
  10. package/dist/components/EstimateCost/Components/NumberInput.cjs +2 -2
  11. package/dist/components/EstimateCost/Components/NumberInput.js +2 -2
  12. package/dist/components/EstimateCost/Components/Region.cjs +2 -12
  13. package/dist/components/EstimateCost/Components/Region.js +2 -10
  14. package/dist/components/EstimateCost/Components/Regular.cjs +5 -20
  15. package/dist/components/EstimateCost/Components/Regular.js +5 -18
  16. package/dist/components/EstimateCost/Components/Strong.cjs +7 -22
  17. package/dist/components/EstimateCost/Components/Strong.d.ts +1 -9
  18. package/dist/components/EstimateCost/Components/Strong.js +8 -21
  19. package/dist/components/EstimateCost/Components/Unit.cjs +3 -22
  20. package/dist/components/EstimateCost/Components/Unit.js +3 -20
  21. package/dist/components/EstimateCost/Components/Zone.cjs +2 -12
  22. package/dist/components/EstimateCost/Components/Zone.js +2 -10
  23. package/dist/components/EstimateCost/Components/components.css.cjs +123 -0
  24. package/dist/components/EstimateCost/Components/components.css.d.ts +77 -0
  25. package/dist/components/EstimateCost/Components/components.css.js +123 -0
  26. package/dist/components/EstimateCost/EstimateCost.cjs +15 -20
  27. package/dist/components/EstimateCost/EstimateCost.d.ts +9 -15
  28. package/dist/components/EstimateCost/EstimateCost.js +15 -18
  29. package/dist/components/EstimateCost/EstimateCostContent.cjs +21 -72
  30. package/dist/components/EstimateCost/EstimateCostContent.js +22 -71
  31. package/dist/components/EstimateCost/OverlayComponent.cjs +13 -51
  32. package/dist/components/EstimateCost/OverlayComponent.js +14 -50
  33. package/dist/components/EstimateCost/constants.cjs +0 -4
  34. package/dist/components/EstimateCost/constants.js +0 -4
  35. package/dist/components/EstimateCost/styles.css.cjs +50 -0
  36. package/dist/components/EstimateCost/styles.css.d.ts +76 -0
  37. package/dist/components/EstimateCost/styles.css.js +50 -0
  38. package/dist/components/Navigation/Footer.cjs +4 -19
  39. package/dist/components/Navigation/Footer.js +4 -17
  40. package/dist/components/Navigation/Header.cjs +2 -20
  41. package/dist/components/Navigation/Header.js +2 -18
  42. package/dist/components/Navigation/NavigationContent.cjs +13 -64
  43. package/dist/components/Navigation/NavigationContent.js +14 -63
  44. package/dist/components/Navigation/animations.css.d.ts +6 -0
  45. package/dist/components/Navigation/components/Group.cjs +6 -33
  46. package/dist/components/Navigation/components/Group.js +6 -31
  47. package/dist/components/Navigation/components/Item.cjs +83 -237
  48. package/dist/components/Navigation/components/Item.js +84 -236
  49. package/dist/components/Navigation/components/PinnedItems.cjs +7 -45
  50. package/dist/components/Navigation/components/PinnedItems.js +7 -43
  51. package/dist/components/Navigation/components/Separator.cjs +2 -12
  52. package/dist/components/Navigation/components/Separator.js +2 -10
  53. package/dist/components/Navigation/components/items.css.cjs +47 -0
  54. package/dist/components/Navigation/components/items.css.d.ts +70 -0
  55. package/dist/components/Navigation/components/items.css.js +47 -0
  56. package/dist/components/Navigation/components/styles.css.cjs +17 -0
  57. package/dist/components/Navigation/components/styles.css.d.ts +23 -0
  58. package/dist/components/Navigation/components/styles.css.js +17 -0
  59. package/dist/components/Navigation/constants.cjs +0 -27
  60. package/dist/components/Navigation/constants.d.ts +0 -12
  61. package/dist/components/Navigation/constants.js +1 -28
  62. package/dist/components/Navigation/styles.css.cjs +23 -0
  63. package/dist/components/Navigation/styles.css.d.ts +33 -0
  64. package/dist/components/Navigation/styles.css.js +23 -0
  65. package/dist/components/Navigation/variables.css.cjs +4 -0
  66. package/dist/components/Navigation/variables.css.d.ts +1 -0
  67. package/dist/components/Navigation/variables.css.js +4 -0
  68. package/dist/components/OrderSummary/NonScrollableContent.cjs +2 -14
  69. package/dist/components/OrderSummary/NonScrollableContent.js +2 -12
  70. package/dist/components/OrderSummary/ScrollableContent.cjs +5 -41
  71. package/dist/components/OrderSummary/ScrollableContent.js +5 -39
  72. package/dist/components/OrderSummary/index.cjs +4 -38
  73. package/dist/components/OrderSummary/index.js +5 -37
  74. package/dist/components/OrderSummary/styles.css.cjs +19 -0
  75. package/dist/components/OrderSummary/styles.css.d.ts +8 -0
  76. package/dist/components/OrderSummary/styles.css.js +19 -0
  77. package/dist/components/Plans/FeatureHint.cjs +2 -20
  78. package/dist/components/Plans/FeatureHint.js +2 -18
  79. package/dist/components/Plans/index.cjs +40 -91
  80. package/dist/components/Plans/index.js +44 -93
  81. package/dist/components/Plans/styles.css.cjs +16 -0
  82. package/dist/components/Plans/styles.css.d.ts +56 -0
  83. package/dist/components/Plans/styles.css.js +16 -0
  84. package/dist/components/SteppedListCard/Step.cjs +2 -33
  85. package/dist/components/SteppedListCard/Step.js +2 -31
  86. package/dist/components/SteppedListCard/SteppedListCard.cjs +3 -31
  87. package/dist/components/SteppedListCard/SteppedListCard.js +4 -30
  88. package/dist/components/SteppedListCard/SteppedListContent.cjs +4 -40
  89. package/dist/components/SteppedListCard/SteppedListContent.js +5 -39
  90. package/dist/components/SteppedListCard/styles.css.cjs +17 -0
  91. package/dist/components/SteppedListCard/styles.css.d.ts +7 -0
  92. package/dist/components/SteppedListCard/styles.css.js +17 -0
  93. package/dist/plus.css +1 -1
  94. package/package.json +6 -6
  95. package/dist/components/EstimateCost/componentStyle.cjs +0 -221
  96. package/dist/components/EstimateCost/componentStyle.d.ts +0 -106
  97. package/dist/components/EstimateCost/componentStyle.js +0 -219
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ ;/* empty css */
3
4
  ;/* empty css */
4
5
  var customStack = "uv_plus_1gpmh3x0";
5
6
  var iconWrapper = "uv_plus_1gpmh3x1";
@@ -1,3 +1,4 @@
1
+ /* empty css */
1
2
  /* empty css */
2
3
  var customStack = "uv_plus_1gpmh3x0";
3
4
  var iconWrapper = "uv_plus_1gpmh3x1";
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- ;/* empty css */
4
3
  ;/* empty css */
5
4
  var conversationInfos = { left: "uv_plus_16zcyo51 uv_plus_16zcyo50", right: "uv_plus_16zcyo52 uv_plus_16zcyo50" };
6
5
  var styledText = "uv_plus_16zcyo53";
@@ -1,4 +1,3 @@
1
- /* empty css */
2
1
  /* empty css */
3
2
  var conversationInfos = { left: "uv_plus_16zcyo51 uv_plus_16zcyo50", right: "uv_plus_16zcyo52 uv_plus_16zcyo50" };
4
3
  var styledText = "uv_plus_16zcyo53";