albinasoft-ui-package 1.1.57 → 1.1.58
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.ts +23 -23
- package/dist/index.js +71 -43
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
export {
|
23
|
-
export type { Notify, noopNotify } from "./types/notify";
|
1
|
+
export { default as AlbinaForm } from './components/AlbinaForm';
|
2
|
+
export { default as CustomAutocompleteInput } from './components/CustomAutocompleteInput';
|
3
|
+
export { default as CustomButton } from './components/CustomButton';
|
4
|
+
export { default as CustomCheckbox } from './components/CustomCheckbox';
|
5
|
+
export { default as CustomInput, InputType } from './components/CustomInput';
|
6
|
+
export { default as CustomTextarea } from './components/CustomTextarea';
|
7
|
+
export { default as CustomPhoneInput } from './components/CustomPhoneInput';
|
8
|
+
export { default as CustomRadioButton } from './components/CustomRadioButton';
|
9
|
+
export { default as CustomSelect } from './components/CustomSelect';
|
10
|
+
export { default as CustomSimpleSelect } from './components/CustomSimpleSelect';
|
11
|
+
export { default as CustomTreeView, type CustomTreeViewProps, type TreeNode } from './components/CustomTreeView';
|
12
|
+
export { default as CustomDateTimePicker, TimeFormat } from './components/CustomDateTimePicker';
|
13
|
+
export { default as CustomText, TextType, TextAlign, FontSize, LineHeight, FontWeight, Color as TextColor, } from './components/CustomText';
|
14
|
+
export { default as CustomDivider, Color as DividerColor, // alias to avoid collision with TextColor
|
15
|
+
Alignment as DividerAlignment, Thickness as DividerThickness, Width as DividerWidth, } from './components/CustomDivider';
|
16
|
+
export { default as CustomModal } from './components/CustomModal';
|
17
|
+
export { default as CustomDatatable, type ColDef, } from './components/CustomDatatable';
|
18
|
+
export { default as CustomFileUploader, AllowedTypes, type FileUploaderTranslations, defaultTranslations, type CustomFileUploaderProps, type CustomFileUploaderHandle, } from './components/CustomFileUploader';
|
19
|
+
export { default as CustomRichTextbox } from './components/CustomRichTextbox';
|
20
|
+
export { default as CustomProgressBar } from './components/CustomProgressBar';
|
21
|
+
export { default as CustomTab, AlignTabs, TabSize, type TabItem, type CustomTabProps, } from './components/CustomTab';
|
22
|
+
export { default as CustomTimeline, DotColor, type AdditionalInfo, type TimelineElement, } from './components/CustomTimeline';
|
24
23
|
export { default as CustomForm, ElementType } from './components/CustomForm';
|
24
|
+
export type { Notify, noopNotify } from './types/notify';
|
package/dist/index.js
CHANGED
@@ -1,51 +1,79 @@
|
|
1
1
|
"use strict";
|
2
|
+
// src/index.ts
|
2
3
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
5
|
};
|
5
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.ElementType = exports.CustomForm = exports.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
var
|
12
|
-
exports
|
13
|
-
var
|
14
|
-
exports
|
15
|
-
var
|
16
|
-
exports
|
17
|
-
var
|
18
|
-
exports
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
var
|
28
|
-
exports
|
29
|
-
var
|
30
|
-
exports
|
31
|
-
var
|
32
|
-
exports
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
exports
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
exports
|
41
|
-
|
42
|
-
exports
|
43
|
-
|
44
|
-
exports
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
exports
|
7
|
+
exports.ElementType = exports.CustomForm = exports.DotColor = exports.CustomTimeline = exports.TabSize = exports.AlignTabs = exports.CustomTab = exports.CustomProgressBar = exports.CustomRichTextbox = exports.defaultTranslations = exports.AllowedTypes = exports.CustomFileUploader = exports.CustomDatatable = exports.CustomModal = exports.DividerWidth = exports.DividerThickness = exports.DividerAlignment = exports.DividerColor = exports.CustomDivider = exports.TextColor = exports.FontWeight = exports.LineHeight = exports.FontSize = exports.TextAlign = exports.TextType = exports.CustomText = exports.TimeFormat = exports.CustomDateTimePicker = exports.CustomTreeView = exports.CustomSimpleSelect = exports.CustomSelect = exports.CustomRadioButton = exports.CustomPhoneInput = exports.CustomTextarea = exports.InputType = exports.CustomInput = exports.CustomCheckbox = exports.CustomButton = exports.CustomAutocompleteInput = exports.AlbinaForm = void 0;
|
8
|
+
// Form / Albina
|
9
|
+
var AlbinaForm_1 = require("./components/AlbinaForm");
|
10
|
+
Object.defineProperty(exports, "AlbinaForm", { enumerable: true, get: function () { return __importDefault(AlbinaForm_1).default; } });
|
11
|
+
// Inputs
|
12
|
+
var CustomAutocompleteInput_1 = require("./components/CustomAutocompleteInput");
|
13
|
+
Object.defineProperty(exports, "CustomAutocompleteInput", { enumerable: true, get: function () { return __importDefault(CustomAutocompleteInput_1).default; } });
|
14
|
+
var CustomButton_1 = require("./components/CustomButton");
|
15
|
+
Object.defineProperty(exports, "CustomButton", { enumerable: true, get: function () { return __importDefault(CustomButton_1).default; } });
|
16
|
+
var CustomCheckbox_1 = require("./components/CustomCheckbox");
|
17
|
+
Object.defineProperty(exports, "CustomCheckbox", { enumerable: true, get: function () { return __importDefault(CustomCheckbox_1).default; } });
|
18
|
+
var CustomInput_1 = require("./components/CustomInput");
|
19
|
+
Object.defineProperty(exports, "CustomInput", { enumerable: true, get: function () { return __importDefault(CustomInput_1).default; } });
|
20
|
+
Object.defineProperty(exports, "InputType", { enumerable: true, get: function () { return CustomInput_1.InputType; } });
|
21
|
+
var CustomTextarea_1 = require("./components/CustomTextarea");
|
22
|
+
Object.defineProperty(exports, "CustomTextarea", { enumerable: true, get: function () { return __importDefault(CustomTextarea_1).default; } });
|
23
|
+
var CustomPhoneInput_1 = require("./components/CustomPhoneInput");
|
24
|
+
Object.defineProperty(exports, "CustomPhoneInput", { enumerable: true, get: function () { return __importDefault(CustomPhoneInput_1).default; } });
|
25
|
+
var CustomRadioButton_1 = require("./components/CustomRadioButton");
|
26
|
+
Object.defineProperty(exports, "CustomRadioButton", { enumerable: true, get: function () { return __importDefault(CustomRadioButton_1).default; } });
|
27
|
+
// Selects / Tree
|
28
|
+
var CustomSelect_1 = require("./components/CustomSelect");
|
29
|
+
Object.defineProperty(exports, "CustomSelect", { enumerable: true, get: function () { return __importDefault(CustomSelect_1).default; } });
|
30
|
+
var CustomSimpleSelect_1 = require("./components/CustomSimpleSelect");
|
31
|
+
Object.defineProperty(exports, "CustomSimpleSelect", { enumerable: true, get: function () { return __importDefault(CustomSimpleSelect_1).default; } });
|
32
|
+
var CustomTreeView_1 = require("./components/CustomTreeView");
|
33
|
+
Object.defineProperty(exports, "CustomTreeView", { enumerable: true, get: function () { return __importDefault(CustomTreeView_1).default; } });
|
34
|
+
// Date & Time
|
35
|
+
var CustomDateTimePicker_1 = require("./components/CustomDateTimePicker");
|
36
|
+
Object.defineProperty(exports, "CustomDateTimePicker", { enumerable: true, get: function () { return __importDefault(CustomDateTimePicker_1).default; } });
|
37
|
+
Object.defineProperty(exports, "TimeFormat", { enumerable: true, get: function () { return CustomDateTimePicker_1.TimeFormat; } });
|
38
|
+
// Layout / Text / Visual
|
39
|
+
var CustomText_1 = require("./components/CustomText");
|
40
|
+
Object.defineProperty(exports, "CustomText", { enumerable: true, get: function () { return __importDefault(CustomText_1).default; } });
|
41
|
+
Object.defineProperty(exports, "TextType", { enumerable: true, get: function () { return CustomText_1.TextType; } });
|
42
|
+
Object.defineProperty(exports, "TextAlign", { enumerable: true, get: function () { return CustomText_1.TextAlign; } });
|
43
|
+
Object.defineProperty(exports, "FontSize", { enumerable: true, get: function () { return CustomText_1.FontSize; } });
|
44
|
+
Object.defineProperty(exports, "LineHeight", { enumerable: true, get: function () { return CustomText_1.LineHeight; } });
|
45
|
+
Object.defineProperty(exports, "FontWeight", { enumerable: true, get: function () { return CustomText_1.FontWeight; } });
|
46
|
+
Object.defineProperty(exports, "TextColor", { enumerable: true, get: function () { return CustomText_1.Color; } });
|
47
|
+
var CustomDivider_1 = require("./components/CustomDivider");
|
48
|
+
Object.defineProperty(exports, "CustomDivider", { enumerable: true, get: function () { return __importDefault(CustomDivider_1).default; } });
|
49
|
+
Object.defineProperty(exports, "DividerColor", { enumerable: true, get: function () { return CustomDivider_1.Color; } });
|
50
|
+
Object.defineProperty(exports, "DividerAlignment", { enumerable: true, get: function () { return CustomDivider_1.Alignment; } });
|
51
|
+
Object.defineProperty(exports, "DividerThickness", { enumerable: true, get: function () { return CustomDivider_1.Thickness; } });
|
52
|
+
Object.defineProperty(exports, "DividerWidth", { enumerable: true, get: function () { return CustomDivider_1.Width; } });
|
53
|
+
var CustomModal_1 = require("./components/CustomModal");
|
54
|
+
Object.defineProperty(exports, "CustomModal", { enumerable: true, get: function () { return __importDefault(CustomModal_1).default; } });
|
55
|
+
// Data
|
56
|
+
var CustomDatatable_1 = require("./components/CustomDatatable");
|
57
|
+
Object.defineProperty(exports, "CustomDatatable", { enumerable: true, get: function () { return __importDefault(CustomDatatable_1).default; } });
|
58
|
+
// Files
|
59
|
+
var CustomFileUploader_1 = require("./components/CustomFileUploader");
|
60
|
+
Object.defineProperty(exports, "CustomFileUploader", { enumerable: true, get: function () { return __importDefault(CustomFileUploader_1).default; } });
|
61
|
+
Object.defineProperty(exports, "AllowedTypes", { enumerable: true, get: function () { return CustomFileUploader_1.AllowedTypes; } });
|
62
|
+
Object.defineProperty(exports, "defaultTranslations", { enumerable: true, get: function () { return CustomFileUploader_1.defaultTranslations; } });
|
63
|
+
// Rich Text
|
64
|
+
var CustomRichTextbox_1 = require("./components/CustomRichTextbox");
|
65
|
+
Object.defineProperty(exports, "CustomRichTextbox", { enumerable: true, get: function () { return __importDefault(CustomRichTextbox_1).default; } });
|
66
|
+
// Progress / Tabs / Timeline
|
67
|
+
var CustomProgressBar_1 = require("./components/CustomProgressBar");
|
68
|
+
Object.defineProperty(exports, "CustomProgressBar", { enumerable: true, get: function () { return __importDefault(CustomProgressBar_1).default; } });
|
69
|
+
var CustomTab_1 = require("./components/CustomTab");
|
70
|
+
Object.defineProperty(exports, "CustomTab", { enumerable: true, get: function () { return __importDefault(CustomTab_1).default; } });
|
71
|
+
Object.defineProperty(exports, "AlignTabs", { enumerable: true, get: function () { return CustomTab_1.AlignTabs; } });
|
72
|
+
Object.defineProperty(exports, "TabSize", { enumerable: true, get: function () { return CustomTab_1.TabSize; } });
|
73
|
+
var CustomTimeline_1 = require("./components/CustomTimeline");
|
74
|
+
Object.defineProperty(exports, "CustomTimeline", { enumerable: true, get: function () { return __importDefault(CustomTimeline_1).default; } });
|
75
|
+
Object.defineProperty(exports, "DotColor", { enumerable: true, get: function () { return CustomTimeline_1.DotColor; } });
|
76
|
+
// Form Orchestrator (barrel + named like before)
|
49
77
|
var CustomForm_1 = require("./components/CustomForm");
|
50
78
|
Object.defineProperty(exports, "CustomForm", { enumerable: true, get: function () { return __importDefault(CustomForm_1).default; } });
|
51
79
|
Object.defineProperty(exports, "ElementType", { enumerable: true, get: function () { return CustomForm_1.ElementType; } });
|