@bluealba/pae-ui-react-core 4.4.0 → 4.5.0-feature-replace-eslint-prettier-b-299
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/dist/index.cjs.js +46 -46
- package/dist/index.css +1 -1
- package/dist/index.esm.js +7546 -7482
- package/dist/index.systemjs.js +49 -49
- package/dist/index.umd.js +47 -47
- package/dist/src/components/ModulePlaceHolder/BaseContainer.d.ts +2 -3
- package/dist/src/components/ModulePlaceHolder/index.d.ts +1 -1
- package/dist/src/components/PAEModule.d.ts +2 -2
- package/dist/src/components/common/Alert/Alert.d.ts +2 -2
- package/dist/src/components/common/Alert/index.d.ts +1 -1
- package/dist/src/components/common/Dialog/Dialog.d.ts +10 -4
- package/dist/src/components/common/Dialog/index.d.ts +1 -1
- package/dist/src/components/common/DropdownList/index.d.ts +1 -1
- package/dist/src/components/common/ErrorState/ErrorState.d.ts +1 -2
- package/dist/src/components/common/ErrorState/WarningIcon.d.ts +1 -2
- package/dist/src/components/common/ErrorState/index.d.ts +1 -1
- package/dist/src/components/common/List/List.d.ts +7 -7
- package/dist/src/components/common/List/index.d.ts +1 -1
- package/dist/src/components/common/Pagination/Pagination.d.ts +2 -2
- package/dist/src/components/common/SearchAutocomplete/SearchAutocomplete.d.ts +2 -2
- package/dist/src/components/common/Select2/index.d.ts +2 -2
- package/dist/src/components/common/Skeleton/Skeleton.d.ts +2 -2
- package/dist/src/components/common/Table/Table.d.ts +1 -1
- package/dist/src/components/common/TextWithTooltip/TextWithTooltip.d.ts +1 -1
- package/dist/src/components/common/Tooltip/Tooltip.d.ts +1 -1
- package/dist/src/components/common/index.d.ts +47 -47
- package/dist/src/components/index.d.ts +3 -3
- package/dist/src/feature-flags/index.d.ts +2 -2
- package/dist/src/feature-flags/useFeatureFlag.d.ts +1 -1
- package/dist/src/feature-flags/useFeatureFlags.d.ts +1 -1
- package/dist/src/hocs/index.d.ts +1 -1
- package/dist/src/hooks/applications/useApplicationMenu.d.ts +1 -1
- package/dist/src/hooks/habits/mapEvent.d.ts +1 -1
- package/dist/src/hooks/habits/trackEvents.d.ts +1 -1
- package/dist/src/hooks/index.d.ts +22 -22
- package/dist/src/hooks/tenants/strategies/cookie.d.ts +2 -2
- package/dist/src/hooks/tenants/strategies/queryParams.d.ts +1 -1
- package/dist/src/hooks/tenants/strategies/sessionStorage.d.ts +1 -1
- package/dist/src/hooks/userState/UserStateApiClient.d.ts +2 -2
- package/dist/src/hooks/userState/useUserState.d.ts +1 -1
- package/dist/src/index.d.ts +8 -8
- package/dist/src/rooms/index.d.ts +3 -3
- package/dist/src/types.d.ts +9 -5
- package/dist/src/utils/immutable.d.ts +1 -1
- package/dist/src/utils/index.d.ts +3 -3
- package/package.json +3 -2
- package/src/global.css +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluealba/pae-ui-react-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0-feature-replace-eslint-prettier-b-299",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"publish-local:minor": "npm version minor && npm run publish",
|
|
20
20
|
"publish-local:major": "npm version major && npm run publish",
|
|
21
21
|
"test": "jest",
|
|
22
|
-
"lint
|
|
22
|
+
"lint": "biome check ./src",
|
|
23
|
+
"lint:fix": "biome check --fix ./src"
|
|
23
24
|
},
|
|
24
25
|
"keywords": [],
|
|
25
26
|
"author": "Blue Alba",
|
package/src/global.css
CHANGED
|
@@ -27,6 +27,5 @@
|
|
|
27
27
|
/* Outlined danger variant */
|
|
28
28
|
--platform-button-outlined-danger-color: var(--platform-color-danger);
|
|
29
29
|
/* Text danger variant */
|
|
30
|
-
--platform-button-text-danger-color: var(--platform-color-danger);
|
|
31
|
-
|
|
32
|
-
}
|
|
30
|
+
--platform-button-text-danger-color: var(--platform-color-danger);
|
|
31
|
+
}
|