@julseb-lib/react 0.0.88 → 0.0.89
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 +639 -639
- package/dist/index.es.js +3247 -2717
- package/dist/index.umd.js +586 -586
- package/dist/lib/Mixins.tsx +970 -970
- package/dist/lib/components/Image/Image.tsx +77 -73
- package/dist/lib/components/Image/ImageFunction.tsx +39 -37
- package/dist/lib/components/Timepicker/Timepicker.tsx +234 -235
- package/dist/lib/components/Youtube/types.ts +5 -4
- package/dist/lib/index.ts +56 -55
- package/dist/lib/types/global.ts +129 -128
- package/dist/lib/types/index.ts +0 -1
- package/license.md +21 -0
- package/package.json +1 -1
- /package/dist/lib/{types/design-tokens.ts → design-tokens.ts} +0 -0
package/dist/lib/types/global.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
HTMLAttributes,
|
|
3
|
+
ElementType,
|
|
4
|
+
ReactNode,
|
|
5
|
+
Dispatch,
|
|
6
|
+
SetStateAction,
|
|
7
|
+
MouseEventHandler,
|
|
8
|
+
Ref,
|
|
9
|
+
ReactElement,
|
|
9
10
|
} from "react"
|
|
10
11
|
import type { Property } from "csstype"
|
|
11
12
|
import type { DefaultTheme } from "styled-components"
|
|
12
|
-
import type { designTokens } from "
|
|
13
|
+
import type { designTokens } from "../design-tokens"
|
|
13
14
|
import type { RequireAtLeastOne } from "./require-at-least-one"
|
|
14
15
|
|
|
15
16
|
export type LibColors = keyof typeof designTokens.libColors
|
|
@@ -19,9 +20,9 @@ export type LibColorsHover = keyof typeof designTokens.colorsHover
|
|
|
19
20
|
export type LibColorsHoverAndCurrent = LibColorsHover | "currentColor"
|
|
20
21
|
export type LibOverlays = keyof typeof designTokens.overlays
|
|
21
22
|
export type LibAllColorsAndOverlays =
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
| keyof typeof designTokens.libColors
|
|
24
|
+
| keyof typeof designTokens.colorsShort
|
|
25
|
+
| keyof typeof designTokens.overlays
|
|
25
26
|
export type LibFontFamilies = keyof typeof designTokens.fontFamilies
|
|
26
27
|
export type LibFontSizes = keyof typeof designTokens.fontSizes
|
|
27
28
|
export type LibFontWeights = keyof typeof designTokens.fontWeights | number
|
|
@@ -32,12 +33,12 @@ export type LibRadiuses = keyof typeof designTokens.radiuses | number
|
|
|
32
33
|
export type LibTransitions = keyof typeof designTokens.transitions
|
|
33
34
|
export type LibValidationStatus = boolean | undefined
|
|
34
35
|
export type LibThemeNames = keyof typeof designTokens.theme
|
|
35
|
-
export type LibIcon = string |
|
|
36
|
+
export type LibIcon = string | ReactElement
|
|
36
37
|
export type LibInputVariant = keyof typeof designTokens.inputVariants
|
|
37
38
|
export type LibInputBackground = keyof typeof designTokens.inputBackgrounds
|
|
38
39
|
export type LibPositionExtract = Extract<
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
Property.Position,
|
|
41
|
+
"relative" | "absolute" | "fixed"
|
|
41
42
|
>
|
|
42
43
|
|
|
43
44
|
/* Component base */
|
|
@@ -47,9 +48,9 @@ export type LibPositionExtract = Extract<
|
|
|
47
48
|
* @prop as?: ElementType
|
|
48
49
|
*/
|
|
49
50
|
export interface LibComponentBase<T> extends HTMLAttributes<T> {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
"data-testid"?: string
|
|
52
|
+
as?: ElementType
|
|
53
|
+
ref?: Ref<T>
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
/* Box shadow */
|
|
@@ -59,12 +60,12 @@ export interface LibComponentBase<T> extends HTMLAttributes<T> {
|
|
|
59
60
|
* @type { default: "xxl" | "xl" | "l" | "m" | "s" | "xs"; hover: "xxl" | "xl" | "l" | "m" | "s" | "xs"; active: "xxl" | "xl" | "l" | "m" | "s" | "xs" }
|
|
60
61
|
*/
|
|
61
62
|
export type ILibBoxShadow =
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
63
|
+
| LibShadows
|
|
64
|
+
| {
|
|
65
|
+
default: LibShadows
|
|
66
|
+
hover: LibShadows
|
|
67
|
+
active: LibShadows
|
|
68
|
+
}
|
|
68
69
|
|
|
69
70
|
/* Border radius */
|
|
70
71
|
/**
|
|
@@ -73,15 +74,15 @@ export type ILibBoxShadow =
|
|
|
73
74
|
* @type { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }
|
|
74
75
|
*/
|
|
75
76
|
export type ILibRadius =
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
77
|
+
| LibRadiuses
|
|
78
|
+
| number
|
|
79
|
+
| null
|
|
80
|
+
| {
|
|
81
|
+
topLeft?: LibRadiuses | number | null
|
|
82
|
+
topRight?: LibRadiuses | number | null
|
|
83
|
+
bottomLeft?: LibRadiuses | number | null
|
|
84
|
+
bottomRight?: LibRadiuses | number | null
|
|
85
|
+
}
|
|
85
86
|
|
|
86
87
|
/* Padding */
|
|
87
88
|
/**
|
|
@@ -90,15 +91,15 @@ export type ILibRadius =
|
|
|
90
91
|
* @type { left?: LibSpacers | "auto"; top?: LibSpacers | "auto"; right?: LibSpacers | "auto"; bottom?: LibSpacers | "auto"; leftRight?: LibSpacers | "auto"; topBottom?: LibSpacers | "auto" }
|
|
91
92
|
*/
|
|
92
93
|
export type ILibPadding =
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
94
|
+
| LibSpacers
|
|
95
|
+
| {
|
|
96
|
+
left?: LibSpacers | "auto"
|
|
97
|
+
top?: LibSpacers | "auto"
|
|
98
|
+
right?: LibSpacers | "auto"
|
|
99
|
+
bottom?: LibSpacers | "auto"
|
|
100
|
+
leftRight?: LibSpacers | "auto"
|
|
101
|
+
topBottom?: LibSpacers | "auto"
|
|
102
|
+
}
|
|
102
103
|
|
|
103
104
|
/* Margins */
|
|
104
105
|
/**
|
|
@@ -107,18 +108,18 @@ export type ILibPadding =
|
|
|
107
108
|
* @type { left?: LibSpacers | "auto"; top?: LibSpacers | "auto"; right?: LibSpacers | "auto"; bottom?: LibSpacers | "auto"; leftRight?: LibSpacers | "auto"; topBottom?: LibSpacers | "auto" }
|
|
108
109
|
*/
|
|
109
110
|
export type ILibMargin =
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
111
|
+
| LibSpacers
|
|
112
|
+
| undefined
|
|
113
|
+
| "auto"
|
|
114
|
+
| "0 auto"
|
|
115
|
+
| {
|
|
116
|
+
left?: LibSpacers | "auto"
|
|
117
|
+
top?: LibSpacers | "auto"
|
|
118
|
+
right?: LibSpacers | "auto"
|
|
119
|
+
bottom?: LibSpacers | "auto"
|
|
120
|
+
leftRight?: LibSpacers | "auto"
|
|
121
|
+
topBottom?: LibSpacers | "auto"
|
|
122
|
+
}
|
|
122
123
|
|
|
123
124
|
/* Border */
|
|
124
125
|
/**
|
|
@@ -128,9 +129,9 @@ export type ILibMargin =
|
|
|
128
129
|
* @prop color?: Any color from the library
|
|
129
130
|
*/
|
|
130
131
|
export type ILibBorder = {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
style?: CssBorderStyle
|
|
133
|
+
width?: LibSpacers
|
|
134
|
+
color?: LibAllColors
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
/* Outline */
|
|
@@ -141,9 +142,9 @@ export type ILibBorder = {
|
|
|
141
142
|
* @prop color?: Any color from the library
|
|
142
143
|
*/
|
|
143
144
|
export type ILibOutline = {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
style?: CssOutlineStyle
|
|
146
|
+
width?: LibSpacers
|
|
147
|
+
color?: LibAllColors
|
|
147
148
|
}
|
|
148
149
|
|
|
149
150
|
/* Position */
|
|
@@ -156,12 +157,12 @@ export type ILibOutline = {
|
|
|
156
157
|
* @prop bottom?: "xxl" | "xl" | "l" | "m" | "s" | "xs" | "xxs" | number | "0px"
|
|
157
158
|
*/
|
|
158
159
|
export interface ILibPosition {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
160
|
+
position?: LibPositionExtract
|
|
161
|
+
left?: LibSpacers
|
|
162
|
+
top?: LibSpacers
|
|
163
|
+
right?: LibSpacers
|
|
164
|
+
bottom?: LibSpacers
|
|
165
|
+
zIndex?: number
|
|
165
166
|
}
|
|
166
167
|
|
|
167
168
|
/* Links & buttons */
|
|
@@ -199,24 +200,24 @@ export type LibLinkBlank = LibLink & { blank?: boolean }
|
|
|
199
200
|
export type LibLinkBlankRequired = LibLinkRequired & { blank?: boolean }
|
|
200
201
|
|
|
201
202
|
type LibButtonLinkClick = {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
203
|
+
onClick?: MouseEventHandler<HTMLButtonElement>
|
|
204
|
+
disabled?: boolean
|
|
205
|
+
to?: never
|
|
206
|
+
href?: never
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
type LibButtonLinkTo = {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
onClick?: never
|
|
211
|
+
disabled?: never
|
|
212
|
+
to?: string | "prev"
|
|
213
|
+
href?: never
|
|
213
214
|
}
|
|
214
215
|
|
|
215
216
|
type LibButtonLinkHref = {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
217
|
+
onClick?: never
|
|
218
|
+
disabled?: never
|
|
219
|
+
to?: never
|
|
220
|
+
href?: string
|
|
220
221
|
}
|
|
221
222
|
|
|
222
223
|
/**
|
|
@@ -227,9 +228,9 @@ type LibButtonLinkHref = {
|
|
|
227
228
|
* @prop href?: string => only if onClick and to are not defined
|
|
228
229
|
*/
|
|
229
230
|
export type LibButtonLink =
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
231
|
+
| LibButtonLinkClick
|
|
232
|
+
| LibButtonLinkTo
|
|
233
|
+
| LibButtonLinkHref
|
|
233
234
|
|
|
234
235
|
/**
|
|
235
236
|
* @description Props for buttons and links, onClick, to or href are required
|
|
@@ -239,8 +240,8 @@ export type LibButtonLink =
|
|
|
239
240
|
* @prop href?: string => only if onClick and to are not defined
|
|
240
241
|
*/
|
|
241
242
|
export type LibButtonLinkRequired = RequireAtLeastOne<
|
|
242
|
-
|
|
243
|
-
|
|
243
|
+
LibButtonLink,
|
|
244
|
+
"onClick" | "to" | "href"
|
|
244
245
|
>
|
|
245
246
|
|
|
246
247
|
/**
|
|
@@ -252,9 +253,9 @@ export type LibButtonLinkRequired = RequireAtLeastOne<
|
|
|
252
253
|
* @prop blank?: boolean => only if to or href are defined
|
|
253
254
|
*/
|
|
254
255
|
export type LibButtonLinkBlank =
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
256
|
+
| (LibButtonLinkClick & { blank?: never })
|
|
257
|
+
| (LibButtonLinkTo & { blank?: boolean })
|
|
258
|
+
| (LibButtonLinkHref & { blank?: boolean })
|
|
258
259
|
|
|
259
260
|
/**
|
|
260
261
|
* @description Props for buttons and links, onClick, to or href are required
|
|
@@ -265,8 +266,8 @@ export type LibButtonLinkBlank =
|
|
|
265
266
|
* @prop blank?: boolean => only if to or href are defined
|
|
266
267
|
*/
|
|
267
268
|
export type LibButtonLinkBlankRequired = RequireAtLeastOne<
|
|
268
|
-
|
|
269
|
-
|
|
269
|
+
LibButtonLinkBlank,
|
|
270
|
+
"to" | "href" | "onClick"
|
|
270
271
|
>
|
|
271
272
|
|
|
272
273
|
/* useTranslation hook */
|
|
@@ -275,9 +276,9 @@ export type LibButtonLinkBlankRequired = RequireAtLeastOne<
|
|
|
275
276
|
* @prop [language: string]: { [key: string]: string }
|
|
276
277
|
*/
|
|
277
278
|
export type TranslateLang = {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
[language: string]: {
|
|
280
|
+
[key: string]: string
|
|
281
|
+
}
|
|
281
282
|
}
|
|
282
283
|
|
|
283
284
|
/* BackgroundImage */
|
|
@@ -291,12 +292,12 @@ export type TranslateLang = {
|
|
|
291
292
|
* @prop size?: CssBackgroundSize
|
|
292
293
|
*/
|
|
293
294
|
export interface ILibBackgroundImage {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
295
|
+
img: string
|
|
296
|
+
clip?: Property.BackgroundClip
|
|
297
|
+
origin?: Property.BackgroundOrigin
|
|
298
|
+
position?: Property.BackgroundPosition
|
|
299
|
+
repeat?: Property.BackgroundRepeat
|
|
300
|
+
size?: Property.BackgroundSize
|
|
300
301
|
}
|
|
301
302
|
|
|
302
303
|
/* Input phone */
|
|
@@ -308,19 +309,19 @@ export interface ILibBackgroundImage {
|
|
|
308
309
|
* @prop flag: string
|
|
309
310
|
*/
|
|
310
311
|
export type LibCountry = {
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
312
|
+
name: string
|
|
313
|
+
dial_code: string
|
|
314
|
+
code: CountryCode
|
|
315
|
+
flag: string
|
|
315
316
|
}
|
|
316
317
|
|
|
317
318
|
/* BackToTop */
|
|
318
319
|
export interface LibBackToTopPosition {
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
320
|
+
left?: LibSpacers | "unset"
|
|
321
|
+
top?: LibSpacers | "unset"
|
|
322
|
+
right?: LibSpacers | "unset"
|
|
323
|
+
bottom?: LibSpacers | "unset"
|
|
324
|
+
zIndex?: number
|
|
324
325
|
}
|
|
325
326
|
|
|
326
327
|
/**
|
|
@@ -330,9 +331,9 @@ export interface LibBackToTopPosition {
|
|
|
330
331
|
* @prop toggleTheme: () => void
|
|
331
332
|
*/
|
|
332
333
|
export interface ILibThemeContext {
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
334
|
+
theme: DefaultTheme
|
|
335
|
+
selectedTheme: LibThemeNames | undefined
|
|
336
|
+
toggleTheme: () => void
|
|
336
337
|
}
|
|
337
338
|
|
|
338
339
|
export type ReactChildren = ReactNode | Array<ReactNode>
|
|
@@ -358,20 +359,20 @@ export type LibMainSize = keyof typeof designTokens.mainSizes | number
|
|
|
358
359
|
export type LibAsideSize = keyof typeof designTokens.asideSizes | number
|
|
359
360
|
export type LibAccordionVariant = keyof typeof designTokens.accordionVariants
|
|
360
361
|
export type LibAccordionIcon =
|
|
361
|
-
|
|
362
|
-
|
|
362
|
+
| keyof typeof designTokens.accordionIcons
|
|
363
|
+
| ReactElement
|
|
363
364
|
export type LibAvatarBadgePosition =
|
|
364
|
-
|
|
365
|
+
keyof typeof designTokens.avatarBadgePosition
|
|
365
366
|
export type LibBreadcrumbSeparator =
|
|
366
|
-
|
|
367
|
-
|
|
367
|
+
| keyof typeof designTokens.breadcrumbSeparators
|
|
368
|
+
| ReactElement
|
|
368
369
|
export type LibButtonIconVariant = Extract<
|
|
369
|
-
|
|
370
|
-
|
|
370
|
+
LibButtonVariant,
|
|
371
|
+
"plain" | "transparent" | "ghost"
|
|
371
372
|
>
|
|
372
373
|
export type LibImageBackgroundOverlay = Exclude<
|
|
373
|
-
|
|
374
|
-
|
|
374
|
+
LibAllColorsAndOverlays,
|
|
375
|
+
"gradient-black" | "gradient-white"
|
|
375
376
|
>
|
|
376
377
|
export type LibInputType = keyof typeof designTokens.inputTypes
|
|
377
378
|
export type LibInputCheckVariant = keyof typeof designTokens.checkInputVariants
|
|
@@ -383,20 +384,20 @@ export type LibTextDisplayTag = keyof typeof designTokens.textDisplayTags
|
|
|
383
384
|
export type LibTextTag = keyof typeof designTokens.textTags
|
|
384
385
|
export type LibTextAllTag = LibTextDisplayTag | LibTextTag
|
|
385
386
|
export type LibTextIconTag = Exclude<
|
|
386
|
-
|
|
387
|
-
|
|
387
|
+
LibTextAllTag,
|
|
388
|
+
"strong" | "em" | "ul" | "ol" | "dl"
|
|
388
389
|
>
|
|
389
390
|
export type LibTooltipTrigger = keyof typeof designTokens.tooltipTriggers
|
|
390
391
|
export type LibTabVariant = keyof typeof designTokens.tabsVariants
|
|
391
392
|
export type LibTabJustify = keyof typeof designTokens.tabsJustify
|
|
392
393
|
export type LibSlideshowPagination =
|
|
393
|
-
|
|
394
|
+
keyof typeof designTokens.slideshowPagination
|
|
394
395
|
export type LibSlideshowPaginationPosition =
|
|
395
|
-
|
|
396
|
+
keyof typeof designTokens.slideshowPaginationPosition
|
|
396
397
|
export type LibSlideshowButtonPosition =
|
|
397
|
-
|
|
398
|
+
keyof typeof designTokens.slideshowButtonsPositions
|
|
398
399
|
export type LibSlideshowButtonSize =
|
|
399
|
-
|
|
400
|
+
keyof typeof designTokens.slideshowButtonsSizes
|
|
400
401
|
export type LibTableVariant = keyof typeof designTokens.tableVariants
|
|
401
402
|
export type LibMessageType = keyof typeof designTokens.messageType
|
|
402
403
|
export type LibMdEditorEditor = keyof typeof designTokens.markdownEditorEditor
|
|
@@ -412,24 +413,24 @@ export type LibIconMenuPosition = LibPositionExtract
|
|
|
412
413
|
export type LibToastStatus = keyof typeof designTokens.toastStatus
|
|
413
414
|
export type LibToasterPosition = keyof typeof designTokens.toasterPositions
|
|
414
415
|
export type LibInputListDirection =
|
|
415
|
-
|
|
416
|
+
keyof typeof designTokens.listInputDirections
|
|
416
417
|
export type LibButtonVariant = keyof typeof designTokens.buttonVariants
|
|
417
418
|
export type LibButtonSize = keyof typeof designTokens.buttonSizes
|
|
418
419
|
export type LibTooltipPosition = keyof typeof designTokens.tooltipPositions
|
|
419
420
|
export type CountryCode = keyof typeof designTokens.countryCodes
|
|
420
421
|
export type LibFooterDirection = keyof typeof designTokens.footerDirections
|
|
421
422
|
export type LibFooterLinksSeparator = keyof typeof designTokens.footerSeparators
|
|
422
|
-
export type LibInputPrefixAndSuffix = string |
|
|
423
|
+
export type LibInputPrefixAndSuffix = string | ReactElement
|
|
423
424
|
export type LibButtonGroupToggleSelect =
|
|
424
|
-
|
|
425
|
+
keyof typeof designTokens.buttonGroupToggleSelects
|
|
425
426
|
export type LibValueInputPin = { [n: number]: number | "" | undefined }
|
|
426
427
|
export type LibDrawerPosition = keyof typeof designTokens.drawerPositions
|
|
427
428
|
export type LibPageLayoutTemplate =
|
|
428
|
-
|
|
429
|
+
keyof typeof designTokens.pageLayoutTemplates
|
|
429
430
|
export type LibTimepickerSteps = keyof typeof designTokens.timepickerSteps
|
|
430
431
|
export type LibTimepickerHours = keyof typeof designTokens.hours
|
|
431
432
|
export type LibTimepickerHalfTimes = keyof typeof designTokens.halfHours
|
|
432
433
|
export type LibTimepickerQuarterTimes = keyof typeof designTokens.quarterHours
|
|
433
434
|
export type LibTimepickerMinutes = keyof typeof designTokens.minutes
|
|
434
435
|
export type LibMessagingDateFormat =
|
|
435
|
-
|
|
436
|
+
keyof typeof designTokens.messagingDateFormats
|
package/dist/lib/types/index.ts
CHANGED
package/license.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Julien Sebag
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
File without changes
|