@selfcommunity/react-core 0.7.0-alpha.9 → 0.7.0-mui7.17
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/lib/cjs/components/provider/SCLocaleProvider/index.d.ts +1 -1
- package/lib/cjs/components/provider/SCThemeProvider/index.d.ts +1 -1
- package/lib/cjs/components/router/index.d.ts +2 -2
- package/lib/cjs/constants/Preferences.d.ts +2 -0
- package/lib/cjs/constants/Preferences.js +7 -2
- package/lib/cjs/hooks/useFetchMenuFooter.d.ts +5 -0
- package/lib/cjs/hooks/useFetchMenuFooter.js +36 -0
- package/lib/cjs/hooks/useSCFeature.d.ts +22 -0
- package/lib/cjs/hooks/useSCFeature.js +38 -0
- package/lib/cjs/hooks/useSCFetchUsers.d.ts +3 -4
- package/lib/cjs/hooks/useSCFetchUsers.js +15 -44
- package/lib/cjs/hooks/useSCPreference.d.ts +36 -0
- package/lib/cjs/hooks/useSCPreference.js +69 -0
- package/lib/cjs/hooks/useSCPreferencesAndFeaturesEnabled.d.ts +17 -0
- package/lib/cjs/hooks/useSCPreferencesAndFeaturesEnabled.js +35 -0
- package/lib/cjs/index.d.ts +5 -2
- package/lib/cjs/index.js +12 -3
- package/lib/cjs/utils/hooks/usePreviousValue.d.ts +1 -1
- package/lib/cjs/utils/hooks/usePreviousValue.js +1 -1
- package/lib/esm/components/provider/SCLocaleProvider/index.d.ts +1 -1
- package/lib/esm/components/provider/SCThemeProvider/index.d.ts +1 -1
- package/lib/esm/components/router/index.d.ts +2 -2
- package/lib/esm/constants/Preferences.d.ts +2 -0
- package/lib/esm/constants/Preferences.js +5 -0
- package/lib/esm/hooks/useFetchMenuFooter.d.ts +5 -0
- package/lib/esm/hooks/useFetchMenuFooter.js +33 -0
- package/lib/esm/hooks/useSCFeature.d.ts +22 -0
- package/lib/esm/hooks/useSCFeature.js +33 -0
- package/lib/esm/hooks/useSCFetchUsers.d.ts +3 -4
- package/lib/esm/hooks/useSCFetchUsers.js +16 -45
- package/lib/esm/hooks/useSCPreference.d.ts +36 -0
- package/lib/esm/hooks/useSCPreference.js +65 -0
- package/lib/esm/hooks/useSCPreferencesAndFeaturesEnabled.d.ts +17 -0
- package/lib/esm/hooks/useSCPreferencesAndFeaturesEnabled.js +32 -0
- package/lib/esm/index.d.ts +5 -2
- package/lib/esm/index.js +5 -2
- package/lib/esm/utils/hooks/usePreviousValue.d.ts +1 -1
- package/lib/esm/utils/hooks/usePreviousValue.js +1 -1
- package/lib/umd/0.js +2 -0
- package/lib/umd/{440.js.LICENSE.txt → 0.js.LICENSE.txt} +2 -0
- package/lib/umd/react-core.js +1 -1
- package/lib/umd/react-core.js.LICENSE.txt +1 -1
- package/package.json +12 -12
- package/lib/cjs/hooks/useSCPreferenceEnabled.d.ts +0 -6
- package/lib/cjs/hooks/useSCPreferenceEnabled.js +0 -16
- package/lib/esm/hooks/useSCPreferenceEnabled.d.ts +0 -6
- package/lib/esm/hooks/useSCPreferenceEnabled.js +0 -13
- package/lib/umd/440.js +0 -2
|
@@ -14,3 +14,5 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
14
14
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
15
|
PERFORMANCE OF THIS SOFTWARE.
|
|
16
16
|
***************************************************************************** */
|
|
17
|
+
|
|
18
|
+
/*! Axios v1.12.2 Copyright (c) 2025 Matt Zabriskie and contributors */
|