@configura/web-ui 1.4.0-alpha.3 → 1.5.0-alpha.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 (45) hide show
  1. package/dist/components/CfgPriceView.d.ts +7 -0
  2. package/dist/components/CfgPriceView.js +13 -0
  3. package/dist/components/ProductInformation.d.ts +4 -1
  4. package/dist/components/ProductInformation.js +10 -19
  5. package/dist/components/TaskListView.d.ts +9 -0
  6. package/dist/components/TaskListView.js +50 -0
  7. package/dist/components/TaskStartView.d.ts +13 -0
  8. package/dist/components/TaskStartView.js +22 -0
  9. package/dist/components/icons/Checkmark.d.ts +4 -3
  10. package/dist/components/icons/Checkmark.js +4 -4
  11. package/dist/components/icons/Chevron.d.ts +2 -1
  12. package/dist/components/icons/Chevron.js +2 -2
  13. package/dist/components/icons/CircleXmarkIcon.d.ts +4 -0
  14. package/dist/components/icons/CircleXmarkIcon.js +8 -0
  15. package/dist/components/icons/DownloadIcon.d.ts +4 -0
  16. package/dist/components/icons/DownloadIcon.js +8 -0
  17. package/dist/components/icons/ErrorIcon.d.ts +4 -0
  18. package/dist/components/icons/ErrorIcon.js +8 -0
  19. package/dist/components/productConfiguration/CfgAdditionalProductView.js +2 -2
  20. package/dist/components/productConfiguration/CfgCheckboxView.d.ts +1 -0
  21. package/dist/components/productConfiguration/CfgCheckboxesView.d.ts +1 -0
  22. package/dist/components/productConfiguration/CfgCheckboxesView.js +2 -1
  23. package/dist/components/productConfiguration/CfgDropdownOptionView.d.ts +1 -0
  24. package/dist/components/productConfiguration/CfgDropdownOptionView.js +2 -1
  25. package/dist/components/productConfiguration/CfgDropdownView.d.ts +1 -0
  26. package/dist/components/productConfiguration/CfgDropdownView.js +2 -1
  27. package/dist/components/productConfiguration/CfgFeatureView.d.ts +2 -0
  28. package/dist/components/productConfiguration/CfgFeatureView.js +3 -1
  29. package/dist/components/productConfiguration/CfgGroupView.js +1 -7
  30. package/dist/components/productConfiguration/CfgOptionNumericView.js +4 -2
  31. package/dist/components/productConfiguration/CfgProductConfigurationView.js +1 -1
  32. package/dist/css/web-ui.css +1 -1
  33. package/dist/css/web-ui.css.map +1 -1
  34. package/dist/index.d.ts +2 -0
  35. package/dist/index.js +2 -0
  36. package/dist/scss/_configurator.scss +53 -33
  37. package/dist/scss/_feature-item.scss +19 -6
  38. package/dist/scss/_forms.scss +42 -0
  39. package/dist/scss/_range-view.scss +33 -22
  40. package/dist/scss/_tasks.scss +71 -0
  41. package/dist/scss/_themed.scss +37 -14
  42. package/dist/scss/icons/_circle-xmark-icon.scss +24 -0
  43. package/dist/scss/icons/_download-icon.scss +24 -0
  44. package/dist/scss/icons/_error-icon.scss +24 -0
  45. package/package.json +3 -3
@@ -0,0 +1,24 @@
1
+ @use "../mixins";
2
+
3
+ @mixin classes($color) {
4
+ .cfgCircleXmarkIcon {
5
+ /* The distance-units inside the icon are px even though everything
6
+ else is relative units. The SVG has its own coordinate space. */
7
+
8
+ @include mixins.cfgRootStyles;
9
+
10
+ display: inline-block;
11
+ width: 100%;
12
+ height: 100%;
13
+
14
+ path,
15
+ circle {
16
+ stroke: $color;
17
+ stroke-linecap: round;
18
+ stroke-linejoin: round;
19
+ stroke-width: 1.5;
20
+ }
21
+
22
+ @content;
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ @use "../mixins";
2
+
3
+ @mixin classes($color) {
4
+ .cfgDownloadIcon {
5
+ /* The distance-units inside the icon are px even though everything
6
+ else is relative units. The SVG has its own coordinate space. */
7
+
8
+ @include mixins.cfgRootStyles;
9
+
10
+ display: inline-block;
11
+ width: 100%;
12
+ height: 100%;
13
+
14
+ path,
15
+ circle {
16
+ stroke: $color;
17
+ stroke-linecap: round;
18
+ stroke-linejoin: round;
19
+ stroke-width: 1.5;
20
+ }
21
+
22
+ @content;
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ @use "../mixins";
2
+
3
+ @mixin classes($color) {
4
+ .cfgErrorIcon {
5
+ /* The distance-units inside the icon are px even though everything
6
+ else is relative units. The SVG has its own coordinate space. */
7
+
8
+ @include mixins.cfgRootStyles;
9
+
10
+ display: inline-block;
11
+ width: 100%;
12
+ height: 100%;
13
+
14
+ path,
15
+ circle {
16
+ stroke: $color;
17
+ stroke-linecap: round;
18
+ stroke-linejoin: round;
19
+ stroke-width: 1.5;
20
+ }
21
+
22
+ @content;
23
+ }
24
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@configura/web-ui",
3
- "version": "1.4.0-alpha.3",
3
+ "version": "1.5.0-alpha.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,7 @@
32
32
  ]
33
33
  },
34
34
  "dependencies": {
35
- "@configura/web-api": "^1.4.0-alpha.3"
35
+ "@configura/web-api": "^1.5.0-alpha.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@babel/preset-env": "^7.14.4",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "59b9b60b62da2baf0a623f0659bf3abbb8a43196"
67
+ "gitHead": "6e24920b36ac225b17fcb519c0f4b7c6af924fbd"
68
68
  }