@sphereon/ui-components.ssi-react 0.1.3-unstable.40 → 0.1.3-unstable.42

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.
@@ -9,5 +9,5 @@ export const toastConfig = {
9
9
  ssiToastError: (params) => {
10
10
  const { title, message, onClick, props } = params;
11
11
  return _jsx(SSIToast, { type: ToastType.ERROR, title: title, message: message, showBadge: props?.showBadge, onClick: onClick });
12
- }
12
+ },
13
13
  };
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ interface SSILoaderProps {
3
+ ariaLabel?: string;
4
+ width?: string | number;
5
+ height?: string | number;
6
+ color?: string;
7
+ secondaryColor?: string;
8
+ strokeWidth?: string | number;
9
+ strokeWidthSecondary?: string | number;
10
+ visible?: boolean;
11
+ wrapperStyle?: {
12
+ [key: string]: string;
13
+ };
14
+ wrapperClass?: string;
15
+ timeout?: number;
16
+ callback: (state?: any) => Promise<void>;
17
+ }
18
+ export default class SSILoader extends React.Component<SSILoaderProps, any> {
19
+ componentDidMount(): void;
20
+ render(): JSX.Element;
21
+ }
22
+ export {};
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ import { Oval } from 'react-loader-spinner';
4
+ export default class SSILoader extends React.Component {
5
+ componentDidMount() {
6
+ setTimeout(async (state) => {
7
+ await this.props.callback(state);
8
+ }, this.props.timeout ?? 0);
9
+ }
10
+ render() {
11
+ return _jsx(Oval, { ...this.props });
12
+ }
13
+ }
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { OpacityStyleEnum, fontColors, selectionElements } from '@sphereon/ui-components.core';
4
4
  import { SSICheckboxContainerStyled as Container, SSICheckboxLabelContainerStyled as LabelCaption, SSICheckboxSelectedContainerStyled as SelectedContainer, SSICheckboxUnselectedContainerStyled as UnselectedContainer, } from '../../../styles/components';
5
5
  const SSICheckbox = (props) => {
6
- const { backgroundColor, borderColor = selectionElements.primaryBorderDark, disabled = false, initialValue = false, label, selectedColor = selectionElements.primaryDark, labelColor = fontColors.light, checkmarkColor = fontColors.dark } = props;
6
+ const { backgroundColor, borderColor = selectionElements.primaryBorderDark, disabled = false, initialValue = false, label, selectedColor = selectionElements.primaryDark, labelColor = fontColors.light, checkmarkColor = fontColors.dark, } = props;
7
7
  const [isChecked, setChecked] = React.useState(initialValue);
8
8
  const value = props.isChecked !== undefined ? props.isChecked : isChecked;
9
9
  const onValueChange = async () => {
@@ -16,9 +16,6 @@ const SSICheckbox = (props) => {
16
16
  }
17
17
  setChecked(!isChecked);
18
18
  };
19
- return (_jsxs(Container, { onClick: onValueChange, style: { ...(disabled && { opacity: OpacityStyleEnum.DISABLED }) }, children: [value ? (_jsx(SelectedContainer, { style: { backgroundColor: selectedColor, border: `1px solid ${borderColor}` } })) : (_jsx(UnselectedContainer, { style: { backgroundColor, border: `1px solid ${borderColor}` } })), label &&
20
- (typeof label === 'string'
21
- ? _jsx(LabelCaption, { style: { color: labelColor }, children: label })
22
- : label)] }));
19
+ return (_jsxs(Container, { onClick: onValueChange, style: { ...(disabled && { opacity: OpacityStyleEnum.DISABLED }) }, children: [value ? (_jsx(SelectedContainer, { style: { backgroundColor: selectedColor, border: `1px solid ${borderColor}` } })) : (_jsx(UnselectedContainer, { style: { backgroundColor, border: `1px solid ${borderColor}` } })), label && (typeof label === 'string' ? _jsx(LabelCaption, { style: { color: labelColor }, children: label }) : label)] }));
23
20
  };
24
21
  export default SSICheckbox;
@@ -1,9 +1,8 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { SSIHoverTextTextStyled as Text, SSIHoverTextContainerStyled as Container, SSIHoverTextTextHoverStyled as TextHover } from '../../../styles/components';
2
+ import { SSIHoverTextTextStyled as Text, SSIHoverTextContainerStyled as Container, SSIHoverTextTextHoverStyled as TextHover, } from '../../../styles/components';
3
3
  const SSIHoverText = (props) => {
4
4
  const { text, truncationLength, enableHover = false } = props;
5
5
  const value = truncationLength ? text.substring(0, truncationLength) : text;
6
- return (_jsxs(Container, { children: [_jsx(Text, { children: value }), enableHover &&
7
- _jsx(TextHover, { children: text })] }));
6
+ return (_jsxs(Container, { children: [_jsx(Text, { children: value }), enableHover && _jsx(TextHover, { children: text })] }));
8
7
  };
9
8
  export default SSIHoverText;
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { ToastType } from '@sphereon/ui-components.core';
3
3
  import SSICheckmarkBadge from '../../../assets/badges/SSICheckmarkBadge';
4
4
  import SSIExclamationMarkBadge from '../../../assets/badges/SSIExclamationMarkBadge';
5
- import { SSIToastContainerStyled as Container, SSIToastMessageTextStyled as MessageText, SSIFlexDirectionRowViewStyled as MessageContainer, SSITextH2SemiBoldStyled as TitleText, SSIToastTitleContainerStyled as TitleContainer, SSIToastBadgeContainerStyled as ToastBadgeContainer } from '../../../../styles';
5
+ import { SSIToastContainerStyled as Container, SSIToastMessageTextStyled as MessageText, SSIFlexDirectionRowViewStyled as MessageContainer, SSITextH2SemiBoldStyled as TitleText, SSIToastTitleContainerStyled as TitleContainer, SSIToastBadgeContainerStyled as ToastBadgeContainer, } from '../../../../styles';
6
6
  const getBadge = (type) => {
7
7
  switch (type) {
8
8
  case ToastType.SUCCESS:
@@ -15,6 +15,6 @@ const getBadge = (type) => {
15
15
  };
16
16
  const SSIToast = (props) => {
17
17
  const { type, title, message, showBadge = true, onClick } = props;
18
- return (_jsxs(Container, { onClick: onClick, children: [title && (_jsxs(TitleContainer, { children: [showBadge && _jsx(ToastBadgeContainer, { children: getBadge(type) }), _jsx(TitleText, { children: title })] })), _jsxs(MessageContainer, { children: [(!title && showBadge) && _jsx(ToastBadgeContainer, { children: getBadge(type) }), message && _jsx(MessageText, { style: { ...(showBadge && { textAlign: 'center' }) }, children: message })] })] }));
18
+ return (_jsxs(Container, { onClick: onClick, children: [title && (_jsxs(TitleContainer, { children: [showBadge && _jsx(ToastBadgeContainer, { children: getBadge(type) }), _jsx(TitleText, { children: title })] })), _jsxs(MessageContainer, { children: [!title && showBadge && _jsx(ToastBadgeContainer, { children: getBadge(type) }), message && _jsx(MessageText, { style: { ...(showBadge && { textAlign: 'center' }) }, children: message })] })] }));
19
19
  };
20
20
  export default SSIToast;
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { SSIToastContainerContainerStyled as Container } from '../../../../styles';
3
3
  const SSIToastContainer = (props) => {
4
- const { position = 'top-right', autoHide = true, visibilityTimeMs = 6000, pauseOnHover = true, } = props;
4
+ const { position = 'top-right', autoHide = true, visibilityTimeMs = 6000, pauseOnHover = true } = props;
5
5
  return (_jsx(Container, { position: position, autoClose: !autoHide ? autoHide : visibilityTimeMs, hideProgressBar: true, closeButton: false, pauseOnHover: pauseOnHover }));
6
6
  };
7
7
  export default SSIToastContainer;
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { credentialCardColors } from '@sphereon/ui-components.core';
3
3
  import SSILogo from '../../assets/logos/SSILogo';
4
- import { SSICredentialMiniCardViewContainerStyled as Container, SSICredentialMiniCardViewBackgroundImageStyled as BackgroundImage } from '../../../styles';
4
+ import { SSICredentialMiniCardViewContainerStyled as Container, SSICredentialMiniCardViewBackgroundImageStyled as BackgroundImage, } from '../../../styles';
5
5
  const SSICredentialMiniCardView = (props) => {
6
6
  const { backgroundColor = credentialCardColors.default, backgroundImage, logo, logoColor, style } = props;
7
7
  return (_jsx(Container, { style: { ...style, backgroundColor }, children: _jsx(BackgroundImage, { style: {
@@ -7,7 +7,6 @@ import SSITypeLabel from '../../labels/SSITypeLabel';
7
7
  import SSIHoverText from '../../fields/SSIHoverText';
8
8
  import { SSITableViewCellContainerStyled as CellContainer, SSITableViewContainerStyled as Container, SSITableViewHeaderCellContainerStyled as HeaderCellContainer, SSITableViewLabelCellStyled as LabelCell, SSITableViewResultCountCaptionStyled as ResultCountCaption, SSITableViewRowContainerStyled as RowContainer, SSITableViewTableContainerStyled as TableContainer, } from '../../../styles';
9
9
  import { TableCellType } from '../../../types';
10
- import { SSIStatusLabel } from "../../../index";
11
10
  function IndeterminateCheckbox({ indeterminate, className = '', ...rest }) {
12
11
  const ref = React.useRef(null);
13
12
  React.useEffect(() => {
@@ -25,9 +24,6 @@ const getCellFormatting = (type, value, truncationLength) => {
25
24
  const labels = Array.isArray(value) ? value.map((label) => _jsx(SSITypeLabel, { type: label })) : _jsx(SSITypeLabel, { type: value });
26
25
  return _jsx(LabelCell, { children: labels });
27
26
  }
28
- case TableCellType.STATUS: {
29
- return _jsx(SSIStatusLabel, { status: value });
30
- }
31
27
  default:
32
28
  return _jsx("div", {});
33
29
  }
package/dist/index.d.ts CHANGED
@@ -20,8 +20,9 @@ import SSITabViewHeader from './components/views/SSITabView/SSITabViewHeader';
20
20
  import SSIProfileIcon from './components/assets/icons/SSIProfileIcon';
21
21
  import SSISecondaryButton from './components/buttons/SSISecondaryButton';
22
22
  import SSICheckbox from './components/fields/SSICheckbox';
23
+ import SSILoader from './components/assets/loaders/SSILoader';
23
24
  import SSIHoverText from './components/fields/SSIHoverText';
24
25
  export * from './styles/components/fonts';
25
26
  export * from './types';
26
27
  export * from './helpers';
27
- export { SSICredentialCardView, SSICredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, SSIDropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIHoverText };
28
+ export { SSICredentialCardView, SSICredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, SSIDropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSILoader, SSIHoverText, };
package/dist/index.js CHANGED
@@ -20,8 +20,9 @@ import SSITabViewHeader from './components/views/SSITabView/SSITabViewHeader';
20
20
  import SSIProfileIcon from './components/assets/icons/SSIProfileIcon';
21
21
  import SSISecondaryButton from './components/buttons/SSISecondaryButton';
22
22
  import SSICheckbox from './components/fields/SSICheckbox';
23
+ import SSILoader from './components/assets/loaders/SSILoader';
23
24
  import SSIHoverText from './components/fields/SSIHoverText';
24
25
  export * from './styles/components/fonts';
25
26
  export * from './types';
26
27
  export * from './helpers';
27
- export { SSICredentialCardView, SSICredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, SSIDropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIHoverText };
28
+ export { SSICredentialCardView, SSICredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, SSIDropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSILoader, SSIHoverText, };
@@ -13,7 +13,7 @@ export const SSICheckboxUnselectedContainerStyled = styled.div `
13
13
  border-width: 1px;
14
14
  `;
15
15
  export const SSICheckboxSelectedContainerStyled = styled.div `
16
- width: 18px;
16
+ width: 18px;
17
17
  aspect-ratio: 1;
18
18
  border-radius: 4px;
19
19
  align-items: center;
@@ -4,7 +4,6 @@ import { SSITextH5LightStyled } from '../../fonts';
4
4
  export const SSIStatusLabelContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
5
5
  border-radius: 9px;
6
6
  border: 1px solid #000;
7
- width: fit-content;
8
7
  `;
9
8
  export const SSIStatusLabelStatusCaptionStyled = styled(SSITextH5LightStyled) `
10
9
  margin-left: 7px;
@@ -7,7 +7,7 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
7
7
  position: fixed;
8
8
  box-sizing: border-box;
9
9
  }
10
-
10
+
11
11
  &.Toastify__toast-container--top-left {
12
12
  top: 1em;
13
13
  left: 1em;
@@ -35,18 +35,22 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
35
35
  right: 1em;
36
36
  }
37
37
 
38
- @media only screen and (max-width : 480px) {
38
+ @media only screen and (max-width: 480px) {
39
39
  .Toastify__toast-container {
40
40
  width: 100vw;
41
41
  padding: 0;
42
42
  left: 0;
43
43
  margin: 0;
44
44
  }
45
- .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
45
+ .Toastify__toast-container--top-left,
46
+ .Toastify__toast-container--top-center,
47
+ .Toastify__toast-container--top-right {
46
48
  top: 0;
47
49
  transform: translateX(0);
48
50
  }
49
- .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
51
+ .Toastify__toast-container--bottom-left,
52
+ .Toastify__toast-container--bottom-center,
53
+ .Toastify__toast-container--bottom-right {
50
54
  bottom: 0;
51
55
  transform: translateX(0);
52
56
  }
@@ -55,7 +59,7 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
55
59
  left: initial;
56
60
  }
57
61
  }
58
-
62
+
59
63
  .Toastify__toast {
60
64
  position: relative;
61
65
  box-sizing: border-box;
@@ -68,7 +72,7 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
68
72
  direction: ltr;
69
73
  z-index: 0;
70
74
  }
71
-
75
+
72
76
  .Toastify__toast--rtl {
73
77
  direction: rtl;
74
78
  }
@@ -98,7 +102,7 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
98
102
  animation-duration: 0.7s;
99
103
  }
100
104
 
101
- @media only screen and (max-width : 480px) {
105
+ @media only screen and (max-width: 480px) {
102
106
  .Toastify__toast {
103
107
  margin-bottom: 0;
104
108
  border-radius: 0;
@@ -127,7 +131,11 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
127
131
  }
128
132
 
129
133
  @keyframes Toastify__bounceInRight {
130
- from, 60%, 75%, 90%, to {
134
+ from,
135
+ 60%,
136
+ 75%,
137
+ 90%,
138
+ to {
131
139
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
132
140
  }
133
141
  from {
@@ -159,7 +167,11 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
159
167
  }
160
168
  }
161
169
  @keyframes Toastify__bounceInLeft {
162
- from, 60%, 75%, 90%, to {
170
+ from,
171
+ 60%,
172
+ 75%,
173
+ 90%,
174
+ to {
163
175
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
164
176
  }
165
177
  0% {
@@ -191,7 +203,11 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
191
203
  }
192
204
  }
193
205
  @keyframes Toastify__bounceInUp {
194
- from, 60%, 75%, 90%, to {
206
+ from,
207
+ 60%,
208
+ 75%,
209
+ 90%,
210
+ to {
195
211
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
196
212
  }
197
213
  from {
@@ -216,7 +232,8 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
216
232
  20% {
217
233
  transform: translate3d(0, -10px, 0);
218
234
  }
219
- 40%, 45% {
235
+ 40%,
236
+ 45% {
220
237
  opacity: 1;
221
238
  transform: translate3d(0, 20px, 0);
222
239
  }
@@ -226,7 +243,11 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
226
243
  }
227
244
  }
228
245
  @keyframes Toastify__bounceInDown {
229
- from, 60%, 75%, 90%, to {
246
+ from,
247
+ 60%,
248
+ 75%,
249
+ 90%,
250
+ to {
230
251
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
231
252
  }
232
253
  0% {
@@ -251,7 +272,8 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
251
272
  20% {
252
273
  transform: translate3d(0, 10px, 0);
253
274
  }
254
- 40%, 45% {
275
+ 40%,
276
+ 45% {
255
277
  opacity: 1;
256
278
  transform: translate3d(0, -20px, 0);
257
279
  }
@@ -260,10 +282,12 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
260
282
  transform: translate3d(0, 2000px, 0);
261
283
  }
262
284
  }
263
- .Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
285
+ .Toastify__bounce-enter--top-left,
286
+ .Toastify__bounce-enter--bottom-left {
264
287
  animation-name: Toastify__bounceInLeft;
265
288
  }
266
- .Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
289
+ .Toastify__bounce-enter--top-right,
290
+ .Toastify__bounce-enter--bottom-right {
267
291
  animation-name: Toastify__bounceInRight;
268
292
  }
269
293
  .Toastify__bounce-enter--top-center {
@@ -273,10 +297,12 @@ export const SSIToastContainerContainerStyled = styled(ToastContainer) `
273
297
  animation-name: Toastify__bounceInUp;
274
298
  }
275
299
 
276
- .Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
300
+ .Toastify__bounce-exit--top-left,
301
+ .Toastify__bounce-exit--bottom-left {
277
302
  animation-name: Toastify__bounceOutLeft;
278
303
  }
279
- .Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
304
+ .Toastify__bounce-exit--top-right,
305
+ .Toastify__bounce-exit--bottom-right {
280
306
  animation-name: Toastify__bounceOutRight;
281
307
  }
282
308
  .Toastify__bounce-exit--top-center {
@@ -1,6 +1,6 @@
1
1
  import styled from 'styled-components';
2
2
  import { fontColors } from '@sphereon/ui-components.core';
3
- import { SSITextH1Css, SSITextH2Css, SSITextH2SemiBoldStyledCss, SSITextH3Css, SSITextH4Css, SSITextH4SemiBoldCss, SSITextH5Css, SSITextH6Css } from '../../css';
3
+ import { SSITextH1Css, SSITextH2Css, SSITextH2SemiBoldStyledCss, SSITextH3Css, SSITextH4Css, SSITextH4SemiBoldCss, SSITextH5Css, SSITextH6Css, } from '../../css';
4
4
  export const SSITextH1Styled = styled.span `
5
5
  ${SSITextH1Css}
6
6
  `;
@@ -1,8 +1,7 @@
1
1
  import { AccessorFn, DeepKeys } from '@tanstack/react-table';
2
2
  export declare enum TableCellType {
3
3
  TEXT = "text",
4
- LABEL = "label",
5
- STATUS = "status"
4
+ LABEL = "label"
6
5
  }
7
6
  export type ColumnHeader<T> = {
8
7
  accessor: AccessorFn<T> | DeepKeys<T>;
@@ -2,5 +2,4 @@ export var TableCellType;
2
2
  (function (TableCellType) {
3
3
  TableCellType["TEXT"] = "text";
4
4
  TableCellType["LABEL"] = "label";
5
- TableCellType["STATUS"] = "status";
6
5
  })(TableCellType || (TableCellType = {}));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ui-components.ssi-react",
3
3
  "private": false,
4
- "version": "0.1.3-unstable.40+5045248",
4
+ "version": "0.1.3-unstable.42+0b192df",
5
5
  "description": "SSI UI components for React",
6
6
  "repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
7
7
  "author": "Sphereon <dev@sphereon.com>",
@@ -28,8 +28,9 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@sphereon/ui-components.core": "0.1.3-unstable.40+5045248",
31
+ "@sphereon/ui-components.core": "0.1.3-unstable.42+0b192df",
32
32
  "@tanstack/react-table": "^8.9.3",
33
+ "react-loader-spinner": "^5.4.5",
33
34
  "react-toastify": "^9.1.3",
34
35
  "styled-components": "^5.3.3"
35
36
  },
@@ -41,5 +42,5 @@
41
42
  "peerDependencies": {
42
43
  "react": ">= 16.8.0"
43
44
  },
44
- "gitHead": "5045248918930f27e749ef80b78bde21691fc92b"
45
+ "gitHead": "0b192df82e83d188d3e2f9501733b277efcd64d7"
45
46
  }
File without changes
@@ -1 +0,0 @@
1
- "use strict";