@citizenplane/pimp 16.1.0 → 16.2.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/pimp.es.js +1569 -1572
- package/dist/pimp.umd.js +8 -8
- package/dist/style.css +1 -1
- package/package.json +10 -9
- package/src/components/CpDate.vue +3 -1
- package/src/components/CpMultiselect.vue +2 -5
- package/src/components/CpTable.vue +4 -2
- package/src/components/CpTableColumnEditor.vue +4 -1
- package/src/components/CpTelInput.vue +18 -12
- package/src/components/CpToast.vue +1 -1
- package/src/components/CpTransitionExpand.vue +23 -20
- package/src/libs/CoreDatepicker.vue +1 -0
- package/src/stories/BaseInputLabel.stories.ts +1 -1
- package/src/stories/Colors.stories.ts +1 -1
- package/src/stories/CpAccordion.stories.ts +1 -1
- package/src/stories/CpAccordionGroup.stories.ts +1 -1
- package/src/stories/CpAirlineLogo.stories.ts +5 -2
- package/src/stories/CpAlert.stories.ts +1 -1
- package/src/stories/CpBadge.stories.ts +1 -1
- package/src/stories/CpButton.stories.ts +1 -1
- package/src/stories/CpCheckbox.stories.ts +1 -1
- package/src/stories/CpContextualMenu.stories.ts +5 -1
- package/src/stories/CpDate.stories.ts +1 -1
- package/src/stories/CpDatepicker.stories.ts +22 -18
- package/src/stories/CpDialog.stories.ts +1 -1
- package/src/stories/CpHeading.stories.ts +2 -1
- package/src/stories/CpIcon.stories.ts +1 -1
- package/src/stories/CpInput.stories.ts +22 -6
- package/src/stories/CpItemActions.stories.ts +20 -4
- package/src/stories/CpLoader.stories.ts +1 -1
- package/src/stories/CpMenuItem.stories.ts +1 -1
- package/src/stories/CpMultiselect.stories.ts +1 -1
- package/src/stories/CpPartnerBadge.stories.ts +5 -2
- package/src/stories/CpRadio.stories.ts +1 -1
- package/src/stories/CpRadioGroup.stories.ts +1 -1
- package/src/stories/CpSelect.stories.ts +18 -3
- package/src/stories/CpSelectMenu.stories.ts +64 -45
- package/src/stories/CpSelectableButton.stories.ts +1 -1
- package/src/stories/CpSwitch.stories.ts +1 -1
- package/src/stories/CpTable.stories.ts +15 -12
- package/src/stories/CpTableEmptyState.stories.ts +1 -1
- package/src/stories/CpTabs.stories.ts +1 -1
- package/src/stories/CpTelInput.stories.ts +13 -6
- package/src/stories/CpText.stories.ts +1 -1
- package/src/stories/CpTextarea.stories.ts +15 -4
- package/src/stories/CpToast.stories.ts +22 -6
- package/src/stories/CpTooltip.stories.ts +1 -1
- package/src/stories/CpTransitionCounter.stories.ts +1 -1
- package/src/stories/CpTransitionExpand.stories.ts +1 -1
- package/src/stories/CpTransitionListItems.stories.ts +1 -1
- package/src/stories/CpTransitionSize.stories.ts +1 -1
- package/src/stories/CpTransitionSlide.stories.ts +1 -1
- package/src/stories/CpTransitionTabContent.stories.ts +1 -1
- package/src/stories/Dimensions.stories.ts +1 -1
- package/src/stories/Easings.stories.ts +1 -1
- package/src/stories/FocusRings.stories.ts +1 -1
- package/src/stories/Shadows.stories.ts +1 -1
- package/src/stories/Typography.stories.ts +1 -1
- package/src/types/primevue-toasteventbus.d.ts +14 -0
- package/tsconfig.json +1 -0
- package/.lintstagedrc.json +0 -4
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PrimeVue ships `primevue/toasteventbus` as ESM without bundled `.d.ts`.
|
|
3
|
+
* This minimal declaration satisfies `vue-tsc` for consumers (e.g. `CpToast.vue`).
|
|
4
|
+
*/
|
|
5
|
+
declare module 'primevue/toasteventbus' {
|
|
6
|
+
type ToastEventHandler = (payload: unknown) => void
|
|
7
|
+
|
|
8
|
+
interface ToastEventBus {
|
|
9
|
+
on(event: string, handler: ToastEventHandler): void
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const ToastEventBus: ToastEventBus
|
|
13
|
+
export default ToastEventBus
|
|
14
|
+
}
|
package/tsconfig.json
CHANGED
package/.lintstagedrc.json
DELETED