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.
- package/dist/attribute/attributeUpdater/AttributeUnspecified.d.ts +1 -0
- package/dist/attribute/attributeUpdater/AttributeUpdater.d.ts +10 -0
- package/dist/attribute/attributeUpdater/index.d.ts +2 -0
- package/dist/attribute/index.d.ts +4 -0
- package/dist/attribute/page/PagePID.d.ts +5 -0
- package/dist/attribute/page/index.d.ts +1 -0
- package/dist/attribute/post/index.d.ts +1 -0
- package/dist/attribute/post/postPrivacy/PostPrivacyDisplay.d.ts +6 -0
- package/dist/attribute/post/postPrivacy/PostPrivacyPicker.d.ts +2 -0
- package/dist/attribute/post/postPrivacy/index.d.ts +2 -0
- package/dist/attribute/post/postPrivacy/util.d.ts +6 -0
- package/dist/attribute/profile/gender/GenderDisplay.d.ts +6 -0
- package/dist/attribute/profile/gender/GenderPicker.d.ts +8 -0
- package/dist/attribute/profile/gender/index.d.ts +2 -0
- package/dist/attribute/profile/gender/util.d.ts +6 -0
- package/dist/attribute/profile/handedness/HandednessDisplay.d.ts +6 -0
- package/dist/attribute/profile/handedness/HandednessPicker.d.ts +8 -0
- package/dist/attribute/profile/handedness/index.d.ts +2 -0
- package/dist/attribute/profile/handedness/util.d.ts +10 -0
- package/dist/attribute/profile/index.d.ts +4 -0
- package/dist/attribute/profile/profilePrivacy/ProfilePrivacyDisplay.d.ts +6 -0
- package/dist/attribute/profile/profilePrivacy/ProfilePrivacyPicker.d.ts +2 -0
- package/dist/attribute/profile/profilePrivacy/index.d.ts +2 -0
- package/dist/attribute/profile/profilePrivacy/util.d.ts +6 -0
- package/dist/attribute/profile/pronoun/PronounDisplay.d.ts +6 -0
- package/dist/attribute/profile/pronoun/PronounPicker.d.ts +8 -0
- package/dist/attribute/profile/pronoun/index.d.ts +2 -0
- package/dist/attribute/profile/pronoun/util.d.ts +6 -0
- package/dist/html/index.d.ts +2 -0
- package/dist/index-BJWHWDWb.mjs +44410 -0
- package/dist/index-BhWvhICT.js +390 -0
- package/dist/index.d.ts +3 -5
- package/dist/{mapbox-gl-K2FnxsOi.js → mapbox-gl-DO5ZnJTC.js} +1 -1
- package/dist/{mapbox-gl-JjtHC7HE.mjs → mapbox-gl-DhBQdK2T.mjs} +1 -1
- package/dist/pickers/index.d.ts +2 -0
- package/dist/subjectReaction/util.d.ts +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.es.js +113 -102
- package/package.json +2 -2
- package/dist/index-BDaWXch8.js +0 -1122
- package/dist/index-Dg_oq7aM.mjs +0 -122960
- package/dist/mapbox-gl-B9qut4uK-CSsCiwAT-BovHQfMZ.js +0 -2986
- package/dist/mapbox-gl-B9qut4uK-CSsCiwAT-BxTzBPg0.mjs +0 -35566
- package/dist/mapbox-gl-r9vLbAw6-iWFYnpgI.js +0 -2986
- package/dist/mapbox-gl-r9vLbAw6-mIyb_aS2.mjs +0 -35566
- package/dist/profileAttributeUpdater/ProfileAttributeUnspecified.d.ts +0 -1
- package/dist/profileAttributeUpdater/ProfileAttributeUpdater.d.ts +0 -10
- package/dist/profileAttributeUpdater/index.d.ts +0 -2
- /package/dist/{List.d.ts → html/List.d.ts} +0 -0
- /package/dist/{form → html/form}/Form.d.ts +0 -0
- /package/dist/{form → html/form}/FormButtons.d.ts +0 -0
- /package/dist/{form → html/form}/SubmitButton.d.ts +0 -0
- /package/dist/{form → html/form}/index.d.ts +0 -0
- /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 @@
|
|
|
1
|
+
export { default as PagePID } from './PagePID';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './postPrivacy';
|
|
@@ -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,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,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,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;
|
package/dist/html/index.d.ts
CHANGED