wacomm 1.30.0 → 1.32.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.
Files changed (54) hide show
  1. package/dist/attribute/attributeUpdater/AttributeUnspecified.d.ts +1 -0
  2. package/dist/attribute/attributeUpdater/AttributeUpdater.d.ts +10 -0
  3. package/dist/attribute/attributeUpdater/index.d.ts +2 -0
  4. package/dist/attribute/index.d.ts +4 -0
  5. package/dist/attribute/page/PagePID.d.ts +5 -0
  6. package/dist/attribute/page/index.d.ts +1 -0
  7. package/dist/attribute/post/index.d.ts +1 -0
  8. package/dist/attribute/post/postPrivacy/PostPrivacyDisplay.d.ts +6 -0
  9. package/dist/attribute/post/postPrivacy/PostPrivacyPicker.d.ts +2 -0
  10. package/dist/attribute/post/postPrivacy/index.d.ts +2 -0
  11. package/dist/attribute/post/postPrivacy/util.d.ts +6 -0
  12. package/dist/attribute/profile/gender/GenderDisplay.d.ts +6 -0
  13. package/dist/attribute/profile/gender/GenderPicker.d.ts +8 -0
  14. package/dist/attribute/profile/gender/index.d.ts +2 -0
  15. package/dist/attribute/profile/gender/util.d.ts +6 -0
  16. package/dist/attribute/profile/handedness/HandednessDisplay.d.ts +6 -0
  17. package/dist/attribute/profile/handedness/HandednessPicker.d.ts +8 -0
  18. package/dist/attribute/profile/handedness/index.d.ts +2 -0
  19. package/dist/attribute/profile/handedness/util.d.ts +10 -0
  20. package/dist/attribute/profile/index.d.ts +4 -0
  21. package/dist/attribute/profile/profilePrivacy/ProfilePrivacyDisplay.d.ts +6 -0
  22. package/dist/attribute/profile/profilePrivacy/ProfilePrivacyPicker.d.ts +2 -0
  23. package/dist/attribute/profile/profilePrivacy/index.d.ts +2 -0
  24. package/dist/attribute/profile/profilePrivacy/util.d.ts +6 -0
  25. package/dist/attribute/profile/pronoun/PronounDisplay.d.ts +6 -0
  26. package/dist/attribute/profile/pronoun/PronounPicker.d.ts +8 -0
  27. package/dist/attribute/profile/pronoun/index.d.ts +2 -0
  28. package/dist/attribute/profile/pronoun/util.d.ts +6 -0
  29. package/dist/html/index.d.ts +2 -0
  30. package/dist/index-BJWHWDWb.mjs +44410 -0
  31. package/dist/index-BhWvhICT.js +390 -0
  32. package/dist/index.d.ts +3 -5
  33. package/dist/{mapbox-gl-K2FnxsOi.js → mapbox-gl-DO5ZnJTC.js} +1 -1
  34. package/dist/{mapbox-gl-JjtHC7HE.mjs → mapbox-gl-DhBQdK2T.mjs} +1 -1
  35. package/dist/pickers/index.d.ts +2 -0
  36. package/dist/subjectReaction/util.d.ts +1 -1
  37. package/dist/wacomm.cjs.js +1 -1
  38. package/dist/wacomm.es.js +113 -102
  39. package/package.json +2 -2
  40. package/dist/index-BDaWXch8.js +0 -1122
  41. package/dist/index-Dg_oq7aM.mjs +0 -122960
  42. package/dist/mapbox-gl-B9qut4uK-CSsCiwAT-BovHQfMZ.js +0 -2986
  43. package/dist/mapbox-gl-B9qut4uK-CSsCiwAT-BxTzBPg0.mjs +0 -35566
  44. package/dist/mapbox-gl-r9vLbAw6-iWFYnpgI.js +0 -2986
  45. package/dist/mapbox-gl-r9vLbAw6-mIyb_aS2.mjs +0 -35566
  46. package/dist/profileAttributeUpdater/ProfileAttributeUnspecified.d.ts +0 -1
  47. package/dist/profileAttributeUpdater/ProfileAttributeUpdater.d.ts +0 -10
  48. package/dist/profileAttributeUpdater/index.d.ts +0 -2
  49. /package/dist/{List.d.ts → html/List.d.ts} +0 -0
  50. /package/dist/{form → html/form}/Form.d.ts +0 -0
  51. /package/dist/{form → html/form}/FormButtons.d.ts +0 -0
  52. /package/dist/{form → html/form}/SubmitButton.d.ts +0 -0
  53. /package/dist/{form → html/form}/index.d.ts +0 -0
  54. /package/dist/{Picker.d.ts → pickers/Picker.d.ts} +0 -0
@@ -0,0 +1 @@
1
+ export default function AttributeUnspecified(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import { ElementType } from 'react';
2
+ interface AttributeUpdaterProps {
3
+ label: string;
4
+ value: any;
5
+ onSave: (v: any) => void;
6
+ EditElement: ElementType;
7
+ DisplayElement: ElementType;
8
+ }
9
+ declare function AttributeUpdater({ label, value: valueInit, onSave, EditElement, DisplayElement }: AttributeUpdaterProps): import("react/jsx-runtime").JSX.Element;
10
+ export default AttributeUpdater;
@@ -0,0 +1,2 @@
1
+ export { default as AttributeUpdater } from './AttributeUpdater';
2
+ export { default as AttributeUnspecified } from './AttributeUnspecified';
@@ -0,0 +1,4 @@
1
+ export * from './attributeUpdater';
2
+ export * from './profile';
3
+ export * from './post';
4
+ export * from './page';
@@ -0,0 +1,5 @@
1
+ interface PagePIDProps {
2
+ pid: string;
3
+ }
4
+ export default function PagePID({ pid }: PagePIDProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1 @@
1
+ export { default as PagePID } from './PagePID';
@@ -0,0 +1 @@
1
+ export * from './postPrivacy';
@@ -0,0 +1,6 @@
1
+ import { PostPrivacy } from 'wenum';
2
+ interface PostPrivacyDisplayProps {
3
+ postprivacy: PostPrivacy;
4
+ }
5
+ declare function PostPrivacyDisplay({ postprivacy }: PostPrivacyDisplayProps): import("react/jsx-runtime").JSX.Element;
6
+ export default PostPrivacyDisplay;
@@ -0,0 +1,2 @@
1
+ declare function PostPrivacyPicker(): import("react/jsx-runtime").JSX.Element;
2
+ export default PostPrivacyPicker;
@@ -0,0 +1,2 @@
1
+ export { default as PostPrivacyPicker } from './PostPrivacyPicker';
2
+ export { default as PostPrivacyDisplay } from './PostPrivacyDisplay';
@@ -0,0 +1,6 @@
1
+ import { PostPrivacy } from 'wenum';
2
+ export declare const PostPrivacyLabel: Record<PostPrivacy, string>;
3
+ export declare const postPrivacyOptions: {
4
+ value: PostPrivacy;
5
+ label: string;
6
+ }[];
@@ -0,0 +1,6 @@
1
+ import { Gender } from 'wenum';
2
+ interface GenderDisplayProps {
3
+ gender: Gender;
4
+ }
5
+ declare function GenderDisplay({ gender }: GenderDisplayProps): import("react/jsx-runtime").JSX.Element;
6
+ export default GenderDisplay;
@@ -0,0 +1,8 @@
1
+ import { Gender } from 'wenum';
2
+ interface GenderPickerProps {
3
+ onChange: (p: Gender) => void;
4
+ className?: string;
5
+ defaultValue?: Gender;
6
+ }
7
+ declare function GenderPicker({ onChange, className, defaultValue }: GenderPickerProps): import("react/jsx-runtime").JSX.Element;
8
+ export default GenderPicker;
@@ -0,0 +1,2 @@
1
+ export { default as GenderPicker } from './GenderPicker';
2
+ export { default as GenderDisplay } from './GenderDisplay';
@@ -0,0 +1,6 @@
1
+ import { Gender } from 'wenum';
2
+ export declare const GenderLabel: Record<Gender, string>;
3
+ export declare const genderOptions: {
4
+ value: Gender;
5
+ label: string;
6
+ }[];
@@ -0,0 +1,6 @@
1
+ import { Handedness } from 'wenum';
2
+ interface HandednessDisplayProps {
3
+ handedness: Handedness;
4
+ }
5
+ declare function HandednessDisplay({ handedness }: HandednessDisplayProps): import("react/jsx-runtime").JSX.Element;
6
+ export default HandednessDisplay;
@@ -0,0 +1,8 @@
1
+ import { Handedness } from 'wenum';
2
+ interface HandednessPickerProps {
3
+ onChange: (p: Handedness) => void;
4
+ className?: string;
5
+ defaultValue?: Handedness;
6
+ }
7
+ declare function HandednessPicker({ onChange, className, defaultValue }: HandednessPickerProps): import("react/jsx-runtime").JSX.Element;
8
+ export default HandednessPicker;
@@ -0,0 +1,2 @@
1
+ export { default as HandednessPicker } from './HandednessPicker';
2
+ export { default as HandednessDisplay } from './HandednessDisplay';
@@ -0,0 +1,10 @@
1
+ import { Handedness } from 'wenum';
2
+ export declare const HandednessLabel: {
3
+ 0: string;
4
+ 1: string;
5
+ 2: string;
6
+ };
7
+ export declare const handednessOptions: {
8
+ value: Handedness;
9
+ label: string;
10
+ }[];
@@ -0,0 +1,4 @@
1
+ export * from './pronoun';
2
+ export * from './gender';
3
+ export * from './handedness';
4
+ export * from './profilePrivacy';
@@ -0,0 +1,6 @@
1
+ import { ProfilePrivacy } from 'wenum';
2
+ interface ProfilePrivacyDisplayProps {
3
+ profileprivacy: ProfilePrivacy;
4
+ }
5
+ declare function ProfilePrivacyDisplay({ profileprivacy }: ProfilePrivacyDisplayProps): import("react/jsx-runtime").JSX.Element;
6
+ export default ProfilePrivacyDisplay;
@@ -0,0 +1,2 @@
1
+ declare function ProfilePrivacyPicker(): import("react/jsx-runtime").JSX.Element;
2
+ export default ProfilePrivacyPicker;
@@ -0,0 +1,2 @@
1
+ export { default as ProfilePrivacyPicker } from './ProfilePrivacyPicker';
2
+ export { default as ProfilePrivacyDisplay } from './ProfilePrivacyDisplay';
@@ -0,0 +1,6 @@
1
+ import { ProfilePrivacy } from 'wenum';
2
+ export declare const ProfilePrivacyLabel: Record<ProfilePrivacy, string>;
3
+ export declare const profilePrivacyOptions: {
4
+ value: ProfilePrivacy;
5
+ label: string;
6
+ }[];
@@ -0,0 +1,6 @@
1
+ import { Pronoun } from 'wenum';
2
+ interface PronounDisplayProps {
3
+ pronoun: Pronoun;
4
+ }
5
+ declare function PronounDisplay({ pronoun }: PronounDisplayProps): import("react/jsx-runtime").JSX.Element | null;
6
+ export default PronounDisplay;
@@ -0,0 +1,8 @@
1
+ import { Pronoun } from 'wenum';
2
+ interface PronounPickerProps {
3
+ onChange: (p: Pronoun) => void;
4
+ className?: string;
5
+ defaultValue?: Pronoun;
6
+ }
7
+ declare function PronounPicker({ onChange, className, defaultValue }: PronounPickerProps): import("react/jsx-runtime").JSX.Element;
8
+ export default PronounPicker;
@@ -0,0 +1,2 @@
1
+ export { default as PronounPicker } from './PronounPicker';
2
+ export { default as PronounDisplay } from './PronounDisplay';
@@ -0,0 +1,6 @@
1
+ import { Pronoun } from 'wenum';
2
+ export declare const PronounLabel: Record<Pronoun, string>;
3
+ export declare const pronounOptions: {
4
+ value: Pronoun;
5
+ label: string;
6
+ }[];
@@ -4,4 +4,6 @@ export { default as H1 } from './H1';
4
4
  export { default as P } from './P';
5
5
  export { default as Textarea } from './Textarea';
6
6
  export { default as Span } from './Span';
7
+ export { default as List } from './List';
7
8
  export * from './input';
9
+ export * from './form';