@proprioo/salatim 36.0.2 → 36.2.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/lib/index.js +220 -49
- package/lib/index.js.map +1 -1
- package/lib/ui/src/textarea/Textarea.styles.d.ts +16 -0
- package/package.json +4 -3
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
import { TextareaProps } from './Textarea.interfaces';
|
|
2
|
+
import { InputColors } from '../inputBase/InputBaseEnum';
|
|
3
|
+
type LayoutProps = {
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
error: boolean;
|
|
6
|
+
focused: boolean;
|
|
7
|
+
notched: boolean;
|
|
8
|
+
zIndex?: number;
|
|
9
|
+
outline?: InputColors;
|
|
10
|
+
};
|
|
2
11
|
export declare const TextareaLayout: import("styled-components").StyledComponent<"textarea", any, Pick<TextareaProps, "error" | "focused" | "autoResize" | "disabled" | "borderRadius">, never>;
|
|
12
|
+
export declare const BaseLayout: import("styled-components").FlattenSimpleInterpolation;
|
|
3
13
|
export declare const Counter: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
14
|
+
export declare const InputLayout: import("styled-components").StyledComponent<"input", any, {}, never>;
|
|
15
|
+
export declare const FieldSetLayout: import("styled-components").StyledComponent<"fieldset", any, {}, never>;
|
|
16
|
+
export declare const LabelLayout: import("styled-components").StyledComponent<"label", any, {}, never>;
|
|
17
|
+
export declare const InsideLayout: import("styled-components").StyledComponent<"div", any, Pick<LayoutProps, "disabled">, never>;
|
|
18
|
+
export declare const Layout: import("styled-components").StyledComponent<"div", any, LayoutProps, never>;
|
|
19
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proprioo/salatim",
|
|
3
|
-
"version": "36.0
|
|
3
|
+
"version": "36.2.0",
|
|
4
4
|
"description": "Proprioo component library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"coverage": "yarn test --coverage && jest-coverage-badges",
|
|
27
27
|
"deploy": "yarn build && yarn publish --access=public --non-interactive",
|
|
28
28
|
"dev": "yarn storybook",
|
|
29
|
-
"generate-phone-metadata": "libphonenumber-metadata-generator ./packages/phone/src/metadata.custom.json --countries AD,AE,AR,AT,AU,BE,BF,BR,CA,CH,CI,CM,CN,CO,CZ,DE,DK,EE,ET,DZ,ES,FI,FR,GB,GF,GG,GI,GP,GR,GQ,HK,HR,IE,IL,IN,IS,IT,LB,LR,LT,LU,LV,KH,MA,MC,MG,MQ,MX,NC,NL,NO,NZ,OM,PE,PF,PK,PL,PT,RE,RO,RS,RU,SE,SG,SI,SK,TH,TN,TR,UA,UG,US,VN,ZA",
|
|
29
|
+
"generate-phone-metadata": "libphonenumber-metadata-generator ./packages/phone/src/metadata.custom.json --countries AD,AE,AR,AT,AU,BE,BF,BR,CA,CH,CI,CM,CN,CO,CZ,DE,DK,EE,ET,DZ,ES,FI,FR,GB,GF,GG,GI,GP,GR,GQ,HK,HR,IE,IL,IN,IS,IT,LB,LR,LT,LU,LV,KH,MA,MC,MG,MQ,MX,NC,NL,NO,NZ,OM,PE,PF,PK,PL,PT,RE,RO,RS,RU,SE,SG,SI,SK,TH,TG,TN,TR,UA,UG,US,VN,ZA",
|
|
30
30
|
"lint": "tslint -c tslint.json 'packages/**/*.{ts,tsx}'",
|
|
31
31
|
"prepare": "husky",
|
|
32
32
|
"start": "rollup -c rollup.config.ts -w",
|
|
@@ -124,5 +124,6 @@
|
|
|
124
124
|
"react-dom": "^18.3.1",
|
|
125
125
|
"styled-components": "^5.3.11",
|
|
126
126
|
"yup": "^1.4.0"
|
|
127
|
-
}
|
|
127
|
+
},
|
|
128
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
128
129
|
}
|