@ostack.tech/ui 0.9.2 → 0.10.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/chunks/{en-GEeEwItR.js → en-DwZKZVGL.js} +10 -4
- package/dist/chunks/en-DwZKZVGL.js.map +1 -0
- package/dist/locales/en-GB.js +1 -1
- package/dist/locales/en-US.js +1 -1
- package/dist/locales/fr-FR.js +9 -3
- package/dist/locales/fr-FR.js.map +1 -1
- package/dist/locales/pt-PT.js +9 -3
- package/dist/locales/pt-PT.js.map +1 -1
- package/dist/ostack-ui.css +23 -13
- package/dist/ostack-ui.js +824 -743
- package/dist/ostack-ui.js.map +1 -1
- package/dist/types/components/AlertDialog/AlertDialog.d.ts +2 -1
- package/dist/types/components/Button/Button.d.ts +2 -1
- package/dist/types/components/Calendar/CalendarMonthGrid.d.ts +1 -0
- package/dist/types/components/CommandMenu/CommandMenu.d.ts +3 -2
- package/dist/types/components/DataTable/DataTable.d.ts +4 -0
- package/dist/types/components/DataTable/DataTableContext.d.ts +7 -1
- package/dist/types/components/DataTable/DataTablePagination.d.ts +2 -0
- package/dist/types/components/DataTable/PagedDataTablePagination.d.ts +1 -1
- package/dist/types/components/Dialog/Dialog.d.ts +2 -1
- package/dist/types/components/DropdownMenu/DropdownMenu.d.ts +2 -1
- package/dist/types/components/Field/Field.d.ts +35 -6
- package/dist/types/components/Field/FieldProvider.d.ts +13 -0
- package/dist/types/components/Field/index.d.ts +1 -0
- package/dist/types/components/Heading/Heading.d.ts +3 -1
- package/dist/types/components/Icon/Icon.d.ts +5 -6
- package/dist/types/components/IconButton/IconButton.d.ts +7 -0
- package/dist/types/components/Input/Input.d.ts +2 -2
- package/dist/types/components/Keyboard/Keyboard.d.ts +17 -2
- package/dist/types/components/NumericInput/NumericInput.d.ts +27 -14
- package/dist/types/components/Select/Select.d.ts +2 -2
- package/dist/types/components/Tabs/Tabs.d.ts +3 -0
- package/dist/types/components/TextArea/TextArea.d.ts +14 -11
- package/dist/types/components/Tooltip/Tooltip.d.ts +25 -14
- package/dist/types/providers/LocalizationProvider/LocalizationObject.d.ts +4 -3
- package/dist/types/utils/numericStringUtils.d.ts +2 -2
- package/package.json +2 -4
- package/scss/components/Code/_Code-variables.scss +1 -1
- package/scss/components/DataTable/_DataTable-variables.scss +6 -0
- package/scss/components/DataTable/_DataTable.scss +7 -0
- package/scss/components/Dialog/_Dialog.scss +2 -1
- package/scss/components/Keyboard/_Keyboard-variables.scss +2 -2
- package/scss/components/Keyboard/_Keyboard.scss +1 -0
- package/scss/components/Toast/_Toast.scss +4 -0
- package/scss/index.scss +1 -0
- package/scss/scss/helpers/_keyframes.scss +114 -0
- package/scss/scss/utils/_animation.scss +0 -104
- package/scss/scss/utils/_spinner.scss +2 -7
- package/dist/chunks/en-GEeEwItR.js.map +0 -1
- package/dist/ostack-ui.css.map +0 -1
|
@@ -30,6 +30,10 @@ const en = {
|
|
|
30
30
|
visuallyHiddenPrefix: "Field"
|
|
31
31
|
},
|
|
32
32
|
DataTable: {
|
|
33
|
+
selectAllRowsLabel: "Select all",
|
|
34
|
+
selectRowLabel: "Select"
|
|
35
|
+
},
|
|
36
|
+
DataTableContent: {
|
|
33
37
|
emptyMessage: "Nothing to show."
|
|
34
38
|
},
|
|
35
39
|
DataTableFilter: {
|
|
@@ -37,6 +41,8 @@ const en = {
|
|
|
37
41
|
placeholder: "Filter"
|
|
38
42
|
},
|
|
39
43
|
DataTablePagination: {
|
|
44
|
+
"aria-label": "Table pagination",
|
|
45
|
+
rowsRangeSelectLabel: (total) => `Visible rows out of ${total}`,
|
|
40
46
|
rowsRange: (range, total) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
41
47
|
"Rows ",
|
|
42
48
|
range,
|
|
@@ -47,7 +53,7 @@ const en = {
|
|
|
47
53
|
nextPageButtonLabel: "Next page"
|
|
48
54
|
},
|
|
49
55
|
DataTableRowsPerPage: {
|
|
50
|
-
label: "Rows per page"
|
|
56
|
+
label: "Rows per page:"
|
|
51
57
|
},
|
|
52
58
|
DateInput: {
|
|
53
59
|
selectedDateDescription: (date) => `Selected date, ${date}`,
|
|
@@ -95,11 +101,11 @@ const en = {
|
|
|
95
101
|
groupSeparator: ","
|
|
96
102
|
},
|
|
97
103
|
RadioGroup: {
|
|
98
|
-
clearDescription: "Press Backspace or Delete to clear"
|
|
104
|
+
clearDescription: "Press Backspace or Delete to clear."
|
|
99
105
|
},
|
|
100
106
|
Select: {
|
|
101
107
|
placeholder: "Select…",
|
|
102
|
-
clearDescription: "Press Backspace or Delete to clear",
|
|
108
|
+
clearDescription: "Press Backspace or Delete to clear.",
|
|
103
109
|
searchLabel: "Search options",
|
|
104
110
|
optionsLabel: "Options",
|
|
105
111
|
valueTagCloseButtonLabel: "Remove"
|
|
@@ -124,4 +130,4 @@ const en = {
|
|
|
124
130
|
export {
|
|
125
131
|
en as e
|
|
126
132
|
};
|
|
127
|
-
//# sourceMappingURL=en-
|
|
133
|
+
//# sourceMappingURL=en-DwZKZVGL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en-DwZKZVGL.js","sources":["../../src/locales/en.tsx"],"sourcesContent":["import type { LocalizationObject } from \"../providers/LocalizationProvider\";\nimport { IS_APPLE } from \"../utils/platformUtils.ts\";\n\n/** `en` locale (partial). */\nexport const en: Omit<LocalizationObject, \"languageTag\" | \"dayPickerLocale\"> = {\n AlertDialog: {\n okText: \"OK\",\n },\n Calendar: {\n monthSelectLabel: \"Month\",\n yearSelectLabel: \"Year\",\n previousMonthLabel: \"Previous month\",\n nextMonthLabel: \"Next month\",\n },\n CloseButton: {\n label: \"Close\",\n },\n CommandMenu: {\n searchPlaceholder: \"Search…\",\n listLabel: \"Suggestions\",\n loadingLabel: \"Loading…\",\n emptyMessage: \"No results found.\",\n },\n CommandMenuDialog: {\n title: \"Command palette\",\n description: \"Search for a command…\",\n },\n ConfirmDialog: {\n cancelText: \"Cancel\",\n },\n ControlCode: {\n visuallyHiddenPrefix: \"Field\",\n },\n DataTable: {\n selectAllRowsLabel: \"Select all\",\n selectRowLabel: \"Select\",\n },\n DataTableContent: {\n emptyMessage: \"Nothing to show.\",\n },\n DataTableFilter: {\n \"aria-label\": \"Table filter\",\n placeholder: \"Filter\",\n },\n DataTablePagination: {\n \"aria-label\": \"Table pagination\",\n rowsRangeSelectLabel: (total) => `Visible rows out of ${total}`,\n rowsRange: (range, total) => (\n <>\n Rows {range} of {total}\n </>\n ),\n previousPageButtonLabel: \"Previous page\",\n nextPageButtonLabel: \"Next page\",\n },\n DataTableRowsPerPage: {\n label: \"Rows per page:\",\n },\n DateInput: {\n selectedDateDescription: (date) => `Selected date, ${date}`,\n calendarButtonLabel: \"Open calendar\",\n },\n DateRangeInput: {\n startInputLabel: \"Start date\",\n endInputLabel: \"End date\",\n selectedDateRangeDescription: ({ start, end }) =>\n `Selected date range, ${start || \"missing start date\"} to ${\n end || \"missing end date\"\n }`,\n },\n ErrorBoundary: {\n fallbackMessage: (\n <>\n Something went wrong.\n <br />\n Press the button on the right to try again. If the problem persists,\n please try again later.\n </>\n ),\n resetButtonLabel: \"Retry\",\n },\n Feedback: {\n visuallyHiddenPrefix: (type) =>\n type === \"error\" ? \"Error,\" : type === \"warning\" ? \"Warning,\" : null,\n },\n FeedbackPopover: {\n label: \"Show feedback\",\n },\n FieldGroupHeader: {\n visuallyHiddenCodePrefix: \"Section\",\n },\n Input: {\n loadingDescription: \"Loading…\",\n clearButtonLabel: \"Clear\",\n },\n Keybinds: {\n keybindsSeparatorLabel: \"or\",\n keyPressesSeparatorLabel: \"then\",\n keyLabels: {\n Meta: IS_APPLE ? undefined : \"Windows Key\",\n },\n },\n Label: {\n helperButtonLabel: \"Show help\",\n },\n NumericInput: {\n decimalSeparator: \".\",\n groupingStyle: \"thousand\",\n groupSeparator: \",\",\n },\n RadioGroup: {\n clearDescription: \"Press Backspace or Delete to clear.\",\n },\n Select: {\n placeholder: \"Select…\",\n clearDescription: \"Press Backspace or Delete to clear.\",\n searchLabel: \"Search options\",\n optionsLabel: \"Options\",\n valueTagCloseButtonLabel: \"Remove\",\n },\n TableColumn: {\n helperButtonLabel: \"Show help\",\n },\n TableHead: {\n sortByColumnDescription: (columnName, sortDirection) =>\n sortDirection === null\n ? `Stop sorting table by column “${columnName}”`\n : `Sort table by column “${columnName}” in ${\n sortDirection === \"asc\" ? \"ascending\" : \"descending\"\n } order`,\n },\n TabList: {\n scrollLeftButtonLabel: \"Scroll left\",\n scrollRightButtonLabel: \"Scroll right\",\n },\n ToastProvider: {\n label: \"Notification\",\n },\n ToastViewport: {\n label: \"Notifications ({hotkey})\",\n },\n};\n"],"names":[],"mappings":"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"}
|
package/dist/locales/en-GB.js
CHANGED
package/dist/locales/en-US.js
CHANGED
package/dist/locales/fr-FR.js
CHANGED
|
@@ -33,6 +33,10 @@ const locale = {
|
|
|
33
33
|
visuallyHiddenPrefix: "Champ"
|
|
34
34
|
},
|
|
35
35
|
DataTable: {
|
|
36
|
+
selectAllRowsLabel: "Tout sélectionner",
|
|
37
|
+
selectRowLabel: "Sélectionner"
|
|
38
|
+
},
|
|
39
|
+
DataTableContent: {
|
|
36
40
|
emptyMessage: "Rien à afficher."
|
|
37
41
|
},
|
|
38
42
|
DataTableFilter: {
|
|
@@ -40,6 +44,8 @@ const locale = {
|
|
|
40
44
|
placeholder: "Filtre"
|
|
41
45
|
},
|
|
42
46
|
DataTablePagination: {
|
|
47
|
+
"aria-label": "Pagination du tableau",
|
|
48
|
+
rowsRangeSelectLabel: (total) => `Lignes affichées sur ${total}`,
|
|
43
49
|
rowsRange: (range, total) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
44
50
|
"Lignes ",
|
|
45
51
|
range,
|
|
@@ -50,7 +56,7 @@ const locale = {
|
|
|
50
56
|
nextPageButtonLabel: "Page suivante"
|
|
51
57
|
},
|
|
52
58
|
DataTableRowsPerPage: {
|
|
53
|
-
label: "Lignes par page"
|
|
59
|
+
label: "Lignes par page :"
|
|
54
60
|
},
|
|
55
61
|
DateInput: {
|
|
56
62
|
placeholder: "jour/mois/année",
|
|
@@ -127,11 +133,11 @@ const locale = {
|
|
|
127
133
|
groupSeparator: " "
|
|
128
134
|
},
|
|
129
135
|
RadioGroup: {
|
|
130
|
-
clearDescription: "Appuyez sur Retour arrière ou Suppr pour effacer"
|
|
136
|
+
clearDescription: "Appuyez sur Retour arrière ou Suppr pour effacer."
|
|
131
137
|
},
|
|
132
138
|
Select: {
|
|
133
139
|
placeholder: "Choisir…",
|
|
134
|
-
clearDescription: "Appuyez sur Retour arrière ou Suppr pour effacer",
|
|
140
|
+
clearDescription: "Appuyez sur Retour arrière ou Suppr pour effacer.",
|
|
135
141
|
searchLabel: "Rechercher des options",
|
|
136
142
|
optionsLabel: "Options",
|
|
137
143
|
valueTagCloseButtonLabel: "Supprimer"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-FR.js","sources":["../../src/locales/fr-FR.tsx"],"sourcesContent":["import { fr as dayPickerFr } from \"react-day-picker/locale\";\n\nimport type { LocalizationObject } from \"../providers/LocalizationProvider\";\nimport { IS_APPLE } from \"../utils/platformUtils.ts\";\n\n/** `fr-FR` locale. */\nexport const locale: LocalizationObject = {\n languageTag: \"fr-FR\",\n dayPickerLocale: dayPickerFr,\n AlertDialog: {\n okText: \"OK\",\n },\n Calendar: {\n monthSelectLabel: \"Mois\",\n yearSelectLabel: \"Année\",\n previousMonthLabel: \"Mois précédent\",\n nextMonthLabel: \"Mois suivant\",\n },\n CloseButton: {\n label: \"Fermer\",\n },\n CommandMenu: {\n searchPlaceholder: \"Rechercher…\",\n listLabel: \"Suggestions\",\n loadingLabel: \"Chargement…\",\n emptyMessage: \"Aucun résultat trouvé.\",\n },\n CommandMenuDialog: {\n title: \"Palette de commandes\",\n description: \"Rechercher une commande…\",\n },\n ConfirmDialog: {\n cancelText: \"Annuler\",\n },\n ControlCode: {\n visuallyHiddenPrefix: \"Champ\",\n },\n DataTable: {\n emptyMessage: \"Rien à afficher.\",\n },\n DataTableFilter: {\n \"aria-label\": \"Tableau filtre\",\n placeholder: \"Filtre\",\n },\n DataTablePagination: {\n rowsRange: (range, total) => (\n <>\n Lignes {range} sur {total}\n </>\n ),\n previousPageButtonLabel: \"Page précédente\",\n nextPageButtonLabel: \"Page suivante\",\n },\n DataTableRowsPerPage: {\n label: \"Lignes par page
|
|
1
|
+
{"version":3,"file":"fr-FR.js","sources":["../../src/locales/fr-FR.tsx"],"sourcesContent":["import { fr as dayPickerFr } from \"react-day-picker/locale\";\n\nimport type { LocalizationObject } from \"../providers/LocalizationProvider\";\nimport { IS_APPLE } from \"../utils/platformUtils.ts\";\n\n/** `fr-FR` locale. */\nexport const locale: LocalizationObject = {\n languageTag: \"fr-FR\",\n dayPickerLocale: dayPickerFr,\n AlertDialog: {\n okText: \"OK\",\n },\n Calendar: {\n monthSelectLabel: \"Mois\",\n yearSelectLabel: \"Année\",\n previousMonthLabel: \"Mois précédent\",\n nextMonthLabel: \"Mois suivant\",\n },\n CloseButton: {\n label: \"Fermer\",\n },\n CommandMenu: {\n searchPlaceholder: \"Rechercher…\",\n listLabel: \"Suggestions\",\n loadingLabel: \"Chargement…\",\n emptyMessage: \"Aucun résultat trouvé.\",\n },\n CommandMenuDialog: {\n title: \"Palette de commandes\",\n description: \"Rechercher une commande…\",\n },\n ConfirmDialog: {\n cancelText: \"Annuler\",\n },\n ControlCode: {\n visuallyHiddenPrefix: \"Champ\",\n },\n DataTable: {\n selectAllRowsLabel: \"Tout sélectionner\",\n selectRowLabel: \"Sélectionner\",\n },\n DataTableContent: {\n emptyMessage: \"Rien à afficher.\",\n },\n DataTableFilter: {\n \"aria-label\": \"Tableau filtre\",\n placeholder: \"Filtre\",\n },\n DataTablePagination: {\n \"aria-label\": \"Pagination du tableau\",\n rowsRangeSelectLabel: (total) => `Lignes affichées sur ${total}`,\n rowsRange: (range, total) => (\n <>\n Lignes {range} sur {total}\n </>\n ),\n previousPageButtonLabel: \"Page précédente\",\n nextPageButtonLabel: \"Page suivante\",\n },\n DataTableRowsPerPage: {\n label: \"Lignes par page\\u202F:\",\n },\n DateInput: {\n placeholder: \"jour/mois/année\",\n formatDescription:\n \"Saisir la date au format, J J barre oblique M M barre oblique A A A A.\",\n selectedDateDescription: (date) => `Date sélectionnée, ${date}`,\n calendarButtonLabel: \"Ouvrir le calendrier\",\n },\n DateRangeInput: {\n startInputLabel: \"Date de début\",\n endInputLabel: \"Date de fin\",\n selectedDateRangeDescription: ({ start, end }) =>\n `Période sélectionnée, ${start || \"date de début manquante\"} au ${\n end || \"date de fin manquante\"\n }`,\n },\n ErrorBoundary: {\n fallbackMessage: (\n <>\n Une erreur s'est produite.\n <br />\n Appuyez sur le bouton à droite pour réessayer. Si le problème persiste,\n réessayez plus tard.\n </>\n ),\n resetButtonLabel: \"Réessayer\",\n },\n Feedback: {\n visuallyHiddenPrefix: (type) =>\n type === \"error\" ? \"Erreur,\" : type === \"warning\" ? \"Alerte,\" : null,\n },\n FeedbackPopover: {\n label: \"Afficher les observations\",\n },\n FieldGroupHeader: {\n visuallyHiddenCodePrefix: \"Section\",\n },\n Input: {\n loadingDescription: \"Chargement…\",\n clearButtonLabel: \"Effacer\",\n },\n Label: {\n helperButtonLabel: \"Afficher l’aide\",\n },\n Keybinds: {\n keybindsSeparatorLabel: \"ou\",\n keyPressesSeparatorLabel: \"puis\",\n keySymbols: {\n Shift: IS_APPLE ? undefined : \"Maj\",\n CapsLock: IS_APPLE ? undefined : \"Verr. maj.\",\n Space: \"Espace\",\n Home: \"Début\",\n End: \"Fin\",\n PageUp: \"Pg. pr\",\n PageDown: \"Pg. su\",\n Escape: \"Échap\",\n Delete: IS_APPLE ? undefined : \"Suppr\",\n },\n keyLabels: {\n Control: \"Contrôle\",\n Shift: \"Majuscule\",\n Meta: IS_APPLE ? \"Commande\" : \"Touche Windows\",\n CapsLock: \"Verrouillage majuscule\",\n Space: \"Espace\",\n ArrowUp: \"Haut\",\n ArrowDown: \"Bas\",\n ArrowLeft: \"Gauche\",\n ArrowRight: \"Droite\",\n Enter: IS_APPLE ? \"Retour\" : \"Entrée\",\n Escape: \"Échappement\",\n Backspace: \"Retour arrière\",\n Delete: \"Supprimer\",\n Home: \"Début\",\n End: \"Fin\",\n PageUp: \"Page précédente\",\n PageDown: \"Page suivante\",\n },\n },\n NumericInput: {\n decimalSeparator: \",\",\n groupingStyle: \"thousand\",\n groupSeparator: \"\\u00A0\",\n },\n RadioGroup: {\n clearDescription: \"Appuyez sur Retour arrière ou Suppr pour effacer.\",\n },\n Select: {\n placeholder: \"Choisir…\",\n clearDescription: \"Appuyez sur Retour arrière ou Suppr pour effacer.\",\n searchLabel: \"Rechercher des options\",\n optionsLabel: \"Options\",\n valueTagCloseButtonLabel: \"Supprimer\",\n },\n TableColumn: {\n helperButtonLabel: \"Afficher l’aide\",\n },\n TableHead: {\n sortByColumnDescription: (columnName, sortDirection) =>\n sortDirection === null\n ? `Arrêter le tri du tableau par colonne «\\u202F${columnName}\\u202F»`\n : `Trier le tableau par colonne «\\u202F${columnName}\\u202F» par ordre ${\n sortDirection === \"asc\" ? \"croissant\" : \"décroissant\"\n }`,\n },\n TabList: {\n scrollLeftButtonLabel: \"Défiler à gauche\",\n scrollRightButtonLabel: \"Défiler à droite\",\n },\n ToastProvider: {\n label: \"Notification\",\n },\n ToastViewport: {\n label: \"Notifications ({hotkey})\",\n },\n};\n"],"names":["dayPickerFr"],"mappings":";;;AAMO,MAAM,SAA6B;AAAA,EACxC,aAAa;AAAA,EACb,iBAAiBA;AAAAA,EACjB,aAAa;AAAA,IACX,QAAQ;AAAA,EAAA;AAAA,EAEV,UAAU;AAAA,IACR,kBAAkB;AAAA,IAClB,iBAAiB;AAAA,IACjB,oBAAoB;AAAA,IACpB,gBAAgB;AAAA,EAAA;AAAA,EAElB,aAAa;AAAA,IACX,OAAO;AAAA,EAAA;AAAA,EAET,aAAa;AAAA,IACX,mBAAmB;AAAA,IACnB,WAAW;AAAA,IACX,cAAc;AAAA,IACd,cAAc;AAAA,EAAA;AAAA,EAEhB,mBAAmB;AAAA,IACjB,OAAO;AAAA,IACP,aAAa;AAAA,EAAA;AAAA,EAEf,eAAe;AAAA,IACb,YAAY;AAAA,EAAA;AAAA,EAEd,aAAa;AAAA,IACX,sBAAsB;AAAA,EAAA;AAAA,EAExB,WAAW;AAAA,IACT,oBAAoB;AAAA,IACpB,gBAAgB;AAAA,EAAA;AAAA,EAElB,kBAAkB;AAAA,IAChB,cAAc;AAAA,EAAA;AAAA,EAEhB,iBAAiB;AAAA,IACf,cAAc;AAAA,IACd,aAAa;AAAA,EAAA;AAAA,EAEf,qBAAqB;AAAA,IACnB,cAAc;AAAA,IACd,sBAAsB,CAAC,UAAU,wBAAwB,KAAK;AAAA,IAC9D,WAAW,CAAC,OAAO,UACjB,qBAAA,UAAA,EAAE,UAAA;AAAA,MAAA;AAAA,MACa;AAAA,MAAM;AAAA,MAAW;AAAA,IAAA,GAChC;AAAA,IAEF,yBAAyB;AAAA,IACzB,qBAAqB;AAAA,EAAA;AAAA,EAEvB,sBAAsB;AAAA,IACpB,OAAO;AAAA,EAAA;AAAA,EAET,WAAW;AAAA,IACT,aAAa;AAAA,IACb,mBACE;AAAA,IACF,yBAAyB,CAAC,SAAS,sBAAsB,IAAI;AAAA,IAC7D,qBAAqB;AAAA,EAAA;AAAA,EAEvB,gBAAgB;AAAA,IACd,iBAAiB;AAAA,IACjB,eAAe;AAAA,IACf,8BAA8B,CAAC,EAAE,OAAO,UACtC,yBAAyB,SAAS,yBAAyB,OACzD,OAAO,uBACT;AAAA,EAAA;AAAA,EAEJ,eAAe;AAAA,IACb,iBACE,qBAAA,UAAA,EAAE,UAAA;AAAA,MAAA;AAAA,0BAEC,MAAA,EAAG;AAAA,MAAE;AAAA,IAAA,GAGR;AAAA,IAEF,kBAAkB;AAAA,EAAA;AAAA,EAEpB,UAAU;AAAA,IACR,sBAAsB,CAAC,SACrB,SAAS,UAAU,YAAY,SAAS,YAAY,YAAY;AAAA,EAAA;AAAA,EAEpE,iBAAiB;AAAA,IACf,OAAO;AAAA,EAAA;AAAA,EAET,kBAAkB;AAAA,IAChB,0BAA0B;AAAA,EAAA;AAAA,EAE5B,OAAO;AAAA,IACL,oBAAoB;AAAA,IACpB,kBAAkB;AAAA,EAAA;AAAA,EAEpB,OAAO;AAAA,IACL,mBAAmB;AAAA,EAAA;AAAA,EAErB,UAAU;AAAA,IACR,wBAAwB;AAAA,IACxB,0BAA0B;AAAA,IAC1B,YAAY;AAAA,MACV,OAAO,WAAW,SAAY;AAAA,MAC9B,UAAU,WAAW,SAAY;AAAA,MACjC,OAAO;AAAA,MACP,MAAM;AAAA,MACN,KAAK;AAAA,MACL,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,QAAQ;AAAA,MACR,QAAQ,WAAW,SAAY;AAAA,IAAA;AAAA,IAEjC,WAAW;AAAA,MACT,SAAS;AAAA,MACT,OAAO;AAAA,MACP,MAAM,WAAW,aAAa;AAAA,MAC9B,UAAU;AAAA,MACV,OAAO;AAAA,MACP,SAAS;AAAA,MACT,WAAW;AAAA,MACX,WAAW;AAAA,MACX,YAAY;AAAA,MACZ,OAAO,WAAW,WAAW;AAAA,MAC7B,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,QAAQ;AAAA,MACR,MAAM;AAAA,MACN,KAAK;AAAA,MACL,QAAQ;AAAA,MACR,UAAU;AAAA,IAAA;AAAA,EACZ;AAAA,EAEF,cAAc;AAAA,IACZ,kBAAkB;AAAA,IAClB,eAAe;AAAA,IACf,gBAAgB;AAAA,EAAA;AAAA,EAElB,YAAY;AAAA,IACV,kBAAkB;AAAA,EAAA;AAAA,EAEpB,QAAQ;AAAA,IACN,aAAa;AAAA,IACb,kBAAkB;AAAA,IAClB,aAAa;AAAA,IACb,cAAc;AAAA,IACd,0BAA0B;AAAA,EAAA;AAAA,EAE5B,aAAa;AAAA,IACX,mBAAmB;AAAA,EAAA;AAAA,EAErB,WAAW;AAAA,IACT,yBAAyB,CAAC,YAAY,kBACpC,kBAAkB,OACd,2CAAgD,UAAU,OAC1D,kCAAuC,UAAU,gBAC/C,kBAAkB,QAAQ,cAAc,aAC1C;AAAA,EAAA;AAAA,EAER,SAAS;AAAA,IACP,uBAAuB;AAAA,IACvB,wBAAwB;AAAA,EAAA;AAAA,EAE1B,eAAe;AAAA,IACb,OAAO;AAAA,EAAA;AAAA,EAET,eAAe;AAAA,IACb,OAAO;AAAA,EAAA;AAEX;"}
|
package/dist/locales/pt-PT.js
CHANGED
|
@@ -33,6 +33,10 @@ const locale = {
|
|
|
33
33
|
visuallyHiddenPrefix: "Campo"
|
|
34
34
|
},
|
|
35
35
|
DataTable: {
|
|
36
|
+
selectAllRowsLabel: "Selecionar tudo",
|
|
37
|
+
selectRowLabel: "Selecionar"
|
|
38
|
+
},
|
|
39
|
+
DataTableContent: {
|
|
36
40
|
emptyMessage: "Nada a mostrar."
|
|
37
41
|
},
|
|
38
42
|
DataTableFilter: {
|
|
@@ -40,6 +44,8 @@ const locale = {
|
|
|
40
44
|
placeholder: "Filtrar"
|
|
41
45
|
},
|
|
42
46
|
DataTablePagination: {
|
|
47
|
+
"aria-label": "Paginação da tabela",
|
|
48
|
+
rowsRangeSelectLabel: (total) => `Linhas visíveis de um total de ${total}`,
|
|
43
49
|
rowsRange: (range, total) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
44
50
|
"Linhas ",
|
|
45
51
|
range,
|
|
@@ -50,7 +56,7 @@ const locale = {
|
|
|
50
56
|
nextPageButtonLabel: "Próxima página"
|
|
51
57
|
},
|
|
52
58
|
DataTableRowsPerPage: {
|
|
53
|
-
label: "Linhas por página"
|
|
59
|
+
label: "Linhas por página:"
|
|
54
60
|
},
|
|
55
61
|
DateInput: {
|
|
56
62
|
placeholder: "dia/mês/ano",
|
|
@@ -113,11 +119,11 @@ const locale = {
|
|
|
113
119
|
groupSeparator: " "
|
|
114
120
|
},
|
|
115
121
|
RadioGroup: {
|
|
116
|
-
clearDescription: "Pressione Backspace ou Delete para limpar"
|
|
122
|
+
clearDescription: "Pressione Backspace ou Delete para limpar."
|
|
117
123
|
},
|
|
118
124
|
Select: {
|
|
119
125
|
placeholder: "Selecionar…",
|
|
120
|
-
clearDescription: "Pressione Backspace ou Delete para limpar",
|
|
126
|
+
clearDescription: "Pressione Backspace ou Delete para limpar.",
|
|
121
127
|
searchLabel: "Pesquisar opções",
|
|
122
128
|
optionsLabel: "Opções",
|
|
123
129
|
valueTagCloseButtonLabel: "Remover"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pt-PT.js","sources":["../../src/locales/pt-PT.tsx"],"sourcesContent":["import { pt as dayPickerPt } from \"react-day-picker/locale\";\n\nimport type { LocalizationObject } from \"../providers/LocalizationProvider\";\nimport { IS_APPLE } from \"../utils/platformUtils.ts\";\n\n/** `pt-PT` locale. */\nexport const locale: LocalizationObject = {\n languageTag: \"pt-PT\",\n dayPickerLocale: dayPickerPt,\n AlertDialog: {\n okText: \"OK\",\n },\n Calendar: {\n monthSelectLabel: \"Mês\",\n yearSelectLabel: \"Ano\",\n previousMonthLabel: \"Mês anterior\",\n nextMonthLabel: \"Próximo mês\",\n },\n CloseButton: {\n label: \"Fechar\",\n },\n CommandMenu: {\n searchPlaceholder: \"Pesquisar…\",\n listLabel: \"Sugestões\",\n loadingLabel: \"A carregar…\",\n emptyMessage: \"Nenhum resultado encontrado.\",\n },\n CommandMenuDialog: {\n title: \"Paleta de comandos\",\n description: \"Pesquise por um comando…\",\n },\n ConfirmDialog: {\n cancelText: \"Cancelar\",\n },\n ControlCode: {\n visuallyHiddenPrefix: \"Campo\",\n },\n DataTable: {\n emptyMessage: \"Nada a mostrar.\",\n },\n DataTableFilter: {\n \"aria-label\": \"Filtro da tabela\",\n placeholder: \"Filtrar\",\n },\n DataTablePagination: {\n rowsRange: (range, total) => (\n <>\n Linhas {range} de {total}\n </>\n ),\n previousPageButtonLabel: \"Página anterior\",\n nextPageButtonLabel: \"Próxima página\",\n },\n DataTableRowsPerPage: {\n label: \"Linhas por página
|
|
1
|
+
{"version":3,"file":"pt-PT.js","sources":["../../src/locales/pt-PT.tsx"],"sourcesContent":["import { pt as dayPickerPt } from \"react-day-picker/locale\";\n\nimport type { LocalizationObject } from \"../providers/LocalizationProvider\";\nimport { IS_APPLE } from \"../utils/platformUtils.ts\";\n\n/** `pt-PT` locale. */\nexport const locale: LocalizationObject = {\n languageTag: \"pt-PT\",\n dayPickerLocale: dayPickerPt,\n AlertDialog: {\n okText: \"OK\",\n },\n Calendar: {\n monthSelectLabel: \"Mês\",\n yearSelectLabel: \"Ano\",\n previousMonthLabel: \"Mês anterior\",\n nextMonthLabel: \"Próximo mês\",\n },\n CloseButton: {\n label: \"Fechar\",\n },\n CommandMenu: {\n searchPlaceholder: \"Pesquisar…\",\n listLabel: \"Sugestões\",\n loadingLabel: \"A carregar…\",\n emptyMessage: \"Nenhum resultado encontrado.\",\n },\n CommandMenuDialog: {\n title: \"Paleta de comandos\",\n description: \"Pesquise por um comando…\",\n },\n ConfirmDialog: {\n cancelText: \"Cancelar\",\n },\n ControlCode: {\n visuallyHiddenPrefix: \"Campo\",\n },\n DataTable: {\n selectAllRowsLabel: \"Selecionar tudo\",\n selectRowLabel: \"Selecionar\",\n },\n DataTableContent: {\n emptyMessage: \"Nada a mostrar.\",\n },\n DataTableFilter: {\n \"aria-label\": \"Filtro da tabela\",\n placeholder: \"Filtrar\",\n },\n DataTablePagination: {\n \"aria-label\": \"Paginação da tabela\",\n rowsRangeSelectLabel: (total) => `Linhas visíveis de um total de ${total}`,\n rowsRange: (range, total) => (\n <>\n Linhas {range} de {total}\n </>\n ),\n previousPageButtonLabel: \"Página anterior\",\n nextPageButtonLabel: \"Próxima página\",\n },\n DataTableRowsPerPage: {\n label: \"Linhas por página:\",\n },\n DateInput: {\n placeholder: \"dia/mês/ano\",\n formatDescription:\n \"Introduza a data no formato, D D barra M M barra A A A A.\",\n selectedDateDescription: (date) => `Data selecionada, ${date}`,\n calendarButtonLabel: \"Abrir calendário\",\n },\n DateRangeInput: {\n startInputLabel: \"Data de início\",\n endInputLabel: \"Data de fim\",\n selectedDateRangeDescription: ({ start, end }) =>\n `Período selecionado, ${start || \"data de início ausente\"} a ${\n end || \"data de fim ausente\"\n }`,\n },\n ErrorBoundary: {\n fallbackMessage: (\n <>\n Algo correu mal.\n <br />\n Pressione o botão à direita para tentar novamente. Se o problema\n persistir, volte a tentar mais tarde.\n </>\n ),\n resetButtonLabel: \"Tentar novamente\",\n },\n Feedback: {\n visuallyHiddenPrefix: (type) =>\n type === \"error\" ? \"Erro,\" : type === \"warning\" ? \"Alerta,\" : null,\n },\n FeedbackPopover: {\n label: \"Mostrar observações\",\n },\n FieldGroupHeader: {\n visuallyHiddenCodePrefix: \"Secção\",\n },\n Input: {\n loadingDescription: \"A carregar…\",\n clearButtonLabel: \"Limpar\",\n },\n Keybinds: {\n keybindsSeparatorLabel: \"ou\",\n keyPressesSeparatorLabel: \"seguido de\",\n keySymbols: {\n Space: \"Espaço\",\n },\n keyLabels: {\n Meta: IS_APPLE ? undefined : \"Tecla Windows\",\n Space: \"Espaço\",\n ArrowUp: \"Seta para cima\",\n ArrowDown: \"Seta para baixo\",\n ArrowLeft: \"Seta para esquerda\",\n ArrowRight: \"Seta para direita\",\n Enter: IS_APPLE ? \"Retorno\" : undefined,\n Home: \"Início\",\n End: \"Fim\",\n PageUp: \"Página para cima\",\n PageDown: \"Página para baixo\",\n },\n },\n Label: {\n helperButtonLabel: \"Mostrar ajuda\",\n },\n NumericInput: {\n decimalSeparator: \",\",\n groupingStyle: \"thousand\",\n groupSeparator: \"\\u00A0\",\n },\n RadioGroup: {\n clearDescription: \"Pressione Backspace ou Delete para limpar.\",\n },\n Select: {\n placeholder: \"Selecionar…\",\n clearDescription: \"Pressione Backspace ou Delete para limpar.\",\n searchLabel: \"Pesquisar opções\",\n optionsLabel: \"Opções\",\n valueTagCloseButtonLabel: \"Remover\",\n },\n TableColumn: {\n helperButtonLabel: \"Mostrar ajuda\",\n },\n TableHead: {\n sortByColumnDescription: (columnName, sortDirection) =>\n sortDirection === null\n ? `Deixar de ordenar tabela pela coluna “${columnName}”`\n : `Ordenar tabela pela coluna “${columnName}” em ordem ${\n sortDirection === \"asc\" ? \"ascendente\" : \"descendente\"\n }`,\n },\n TabList: {\n scrollLeftButtonLabel: \"Deslocar para a esquerda\",\n scrollRightButtonLabel: \"Deslocar para a direita\",\n },\n ToastProvider: {\n label: \"Notificação\",\n },\n ToastViewport: {\n label: \"Notificações ({hotkey})\",\n },\n};\n"],"names":["dayPickerPt"],"mappings":"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"}
|
package/dist/ostack-ui.css
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
@keyframes o-ui-spinner-spin {
|
|
2
|
+
to {
|
|
3
|
+
transform: rotate(360deg);
|
|
4
|
+
}
|
|
5
|
+
}
|
|
1
6
|
@keyframes o-ui-fade-in {
|
|
2
7
|
from {
|
|
3
8
|
opacity: 0;
|
|
@@ -86,11 +91,6 @@
|
|
|
86
91
|
width: 0;
|
|
87
92
|
}
|
|
88
93
|
}
|
|
89
|
-
@keyframes o-ui-spinner-spin {
|
|
90
|
-
to {
|
|
91
|
-
transform: rotate(360deg);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
94
|
@media print {
|
|
95
95
|
.o-ui-print-hidden {
|
|
96
96
|
display: none !important;
|
|
@@ -1055,7 +1055,7 @@
|
|
|
1055
1055
|
border-radius: var(--o-ui-border-radius-sm);
|
|
1056
1056
|
font-family: var(--o-ui-font-family-code);
|
|
1057
1057
|
font-weight: 400;
|
|
1058
|
-
font-size: 0.
|
|
1058
|
+
font-size: 0.875em;
|
|
1059
1059
|
line-height: 1.25;
|
|
1060
1060
|
word-wrap: break-word;
|
|
1061
1061
|
white-space: pre-wrap;
|
|
@@ -1684,6 +1684,9 @@ a > .o-ui-code {
|
|
|
1684
1684
|
}
|
|
1685
1685
|
.o-ui-data-table__rows-per-page-label {
|
|
1686
1686
|
margin-right: var(--o-ui-space);
|
|
1687
|
+
font-size: var(--o-ui-font-size-sm);
|
|
1688
|
+
line-height: var(--o-ui-line-height-sm);
|
|
1689
|
+
font-weight: 400 !important;
|
|
1687
1690
|
}
|
|
1688
1691
|
.o-ui-data-table__rows-per-page-select-root, .o-ui-data-table__pagination-select-root {
|
|
1689
1692
|
width: auto !important;
|
|
@@ -1692,6 +1695,8 @@ a > .o-ui-code {
|
|
|
1692
1695
|
display: flex;
|
|
1693
1696
|
flex-wrap: wrap;
|
|
1694
1697
|
align-items: center;
|
|
1698
|
+
font-size: var(--o-ui-font-size-sm);
|
|
1699
|
+
line-height: var(--o-ui-line-height-sm);
|
|
1695
1700
|
}
|
|
1696
1701
|
.o-ui-data-table__pagination-arrows {
|
|
1697
1702
|
margin-left: calc(var(--o-ui-space) * 2);
|
|
@@ -2023,11 +2028,13 @@ a > .o-ui-code {
|
|
|
2023
2028
|
.o-ui-dialog--xl {
|
|
2024
2029
|
width: 1140px;
|
|
2025
2030
|
}
|
|
2026
|
-
.o-ui-dialog.o-ui-card--outlined
|
|
2031
|
+
.o-ui-dialog.o-ui-card--outlined,
|
|
2032
|
+
.o-ui-dialog .o-ui-card--outlined {
|
|
2027
2033
|
--o-ui-card-background-color: var(--o-ui-background-color);
|
|
2028
2034
|
--o-ui-card-unmerged-body-background-color: var(--o-ui-background-color);
|
|
2029
2035
|
}
|
|
2030
|
-
.o-ui-dialog.o-ui-card--ghost
|
|
2036
|
+
.o-ui-dialog.o-ui-card--ghost,
|
|
2037
|
+
.o-ui-dialog .o-ui-card--ghost {
|
|
2031
2038
|
--o-ui-card-background-color: var(--o-ui-background-color);
|
|
2032
2039
|
--o-ui-card-unmerged-body-background-color: var(--o-ui-background-color);
|
|
2033
2040
|
}
|
|
@@ -2652,12 +2659,13 @@ a > .o-ui-code {
|
|
|
2652
2659
|
}
|
|
2653
2660
|
|
|
2654
2661
|
.o-ui-keyboard {
|
|
2655
|
-
|
|
2662
|
+
display: inline-block;
|
|
2663
|
+
padding: 1px 0.25em 0;
|
|
2656
2664
|
border-radius: var(--o-ui-border-radius-sm);
|
|
2657
2665
|
font-family: var(--o-ui-font-family-code);
|
|
2658
2666
|
font-weight: 400;
|
|
2659
2667
|
font-size: 0.875em;
|
|
2660
|
-
line-height: 1;
|
|
2668
|
+
line-height: 1.25;
|
|
2661
2669
|
word-wrap: break-word;
|
|
2662
2670
|
border-width: 1px 1px 2px;
|
|
2663
2671
|
border-style: solid;
|
|
@@ -4270,6 +4278,10 @@ a > .o-ui-code {
|
|
|
4270
4278
|
list-style: none;
|
|
4271
4279
|
z-index: 1700;
|
|
4272
4280
|
}
|
|
4281
|
+
.o-ui-toast--outlined {
|
|
4282
|
+
background-color: var(--o-ui-background-color);
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4273
4285
|
.o-ui-tooltip {
|
|
4274
4286
|
max-width: min(200px, var(--radix-tooltip-content-available-width));
|
|
4275
4287
|
max-height: min(600px, var(--radix-tooltip-content-available-height));
|
|
@@ -4295,6 +4307,4 @@ a > .o-ui-code {
|
|
|
4295
4307
|
}
|
|
4296
4308
|
.o-ui-tooltip__arrow {
|
|
4297
4309
|
fill: var(--o-ui-neutral-12);
|
|
4298
|
-
}
|
|
4299
|
-
|
|
4300
|
-
/*# sourceMappingURL=ostack-ui.css.map */
|
|
4310
|
+
}
|