wafields 0.9.15 → 0.10.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/common/index.d.ts +1 -0
- package/dist/common/logo/BuddiesNearbyLogo.d.ts +7 -0
- package/dist/{index-LMCIUX1c.mjs → index-BrDv6m2Q.mjs} +10623 -10579
- package/dist/index-jvjUd_Hc.js +375 -0
- package/dist/index.d.ts +1 -0
- package/dist/main/components/post/privacy/PostPrivacyPicker.d.ts +9 -0
- package/dist/main/components/post/privacy/index.d.ts +1 -1
- package/dist/main/components/profile/privacy/ProfilePrivacyPicker.d.ts +9 -0
- package/dist/main/components/profile/privacy/index.d.ts +1 -1
- package/dist/main/components/profile/user/pronoun/UserPronounPicker.d.ts +10 -0
- package/dist/main/components/profile/user/pronoun/index.d.ts +1 -1
- package/dist/{mapbox-gl-FIEJQpQK-CXRTmEc-.mjs → mapbox-gl-7neVnSTe-CisE7vbY.mjs} +1 -1
- package/dist/{mapbox-gl-FIEJQpQK-B9gw7ndn.js → mapbox-gl-7neVnSTe-DSEkRInh.js} +2 -2
- package/dist/wafields.cjs.js +1 -1
- package/dist/wafields.css +1 -1
- package/dist/wafields.es.js +16 -15
- package/package.json +2 -2
- package/dist/index-Do8Uj01S.js +0 -375
- package/dist/main/components/post/privacy/PostPrivacyEdit.d.ts +0 -4
- package/dist/main/components/profile/privacy/ProfilePrivacyEdit.d.ts +0 -4
- package/dist/main/components/profile/user/pronoun/UserPronounEdit.d.ts +0 -4
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PostPrivacy } from 'wenum';
|
|
2
|
+
interface PostPrivacyPickerProps {
|
|
3
|
+
onChange: (p: PostPrivacy) => void;
|
|
4
|
+
className?: string;
|
|
5
|
+
privacy?: PostPrivacy;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function PostPrivacyPicker({ onChange, className, privacy, disabled }: PostPrivacyPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default PostPrivacyPicker;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as PostPrivacyPicker } from './
|
|
1
|
+
export { default as PostPrivacyPicker } from './PostPrivacyPicker';
|
|
2
2
|
export { default as PostPrivacyDisplay } from './PostPrivacyDisplay';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ProfilePrivacy } from 'wenum';
|
|
2
|
+
interface ProfilePrivacyPickerProps {
|
|
3
|
+
onChange: (p: ProfilePrivacy) => void;
|
|
4
|
+
className?: string;
|
|
5
|
+
privacy?: ProfilePrivacy;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function ProfilePrivacyPicker({ onChange, className, privacy, disabled }: ProfilePrivacyPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default ProfilePrivacyPicker;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as ProfilePrivacyPicker } from './
|
|
1
|
+
export { default as ProfilePrivacyPicker } from './ProfilePrivacyPicker';
|
|
2
2
|
export { default as ProfilePrivacyDisplay } from './ProfilePrivacyDisplay';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { UserPronoun } from 'wenum';
|
|
2
|
+
interface UserPronounPickerProps {
|
|
3
|
+
onChange: (p: UserPronoun) => void;
|
|
4
|
+
className?: string;
|
|
5
|
+
defaultValue?: UserPronoun;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function UserPronounPicker({ onChange, className, defaultValue, disabled, label }: UserPronounPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default UserPronounPicker;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as UserPronounPicker } from './UserPronounPicker';
|
|
2
2
|
export { default as UserPronounDisplay } from './UserPronounDisplay';
|