@porsche-design-system/components-react 4.6.0-rc.1 → 4.6.0-rc.2
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/CHANGELOG.md +61 -2
- package/OSS_NOTICE +5532 -2115
- package/cjs/lib/components/ai-tag.wrapper.cjs +1 -1
- package/cjs/lib/components/radio-group.wrapper.cjs +1 -1
- package/esm/lib/components/ai-tag.wrapper.d.ts +4 -4
- package/esm/lib/components/ai-tag.wrapper.mjs +1 -1
- package/esm/lib/components/input-number.wrapper.d.ts +6 -6
- package/esm/lib/components/input-text.wrapper.d.ts +6 -6
- package/esm/lib/components/multi-select-option.wrapper.d.ts +2 -2
- package/esm/lib/components/pin-code.wrapper.d.ts +6 -6
- package/esm/lib/components/radio-group-option.wrapper.d.ts +4 -4
- package/esm/lib/components/radio-group.wrapper.d.ts +4 -6
- package/esm/lib/components/radio-group.wrapper.mjs +1 -1
- package/esm/lib/components/segmented-control.wrapper.d.ts +4 -4
- package/esm/lib/components/wordmark.wrapper.d.ts +2 -2
- package/esm/lib/types.d.ts +184 -213
- package/package.json +6 -2
- package/skills/pds-knowledge-react/SKILL.md +3 -3
- package/skills/pds-knowledge-react/references/components/p-ai-tag/p-ai-tag.md +2 -2
- package/skills/pds-knowledge-react/references/components/p-button/p-button.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-button-pure/p-button-pure.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-button-tile/p-button-tile.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-carousel/p-carousel.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-icon/examples/Overview.tsx +6 -0
- package/skills/pds-knowledge-react/references/components/p-icon/p-icon.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-inline-notification/p-inline-notification.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-input-number/p-input-number.md +3 -3
- package/skills/pds-knowledge-react/references/components/p-input-text/p-input-text.md +3 -3
- package/skills/pds-knowledge-react/references/components/p-link/p-link.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-link-pure/p-link-pure.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-multi-select/examples/AsyncFilter.tsx +29 -6
- package/skills/pds-knowledge-react/references/components/p-multi-select/p-multi-select.md +2 -2
- package/skills/pds-knowledge-react/references/components/p-pin-code/p-pin-code.md +2 -2
- package/skills/pds-knowledge-react/references/components/p-radio-group/examples/Form.tsx +2 -2
- package/skills/pds-knowledge-react/references/components/p-radio-group/p-radio-group.md +3 -3
- package/skills/pds-knowledge-react/references/components/p-segmented-control/p-segmented-control.md +2 -2
- package/skills/pds-knowledge-react/references/components/p-select/examples/AsyncFilter.tsx +29 -6
- package/skills/pds-knowledge-react/references/components/p-select/p-select.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-tag/p-tag.md +1 -1
- package/skills/pds-knowledge-react/references/components/p-wordmark/p-wordmark.md +1 -1
- package/skills/pds-knowledge-react/references/icons.md +1 -1
- package/ssr/cjs/components/dist/styles/esm/styles-entry.cjs +203 -4
- package/ssr/cjs/components/dist/utils/esm/utils-entry.cjs +241 -40
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/ai-tag.wrapper.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/components/radio-group.wrapper.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/carousel.cjs +4 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/filter-status-announcer.cjs +7 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.cjs +3 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/no-results-option.cjs +1 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pin-code.cjs +7 -3
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group.cjs +4 -0
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.cjs +5 -1
- package/ssr/cjs/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.cjs +3 -4
- package/ssr/esm/components/dist/styles/esm/styles-entry.mjs +203 -5
- package/ssr/esm/components/dist/utils/esm/utils-entry.mjs +237 -41
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/ai-tag.wrapper.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/radio-group.wrapper.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/carousel.mjs +4 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/filter-status-announcer.mjs +5 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/multi-select.mjs +3 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/no-results-option.mjs +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pin-code.mjs +7 -3
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-group.mjs +4 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.mjs +5 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select.mjs +3 -4
- package/ssr/esm/lib/components/ai-tag.wrapper.d.ts +4 -4
- package/ssr/esm/lib/components/input-number.wrapper.d.ts +6 -6
- package/ssr/esm/lib/components/input-text.wrapper.d.ts +6 -6
- package/ssr/esm/lib/components/multi-select-option.wrapper.d.ts +2 -2
- package/ssr/esm/lib/components/pin-code.wrapper.d.ts +6 -6
- package/ssr/esm/lib/components/radio-group-option.wrapper.d.ts +4 -4
- package/ssr/esm/lib/components/radio-group.wrapper.d.ts +4 -6
- package/ssr/esm/lib/components/segmented-control.wrapper.d.ts +4 -4
- package/ssr/esm/lib/components/wordmark.wrapper.d.ts +2 -2
- package/ssr/esm/lib/dsr-components/carousel.d.ts +3 -0
- package/ssr/esm/lib/dsr-components/filter-status-announcer.d.ts +6 -0
- package/ssr/esm/lib/dsr-components/multi-select.d.ts +1 -0
- package/ssr/esm/lib/dsr-components/pin-code.d.ts +1 -0
- package/ssr/esm/lib/dsr-components/radio-group.d.ts +1 -0
- package/ssr/esm/lib/dsr-components/segmented-control.d.ts +1 -0
- package/ssr/esm/lib/dsr-components/select.d.ts +1 -1
- package/ssr/esm/lib/types.d.ts +184 -213
package/ssr/esm/lib/types.d.ts
CHANGED
|
@@ -326,10 +326,12 @@ declare const ICON_NAMES: readonly [
|
|
|
326
326
|
"compare",
|
|
327
327
|
"compass",
|
|
328
328
|
"configurate",
|
|
329
|
+
"connect-services",
|
|
329
330
|
"copy",
|
|
330
331
|
"country-road",
|
|
331
332
|
"coupe",
|
|
332
333
|
"cubic-capacity",
|
|
334
|
+
"customer-support",
|
|
333
335
|
"cut",
|
|
334
336
|
"delete",
|
|
335
337
|
"disable",
|
|
@@ -489,6 +491,7 @@ declare const ICON_NAMES: readonly [
|
|
|
489
491
|
"shopping-bag-filled",
|
|
490
492
|
"shopping-cart",
|
|
491
493
|
"shopping-cart-filled",
|
|
494
|
+
"shopping-cart-off",
|
|
492
495
|
"sidebar",
|
|
493
496
|
"sidelights",
|
|
494
497
|
"skip-backward",
|
|
@@ -784,225 +787,193 @@ export type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAt
|
|
|
784
787
|
export type SelectedAriaRole<T> = {
|
|
785
788
|
role: Extract<AriaRole, T>;
|
|
786
789
|
};
|
|
790
|
+
declare const MARKET_LOCALES: readonly [
|
|
791
|
+
"ar-BH",
|
|
792
|
+
"ar-KW",
|
|
793
|
+
"ar-QA",
|
|
794
|
+
"ar-SA",
|
|
795
|
+
"az-AZ",
|
|
796
|
+
"bg-BG",
|
|
797
|
+
"bs-BA",
|
|
798
|
+
"cs-CZ",
|
|
799
|
+
"cs-SK",
|
|
800
|
+
"da-DK",
|
|
801
|
+
"de-AT",
|
|
802
|
+
"de-CH",
|
|
803
|
+
"de-DE",
|
|
804
|
+
"de-LI",
|
|
805
|
+
"de-LU",
|
|
806
|
+
"el-GR",
|
|
807
|
+
"en",
|
|
808
|
+
"en-AE",
|
|
809
|
+
"en-AE-x-abu-dhabi",
|
|
810
|
+
"en-AE-x-abudhabi",
|
|
811
|
+
"en-AE-x-dubai",
|
|
812
|
+
"en-AL",
|
|
813
|
+
"en-AU",
|
|
814
|
+
"en-BA",
|
|
815
|
+
"en-BG",
|
|
816
|
+
"en-BH",
|
|
817
|
+
"en-BN",
|
|
818
|
+
"en-CA",
|
|
819
|
+
"en-CH",
|
|
820
|
+
"en-CN",
|
|
821
|
+
"en-CW",
|
|
822
|
+
"en-CY",
|
|
823
|
+
"en-CZ",
|
|
824
|
+
"en-DK",
|
|
825
|
+
"en-EE",
|
|
826
|
+
"en-EG",
|
|
827
|
+
"en-FI",
|
|
828
|
+
"en-GB",
|
|
829
|
+
"en-GE",
|
|
830
|
+
"en-GH",
|
|
831
|
+
"en-GI",
|
|
832
|
+
"en-GR",
|
|
833
|
+
"en-HK",
|
|
834
|
+
"en-HR",
|
|
835
|
+
"en-HT",
|
|
836
|
+
"en-ID",
|
|
837
|
+
"en-IE",
|
|
838
|
+
"en-IL",
|
|
839
|
+
"en-IN",
|
|
840
|
+
"en-IS",
|
|
841
|
+
"en-JM",
|
|
842
|
+
"en-JO",
|
|
843
|
+
"en-KH",
|
|
844
|
+
"en-KR",
|
|
845
|
+
"en-KW",
|
|
846
|
+
"en-KZ",
|
|
847
|
+
"en-LB",
|
|
848
|
+
"en-LK",
|
|
849
|
+
"en-LT",
|
|
850
|
+
"en-LV",
|
|
851
|
+
"en-ME",
|
|
852
|
+
"en-MK",
|
|
853
|
+
"en-MN",
|
|
854
|
+
"en-MT",
|
|
855
|
+
"en-MU",
|
|
856
|
+
"en-MY",
|
|
857
|
+
"en-NC",
|
|
858
|
+
"en-NL",
|
|
859
|
+
"en-NO",
|
|
860
|
+
"en-NZ",
|
|
861
|
+
"en-OM",
|
|
862
|
+
"en-PF",
|
|
863
|
+
"en-PH",
|
|
864
|
+
"en-PL",
|
|
865
|
+
"en-PR",
|
|
866
|
+
"en-QA",
|
|
867
|
+
"en-RO",
|
|
868
|
+
"en-RS",
|
|
869
|
+
"en-SA",
|
|
870
|
+
"en-SE",
|
|
871
|
+
"en-SG",
|
|
872
|
+
"en-SI",
|
|
873
|
+
"en-SK",
|
|
874
|
+
"en-TH",
|
|
875
|
+
"en-TR",
|
|
876
|
+
"en-TT",
|
|
877
|
+
"en-TW",
|
|
878
|
+
"en-UA",
|
|
879
|
+
"en-US",
|
|
880
|
+
"en-VE",
|
|
881
|
+
"en-VN",
|
|
882
|
+
"en-XA",
|
|
883
|
+
"en-YE",
|
|
884
|
+
"en-ZA",
|
|
885
|
+
"es-AD",
|
|
886
|
+
"es-AR",
|
|
887
|
+
"es-BO",
|
|
888
|
+
"es-CL",
|
|
889
|
+
"es-CO",
|
|
890
|
+
"es-CR",
|
|
891
|
+
"es-DO",
|
|
892
|
+
"es-EC",
|
|
893
|
+
"es-ES",
|
|
894
|
+
"es-GT",
|
|
895
|
+
"es-HN",
|
|
896
|
+
"es-MX",
|
|
897
|
+
"es-PA",
|
|
898
|
+
"es-PE",
|
|
899
|
+
"es-PR",
|
|
900
|
+
"es-PY",
|
|
901
|
+
"es-SV",
|
|
902
|
+
"es-TT",
|
|
903
|
+
"es-UY",
|
|
904
|
+
"es-VE",
|
|
905
|
+
"et-EE",
|
|
906
|
+
"fi-FI",
|
|
907
|
+
"fr-BE",
|
|
908
|
+
"fr-CA",
|
|
909
|
+
"fr-CH",
|
|
910
|
+
"fr-DZ",
|
|
911
|
+
"fr-FR",
|
|
912
|
+
"fr-GP",
|
|
913
|
+
"fr-LI",
|
|
914
|
+
"fr-LU",
|
|
915
|
+
"fr-MA",
|
|
916
|
+
"fr-MC",
|
|
917
|
+
"fr-MQ",
|
|
918
|
+
"fr-MU",
|
|
919
|
+
"fr-NC",
|
|
920
|
+
"fr-PF",
|
|
921
|
+
"fr-RE",
|
|
922
|
+
"fr-TN",
|
|
923
|
+
"he-IL",
|
|
924
|
+
"hr-HR",
|
|
925
|
+
"hu-HU",
|
|
926
|
+
"hy-AM",
|
|
927
|
+
"is-IS",
|
|
928
|
+
"it-CH",
|
|
929
|
+
"it-IT",
|
|
930
|
+
"ja-JP",
|
|
931
|
+
"ka-GE",
|
|
932
|
+
"ko-KR",
|
|
933
|
+
"lt-LT",
|
|
934
|
+
"lv-LV",
|
|
935
|
+
"me-ME",
|
|
936
|
+
"mk-MK",
|
|
937
|
+
"mt-MT",
|
|
938
|
+
"nb-NO",
|
|
939
|
+
"nl-BE",
|
|
940
|
+
"nl-NL",
|
|
941
|
+
"no-NO",
|
|
942
|
+
"pl-PL",
|
|
943
|
+
"pt-BR",
|
|
944
|
+
"pt-PT",
|
|
945
|
+
"ro-MD",
|
|
946
|
+
"ro-RO",
|
|
947
|
+
"ru-AZ",
|
|
948
|
+
"ru-BY",
|
|
949
|
+
"ru-CY",
|
|
950
|
+
"ru-EE",
|
|
951
|
+
"ru-KZ",
|
|
952
|
+
"ru-LT",
|
|
953
|
+
"ru-LV",
|
|
954
|
+
"ru-RU",
|
|
955
|
+
"ru-UK",
|
|
956
|
+
"ru-UZ",
|
|
957
|
+
"sk-SK",
|
|
958
|
+
"sl-SI",
|
|
959
|
+
"sr-ME",
|
|
960
|
+
"sr-RS",
|
|
961
|
+
"sv-SE",
|
|
962
|
+
"tr-TR",
|
|
963
|
+
"uk-UA",
|
|
964
|
+
"zh-CN",
|
|
965
|
+
"zh-HK",
|
|
966
|
+
"zh-TW"
|
|
967
|
+
];
|
|
968
|
+
export type MarketLocale = (typeof MARKET_LOCALES)[number];
|
|
969
|
+
export type ToPosixLocale<T extends string> = T extends `${infer Head}-${infer Tail}` ? `${Head}_${ToPosixLocale<Tail>}` : T;
|
|
970
|
+
export type AiTagLocale = MarketLocale | ToPosixLocale<MarketLocale>;
|
|
787
971
|
declare const AI_TAG_VARIANTS: readonly [
|
|
788
972
|
"abbreviation",
|
|
789
973
|
"generated",
|
|
790
974
|
"modified"
|
|
791
975
|
];
|
|
792
976
|
export type AiTagVariant = (typeof AI_TAG_VARIANTS)[number];
|
|
793
|
-
declare const AI_TAG_TRANSLATIONS: {
|
|
794
|
-
bg_BG: {
|
|
795
|
-
short: string;
|
|
796
|
-
long: string;
|
|
797
|
-
generated: string;
|
|
798
|
-
modified: string;
|
|
799
|
-
};
|
|
800
|
-
bs_BA: {
|
|
801
|
-
short: string;
|
|
802
|
-
long: string;
|
|
803
|
-
generated: string;
|
|
804
|
-
modified: string;
|
|
805
|
-
};
|
|
806
|
-
cs_CZ: {
|
|
807
|
-
short: string;
|
|
808
|
-
long: string;
|
|
809
|
-
generated: string;
|
|
810
|
-
modified: string;
|
|
811
|
-
};
|
|
812
|
-
da_DK: {
|
|
813
|
-
short: string;
|
|
814
|
-
long: string;
|
|
815
|
-
generated: string;
|
|
816
|
-
modified: string;
|
|
817
|
-
};
|
|
818
|
-
de_DE: {
|
|
819
|
-
short: string;
|
|
820
|
-
long: string;
|
|
821
|
-
generated: string;
|
|
822
|
-
modified: string;
|
|
823
|
-
};
|
|
824
|
-
el_GR: {
|
|
825
|
-
short: string;
|
|
826
|
-
long: string;
|
|
827
|
-
generated: string;
|
|
828
|
-
modified: string;
|
|
829
|
-
};
|
|
830
|
-
en_CY: {
|
|
831
|
-
short: string;
|
|
832
|
-
long: string;
|
|
833
|
-
generated: string;
|
|
834
|
-
modified: string;
|
|
835
|
-
};
|
|
836
|
-
en_GB: {
|
|
837
|
-
short: string;
|
|
838
|
-
long: string;
|
|
839
|
-
generated: string;
|
|
840
|
-
modified: string;
|
|
841
|
-
};
|
|
842
|
-
en_US: {
|
|
843
|
-
short: string;
|
|
844
|
-
long: string;
|
|
845
|
-
generated: string;
|
|
846
|
-
modified: string;
|
|
847
|
-
};
|
|
848
|
-
es_ES: {
|
|
849
|
-
short: string;
|
|
850
|
-
long: string;
|
|
851
|
-
generated: string;
|
|
852
|
-
modified: string;
|
|
853
|
-
};
|
|
854
|
-
et_EE: {
|
|
855
|
-
short: string;
|
|
856
|
-
long: string;
|
|
857
|
-
generated: string;
|
|
858
|
-
modified: string;
|
|
859
|
-
};
|
|
860
|
-
fi_FI: {
|
|
861
|
-
short: string;
|
|
862
|
-
long: string;
|
|
863
|
-
generated: string;
|
|
864
|
-
modified: string;
|
|
865
|
-
};
|
|
866
|
-
fr_FR: {
|
|
867
|
-
short: string;
|
|
868
|
-
long: string;
|
|
869
|
-
generated: string;
|
|
870
|
-
modified: string;
|
|
871
|
-
};
|
|
872
|
-
he_IL: {
|
|
873
|
-
short: string;
|
|
874
|
-
long: string;
|
|
875
|
-
generated: string;
|
|
876
|
-
modified: string;
|
|
877
|
-
};
|
|
878
|
-
hr_HR: {
|
|
879
|
-
short: string;
|
|
880
|
-
long: string;
|
|
881
|
-
generated: string;
|
|
882
|
-
modified: string;
|
|
883
|
-
};
|
|
884
|
-
hu_HU: {
|
|
885
|
-
short: string;
|
|
886
|
-
long: string;
|
|
887
|
-
generated: string;
|
|
888
|
-
modified: string;
|
|
889
|
-
};
|
|
890
|
-
is_IS: {
|
|
891
|
-
short: string;
|
|
892
|
-
long: string;
|
|
893
|
-
generated: string;
|
|
894
|
-
modified: string;
|
|
895
|
-
};
|
|
896
|
-
it_IT: {
|
|
897
|
-
short: string;
|
|
898
|
-
long: string;
|
|
899
|
-
generated: string;
|
|
900
|
-
modified: string;
|
|
901
|
-
};
|
|
902
|
-
lt_LT: {
|
|
903
|
-
short: string;
|
|
904
|
-
long: string;
|
|
905
|
-
generated: string;
|
|
906
|
-
modified: string;
|
|
907
|
-
};
|
|
908
|
-
lv_LV: {
|
|
909
|
-
short: string;
|
|
910
|
-
long: string;
|
|
911
|
-
generated: string;
|
|
912
|
-
modified: string;
|
|
913
|
-
};
|
|
914
|
-
me_ME: {
|
|
915
|
-
short: string;
|
|
916
|
-
long: string;
|
|
917
|
-
generated: string;
|
|
918
|
-
modified: string;
|
|
919
|
-
};
|
|
920
|
-
mk_MK: {
|
|
921
|
-
short: string;
|
|
922
|
-
long: string;
|
|
923
|
-
generated: string;
|
|
924
|
-
modified: string;
|
|
925
|
-
};
|
|
926
|
-
mt_MT: {
|
|
927
|
-
short: string;
|
|
928
|
-
long: string;
|
|
929
|
-
generated: string;
|
|
930
|
-
modified: string;
|
|
931
|
-
};
|
|
932
|
-
nb_NO: {
|
|
933
|
-
short: string;
|
|
934
|
-
long: string;
|
|
935
|
-
generated: string;
|
|
936
|
-
modified: string;
|
|
937
|
-
};
|
|
938
|
-
nl_NL: {
|
|
939
|
-
short: string;
|
|
940
|
-
long: string;
|
|
941
|
-
generated: string;
|
|
942
|
-
modified: string;
|
|
943
|
-
};
|
|
944
|
-
pl_PL: {
|
|
945
|
-
short: string;
|
|
946
|
-
long: string;
|
|
947
|
-
generated: string;
|
|
948
|
-
modified: string;
|
|
949
|
-
};
|
|
950
|
-
pt_PT: {
|
|
951
|
-
short: string;
|
|
952
|
-
long: string;
|
|
953
|
-
generated: string;
|
|
954
|
-
modified: string;
|
|
955
|
-
};
|
|
956
|
-
ro_RO: {
|
|
957
|
-
short: string;
|
|
958
|
-
long: string;
|
|
959
|
-
generated: string;
|
|
960
|
-
modified: string;
|
|
961
|
-
};
|
|
962
|
-
ru_RU: {
|
|
963
|
-
short: string;
|
|
964
|
-
long: string;
|
|
965
|
-
generated: string;
|
|
966
|
-
modified: string;
|
|
967
|
-
};
|
|
968
|
-
sk_SK: {
|
|
969
|
-
short: string;
|
|
970
|
-
long: string;
|
|
971
|
-
generated: string;
|
|
972
|
-
modified: string;
|
|
973
|
-
};
|
|
974
|
-
sl_SI: {
|
|
975
|
-
short: string;
|
|
976
|
-
long: string;
|
|
977
|
-
generated: string;
|
|
978
|
-
modified: string;
|
|
979
|
-
};
|
|
980
|
-
sr_RS: {
|
|
981
|
-
short: string;
|
|
982
|
-
long: string;
|
|
983
|
-
generated: string;
|
|
984
|
-
modified: string;
|
|
985
|
-
};
|
|
986
|
-
sv_SE: {
|
|
987
|
-
short: string;
|
|
988
|
-
long: string;
|
|
989
|
-
generated: string;
|
|
990
|
-
modified: string;
|
|
991
|
-
};
|
|
992
|
-
tr_TR: {
|
|
993
|
-
short: string;
|
|
994
|
-
long: string;
|
|
995
|
-
generated: string;
|
|
996
|
-
modified: string;
|
|
997
|
-
};
|
|
998
|
-
uk_UA: {
|
|
999
|
-
short: string;
|
|
1000
|
-
long: string;
|
|
1001
|
-
generated: string;
|
|
1002
|
-
modified: string;
|
|
1003
|
-
};
|
|
1004
|
-
};
|
|
1005
|
-
export type AiTagLocale = keyof typeof AI_TAG_TRANSLATIONS;
|
|
1006
977
|
declare const BANNER_POSITIONS: readonly [
|
|
1007
978
|
"top",
|
|
1008
979
|
"bottom"
|