@carbon-labs/react-animated-header 0.39.0 → 0.41.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 (38) hide show
  1. package/es/components/AnimatedHeader/AnimatedHeader.js +2 -2
  2. package/es/components/ContentSwitcherSelector/ContentSwitcherSelector.js +1 -1
  3. package/es/components/HeaderAction/HeaderAction.js +1 -1
  4. package/es/components/HeaderTitle/HeaderTitle.js +1 -1
  5. package/es/components/TasksController/TasksController.js +1 -1
  6. package/es/components/Tiles/AIPromptTile/AIPromptTile.js +1 -1
  7. package/es/components/Tiles/AITile/AITile.js +1 -1
  8. package/es/components/Tiles/AITile/AITileBody.js +1 -1
  9. package/es/components/Tiles/GlassTile/GlassTile.js +1 -1
  10. package/es/components/Tiles/GlassTile/GlassTileBody.js +1 -1
  11. package/es/components/WorkspaceSelector/WorkspaceSelector.js +1 -1
  12. package/es/index.js +1 -0
  13. package/lib/components/AnimatedHeader/AnimatedHeader.js +3 -3
  14. package/lib/components/ContentSwitcherSelector/ContentSwitcherSelector.js +1 -1
  15. package/lib/components/HeaderAction/HeaderAction.js +1 -1
  16. package/lib/components/HeaderTitle/HeaderTitle.js +1 -1
  17. package/lib/components/TasksController/TasksController.js +1 -1
  18. package/lib/components/Tiles/AIPromptTile/AIPromptTile.js +1 -1
  19. package/lib/components/Tiles/AITile/AITile.js +1 -1
  20. package/lib/components/Tiles/AITile/AITileBody.js +1 -1
  21. package/lib/components/Tiles/GlassTile/GlassTile.js +1 -1
  22. package/lib/components/Tiles/GlassTile/GlassTileBody.js +1 -1
  23. package/lib/components/WorkspaceSelector/WorkspaceSelector.js +1 -1
  24. package/lib/index.js +1 -0
  25. package/package.json +3 -3
  26. package/es/_virtual/_commonjsHelpers.js +0 -12
  27. package/es/_virtual/lottie.js +0 -14
  28. package/es/_virtual/lottie2.js +0 -10
  29. package/es/node_modules/@carbon-labs/utilities/es/usePrefix.js +0 -20
  30. package/es/node_modules/lottie-web/build/player/lottie.js +0 -683
  31. package/lib/_virtual/_commonjsHelpers.js +0 -14
  32. package/lib/_virtual/lottie.js +0 -18
  33. package/lib/_virtual/lottie2.js +0 -12
  34. package/lib/es/_virtual/_commonjsHelpers.d.ts +0 -7
  35. package/lib/es/_virtual/lottie.d.ts +0 -2
  36. package/lib/es/_virtual/lottie2.d.ts +0 -4
  37. package/lib/node_modules/@carbon-labs/utilities/es/usePrefix.js +0 -23
  38. package/lib/node_modules/lottie-web/build/player/lottie.js +0 -685
@@ -1,14 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2024
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
- 'use strict';
9
-
10
- function getDefaultExportFromCjs (x) {
11
- return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
12
- }
13
-
14
- exports.getDefaultExportFromCjs = getDefaultExportFromCjs;
@@ -1,18 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2024
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
- 'use strict';
9
-
10
- Object.defineProperty(exports, '__esModule', { value: true });
11
-
12
- var _commonjsHelpers = require('./_commonjsHelpers.js');
13
- var lottie$1 = require('../node_modules/lottie-web/build/player/lottie.js');
14
-
15
- var lottieExports = /*@__PURE__*/ lottie$1.__require();
16
- var lottie = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(lottieExports);
17
-
18
- exports.default = lottie;
@@ -1,12 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2024
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
- 'use strict';
9
-
10
- var lottie = {exports: {}};
11
-
12
- exports.__module = lottie;
@@ -1,7 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2024
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
- export function getDefaultExportFromCjs(x: any): any;
@@ -1,2 +0,0 @@
1
- export { lottie as default };
2
- declare var lottie: any;
@@ -1,4 +0,0 @@
1
- export { lottie as __module };
2
- declare namespace lottie {
3
- let exports: {};
4
- }
@@ -1,23 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2024
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
- 'use strict';
9
-
10
- var React = require('react');
11
-
12
- const PrefixContext = /*#__PURE__*/React.createContext('clabs');
13
-
14
- /**
15
- * Sets the prefix context
16
- * @returns context value
17
- */
18
- function usePrefix() {
19
- return React.useContext(PrefixContext);
20
- }
21
-
22
- exports.PrefixContext = PrefixContext;
23
- exports.usePrefix = usePrefix;