@kaizen/components 0.0.0-canary-hidden-optintprovider-nav-20240307220309 → 0.0.0-canary-remove-notification-list-20240307230320

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "0.0.0-canary-hidden-optintprovider-nav-20240307220309",
3
+ "version": "0.0.0-canary-remove-notification-list-20240307230320",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -110,8 +110,8 @@
110
110
  "ts-jest": "^29.1.2",
111
111
  "ts-patch": "^3.1.2",
112
112
  "typescript-transform-paths": "^3.4.7",
113
- "@kaizen/tailwind": "1.2.4",
114
- "@kaizen/design-tokens": "10.3.18"
113
+ "@kaizen/design-tokens": "10.3.18",
114
+ "@kaizen/tailwind": "1.2.4"
115
115
  },
116
116
  "peerDependencies": {
117
117
  "@cultureamp/i18n-react-intl": "^2.5.1",
@@ -26,15 +26,15 @@ export const KaizenProvider = ({
26
26
  }, [documentIsAvailable])
27
27
 
28
28
  return (
29
- // <OptionalIntlProvider locale={locale}>
29
+ <OptionalIntlProvider locale={locale}>
30
30
  <>
31
- <ToastNotificationProvider>
32
- {notificationsList}
31
+ {/* <ToastNotificationProvider> */}
32
+ {/* {notificationsList} */}
33
33
  {children}
34
- </ToastNotificationProvider>
34
+ {/* </ToastNotificationProvider> */}
35
35
  <FontDefinitions />
36
36
  </>
37
- // </OptionalIntlProvider>
37
+ </OptionalIntlProvider>
38
38
  )
39
39
  }
40
40