pixelize-design-library 2.2.24 → 2.2.25

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.
@@ -9,7 +9,7 @@ export type ButtonGroupIconProps = {
9
9
  onButtongroupClick?: () => void;
10
10
  size?: "lg" | "md" | "sm" | "xs";
11
11
  variant?: "solid" | "outline" | "ghost" | "link" | "unstyled";
12
- color?: "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "whiteAlpha" | "blackAlpha";
12
+ color?: "primary" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "whiteAlpha" | "blackAlpha";
13
13
  buttonGroupStyle?: React.CSSProperties;
14
14
  buttonGroupLeftIconStyle?: React.CSSProperties;
15
15
  buttonGroupRightIconStyle?: React.CSSProperties;
@@ -12,7 +12,7 @@ var TextLabel = function (_a) {
12
12
  var label = _a.label, id = _a.id, _b = _a.isRequired, isRequired = _b === void 0 ? false : _b, _c = _a.isInformation, isInformation = _c === void 0 ? false : _c, _d = _a.informationMessage, informationMessage = _d === void 0 ? "" : _d;
13
13
  var theme = (0, useCustomTheme_1.useCustomTheme)();
14
14
  return (react_1.default.createElement(react_2.Box, null,
15
- react_1.default.createElement(react_2.FormLabel, { htmlFor: id !== null && id !== void 0 ? id : label, color: theme.colors.gray[600], fontWeight: 400, fontSize: "0.875rem" },
15
+ react_1.default.createElement(react_2.FormLabel, { htmlFor: id !== null && id !== void 0 ? id : label, color: theme.colors.gray[600], fontWeight: 400, fontSize: "0.875rem", mb: "0" },
16
16
  react_1.default.createElement(react_2.Box, { as: "span", display: "inline-flex", alignItems: "center", gap: "0.35rem" },
17
17
  label,
18
18
  isRequired && (react_1.default.createElement("span", { style: { color: theme.colors.semantic.error[500] } }, "*")),
@@ -56,9 +56,6 @@ function CustomDatePicker(props) {
56
56
  var showDate = resolvedPickerType === "date" || resolvedPickerType === "datetime";
57
57
  var showTime = resolvedPickerType === "time" || resolvedPickerType === "datetime";
58
58
  var selectedDate = !isRange ? props.selectedDate : null;
59
- // const [currentMonth, setCurrentMonth] = useState<Date>(
60
- // isRange ? new Date() : selectedDate ?? new Date()
61
- // );
62
59
  var _g = (0, react_1.useState)(isRange ? new Date() :
63
60
  selectedDate
64
61
  ? (disableToday && (0, date_fns_1.isSameDay)(selectedDate, today) ? tomorrow : selectedDate)
@@ -67,46 +64,123 @@ function CustomDatePicker(props) {
67
64
  var _j = (0, react_1.useState)(null), rangeEnd = _j[0], setRangeEnd = _j[1];
68
65
  var _k = (0, react_1.useState)(true), selectingStart = _k[0], setSelectingStart = _k[1];
69
66
  var _l = (0, react_1.useState)(selectedDate !== null && selectedDate !== void 0 ? selectedDate : null), tempDate = _l[0], setTempDate = _l[1];
70
- // const [tempDate, setTempDate] = useState<Date | null>(
71
- // selectedDate
72
- // ? (disableToday && isSameDay(selectedDate, today) ? tomorrow : selectedDate)
73
- // : (disableToday ? tomorrow : null)
74
- // );
75
67
  var _m = (0, react_1.useState)(rangeStart), tempRangeStart = _m[0], setTempRangeStart = _m[1];
76
68
  var _o = (0, react_1.useState)(rangeEnd), tempRangeEnd = _o[0], setTempRangeEnd = _o[1];
69
+ var _p = (0, react_1.useState)(""), inputValue = _p[0], setInputValue = _p[1];
70
+ var _q = (0, react_1.useState)(false), isTyping = _q[0], setIsTyping = _q[1];
77
71
  var popoverRef = (0, react_1.useRef)(null);
78
- var handleOpen = function () {
79
- if (!isRange && !selectedDate) {
80
- // setTempDate(new Date());
72
+ var _r = (0, react_1.useState)(false), isManualOpen = _r[0], setIsManualOpen = _r[1];
73
+ // Initialize input value based on selected date
74
+ (0, react_1.useEffect)(function () {
75
+ if (!isRange) {
76
+ if (selectedDate instanceof Date) {
77
+ setTempDate(new Date(selectedDate));
78
+ setInputValue((0, date_fns_1.format)(selectedDate, dateFormat));
79
+ }
80
+ else {
81
+ setTempDate(null);
82
+ setInputValue("");
83
+ }
84
+ }
85
+ }, [selectedDate, isRange, disableToday, dateFormat]);
86
+ var handleInputChange = function (e) {
87
+ var value = e.target.value;
88
+ setInputValue(value);
89
+ setIsTyping(true);
90
+ };
91
+ var handleInputKeyDown = function (e) {
92
+ if (e.key === 'Enter') {
93
+ e.currentTarget.blur();
94
+ }
95
+ };
96
+ var handleInputBlur = function () {
97
+ setIsTyping(false);
98
+ if (!inputValue.trim()) {
99
+ setTempDate(null);
100
+ props.onChange(null);
101
+ return;
102
+ }
103
+ try {
104
+ var parsed = (0, date_fns_1.parse)(inputValue, dateFormat, new Date());
105
+ if ((0, date_fns_1.isValid)(parsed)) {
106
+ var isValidDate = true;
107
+ if (minDate && (0, date_fns_1.isBefore)(parsed, minDate))
108
+ isValidDate = false;
109
+ if (maxDate && (0, date_fns_1.isAfter)(parsed, maxDate))
110
+ isValidDate = false;
111
+ if (disablePastDates && (0, date_fns_1.isBefore)(parsed, today) && !(0, date_fns_1.isSameDay)(parsed, today))
112
+ isValidDate = false;
113
+ if (disableFutureDates && (0, date_fns_1.isAfter)(parsed, today) && !(0, date_fns_1.isSameDay)(parsed, today))
114
+ isValidDate = false;
115
+ if (disableToday && (0, date_fns_1.isSameDay)(parsed, today))
116
+ isValidDate = false;
117
+ if (isValidDate) {
118
+ var finalDate = parsed;
119
+ if (showTime && tempDate) {
120
+ finalDate = new Date(parsed.getFullYear(), parsed.getMonth(), parsed.getDate(), tempDate.getHours(), tempDate.getMinutes(), tempDate.getSeconds());
121
+ }
122
+ else if (showTime && !tempDate) {
123
+ var now = new Date();
124
+ finalDate = new Date(parsed.getFullYear(), parsed.getMonth(), parsed.getDate(), now.getHours(), now.getMinutes(), now.getSeconds());
125
+ }
126
+ setTempDate(finalDate);
127
+ setCurrentMonth(finalDate);
128
+ setInputValue((0, date_fns_1.format)(finalDate, dateFormat));
129
+ props.onChange(finalDate);
130
+ return;
131
+ }
132
+ }
133
+ }
134
+ catch (error) {
135
+ // Parsing failed
136
+ }
137
+ if (tempDate) {
138
+ setInputValue((0, date_fns_1.format)(tempDate, dateFormat));
139
+ }
140
+ else {
141
+ setInputValue("");
142
+ setTempDate(null);
143
+ props.onChange(null);
144
+ }
145
+ };
146
+ var handleInputFocus = function (e) {
147
+ e.stopPropagation();
148
+ setIsTyping(true);
149
+ // Only open on focus if it's not already open and not a manual click
150
+ if (!isOpen && !isManualOpen) {
151
+ onOpen();
152
+ }
153
+ setIsManualOpen(false);
154
+ };
155
+ var handleTriggerClick = function (e) {
156
+ e.stopPropagation();
157
+ setIsManualOpen(true);
158
+ // Initialize tempDate if needed
159
+ if (!isRange && !tempDate) {
81
160
  setTempDate(disableToday ? tomorrow : new Date());
82
161
  }
83
- if (showTime) {
84
- // setTempDate(new Date()); // add new
85
- // setTempDate(disableToday ? tomorrow : new Date());
86
- // console.log(selectedDate,"selectedDateselectedDate")
87
- setTempDate(disableToday ? tomorrow : selectedDate ? selectedDate : new Date());
162
+ // Toggle popover
163
+ if (isOpen) {
164
+ onClose();
165
+ }
166
+ else {
167
+ onOpen();
88
168
  }
89
- onOpen();
90
169
  };
91
170
  (0, react_1.useEffect)(function () {
92
171
  if (!isRange) {
93
172
  if (selectedDate instanceof Date) {
94
173
  setTempDate(new Date(selectedDate));
95
- // const corrected = disableToday && isSameDay(selectedDate, today)
96
- // ? tomorrow
97
- // : selectedDate;
98
- // setTempDate(new Date(corrected));
174
+ setInputValue((0, date_fns_1.format)(selectedDate, dateFormat));
99
175
  }
100
176
  else {
101
177
  setTempDate(null);
102
- // setTempDate(disableToday ? tomorrow : null);
178
+ setInputValue("");
103
179
  }
104
180
  }
105
- }, [selectedDate, isRange, disableToday]);
181
+ }, [selectedDate, isRange, disableToday, dateFormat]);
106
182
  var handleDaySelect = function (day) {
107
- // const updated = new Date(day);
108
183
  var updated = new Date(day);
109
- // 👇 Redirect selection from today → tomorrow
110
184
  if (disableToday && (0, date_fns_1.isSameDay)(updated, today)) {
111
185
  updated = tomorrow;
112
186
  }
@@ -133,6 +207,7 @@ function CustomDatePicker(props) {
133
207
  ? new Date(updated.getFullYear(), updated.getMonth(), updated.getDate(), tempDate.getHours(), tempDate.getMinutes(), tempDate.getSeconds())
134
208
  : updated;
135
209
  setTempDate(updatedDate);
210
+ setInputValue((0, date_fns_1.format)(updatedDate, dateFormat));
136
211
  props.onChange(updatedDate);
137
212
  }
138
213
  };
@@ -185,19 +260,19 @@ function CustomDatePicker(props) {
185
260
  : tempRangeStart
186
261
  ? "".concat((0, date_fns_1.format)(tempRangeStart, dateFormat), " -")
187
262
  : ""
188
- : tempDate
189
- ? (0, date_fns_1.format)(tempDate, dateFormat)
190
- : "";
263
+ : isTyping
264
+ ? inputValue
265
+ : tempDate
266
+ ? (0, date_fns_1.format)(tempDate, dateFormat)
267
+ : "";
191
268
  (0, react_1.useEffect)(function () {
192
269
  var handleClickOutside = function (event) {
193
270
  var _a;
194
271
  if (popoverRef.current &&
195
272
  !popoverRef.current.contains(event.target) &&
196
273
  !((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.contains(event.target))) {
197
- if (tempDate) {
198
- props.onChange(tempDate); // add new
199
- }
200
274
  onClose();
275
+ setIsManualOpen(false);
201
276
  }
202
277
  };
203
278
  if (isOpen) {
@@ -209,13 +284,13 @@ function CustomDatePicker(props) {
209
284
  return function () {
210
285
  document.removeEventListener("mousedown", handleClickOutside);
211
286
  };
212
- }, [isOpen, onClose, props, tempDate]);
287
+ }, [isOpen, onClose]);
213
288
  return (react_1.default.createElement(react_2.Box, { width: width, position: "relative" },
214
289
  label && (react_1.default.createElement(FormLabel_1.TextLabel, { label: label, isRequired: isRequired, isInformation: isInformation, informationMessage: informationMessage })),
215
- react_1.default.createElement(react_2.Popover, { isLazy: true, isOpen: isOpen, onClose: onClose, placement: "bottom-start", initialFocusRef: inputRef, closeOnBlur: true },
290
+ react_1.default.createElement(react_2.Popover, { isLazy: true, isOpen: isOpen, onOpen: onOpen, onClose: onClose, placement: "bottom-start", initialFocusRef: inputRef, closeOnBlur: false },
216
291
  react_1.default.createElement(react_2.PopoverTrigger, null,
217
- react_1.default.createElement(react_2.Box, { onClick: handleOpen },
218
- react_1.default.createElement(TextInput_1.default, { id: id, name: name, ref: inputRef, placeholder: placeholderText, value: displayValue, isReadOnly: true, error: error, errorMessage: errorMessage, helperText: helperText, autoComplete: autoComplete, isDisabled: disabled, width: width }))),
292
+ react_1.default.createElement(react_2.Box, { onClick: handleTriggerClick },
293
+ react_1.default.createElement(TextInput_1.default, { id: id, name: name, ref: inputRef, placeholder: placeholderText, value: displayValue, onChange: !isRange ? handleInputChange : undefined, onKeyDown: !isRange ? handleInputKeyDown : undefined, onFocus: !isRange ? handleInputFocus : undefined, onBlur: !isRange ? handleInputBlur : undefined, isReadOnly: isRange, error: error, errorMessage: errorMessage, helperText: helperText, autoComplete: autoComplete, isDisabled: disabled, width: width }))),
219
294
  react_1.default.createElement(react_2.PopoverContent, { width: "auto", p: 2, ref: popoverRef },
220
295
  react_1.default.createElement(react_2.PopoverBody, null,
221
296
  showDate && (react_1.default.createElement(react_1.default.Fragment, null,
@@ -238,34 +313,21 @@ function CustomDatePicker(props) {
238
313
  react_1.default.createElement(lucide_react_1.ChevronRightIcon, null))),
239
314
  react_1.default.createElement(react_2.Grid, { templateColumns: "repeat(7, 1fr)", gap: 1, fontWeight: "bold", mb: 1 }, ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"].map(function (day) { return (react_1.default.createElement(react_2.Box, { textAlign: "center", key: day }, day)); })),
240
315
  renderDays())),
241
- !isRange && showTime && (react_1.default.createElement(TimePicker_1.default
242
- // date={tempDate ?? new Date()}
243
- , {
244
- // date={tempDate ?? new Date()}
245
- date: tempDate !== null && tempDate !== void 0 ? tempDate : (disableToday ? tomorrow : today), dateFormat: dateFormat,
246
- // onChange={(updatedDate) => {
247
- // 👇 Redirect time change if today
248
- // const corrected = disableToday && isSameDay(updatedDate, today)
249
- // ? tomorrow
250
- // : updatedDate;
251
- // setTempDate(corrected);
252
- // (props as any).onChange(corrected);
253
- // }}
254
- onChange: function (updatedDate) {
316
+ !isRange && showTime && (react_1.default.createElement(TimePicker_1.default, { date: tempDate !== null && tempDate !== void 0 ? tempDate : (disableToday ? tomorrow : today), dateFormat: dateFormat, onChange: function (updatedDate) {
255
317
  setTempDate(updatedDate);
318
+ setInputValue((0, date_fns_1.format)(updatedDate, dateFormat));
256
319
  props.onChange(updatedDate);
257
320
  } })),
258
321
  react_1.default.createElement(react_2.Box, { display: "flex", justifyContent: "space-between", mt: 3 },
259
322
  react_1.default.createElement(Button_1.default, { size: "sm", variant: "ghost", onClick: function () {
260
323
  setTempDate(null);
261
- // setTempDate(disableToday ? tomorrow : null);
324
+ setInputValue("");
262
325
  setTempRangeStart(null);
263
326
  setTempRangeEnd(null);
264
327
  setRangeStart(null);
265
328
  setRangeEnd(null);
266
329
  setSelectingStart(true);
267
330
  props.onChange(null);
268
- // (props as any).onChange(disableToday ? tomorrow : null);
269
331
  onClose();
270
332
  } }, "Clear"),
271
333
  react_1.default.createElement(Button_1.default, { size: "sm", colorScheme: "primary", onClick: function () {
@@ -80,15 +80,15 @@ function ProfilePhotoViewer(_a) {
80
80
  transition: "opacity 0.3s",
81
81
  } },
82
82
  isEditable && (react_1.default.createElement(react_2.Tooltip, { label: "Edit", "aria-label": "Edit" },
83
- react_1.default.createElement(react_2.IconButton, { icon: react_1.default.createElement(lucide_react_1.SquarePen, { size: 14 }), isRound: isRound, size: editIconSize, onClick: handleClick, "aria-label": "Edit photo", style: __assign(__assign({}, style), { transition: "transform 0.3s, box-shadow 0.3s", boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)", marginRight: "3px" }), _hover: {
83
+ react_1.default.createElement(react_2.IconButton, { icon: react_1.default.createElement(lucide_react_1.SquarePen, { size: 14 }), isRound: isRound, size: editIconSize, onClick: handleClick, "aria-label": "Edit photo", color: theme.colors.gray[200], style: __assign(__assign({}, style), { transition: "transform 0.3s, box-shadow 0.3s", boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)", marginRight: "3px" }), _hover: {
84
84
  transform: "scale(1.1)",
85
- color: theme.colors.gray[300],
85
+ color: theme.colors.white,
86
86
  boxShadow: "0 8px 16px rgba(0, 0, 0, 0.3)",
87
87
  } }))),
88
88
  isView && (react_1.default.createElement(react_2.Tooltip, { label: "View", "aria-label": "View" },
89
- react_1.default.createElement(react_2.IconButton, { icon: react_1.default.createElement(lucide_react_1.Eye, { size: 14 }), isRound: isRound, size: editIconSize, onClick: handleIsView, "aria-label": "View photo", style: __assign(__assign({}, style), { transition: "transform 0.3s, box-shadow 0.3s", boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)" }), _hover: {
89
+ react_1.default.createElement(react_2.IconButton, { icon: react_1.default.createElement(lucide_react_1.Eye, { size: 14 }), isRound: isRound, size: editIconSize, onClick: handleIsView, "aria-label": "View photo", color: theme.colors.gray[200], style: __assign(__assign({}, style), { transition: "transform 0.3s, box-shadow 0.3s", boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)" }), _hover: {
90
90
  transform: "scale(1.1)",
91
- color: theme.colors.gray[300],
91
+ color: theme.colors.white,
92
92
  boxShadow: "0 8px 16px rgba(0, 0, 0, 0.3)",
93
93
  } })))),
94
94
  isEditable && (react_1.default.createElement(react_2.Input, { type: "file", accept: "image/*", onChange: handlePhotoChange, hidden: true, ref: fileInputRef }))))));
@@ -217,15 +217,14 @@ var SearchSelect = function (_a) {
217
217
  ? selectedValues.slice(0, (chip === null || chip === void 0 ? void 0 : chip.maxChips) || selectedValues.length).map(function (item) { return (react_1.default.createElement(Tag_1.default, { key: item.id, label: (chip === null || chip === void 0 ? void 0 : chip.maxText) && item.label.length > chip.maxText
218
218
  ? item.label.slice(0, chip.maxText) + '…'
219
219
  : item.label, onIconClick: (chip === null || chip === void 0 ? void 0 : chip.onClick) ? function () { return handleRemove(item === null || item === void 0 ? void 0 : item.id); } : undefined, icon: (chip === null || chip === void 0 ? void 0 : chip.onClick) ? lucide_react_1.CircleX : undefined, colorScheme: "gray", size: "sm" })); })
220
- : selectedValues.length === 1 &&
221
- inputValue === '' && (react_1.default.createElement(react_2.Box, { as: "button", type: "button", onClick: function () { return setIsOpen(true); }, fontSize: "sm", color: theme.colors.gray[800], background: "transparent", border: "none", cursor: "pointer", p: 0 }, selectedValues[0].label)),
220
+ : selectedValues.length === 1 && !isOpen && (react_1.default.createElement(react_2.Box, { as: "button", type: "button", onClick: function () { return setIsOpen(true); }, fontSize: "sm", color: theme.colors.gray[800], background: "transparent", border: "none", cursor: "pointer", p: 0 }, selectedValues[0].label)),
222
221
  (chip === null || chip === void 0 ? void 0 : chip.maxChips) &&
223
222
  isMultiple &&
224
223
  selectedValues.length > chip.maxChips && (react_1.default.createElement(Tag_1.default, { key: "extra-count", label: "+ ".concat(selectedValues.length - chip.maxChips), colorScheme: "gray", size: "sm" })),
225
- (isMultiple || inputValue || !selectedValues.length || !isMultiple) && (react_1.default.createElement(react_2.Input, { ref: inputRef, variant: "unstyled", flex: "1", minW: "5rem", value: inputValue, onChange: function (e) { return setInputValue(e.target.value); }, onFocus: function () {
224
+ (isMultiple || inputValue || !selectedValues.length || isOpen) && (react_1.default.createElement(react_2.Input, { ref: inputRef, variant: "unstyled", flex: "1", minW: "5rem", value: inputValue, onChange: function (e) { return setInputValue(e.target.value); }, onFocus: function () {
226
225
  setFocused(true);
227
226
  setIsOpen(true);
228
- }, onBlur: function () { return setFocused(false); }, placeholder: selectedValues.length ? "" : placeholder })),
227
+ }, onBlur: function () { return setFocused(false); }, placeholder: selectedValues.length && !isOpen ? "" : placeholder })),
229
228
  react_1.default.createElement(react_2.Box, { ml: "auto", display: "flex", alignItems: "center", gap: 1 },
230
229
  isRemoveAllIcon && selectedValues.length > 0 && (react_1.default.createElement(ToolTip_1.default, { placement: "top", label: "Remove All", hasArrow: true, bg: theme.colors.gray[600], color: theme.colors.white, fontSize: "0.75rem" },
231
230
  react_1.default.createElement(react_2.IconButton, { icon: react_1.default.createElement(lucide_react_1.X, { size: 12, color: theme.colors.black }), "aria-label": "Clear all", variant: "ghost", size: "sm", onClick: handleClearAll, sx: {
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import "./bootstrap";
1
2
  import Accordian from "./Components/Accordion/Accordion";
2
3
  import AlertDialog from "./Components/AlertDialog/AlertDialog";
3
4
  import ApexBarChart from "./Components/Apexcharts/ApexBarChart/ApexBarChart";
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  "use strict";
2
- // import "./bootstrap";
3
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
3
  if (k2 === undefined) k2 = k;
5
4
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -29,6 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
29
28
  Object.defineProperty(exports, "__esModule", { value: true });
30
29
  exports.RadioButtonGroup = exports.RadioButton = exports.ProgressBar = exports.ProfilePhotoViewer = exports.ProfileCardFooter = exports.ProfileCardBody = exports.ProfileCardHeader = exports.ProfileCard = exports.ProductDetails = exports.ProductCard = exports.PinInput = exports.PhoneNumberInput = exports.PaymentCard = exports.NumberInput = exports.MultiSelect = exports.NoteTextArea = exports.Notification = exports.NavigationBar = exports.ModalFooter = exports.ModalBody = exports.ModalHeader = exports.Modal = exports.Loading = exports.KanbanBoard = exports.InputSwitch = exports.InputTextArea = exports.HeaderActions = exports.Header = exports.FormWrapper = exports.FileUploader = exports.FileUpload = exports.Editor = exports.Dropdown = exports.DrawerFooter = exports.DrawerBody = exports.DrawerHeader = exports.Drawer = exports.DatePicker = exports.ContactForm = exports.Checkbox = exports.Card = exports.ButtonGroupIcon = exports.Button = exports.Breadcrumbs = exports.ApexLineChart = exports.ApexPolarChart = exports.ApexPieChart = exports.ApexBarChart = exports.AlertDialog = exports.Accordian = void 0;
31
30
  exports.debounce = exports.ThemesList = exports.useCustomTheme = exports.VerifyEmailOtp = exports.useToaster = exports.ToolTip = exports.Toaster = exports.Timeline = exports.TextInput = exports.Tag = exports.TableToggle = exports.Table = exports.Switch = exports.Skeletons = exports.Slider = exports.SideBar = exports.SelectSearch = exports.SearchSelect = exports.Select = exports.Search = exports.Reorder = void 0;
31
+ require("./bootstrap");
32
32
  var Accordion_1 = __importDefault(require("./Components/Accordion/Accordion"));
33
33
  exports.Accordian = Accordion_1.default;
34
34
  var AlertDialog_1 = __importDefault(require("./Components/AlertDialog/AlertDialog"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixelize-design-library",
3
- "version": "2.2.24",
3
+ "version": "2.2.25",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",