1mpacto-react-ui 2.0.11 → 2.0.13
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/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/style.css +1 -1
- package/dist/index.cjs +86 -86
- package/dist/index.mjs +2293 -2280
- package/dist/package.json.d.ts +1 -1
- package/dist/src/interfaces/components/Input/index.d.ts +11 -1
- package/dist/src/interfaces/components/Sidebar/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/package.json.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ export interface IInputReguler extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
94
94
|
* [ID] : Ikon di akhir input (opsional).
|
|
95
95
|
* [EN] : Icon at the end of input (optional).
|
|
96
96
|
*/
|
|
97
|
-
endIcon?:
|
|
97
|
+
endIcon?: IInputReguler['startIcon'];
|
|
98
98
|
/**
|
|
99
99
|
* [ID] : Menandakan input wajib diisi (opsional).
|
|
100
100
|
* [EN] : Indicates input is required (optional).
|
|
@@ -120,6 +120,16 @@ export interface IInputReguler extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
120
120
|
* [EN] : CSS class name for error label (optional).
|
|
121
121
|
*/
|
|
122
122
|
classNameLabelError?: string | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* [ID] : Konten label (opsional).
|
|
125
|
+
* [EN] : Label content (optional).
|
|
126
|
+
*/
|
|
127
|
+
contentLabel?: IInputReguler['startIcon'];
|
|
128
|
+
/**
|
|
129
|
+
* [ID] : Nama kelas CSS untuk kontainer label (opsional).
|
|
130
|
+
* [EN] : CSS class name for label container (optional).
|
|
131
|
+
*/
|
|
132
|
+
classNameLabelContainer?: string | undefined;
|
|
123
133
|
}
|
|
124
134
|
/**
|
|
125
135
|
* [ID] : Interface untuk input native.
|
|
@@ -168,6 +168,16 @@ export interface ISidebar<T extends React.ElementType> extends React.HTMLAttribu
|
|
|
168
168
|
* [EN] : Element ID (optional).
|
|
169
169
|
*/
|
|
170
170
|
id?: string;
|
|
171
|
+
/**
|
|
172
|
+
* [ID] : Gaya CSS sidebar (opsional).
|
|
173
|
+
* [EN] : Sidebar CSS style (optional).
|
|
174
|
+
*/
|
|
175
|
+
styleSidebar?: React.CSSProperties;
|
|
176
|
+
/**
|
|
177
|
+
* [ID] : Gaya CSS content (opsional).
|
|
178
|
+
* [EN] : Content CSS style (optional).
|
|
179
|
+
*/
|
|
180
|
+
styleContent?: React.CSSProperties;
|
|
171
181
|
}
|
|
172
182
|
/**
|
|
173
183
|
* [ID] : Interface untuk item sidebar.
|