@proprioo/salatim 23.1.0 → 23.3.0
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 +13 -0
- package/lib/energy/index.d.ts +1 -1
- package/lib/energy/index.js +3 -2
- package/lib/energy/index.js.map +1 -1
- package/lib/index.js +285 -285
- package/lib/index.js.map +1 -1
- package/lib/ui/src/input/Input.d.ts +11 -9
- package/lib/ui/src/input/Input.js +11 -2
- package/lib/ui/src/input/Input.js.map +1 -1
- package/lib/ui/src/inputBase/InputBase.d.ts +16 -14
- package/lib/ui/src/inputBase/InputBase.js +12 -2
- package/lib/ui/src/inputBase/InputBase.js.map +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +4 -1
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/src/gmaps.d.ts +0 -24
- package/lib/utils/src/gmaps.js +1 -28
- package/lib/utils/src/gmaps.js.map +1 -1
- package/lib/utils/src/gmaps.test.js +0 -136
- package/lib/utils/src/gmaps.test.js.map +1 -1
- package/lib/utils/src/props.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
**23.3.0**
|
|
4
|
+
|
|
5
|
+
* Feat: add minLength and maxLength props to Input component
|
|
6
|
+
|
|
7
|
+
**23.2.1**
|
|
8
|
+
|
|
9
|
+
* Fix: <Energy/> export getCarbonFootprintLevel() & getConsumptionLevel()
|
|
10
|
+
|
|
11
|
+
**23.2.0**
|
|
12
|
+
|
|
13
|
+
* Chore: remove unused code
|
|
14
|
+
* Feat: export getGeoSearchSuggestions function and GoogleSearchType enum
|
|
15
|
+
|
|
3
16
|
**23.1.0**
|
|
4
17
|
|
|
5
18
|
* Feat: <Energy/> export EnergyLevel enum
|
package/lib/energy/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { default as Energy, OwnProps as EnergyProps } from './src/Energy';
|
|
2
|
-
export {
|
|
2
|
+
export { getCarbonFootprintLevel, getConsumptionLevel } from './src/Energy.utils';
|
|
3
3
|
export { EnergyLevels, EnergyLevel } from './src/interfaces';
|
package/lib/energy/index.js
CHANGED
|
@@ -3,11 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.EnergyLevel = exports.
|
|
6
|
+
exports.EnergyLevel = exports.getConsumptionLevel = exports.getCarbonFootprintLevel = exports.Energy = void 0;
|
|
7
7
|
var Energy_1 = require("./src/Energy");
|
|
8
8
|
Object.defineProperty(exports, "Energy", { enumerable: true, get: function () { return __importDefault(Energy_1).default; } });
|
|
9
9
|
var Energy_utils_1 = require("./src/Energy.utils");
|
|
10
|
-
Object.defineProperty(exports, "
|
|
10
|
+
Object.defineProperty(exports, "getCarbonFootprintLevel", { enumerable: true, get: function () { return Energy_utils_1.getCarbonFootprintLevel; } });
|
|
11
|
+
Object.defineProperty(exports, "getConsumptionLevel", { enumerable: true, get: function () { return Energy_utils_1.getConsumptionLevel; } });
|
|
11
12
|
var interfaces_1 = require("./src/interfaces");
|
|
12
13
|
Object.defineProperty(exports, "EnergyLevel", { enumerable: true, get: function () { return interfaces_1.EnergyLevel; } });
|
|
13
14
|
//# sourceMappingURL=index.js.map
|
package/lib/energy/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../packages/energy/index.ts"],"names":[],"mappings":";;;;;;AAAA,uCAA0E;AAAjE,iHAAA,OAAO,OAAU;AAC1B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../packages/energy/index.ts"],"names":[],"mappings":";;;;;;AAAA,uCAA0E;AAAjE,iHAAA,OAAO,OAAU;AAC1B,mDAG4B;AAF1B,uHAAA,uBAAuB,OAAA;AACvB,mHAAA,mBAAmB,OAAA;AAErB,+CAA6D;AAAtC,yGAAA,WAAW,OAAA"}
|