@weni/unnnic-system 3.31.0 → 3.31.1-alpha.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/dist/index.d.ts +1 -2
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +6 -6
- package/dist/unnnic.umd.js +2 -2
- package/package.json +2 -2
- package/src/components/ui/table/TableRow.vue +0 -1
- package/src/utils/sanitize.js +5 -18
package/dist/index.d.ts
CHANGED
|
@@ -160,10 +160,9 @@ declare interface FormElementProps {
|
|
|
160
160
|
*
|
|
161
161
|
* @param {string} input
|
|
162
162
|
* @param {Array<string>} allowedTags - List of allowed HTML tags.
|
|
163
|
-
* @param {number} maxLength - Maximum length of the sanitized string.
|
|
164
163
|
* @returns {string}
|
|
165
164
|
*/
|
|
166
|
-
declare function fullySanitize(input: string, allowedTags?: Array<string
|
|
165
|
+
declare function fullySanitize(input: string, allowedTags?: Array<string>): string;
|
|
167
166
|
|
|
168
167
|
declare interface IconProps {
|
|
169
168
|
filled?: boolean;
|