@vixoniccom/modules 2.13.0-dev.0 → 2.13.0-dev.1
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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.13.0-dev.1](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-dev.0...v2.13.0-dev.1) (2022-03-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **release:** bitly input was added to index.ts ([8ce237b](https://gitlab.com/mandomedio/vixonic/modules/commit/8ce237b88929810f361132dee1ab918427afb7df))
|
|
11
|
+
|
|
5
12
|
## [2.13.0-dev.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.1...v2.13.0-dev.0) (2022-03-01)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { Configuration } from './lib';
|
|
2
2
|
export { Errors, ErrorsMap } from './lib/errors';
|
|
3
|
-
export { Autocomplete, ColorPicker, DateInput, NumberInput, SelectAssetKna, SelectInput, Switch, Slider, TextArea, TextFormat, TextInput, ServiceInput, isInput, InputValue, InputComponent, isInputInstance } from './lib/inputs';
|
|
3
|
+
export { Autocomplete, BitlyInput, ColorPicker, DateInput, NumberInput, SelectAssetKna, SelectInput, Switch, Slider, TextArea, TextFormat, TextInput, ServiceInput, isInput, InputValue, InputComponent, isInputInstance } from './lib/inputs';
|
|
4
4
|
export { Label } from './lib/ui';
|
|
5
5
|
export { Group, List, DynamicMatrix } from './lib/containers';
|
|
6
6
|
export { RangeValue, DateRangeValue, NumberRangeValue } from './lib/values';
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NumberRangeValue = exports.DateRangeValue = exports.RangeValue = exports.DynamicMatrix = exports.List = exports.Group = exports.Label = exports.isInputInstance = exports.isInput = exports.ServiceInput = exports.TextInput = exports.TextFormat = exports.TextArea = exports.Slider = exports.Switch = exports.SelectInput = exports.SelectAssetKna = exports.NumberInput = exports.DateInput = exports.ColorPicker = exports.Autocomplete = exports.Errors = exports.Configuration = void 0;
|
|
3
|
+
exports.NumberRangeValue = exports.DateRangeValue = exports.RangeValue = exports.DynamicMatrix = exports.List = exports.Group = exports.Label = exports.isInputInstance = exports.isInput = exports.ServiceInput = exports.TextInput = exports.TextFormat = exports.TextArea = exports.Slider = exports.Switch = exports.SelectInput = exports.SelectAssetKna = exports.NumberInput = exports.DateInput = exports.ColorPicker = exports.BitlyInput = exports.Autocomplete = exports.Errors = exports.Configuration = void 0;
|
|
4
4
|
var lib_1 = require("./lib");
|
|
5
5
|
Object.defineProperty(exports, "Configuration", { enumerable: true, get: function () { return lib_1.Configuration; } });
|
|
6
6
|
var errors_1 = require("./lib/errors");
|
|
7
7
|
Object.defineProperty(exports, "Errors", { enumerable: true, get: function () { return errors_1.Errors; } });
|
|
8
8
|
var inputs_1 = require("./lib/inputs");
|
|
9
9
|
Object.defineProperty(exports, "Autocomplete", { enumerable: true, get: function () { return inputs_1.Autocomplete; } });
|
|
10
|
+
Object.defineProperty(exports, "BitlyInput", { enumerable: true, get: function () { return inputs_1.BitlyInput; } });
|
|
10
11
|
Object.defineProperty(exports, "ColorPicker", { enumerable: true, get: function () { return inputs_1.ColorPicker; } });
|
|
11
12
|
Object.defineProperty(exports, "DateInput", { enumerable: true, get: function () { return inputs_1.DateInput; } });
|
|
12
13
|
Object.defineProperty(exports, "NumberInput", { enumerable: true, get: function () { return inputs_1.NumberInput; } });
|