@box/box-item-type-selector 0.60.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/LICENSE +379 -0
- package/README.md +47 -0
- package/dist/chunks/constants.js +115 -0
- package/dist/esm/index.js +11 -0
- package/dist/esm/lib/box-item-type-selector-quick-filter.js +90 -0
- package/dist/esm/lib/box-item-type-selector.js +81 -0
- package/dist/esm/lib/constants.js +8 -0
- package/dist/esm/lib/messages.js +74 -0
- package/dist/esm/lib/utils/VariantsAggregator.js +46 -0
- package/dist/i18n/bn-IN.js +19 -0
- package/dist/i18n/bn-IN.properties +34 -0
- package/dist/i18n/da-DK.js +19 -0
- package/dist/i18n/da-DK.properties +34 -0
- package/dist/i18n/de-DE.js +19 -0
- package/dist/i18n/de-DE.properties +34 -0
- package/dist/i18n/en-AU.js +19 -0
- package/dist/i18n/en-AU.properties +34 -0
- package/dist/i18n/en-CA.js +19 -0
- package/dist/i18n/en-CA.properties +34 -0
- package/dist/i18n/en-GB.js +19 -0
- package/dist/i18n/en-GB.properties +34 -0
- package/dist/i18n/en-US.js +19 -0
- package/dist/i18n/en-US.properties +34 -0
- package/dist/i18n/en-x-pseudo.js +19 -0
- package/dist/i18n/en-x-pseudo.properties +34 -0
- package/dist/i18n/es-419.js +19 -0
- package/dist/i18n/es-419.properties +34 -0
- package/dist/i18n/es-ES.js +19 -0
- package/dist/i18n/es-ES.properties +34 -0
- package/dist/i18n/fi-FI.js +19 -0
- package/dist/i18n/fi-FI.properties +34 -0
- package/dist/i18n/fr-CA.js +19 -0
- package/dist/i18n/fr-CA.properties +34 -0
- package/dist/i18n/fr-FR.js +19 -0
- package/dist/i18n/fr-FR.properties +34 -0
- package/dist/i18n/hi-IN.js +19 -0
- package/dist/i18n/hi-IN.properties +34 -0
- package/dist/i18n/it-IT.js +19 -0
- package/dist/i18n/it-IT.properties +34 -0
- package/dist/i18n/ja-JP.js +19 -0
- package/dist/i18n/ja-JP.properties +34 -0
- package/dist/i18n/json/src/lib/messages.json +1 -0
- package/dist/i18n/ko-KR.js +19 -0
- package/dist/i18n/ko-KR.properties +34 -0
- package/dist/i18n/nb-NO.js +19 -0
- package/dist/i18n/nb-NO.properties +34 -0
- package/dist/i18n/nl-NL.js +19 -0
- package/dist/i18n/nl-NL.properties +34 -0
- package/dist/i18n/pl-PL.js +19 -0
- package/dist/i18n/pl-PL.properties +34 -0
- package/dist/i18n/pt-BR.js +19 -0
- package/dist/i18n/pt-BR.properties +34 -0
- package/dist/i18n/ru-RU.js +19 -0
- package/dist/i18n/ru-RU.properties +34 -0
- package/dist/i18n/sv-SE.js +19 -0
- package/dist/i18n/sv-SE.properties +34 -0
- package/dist/i18n/tr-TR.js +19 -0
- package/dist/i18n/tr-TR.properties +34 -0
- package/dist/i18n/zh-CN.js +19 -0
- package/dist/i18n/zh-CN.properties +34 -0
- package/dist/i18n/zh-TW.js +19 -0
- package/dist/i18n/zh-TW.properties +34 -0
- package/dist/styles/box-item-type-selector-quick-filter.css +1 -0
- package/dist/styles/box-item-type-selector.css +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/lib/box-item-type-selector-quick-filter.d.ts +12 -0
- package/dist/types/lib/box-item-type-selector.d.ts +3 -0
- package/dist/types/lib/constants.d.ts +20 -0
- package/dist/types/lib/messages.d.ts +88 -0
- package/dist/types/lib/stories/shared.d.ts +15 -0
- package/dist/types/lib/types.d.ts +111 -0
- package/dist/types/lib/utils/VariantsAggregator.d.ts +15 -0
- package/package.json +48 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Audio",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Document",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Tekening",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Afbeelding",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Presentatie",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Spreadsheet",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Video",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Bestanden",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Mappen",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Toepassen",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Wissen",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Bestandstype"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Audio
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Document
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Tekening
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Afbeelding
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Presentatie
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Spreadsheet
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Video
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Bestanden
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Mappen
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Toepassen
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Wissen
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Bestandstype
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Dźwięk",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Dokument",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Rysunek",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Obraz",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Prezentacja",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Arkusz kalkulacyjny",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Film",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Pliki",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Foldery",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Zastosuj",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Wyczyść",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Typ pliku"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Dźwięk
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Dokument
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Rysunek
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Obraz
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Prezentacja
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Arkusz kalkulacyjny
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Film
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Pliki
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Foldery
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Zastosuj
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Wyczyść
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Typ pliku
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Áudio",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Documento",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Desenho",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Imagem",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Apresentação",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Planilha",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Vídeo",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Arquivos",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Pastas",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Aplicar",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Limpar",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Tipo de arquivo"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Áudio
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Documento
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Desenho
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Imagem
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Apresentação
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Planilha
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Vídeo
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Arquivos
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Pastas
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Aplicar
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Limpar
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Tipo de arquivo
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Аудио",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Документ",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Рисунок",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Изображение",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Презентация",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Электронная таблица",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Видео",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Файлы",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Папки",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Применить",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Очистить",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Тип файла"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Аудио
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Документ
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Рисунок
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Изображение
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Презентация
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Электронная таблица
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Видео
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Файлы
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Папки
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Применить
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Очистить
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Тип файла
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Ljud",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Dokument",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Ritning",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Bild",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Presentation",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Kalkylblad",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Video",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Filer",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Mappar",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Tillämpa",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Rensa",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Filtyp"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Ljud
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Dokument
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Ritning
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Bild
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Presentation
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Kalkylblad
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Video
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Filer
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Mappar
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Tillämpa
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Rensa
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Filtyp
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "Ses",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "Belge",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "Çizim",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "Görüntü",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "Sunum",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "Elektronik tablo",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3B",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "Video",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "Dosyalar",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "Klasör Sayısı",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "Uygula",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "Temizle",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "Dosya Türü"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = Ses
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = Belge
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = Çizim
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = Görüntü
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = Sunum
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = Elektronik tablo
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3B
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = Video
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = Dosyalar
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = Klasör Sayısı
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = Uygula
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = Temizle
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = Dosya Türü
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "音频",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "文档",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "绘图",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "图像",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "演示文稿",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "电子表格",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "视频",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "文件",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "文件夹",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "应用",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "清除",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "文件类型"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = 音频
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = 文档
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = 绘图
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = 图像
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = 演示文稿
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = 电子表格
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = 视频
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = 文件
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = 文件夹
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = 应用
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = 清除
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = 文件类型
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType": "音訊",
|
|
3
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType": "Box Canvas",
|
|
4
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType": "Box Note",
|
|
5
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType": "文件",
|
|
6
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType": "繪圖",
|
|
7
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType": "影像",
|
|
8
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles": "{fileType} +{count}",
|
|
9
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType": "PDF",
|
|
10
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType": "簡報",
|
|
11
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType": "試算表",
|
|
12
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType": "3D",
|
|
13
|
+
"groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType": "影片",
|
|
14
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.fileType": "檔案",
|
|
15
|
+
"groupSharedFeatures.boxItemTypeSelector.itemType.folderType": "資料夾",
|
|
16
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.apply": "套用",
|
|
17
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.clear": "清除",
|
|
18
|
+
"groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown": "檔案類型"
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Label for the audio file type
|
|
2
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.audioType = 音訊
|
|
3
|
+
# Label for the Box Canvas file type
|
|
4
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxcanvasType = Box Canvas
|
|
5
|
+
# Label for the Box Note file type
|
|
6
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.boxnoteType = Box Note
|
|
7
|
+
# Label for the document file type
|
|
8
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.documentType = 文件
|
|
9
|
+
# Label for the drawing file type
|
|
10
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.drawingType = 繪圖
|
|
11
|
+
# Label for the image file type
|
|
12
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.imageType = 影像
|
|
13
|
+
# Label for multiple file types
|
|
14
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.multipleFiles = {fileType} +{count}
|
|
15
|
+
# Label for the PDF file type
|
|
16
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.pdfType = PDF
|
|
17
|
+
# Label for the presentation file type
|
|
18
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.presentationType = 簡報
|
|
19
|
+
# Label for the spreadsheet file type
|
|
20
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.spreadsheetType = 試算表
|
|
21
|
+
# Label for the 3D file type
|
|
22
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.threedType = 3D
|
|
23
|
+
# Label for the video file type
|
|
24
|
+
groupSharedFeatures.boxItemTypeSelector.boxFileType.videoType = 影片
|
|
25
|
+
# Label for the checkbox item type selector representing files
|
|
26
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.fileType = 檔案
|
|
27
|
+
# Label for the checkbox item type selector representing folders
|
|
28
|
+
groupSharedFeatures.boxItemTypeSelector.itemType.folderType = 資料夾
|
|
29
|
+
# Label for the button in the selector to apply the selected filters
|
|
30
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.apply = 套用
|
|
31
|
+
# Label for the button in the selector to clear all the selected filters
|
|
32
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.clear = 清除
|
|
33
|
+
# Label for the dropdown chip when no specific selection has been made
|
|
34
|
+
groupSharedFeatures.boxItemTypeSelector.quickFilter.fileTypeLabelDropdown = 檔案類型
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._itemTypeSelectorQuickFilterPopoverContainer_10sjf_1{width:320px}._itemTypeSelectorQuickFilterPopoverContainer_10sjf_1 ._popoverMainContent_10sjf_4{min-height:var(--size-8);max-height:calc(var(--radix-popover-content-available-height) - var(--space-8) - var(--space-2) - var(--border-1) - var(--space-4) - var(--space-8))}._itemTypeSelectorQuickFilterPopoverContainer_10sjf_1 ._popoverMainContent_10sjf_4 ._boxItemTypeSelectorQuickFilter_10sjf_8{margin:0 var(--space-2)}._itemTypeSelectorQuickFilterPopoverContainer_10sjf_1 ._popoverFooterInline_10sjf_11{display:flex;justify-content:end}._itemTypeSelectorQuickFilterPopoverContainer_10sjf_1 ._popoverFooterInline_10sjf_11 :not(:first-child){margin-left:var(--space-2)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._boxItemTypeSelectorContainer_1kmgh_1{display:flex;flex-direction:column}._boxItemTypeSelectorContainer_1kmgh_1 ._parentItemTypeSelectorContainer_1kmgh_5{display:flex;flex-direction:column;min-height:0}@container (min-width: 374px){._boxItemTypeSelectorContainer_1kmgh_1 ._parentItemTypeSelectorContainer_1kmgh_5{max-height:255px}}._boxItemTypeSelectorContainer_1kmgh_1 ._itemTypeSelector_1kmgh_15{margin:var(--space-1) 0}._boxItemTypeSelectorContainer_1kmgh_1 ._itemTypeSelector_1kmgh_15 label{gap:var(--space-2)}._boxItemTypeSelectorContainer_1kmgh_1 ._selectorLabel_1kmgh_21{font-weight:var(--body-default-font-weight);font-size:var(--body-default-font-size);font-family:var(--body-default-font-family);line-height:var(--body-default-line-height);letter-spacing:var(--body-default-letter-spacing);text-transform:var(--body-default-text-case);text-decoration:var(--body-default-text-decoration);display:flex}._boxItemTypeSelectorContainer_1kmgh_1 ._selectorLabel_1kmgh_21 svg{margin-inline-end:var(--space-2);font-size:var(--size-5)}._boxItemTypeSelectorContainer_1kmgh_1 ._selectorLabel_1kmgh_21._disabled_1kmgh_35{opacity:60%}._boxItemTypeSelectorContainer_1kmgh_1 ._childItemTypeSelectorContainer_1kmgh_38{margin-inline-start:var(--space-7);display:flex;flex-direction:column;flex-wrap:wrap;min-height:0}._boxItemTypeSelectorContainer_1kmgh_1 ul,._boxItemTypeSelectorContainer_1kmgh_1 li{display:contents;margin:0;padding:0}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BoxItemSelection } from './types';
|
|
2
|
+
type ButtonType = 'button' | 'submit' | 'reset';
|
|
3
|
+
export interface BoxItemTypeSelectorQuickFilterProps {
|
|
4
|
+
applyButtonType?: ButtonType;
|
|
5
|
+
autoFocus?: boolean;
|
|
6
|
+
selected: BoxItemSelection;
|
|
7
|
+
onApply: (newSelection: BoxItemSelection) => void;
|
|
8
|
+
onFocus?: () => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function BoxItemTypeSelectorQuickFilter(props: BoxItemTypeSelectorQuickFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default BoxItemTypeSelectorQuickFilter;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BoxFileValue, BoxParentItemValue } from './types';
|
|
2
|
+
export declare const INDETERMINATE = "indeterminate";
|
|
3
|
+
export declare const boxItemTypeMapping: {
|
|
4
|
+
children: {
|
|
5
|
+
icon: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
value: BoxFileValue;
|
|
7
|
+
title: {
|
|
8
|
+
defaultMessage: string;
|
|
9
|
+
description: string;
|
|
10
|
+
id: string;
|
|
11
|
+
};
|
|
12
|
+
}[];
|
|
13
|
+
icon: import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
value: BoxParentItemValue;
|
|
15
|
+
title: {
|
|
16
|
+
defaultMessage: string;
|
|
17
|
+
description: string;
|
|
18
|
+
id: string;
|
|
19
|
+
};
|
|
20
|
+
}[];
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
declare const messages: {
|
|
2
|
+
apply: {
|
|
3
|
+
defaultMessage: string;
|
|
4
|
+
description: string;
|
|
5
|
+
id: string;
|
|
6
|
+
};
|
|
7
|
+
audioType: {
|
|
8
|
+
defaultMessage: string;
|
|
9
|
+
description: string;
|
|
10
|
+
id: string;
|
|
11
|
+
};
|
|
12
|
+
boxcanvasType: {
|
|
13
|
+
defaultMessage: string;
|
|
14
|
+
description: string;
|
|
15
|
+
id: string;
|
|
16
|
+
};
|
|
17
|
+
boxnoteType: {
|
|
18
|
+
defaultMessage: string;
|
|
19
|
+
description: string;
|
|
20
|
+
id: string;
|
|
21
|
+
};
|
|
22
|
+
clear: {
|
|
23
|
+
defaultMessage: string;
|
|
24
|
+
description: string;
|
|
25
|
+
id: string;
|
|
26
|
+
};
|
|
27
|
+
documentType: {
|
|
28
|
+
defaultMessage: string;
|
|
29
|
+
description: string;
|
|
30
|
+
id: string;
|
|
31
|
+
};
|
|
32
|
+
drawingType: {
|
|
33
|
+
defaultMessage: string;
|
|
34
|
+
description: string;
|
|
35
|
+
id: string;
|
|
36
|
+
};
|
|
37
|
+
fileTypeLabelDropdown: {
|
|
38
|
+
defaultMessage: string;
|
|
39
|
+
description: string;
|
|
40
|
+
id: string;
|
|
41
|
+
};
|
|
42
|
+
fileType: {
|
|
43
|
+
defaultMessage: string;
|
|
44
|
+
description: string;
|
|
45
|
+
id: string;
|
|
46
|
+
};
|
|
47
|
+
folderType: {
|
|
48
|
+
defaultMessage: string;
|
|
49
|
+
description: string;
|
|
50
|
+
id: string;
|
|
51
|
+
};
|
|
52
|
+
imageType: {
|
|
53
|
+
defaultMessage: string;
|
|
54
|
+
description: string;
|
|
55
|
+
id: string;
|
|
56
|
+
};
|
|
57
|
+
multipleFiles: {
|
|
58
|
+
defaultMessage: string;
|
|
59
|
+
description: string;
|
|
60
|
+
id: string;
|
|
61
|
+
};
|
|
62
|
+
pdfType: {
|
|
63
|
+
defaultMessage: string;
|
|
64
|
+
description: string;
|
|
65
|
+
id: string;
|
|
66
|
+
};
|
|
67
|
+
presentationType: {
|
|
68
|
+
defaultMessage: string;
|
|
69
|
+
description: string;
|
|
70
|
+
id: string;
|
|
71
|
+
};
|
|
72
|
+
spreadsheetType: {
|
|
73
|
+
defaultMessage: string;
|
|
74
|
+
description: string;
|
|
75
|
+
id: string;
|
|
76
|
+
};
|
|
77
|
+
threedType: {
|
|
78
|
+
defaultMessage: string;
|
|
79
|
+
description: string;
|
|
80
|
+
id: string;
|
|
81
|
+
};
|
|
82
|
+
videoType: {
|
|
83
|
+
defaultMessage: string;
|
|
84
|
+
description: string;
|
|
85
|
+
id: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
export default messages;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BoxItemTypeSelectorQuickFilterProps } from '../box-item-type-selector-quick-filter';
|
|
2
|
+
import { BoxItemTypeSelectorProps } from '../types';
|
|
3
|
+
import { ComponentRecord } from '../utils/VariantsAggregator';
|
|
4
|
+
export declare const defaultArgs: BoxItemTypeSelectorProps;
|
|
5
|
+
export declare const Template: (args: BoxItemTypeSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const withParentNoChildrenProps: Partial<BoxItemTypeSelectorProps>;
|
|
7
|
+
export declare const withAllChildrenSelectedProps: Partial<BoxItemTypeSelectorProps>;
|
|
8
|
+
export declare const withChildrenPartiallySelectedProps: Partial<BoxItemTypeSelectorProps>;
|
|
9
|
+
export declare const BoxItemTypeSelectorMap: ComponentRecord<Partial<BoxItemTypeSelectorProps>>;
|
|
10
|
+
export declare const defaultArgsQuickFilter: BoxItemTypeSelectorQuickFilterProps;
|
|
11
|
+
export declare const QuickFilterTemplate: (args: BoxItemTypeSelectorQuickFilterProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const withSingleSelectionQuickFilterProps: Partial<BoxItemTypeSelectorQuickFilterProps>;
|
|
13
|
+
export declare const withMultipleSelectionQuickFilterProps: Partial<BoxItemTypeSelectorQuickFilterProps>;
|
|
14
|
+
export declare const withAllChildrenQuickFilterProps: Partial<BoxItemTypeSelectorQuickFilterProps>;
|
|
15
|
+
export declare const BoxItemTypeSelectorQuickFilterMap: ComponentRecord<Partial<BoxItemTypeSelectorQuickFilterProps>>;
|