@julseb-lib/react 0.0.87 → 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.
@@ -2,8 +2,9 @@ import type { IframeHTMLAttributes } from "react"
2
2
  import type { LibComponentBase } from "../../types"
3
3
 
4
4
  export interface ILibYoutube
5
- extends Exclude<LibComponentBase<HTMLIFrameElement>, "as">,
6
- IframeHTMLAttributes<HTMLIFrameElement> {
7
- aspectRatio?: string
8
- children?: never
5
+ extends Exclude<LibComponentBase<HTMLIFrameElement>, "as">,
6
+ IframeHTMLAttributes<HTMLIFrameElement> {
7
+ src: string
8
+ aspectRatio?: string
9
+ children?: never
9
10
  }
package/dist/lib/index.ts CHANGED
@@ -3,68 +3,69 @@
3
3
  export { ThemeProvider } from "styled-components"
4
4
  // import {} from "styled-components/cssprop"
5
5
  export * from "./utils"
6
+ export * from "./design-tokens"
6
7
  export {
7
- addDay,
8
- addMonth,
9
- addYear,
10
- calculateAverage,
11
- calculateTotalSum,
12
- capitalize,
13
- convertDate,
14
- convertDateShort,
15
- convertPrice,
16
- convertToEmail,
17
- convertYoutube,
18
- deleteDuplicates,
19
- detectLanguage,
20
- disableScroll,
21
- enableScroll,
22
- filterObject,
23
- formatDate,
24
- formatHour,
25
- generateNumbers,
26
- getFirstName,
27
- getInitials,
28
- getLastName,
29
- getNextDay,
30
- getPercentage,
31
- getRandom,
32
- getRandomAvatar,
33
- getRandomDate,
34
- getRandomNumber,
35
- getRandomString,
36
- getRandomTime,
37
- getTimeNow,
38
- getToday,
39
- getTomorrow,
40
- getYesterday,
41
- hexToRgb,
42
- emailRegex,
43
- passwordRegex,
44
- rgbToHex,
45
- scrollToTop,
46
- slugify,
47
- sortByFrequency,
48
- stringifyPx,
49
- toCamelCase,
50
- toConstantCase,
51
- toDotCase,
52
- toKebabCase,
53
- toPascalCase,
54
- toPathCase,
55
- toSentenceCase,
56
- toSnakeCase,
57
- toTitleCase,
58
- unslugify,
59
- uuid,
8
+ addDay,
9
+ addMonth,
10
+ addYear,
11
+ calculateAverage,
12
+ calculateTotalSum,
13
+ capitalize,
14
+ convertDate,
15
+ convertDateShort,
16
+ convertPrice,
17
+ convertToEmail,
18
+ convertYoutube,
19
+ deleteDuplicates,
20
+ detectLanguage,
21
+ disableScroll,
22
+ enableScroll,
23
+ filterObject,
24
+ formatDate,
25
+ formatHour,
26
+ generateNumbers,
27
+ getFirstName,
28
+ getInitials,
29
+ getLastName,
30
+ getNextDay,
31
+ getPercentage,
32
+ getRandom,
33
+ getRandomAvatar,
34
+ getRandomDate,
35
+ getRandomNumber,
36
+ getRandomString,
37
+ getRandomTime,
38
+ getTimeNow,
39
+ getToday,
40
+ getTomorrow,
41
+ getYesterday,
42
+ hexToRgb,
43
+ emailRegex,
44
+ passwordRegex,
45
+ rgbToHex,
46
+ scrollToTop,
47
+ slugify,
48
+ sortByFrequency,
49
+ stringifyPx,
50
+ toCamelCase,
51
+ toConstantCase,
52
+ toDotCase,
53
+ toKebabCase,
54
+ toPascalCase,
55
+ toPathCase,
56
+ toSentenceCase,
57
+ toSnakeCase,
58
+ toTitleCase,
59
+ unslugify,
60
+ uuid,
60
61
  } from "@julseb-lib/utils"
61
62
 
62
63
  export * from "./Variables"
63
64
  export * from "./Mixins"
64
65
 
65
66
  export {
66
- optionsMarkdown,
67
- markdownEditorOptions,
67
+ optionsMarkdown,
68
+ markdownEditorOptions,
68
69
  } from "./utils/options-markdown"
69
70
 
70
71
  export * from "./hooks"
@@ -1,15 +1,16 @@
1
1
  import type {
2
- HTMLAttributes,
3
- ElementType,
4
- ReactNode,
5
- Dispatch,
6
- SetStateAction,
7
- MouseEventHandler,
8
- Ref,
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 "./design-tokens"
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
- | keyof typeof designTokens.libColors
23
- | keyof typeof designTokens.colorsShort
24
- | keyof typeof designTokens.overlays
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 | JSX.Element
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
- Property.Position,
40
- "relative" | "absolute" | "fixed"
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
- "data-testid"?: string
51
- as?: ElementType
52
- ref?: Ref<T>
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
- | LibShadows
63
- | {
64
- default: LibShadows
65
- hover: LibShadows
66
- active: LibShadows
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
- | LibRadiuses
77
- | number
78
- | null
79
- | {
80
- topLeft?: LibRadiuses | number | null
81
- topRight?: LibRadiuses | number | null
82
- bottomLeft?: LibRadiuses | number | null
83
- bottomRight?: LibRadiuses | number | null
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
- | LibSpacers
94
- | {
95
- left?: LibSpacers | "auto"
96
- top?: LibSpacers | "auto"
97
- right?: LibSpacers | "auto"
98
- bottom?: LibSpacers | "auto"
99
- leftRight?: LibSpacers | "auto"
100
- topBottom?: LibSpacers | "auto"
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
- | LibSpacers
111
- | undefined
112
- | "auto"
113
- | "0 auto"
114
- | {
115
- left?: LibSpacers | "auto"
116
- top?: LibSpacers | "auto"
117
- right?: LibSpacers | "auto"
118
- bottom?: LibSpacers | "auto"
119
- leftRight?: LibSpacers | "auto"
120
- topBottom?: LibSpacers | "auto"
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
- style?: CssBorderStyle
132
- width?: LibSpacers
133
- color?: LibAllColors
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
- style?: CssOutlineStyle
145
- width?: LibSpacers
146
- color?: LibAllColors
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
- position?: LibPositionExtract
160
- left?: LibSpacers
161
- top?: LibSpacers
162
- right?: LibSpacers
163
- bottom?: LibSpacers
164
- zIndex?: number
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
- onClick?: MouseEventHandler<HTMLButtonElement>
203
- disabled?: boolean
204
- to?: never
205
- href?: never
203
+ onClick?: MouseEventHandler<HTMLButtonElement>
204
+ disabled?: boolean
205
+ to?: never
206
+ href?: never
206
207
  }
207
208
 
208
209
  type LibButtonLinkTo = {
209
- onClick?: never
210
- disabled?: never
211
- to?: string | "prev"
212
- href?: never
210
+ onClick?: never
211
+ disabled?: never
212
+ to?: string | "prev"
213
+ href?: never
213
214
  }
214
215
 
215
216
  type LibButtonLinkHref = {
216
- onClick?: never
217
- disabled?: never
218
- to?: never
219
- href?: string
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
- | LibButtonLinkClick
231
- | LibButtonLinkTo
232
- | LibButtonLinkHref
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
- LibButtonLink,
243
- "onClick" | "to" | "href"
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
- | (LibButtonLinkClick & { blank?: never })
256
- | (LibButtonLinkTo & { blank?: boolean })
257
- | (LibButtonLinkHref & { blank?: boolean })
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
- LibButtonLinkBlank,
269
- "to" | "href" | "onClick"
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
- [language: string]: {
279
- [key: string]: string
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
- img: string
295
- clip?: Property.BackgroundClip
296
- origin?: Property.BackgroundOrigin
297
- position?: Property.BackgroundPosition
298
- repeat?: Property.BackgroundRepeat
299
- size?: Property.BackgroundSize
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
- name: string
312
- dial_code: string
313
- code: CountryCode
314
- flag: string
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
- left?: LibSpacers | "unset"
320
- top?: LibSpacers | "unset"
321
- right?: LibSpacers | "unset"
322
- bottom?: LibSpacers | "unset"
323
- zIndex?: number
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
- theme: DefaultTheme
334
- selectedTheme: LibThemeNames | undefined
335
- toggleTheme: () => void
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
- | keyof typeof designTokens.accordionIcons
362
- | JSX.Element
362
+ | keyof typeof designTokens.accordionIcons
363
+ | ReactElement
363
364
  export type LibAvatarBadgePosition =
364
- keyof typeof designTokens.avatarBadgePosition
365
+ keyof typeof designTokens.avatarBadgePosition
365
366
  export type LibBreadcrumbSeparator =
366
- | keyof typeof designTokens.breadcrumbSeparators
367
- | JSX.Element
367
+ | keyof typeof designTokens.breadcrumbSeparators
368
+ | ReactElement
368
369
  export type LibButtonIconVariant = Extract<
369
- LibButtonVariant,
370
- "plain" | "transparent" | "ghost"
370
+ LibButtonVariant,
371
+ "plain" | "transparent" | "ghost"
371
372
  >
372
373
  export type LibImageBackgroundOverlay = Exclude<
373
- LibAllColorsAndOverlays,
374
- "gradient-black" | "gradient-white"
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
- LibTextAllTag,
387
- "strong" | "em" | "ul" | "ol" | "dl"
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
- keyof typeof designTokens.slideshowPagination
394
+ keyof typeof designTokens.slideshowPagination
394
395
  export type LibSlideshowPaginationPosition =
395
- keyof typeof designTokens.slideshowPaginationPosition
396
+ keyof typeof designTokens.slideshowPaginationPosition
396
397
  export type LibSlideshowButtonPosition =
397
- keyof typeof designTokens.slideshowButtonsPositions
398
+ keyof typeof designTokens.slideshowButtonsPositions
398
399
  export type LibSlideshowButtonSize =
399
- keyof typeof designTokens.slideshowButtonsSizes
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
- keyof typeof designTokens.listInputDirections
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 | JSX.Element
423
+ export type LibInputPrefixAndSuffix = string | ReactElement
423
424
  export type LibButtonGroupToggleSelect =
424
- keyof typeof designTokens.buttonGroupToggleSelects
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
- keyof typeof designTokens.pageLayoutTemplates
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
- keyof typeof designTokens.messagingDateFormats
436
+ keyof typeof designTokens.messagingDateFormats
@@ -1,4 +1,3 @@
1
- export * from "./design-tokens"
2
1
  export * from "./global"
3
2
  export * from "./require-at-least-one"
4
3
  export * from "./component-items"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@julseb-lib/react",
3
- "version": "0.0.87",
3
+ "version": "0.0.89",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "scripts": {