@livechat/design-system-react-components 1.16.5 → 1.16.6
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/README.md +82 -0
- package/dist/components/Icon/IconsShowcase/IconsShowcase.d.ts +11 -0
- package/dist/components/Icon/IconsShowcase/constans.d.ts +2 -0
- package/dist/components/Icon/IconsShowcase/helpers.d.ts +2 -0
- package/dist/components/Icon/IconsShowcase/types.d.ts +9 -0
- package/dist/components/Picker/helpers.d.ts +1 -0
- package/dist/components/Picker/hooks/useFloatingPicker.d.ts +33 -0
- package/dist/components/Picker/hooks/usePickerItems.d.ts +20 -0
- package/dist/components/Picker/types.d.ts +17 -1
- package/dist/dsrc.cjs.js +1 -1
- package/dist/dsrc.es.js +1827 -1719
- package/dist/{themes → foundations}/design-token.d.ts +2 -0
- package/dist/foundations/radius-token.d.ts +6 -0
- package/dist/foundations/shadow-token.d.ts +1 -0
- package/dist/foundations/spacing-token.d.ts +4 -0
- package/dist/foundations/transition-token.d.ts +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/preview-stats.json +598 -568
- package/dist/stories/components/Table/Table.d.ts +13 -0
- package/dist/stories/foundations/Color/ColorTable.d.ts +7 -0
- package/dist/stories/foundations/Color/constants.d.ts +2 -0
- package/dist/stories/foundations/Color/data.d.ts +7 -0
- package/dist/stories/foundations/Color/helpers.d.ts +2 -0
- package/dist/stories/foundations/Color/types.d.ts +43 -0
- package/dist/stories/foundations/Radius/RadiusTable.d.ts +7 -0
- package/dist/stories/foundations/Radius/constants.d.ts +2 -0
- package/dist/stories/foundations/Radius/types.d.ts +8 -0
- package/dist/stories/foundations/Shadow/ShadowTable.d.ts +7 -0
- package/dist/stories/foundations/Shadow/constants.d.ts +2 -0
- package/dist/stories/foundations/Shadow/types.d.ts +6 -0
- package/dist/stories/foundations/Spacing/SpacingTable.d.ts +7 -0
- package/dist/stories/foundations/Spacing/constants.d.ts +2 -0
- package/dist/stories/foundations/Spacing/types.d.ts +7 -0
- package/dist/stories/foundations/Transition/TransitionTable.d.ts +7 -0
- package/dist/stories/foundations/Transition/components/TransitionDelayExample.d.ts +2 -0
- package/dist/stories/foundations/Transition/components/TransitionDurationExample.d.ts +2 -0
- package/dist/stories/foundations/Transition/components/TransitionTimingExample.d.ts +2 -0
- package/dist/stories/foundations/Transition/constants.d.ts +4 -0
- package/dist/stories/foundations/Transition/types.d.ts +16 -0
- package/dist/stories/helpers.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/docs/components/ColorTokens.d.ts +0 -2
- package/dist/docs/components/Icons/TablerIconsShowcase.d.ts +0 -6
- package/dist/docs/components/Radius/Radius.d.ts +0 -2
- package/dist/docs/components/Radius/RadiusExamples.d.ts +0 -2
- package/dist/docs/components/Shadow/Shadow.d.ts +0 -2
- package/dist/docs/components/Shadow/ShadowExamples.d.ts +0 -2
- package/dist/docs/components/Spacing/Spacing.d.ts +0 -2
- package/dist/docs/components/Spacing/SpacingExamples.d.ts +0 -2
- package/dist/docs/components/Transition/TransitionTable.d.ts +0 -10
- package/dist/docs/components/Transition/transitionDelay.d.ts +0 -6
- package/dist/docs/components/Transition/transitionDuration.d.ts +0 -5
- package/dist/docs/components/Transition/transitionTiming.d.ts +0 -5
- /package/dist/{docs → stories}/components/BlockColumns/BlockColumns.d.ts +0 -0
- /package/dist/{docs → stories}/components/StoryDescriptor.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livechat/design-system-react-components",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@emotion/css": "^11.9.0",
|
|
75
75
|
"@floating-ui/react": "^0.26.4",
|
|
76
76
|
"@livechat/data-utils": "^0.2.16",
|
|
77
|
-
"@livechat/design-system-icons": "^1.16.
|
|
77
|
+
"@livechat/design-system-icons": "^1.16.6",
|
|
78
78
|
"clsx": "^1.1.1",
|
|
79
79
|
"date-fns": "^2.28.0",
|
|
80
80
|
"lodash.debounce": "^4.0.8",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"react-transition-group": "^4.4.2",
|
|
85
85
|
"react-virtuoso": "^4.6.2"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "c320a4f0da4ff4d54b043f826732f092f687840c"
|
|
88
88
|
}
|
|
File without changes
|
|
File without changes
|