@carbon-labs/react-first-time-orientation 0.12.0 → 0.14.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.
@@ -0,0 +1,14 @@
1
+ declare namespace _default {
2
+ let title: string;
3
+ namespace parameters {
4
+ namespace docs {
5
+ export { mdx as page };
6
+ }
7
+ }
8
+ }
9
+ export default _default;
10
+ export function FirstTimeOrientationStory(): import("react/jsx-runtime").JSX.Element;
11
+ export namespace FirstTimeOrientationStory {
12
+ let storyName: string;
13
+ }
14
+ import mdx from './FirstTimeOrientation.mdx';
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import React, { useState } from 'react';
9
- import { usePrefix } from '../node_modules/@carbon-labs/utilities/es/usePrefix.js';
9
+ import { usePrefix } from '@carbon-labs/utilities/usePrefix';
10
10
  import { FlexGrid, Row, Column, SelectableTag } from '@carbon/react';
11
11
 
12
12
  var _h, _p;
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import React from 'react';
9
- import { usePrefix } from '../node_modules/@carbon-labs/utilities/es/usePrefix.js';
9
+ import { usePrefix } from '@carbon-labs/utilities/usePrefix';
10
10
  import { FlexGrid, Row, Column } from '@carbon/react';
11
11
  import welcomeInterstitialImage from './assets/welcomeInterstitial.png.js';
12
12
 
@@ -0,0 +1,14 @@
1
+ declare namespace _default {
2
+ let title: string;
3
+ namespace parameters {
4
+ namespace docs {
5
+ export { mdx as page };
6
+ }
7
+ }
8
+ }
9
+ export default _default;
10
+ export function FirstTimeOrientationStory(): import("react/jsx-runtime").JSX.Element;
11
+ export namespace FirstTimeOrientationStory {
12
+ let storyName: string;
13
+ }
14
+ import mdx from './FirstTimeOrientation.mdx';
@@ -8,7 +8,7 @@
8
8
  'use strict';
9
9
 
10
10
  var React = require('react');
11
- var usePrefix = require('../node_modules/@carbon-labs/utilities/es/usePrefix.js');
11
+ var usePrefix = require('@carbon-labs/utilities/usePrefix');
12
12
  var react = require('@carbon/react');
13
13
 
14
14
  var _h, _p;
@@ -8,7 +8,7 @@
8
8
  'use strict';
9
9
 
10
10
  var React = require('react');
11
- var usePrefix = require('../node_modules/@carbon-labs/utilities/es/usePrefix.js');
11
+ var usePrefix = require('@carbon-labs/utilities/usePrefix');
12
12
  var react = require('@carbon/react');
13
13
  var welcomeInterstitial = require('./assets/welcomeInterstitial.png.js');
14
14
 
@@ -0,0 +1,5 @@
1
+ export function PersonalizationInterstitial(): React.FunctionComponentElement<import("@carbon/react").GridProps<React.ElementType<any, keyof React.JSX.IntrinsicElements>>>;
2
+ export namespace PersonalizationInterstitial {
3
+ let displayName: string;
4
+ }
5
+ import React from 'react';
@@ -0,0 +1,5 @@
1
+ export function WelcomeInterstitial(): React.FunctionComponentElement<import("@carbon/react").GridProps<React.ElementType<any, keyof React.JSX.IntrinsicElements>>>;
2
+ export namespace WelcomeInterstitial {
3
+ let displayName: string;
4
+ }
5
+ import React from 'react';
@@ -0,0 +1,8 @@
1
+ export { welcomeInterstitialImage as default };
2
+ /**
3
+ * Copyright IBM Corp. 2024
4
+ *
5
+ * This source code is licensed under the Apache-2.0 license found in the
6
+ * LICENSE file in the root directory of this source tree.
7
+ */
8
+ declare var welcomeInterstitialImage: string;
@@ -0,0 +1,2 @@
1
+ export { WelcomeInterstitial } from "./components/WelcomeInterstitial.js";
2
+ export { PersonalizationInterstitial } from "./components/PersonalizationInterstitial.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbon-labs/react-first-time-orientation",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -26,11 +26,11 @@
26
26
  "telemetry:config": "npx -y @ibm/telemetry-js-config-generator generate --id 18a7a4e1-d21d-4d71-9dce-20587f4abd2e --endpoint https://www-api.ibm.com/ibm-telemetry/v1/metrics --files ./components/**/*.(tsx|js|jsx)"
27
27
  },
28
28
  "devDependencies": {
29
- "@carbon-labs/utilities": "canary",
29
+ "@carbon-labs/utilities": "0.21.0",
30
30
  "@carbon/ibm-products": "^2.76.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "@ibm/telemetry-js": "^1.10.2"
34
34
  },
35
- "gitHead": "5520cf06630215524af572ddea13596eaf8a0811"
35
+ "gitHead": "5ea24fc7a8a62a1d2bc90a52cde2ce1478c29eb2"
36
36
  }
@@ -1,20 +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
- import React from 'react';
9
-
10
- const PrefixContext = /*#__PURE__*/React.createContext('clabs');
11
-
12
- /**
13
- * Sets the prefix context
14
- * @returns context value
15
- */
16
- function usePrefix() {
17
- return React.useContext(PrefixContext);
18
- }
19
-
20
- export { PrefixContext, usePrefix };
@@ -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;