@carbon/ibm-products 1.55.2 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. package/css/index-full-carbon.css +579 -0
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +1 -1
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon.css +579 -0
  6. package/css/index-without-carbon.css.map +1 -1
  7. package/css/index-without-carbon.min.css +1 -1
  8. package/css/index-without-carbon.min.css.map +1 -1
  9. package/css/index.css +579 -0
  10. package/css/index.css.map +1 -1
  11. package/css/index.min.css +1 -1
  12. package/css/index.min.css.map +1 -1
  13. package/es/components/Carousel/Carousel.js +15 -5
  14. package/es/components/Coachmark/Coachmark.js +243 -0
  15. package/es/components/Coachmark/CoachmarkDragbar.js +137 -0
  16. package/es/components/Coachmark/CoachmarkHeader.js +88 -0
  17. package/es/components/Coachmark/CoachmarkOverlay.js +139 -0
  18. package/es/components/Coachmark/CoachmarkTagline.js +93 -0
  19. package/es/components/Coachmark/index.js +10 -0
  20. package/es/components/Coachmark/utils/constants.js +76 -0
  21. package/es/components/Coachmark/utils/context.js +5 -0
  22. package/es/components/Coachmark/utils/enums.js +40 -0
  23. package/es/components/Coachmark/utils/helpers.js +11 -0
  24. package/es/components/Coachmark/utils/hooks.js +54 -0
  25. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +90 -0
  26. package/es/components/CoachmarkBeacon/index.js +8 -0
  27. package/es/components/CoachmarkButton/CoachmarkButton.js +72 -0
  28. package/es/components/CoachmarkButton/index.js +8 -0
  29. package/es/components/CoachmarkFixed/CoachmarkFixed.js +201 -0
  30. package/es/components/CoachmarkFixed/index.js +8 -0
  31. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +86 -0
  32. package/es/components/CoachmarkOverlayElement/index.js +8 -0
  33. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +175 -0
  34. package/es/components/CoachmarkOverlayElements/index.js +8 -0
  35. package/es/components/CoachmarkStack/CoachmarkStack.js +260 -0
  36. package/es/components/CoachmarkStack/CoachmarkStackHome.js +157 -0
  37. package/es/components/CoachmarkStack/index.js +8 -0
  38. package/es/components/NotificationsPanel/NotificationsPanel.js +3 -2
  39. package/es/components/index.js +7 -0
  40. package/es/global/js/package-settings.js +8 -1
  41. package/lib/components/Carousel/Carousel.js +15 -5
  42. package/lib/components/Coachmark/Coachmark.js +247 -0
  43. package/lib/components/Coachmark/CoachmarkDragbar.js +137 -0
  44. package/lib/components/Coachmark/CoachmarkHeader.js +85 -0
  45. package/lib/components/Coachmark/CoachmarkOverlay.js +139 -0
  46. package/lib/components/Coachmark/CoachmarkTagline.js +90 -0
  47. package/lib/components/Coachmark/index.js +38 -0
  48. package/lib/components/Coachmark/utils/constants.js +82 -0
  49. package/lib/components/Coachmark/utils/context.js +13 -0
  50. package/lib/components/Coachmark/utils/enums.js +49 -0
  51. package/lib/components/Coachmark/utils/helpers.js +17 -0
  52. package/lib/components/Coachmark/utils/hooks.js +60 -0
  53. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +87 -0
  54. package/lib/components/CoachmarkBeacon/index.js +12 -0
  55. package/lib/components/CoachmarkButton/CoachmarkButton.js +69 -0
  56. package/lib/components/CoachmarkButton/index.js +12 -0
  57. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +201 -0
  58. package/lib/components/CoachmarkFixed/index.js +12 -0
  59. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +83 -0
  60. package/lib/components/CoachmarkOverlayElement/index.js +12 -0
  61. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +176 -0
  62. package/lib/components/CoachmarkOverlayElements/index.js +12 -0
  63. package/lib/components/CoachmarkStack/CoachmarkStack.js +264 -0
  64. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +160 -0
  65. package/lib/components/CoachmarkStack/index.js +12 -0
  66. package/lib/components/NotificationsPanel/NotificationsPanel.js +3 -2
  67. package/lib/components/index.js +49 -0
  68. package/lib/global/js/package-settings.js +8 -1
  69. package/package.json +2 -2
  70. package/scss/components/Carousel/_carousel.scss +3 -0
  71. package/scss/components/Coachmark/_index.scss +11 -0
  72. package/scss/components/Coachmark/_storybook-styles.scss +20 -0
  73. package/scss/components/Coachmark/styles/_coachmark-dragbar.scss +74 -0
  74. package/scss/components/Coachmark/styles/_coachmark-header.scss +58 -0
  75. package/scss/components/Coachmark/styles/_coachmark-overlay.scss +327 -0
  76. package/scss/components/Coachmark/styles/_coachmark-tagline.scss +118 -0
  77. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +166 -0
  78. package/scss/components/CoachmarkBeacon/_index.scss +8 -0
  79. package/scss/components/CoachmarkBeacon/_storybook-styles.scss +19 -0
  80. package/scss/components/CoachmarkButton/_coachmark-button.scss +34 -0
  81. package/scss/components/CoachmarkButton/_index.scss +8 -0
  82. package/scss/components/CoachmarkButton/_storybook-styles.scss +19 -0
  83. package/scss/components/CoachmarkFixed/_coachmark-fixed.scss +34 -0
  84. package/scss/components/CoachmarkFixed/_index.scss +8 -0
  85. package/scss/components/CoachmarkFixed/_storybook-styles.scss +10 -0
  86. package/scss/components/CoachmarkOverlayElement/_coachmark-overlay-element.scss +50 -0
  87. package/scss/components/CoachmarkOverlayElement/_index.scss +8 -0
  88. package/scss/components/CoachmarkOverlayElement/_storybook-styles.scss +19 -0
  89. package/scss/components/CoachmarkOverlayElements/_coachmark-overlay-elements.scss +40 -0
  90. package/scss/components/CoachmarkOverlayElements/_index.scss +8 -0
  91. package/scss/components/CoachmarkOverlayElements/_storybook-styles.scss +19 -0
  92. package/scss/components/CoachmarkStack/_coachmark-stack.scss +85 -0
  93. package/scss/components/CoachmarkStack/_index.scss +8 -0
  94. package/scss/components/CoachmarkStack/_storybook-styles.scss +10 -0
  95. package/scss/components/_index.scss +7 -1
@@ -0,0 +1,34 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ // Standard imports.
9
+ @import '../../global/styles/project-settings';
10
+ @import '../../global/styles/mixins';
11
+
12
+ // Other Carbon settings.
13
+ // TODO: @import 'carbon-components/scss/globals/grid/grid'; if needed
14
+
15
+ // CoachmarkButton uses the following Carbon components:
16
+ // TODO: @import(s) of Carbon component styles used by CoachmarkButton
17
+
18
+ // CoachmarkButton uses the following Carbon for IBM Products components:
19
+ // TODO: @import(s) of IBM Products component styles used by CoachmarkButton
20
+
21
+ // Define all component styles in a mixin which is then exported using
22
+ // the Carbon import-once mechanism.
23
+ @mixin coachmark-button {
24
+ // The block part of our conventional BEM class names (blockClass__E--M).
25
+ $block-class: #{$pkg-prefix}--coachmark-button;
26
+
27
+ .#{$block-class} {
28
+ // TODO: Styles.
29
+ }
30
+ }
31
+
32
+ @include exports('coachmark-button') {
33
+ @include coachmark-button;
34
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import './coachmark-button';
@@ -0,0 +1,19 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import '../../global/styles/project-settings';
9
+
10
+ .CoachmarkBaseExampleUsage {
11
+ position: relative;
12
+ display: inline-block;
13
+ max-height: 100%;
14
+ box-sizing: border-box;
15
+ /* stylelint-disable-next-line carbon/layout-token-use */
16
+ padding: 1rem;
17
+ margin-left: 50%;
18
+ transform: translateX(-50%);
19
+ }
@@ -0,0 +1,34 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ // Standard imports.
9
+ @import '../../global/styles/project-settings';
10
+ @import '../../global/styles/mixins';
11
+
12
+ // Other Carbon settings.
13
+ // TODO: @import 'carbon-components/scss/globals/grid/grid'; if needed
14
+
15
+ // CoachmarkFixed uses the following Carbon components:
16
+ // TODO: @import(s) of Carbon component styles used by CoachmarkFixed
17
+
18
+ // CoachmarkFixed uses the following Carbon for IBM Products components:
19
+ // TODO: @import(s) of IBM Products component styles used by CoachmarkFixed
20
+
21
+ // Define all component styles in a mixin which is then exported using
22
+ // the Carbon import-once mechanism.
23
+ @mixin coachmark-fixed {
24
+ // The block part of our conventional BEM class names (blockClass__E--M).
25
+ $block-class: #{$pkg-prefix}--coachmark-fixed;
26
+
27
+ .#{$block-class} {
28
+ // TODO: Styles.
29
+ }
30
+ }
31
+
32
+ @include exports('coachmark-fixed') {
33
+ @include coachmark-fixed;
34
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import './coachmark-fixed';
@@ -0,0 +1,10 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import '../../global/styles/project-settings';
9
+
10
+ // TODO: add any additional styles used by CoachmarkFixed.stories.js
@@ -0,0 +1,50 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ // Standard imports.
9
+ @import '../../global/styles/project-settings';
10
+ @import '../../global/styles/mixins';
11
+
12
+ // Define all component styles in a mixin which is then exported using
13
+ // the Carbon import-once mechanism.
14
+ @mixin coachmark-overlay-element {
15
+ // The block part of our conventional BEM class names (blockClass__E--M).
16
+ $block-class: #{$pkg-prefix}--coachmark-overlay-element;
17
+ $carousel-item-class: #{$pkg-prefix}--carousel__item;
18
+
19
+ .#{$block-class} {
20
+ &__content {
21
+ padding-bottom: $spacing-05;
22
+ }
23
+
24
+ &__title {
25
+ @include carbon--type-style('productive-heading-02');
26
+
27
+ margin: 0 0 $spacing-03;
28
+ }
29
+
30
+ &__body {
31
+ @include carbon--type-style('body-long-01');
32
+ }
33
+
34
+ &__button {
35
+ margin-bottom: 0;
36
+ }
37
+ }
38
+
39
+ .#{$carousel-item-class} {
40
+ .#{$block-class} {
41
+ &__button {
42
+ margin-bottom: $spacing-05;
43
+ }
44
+ }
45
+ }
46
+ }
47
+
48
+ @include exports('coachmark-overlay-element') {
49
+ @include coachmark-overlay-element;
50
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import './coachmark-overlay-element';
@@ -0,0 +1,19 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import '../../global/styles/project-settings';
9
+
10
+ .CoachmarkBaseExampleUsage {
11
+ position: relative;
12
+ display: inline-block;
13
+ max-height: 100%;
14
+ box-sizing: border-box;
15
+ /* stylelint-disable-next-line carbon/layout-token-use */
16
+ padding: 1rem;
17
+ margin-left: 50%;
18
+ transform: translateX(-50%);
19
+ }
@@ -0,0 +1,40 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ // Standard imports.
9
+ @import '../../global/styles/project-settings';
10
+ @import '../../global/styles/mixins';
11
+
12
+ // Define all component styles in a mixin which is then exported using
13
+ // the Carbon import-once mechanism.
14
+ @mixin coachmark-overlay-elements {
15
+ // The block part of our conventional BEM class names (blockClass__E--M).
16
+ $block-class: #{$pkg-prefix}--coachmark-overlay-elements;
17
+
18
+ .#{$block-class} {
19
+ &__element-stepped-media {
20
+ height: rem(128px);
21
+ margin-bottom: $spacing-05;
22
+ }
23
+
24
+ &__footer {
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: flex-end;
28
+ }
29
+
30
+ &--controls-progress {
31
+ margin-right: auto;
32
+ justify-self: flex-start;
33
+ @include carbon--type-style('helper-text-01');
34
+ }
35
+ }
36
+ }
37
+
38
+ @include exports('coachmark-overlay-elements') {
39
+ @include coachmark-overlay-elements;
40
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import './coachmark-overlay-elements';
@@ -0,0 +1,19 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import '../../global/styles/project-settings';
9
+
10
+ .CoachmarkBaseExampleUsage {
11
+ position: relative;
12
+ display: inline-block;
13
+ max-height: 100%;
14
+ box-sizing: border-box;
15
+ /* stylelint-disable-next-line carbon/layout-token-use */
16
+ padding: 1rem;
17
+ margin-left: 50%;
18
+ transform: translateX(-50%);
19
+ }
@@ -0,0 +1,85 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ /* stylelint-disable carbon/theme-token-use */
9
+
10
+ // Standard imports.
11
+ @import '../../global/styles/project-settings';
12
+ @import '../../global/styles/mixins';
13
+
14
+ @mixin coachmark-stack {
15
+ // The block part of our conventional BEM class names (blockClass__E--M).
16
+
17
+ $block-class: #{$pkg-prefix}--coachmark-stack;
18
+ $elements-block-class: #{$pkg-prefix}--coachmark-stack-element;
19
+ $overlay-class: #{$prefix}--coachmark-overlay;
20
+ $stack-home-class: #{$pkg-prefix}--coachmark-stacked-home;
21
+
22
+ .#{$elements-block-class} {
23
+ $block: &;
24
+
25
+ position: fixed;
26
+ z-index: 5901;
27
+ right: $spacing-05;
28
+ bottom: -100%;
29
+ //opacity: 0;
30
+ transform: translateY(100%);
31
+
32
+ &--is-mounted {
33
+ bottom: 0;
34
+ /* stylelint-disable-next-line carbon/motion-easing-use, carbon/motion-duration-use */
35
+ transition: 240ms carbon--motion(exit, productive);
36
+ @media (prefers-reduced-motion) {
37
+ transition: none;
38
+ }
39
+ }
40
+
41
+ &--is-visible {
42
+ opacity: 1;
43
+ transform: translateY(0);
44
+ }
45
+
46
+ // Stack the level-one item behind the level-two item.
47
+ &--is-stacked {
48
+ bottom: 0;
49
+ overflow: hidden;
50
+ pointer-events: none;
51
+ transform: perspective(carbon--mini-units(18))
52
+ translate3d(0, calc($spacing-09 * -1), calc($spacing-05 * -1));
53
+ transform-origin: top center;
54
+
55
+ &__light {
56
+ background-color: $gray-90;
57
+ }
58
+
59
+ &__dark {
60
+ background-color: $active-tertiary;
61
+ }
62
+ }
63
+ }
64
+
65
+ // ALL SUBSEQUENT ITEMS ARE THE "CHILD" STACK ITEMS
66
+ .#{$elements-block-class} ~ .#{$elements-block-class} {
67
+ z-index: 5902;
68
+ }
69
+
70
+ // SPECIFIC TO THE HOME ELEMENT
71
+ .#{$stack-home-class} {
72
+ &__nav-links {
73
+ margin-top: $spacing-04;
74
+ margin-left: calc(-1 * $spacing-05);
75
+ }
76
+
77
+ &__icon-idea {
78
+ margin-bottom: $spacing-03;
79
+ }
80
+ }
81
+ }
82
+
83
+ @include exports('coachmark-stack') {
84
+ @include coachmark-stack;
85
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import './coachmark-stack';
@@ -0,0 +1,10 @@
1
+ //
2
+ // Copyright IBM Corp. 2023, 2023
3
+ //
4
+ // This source code is licensed under the Apache-2.0 license found in the
5
+ // LICENSE file in the root directory of this source tree.
6
+ //
7
+
8
+ @import '../../global/styles/project-settings';
9
+
10
+ // TODO: add any additional styles used by CoachmarkStack.stories.js
@@ -49,11 +49,17 @@
49
49
  @import './EditTearsheetNarrow/index';
50
50
  @import './EditFullPage/index';
51
51
  @import './EditUpdateCards/index';
52
-
53
52
  @import './InlineEditV1/index';
54
53
  @import './InlineEditV2/index';
55
54
  @import './Carousel/index';
56
55
  @import './Guidebanner/index';
57
56
  @import './NonLinearReading/index';
57
+ @import './Coachmark/index';
58
+ @import './CoachmarkFixed/index';
59
+ @import './CoachmarkBeacon/index';
60
+ @import './CoachmarkButton/index';
61
+ @import './CoachmarkOverlayElements/index';
62
+ @import './CoachmarkOverlayElement/index';
63
+ @import './CoachmarkStack/index';
58
64
  @import './InlineTip/index';
59
65
  @import './SteppedAnimatedMedia/index';