@nxgt/material-vue 0.10.0 → 0.12.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/README.md +2 -2
- package/dist/{camera-DKVzfqKn.js → camera-COrJjQzA.js} +4 -4
- package/dist/{components-DEA4ui-c.js → components-owQgTJlP.js} +10865 -10429
- package/dist/components.js +5 -5
- package/dist/{composables-DlYLz3R4.js → composables-C8mu3NCU.js} +1 -1
- package/dist/composables.js +1 -1
- package/dist/{dnd-BQgaXJ4V.js → dnd-DV6WBGAP.js} +1 -1
- package/dist/dnd.js +1 -1
- package/dist/{i18n-DauA1M_L.js → i18n-iZRDMnlE.js} +12 -2
- package/dist/i18n.js +1 -1
- package/dist/lib/components/ui/cards/cards.gallery.d.ts +379 -0
- package/dist/lib/components/ui/cards/file-card.vue.d.ts +21 -0
- package/dist/lib/components/ui/cards/index.d.ts +12 -0
- package/dist/lib/components/ui/cards/offer-card.vue.d.ts +11 -0
- package/dist/lib/components/ui/cards/place-card.vue.d.ts +20 -0
- package/dist/lib/components/ui/cards/receipt-card.vue.d.ts +15 -0
- package/dist/lib/components/ui/cards/review-card.vue.d.ts +24 -0
- package/dist/lib/components/ui/cards/status-card.vue.d.ts +16 -0
- package/dist/lib/components/ui/contacts/consts.d.ts +1 -1
- package/dist/lib/components/ui/metrics/band-card.vue.d.ts +14 -0
- package/dist/lib/components/ui/metrics/index.d.ts +8 -0
- package/dist/lib/components/ui/metrics/latency-card.vue.d.ts +11 -0
- package/dist/lib/components/ui/metrics/ratio-card.vue.d.ts +15 -0
- package/dist/lib/components/ui/metrics/threshold-card.vue.d.ts +12 -0
- package/dist/lib/i18n/resources/en/index.d.ts +3 -0
- package/dist/lib/i18n/resources/en/material.json.d.ts +4 -1
- package/dist/lib/i18n/resources/fr/index.d.ts +3 -0
- package/dist/lib/i18n/resources/fr/material.json.d.ts +4 -1
- package/dist/lib/i18n/resources/index.d.ts +6 -0
- package/dist/lib/i18n/translator.d.ts +1 -1
- package/dist/lib/nuxt/component-names.d.ts +1 -1
- package/dist/{lib-D2xzyifv.js → lib-Cjb16TBr.js} +1 -1
- package/dist/lib.js +1 -1
- package/dist/main.js +9 -9
- package/dist/material-vue.css +1 -1
- package/dist/{pdf-outline-sidebar-DGOQM_Xz.js → pdf-outline-sidebar-DmakWlgl.js} +2 -2
- package/dist/{pdf-page-BtY3gUPb.js → pdf-page-DJyJOsHD.js} +1 -1
- package/dist/{pdf-page-list-Csv-DTPQ.js → pdf-page-list-BjR7qknn.js} +2 -2
- package/dist/{pdf-reader-eb_Ilcnq.js → pdf-reader-BDpnVlRk.js} +6 -6
- package/dist/{pdf-sidebar-DD-MdA6v.js → pdf-sidebar-DAK0uZGt.js} +4 -4
- package/dist/{pdf-thumbnail-sidebar-Bo89j8Ag.js → pdf-thumbnail-sidebar-BvbkRPZr.js} +3 -3
- package/dist/{pdf-toolbar-BJtNQ1hk.js → pdf-toolbar-Bd3LOEQ6.js} +2 -2
- package/dist/{stx-player-Dr3T3rxE.js → stx-player-CIK84_5B.js} +14 -14
- package/lib/nuxt/component-names.ts +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type FileCardProps = {
|
|
3
|
+
name: string;
|
|
4
|
+
bytes?: number;
|
|
5
|
+
size?: string;
|
|
6
|
+
meta?: string;
|
|
7
|
+
class?: HTMLAttributes['class'];
|
|
8
|
+
};
|
|
9
|
+
declare var __VLS_8: {};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
icon?: (props: typeof __VLS_8) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: import('vue').DefineComponent<FileCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FileCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -6,6 +6,8 @@ export type { EventCardProps } from './event-card.vue';
|
|
|
6
6
|
export { default as EventCard } from './event-card.vue';
|
|
7
7
|
export type { FeatureCardProps } from './feature-card.vue';
|
|
8
8
|
export { default as FeatureCard } from './feature-card.vue';
|
|
9
|
+
export type { FileCardProps } from './file-card.vue';
|
|
10
|
+
export { default as FileCard } from './file-card.vue';
|
|
9
11
|
export type { LinkCardProps } from './link-card.vue';
|
|
10
12
|
export { default as LinkCard } from './link-card.vue';
|
|
11
13
|
export type { MediaCardProps } from './media-card.vue';
|
|
@@ -14,20 +16,30 @@ export type { MessageCardProps } from './message-card.vue';
|
|
|
14
16
|
export { default as MessageCard } from './message-card.vue';
|
|
15
17
|
export type { NoticeCardProps } from './notice-card.vue';
|
|
16
18
|
export { default as NoticeCard } from './notice-card.vue';
|
|
19
|
+
export type { OfferCardProps } from './offer-card.vue';
|
|
20
|
+
export { default as OfferCard } from './offer-card.vue';
|
|
17
21
|
export type { OverlayCardProps } from './overlay-card.vue';
|
|
18
22
|
export { default as OverlayCard } from './overlay-card.vue';
|
|
23
|
+
export type { PlaceCardProps } from './place-card.vue';
|
|
24
|
+
export { default as PlaceCard } from './place-card.vue';
|
|
19
25
|
export type { PricingCardProps } from './pricing-card.vue';
|
|
20
26
|
export { default as PricingCard } from './pricing-card.vue';
|
|
21
27
|
export type { ProfileCardProps } from './profile-card.vue';
|
|
22
28
|
export { default as ProfileCard } from './profile-card.vue';
|
|
23
29
|
export type { QuoteCardProps } from './quote-card.vue';
|
|
24
30
|
export { default as QuoteCard } from './quote-card.vue';
|
|
31
|
+
export type { ReceiptCardProps, ReceiptItem } from './receipt-card.vue';
|
|
32
|
+
export { default as ReceiptCard } from './receipt-card.vue';
|
|
33
|
+
export type { ReviewCardProps } from './review-card.vue';
|
|
34
|
+
export { default as ReviewCard } from './review-card.vue';
|
|
25
35
|
export type { SplitCardProps } from './split-card.vue';
|
|
26
36
|
export { default as SplitCard } from './split-card.vue';
|
|
27
37
|
export type { SpotlightCardProps } from './spotlight-card.vue';
|
|
28
38
|
export { default as SpotlightCard } from './spotlight-card.vue';
|
|
29
39
|
export type { StackCardProps } from './stack-card.vue';
|
|
30
40
|
export { default as StackCard } from './stack-card.vue';
|
|
41
|
+
export type { StatusCardProps } from './status-card.vue';
|
|
42
|
+
export { default as StatusCard } from './status-card.vue';
|
|
31
43
|
export type { TagCardProps } from './tag-card.vue';
|
|
32
44
|
export { default as TagCard } from './tag-card.vue';
|
|
33
45
|
export type { TicketCardProps } from './ticket-card.vue';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type OfferCardProps = {
|
|
3
|
+
eyebrow?: string;
|
|
4
|
+
title: string;
|
|
5
|
+
code: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
class?: HTMLAttributes['class'];
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_export: import('vue').DefineComponent<OfferCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<OfferCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type PlaceCardProps = {
|
|
3
|
+
title: string;
|
|
4
|
+
address: string;
|
|
5
|
+
meta?: string;
|
|
6
|
+
class?: HTMLAttributes['class'];
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_8: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
icon?: (props: typeof __VLS_8) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_base: import('vue').DefineComponent<PlaceCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PlaceCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type ReceiptItem = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
};
|
|
6
|
+
export type ReceiptCardProps = {
|
|
7
|
+
title: string;
|
|
8
|
+
meta?: string;
|
|
9
|
+
items: ReceiptItem[];
|
|
10
|
+
total?: string;
|
|
11
|
+
class?: HTMLAttributes['class'];
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_export: import('vue').DefineComponent<ReceiptCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ReceiptCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type ReviewCardProps = {
|
|
3
|
+
quote: string;
|
|
4
|
+
author: string;
|
|
5
|
+
subtitle?: string;
|
|
6
|
+
rating: number;
|
|
7
|
+
max?: number;
|
|
8
|
+
class?: HTMLAttributes['class'];
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_13: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
avatar?: (props: typeof __VLS_13) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_base: import('vue').DefineComponent<ReviewCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ReviewCardProps> & Readonly<{}>, {
|
|
15
|
+
max: number;
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
import { StatusTone } from '../status-indicator';
|
|
3
|
+
export type StatusCardProps = {
|
|
4
|
+
title: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
status?: string;
|
|
7
|
+
tone?: StatusTone;
|
|
8
|
+
pulse?: boolean;
|
|
9
|
+
class?: HTMLAttributes['class'];
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<StatusCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<StatusCardProps> & Readonly<{}>, {
|
|
12
|
+
tone: StatusTone;
|
|
13
|
+
pulse: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
@@ -5,4 +5,4 @@ export declare const EMPTY_CONTACT: Contact;
|
|
|
5
5
|
export declare const CONTACT_TYPE_ICONS: Record<ContactType, IconName>;
|
|
6
6
|
export declare const CONTACT_VALUE_PLACEHOLDERS: Record<string, readonly [MaterialLocaleKey, string]>;
|
|
7
7
|
export declare const DEFAULT_CONTACT_VALUE_PLACEHOLDER: readonly ["material.contacts.placeholders.value", "Enter contact value"];
|
|
8
|
-
export declare function contactValuePlaceholder(type: ContactType | string | null): readonly ["material.scroll-progress" | "material.skip-link" | "material.see-also" | "material.filter.title" | "material.filter.trigger" | "material.filter.apply" | "material.filter.reset" | "material.filter.clear-all" | "material.code.copy" | "material.code.language" | "material.code.copied" | "material.code.word-wrap" | "material.pagination.previous" | "material.pagination.next" | "material.table.pagination.previous" | "material.table.pagination.next" | "material.table.pagination.go-to-next-page" | "material.table.pagination.go-to-previous-page" | "material.table.pagination.go-to-first-page" | "material.table.pagination.go-to-last-page" | "material.table.pagination.rows-per-page" | "material.table.pagination.rows-selected" | "material.table.pagination.page-of" | "material.table.labels.desc" | "material.table.labels.view" | "material.table.labels.asc" | "material.table.labels.hide" | "material.table.labels.actions" | "material.table.labels.delete-selected-rows" | "material.table.labels.toggle-columns" | "material.table.labels.no-data" | "material.table.delete-confirm.title" | "material.table.delete-confirm.cancel" | "material.table.delete-confirm.description" | "material.table.delete-confirm.confirm" | "material.camera.stop" | "material.camera.start" | "material.camera.capture" | "material.camera.captured" | "material.cards.per-month" | "material.command.title" | "material.command.description" | "material.copy.copy" | "material.copy.copied" | "material.language.en" | "material.language.fr" | "material.pager.previous" | "material.pager.next" | "material.qrcode.label" | "material.skeleton.loading" | "material.timeline.label" | "material.timeline.empty" | "material.tree.label" | "material.tree.expand" | "material.tree.collapse" | "material.upload.dropzone.idle" | "material.upload.dropzone.at-capacity" | "material.upload.dropzone.files-selected" | "material.empty-state.empty.title" | "material.empty-state.empty.description" | "material.empty-state.not-found.title" | "material.empty-state.not-found.description" | "material.empty-state.unauthorized.title" | "material.empty-state.unauthorized.description" | "material.empty-state.generic.title" | "material.empty-state.generic.description" | "material.metrics.of-target" | "material.metrics.this-period" | "material.metrics.last-period" | "material.metrics.weekdays" | "material.toc.on-this-page" | "material.image-field.remove" | "material.image-field.replace" | "material.image-field.choose" | "material.image-field.retry" | "material.buttons.delete" | "material.buttons.add" | "material.buttons.save" | "material.buttons.load-more" | "material.buttons.ok" | "material.json-viewer.expand" | "material.json-viewer.items" | "material.json-viewer.collapse" | "material.json-viewer.invalid" | "material.chat.placeholder" | "material.chat.copy" | "material.chat.message" | "material.chat.send" | "material.chat.empty" | "material.chat.retry" | "material.chat.attach" | "material.chat.remove-attachment" | "material.chat.scroll-to-latest" | "material.chat.add-reaction" | "material.chat.attachment-type" | "material.chat.attachment-max-files" | "material.chat.attachment-max-size" | "material.chat.typing" | "material.chat.empty-description" | "material.chat.send-failed" | "material.gallery.label" | "material.gallery.delete" | "material.gallery.select" | "material.gallery.open" | "material.gallery.close" | "material.gallery.download" | "material.gallery.play" | "material.gallery.repeat" | "material.gallery.previous" | "material.gallery.next" | "material.gallery.empty" | "material.gallery.empty-description" | "material.gallery.of" | "material.gallery.more" | "material.gallery.zoom-in" | "material.gallery.zoom-out" | "material.gallery.repeat-off" | "material.gallery.selected" | "material.gallery.clear-selection" | "material.notifications.label" | "material.notifications.search" | "material.notifications.empty" | "material.notifications.empty-description" | "material.notifications.empty-unread" | "material.notifications.empty-unread-description" | "material.notifications.read-all" | "material.notifications.filter-all" | "material.notifications.filter-unread" | "material.notifications.filter-category-all" | "material.notifications.dismiss" | "material.notifications.dismiss-item" | "material.education.progress" | "material.education.true" | "material.education.false" | "material.education.previous" | "material.education.next" | "material.education.empty" | "material.education.retry" | "material.education.answer-placeholder" | "material.education.expected" | "material.education.submit" | "material.education.answered" | "material.education.score" | "material.education.results" | "material.stx-player.audio" | "material.stx-player.video" | "material.stx-player.pause" | "material.stx-player.play" | "material.stx-player.repeat" | "material.stx-player.volume" | "material.stx-player.error" | "material.stx-player.loading" | "material.stx-player.previous" | "material.stx-player.next" | "material.stx-player.retry" | "material.stx-player.empty-description" | "material.stx-player.repeat-off" | "material.stx-player.mute" | "material.stx-player.unmute" | "material.stx-player.fullscreen" | "material.stx-player.exit-fullscreen" | "material.stx-player.pip" | "material.stx-player.exit-pip" | "material.stx-player.captions" | "material.stx-player.captions-off" | "material.stx-player.playback-rate" | "material.stx-player.queue" | "material.stx-player.now-playing" | "material.stx-player.buffering" | "material.stx-player.empty-title" | "material.stx-player.normal" | "material.attributes.buttons.add" | "material.attributes.buttons.save" | "material.attributes.form.type.label" | "material.attributes.form.type.placeholder" | "material.attributes.form.label.label" | "material.attributes.form.label.placeholder" | "material.attributes.form.name.label" | "material.attributes.form.name.placeholder" | "material.attributes.form.description.label" | "material.attributes.form.description.placeholder" | "material.attributes.form.default-value.label" | "material.attributes.form.default-value.placeholder" | "material.attributes.form.priority.label" | "material.attributes.form.priority.placeholder" | "material.attributes.form.options.label" | "material.attributes.form.options.placeholder" | "material.attributes.form.unit.label" | "material.attributes.form.unit.placeholder" | "material.attributes.messages.dialog" | "material.attributes.messages.empty" | "material.attributes.messages.create-succeeded" | "material.attributes.messages.update-succeeded" | "material.attributes.messages.delete-succeeded" | "material.attributes.messages.add-first" | "material.attributes.buttons.details" | "material.attributes.buttons.cancel" | "material.attributes.buttons.edit" | "material.attributes.buttons.remove" | "material.attributes.labels.attributes" | "material.attributes.labels.new-attribute" | "material.attributes.types.string" | "material.attributes.types.number" | "material.attributes.types.boolean" | "material.attributes.types.select" | "material.attributes.types.time" | "material.attributes.types.text" | "material.attributes.types.color" | "material.attributes.types.date" | "material.attributes.types.datetime" | "material.attributes.types.multi-select" | "material.attributes.types.rich-text" | "material.attributes.fields.type" | "material.attributes.fields.label" | "material.attributes.fields.name" | "material.attributes.fields.description" | "material.attributes.fields.default-value" | "material.attributes.fields.priority" | "material.attributes.fields.options" | "material.attributes.fields.unit" | "material.contacts.buttons.add" | "material.contacts.buttons.save" | "material.contacts.messages.dialog" | "material.contacts.messages.add-first" | "material.contacts.buttons.cancel" | "material.contacts.buttons.edit" | "material.contacts.buttons.remove" | "material.contacts.fields.type" | "material.contacts.fields.label" | "material.contacts.messages.no-contacts" | "material.contacts.labels.contacts" | "material.contacts.types.fax" | "material.contacts.types.mobile" | "material.contacts.types.phone" | "material.contacts.types.email" | "material.contacts.types.website" | "material.contacts.fields.value" | "material.contacts.placeholders.type" | "material.contacts.placeholders.label" | "material.contacts.placeholders.value" | "material.contacts.placeholders.fax" | "material.contacts.placeholders.mobile" | "material.contacts.placeholders.phone" | "material.contacts.placeholders.email" | "material.contacts.placeholders.website" | "material.opening-hours.buttons.add" | "material.opening-hours.buttons.save" | "material.opening-hours.messages.dialog" | "material.opening-hours.messages.add-first" | "material.opening-hours.buttons.cancel" | "material.opening-hours.buttons.edit" | "material.opening-hours.buttons.remove" | "material.opening-hours.messages.no-hours" | "material.opening-hours.buttons.add-all" | "material.opening-hours.labels.closed-all-day" | "material.opening-hours.labels.open-hours" | "material.opening-hours.fields.dayOfWeek" | "material.opening-hours.fields.openTime" | "material.opening-hours.fields.closeTime" | "material.opening-hours.fields.isClosed" | "material.opening-hours.placeholders.dayOfWeek" | "material.opening-hours.placeholders.openTime" | "material.opening-hours.placeholders.closeTime" | "material.opening-hours.days.0" | "material.opening-hours.days.1" | "material.opening-hours.days.2" | "material.opening-hours.days.3" | "material.opening-hours.days.4" | "material.opening-hours.days.5" | "material.opening-hours.days.6" | "material.opening-hours.daysShort.0" | "material.opening-hours.daysShort.1" | "material.opening-hours.daysShort.2" | "material.opening-hours.daysShort.3" | "material.opening-hours.daysShort.4" | "material.opening-hours.daysShort.5" | "material.opening-hours.daysShort.6" | "material.postal-address.buttons.add" | "material.postal-address.buttons.save" | "material.postal-address.messages.dialog" | "material.postal-address.messages.empty" | "material.postal-address.messages.add-first" | "material.postal-address.buttons.cancel" | "material.postal-address.buttons.edit" | "material.postal-address.buttons.remove" | "material.postal-address.labels.address" | "material.postal-address.fields.street" | "material.postal-address.fields.locality" | "material.postal-address.fields.region" | "material.postal-address.fields.postalCode" | "material.postal-address.fields.country" | "material.postal-address.placeholders.street" | "material.postal-address.placeholders.locality" | "material.postal-address.placeholders.region" | "material.postal-address.placeholders.postalCode" | "material.postal-address.placeholders.country" | "material.toast.buttons.close" | "material.toast.operations.success.title" | "material.toast.operations.error.title" | "material.toast.operations.loading.title" | "material.zod.default" | "material.zod.required" | "material.zod.invalid_value_single" | "material.zod.invalid_value_multiple" | "material.zod.too_big_inclusive" | "material.zod.too_big_exclusive" | "material.zod.too_big_no_unit_inclusive" | "material.zod.too_big_no_unit_exclusive" | "material.zod.too_small_inclusive" | "material.zod.too_small_exclusive" | "material.zod.too_small_no_unit_inclusive" | "material.zod.too_small_no_unit_exclusive" | "material.zod.not_multiple_of" | "material.zod.unrecognized_keys_single" | "material.zod.unrecognized_keys_multiple" | "material.zod.invalid_key" | "material.zod.invalid_union" | "material.zod.invalid_element" | "material.zod.invalid_type.string" | "material.zod.invalid_type.number" | "material.zod.invalid_type.bigint" | "material.zod.invalid_type.boolean" | "material.zod.invalid_type.symbol" | "material.zod.invalid_type.undefined" | "material.zod.invalid_type.object" | "material.zod.invalid_type.function" | "material.zod.invalid_type.default" | "material.zod.invalid_type.date" | "material.zod.invalid_type.array" | "material.zod.invalid_type.null" | "material.zod.invalid_type.enum" | "material.zod.invalid_format.includes" | "material.zod.invalid_format.default" | "material.zod.invalid_format.starts_with" | "material.zod.invalid_format.ends_with" | "material.zod.invalid_format.regex" | "material.zod.nouns.time" | "material.zod.nouns.emoji" | "material.zod.nouns.nanoid" | "material.zod.nouns.cuid" | "material.zod.nouns.cuid2" | "material.zod.nouns.date" | "material.zod.nouns.duration" | "material.zod.nouns.datetime" | "material.zod.nouns.email" | "material.zod.nouns.regex" | "material.zod.nouns.url" | "material.zod.nouns.uuid" | "material.zod.nouns.uuidv4" | "material.zod.nouns.uuidv6" | "material.zod.nouns.guid" | "material.zod.nouns.ulid" | "material.zod.nouns.xid" | "material.zod.nouns.ksuid" | "material.zod.nouns.ipv4" | "material.zod.nouns.ipv6" | "material.zod.nouns.mac" | "material.zod.nouns.cidrv4" | "material.zod.nouns.cidrv6" | "material.zod.nouns.base64" | "material.zod.nouns.base64url" | "material.zod.nouns.json_string" | "material.zod.nouns.e164" | "material.zod.nouns.jwt" | "material.zod.nouns.template_literal" | "material.zod.sizing.string.unit" | "material.zod.sizing.string.verb" | "material.zod.sizing.set.unit" | "material.zod.sizing.set.verb" | "material.zod.sizing.file.unit" | "material.zod.sizing.file.verb" | "material.zod.sizing.array.unit" | "material.zod.sizing.array.verb" | "material.pdf-reader.label" | "material.pdf-reader.rotate" | "material.pdf-reader.download" | "material.pdf-reader.print" | "material.pdf-reader.search" | "material.pdf-reader.sidebar" | "material.pdf-reader.unlock" | "material.pdf-reader.error" | "material.pdf-reader.loading" | "material.pdf-reader.empty" | "material.pdf-reader.zoom-in" | "material.pdf-reader.zoom-out" | "material.pdf-reader.fullscreen" | "material.pdf-reader.exit-fullscreen" | "material.pdf-reader.password" | "material.pdf-reader.password-placeholder" | "material.pdf-reader.pages" | "material.pdf-reader.outline" | "material.pdf-reader.outline-empty" | "material.pdf-reader.fit-width" | "material.pdf-reader.fit-page" | "material.pdf-reader.fit-width-full" | "material.pdf-reader.fit-page-full" | "material.pdf-reader.sidebar-toggle" | "material.pdf-reader.previous-page" | "material.pdf-reader.next-page" | "material.pdf-reader.current-page" | "material.pdf-reader.search-shortcut" | "material.pdf-reader.search-next" | "material.pdf-reader.search-prev" | "material.pdf-reader.night" | "material.pdf-reader.day" | "material.pdf-reader.thumbnails" | "material.pdf-reader.go-to-page" | "material.image-cropper.title" | "material.image-cropper.cancel" | "material.image-cropper.rotate-left" | "material.image-cropper.rotate-right" | "material.image-cropper.zoom" | "material.image-cropper.error" | "material.image-cropper.apply" | "material.image-cropper.free" | "material.carousel.previous" | "material.carousel.next" | "material.barecode.label" | "material.banner.dismiss" | "material.avatar-group.more" | "material.search-field.clear" | "material.search-field.placeholder" | "material.password-field.strong" | "material.password-field.hide" | "material.password-field.show" | "material.password-field.too-weak" | "material.password-field.weak" | "material.password-field.fair" | "material.password-field.very-strong" | "material.stat-card.increase" | "material.stat-card.decrease" | "material.stat-card.unchanged" | "material.color-field.open" | "material.split-button.more" | "material.file-list.label" | "material.file-list.download" | "material.file-list.remove" | "material.file-list.replace" | "material.file-list.empty" | "material.file-list.retry" | "material.inline-edit.placeholder" | "material.inline-edit.cancel" | "material.inline-edit.edit" | "material.inline-edit.save" | "material.number-field.increase" | "material.number-field.decrease" | "material.textarea-field.count" | "material.chip.dismiss" | "material.pagination.page" | "material.pagination.more" | "material.phone-field.placeholder" | "material.phone-field.search" | "material.phone-field.empty" | "material.phone-field.country" | "material.rating-field.star" | "material.theme-toggle.light" | "material.theme-toggle.dark" | "material.theme-toggle.system" | "material.language-switcher.label" | "material.email-field.invalid" | "material.email-field.mailto" | "material.url-field.open" | "material.url-field.invalid" | "material.stepper.step" | "material.combobox-field.placeholder" | "material.combobox-field.empty" | "material.autocomplete.add" | "material.autocomplete.empty" | "material.avatar.active" | "material.avatar.online" | "material.avatar.offline" | "material.avatar.away" | "material.avatar.busy" | "material.country-field.placeholder" | "material.duration-field.hours" | "material.duration-field.minutes" | "material.count-badge.label" | "material.timezone-field.placeholder" | "material.app-shell.home" | "material.app-shell.open-menu" | "material.transfer-list.max" | "material.transfer-list.search" | "material.transfer-list.selected" | "material.transfer-list.count" | "material.transfer-list.available" | "material.transfer-list.select-all" | "material.transfer-list.move-to-selected" | "material.transfer-list.move-all-to-selected" | "material.transfer-list.move-to-available" | "material.transfer-list.move-all-to-available" | "material.transfer-list.move-up" | "material.transfer-list.move-down" | "material.transfer-list.empty-available" | "material.transfer-list.empty-selected" | "material.transfer-list.empty-filter" | "material.transfer-list.locked" | "material.transfer-list.drag" | "material.sortable-list.search" | "material.sortable-list.empty" | "material.sortable-list.move-up" | "material.sortable-list.move-down" | "material.sortable-list.empty-filter" | "material.sortable-list.drag" | "material.event-calendar.delete" | "material.event-calendar.add" | "material.event-calendar.title" | "material.event-calendar.color" | "material.event-calendar.search" | "material.event-calendar.description" | "material.event-calendar.delete-confirm" | "material.event-calendar.previous" | "material.event-calendar.next" | "material.event-calendar.empty" | "material.event-calendar.more" | "material.event-calendar.day" | "material.event-calendar.drag" | "material.event-calendar.today" | "material.event-calendar.month" | "material.event-calendar.week" | "material.event-calendar.workweek" | "material.event-calendar.agenda" | "material.event-calendar.all-day" | "material.event-calendar.events" | "material.event-calendar.resize" | "material.event-calendar.new-event" | "material.event-calendar.new-all-day" | "material.event-calendar.pick-date" | "material.event-calendar.no-results" | "material.dnd.drag" | "material.rich-text-editor.orientation" | "material.rich-text-editor.type" | "material.rich-text-editor.label" | "material.rich-text-editor.clear" | "material.rich-text-editor.size" | "material.rich-text-editor.accordion" | "material.rich-text-editor.blockquote" | "material.rich-text-editor.caption" | "material.rich-text-editor.header" | "material.rich-text-editor.link" | "material.rich-text-editor.table" | "material.rich-text-editor.title" | "material.rich-text-editor.font-family" | "material.rich-text-editor.align-center" | "material.rich-text-editor.align-left" | "material.rich-text-editor.align-right" | "material.rich-text-editor.bold" | "material.rich-text-editor.cancel" | "material.rich-text-editor.columns" | "material.rich-text-editor.heading" | "material.rich-text-editor.horizontal-rule" | "material.rich-text-editor.images" | "material.rich-text-editor.italic" | "material.rich-text-editor.remove" | "material.rich-text-editor.rows" | "material.rich-text-editor.strikethrough" | "material.rich-text-editor.subscript" | "material.rich-text-editor.superscript" | "material.rich-text-editor.underline" | "material.rich-text-editor.icon" | "material.rich-text-editor.content" | "material.rich-text-editor.description" | "material.rich-text-editor.emoji" | "material.rich-text-editor.characters" | "material.rich-text-editor.words" | "material.rich-text-editor.gallery" | "material.rich-text-editor.apply" | "material.rich-text-editor.options" | "material.rich-text-editor.code-block" | "material.rich-text-editor.heading-n" | "material.rich-text-editor.text-color" | "material.rich-text-editor.highlight" | "material.rich-text-editor.pick-color" | "material.rich-text-editor.justify" | "material.rich-text-editor.bullet-list" | "material.rich-text-editor.ordered-list" | "material.rich-text-editor.task-list" | "material.rich-text-editor.insert-image" | "material.rich-text-editor.image-url" | "material.rich-text-editor.remove-link" | "material.rich-text-editor.youtube-url" | "material.rich-text-editor.embed-youtube" | "material.rich-text-editor.emoji-picker" | "material.rich-text-editor.emoji-description" | "material.rich-text-editor.no-result" | "material.rich-text-editor.no-commands" | "material.rich-text-editor.insert-table" | "material.rich-text-editor.delete-table" | "material.rich-text-editor.table-properties" | "material.rich-text-editor.insert-before" | "material.rich-text-editor.insert-after" | "material.rich-text-editor.toggle-header-row" | "material.rich-text-editor.toggle-header-column" | "material.rich-text-editor.cell-background" | "material.rich-text-editor.merge-splitting" | "material.rich-text-editor.merge-cells" | "material.rich-text-editor.split-cell" | "material.rich-text-editor.caption-placeholder" | "material.rich-text-editor.caption-alignment" | "material.rich-text-editor.alignment" | "material.rich-text-editor.insert-callout" | "material.rich-text-editor.edit-callout" | "material.rich-text-editor.edit-callout-description" | "material.rich-text-editor.add-description" | "material.rich-text-editor.edit-item" | "material.rich-text-editor.edit-item-description" | "material.rich-text-editor.remove-item" | "material.rich-text-editor.add-item" | "material.rich-text-editor.action-card" | "material.rich-text-editor.action-card-settings" | "material.rich-text-editor.action-card-settings-description" | "material.rich-text-editor.edit-card" | "material.rich-text-editor.edit-card-description" | "material.rich-text-editor.remove-card" | "material.rich-text-editor.add-card" | "material.rich-text-editor.link-optional" | "material.rich-text-editor.edit-gallery" | "material.rich-text-editor.edit-gallery-description" | "material.rich-text-editor.add-image" | "material.rich-text-editor.add-images" | "material.rich-text-editor.alt-text" | "material.rich-text-editor.no-images" | "material.rich-text-editor.select-chips" | "material.rich-text-editor.select-cards" | "material.rich-text-editor.edit-selector" | "material.rich-text-editor.edit-selector-description" | "material.rich-text-editor.selector-settings" | "material.rich-text-editor.selector-settings-description" | "material.rich-text-editor.optional-heading" | "material.rich-text-editor.selection" | "material.rich-text-editor.add-options" | "material.rich-text-editor.edit-option" | "material.rich-text-editor.edit-option-description" | "material.rich-text-editor.remove-option" | "material.rich-text-editor.add-option" | "material.rich-text-editor.checkbox-group" | "material.rich-text-editor.edit-checkbox-group" | "material.rich-text-editor.edit-checkbox-group-description" | "material.rich-text-editor.radio-group" | "material.rich-text-editor.edit-radio-group" | "material.rich-text-editor.edit-radio-group-description" | "material.kanban.search" | "material.kanban.card-title" | "material.kanban.empty" | "material.kanban.drag" | "material.kanban.no-results" | "material.kanban.add-card" | "material.kanban.wip" | "material.kanban.drag-column" | "material.kanban.ungrouped" | "material.kanban.collapse-group" | "material.kanban.expand-group" | "material.kanban.collapse-column" | "material.kanban.expand-column" | "material.kanban.new-card" | "material.kanban.subtitle" | "material.kanban.wip-full" | "material.doc.filter" | "material.doc.menu" | "material.doc.edit" | "material.doc.expand" | "material.doc.search" | "material.doc.see-also" | "material.doc.previous" | "material.doc.next" | "material.doc.collapse" | "material.doc.on-this-page" | "material.doc.no-results" | "material.doc.search-placeholder" | "material.doc.filter-empty" | "material.doc.search-navigate" | "material.doc.search-select" | "material.doc.search-close" | "material.doc.skip-to-content" | "material.doc.reading-progress" | "material.doc.menu-description" | "material.doc.copy-link" | "material.doc.copied-link" | "material.doc.copy-page" | "material.doc.copy-markdown" | "material.doc.last-updated" | "material.param-table.type" | "material.param-table.default" | "material.param-table.name" | "material.param-table.required" | "material.param-table.description", string];
|
|
8
|
+
export declare function contactValuePlaceholder(type: ContactType | string | null): readonly ["material.scroll-progress" | "material.skip-link" | "material.see-also" | "material.filter.title" | "material.filter.trigger" | "material.filter.apply" | "material.filter.reset" | "material.filter.clear-all" | "material.code.copy" | "material.code.language" | "material.code.copied" | "material.code.word-wrap" | "material.pagination.previous" | "material.pagination.next" | "material.table.pagination.previous" | "material.table.pagination.next" | "material.table.pagination.go-to-next-page" | "material.table.pagination.go-to-previous-page" | "material.table.pagination.go-to-first-page" | "material.table.pagination.go-to-last-page" | "material.table.pagination.rows-per-page" | "material.table.pagination.rows-selected" | "material.table.pagination.page-of" | "material.table.labels.desc" | "material.table.labels.view" | "material.table.labels.asc" | "material.table.labels.hide" | "material.table.labels.actions" | "material.table.labels.delete-selected-rows" | "material.table.labels.toggle-columns" | "material.table.labels.no-data" | "material.table.delete-confirm.title" | "material.table.delete-confirm.cancel" | "material.table.delete-confirm.description" | "material.table.delete-confirm.confirm" | "material.camera.stop" | "material.camera.start" | "material.camera.capture" | "material.camera.captured" | "material.cards.per-month" | "material.cards.total" | "material.cards.rating" | "material.command.title" | "material.command.description" | "material.copy.copy" | "material.copy.copied" | "material.language.en" | "material.language.fr" | "material.pager.previous" | "material.pager.next" | "material.qrcode.label" | "material.skeleton.loading" | "material.timeline.label" | "material.timeline.empty" | "material.tree.label" | "material.tree.expand" | "material.tree.collapse" | "material.upload.dropzone.idle" | "material.upload.dropzone.at-capacity" | "material.upload.dropzone.files-selected" | "material.empty-state.empty.title" | "material.empty-state.empty.description" | "material.empty-state.not-found.title" | "material.empty-state.not-found.description" | "material.empty-state.unauthorized.title" | "material.empty-state.unauthorized.description" | "material.empty-state.generic.title" | "material.empty-state.generic.description" | "material.metrics.of-target" | "material.metrics.of-limit" | "material.metrics.this-period" | "material.metrics.last-period" | "material.metrics.weekdays" | "material.toc.on-this-page" | "material.image-field.remove" | "material.image-field.replace" | "material.image-field.choose" | "material.image-field.retry" | "material.buttons.delete" | "material.buttons.add" | "material.buttons.save" | "material.buttons.load-more" | "material.buttons.ok" | "material.json-viewer.expand" | "material.json-viewer.items" | "material.json-viewer.collapse" | "material.json-viewer.invalid" | "material.chat.placeholder" | "material.chat.copy" | "material.chat.message" | "material.chat.send" | "material.chat.empty" | "material.chat.retry" | "material.chat.attach" | "material.chat.remove-attachment" | "material.chat.scroll-to-latest" | "material.chat.add-reaction" | "material.chat.attachment-type" | "material.chat.attachment-max-files" | "material.chat.attachment-max-size" | "material.chat.typing" | "material.chat.empty-description" | "material.chat.send-failed" | "material.gallery.label" | "material.gallery.delete" | "material.gallery.select" | "material.gallery.open" | "material.gallery.close" | "material.gallery.download" | "material.gallery.play" | "material.gallery.repeat" | "material.gallery.previous" | "material.gallery.next" | "material.gallery.empty" | "material.gallery.empty-description" | "material.gallery.of" | "material.gallery.more" | "material.gallery.zoom-in" | "material.gallery.zoom-out" | "material.gallery.repeat-off" | "material.gallery.selected" | "material.gallery.clear-selection" | "material.notifications.label" | "material.notifications.search" | "material.notifications.empty" | "material.notifications.empty-description" | "material.notifications.empty-unread" | "material.notifications.empty-unread-description" | "material.notifications.read-all" | "material.notifications.filter-all" | "material.notifications.filter-unread" | "material.notifications.filter-category-all" | "material.notifications.dismiss" | "material.notifications.dismiss-item" | "material.education.progress" | "material.education.true" | "material.education.false" | "material.education.previous" | "material.education.next" | "material.education.empty" | "material.education.retry" | "material.education.answer-placeholder" | "material.education.expected" | "material.education.submit" | "material.education.answered" | "material.education.score" | "material.education.results" | "material.stx-player.audio" | "material.stx-player.video" | "material.stx-player.pause" | "material.stx-player.play" | "material.stx-player.repeat" | "material.stx-player.volume" | "material.stx-player.error" | "material.stx-player.loading" | "material.stx-player.previous" | "material.stx-player.next" | "material.stx-player.retry" | "material.stx-player.empty-description" | "material.stx-player.repeat-off" | "material.stx-player.mute" | "material.stx-player.unmute" | "material.stx-player.fullscreen" | "material.stx-player.exit-fullscreen" | "material.stx-player.pip" | "material.stx-player.exit-pip" | "material.stx-player.captions" | "material.stx-player.captions-off" | "material.stx-player.playback-rate" | "material.stx-player.queue" | "material.stx-player.now-playing" | "material.stx-player.buffering" | "material.stx-player.empty-title" | "material.stx-player.normal" | "material.attributes.buttons.add" | "material.attributes.buttons.save" | "material.attributes.form.type.label" | "material.attributes.form.type.placeholder" | "material.attributes.form.label.label" | "material.attributes.form.label.placeholder" | "material.attributes.form.name.label" | "material.attributes.form.name.placeholder" | "material.attributes.form.description.label" | "material.attributes.form.description.placeholder" | "material.attributes.form.default-value.label" | "material.attributes.form.default-value.placeholder" | "material.attributes.form.priority.label" | "material.attributes.form.priority.placeholder" | "material.attributes.form.options.label" | "material.attributes.form.options.placeholder" | "material.attributes.form.unit.label" | "material.attributes.form.unit.placeholder" | "material.attributes.messages.dialog" | "material.attributes.messages.empty" | "material.attributes.messages.create-succeeded" | "material.attributes.messages.update-succeeded" | "material.attributes.messages.delete-succeeded" | "material.attributes.messages.add-first" | "material.attributes.buttons.details" | "material.attributes.buttons.cancel" | "material.attributes.buttons.edit" | "material.attributes.buttons.remove" | "material.attributes.labels.attributes" | "material.attributes.labels.new-attribute" | "material.attributes.types.string" | "material.attributes.types.number" | "material.attributes.types.boolean" | "material.attributes.types.select" | "material.attributes.types.time" | "material.attributes.types.text" | "material.attributes.types.color" | "material.attributes.types.date" | "material.attributes.types.datetime" | "material.attributes.types.multi-select" | "material.attributes.types.rich-text" | "material.attributes.fields.type" | "material.attributes.fields.label" | "material.attributes.fields.name" | "material.attributes.fields.description" | "material.attributes.fields.default-value" | "material.attributes.fields.priority" | "material.attributes.fields.options" | "material.attributes.fields.unit" | "material.contacts.buttons.add" | "material.contacts.buttons.save" | "material.contacts.messages.dialog" | "material.contacts.messages.add-first" | "material.contacts.buttons.cancel" | "material.contacts.buttons.edit" | "material.contacts.buttons.remove" | "material.contacts.fields.type" | "material.contacts.fields.label" | "material.contacts.messages.no-contacts" | "material.contacts.labels.contacts" | "material.contacts.types.fax" | "material.contacts.types.mobile" | "material.contacts.types.phone" | "material.contacts.types.email" | "material.contacts.types.website" | "material.contacts.fields.value" | "material.contacts.placeholders.type" | "material.contacts.placeholders.label" | "material.contacts.placeholders.value" | "material.contacts.placeholders.fax" | "material.contacts.placeholders.mobile" | "material.contacts.placeholders.phone" | "material.contacts.placeholders.email" | "material.contacts.placeholders.website" | "material.opening-hours.buttons.add" | "material.opening-hours.buttons.save" | "material.opening-hours.messages.dialog" | "material.opening-hours.messages.add-first" | "material.opening-hours.buttons.cancel" | "material.opening-hours.buttons.edit" | "material.opening-hours.buttons.remove" | "material.opening-hours.messages.no-hours" | "material.opening-hours.buttons.add-all" | "material.opening-hours.labels.closed-all-day" | "material.opening-hours.labels.open-hours" | "material.opening-hours.fields.dayOfWeek" | "material.opening-hours.fields.openTime" | "material.opening-hours.fields.closeTime" | "material.opening-hours.fields.isClosed" | "material.opening-hours.placeholders.dayOfWeek" | "material.opening-hours.placeholders.openTime" | "material.opening-hours.placeholders.closeTime" | "material.opening-hours.days.0" | "material.opening-hours.days.1" | "material.opening-hours.days.2" | "material.opening-hours.days.3" | "material.opening-hours.days.4" | "material.opening-hours.days.5" | "material.opening-hours.days.6" | "material.opening-hours.daysShort.0" | "material.opening-hours.daysShort.1" | "material.opening-hours.daysShort.2" | "material.opening-hours.daysShort.3" | "material.opening-hours.daysShort.4" | "material.opening-hours.daysShort.5" | "material.opening-hours.daysShort.6" | "material.postal-address.buttons.add" | "material.postal-address.buttons.save" | "material.postal-address.messages.dialog" | "material.postal-address.messages.empty" | "material.postal-address.messages.add-first" | "material.postal-address.buttons.cancel" | "material.postal-address.buttons.edit" | "material.postal-address.buttons.remove" | "material.postal-address.labels.address" | "material.postal-address.fields.street" | "material.postal-address.fields.locality" | "material.postal-address.fields.region" | "material.postal-address.fields.postalCode" | "material.postal-address.fields.country" | "material.postal-address.placeholders.street" | "material.postal-address.placeholders.locality" | "material.postal-address.placeholders.region" | "material.postal-address.placeholders.postalCode" | "material.postal-address.placeholders.country" | "material.toast.buttons.close" | "material.toast.operations.success.title" | "material.toast.operations.error.title" | "material.toast.operations.loading.title" | "material.zod.default" | "material.zod.required" | "material.zod.invalid_value_single" | "material.zod.invalid_value_multiple" | "material.zod.too_big_inclusive" | "material.zod.too_big_exclusive" | "material.zod.too_big_no_unit_inclusive" | "material.zod.too_big_no_unit_exclusive" | "material.zod.too_small_inclusive" | "material.zod.too_small_exclusive" | "material.zod.too_small_no_unit_inclusive" | "material.zod.too_small_no_unit_exclusive" | "material.zod.not_multiple_of" | "material.zod.unrecognized_keys_single" | "material.zod.unrecognized_keys_multiple" | "material.zod.invalid_key" | "material.zod.invalid_union" | "material.zod.invalid_element" | "material.zod.invalid_type.string" | "material.zod.invalid_type.number" | "material.zod.invalid_type.bigint" | "material.zod.invalid_type.boolean" | "material.zod.invalid_type.symbol" | "material.zod.invalid_type.undefined" | "material.zod.invalid_type.object" | "material.zod.invalid_type.function" | "material.zod.invalid_type.default" | "material.zod.invalid_type.date" | "material.zod.invalid_type.array" | "material.zod.invalid_type.null" | "material.zod.invalid_type.enum" | "material.zod.invalid_format.includes" | "material.zod.invalid_format.default" | "material.zod.invalid_format.starts_with" | "material.zod.invalid_format.ends_with" | "material.zod.invalid_format.regex" | "material.zod.nouns.time" | "material.zod.nouns.emoji" | "material.zod.nouns.nanoid" | "material.zod.nouns.cuid" | "material.zod.nouns.cuid2" | "material.zod.nouns.date" | "material.zod.nouns.duration" | "material.zod.nouns.datetime" | "material.zod.nouns.email" | "material.zod.nouns.regex" | "material.zod.nouns.url" | "material.zod.nouns.uuid" | "material.zod.nouns.uuidv4" | "material.zod.nouns.uuidv6" | "material.zod.nouns.guid" | "material.zod.nouns.ulid" | "material.zod.nouns.xid" | "material.zod.nouns.ksuid" | "material.zod.nouns.ipv4" | "material.zod.nouns.ipv6" | "material.zod.nouns.mac" | "material.zod.nouns.cidrv4" | "material.zod.nouns.cidrv6" | "material.zod.nouns.base64" | "material.zod.nouns.base64url" | "material.zod.nouns.json_string" | "material.zod.nouns.e164" | "material.zod.nouns.jwt" | "material.zod.nouns.template_literal" | "material.zod.sizing.string.unit" | "material.zod.sizing.string.verb" | "material.zod.sizing.set.unit" | "material.zod.sizing.set.verb" | "material.zod.sizing.file.unit" | "material.zod.sizing.file.verb" | "material.zod.sizing.array.unit" | "material.zod.sizing.array.verb" | "material.pdf-reader.label" | "material.pdf-reader.rotate" | "material.pdf-reader.download" | "material.pdf-reader.print" | "material.pdf-reader.search" | "material.pdf-reader.sidebar" | "material.pdf-reader.unlock" | "material.pdf-reader.error" | "material.pdf-reader.loading" | "material.pdf-reader.empty" | "material.pdf-reader.zoom-in" | "material.pdf-reader.zoom-out" | "material.pdf-reader.fullscreen" | "material.pdf-reader.exit-fullscreen" | "material.pdf-reader.password" | "material.pdf-reader.password-placeholder" | "material.pdf-reader.pages" | "material.pdf-reader.outline" | "material.pdf-reader.outline-empty" | "material.pdf-reader.fit-width" | "material.pdf-reader.fit-page" | "material.pdf-reader.fit-width-full" | "material.pdf-reader.fit-page-full" | "material.pdf-reader.sidebar-toggle" | "material.pdf-reader.previous-page" | "material.pdf-reader.next-page" | "material.pdf-reader.current-page" | "material.pdf-reader.search-shortcut" | "material.pdf-reader.search-next" | "material.pdf-reader.search-prev" | "material.pdf-reader.night" | "material.pdf-reader.day" | "material.pdf-reader.thumbnails" | "material.pdf-reader.go-to-page" | "material.image-cropper.title" | "material.image-cropper.cancel" | "material.image-cropper.rotate-left" | "material.image-cropper.rotate-right" | "material.image-cropper.zoom" | "material.image-cropper.error" | "material.image-cropper.apply" | "material.image-cropper.free" | "material.carousel.previous" | "material.carousel.next" | "material.barecode.label" | "material.banner.dismiss" | "material.avatar-group.more" | "material.search-field.clear" | "material.search-field.placeholder" | "material.password-field.strong" | "material.password-field.hide" | "material.password-field.show" | "material.password-field.too-weak" | "material.password-field.weak" | "material.password-field.fair" | "material.password-field.very-strong" | "material.stat-card.increase" | "material.stat-card.decrease" | "material.stat-card.unchanged" | "material.color-field.open" | "material.split-button.more" | "material.file-list.label" | "material.file-list.download" | "material.file-list.remove" | "material.file-list.replace" | "material.file-list.empty" | "material.file-list.retry" | "material.inline-edit.placeholder" | "material.inline-edit.cancel" | "material.inline-edit.edit" | "material.inline-edit.save" | "material.number-field.increase" | "material.number-field.decrease" | "material.textarea-field.count" | "material.chip.dismiss" | "material.pagination.page" | "material.pagination.more" | "material.phone-field.placeholder" | "material.phone-field.search" | "material.phone-field.empty" | "material.phone-field.country" | "material.rating-field.star" | "material.theme-toggle.light" | "material.theme-toggle.dark" | "material.theme-toggle.system" | "material.language-switcher.label" | "material.email-field.invalid" | "material.email-field.mailto" | "material.url-field.open" | "material.url-field.invalid" | "material.stepper.step" | "material.combobox-field.placeholder" | "material.combobox-field.empty" | "material.autocomplete.add" | "material.autocomplete.empty" | "material.avatar.active" | "material.avatar.online" | "material.avatar.offline" | "material.avatar.away" | "material.avatar.busy" | "material.country-field.placeholder" | "material.duration-field.hours" | "material.duration-field.minutes" | "material.count-badge.label" | "material.timezone-field.placeholder" | "material.app-shell.home" | "material.app-shell.open-menu" | "material.transfer-list.max" | "material.transfer-list.search" | "material.transfer-list.selected" | "material.transfer-list.count" | "material.transfer-list.available" | "material.transfer-list.select-all" | "material.transfer-list.move-to-selected" | "material.transfer-list.move-all-to-selected" | "material.transfer-list.move-to-available" | "material.transfer-list.move-all-to-available" | "material.transfer-list.move-up" | "material.transfer-list.move-down" | "material.transfer-list.empty-available" | "material.transfer-list.empty-selected" | "material.transfer-list.empty-filter" | "material.transfer-list.locked" | "material.transfer-list.drag" | "material.sortable-list.search" | "material.sortable-list.empty" | "material.sortable-list.move-up" | "material.sortable-list.move-down" | "material.sortable-list.empty-filter" | "material.sortable-list.drag" | "material.event-calendar.delete" | "material.event-calendar.add" | "material.event-calendar.title" | "material.event-calendar.color" | "material.event-calendar.search" | "material.event-calendar.description" | "material.event-calendar.delete-confirm" | "material.event-calendar.previous" | "material.event-calendar.next" | "material.event-calendar.empty" | "material.event-calendar.more" | "material.event-calendar.day" | "material.event-calendar.drag" | "material.event-calendar.today" | "material.event-calendar.month" | "material.event-calendar.week" | "material.event-calendar.workweek" | "material.event-calendar.agenda" | "material.event-calendar.all-day" | "material.event-calendar.events" | "material.event-calendar.resize" | "material.event-calendar.new-event" | "material.event-calendar.new-all-day" | "material.event-calendar.pick-date" | "material.event-calendar.no-results" | "material.dnd.drag" | "material.rich-text-editor.orientation" | "material.rich-text-editor.type" | "material.rich-text-editor.label" | "material.rich-text-editor.clear" | "material.rich-text-editor.size" | "material.rich-text-editor.accordion" | "material.rich-text-editor.blockquote" | "material.rich-text-editor.caption" | "material.rich-text-editor.header" | "material.rich-text-editor.link" | "material.rich-text-editor.table" | "material.rich-text-editor.title" | "material.rich-text-editor.font-family" | "material.rich-text-editor.align-center" | "material.rich-text-editor.align-left" | "material.rich-text-editor.align-right" | "material.rich-text-editor.bold" | "material.rich-text-editor.cancel" | "material.rich-text-editor.columns" | "material.rich-text-editor.heading" | "material.rich-text-editor.horizontal-rule" | "material.rich-text-editor.images" | "material.rich-text-editor.italic" | "material.rich-text-editor.remove" | "material.rich-text-editor.rows" | "material.rich-text-editor.strikethrough" | "material.rich-text-editor.subscript" | "material.rich-text-editor.superscript" | "material.rich-text-editor.underline" | "material.rich-text-editor.icon" | "material.rich-text-editor.content" | "material.rich-text-editor.description" | "material.rich-text-editor.emoji" | "material.rich-text-editor.characters" | "material.rich-text-editor.words" | "material.rich-text-editor.gallery" | "material.rich-text-editor.apply" | "material.rich-text-editor.options" | "material.rich-text-editor.code-block" | "material.rich-text-editor.heading-n" | "material.rich-text-editor.text-color" | "material.rich-text-editor.highlight" | "material.rich-text-editor.pick-color" | "material.rich-text-editor.justify" | "material.rich-text-editor.bullet-list" | "material.rich-text-editor.ordered-list" | "material.rich-text-editor.task-list" | "material.rich-text-editor.insert-image" | "material.rich-text-editor.image-url" | "material.rich-text-editor.remove-link" | "material.rich-text-editor.youtube-url" | "material.rich-text-editor.embed-youtube" | "material.rich-text-editor.emoji-picker" | "material.rich-text-editor.emoji-description" | "material.rich-text-editor.no-result" | "material.rich-text-editor.no-commands" | "material.rich-text-editor.insert-table" | "material.rich-text-editor.delete-table" | "material.rich-text-editor.table-properties" | "material.rich-text-editor.insert-before" | "material.rich-text-editor.insert-after" | "material.rich-text-editor.toggle-header-row" | "material.rich-text-editor.toggle-header-column" | "material.rich-text-editor.cell-background" | "material.rich-text-editor.merge-splitting" | "material.rich-text-editor.merge-cells" | "material.rich-text-editor.split-cell" | "material.rich-text-editor.caption-placeholder" | "material.rich-text-editor.caption-alignment" | "material.rich-text-editor.alignment" | "material.rich-text-editor.insert-callout" | "material.rich-text-editor.edit-callout" | "material.rich-text-editor.edit-callout-description" | "material.rich-text-editor.add-description" | "material.rich-text-editor.edit-item" | "material.rich-text-editor.edit-item-description" | "material.rich-text-editor.remove-item" | "material.rich-text-editor.add-item" | "material.rich-text-editor.action-card" | "material.rich-text-editor.action-card-settings" | "material.rich-text-editor.action-card-settings-description" | "material.rich-text-editor.edit-card" | "material.rich-text-editor.edit-card-description" | "material.rich-text-editor.remove-card" | "material.rich-text-editor.add-card" | "material.rich-text-editor.link-optional" | "material.rich-text-editor.edit-gallery" | "material.rich-text-editor.edit-gallery-description" | "material.rich-text-editor.add-image" | "material.rich-text-editor.add-images" | "material.rich-text-editor.alt-text" | "material.rich-text-editor.no-images" | "material.rich-text-editor.select-chips" | "material.rich-text-editor.select-cards" | "material.rich-text-editor.edit-selector" | "material.rich-text-editor.edit-selector-description" | "material.rich-text-editor.selector-settings" | "material.rich-text-editor.selector-settings-description" | "material.rich-text-editor.optional-heading" | "material.rich-text-editor.selection" | "material.rich-text-editor.add-options" | "material.rich-text-editor.edit-option" | "material.rich-text-editor.edit-option-description" | "material.rich-text-editor.remove-option" | "material.rich-text-editor.add-option" | "material.rich-text-editor.checkbox-group" | "material.rich-text-editor.edit-checkbox-group" | "material.rich-text-editor.edit-checkbox-group-description" | "material.rich-text-editor.radio-group" | "material.rich-text-editor.edit-radio-group" | "material.rich-text-editor.edit-radio-group-description" | "material.kanban.search" | "material.kanban.card-title" | "material.kanban.empty" | "material.kanban.drag" | "material.kanban.no-results" | "material.kanban.add-card" | "material.kanban.wip" | "material.kanban.drag-column" | "material.kanban.ungrouped" | "material.kanban.collapse-group" | "material.kanban.expand-group" | "material.kanban.collapse-column" | "material.kanban.expand-column" | "material.kanban.new-card" | "material.kanban.subtitle" | "material.kanban.wip-full" | "material.doc.filter" | "material.doc.menu" | "material.doc.edit" | "material.doc.expand" | "material.doc.search" | "material.doc.see-also" | "material.doc.previous" | "material.doc.next" | "material.doc.collapse" | "material.doc.on-this-page" | "material.doc.no-results" | "material.doc.search-placeholder" | "material.doc.filter-empty" | "material.doc.search-navigate" | "material.doc.search-select" | "material.doc.search-close" | "material.doc.skip-to-content" | "material.doc.reading-progress" | "material.doc.menu-description" | "material.doc.copy-link" | "material.doc.copied-link" | "material.doc.copy-page" | "material.doc.copy-markdown" | "material.doc.last-updated" | "material.param-table.type" | "material.param-table.default" | "material.param-table.name" | "material.param-table.required" | "material.param-table.description", string];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type BandCardProps = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
current: number;
|
|
6
|
+
min: number;
|
|
7
|
+
max: number;
|
|
8
|
+
low?: string;
|
|
9
|
+
high?: string;
|
|
10
|
+
class?: HTMLAttributes['class'];
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_export: import('vue').DefineComponent<BandCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BandCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
14
|
+
export default _default;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export type { BandCardProps } from './band-card.vue';
|
|
2
|
+
export { default as BandCard } from './band-card.vue';
|
|
1
3
|
export type { BreakdownCardProps, BreakdownItem } from './breakdown-card.vue';
|
|
2
4
|
export { default as BreakdownCard } from './breakdown-card.vue';
|
|
3
5
|
export type { CompareCardProps, ComparePoint } from './compare-card.vue';
|
|
@@ -12,11 +14,17 @@ export type { GoalCardProps } from './goal-card.vue';
|
|
|
12
14
|
export { default as GoalCard } from './goal-card.vue';
|
|
13
15
|
export type { HeatweekCardProps } from './heatweek-card.vue';
|
|
14
16
|
export { default as HeatweekCard } from './heatweek-card.vue';
|
|
17
|
+
export type { LatencyCardProps } from './latency-card.vue';
|
|
18
|
+
export { default as LatencyCard } from './latency-card.vue';
|
|
15
19
|
export type { RankCardProps, RankItem } from './rank-card.vue';
|
|
16
20
|
export { default as RankCard } from './rank-card.vue';
|
|
21
|
+
export type { RatioCardProps, RatioPoint } from './ratio-card.vue';
|
|
22
|
+
export { default as RatioCard } from './ratio-card.vue';
|
|
17
23
|
export type { SparkbarCardProps } from './sparkbar-card.vue';
|
|
18
24
|
export { default as SparkbarCard } from './sparkbar-card.vue';
|
|
19
25
|
export type { SparklineProps } from './sparkline.vue';
|
|
20
26
|
export { default as Sparkline } from './sparkline.vue';
|
|
27
|
+
export type { ThresholdCardProps } from './threshold-card.vue';
|
|
28
|
+
export { default as ThresholdCard } from './threshold-card.vue';
|
|
21
29
|
export type { TrendCardProps } from './trend-card.vue';
|
|
22
30
|
export { default as TrendCard } from './trend-card.vue';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type LatencyCardProps = {
|
|
3
|
+
label: string;
|
|
4
|
+
p50: string;
|
|
5
|
+
p95: string;
|
|
6
|
+
p99: string;
|
|
7
|
+
class?: HTMLAttributes['class'];
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_export: import('vue').DefineComponent<LatencyCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LatencyCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type RatioPoint = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
};
|
|
6
|
+
export type RatioCardProps = {
|
|
7
|
+
label: string;
|
|
8
|
+
left: RatioPoint;
|
|
9
|
+
right: RatioPoint;
|
|
10
|
+
percent: number;
|
|
11
|
+
class?: HTMLAttributes['class'];
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_export: import('vue').DefineComponent<RatioCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RatioCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
export type ThresholdCardProps = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
current: number;
|
|
6
|
+
limit: number;
|
|
7
|
+
unit?: string;
|
|
8
|
+
class?: HTMLAttributes['class'];
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_export: import('vue').DefineComponent<ThresholdCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ThresholdCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
@@ -36,9 +36,12 @@ export declare const en: {
|
|
|
36
36
|
"see-also": string;
|
|
37
37
|
cards: {
|
|
38
38
|
"per-month": string;
|
|
39
|
+
total: string;
|
|
40
|
+
rating: string;
|
|
39
41
|
};
|
|
40
42
|
metrics: {
|
|
41
43
|
"of-target": string;
|
|
44
|
+
"of-limit": string;
|
|
42
45
|
"this-period": string;
|
|
43
46
|
"last-period": string;
|
|
44
47
|
weekdays: string;
|
|
@@ -25,10 +25,13 @@ declare const _default: {
|
|
|
25
25
|
"skip-link": "Skip to content",
|
|
26
26
|
"see-also": "See also",
|
|
27
27
|
"cards": {
|
|
28
|
-
"per-month": "/ month"
|
|
28
|
+
"per-month": "/ month",
|
|
29
|
+
"total": "Total",
|
|
30
|
+
"rating": "{rating} out of {max}"
|
|
29
31
|
},
|
|
30
32
|
"metrics": {
|
|
31
33
|
"of-target": "of {target}",
|
|
34
|
+
"of-limit": "of {limit}",
|
|
32
35
|
"this-period": "This period",
|
|
33
36
|
"last-period": "Last period",
|
|
34
37
|
"weekdays": "M,T,W,T,F,S,S"
|
|
@@ -36,9 +36,12 @@ export declare const fr: {
|
|
|
36
36
|
"see-also": string;
|
|
37
37
|
cards: {
|
|
38
38
|
"per-month": string;
|
|
39
|
+
total: string;
|
|
40
|
+
rating: string;
|
|
39
41
|
};
|
|
40
42
|
metrics: {
|
|
41
43
|
"of-target": string;
|
|
44
|
+
"of-limit": string;
|
|
42
45
|
"this-period": string;
|
|
43
46
|
"last-period": string;
|
|
44
47
|
weekdays: string;
|
|
@@ -25,10 +25,13 @@ declare const _default: {
|
|
|
25
25
|
"skip-link": "Aller au contenu",
|
|
26
26
|
"see-also": "Voir aussi",
|
|
27
27
|
"cards": {
|
|
28
|
-
"per-month": "/ mois"
|
|
28
|
+
"per-month": "/ mois",
|
|
29
|
+
"total": "Total",
|
|
30
|
+
"rating": "{rating} sur {max}"
|
|
29
31
|
},
|
|
30
32
|
"metrics": {
|
|
31
33
|
"of-target": "sur {target}",
|
|
34
|
+
"of-limit": "sur {limit}",
|
|
32
35
|
"this-period": "Cette période",
|
|
33
36
|
"last-period": "Période préc.",
|
|
34
37
|
"weekdays": "L,M,M,J,V,S,D"
|
|
@@ -34,9 +34,12 @@ export declare const resources: {
|
|
|
34
34
|
"see-also": string;
|
|
35
35
|
cards: {
|
|
36
36
|
"per-month": string;
|
|
37
|
+
total: string;
|
|
38
|
+
rating: string;
|
|
37
39
|
};
|
|
38
40
|
metrics: {
|
|
39
41
|
"of-target": string;
|
|
42
|
+
"of-limit": string;
|
|
40
43
|
"this-period": string;
|
|
41
44
|
"last-period": string;
|
|
42
45
|
weekdays: string;
|
|
@@ -971,9 +974,12 @@ export declare const resources: {
|
|
|
971
974
|
"see-also": string;
|
|
972
975
|
cards: {
|
|
973
976
|
"per-month": string;
|
|
977
|
+
total: string;
|
|
978
|
+
rating: string;
|
|
974
979
|
};
|
|
975
980
|
metrics: {
|
|
976
981
|
"of-target": string;
|
|
982
|
+
"of-limit": string;
|
|
977
983
|
"this-period": string;
|
|
978
984
|
"last-period": string;
|
|
979
985
|
weekdays: string;
|