@blueshift-gg/ui-components 0.1.6 → 0.1.7
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.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +15 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -13,10 +13,12 @@ export { HeadingReveal, HeadingRevealProps } from './HeadingReveal.mjs';
|
|
|
13
13
|
export { I as Icon, d as IconCategory, b as IconComponents, c as IconName, a as IconProps, i as iconMetadata } from './Icon-CTxwWbdC.mjs';
|
|
14
14
|
export { Input, InputProps } from './Input.mjs';
|
|
15
15
|
export { Logo, LogoProps } from './Logo.mjs';
|
|
16
|
+
export { Pagination, PaginationProps } from './Pagination.mjs';
|
|
17
|
+
export { Slider, SliderProps } from './Slider.mjs';
|
|
16
18
|
export { Tabs, TabsProps } from './Tabs.mjs';
|
|
17
19
|
export { Toast, ToastProps } from './Toast.mjs';
|
|
20
|
+
export { Tooltip, TooltipProps } from './Tooltip.mjs';
|
|
18
21
|
export { BRAND_COLOURS, BrandColour, courseDifficulty, difficultyColors } from './utils/colours.mjs';
|
|
19
22
|
export { Easing, anticipate, breeze, crisp, easings, glide, nova, silk, swift } from './utils/easings.mjs';
|
|
20
23
|
import 'react/jsx-runtime';
|
|
21
24
|
import 'motion/react';
|
|
22
|
-
import './Tooltip.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -13,10 +13,12 @@ export { HeadingReveal, HeadingRevealProps } from './HeadingReveal.js';
|
|
|
13
13
|
export { I as Icon, d as IconCategory, b as IconComponents, c as IconName, a as IconProps, i as iconMetadata } from './Icon-llWd6yMa.js';
|
|
14
14
|
export { Input, InputProps } from './Input.js';
|
|
15
15
|
export { Logo, LogoProps } from './Logo.js';
|
|
16
|
+
export { Pagination, PaginationProps } from './Pagination.js';
|
|
17
|
+
export { Slider, SliderProps } from './Slider.js';
|
|
16
18
|
export { Tabs, TabsProps } from './Tabs.js';
|
|
17
19
|
export { Toast, ToastProps } from './Toast.js';
|
|
20
|
+
export { Tooltip, TooltipProps } from './Tooltip.js';
|
|
18
21
|
export { BRAND_COLOURS, BrandColour, courseDifficulty, difficultyColors } from './utils/colours.js';
|
|
19
22
|
export { Easing, anticipate, breeze, crisp, easings, glide, nova, silk, swift } from './utils/easings.js';
|
|
20
23
|
import 'react/jsx-runtime';
|
|
21
24
|
import 'motion/react';
|
|
22
|
-
import './Tooltip.js';
|
package/dist/index.js
CHANGED
|
@@ -15,8 +15,11 @@ var HeadingReveal = require('./HeadingReveal');
|
|
|
15
15
|
var Icon = require('./Icon');
|
|
16
16
|
var Input = require('./Input');
|
|
17
17
|
var Logo = require('./Logo');
|
|
18
|
+
var Pagination = require('./Pagination');
|
|
19
|
+
var Slider = require('./Slider');
|
|
18
20
|
var Tabs = require('./Tabs');
|
|
19
21
|
var Toast = require('./Toast');
|
|
22
|
+
var Tooltip = require('./Tooltip');
|
|
20
23
|
var icons = require('./icons');
|
|
21
24
|
var colours = require('./utils/colours');
|
|
22
25
|
var easings = require('./utils/easings');
|
|
@@ -99,6 +102,14 @@ Object.defineProperty(exports, "Logo", {
|
|
|
99
102
|
enumerable: true,
|
|
100
103
|
get: function () { return Logo.Logo; }
|
|
101
104
|
});
|
|
105
|
+
Object.defineProperty(exports, "Pagination", {
|
|
106
|
+
enumerable: true,
|
|
107
|
+
get: function () { return Pagination.Pagination; }
|
|
108
|
+
});
|
|
109
|
+
Object.defineProperty(exports, "Slider", {
|
|
110
|
+
enumerable: true,
|
|
111
|
+
get: function () { return Slider.Slider; }
|
|
112
|
+
});
|
|
102
113
|
Object.defineProperty(exports, "Tabs", {
|
|
103
114
|
enumerable: true,
|
|
104
115
|
get: function () { return Tabs.Tabs; }
|
|
@@ -107,6 +118,10 @@ Object.defineProperty(exports, "Toast", {
|
|
|
107
118
|
enumerable: true,
|
|
108
119
|
get: function () { return Toast.Toast; }
|
|
109
120
|
});
|
|
121
|
+
Object.defineProperty(exports, "Tooltip", {
|
|
122
|
+
enumerable: true,
|
|
123
|
+
get: function () { return Tooltip.Tooltip; }
|
|
124
|
+
});
|
|
110
125
|
Object.keys(icons).forEach(function (k) {
|
|
111
126
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
112
127
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -13,8 +13,11 @@ export { HeadingReveal } from './HeadingReveal';
|
|
|
13
13
|
export { Icon } from './Icon';
|
|
14
14
|
export { Input } from './Input';
|
|
15
15
|
export { Logo } from './Logo';
|
|
16
|
+
export { Pagination } from './Pagination';
|
|
17
|
+
export { Slider } from './Slider';
|
|
16
18
|
export { Tabs } from './Tabs';
|
|
17
19
|
export { Toast } from './Toast';
|
|
20
|
+
export { Tooltip } from './Tooltip';
|
|
18
21
|
export * from './icons';
|
|
19
22
|
export * from './utils/colours';
|
|
20
23
|
export * from './utils/easings';
|