@fluentui/react-alert 9.0.0-beta.98 → 9.0.1-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.
- package/CHANGELOG.md +558 -2
- package/dist/index.d.cts +87 -0
- package/dist/index.d.ts +3 -5
- package/lib/Alert.js +1 -1
- package/lib/Alert.js.map +1 -1
- package/lib/components/Alert/Alert.js +11 -10
- package/lib/components/Alert/Alert.js.map +1 -1
- package/lib/components/Alert/Alert.types.js +4 -0
- package/lib/components/Alert/Alert.types.js.map +1 -1
- package/lib/components/Alert/index.js +4 -5
- package/lib/components/Alert/index.js.map +1 -1
- package/lib/components/Alert/renderAlert.js +3 -3
- package/lib/components/Alert/renderAlert.js.map +1 -1
- package/lib/components/Alert/useAlert.js +6 -6
- package/lib/components/Alert/useAlert.js.map +1 -1
- package/lib/components/Alert/useAlertStyles.styles.js +71 -40
- package/lib/components/Alert/useAlertStyles.styles.js.map +1 -1
- package/lib/components/Alert/useAlertStyles.styles.raw.js +110 -0
- package/lib/components/Alert/useAlertStyles.styles.raw.js.map +1 -0
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib-commonjs/Alert.cjs +28 -0
- package/lib-commonjs/Alert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{Alert.js → Alert.cjs} +9 -8
- package/lib-commonjs/components/Alert/Alert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/Alert.types.cjs +8 -0
- package/lib-commonjs/components/Alert/Alert.types.cjs.map +1 -0
- package/lib-commonjs/components/Alert/index.cjs +31 -0
- package/lib-commonjs/components/Alert/index.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{renderAlert.js → renderAlert.cjs} +1 -1
- package/lib-commonjs/components/Alert/renderAlert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/useAlert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{useAlertStyles.styles.js → useAlertStyles.styles.cjs} +100 -119
- package/lib-commonjs/components/Alert/useAlertStyles.styles.cjs.map +1 -0
- package/lib-commonjs/components/Alert/useAlertStyles.styles.raw.cjs +123 -0
- package/lib-commonjs/components/Alert/useAlertStyles.styles.raw.cjs.map +1 -0
- package/lib-commonjs/{index.js → index.cjs} +2 -2
- package/lib-commonjs/index.cjs.map +1 -0
- package/package.json +25 -40
- package/lib-commonjs/Alert.js +0 -6
- package/lib-commonjs/Alert.js.map +0 -1
- package/lib-commonjs/components/Alert/Alert.js.map +0 -1
- package/lib-commonjs/components/Alert/Alert.types.js +0 -4
- package/lib-commonjs/components/Alert/Alert.types.js.map +0 -1
- package/lib-commonjs/components/Alert/index.js +0 -10
- package/lib-commonjs/components/Alert/index.js.map +0 -1
- package/lib-commonjs/components/Alert/renderAlert.js.map +0 -1
- package/lib-commonjs/components/Alert/useAlert.js.map +0 -1
- package/lib-commonjs/components/Alert/useAlertStyles.styles.js.map +0 -1
- package/lib-commonjs/index.js.map +0 -1
- /package/lib-commonjs/components/Alert/{useAlert.js → useAlert.cjs} +0 -0
package/lib/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
// eslint-disable-next-line
|
|
2
|
-
export { Alert, alertClassNames, renderAlert_unstable, useAlertStyles_unstable, useAlert_unstable } from
|
|
1
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
2
|
+
export { Alert, alertClassNames, renderAlert_unstable, useAlertStyles_unstable, useAlert_unstable } from "./Alert.js";
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"sourcesContent":["// eslint-disable-next-line
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { Alert, alertClassNames, renderAlert_unstable, useAlertStyles_unstable, useAlert_unstable } from './Alert';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { AlertProps, AlertSlots, AlertState } from './Alert';\n"],"names":["Alert","alertClassNames","renderAlert_unstable","useAlertStyles_unstable","useAlert_unstable"],"mappings":"AAAA,4DAA4D;AAC5D,SAASA,KAAK,EAAEC,eAAe,EAAEC,oBAAoB,EAAEC,uBAAuB,EAAEC,iBAAiB,QAAQ,aAAU"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-deprecated */ "use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Alert: function() {
|
|
13
|
+
return _index.Alert;
|
|
14
|
+
},
|
|
15
|
+
alertClassNames: function() {
|
|
16
|
+
return _index.alertClassNames;
|
|
17
|
+
},
|
|
18
|
+
renderAlert_unstable: function() {
|
|
19
|
+
return _index.renderAlert_unstable;
|
|
20
|
+
},
|
|
21
|
+
useAlertStyles_unstable: function() {
|
|
22
|
+
return _index.useAlertStyles_unstable;
|
|
23
|
+
},
|
|
24
|
+
useAlert_unstable: function() {
|
|
25
|
+
return _index.useAlert_unstable;
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const _index = require("./components/Alert/index.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Alert.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-deprecated */\nexport type { AlertProps, AlertSlots, AlertState } from './components/Alert/index';\nexport {\n Alert,\n alertClassNames,\n renderAlert_unstable,\n useAlertStyles_unstable,\n useAlert_unstable,\n} from './components/Alert/index';\n"],"names":["Alert","alertClassNames","renderAlert_unstable","useAlertStyles_unstable","useAlert_unstable"],"mappings":"AAAA,mDAAmD,GAEnD;;;;;;;;;;;;eACEA,YAAK;;;eACLC,sBAAe;;;eACfC,2BAAoB;;;eACpBC,8BAAuB;;;eACvBC,wBAAiB;;;uBACZ,8BAA2B"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
'use client';
|
|
1
2
|
"use strict";
|
|
2
3
|
Object.defineProperty(exports, "__esModule", {
|
|
3
4
|
value: true
|
|
@@ -10,17 +11,17 @@ Object.defineProperty(exports, "Alert", {
|
|
|
10
11
|
});
|
|
11
12
|
const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
|
|
12
13
|
const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
|
|
13
|
-
const _renderAlert = require("./renderAlert");
|
|
14
|
-
const _useAlert = require("./useAlert");
|
|
15
|
-
const _useAlertStylesstyles = require("./useAlertStyles.styles");
|
|
14
|
+
const _renderAlert = require("./renderAlert.cjs");
|
|
15
|
+
const _useAlert = require("./useAlert.cjs");
|
|
16
|
+
const _useAlertStylesstyles = require("./useAlertStyles.styles.cjs");
|
|
16
17
|
const Alert = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
|
|
17
|
-
// eslint-disable-next-line
|
|
18
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
18
19
|
const state = (0, _useAlert.useAlert_unstable)(props, ref);
|
|
19
|
-
// eslint-disable-next-line
|
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
20
21
|
(0, _useAlertStylesstyles.useAlertStyles_unstable)(state);
|
|
21
|
-
// eslint-disable-next-line
|
|
22
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
22
23
|
return (0, _renderAlert.renderAlert_unstable)(state);
|
|
23
|
-
// eslint-disable-next-line
|
|
24
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
24
25
|
});
|
|
25
|
-
// eslint-disable-next-line
|
|
26
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
26
27
|
Alert.displayName = 'Alert';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/Alert.tsx"],"sourcesContent":["'use client';\n\nimport * as React from 'react';\n\nimport { renderAlert_unstable } from './renderAlert';\nimport { useAlert_unstable } from './useAlert';\nimport { useAlertStyles_unstable } from './useAlertStyles.styles';\n\nimport type { AlertProps } from './Alert.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\n/**\n * @deprecated please use the Toast or MessageBar component\n * An Alert component displays a brief, important message to attract a user's attention\n * without interrupting their current task.\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const Alert: ForwardRefComponent<AlertProps> = React.forwardRef((props, ref) => {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n const state = useAlert_unstable(props, ref);\n\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n useAlertStyles_unstable(state);\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n return renderAlert_unstable(state);\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n}) as ForwardRefComponent<AlertProps>;\n\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nAlert.displayName = 'Alert';\n"],"names":["React","renderAlert_unstable","useAlert_unstable","useAlertStyles_unstable","Alert","forwardRef","props","ref","state","displayName"],"mappings":"AAAA;;;;;;;;;;;;iEAEuB,QAAQ;6BAEM,mBAAgB;0BACnB,gBAAa;sCACP,6BAA0B;AAW3D,MAAMI,QAAAA,WAAAA,GAAyCJ,OAAMK,UAAU,CAAC,CAACC,OAAOC;IAC7E,4DAA4D;IAC5D,MAAMC,YAAQN,2BAAAA,EAAkBI,OAAOC;IAEvC,4DAA4D;QAC5DJ,6CAAAA,EAAwBK;IACxB,4DAA4D;IAC5D,WAAOP,iCAAAA,EAAqBO;AAC5B,4DAA4D;AAC9D,GAAsC;AAEtC,4DAA4D;AAC5DJ,MAAMK,WAAW,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/Alert.types.ts"],"sourcesContent":["import type { Avatar } from '@fluentui/react-avatar';\nimport type { Button } from '@fluentui/react-button';\n\nimport type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\n/**\n * @deprecated please use the Toast or MessageBar component\n */\nexport type AlertSlots = {\n /**\n * The root slot is the top level container for the alert component\n */\n root: NonNullable<Slot<'div'>>;\n /**\n * The icon slot renders the icon determined by the `icon` or `intent` prop\n */\n icon?: Slot<'span'>;\n /**\n * The action slot renders a button that prompts the user to take action on the alert\n */\n action?: Slot<typeof Button>;\n /**\n * The avatar slot renders an avatar before the contents of the alert\n */\n avatar?: Slot<typeof Avatar>;\n};\n\n/**\n * Alert Props\n * @deprecated please use the Toast or MessageBar component\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type AlertProps = ComponentProps<AlertSlots> & {\n /**\n * The intent prop, if present, determines the icon to be rendered in the icon slot. The icon prop\n * overrides the intent prop\n */\n intent?: 'info' | 'success' | 'error' | 'warning';\n /**\n * The appearance of the Alert.\n * @default 'primary'\n */\n appearance?: 'primary' | 'inverted';\n};\n\n/**\n * State used in rendering Alert\n * @deprecated please use the Toast or MessageBar component\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type AlertState = ComponentState<AlertSlots> &\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n Pick<AlertProps, 'intent'> &\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n Required<Pick<AlertProps, 'appearance'>>;\n"],"names":[],"mappings":"AA6CA;;;CAGC,GACD,4DAA4D"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-deprecated */ "use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Alert: function() {
|
|
13
|
+
return _Alert.Alert;
|
|
14
|
+
},
|
|
15
|
+
alertClassNames: function() {
|
|
16
|
+
return _useAlertStylesstyles.alertClassNames;
|
|
17
|
+
},
|
|
18
|
+
renderAlert_unstable: function() {
|
|
19
|
+
return _renderAlert.renderAlert_unstable;
|
|
20
|
+
},
|
|
21
|
+
useAlertStyles_unstable: function() {
|
|
22
|
+
return _useAlertStylesstyles.useAlertStyles_unstable;
|
|
23
|
+
},
|
|
24
|
+
useAlert_unstable: function() {
|
|
25
|
+
return _useAlert.useAlert_unstable;
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const _Alert = require("./Alert.cjs");
|
|
29
|
+
const _renderAlert = require("./renderAlert.cjs");
|
|
30
|
+
const _useAlert = require("./useAlert.cjs");
|
|
31
|
+
const _useAlertStylesstyles = require("./useAlertStyles.styles.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/index.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-deprecated */\nexport { Alert } from './Alert';\nexport type { AlertProps, AlertSlots, AlertState } from './Alert.types';\nexport { renderAlert_unstable } from './renderAlert';\nexport { useAlert_unstable } from './useAlert';\nexport { alertClassNames, useAlertStyles_unstable } from './useAlertStyles.styles';\n"],"names":["Alert","renderAlert_unstable","useAlert_unstable","alertClassNames","useAlertStyles_unstable"],"mappings":"AAAA,mDAAmD,GACnD;;;;;;;;;;;;eAASA,YAAK;;;eAILG,qCAAe;;;eAFfF,iCAAoB;;;eAEHG,6CAAuB;;;eADxCF,2BAAiB;;;uBAHJ,aAAU;6BAEK,mBAAgB;0BACnB,gBAAa;sCACU,6BAA0B"}
|
|
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "renderAlert_unstable", {
|
|
|
11
11
|
const _jsxruntime = require("@fluentui/react-jsx-runtime/jsx-runtime");
|
|
12
12
|
const _reactutilities = require("@fluentui/react-utilities");
|
|
13
13
|
const renderAlert_unstable = (state)=>{
|
|
14
|
-
// eslint-disable-next-line
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
15
15
|
(0, _reactutilities.assertSlots)(state);
|
|
16
16
|
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(state.root, {
|
|
17
17
|
children: [
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/renderAlert.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\nimport { assertSlots } from '@fluentui/react-utilities';\nimport type * as React from 'react';\n\nimport type { AlertState, AlertSlots } from './Alert.types';\n\n/**\n * @deprecated please use the Toast or MessageBar component\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const renderAlert_unstable = (state: AlertState): React.ReactElement => {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n assertSlots<AlertSlots>(state);\n\n return (\n <state.root>\n {state.icon && <state.icon />}\n {state.avatar && <state.avatar />}\n {state.root.children}\n {state.action && <state.action />}\n </state.root>\n );\n};\n"],"names":["assertSlots","renderAlert_unstable","state","root","icon","avatar","children","action"],"mappings":";;;;+BAWaC;;;;;;4BAVb,iCAAiD;gCACrB,4BAA4B;AASjD,6BAA6B,CAACC;IACnC,4DAA4D;QAC5DF,2BAAAA,EAAwBE;IAExB,OAAA,WAAA,OACE,gBAAA,EAACA,MAAMC,IAAI,EAAA;;YACRD,MAAME,IAAI,IAAA,WAAA,OAAI,eAAA,EAACF,MAAME,IAAI,EAAA,CAAA;YACzBF,MAAMG,MAAM,IAAA,WAAA,OAAI,eAAA,EAACH,MAAMG,MAAM,EAAA,CAAA;YAC7BH,MAAMC,IAAI,CAACG,QAAQ;YACnBJ,MAAMK,MAAM,IAAA,WAAA,OAAI,eAAA,EAACL,MAAMK,MAAM,EAAA,CAAA;;;AAGpC,EAAE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/useAlert.tsx"],"sourcesContent":["import * as React from 'react';\n\nimport { Avatar } from '@fluentui/react-avatar';\nimport { Button } from '@fluentui/react-button';\nimport { CheckmarkCircleFilled, DismissCircleFilled, InfoFilled, WarningFilled } from '@fluentui/react-icons';\nimport { getIntrinsicElementProps, slot } from '@fluentui/react-utilities';\n\nimport type { AlertProps, AlertState } from './Alert.types';\n\n/**\n * @deprecated please use the Toast or MessageBar component\n * Create the state required to render Alert.\n *\n * The returned state can be modified with hooks such as useAlertStyles_unstable,\n * before being passed to renderAlert_unstable.\n *\n * @param props - props from this instance of Alert\n * @param ref - reference to root HTMLElement of Alert\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const useAlert_unstable = (props: AlertProps, ref: React.Ref<HTMLElement>): AlertState => {\n const { appearance = 'primary', intent } = props;\n\n /** Determine the role and icon to render based on the intent */\n let defaultIcon;\n let defaultRole = 'status';\n switch (intent) {\n case 'success':\n defaultIcon = <CheckmarkCircleFilled />;\n break;\n case 'error':\n defaultIcon = <DismissCircleFilled />;\n defaultRole = 'alert';\n break;\n case 'warning':\n defaultIcon = <WarningFilled />;\n defaultRole = 'alert';\n break;\n case 'info':\n defaultIcon = <InfoFilled />;\n break;\n }\n\n const action = slot.optional(props.action, { defaultProps: { appearance: 'transparent' }, elementType: Button });\n const avatar = slot.optional(props.avatar, { elementType: Avatar });\n let icon;\n /** Avatar prop takes precedence over the icon or intent prop */ if (!avatar) {\n icon = slot.optional(props.icon, {\n defaultProps: { children: defaultIcon },\n renderByDefault: !!props.intent,\n elementType: 'span',\n });\n }\n return {\n action,\n appearance,\n avatar,\n components: { root: 'div', icon: 'span', action: Button, avatar: Avatar },\n icon,\n intent,\n root: slot.always(\n getIntrinsicElementProps('div', {\n // FIXME:\n // `ref` is wrongly assigned to be `HTMLElement` instead of `HTMLDivElement`\n // but since it would be a breaking change to fix it, we are casting ref to it's proper type\n ref: ref as React.Ref<HTMLDivElement>,\n role: defaultRole,\n children: props.children,\n ...props,\n }),\n { elementType: 'div' },\n ),\n };\n};\n"],"names":["React","Avatar","Button","CheckmarkCircleFilled","DismissCircleFilled","InfoFilled","WarningFilled","getIntrinsicElementProps","slot","useAlert_unstable","props","ref","appearance","intent","defaultIcon","defaultRole","action","optional","defaultProps","elementType","avatar","icon","children","renderByDefault","components","root","always","role"],"mappings":";;;;+BAoBaS;;;;;;;iEApBU,QAAQ;6BAER,yBAAyB;6BACzB,yBAAyB;4BACsC,wBAAwB;gCAC/D,4BAA4B;AAepE,0BAA0B,CAACC,OAAmBC;IACnD,MAAM,EAAEC,aAAa,SAAS,EAAEC,MAAM,EAAE,GAAGH;IAE3C,8DAA8D,GAC9D,IAAII;IACJ,IAAIC,cAAc;IAClB,OAAQF;QACN,KAAK;YACHC,cAAAA,WAAAA,GAAc,OAAA,aAAA,CAACX,iCAAAA,EAAAA;YACf;QACF,KAAK;YACHW,cAAAA,WAAAA,GAAc,OAAA,aAAA,CAACV,+BAAAA,EAAAA;YACfW,cAAc;YACd;QACF,KAAK;YACHD,cAAAA,WAAAA,GAAc,OAAA,aAAA,CAACR,yBAAAA,EAAAA;YACfS,cAAc;YACd;QACF,KAAK;YACHD,cAAAA,WAAAA,GAAc,OAAA,aAAA,CAACT,sBAAAA,EAAAA;YACf;IACJ;IAEA,MAAMW,SAASR,oBAAAA,CAAKS,QAAQ,CAACP,MAAMM,MAAM,EAAE;QAAEE,cAAc;YAAEN,YAAY;QAAc;QAAGO,aAAajB,mBAAAA;IAAO;IAC9G,MAAMkB,SAASZ,oBAAAA,CAAKS,QAAQ,CAACP,MAAMU,MAAM,EAAE;QAAED,aAAalB,mBAAAA;IAAO;IACjE,IAAIoB;IACJ,8DAA8D,GAAG,IAAI,CAACD,QAAQ;QAC5EC,OAAOb,oBAAAA,CAAKS,QAAQ,CAACP,MAAMW,IAAI,EAAE;YAC/BH,cAAc;gBAAEI,UAAUR;YAAY;YACtCS,iBAAiB,CAAC,CAACb,MAAMG,MAAM;YAC/BM,aAAa;QACf;IACF;IACA,OAAO;QACLH;QACAJ;QACAQ;QACAI,YAAY;YAAEC,MAAM;YAAOJ,MAAM;YAAQL,QAAQd,mBAAAA;YAAQkB,QAAQnB,mBAAAA;QAAO;QACxEoB;QACAR;QACAY,MAAMjB,oBAAAA,CAAKkB,MAAM,KACfnB,wCAAAA,EAAyB,OAAO;YAC9B,SAAS;YACT,4EAA4E;YAC5E,4FAA4F;YAC5FI,KAAKA;YACLgB,MAAMZ;YACNO,UAAUZ,MAAMY,QAAQ;YACxB,GAAGZ,KAAK;QACV,IACA;YAAES,aAAa;QAAM;IAEzB;AACF,EAAE"}
|
package/lib-commonjs/components/Alert/{useAlertStyles.styles.js → useAlertStyles.styles.cjs}
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
'use client';
|
|
1
2
|
"use strict";
|
|
2
3
|
Object.defineProperty(exports, "__esModule", {
|
|
3
4
|
value: true
|
|
@@ -28,62 +29,33 @@ const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
28
29
|
mc9l5x: "f22iagw",
|
|
29
30
|
Bt984gj: "f122n59",
|
|
30
31
|
sshi5w: "f5pgtk9",
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
Bekrc4i: [
|
|
59
|
-
"f1hqa2wf",
|
|
60
|
-
"finvdd3"
|
|
61
|
-
],
|
|
62
|
-
Bn0qgzm: "f1f09k3d",
|
|
63
|
-
ibv6hh: [
|
|
64
|
-
"finvdd3",
|
|
65
|
-
"f1hqa2wf"
|
|
66
|
-
],
|
|
67
|
-
icvyot: "fzkkow9",
|
|
68
|
-
vrafjx: [
|
|
69
|
-
"fcdblym",
|
|
70
|
-
"fjik90z"
|
|
71
|
-
],
|
|
72
|
-
oivjwe: "fg706s2",
|
|
73
|
-
wvpqe5: [
|
|
74
|
-
"fjik90z",
|
|
75
|
-
"fcdblym"
|
|
76
|
-
],
|
|
77
|
-
g2u3we: "fghlq4f",
|
|
78
|
-
h3c5rm: [
|
|
79
|
-
"f1gn591s",
|
|
80
|
-
"fjscplz"
|
|
81
|
-
],
|
|
82
|
-
B9xav0g: "fb073pr",
|
|
83
|
-
zhjwy3: [
|
|
84
|
-
"fjscplz",
|
|
85
|
-
"f1gn591s"
|
|
86
|
-
],
|
|
32
|
+
Byoj8tv: 0,
|
|
33
|
+
uwmqm3: 0,
|
|
34
|
+
z189sj: 0,
|
|
35
|
+
z8tnut: 0,
|
|
36
|
+
B0ocmuz: "f1oic3e7",
|
|
37
|
+
Beyfa6y: 0,
|
|
38
|
+
Bbmb7ep: 0,
|
|
39
|
+
Btl43ni: 0,
|
|
40
|
+
B7oj6ja: 0,
|
|
41
|
+
Dimara: "ff3glw6",
|
|
42
|
+
Bgfg5da: 0,
|
|
43
|
+
B9xav0g: 0,
|
|
44
|
+
oivjwe: 0,
|
|
45
|
+
Bn0qgzm: 0,
|
|
46
|
+
B4g9neb: 0,
|
|
47
|
+
zhjwy3: 0,
|
|
48
|
+
wvpqe5: 0,
|
|
49
|
+
ibv6hh: 0,
|
|
50
|
+
u1mtju: 0,
|
|
51
|
+
h3c5rm: 0,
|
|
52
|
+
vrafjx: 0,
|
|
53
|
+
Bekrc4i: 0,
|
|
54
|
+
i8vvqc: 0,
|
|
55
|
+
g2u3we: 0,
|
|
56
|
+
icvyot: 0,
|
|
57
|
+
B4j52fo: 0,
|
|
58
|
+
irswps: "f9ggezi",
|
|
87
59
|
E5pizo: "fz58gqq",
|
|
88
60
|
Be2twd7: "fkhj508",
|
|
89
61
|
Bhrd7zp: "fl43uef",
|
|
@@ -97,40 +69,31 @@ const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
97
69
|
icon: {
|
|
98
70
|
Bqenvij: "fd461yt",
|
|
99
71
|
Be2twd7: "f4ybsrx",
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"f1cnd47f",
|
|
108
|
-
"fhxju0i"
|
|
72
|
+
Byoj8tv: 0,
|
|
73
|
+
uwmqm3: 0,
|
|
74
|
+
z189sj: 0,
|
|
75
|
+
z8tnut: 0,
|
|
76
|
+
B0ocmuz: [
|
|
77
|
+
"fhivll6",
|
|
78
|
+
"f1cgepy8"
|
|
109
79
|
]
|
|
110
80
|
},
|
|
111
81
|
avatar: {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"f1tyq0we",
|
|
120
|
-
"f11qmguv"
|
|
82
|
+
jrapky: 0,
|
|
83
|
+
Frg6f3: 0,
|
|
84
|
+
t21cq0: 0,
|
|
85
|
+
B6of3ja: 0,
|
|
86
|
+
B74szlk: [
|
|
87
|
+
"fxal17o",
|
|
88
|
+
"ftghr3s"
|
|
121
89
|
]
|
|
122
90
|
},
|
|
123
91
|
action: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
Byoj8tv: "fdghr9",
|
|
130
|
-
uwmqm3: [
|
|
131
|
-
"frdkuqy",
|
|
132
|
-
"f81rol6"
|
|
133
|
-
],
|
|
92
|
+
Byoj8tv: 0,
|
|
93
|
+
uwmqm3: 0,
|
|
94
|
+
z189sj: 0,
|
|
95
|
+
z8tnut: 0,
|
|
96
|
+
B0ocmuz: "f4jnnbt",
|
|
134
97
|
Bf4jedk: "fy77jfu",
|
|
135
98
|
Frg6f3: [
|
|
136
99
|
"fcgxt0o",
|
|
@@ -143,26 +106,24 @@ const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
143
106
|
".f22iagw{display:flex;}",
|
|
144
107
|
".f122n59{align-items:center;}",
|
|
145
108
|
".f5pgtk9{min-height:44px;}",
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
".fjscplz{border-left-color:var(--colorTransparentStroke);}",
|
|
165
|
-
".fb073pr{border-bottom-color:var(--colorTransparentStroke);}",
|
|
109
|
+
[
|
|
110
|
+
".f1oic3e7{padding:0 12px;}",
|
|
111
|
+
{
|
|
112
|
+
p: -1
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
".ff3glw6{border-radius:4px;}",
|
|
117
|
+
{
|
|
118
|
+
p: -1
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
[
|
|
122
|
+
".f9ggezi{border:1px solid var(--colorTransparentStroke);}",
|
|
123
|
+
{
|
|
124
|
+
p: -2
|
|
125
|
+
}
|
|
126
|
+
],
|
|
166
127
|
".fz58gqq{box-shadow:var(--shadow8);}",
|
|
167
128
|
".fkhj508{font-size:var(--fontSizeBase300);}",
|
|
168
129
|
".fl43uef{font-weight:var(--fontWeightSemibold);}",
|
|
@@ -172,20 +133,36 @@ const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
|
172
133
|
".f5pduvr{background-color:var(--colorNeutralBackgroundInverted);}",
|
|
173
134
|
".fd461yt{height:16px;}",
|
|
174
135
|
".f4ybsrx{font-size:16px;}",
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
136
|
+
[
|
|
137
|
+
".fhivll6{padding:0 8px 0 0;}",
|
|
138
|
+
{
|
|
139
|
+
p: -1
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
[
|
|
143
|
+
".f1cgepy8{padding:0 0 0 8px;}",
|
|
144
|
+
{
|
|
145
|
+
p: -1
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
[
|
|
149
|
+
".fxal17o{margin:0 8px 0 0;}",
|
|
150
|
+
{
|
|
151
|
+
p: -1
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
[
|
|
155
|
+
".ftghr3s{margin:0 0 0 8px;}",
|
|
156
|
+
{
|
|
157
|
+
p: -1
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
[
|
|
161
|
+
".f4jnnbt{padding:5px 10px;}",
|
|
162
|
+
{
|
|
163
|
+
p: -1
|
|
164
|
+
}
|
|
165
|
+
],
|
|
189
166
|
".fy77jfu{min-width:0;}",
|
|
190
167
|
".fcgxt0o{margin-left:auto;}",
|
|
191
168
|
".f1ujusj6{margin-right:auto;}",
|
|
@@ -265,16 +242,20 @@ const useAlertStyles_unstable = (state)=>{
|
|
|
265
242
|
const intentIconStylesPrimary = useIntentIconStyles();
|
|
266
243
|
const intentIconStylesInverted = useIntentIconStylesInverted();
|
|
267
244
|
const actionStylesInverted = useActionButtonColorInverted();
|
|
245
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
268
246
|
state.root.className = (0, _react.mergeClasses)(alertClassNames.root, styles.root, inverted && styles.inverted, state.root.className);
|
|
269
247
|
if (state.icon) {
|
|
248
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
270
249
|
state.icon.className = (0, _react.mergeClasses)(alertClassNames.icon, styles.icon, state.intent && (inverted ? intentIconStylesInverted[state.intent] : intentIconStylesPrimary[state.intent]), state.icon.className);
|
|
271
250
|
}
|
|
272
251
|
if (state.avatar) {
|
|
252
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
273
253
|
state.avatar.className = (0, _react.mergeClasses)(alertClassNames.avatar, styles.avatar, state.avatar.className);
|
|
274
254
|
}
|
|
275
255
|
if (state.action) {
|
|
276
256
|
// Note: inverted && actionStylesInverted.action has the highest piority and must be merged last
|
|
257
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
277
258
|
state.action.className = (0, _react.mergeClasses)(alertClassNames.action, styles.action, inverted && actionStylesInverted.action, state.action.className);
|
|
278
259
|
}
|
|
279
260
|
return state;
|
|
280
|
-
};
|
|
261
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["useAlertStyles.styles.js"],"sourcesContent":["'use client';\nimport { tokens } from \"@fluentui/react-theme\";\nimport { makeStyles, mergeClasses, shorthands } from \"@griffel/react\";\nimport { createCustomFocusIndicatorStyle } from \"@fluentui/react-tabster\";\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const alertClassNames = {\n root: 'fui-Alert',\n icon: 'fui-Alert__icon',\n action: 'fui-Alert__action',\n avatar: 'fui-Alert__avatar'\n};\nconst useStyles = makeStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n minHeight: '44px',\n padding: '0 12px',\n borderRadius: '4px',\n border: `1px solid ${tokens.colorTransparentStroke}`,\n boxShadow: tokens.shadow8,\n fontSize: tokens.fontSizeBase300,\n fontWeight: tokens.fontWeightSemibold,\n color: tokens.colorNeutralForeground1,\n backgroundColor: tokens.colorNeutralBackground1\n },\n inverted: {\n color: tokens.colorNeutralForegroundInverted2,\n backgroundColor: tokens.colorNeutralBackgroundInverted\n },\n icon: {\n height: '16px',\n fontSize: '16px',\n padding: '0 8px 0 0'\n },\n avatar: {\n margin: '0 8px 0 0'\n },\n action: {\n padding: '5px 10px',\n minWidth: 0,\n marginLeft: 'auto',\n color: tokens.colorBrandForeground1\n }\n});\nconst useIntentIconStyles = makeStyles({\n success: {\n color: tokens.colorPaletteGreenForeground3\n },\n error: {\n color: tokens.colorPaletteRedForeground3\n },\n warning: {\n color: tokens.colorPaletteYellowForeground2\n },\n info: {\n color: tokens.colorNeutralForeground2\n }\n});\nconst useIntentIconStylesInverted = makeStyles({\n success: {\n color: tokens.colorPaletteGreenForegroundInverted\n },\n error: {\n color: tokens.colorPaletteRedForegroundInverted\n },\n warning: {\n color: tokens.colorPaletteYellowForegroundInverted\n },\n info: {\n color: tokens.colorNeutralForegroundInverted2\n }\n});\nconst useActionButtonColorInverted = makeStyles({\n action: {\n color: tokens.colorBrandForegroundInverted,\n ...createCustomFocusIndicatorStyle({\n ...shorthands.borderColor(tokens.colorTransparentStrokeInteractive),\n outlineColor: tokens.colorNeutralBackground5Pressed\n }, {\n enableOutline: true\n })\n }\n});\n/**\n * @deprecated please use the Toast or MessageBar component\n * Apply styling to the Alert slots based on the state\n */ // eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const useAlertStyles_unstable = (state)=>{\n const inverted = state.appearance === 'inverted';\n const styles = useStyles();\n const intentIconStylesPrimary = useIntentIconStyles();\n const intentIconStylesInverted = useIntentIconStylesInverted();\n const actionStylesInverted = useActionButtonColorInverted();\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.root.className = mergeClasses(alertClassNames.root, styles.root, inverted && styles.inverted, state.root.className);\n if (state.icon) {\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.icon.className = mergeClasses(alertClassNames.icon, styles.icon, state.intent && (inverted ? intentIconStylesInverted[state.intent] : intentIconStylesPrimary[state.intent]), state.icon.className);\n }\n if (state.avatar) {\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.avatar.className = mergeClasses(alertClassNames.avatar, styles.avatar, state.avatar.className);\n }\n if (state.action) {\n // Note: inverted && actionStylesInverted.action has the highest piority and must be merged last\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.action.className = mergeClasses(alertClassNames.action, styles.action, inverted && actionStylesInverted.action, state.action.className);\n }\n return state;\n};\n"],"names":["tokens","__styles","mergeClasses","shorthands","createCustomFocusIndicatorStyle","alertClassNames","root","icon","action","avatar","useStyles","mc9l5x","Bt984gj","sshi5w","Byoj8tv","uwmqm3","z189sj","z8tnut","B0ocmuz","Beyfa6y","Bbmb7ep","Btl43ni","B7oj6ja","Dimara","Bgfg5da","B9xav0g","oivjwe","Bn0qgzm","B4g9neb","zhjwy3","wvpqe5","ibv6hh","u1mtju","h3c5rm","vrafjx","Bekrc4i","i8vvqc","g2u3we","icvyot","B4j52fo","irswps","E5pizo","Be2twd7","Bhrd7zp","sj55zd","De3pzq","inverted","Bqenvij","jrapky","Frg6f3","t21cq0","B6of3ja","B74szlk","Bf4jedk","d","p","useIntentIconStyles","success","error","warning","info","useIntentIconStylesInverted","useActionButtonColorInverted","B8q5s1w","Bci5o5g","n8qw10","Bdrgwmp","Bfpq7zp","useAlertStyles_unstable","state","appearance","styles","intentIconStylesPrimary","intentIconStylesInverted","actionStylesInverted","className","intent"],"mappings":"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"}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
function _export(target, all) {
|
|
7
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: all[name]
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
_export(exports, {
|
|
13
|
+
alertClassNames: function() {
|
|
14
|
+
return alertClassNames;
|
|
15
|
+
},
|
|
16
|
+
useAlertStyles_unstable: function() {
|
|
17
|
+
return useAlertStyles_unstable;
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
const _reacttheme = require("@fluentui/react-theme");
|
|
21
|
+
const _react = require("@griffel/react");
|
|
22
|
+
const _reacttabster = require("@fluentui/react-tabster");
|
|
23
|
+
const alertClassNames = {
|
|
24
|
+
root: 'fui-Alert',
|
|
25
|
+
icon: 'fui-Alert__icon',
|
|
26
|
+
action: 'fui-Alert__action',
|
|
27
|
+
avatar: 'fui-Alert__avatar'
|
|
28
|
+
};
|
|
29
|
+
const useStyles = (0, _react.makeStyles)({
|
|
30
|
+
root: {
|
|
31
|
+
display: 'flex',
|
|
32
|
+
alignItems: 'center',
|
|
33
|
+
minHeight: '44px',
|
|
34
|
+
padding: '0 12px',
|
|
35
|
+
borderRadius: '4px',
|
|
36
|
+
border: `1px solid ${_reacttheme.tokens.colorTransparentStroke}`,
|
|
37
|
+
boxShadow: _reacttheme.tokens.shadow8,
|
|
38
|
+
fontSize: _reacttheme.tokens.fontSizeBase300,
|
|
39
|
+
fontWeight: _reacttheme.tokens.fontWeightSemibold,
|
|
40
|
+
color: _reacttheme.tokens.colorNeutralForeground1,
|
|
41
|
+
backgroundColor: _reacttheme.tokens.colorNeutralBackground1
|
|
42
|
+
},
|
|
43
|
+
inverted: {
|
|
44
|
+
color: _reacttheme.tokens.colorNeutralForegroundInverted2,
|
|
45
|
+
backgroundColor: _reacttheme.tokens.colorNeutralBackgroundInverted
|
|
46
|
+
},
|
|
47
|
+
icon: {
|
|
48
|
+
height: '16px',
|
|
49
|
+
fontSize: '16px',
|
|
50
|
+
padding: '0 8px 0 0'
|
|
51
|
+
},
|
|
52
|
+
avatar: {
|
|
53
|
+
margin: '0 8px 0 0'
|
|
54
|
+
},
|
|
55
|
+
action: {
|
|
56
|
+
padding: '5px 10px',
|
|
57
|
+
minWidth: 0,
|
|
58
|
+
marginLeft: 'auto',
|
|
59
|
+
color: _reacttheme.tokens.colorBrandForeground1
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
const useIntentIconStyles = (0, _react.makeStyles)({
|
|
63
|
+
success: {
|
|
64
|
+
color: _reacttheme.tokens.colorPaletteGreenForeground3
|
|
65
|
+
},
|
|
66
|
+
error: {
|
|
67
|
+
color: _reacttheme.tokens.colorPaletteRedForeground3
|
|
68
|
+
},
|
|
69
|
+
warning: {
|
|
70
|
+
color: _reacttheme.tokens.colorPaletteYellowForeground2
|
|
71
|
+
},
|
|
72
|
+
info: {
|
|
73
|
+
color: _reacttheme.tokens.colorNeutralForeground2
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
const useIntentIconStylesInverted = (0, _react.makeStyles)({
|
|
77
|
+
success: {
|
|
78
|
+
color: _reacttheme.tokens.colorPaletteGreenForegroundInverted
|
|
79
|
+
},
|
|
80
|
+
error: {
|
|
81
|
+
color: _reacttheme.tokens.colorPaletteRedForegroundInverted
|
|
82
|
+
},
|
|
83
|
+
warning: {
|
|
84
|
+
color: _reacttheme.tokens.colorPaletteYellowForegroundInverted
|
|
85
|
+
},
|
|
86
|
+
info: {
|
|
87
|
+
color: _reacttheme.tokens.colorNeutralForegroundInverted2
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
const useActionButtonColorInverted = (0, _react.makeStyles)({
|
|
91
|
+
action: {
|
|
92
|
+
color: _reacttheme.tokens.colorBrandForegroundInverted,
|
|
93
|
+
...(0, _reacttabster.createCustomFocusIndicatorStyle)({
|
|
94
|
+
..._react.shorthands.borderColor(_reacttheme.tokens.colorTransparentStrokeInteractive),
|
|
95
|
+
outlineColor: _reacttheme.tokens.colorNeutralBackground5Pressed
|
|
96
|
+
}, {
|
|
97
|
+
enableOutline: true
|
|
98
|
+
})
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
const useAlertStyles_unstable = (state)=>{
|
|
102
|
+
const inverted = state.appearance === 'inverted';
|
|
103
|
+
const styles = useStyles();
|
|
104
|
+
const intentIconStylesPrimary = useIntentIconStyles();
|
|
105
|
+
const intentIconStylesInverted = useIntentIconStylesInverted();
|
|
106
|
+
const actionStylesInverted = useActionButtonColorInverted();
|
|
107
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
108
|
+
state.root.className = (0, _react.mergeClasses)(alertClassNames.root, styles.root, inverted && styles.inverted, state.root.className);
|
|
109
|
+
if (state.icon) {
|
|
110
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
111
|
+
state.icon.className = (0, _react.mergeClasses)(alertClassNames.icon, styles.icon, state.intent && (inverted ? intentIconStylesInverted[state.intent] : intentIconStylesPrimary[state.intent]), state.icon.className);
|
|
112
|
+
}
|
|
113
|
+
if (state.avatar) {
|
|
114
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
115
|
+
state.avatar.className = (0, _react.mergeClasses)(alertClassNames.avatar, styles.avatar, state.avatar.className);
|
|
116
|
+
}
|
|
117
|
+
if (state.action) {
|
|
118
|
+
// Note: inverted && actionStylesInverted.action has the highest piority and must be merged last
|
|
119
|
+
// eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring
|
|
120
|
+
state.action.className = (0, _react.mergeClasses)(alertClassNames.action, styles.action, inverted && actionStylesInverted.action, state.action.className);
|
|
121
|
+
}
|
|
122
|
+
return state;
|
|
123
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/Alert/useAlertStyles.styles.ts"],"sourcesContent":["'use client';\n\nimport { tokens } from '@fluentui/react-theme';\nimport { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport type { AlertSlots, AlertState } from './Alert.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const alertClassNames: SlotClassNames<AlertSlots> = {\n root: 'fui-Alert',\n icon: 'fui-Alert__icon',\n action: 'fui-Alert__action',\n avatar: 'fui-Alert__avatar',\n};\n\nconst useStyles = makeStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n minHeight: '44px',\n padding: '0 12px',\n borderRadius: '4px',\n border: `1px solid ${tokens.colorTransparentStroke}`,\n boxShadow: tokens.shadow8,\n fontSize: tokens.fontSizeBase300,\n fontWeight: tokens.fontWeightSemibold,\n color: tokens.colorNeutralForeground1,\n backgroundColor: tokens.colorNeutralBackground1,\n },\n inverted: {\n color: tokens.colorNeutralForegroundInverted2,\n backgroundColor: tokens.colorNeutralBackgroundInverted,\n },\n icon: {\n height: '16px',\n fontSize: '16px',\n padding: '0 8px 0 0',\n },\n avatar: { margin: '0 8px 0 0' },\n action: {\n padding: '5px 10px',\n minWidth: 0,\n marginLeft: 'auto',\n color: tokens.colorBrandForeground1,\n },\n});\n\nconst useIntentIconStyles = makeStyles({\n success: {\n color: tokens.colorPaletteGreenForeground3,\n },\n error: {\n color: tokens.colorPaletteRedForeground3,\n },\n warning: {\n color: tokens.colorPaletteYellowForeground2,\n },\n info: {\n color: tokens.colorNeutralForeground2,\n },\n});\n\nconst useIntentIconStylesInverted = makeStyles({\n success: {\n color: tokens.colorPaletteGreenForegroundInverted,\n },\n error: {\n color: tokens.colorPaletteRedForegroundInverted,\n },\n warning: {\n color: tokens.colorPaletteYellowForegroundInverted,\n },\n info: {\n color: tokens.colorNeutralForegroundInverted2,\n },\n});\n\nconst useActionButtonColorInverted = makeStyles({\n action: {\n color: tokens.colorBrandForegroundInverted,\n ...createCustomFocusIndicatorStyle(\n {\n ...shorthands.borderColor(tokens.colorTransparentStrokeInteractive),\n outlineColor: tokens.colorNeutralBackground5Pressed,\n },\n { enableOutline: true },\n ),\n },\n});\n\n/**\n * @deprecated please use the Toast or MessageBar component\n * Apply styling to the Alert slots based on the state\n */\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport const useAlertStyles_unstable = (state: AlertState): AlertState => {\n const inverted = state.appearance === 'inverted';\n const styles = useStyles();\n const intentIconStylesPrimary = useIntentIconStyles();\n const intentIconStylesInverted = useIntentIconStylesInverted();\n const actionStylesInverted = useActionButtonColorInverted();\n\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.root.className = mergeClasses(\n alertClassNames.root,\n styles.root,\n inverted && styles.inverted,\n state.root.className,\n );\n\n if (state.icon) {\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.icon.className = mergeClasses(\n alertClassNames.icon,\n styles.icon,\n state.intent && (inverted ? intentIconStylesInverted[state.intent] : intentIconStylesPrimary[state.intent]),\n state.icon.className,\n );\n }\n\n if (state.avatar) {\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.avatar.className = mergeClasses(alertClassNames.avatar, styles.avatar, state.avatar.className);\n }\n\n if (state.action) {\n // Note: inverted && actionStylesInverted.action has the highest piority and must be merged last\n // eslint-disable-next-line react-hooks/immutability -- deprecated component, not worth refactoring\n state.action.className = mergeClasses(\n alertClassNames.action,\n styles.action,\n inverted && actionStylesInverted.action,\n state.action.className,\n );\n }\n\n return state;\n};\n"],"names":["tokens","makeStyles","mergeClasses","shorthands","createCustomFocusIndicatorStyle","alertClassNames","root","icon","action","avatar","useStyles","display","alignItems","minHeight","padding","borderRadius","border","colorTransparentStroke","boxShadow","shadow8","fontSize","fontSizeBase300","fontWeight","fontWeightSemibold","color","colorNeutralForeground1","backgroundColor","colorNeutralBackground1","inverted","colorNeutralForegroundInverted2","colorNeutralBackgroundInverted","height","margin","minWidth","marginLeft","colorBrandForeground1","useIntentIconStyles","success","colorPaletteGreenForeground3","error","colorPaletteRedForeground3","warning","colorPaletteYellowForeground2","info","colorNeutralForeground2","useIntentIconStylesInverted","colorPaletteGreenForegroundInverted","colorPaletteRedForegroundInverted","colorPaletteYellowForegroundInverted","useActionButtonColorInverted","colorBrandForegroundInverted","borderColor","colorTransparentStrokeInteractive","outlineColor","colorNeutralBackground5Pressed","enableOutline","useAlertStyles_unstable","state","appearance","styles","intentIconStylesPrimary","intentIconStylesInverted","actionStylesInverted","className","intent"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// eslint-disable-next-line
|
|
1
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
2
2
|
"use strict";
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
@@ -26,4 +26,4 @@ _export(exports, {
|
|
|
26
26
|
return _Alert.useAlert_unstable;
|
|
27
27
|
}
|
|
28
28
|
});
|
|
29
|
-
const _Alert = require("./Alert");
|
|
29
|
+
const _Alert = require("./Alert.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { Alert, alertClassNames, renderAlert_unstable, useAlertStyles_unstable, useAlert_unstable } from './Alert';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { AlertProps, AlertSlots, AlertState } from './Alert';\n"],"names":["Alert","alertClassNames","renderAlert_unstable","useAlertStyles_unstable","useAlert_unstable"],"mappings":"AAAA,4DAA4D;;;;;;;;;;;;;eACnDA,YAAK;;;eAAEC,sBAAe;;;eAAEC,2BAAoB;;;eAAEC,8BAAuB;;;eAAEC,wBAAiB;;;uBAAQ,aAAU"}
|