pds-dev-kit-web 2.2.246 → 2.2.249
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/src/common/types/systemUI.d.ts +1 -0
- package/dist/src/desktop/components/Calendar/index.d.ts +0 -4
- package/dist/src/desktop/components/Calendar/index.js +0 -4
- package/dist/src/hybrid/components/ContextBubble/ContextBubble.d.ts +37 -0
- package/dist/src/hybrid/components/ContextBubble/ContextBubble.js +145 -0
- package/dist/src/hybrid/components/ContextBubble/index.d.ts +1 -0
- package/dist/src/hybrid/components/ContextBubble/index.js +8 -0
- package/dist/src/hybrid/components/index.d.ts +2 -1
- package/dist/src/hybrid/components/index.js +3 -1
- package/dist/src/hybrid/index.d.ts +1 -1
- package/dist/src/hybrid/index.js +2 -1
- package/dist/src/sub/DynamicLayout/components/desktop/Item/Item.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/components/mobile/Item/Item.d.ts +1 -1
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type SystemUIPositionType = 'top' | 'bottom' | 'start_top' | 'start_bottom' | 'end_top' | 'end_bottom' | 'left_top' | 'left_bottom' | 'center_top' | 'center_bottom' | 'right_top' | 'right_bottom';
|
|
2
2
|
export type IconCaseTooltipPositionType = Exclude<SystemUIPositionType, 'start_top' | 'start_bottom' | 'end_top' | 'end_bottom'>;
|
|
3
3
|
export type TextCaseTooltipPositionType = Exclude<IconCaseTooltipPositionType, 'center_top' | 'center_bottom'>;
|
|
4
|
+
export type BubblePositionType = 'start_top' | 'start_bottom' | 'center_top' | 'center_bottom' | 'end_top' | 'end_bottom';
|
|
4
5
|
export type SystemUIPositionOffsetType = {
|
|
5
6
|
top: number;
|
|
6
7
|
right: number;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
export * from './types/types';
|
|
2
2
|
export * from './context/CalendarContext';
|
|
3
3
|
export { default as Calendar } from './Calendar';
|
|
4
|
-
export * from './views/DailyView';
|
|
5
|
-
export * from './views/WeeklyView';
|
|
6
|
-
export * from './views/MonthlyView';
|
|
7
|
-
export * from './views/YearlyView';
|
|
8
4
|
export { default as CurrentTimeIndicator } from './components/CurrentTimeIndicator';
|
|
9
5
|
export * from './components/Schedule';
|
|
@@ -22,10 +22,6 @@ __exportStar(require("./types/types"), exports);
|
|
|
22
22
|
__exportStar(require("./context/CalendarContext"), exports);
|
|
23
23
|
var Calendar_1 = require("./Calendar"); // 필요 시
|
|
24
24
|
Object.defineProperty(exports, "Calendar", { enumerable: true, get: function () { return __importDefault(Calendar_1).default; } });
|
|
25
|
-
__exportStar(require("./views/DailyView"), exports);
|
|
26
|
-
__exportStar(require("./views/WeeklyView"), exports);
|
|
27
|
-
__exportStar(require("./views/MonthlyView"), exports);
|
|
28
|
-
__exportStar(require("./views/YearlyView"), exports);
|
|
29
25
|
var CurrentTimeIndicator_1 = require("./components/CurrentTimeIndicator");
|
|
30
26
|
Object.defineProperty(exports, "CurrentTimeIndicator", { enumerable: true, get: function () { return __importDefault(CurrentTimeIndicator_1).default; } });
|
|
31
27
|
__exportStar(require("./components/Schedule"), exports);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { UiColors } from '../../../common/types';
|
|
2
|
+
import type { BubblePositionType } from '../../../common/types/systemUI';
|
|
3
|
+
import type { ReactNode } from 'react';
|
|
4
|
+
declare const paddingSpacing: {
|
|
5
|
+
readonly spacing_a: "spacingA";
|
|
6
|
+
readonly spacing_b: "spacingB";
|
|
7
|
+
readonly spacing_c: "spacingC";
|
|
8
|
+
readonly spacing_d: "spacingD";
|
|
9
|
+
readonly spacing_e: "spacingE";
|
|
10
|
+
readonly spacing_f: "spacingF";
|
|
11
|
+
readonly spacing_g: "spacingG";
|
|
12
|
+
readonly spacing_h: "spacingH";
|
|
13
|
+
readonly spacing_i: "spacingI";
|
|
14
|
+
readonly spacing_j: "spacingJ";
|
|
15
|
+
readonly spacing_k: "spacingK";
|
|
16
|
+
readonly spacing_l: "spacingL";
|
|
17
|
+
readonly spacing_m: "spacingM";
|
|
18
|
+
readonly spacing_n: "spacingN";
|
|
19
|
+
};
|
|
20
|
+
type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
21
|
+
type ContextBubbleSheetProps = {
|
|
22
|
+
bubbleAlign: 'right' | 'middle' | 'left';
|
|
23
|
+
backgroundColorKey?: UiColors;
|
|
24
|
+
pointingPosition: BubblePositionType;
|
|
25
|
+
customPointingPosition?: number;
|
|
26
|
+
shapeType?: 'rectangle' | 'round';
|
|
27
|
+
radius?: '8' | '12' | '16';
|
|
28
|
+
borderMode?: 'none' | 'use';
|
|
29
|
+
borderColorKey?: UiColors;
|
|
30
|
+
paddingTop?: PaddingSpacingType;
|
|
31
|
+
paddingRight?: PaddingSpacingType;
|
|
32
|
+
paddingBottom?: PaddingSpacingType;
|
|
33
|
+
paddingLeft?: PaddingSpacingType;
|
|
34
|
+
children: ReactNode;
|
|
35
|
+
};
|
|
36
|
+
declare const ContextBubble: ({ bubbleAlign, backgroundColorKey, pointingPosition, customPointingPosition, shapeType, radius, borderMode, borderColorKey, paddingTop, paddingRight, paddingBottom, paddingLeft, children }: ContextBubbleSheetProps) => JSX.Element;
|
|
37
|
+
export default ContextBubble;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __assign = (this && this.__assign) || function () {
|
|
7
|
+
__assign = Object.assign || function(t) {
|
|
8
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
9
|
+
s = arguments[i];
|
|
10
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
11
|
+
t[p] = s[p];
|
|
12
|
+
}
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
return __assign.apply(this, arguments);
|
|
16
|
+
};
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
+
}
|
|
23
|
+
Object.defineProperty(o, k2, desc);
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
40
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var styled_components_1 = __importStar(require("styled-components"));
|
|
43
|
+
var paddingSpacing = {
|
|
44
|
+
spacing_a: 'spacingA',
|
|
45
|
+
spacing_b: 'spacingB',
|
|
46
|
+
spacing_c: 'spacingC',
|
|
47
|
+
spacing_d: 'spacingD',
|
|
48
|
+
spacing_e: 'spacingE',
|
|
49
|
+
spacing_f: 'spacingF',
|
|
50
|
+
spacing_g: 'spacingG',
|
|
51
|
+
spacing_h: 'spacingH',
|
|
52
|
+
spacing_i: 'spacingI',
|
|
53
|
+
spacing_j: 'spacingJ',
|
|
54
|
+
spacing_k: 'spacingK',
|
|
55
|
+
spacing_l: 'spacingL',
|
|
56
|
+
spacing_m: 'spacingM',
|
|
57
|
+
spacing_n: 'spacingN'
|
|
58
|
+
};
|
|
59
|
+
var ContextBubble = function (_a) {
|
|
60
|
+
var _b = _a.bubbleAlign, bubbleAlign = _b === void 0 ? 'left' : _b, _c = _a.backgroundColorKey, backgroundColorKey = _c === void 0 ? 'ui_temp_red' : _c, _d = _a.pointingPosition, pointingPosition = _d === void 0 ? 'start_bottom' : _d, customPointingPosition = _a.customPointingPosition, _e = _a.shapeType, shapeType = _e === void 0 ? 'round' : _e, _f = _a.radius, radius = _f === void 0 ? '8' : _f, _g = _a.borderMode, borderMode = _g === void 0 ? 'none' : _g, _h = _a.borderColorKey, borderColorKey = _h === void 0 ? 'ui_cpnt_contextmenu_border' : _h, _j = _a.paddingTop, paddingTop = _j === void 0 ? 'spacing_a' : _j, _k = _a.paddingRight, paddingRight = _k === void 0 ? 'spacing_c' : _k, _l = _a.paddingBottom, paddingBottom = _l === void 0 ? 'spacing_a' : _l, _m = _a.paddingLeft, paddingLeft = _m === void 0 ? 'spacing_c' : _m, children = _a.children;
|
|
61
|
+
var theme = (0, styled_components_1.useTheme)();
|
|
62
|
+
return ((0, jsx_runtime_1.jsx)(S_ContextBubbleArea, __assign({ "$bubbleAlign": bubbleAlign, "$position": pointingPosition }, { children: (0, jsx_runtime_1.jsxs)(S_ContextBubbleWrapper, __assign({ "$bgColor": backgroundColorKey, "$position": pointingPosition, "$customPointingPosition": customPointingPosition, useBorder: borderMode, borderColor: borderColorKey, shapeType: shapeType, radius: radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft }, { children: [children, (0, jsx_runtime_1.jsxs)(Arrow, __assign({ "$position": pointingPosition, "$customPointingPosition": customPointingPosition, viewBox: "0 0 18 10", xmlns: "http://www.w3.org/2000/svg" }, { children: [(0, jsx_runtime_1.jsx)("polygon", { points: "9,10 3,0 15,0", fill: theme[backgroundColorKey] }), (0, jsx_runtime_1.jsx)("path", { d: "M3,1 L9,10", stroke: borderMode === 'use' ? theme[borderColorKey] : 'none', strokeWidth: "1", strokeLinecap: "butt" }), (0, jsx_runtime_1.jsx)("path", { d: "M15,1 L9,10", stroke: borderMode === 'use' ? theme[borderColorKey] : 'none', strokeWidth: "1", strokeLinecap: "butt" }), borderMode === 'use' && (0, jsx_runtime_1.jsx)("path", { d: "M0,0 L15,0", strokeWidth: "1" })] }))] })) })));
|
|
63
|
+
};
|
|
64
|
+
exports.default = ContextBubble;
|
|
65
|
+
var S_ContextBubbleArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n position: relative;\n ", "\n ", "\n"], ["\n display: flex;\n flex-direction: column;\n position: relative;\n ", "\n ", "\n"])), function (_a) {
|
|
66
|
+
var $position = _a.$position, theme = _a.theme;
|
|
67
|
+
var isTop = $position.includes('top');
|
|
68
|
+
return !isTop
|
|
69
|
+
? "margin-bottom: ".concat(theme.spacing.spacingB, ";")
|
|
70
|
+
: "margin-top: ".concat(theme.spacing.spacingB, ";");
|
|
71
|
+
}, function (_a) {
|
|
72
|
+
var $bubbleAlign = _a.$bubbleAlign;
|
|
73
|
+
if ($bubbleAlign === 'left') {
|
|
74
|
+
return "align-items: flex-start;";
|
|
75
|
+
}
|
|
76
|
+
if ($bubbleAlign === 'middle') {
|
|
77
|
+
return "align-items: center;";
|
|
78
|
+
}
|
|
79
|
+
if ($bubbleAlign === 'right') {
|
|
80
|
+
return "align-items: flex-end;";
|
|
81
|
+
}
|
|
82
|
+
return "align-items: flex-start;";
|
|
83
|
+
});
|
|
84
|
+
var paddingTopStyle = (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n padding-top: ", ";\n"], ["\n padding-top: ", ";\n"])), function (_a) {
|
|
85
|
+
var theme = _a.theme, paddingTop = _a.paddingTop;
|
|
86
|
+
return paddingTop && (paddingTop === 'none' ? 0 : theme.spacing[paddingSpacing[paddingTop]]);
|
|
87
|
+
});
|
|
88
|
+
var paddingRightStyle = (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n padding-right: ", ";\n"], ["\n padding-right: ", ";\n"])), function (_a) {
|
|
89
|
+
var theme = _a.theme, paddingRight = _a.paddingRight;
|
|
90
|
+
return paddingRight && (paddingRight === 'none' ? 0 : theme.spacing[paddingSpacing[paddingRight]]);
|
|
91
|
+
});
|
|
92
|
+
var paddingBottomStyle = (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n padding-bottom: ", ";\n"], ["\n padding-bottom: ", ";\n"])), function (_a) {
|
|
93
|
+
var theme = _a.theme, paddingBottom = _a.paddingBottom;
|
|
94
|
+
return paddingBottom && (paddingBottom === 'none' ? 0 : theme.spacing[paddingSpacing[paddingBottom]]);
|
|
95
|
+
});
|
|
96
|
+
var paddingLeftStyle = (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n padding-left: ", ";\n"], ["\n padding-left: ", ";\n"])), function (_a) {
|
|
97
|
+
var theme = _a.theme, paddingLeft = _a.paddingLeft;
|
|
98
|
+
return paddingLeft && (paddingLeft === 'none' ? 0 : theme.spacing[paddingSpacing[paddingLeft]]);
|
|
99
|
+
});
|
|
100
|
+
var S_ContextBubbleWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n border: ", ";\n border-radius: ", ";\n\n display: flex;\n ", ";\n ", ";\n ", ";\n ", ";\n\n position: relative;\n width: 'fit-content';\n"], ["\n align-items: center;\n background-color: ", ";\n border: ", ";\n border-radius: ", ";\n\n display: flex;\n ", ";\n ", ";\n ", ";\n ", ";\n\n position: relative;\n width: 'fit-content';\n"])), function (_a) {
|
|
101
|
+
var $bgColor = _a.$bgColor, theme = _a.theme;
|
|
102
|
+
return theme[$bgColor];
|
|
103
|
+
}, function (_a) {
|
|
104
|
+
var useBorder = _a.useBorder, _b = _a.borderColor, borderColor = _b === void 0 ? 'ui_cpnt_contextmenu_border' : _b, theme = _a.theme;
|
|
105
|
+
return useBorder === 'use' && "1px solid ".concat(theme[borderColor]);
|
|
106
|
+
}, function (_a) {
|
|
107
|
+
var shapeType = _a.shapeType, _b = _a.radius, radius = _b === void 0 ? 8 : _b;
|
|
108
|
+
return shapeType === 'round' && "".concat(radius, "px");
|
|
109
|
+
}, function (_a) {
|
|
110
|
+
var paddingTop = _a.paddingTop;
|
|
111
|
+
return paddingTop !== 'none' && paddingTopStyle;
|
|
112
|
+
}, function (_a) {
|
|
113
|
+
var paddingRight = _a.paddingRight;
|
|
114
|
+
return paddingRight !== 'none' && paddingRightStyle;
|
|
115
|
+
}, function (_a) {
|
|
116
|
+
var paddingBottom = _a.paddingBottom;
|
|
117
|
+
return paddingBottom !== 'none' && paddingBottomStyle;
|
|
118
|
+
}, function (_a) {
|
|
119
|
+
var paddingLeft = _a.paddingLeft;
|
|
120
|
+
return paddingLeft !== 'none' && paddingLeftStyle;
|
|
121
|
+
});
|
|
122
|
+
var Arrow = styled_components_1.default.svg(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n height: 12.6px;\n position: absolute;\n width: 15px;\n\n ", "\n\n ", "\n"], ["\n height: 12.6px;\n position: absolute;\n width: 15px;\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
123
|
+
var $position = _a.$position;
|
|
124
|
+
var isTop = $position.includes('top');
|
|
125
|
+
if (isTop) {
|
|
126
|
+
return (0, styled_components_1.css)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n top: -10px;\n transform: translateX(-50%) rotate(180deg);\n "], ["\n top: -10px;\n transform: translateX(-50%) rotate(180deg);\n "])));
|
|
127
|
+
}
|
|
128
|
+
return (0, styled_components_1.css)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n bottom: -10px;\n transform: translateX(-50%);\n "], ["\n bottom: -10px;\n transform: translateX(-50%);\n "])));
|
|
129
|
+
}, function (_a) {
|
|
130
|
+
var $position = _a.$position, $customPointingPosition = _a.$customPointingPosition;
|
|
131
|
+
if ($customPointingPosition && $position.includes('start')) {
|
|
132
|
+
return "left: ".concat($customPointingPosition, "px;");
|
|
133
|
+
}
|
|
134
|
+
if ($customPointingPosition && $position.includes('end')) {
|
|
135
|
+
return "right: ".concat($customPointingPosition, "px;");
|
|
136
|
+
}
|
|
137
|
+
if ($position.includes('center')) {
|
|
138
|
+
return "left: 50%;";
|
|
139
|
+
}
|
|
140
|
+
if ($position.includes('end')) {
|
|
141
|
+
return "right: 12px;";
|
|
142
|
+
}
|
|
143
|
+
return "left: 19.5px;";
|
|
144
|
+
});
|
|
145
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ContextBubble } from './ContextBubble';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ContextBubble = void 0;
|
|
7
|
+
var ContextBubble_1 = require("./ContextBubble");
|
|
8
|
+
Object.defineProperty(exports, "ContextBubble", { enumerable: true, get: function () { return __importDefault(ContextBubble_1).default; } });
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ContextBubble } from './ContextBubble';
|
|
1
2
|
import { Divider } from './Divider';
|
|
2
3
|
import { Icon } from './Icon';
|
|
3
4
|
import { ImageView } from './ImageView';
|
|
@@ -5,4 +6,4 @@ import { LinearProgress } from './LinearProgress';
|
|
|
5
6
|
import { LottieIcon } from './LottieIcon';
|
|
6
7
|
import { Spacing } from './Spacing';
|
|
7
8
|
import { Switch } from './Switch';
|
|
8
|
-
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch };
|
|
9
|
+
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch, ContextBubble };
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
|
|
3
|
+
exports.ContextBubble = exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
|
|
4
|
+
var ContextBubble_1 = require("./ContextBubble");
|
|
5
|
+
Object.defineProperty(exports, "ContextBubble", { enumerable: true, get: function () { return ContextBubble_1.ContextBubble; } });
|
|
4
6
|
var Divider_1 = require("./Divider");
|
|
5
7
|
Object.defineProperty(exports, "Divider", { enumerable: true, get: function () { return Divider_1.Divider; } });
|
|
6
8
|
var Icon_1 = require("./Icon");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch } from './components';
|
|
1
|
+
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch, ContextBubble } from './components';
|
package/dist/src/hybrid/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
|
|
3
|
+
exports.ContextBubble = exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
|
|
4
4
|
// component
|
|
5
5
|
var components_1 = require("./components");
|
|
6
6
|
Object.defineProperty(exports, "Divider", { enumerable: true, get: function () { return components_1.Divider; } });
|
|
@@ -10,3 +10,4 @@ Object.defineProperty(exports, "LinearProgress", { enumerable: true, get: functi
|
|
|
10
10
|
Object.defineProperty(exports, "LottieIcon", { enumerable: true, get: function () { return components_1.LottieIcon; } });
|
|
11
11
|
Object.defineProperty(exports, "Spacing", { enumerable: true, get: function () { return components_1.Spacing; } });
|
|
12
12
|
Object.defineProperty(exports, "Switch", { enumerable: true, get: function () { return components_1.Switch; } });
|
|
13
|
+
Object.defineProperty(exports, "ContextBubble", { enumerable: true, get: function () { return components_1.ContextBubble; } });
|
|
@@ -16,7 +16,7 @@ declare namespace Item {
|
|
|
16
16
|
data?: string | undefined;
|
|
17
17
|
styleTheme?: "displayBold" | "headingBold" | "leadParaBold" | "leadParaRegular" | "subTitleBold" | "subTitleRegular" | "body1Bold" | "body1Regular" | "body2Bold" | "body2Regular" | "caption1Bold" | "caption1Regular" | "caption2Bold" | "caption2Regular" | "form1Regular" | "form2Regular" | "blog1Regular" | undefined;
|
|
18
18
|
color?: string | undefined;
|
|
19
|
-
textAlign?: "left" | "
|
|
19
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
20
20
|
colorTheme?: "sysTextPrimary" | "sysTextSecondary" | "sysTextTertiary" | "sysTextWhite" | "sysTextError" | "sysTextWarning" | "sysTextBrandPrimary" | "sysTextBrandSeconVariant" | "usrTextBrandPrimary" | "usrTextBrandSeconVariant" | "usrTextBrandOnPrimary" | undefined;
|
|
21
21
|
}) => JSX.Element;
|
|
22
22
|
}
|
|
@@ -15,7 +15,7 @@ declare namespace Item {
|
|
|
15
15
|
data?: string | undefined;
|
|
16
16
|
styleTheme?: "displayBold" | "headingBold" | "leadParaBold" | "leadParaRegular" | "subTitleBold" | "subTitleRegular" | "body1Bold" | "body1Regular" | "body2Bold" | "body2Regular" | "caption1Bold" | "caption1Regular" | "caption2Bold" | "caption2Regular" | "form1Regular" | "form2Regular" | "blog1Regular" | undefined;
|
|
17
17
|
color?: string | undefined;
|
|
18
|
-
textAlign?: "left" | "
|
|
18
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
19
19
|
colorTheme?: "sysTextPrimary" | "sysTextSecondary" | "sysTextTertiary" | "sysTextWhite" | "sysTextError" | "sysTextWarning" | "sysTextBrandPrimary" | "sysTextBrandSeconVariant" | "usrTextBrandPrimary" | "usrTextBrandSeconVariant" | "usrTextBrandOnPrimary" | undefined;
|
|
20
20
|
}) => JSX.Element;
|
|
21
21
|
var Button: ({ buttonType, backgroundColor, textColor, text, linkType, src, linkMethod, state, borderColor }: IItemButton) => JSX.Element;
|
package/package.json
CHANGED