wafields 0.29.3 → 0.31.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/dist/attributes/{profile/collection → collection}/pets/breed/AttributeCollectionPetBreedDisplay.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/breed/AttributeCollectionPetBreedEditing.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/breed/AttributeCollectionPetBreedNonEdit.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/height/AttributeCollectionPetHeightDisplay.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/height/AttributeCollectionPetHeightNonEdit.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/weight/AttributeCollectionPetWeightDisplay.d.ts +1 -1
- package/dist/attributes/{profile/collection → collection}/pets/weight/AttributeCollectionPetWeightNonEdit.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/dob/AttributeCommonDobDisplay.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/dob/AttributeCommonDobEditing.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/dob/AttributeCommonDobNonEdit.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/gender/AttributeCommonGenderDisplay.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/gender/AttributeCommonGenderEditing.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/gender/AttributeCommonGenderNonEdit.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/handedness/AttributeCommonHandednessDisplay.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/handedness/AttributeCommonHandednessEditing.d.ts +1 -1
- package/dist/attributes/{profile/common → common}/handedness/AttributeCommonHandednessNonEdit.d.ts +1 -1
- package/dist/attributes/index.d.ts +2 -0
- package/dist/attributes/profile/index.d.ts +0 -2
- package/dist/attributes/profile/uoi/sports/basketball/positions/BasketballPositionIcon.d.ts +1 -1
- package/dist/common/PasswordRequirement.d.ts +6 -0
- package/dist/common/index.d.ts +1 -0
- package/dist/{index-5K5VPkye.mjs → index-BJ2kNnQh.mjs} +4005 -3963
- package/dist/{index-Xso1LmST.js → index-BuRhh4su.js} +53 -53
- package/dist/main/PageList.d.ts +10 -0
- package/dist/main/index.d.ts +1 -0
- package/dist/{mapbox-gl-DDu0f0p_-CSRUN3fF.js → mapbox-gl-Bo1QpTsE-B3HJ9gj3.js} +1 -1
- package/dist/{mapbox-gl-DDu0f0p_-CrC9HAop.mjs → mapbox-gl-Bo1QpTsE-BCc_3b6n.mjs} +1 -1
- package/dist/{maplibre-gl-dqskSSaf-D47SNJJb.mjs → maplibre-gl-B54KgzTr-CFjTGjRt.mjs} +1 -1
- package/dist/{maplibre-gl-dqskSSaf-inwB0WTU.js → maplibre-gl-B54KgzTr-DSj9yd1s.js} +1 -1
- package/dist/wafields.cjs.js +1 -1
- package/dist/wafields.css +1 -1
- package/dist/wafields.es.js +16 -14
- package/package.json +3 -3
- /package/dist/attributes/{profile/collection → collection}/index.d.ts +0 -0
- /package/dist/attributes/{profile/collection → collection}/pets/breed/index.d.ts +0 -0
- /package/dist/attributes/{profile/collection → collection}/pets/height/index.d.ts +0 -0
- /package/dist/attributes/{profile/collection → collection}/pets/index.d.ts +0 -0
- /package/dist/attributes/{profile/collection → collection}/pets/weight/index.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/dob/index.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/gender/index.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/gender/util.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/handedness/index.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/handedness/util.d.ts +0 -0
- /package/dist/attributes/{profile/common → common}/index.d.ts +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface PageListProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
notFoundLabel: string;
|
|
5
|
+
items: any[];
|
|
6
|
+
itemRenderer: (...args: any[]) => ReactNode;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function PageList({ title, notFoundLabel, items, itemRenderer, className }: PageListProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default PageList;
|
package/dist/main/index.d.ts
CHANGED