@codeleap/mobile 2.0.5 → 2.0.6
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/components/Pager/index.d.ts +1 -1
- package/dist/components/TextInput/Label.d.ts +1 -1
- package/dist/components/TextInput/Label.js +1 -1
- package/dist/components/TextInput/Label.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Pager/index.tsx +1 -1
- package/src/components/TextInput/Label.tsx +1 -1
|
@@ -3,7 +3,7 @@ import React, { ReactNode } from 'react';
|
|
|
3
3
|
import { StylesOf } from '../../types/utility';
|
|
4
4
|
import { PagerStyles, PagerComposition } from './styles';
|
|
5
5
|
export * from './styles';
|
|
6
|
-
declare type PageProps = {
|
|
6
|
+
export declare type PageProps = {
|
|
7
7
|
isLast: boolean;
|
|
8
8
|
isFirst: boolean;
|
|
9
9
|
isActive: boolean;
|
|
@@ -10,7 +10,7 @@ var react_native_1 = require("react-native");
|
|
|
10
10
|
var Text_1 = require("../Text");
|
|
11
11
|
var View_1 = require("../View");
|
|
12
12
|
var InputLabel = function (_a) {
|
|
13
|
-
var label = _a.label, _b = _a.variants, variants = _b === void 0 ? [] : _b, _c = _a.styles, styles = _c === void 0 ? {} : _c,
|
|
13
|
+
var label = _a.label, _b = _a.variants, variants = _b === void 0 ? [] : _b, _c = _a.styles, styles = _c === void 0 ? {} : _c, _d = _a.style, style = _d === void 0 ? null : _d, _e = _a.asteriskStyle, asteriskStyle = _e === void 0 ? null : _e, _f = _a.required, required = _f === void 0 ? false : _f, _g = _a.wrapperStyle, wrapperStyle = _g === void 0 ? null : _g;
|
|
14
14
|
var labelStyles = (0, common_1.useDefaultComponentStyle)('TextInput', {
|
|
15
15
|
variants: variants,
|
|
16
16
|
styles: styles,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Label.js","sourceRoot":"","sources":["../../../src/components/TextInput/Label.tsx"],"names":[],"mappings":";;;;;;AAAA,gDAAyB;AACzB,2CAA2D;AAC3D,6CAAyC;AACzC,gCAA8B;AAC9B,gCAA8B;AAEvB,IAAM,UAAU,GAAG,UAAC,
|
|
1
|
+
{"version":3,"file":"Label.js","sourceRoot":"","sources":["../../../src/components/TextInput/Label.tsx"],"names":[],"mappings":";;;;;;AAAA,gDAAyB;AACzB,2CAA2D;AAC3D,6CAAyC;AACzC,gCAA8B;AAC9B,gCAA8B;AAEvB,IAAM,UAAU,GAAG,UAAC,EAAgH;QAA9G,KAAK,WAAA,EAAE,gBAAa,EAAb,QAAQ,mBAAG,EAAE,KAAA,EAAE,cAAW,EAAX,MAAM,mBAAG,EAAE,KAAA,EAAE,aAAY,EAAZ,KAAK,mBAAG,IAAI,KAAA,EAAE,qBAAoB,EAApB,aAAa,mBAAG,IAAI,KAAA,EAAE,gBAAgB,EAAhB,QAAQ,mBAAG,KAAK,KAAA,EAAE,oBAAmB,EAAnB,YAAY,mBAAG,IAAI,KAAA;IACvI,IAAM,WAAW,GAAG,IAAA,iCAAwB,EAAC,WAAW,EAAE;QACxD,QAAQ,UAAA;QAAE,MAAM,QAAA;QAAE,SAAS,EAAE,yBAAU,CAAC,OAAO;KAChD,CAAC,CAAA;IAEF,IAAI,CAAC,KAAK;QAAE,OAAO,IAAI,CAAA;IAEvB,QAAQ,OAAO,KAAK,EAAE;QACpB,KAAK,QAAQ;YACX,OAAO,CAAC,WAAI,CAAC,KAAK,CAAC,CAAE,YAAY,IAAI,WAAW,CAAC,YAAY,CAAC,CAC5D;QAAA,CAAC,WAAI,CAAC,KAAK,CAAC,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,EACrD;QAAA,CAAC,QAAQ,IAAI,CAAC,WAAI,CAAC,KAAK,CAAC,CAAC,aAAa,IAAI,WAAW,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAG,CACzF;MAAA,EAAE,WAAI,CAAC,CAAA;QACT,KAAK,QAAQ;YACX,OAAO,KAAK,CAAA;QACd;YACE,OAAO,IAAI,CAAA;KACd;AACH,CAAC,CAAA;AAlBY,QAAA,UAAU,cAkBtB"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { StyleSheet } from 'react-native'
|
|
|
4
4
|
import { Text } from '../Text'
|
|
5
5
|
import { View } from '../View'
|
|
6
6
|
|
|
7
|
-
export const InputLabel = ({ label, variants = [], styles = {}, style, asteriskStyle = null, required = false, wrapperStyle = null }) => {
|
|
7
|
+
export const InputLabel = ({ label, variants = [], styles = {}, style = null, asteriskStyle = null, required = false, wrapperStyle = null }) => {
|
|
8
8
|
const labelStyles = useDefaultComponentStyle('TextInput', {
|
|
9
9
|
variants, styles, transform: StyleSheet.flatten,
|
|
10
10
|
})
|