├── LICENSE.md ├── README.md └── packages ├── components-data ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── dist │ ├── DataProvider.d.ts │ ├── SDKContext.d.ts │ ├── cjs │ │ ├── DataProvider.js │ │ ├── DataProvider.js.map │ │ ├── SDKContext.js │ │ ├── SDKContext.js.map │ │ ├── hooks │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── useColorPalette.js │ │ │ ├── useColorPalette.js.map │ │ │ ├── useCreateQuery.js │ │ │ ├── useCreateQuery.js.map │ │ │ ├── useDataState.js │ │ │ ├── useDataState.js.map │ │ │ ├── useExplore.js │ │ │ ├── useExplore.js.map │ │ │ ├── useFieldGroups.js │ │ │ ├── useFieldGroups.js.map │ │ │ ├── useQueryData.js │ │ │ ├── useQueryData.js.map │ │ │ ├── useQueryId.js │ │ │ ├── useQueryId.js.map │ │ │ ├── useQueryIdFromDashboard.js │ │ │ ├── useQueryIdFromDashboard.js.map │ │ │ ├── useQueryMetadata.js │ │ │ ├── useQueryMetadata.js.map │ │ │ ├── useSDK.js │ │ │ ├── useSDK.js.map │ │ │ ├── useVisConfig.js │ │ │ └── useVisConfig.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── testUtils │ │ │ ├── ContextWrapper.js │ │ │ ├── ContextWrapper.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mockSDKWithListeners.js │ │ │ └── mockSDKWithListeners.js.map │ │ ├── types │ │ │ ├── styled-system__props.d.js │ │ │ ├── styled-system__props.d.js.map │ │ │ ├── styled-system__should-forward-prop.d.js │ │ │ └── styled-system__should-forward-prop.d.js.map │ │ └── utils │ │ │ ├── getErrorResponse.js │ │ │ ├── getErrorResponse.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── isErrorResponse.js │ │ │ ├── isErrorResponse.js.map │ │ │ ├── isSuccessResponse.js │ │ │ └── isSuccessResponse.js.map │ ├── esm │ │ ├── DataProvider.js │ │ ├── DataProvider.js.map │ │ ├── SDKContext.js │ │ ├── SDKContext.js.map │ │ ├── hooks │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── useColorPalette.js │ │ │ ├── useColorPalette.js.map │ │ │ ├── useCreateQuery.js │ │ │ ├── useCreateQuery.js.map │ │ │ ├── useDataState.js │ │ │ ├── useDataState.js.map │ │ │ ├── useExplore.js │ │ │ ├── useExplore.js.map │ │ │ ├── useFieldGroups.js │ │ │ ├── useFieldGroups.js.map │ │ │ ├── useQueryData.js │ │ │ ├── useQueryData.js.map │ │ │ ├── useQueryId.js │ │ │ ├── useQueryId.js.map │ │ │ ├── useQueryIdFromDashboard.js │ │ │ ├── useQueryIdFromDashboard.js.map │ │ │ ├── useQueryMetadata.js │ │ │ ├── useQueryMetadata.js.map │ │ │ ├── useSDK.js │ │ │ ├── useSDK.js.map │ │ │ ├── useVisConfig.js │ │ │ └── useVisConfig.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── testUtils │ │ │ ├── ContextWrapper.js │ │ │ ├── ContextWrapper.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mockSDKWithListeners.js │ │ │ └── mockSDKWithListeners.js.map │ │ ├── types │ │ │ ├── styled-system__props.d.js │ │ │ ├── styled-system__props.d.js.map │ │ │ ├── styled-system__should-forward-prop.d.js │ │ │ └── styled-system__should-forward-prop.d.js.map │ │ └── utils │ │ │ ├── getErrorResponse.js │ │ │ ├── getErrorResponse.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── isErrorResponse.js │ │ │ ├── isErrorResponse.js.map │ │ │ ├── isSuccessResponse.js │ │ │ └── isSuccessResponse.js.map │ ├── hooks │ │ ├── index.d.ts │ │ ├── useColorPalette.d.ts │ │ ├── useCreateQuery.d.ts │ │ ├── useDataState.d.ts │ │ ├── useExplore.d.ts │ │ ├── useFieldGroups.d.ts │ │ ├── useQueryData.d.ts │ │ ├── useQueryId.d.ts │ │ ├── useQueryIdFromDashboard.d.ts │ │ ├── useQueryMetadata.d.ts │ │ ├── useSDK.d.ts │ │ └── useVisConfig.d.ts │ ├── index.d.ts │ ├── testUtils │ │ ├── ContextWrapper.d.ts │ │ ├── index.d.ts │ │ └── mockSDKWithListeners.d.ts │ └── utils │ │ ├── getErrorResponse.d.ts │ │ ├── index.d.ts │ │ ├── isErrorResponse.d.ts │ │ └── isSuccessResponse.d.ts ├── jest.config.js ├── package.json ├── src │ ├── DataProvider.tsx │ ├── SDKContext.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── useColorPalette.spec.tsx │ │ ├── useColorPalette.ts │ │ ├── useCreateQuery.spec.tsx │ │ ├── useCreateQuery.ts │ │ ├── useDataState.ts │ │ ├── useExplore.spec.tsx │ │ ├── useExplore.ts │ │ ├── useFieldGroups.spec.tsx │ │ ├── useFieldGroups.ts │ │ ├── useQueryData.spec.tsx │ │ ├── useQueryData.ts │ │ ├── useQueryId.spec.tsx │ │ ├── useQueryId.ts │ │ ├── useQueryIdFromDashboard.spec.tsx │ │ ├── useQueryIdFromDashboard.ts │ │ ├── useQueryMetadata.spec.tsx │ │ ├── useQueryMetadata.ts │ │ ├── useSDK.ts │ │ ├── useVisConfig.spec.tsx │ │ └── useVisConfig.ts │ ├── index.ts │ ├── testUtils │ │ ├── ContextWrapper.tsx │ │ ├── index.ts │ │ └── mockSDKWithListeners.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── getErrorResponse.ts │ │ ├── index.ts │ │ ├── isErrorResponse.ts │ │ └── isSuccessResponse.ts ├── tsconfig.build.json └── tsconfig.json ├── components-providers ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── package.json ├── src │ ├── ComponentsProvider.spec.tsx │ ├── ComponentsProvider.tsx │ ├── ExtendComponentsProvider.spec.tsx │ ├── ExtendComponentsProvider.tsx │ ├── FocusTrap │ │ ├── FocusTrapProvider.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ ├── utils.spec.tsx │ │ └── utils.ts │ ├── FontFaceLoader │ │ ├── FontFaceLoader.spec.tsx │ │ ├── FontFaceLoader.tsx │ │ └── index.ts │ ├── I18n │ │ ├── index.ts │ │ ├── useI18n.spec.tsx │ │ └── useI18n.ts │ ├── ScrollLock │ │ ├── ScrollLockProvider.tsx │ │ ├── index.ts │ │ └── utils.ts │ ├── StyleDefender.spec.tsx │ ├── StyleDefender.tsx │ ├── ThemeProvider.spec.tsx │ ├── ThemeProvider.tsx │ ├── TrapStack │ │ ├── TrapStackProvider.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── index.ts │ └── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html └── tsconfig.build.json ├── components-test-utils ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ ├── helpers │ │ └── react-testing-library │ │ │ ├── comboboxHelpers.ts │ │ │ ├── firePasteEvent.ts │ │ │ └── index.ts │ ├── index.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── with_theme.tsx └── tsconfig.build.json ├── components ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── docs │ ├── develop │ │ ├── add-npm-package.md │ │ ├── extending.md │ │ ├── internationalization.md │ │ ├── theme.md │ │ └── writing-components.md │ ├── foundations │ │ ├── best-practices.md │ │ ├── borders.md │ │ ├── breakpoints.md │ │ ├── color.md │ │ ├── density.md │ │ ├── elevation.md │ │ ├── radius.md │ │ ├── spacing.md │ │ └── typography.md │ └── index.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── da_DK │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── de_DE │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── en │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── es_ES │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── fi_FI │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── fr_CA │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── fr_FR │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── he_IL │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── hi_IN │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── it_IT │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── ja_JP │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── ko_KR │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── lt_LT │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── nb_NO │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── nl_NL │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── pl_PL │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── pt_BR │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── pt_PT │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── ru_RU │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── sv_SE │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── th_TH │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── tr_TR │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── uk_UA │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ ├── zh_CN │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json │ └── zh_TW │ │ ├── AdvancedInputControls.strings.json │ │ ├── AvatarButton.strings.json │ │ ├── AvatarUser.strings.json │ │ ├── BulkActions.strings.json │ │ ├── CalendarNav.strings.json │ │ ├── CheckMarkMixed.strings.json │ │ ├── Chip.strings.json │ │ ├── ColumnSelector.strings.json │ │ ├── ConfirmationDialog.strings.json │ │ ├── CopyToClipboard.strings.json │ │ ├── DataTable.strings.json │ │ ├── DataTableItem.strings.json │ │ ├── FieldTimeSelect.strings.json │ │ ├── GetIntentLabel.strings.json │ │ ├── InputDate.strings.json │ │ ├── InputDateRange.strings.json │ │ ├── InputFilters.strings.json │ │ ├── InputTimeSelect.strings.json │ │ ├── MessageBar.strings.json │ │ ├── ModalHeaderCloseButton.strings.json │ │ ├── MonthPickerNav.strings.json │ │ ├── PageSize.strings.json │ │ ├── Pagination.strings.json │ │ ├── PanelHeader.strings.json │ │ ├── PopoverFooter.strings.json │ │ ├── ProgressDuet.strings.json │ │ ├── PromptDialog.strings.json │ │ ├── RangeSlider.strings.json │ │ ├── RequiredStar.strings.json │ │ ├── SelectOptions.strings.json │ │ └── TabList.strings.json ├── package.json ├── src │ ├── Accordion │ │ ├── Accordion.spec.tsx │ │ ├── Accordion.tsx │ │ ├── AccordionContent.tsx │ │ ├── AccordionDisclosure.tsx │ │ ├── AccordionLegacy.tsx │ │ └── index.ts │ ├── Accordion2 │ │ ├── Accordion2.spec.tsx │ │ ├── Accordion2.tsx │ │ ├── Accordion2Content.tsx │ │ ├── Accordion2Disclosure.tsx │ │ ├── AccordionIndicator.tsx │ │ ├── AccordionLabel.tsx │ │ ├── accordionDefaults.tsx │ │ ├── accordionDimensions.ts │ │ ├── controlTypes.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useAccordion2.tsx │ │ └── useAriaLabelObjectRelationship.tsx │ ├── Animate │ │ ├── Animate.spec.tsx │ │ ├── Animate.tsx │ │ └── index.ts │ ├── Avatar │ │ ├── Avatar.spec.tsx │ │ ├── Avatar.tsx │ │ ├── AvatarButton.spec.tsx │ │ ├── AvatarButton.tsx │ │ ├── AvatarCombo.tsx │ │ ├── AvatarIcon.tsx │ │ ├── AvatarUser.tsx │ │ └── index.ts │ ├── Badge │ │ ├── Badge.spec.tsx │ │ ├── Badge.tsx │ │ └── index.ts │ ├── Breakpoint │ │ ├── Breakpoint.spec.tsx │ │ ├── Breakpoint.tsx │ │ └── index.ts │ ├── Button │ │ ├── Button.spec.tsx │ │ ├── Button.tsx │ │ ├── ButtonBase.tsx │ │ ├── ButtonGroup.spec.tsx │ │ ├── ButtonGroup.tsx │ │ ├── ButtonItem.spec.tsx │ │ ├── ButtonItem.tsx │ │ ├── ButtonOutline.tsx │ │ ├── ButtonSet.tsx │ │ ├── ButtonSetContext.ts │ │ ├── ButtonToggle.spec.tsx │ │ ├── ButtonToggle.tsx │ │ ├── ButtonTransparent.spec.tsx │ │ ├── ButtonTransparent.tsx │ │ ├── IconButton.spec.tsx │ │ ├── IconButton.tsx │ │ ├── MultiFunctionButton.spec.tsx │ │ ├── MultiFunctionButton.tsx │ │ ├── icon.ts │ │ ├── iconButtonColor.ts │ │ ├── iconButtonOutline.ts │ │ ├── iconButtonTypes.ts │ │ ├── index.ts │ │ ├── size.ts │ │ └── types.ts │ ├── Calendar │ │ ├── Calendar.spec.tsx │ │ ├── Calendar.tsx │ │ ├── CalendarNav.spec.tsx │ │ ├── CalendarNav.tsx │ │ ├── Cell.tsx │ │ ├── Day.tsx │ │ ├── DaysOfWeek.tsx │ │ ├── Month.spec.tsx │ │ ├── Month.tsx │ │ ├── MonthList.spec.tsx │ │ ├── MonthList.tsx │ │ ├── MonthPicker.tsx │ │ ├── MonthPickerNav.spec.tsx │ │ ├── MonthPickerNav.tsx │ │ ├── MonthTitle.spec.tsx │ │ ├── MonthTitle.tsx │ │ ├── README.md │ │ ├── ScrollableDateList.tsx │ │ ├── Year.tsx │ │ ├── YearList.spec.tsx │ │ ├── YearList.tsx │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── TimeFormat │ │ │ ├── README.md │ │ │ ├── TimeFormat.spec.tsx │ │ │ ├── TimeFormat.tsx │ │ │ └── index.ts │ │ │ ├── dateConfirmations.spec.tsx │ │ │ ├── dateConfirmations.ts │ │ │ ├── formatDateString.ts │ │ │ ├── getLocale.ts │ │ │ ├── index.ts │ │ │ ├── parseDateFromString.ts │ │ │ └── rangeTypeStyle.ts │ ├── Card │ │ ├── Card.spec.tsx │ │ ├── Card.tsx │ │ ├── CardContent.spec.tsx │ │ ├── CardContent.tsx │ │ ├── CardMedia.spec.tsx │ │ ├── CardMedia.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Chip │ │ ├── Chip.spec.tsx │ │ ├── Chip.tsx │ │ ├── README.md │ │ └── index.ts │ ├── ChipButton │ │ ├── ChipButton.spec.tsx │ │ ├── ChipButton.tsx │ │ ├── README.md │ │ └── index.ts │ ├── CopyToClipboard │ │ ├── CopyToClipboard.spec.tsx │ │ ├── CopyToClipboard.tsx │ │ ├── README.md │ │ └── index.ts │ ├── DataTable │ │ ├── BulkActions │ │ │ ├── BulkActions.tsx │ │ │ └── index.ts │ │ ├── Column │ │ │ ├── DataTableCell.spec.tsx │ │ │ ├── DataTableCell.tsx │ │ │ ├── FocusableCell.tsx │ │ │ ├── column.ts │ │ │ ├── columnSize.ts │ │ │ └── index.ts │ │ ├── DataTable.spec.tsx │ │ ├── DataTable.tsx │ │ ├── DataTableContext.tsx │ │ ├── Filters │ │ │ ├── ColumnSelector.spec.tsx │ │ │ ├── ColumnSelector.tsx │ │ │ ├── DataTableFilters.spec.tsx │ │ │ ├── DataTableFilters.tsx │ │ │ └── index.ts │ │ ├── Header │ │ │ ├── DataTableHeader.tsx │ │ │ ├── DataTableHeaderCell.tsx │ │ │ └── index.ts │ │ ├── Item │ │ │ ├── DataTableAction.tsx │ │ │ ├── DataTableCheckbox.spec.tsx │ │ │ ├── DataTableCheckbox.tsx │ │ │ ├── DataTableItem.tsx │ │ │ ├── DataTableRow.tsx │ │ │ ├── ItemTarget.tsx │ │ │ └── index.ts │ │ ├── README.md │ │ ├── Table.spec.tsx │ │ ├── Table.tsx │ │ ├── getNextFocus.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── __snapshots__ │ │ │ └── sort_utils.spec.ts.snap │ │ │ ├── allItemsSelected.ts │ │ │ ├── dataTableFormatting.spec.ts │ │ │ ├── dataTableFormatting.ts │ │ │ ├── edgeShadow.ts │ │ │ ├── index.ts │ │ │ ├── sort_utils.spec.ts │ │ │ ├── sort_utils.ts │ │ │ ├── useDataTable.spec.tsx │ │ │ ├── useDataTable.tsx │ │ │ ├── useDataTableSortManager.spec.tsx │ │ │ ├── useDataTableSortManager.tsx │ │ │ ├── useSelectManager.spec.tsx │ │ │ └── useSelectManager.tsx │ ├── Density │ │ ├── Density.spec.tsx │ │ ├── Density.tsx │ │ ├── README.md │ │ ├── fixtures.tsx │ │ └── index.ts │ ├── Dialog │ │ ├── Backdrop.tsx │ │ ├── Confirm │ │ │ ├── Confirm.spec.tsx │ │ │ ├── Confirm.tsx │ │ │ ├── ConfirmLayout.tsx │ │ │ ├── ConfirmationDialog.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Dialog.spec.tsx │ │ ├── Dialog.tsx │ │ ├── DialogContext │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── DialogRender.tsx │ │ ├── DialogSurface.tsx │ │ ├── Layout │ │ │ ├── DialogContent │ │ │ │ ├── DialogContent.spec.tsx │ │ │ │ ├── DialogContent.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── DialogFooter │ │ │ │ ├── DialogFooter.spec.tsx │ │ │ │ ├── DialogFooter.tsx │ │ │ │ ├── README.md │ │ │ │ ├── fixtures.tsx │ │ │ │ └── index.ts │ │ │ ├── DialogHeader │ │ │ │ ├── DialogHeader.spec.tsx │ │ │ │ ├── DialogHeader.tsx │ │ │ │ ├── README.md │ │ │ │ ├── fixtures.tsx │ │ │ │ └── index.ts │ │ │ ├── DialogLayout.spec.tsx │ │ │ ├── DialogLayout.tsx │ │ │ ├── README.md │ │ │ ├── fixtures.tsx │ │ │ └── index.ts │ │ ├── Prompt │ │ │ ├── Prompt.spec.tsx │ │ │ ├── Prompt.tsx │ │ │ ├── PromptDialog.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── README.md │ │ ├── SurfaceBase.tsx │ │ ├── dialogWidth.ts │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ └── useDialog.tsx │ ├── Divider │ │ ├── Divider.spec.tsx │ │ ├── Divider.tsx │ │ ├── DividerVertical.spec.tsx │ │ ├── DividerVertical.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Drawer │ │ ├── Drawer.spec.tsx │ │ ├── Drawer.tsx │ │ ├── DrawerSurface.tsx │ │ ├── README.md │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ └── useDrawer.tsx │ ├── Fieldset │ │ ├── Fieldset.spec.tsx │ │ ├── Fieldset.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Form │ │ ├── Fields │ │ │ ├── Field │ │ │ │ ├── Field.spec.tsx │ │ │ │ ├── Field.tsx │ │ │ │ ├── FieldDetail.ts │ │ │ │ ├── FieldInline.tsx │ │ │ │ ├── FieldLabel.tsx │ │ │ │ ├── FloatingLabelField.spec.tsx │ │ │ │ ├── FloatingLabelField.tsx │ │ │ │ ├── HelperText.tsx │ │ │ │ ├── InputArea.ts │ │ │ │ ├── README.md │ │ │ │ ├── RequiredStar.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── useFloatingLabel.ts │ │ │ ├── FieldCheckbox │ │ │ │ ├── FieldCheckbox.spec.tsx │ │ │ │ ├── FieldCheckbox.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldCheckboxGroup │ │ │ │ ├── FieldCheckboxGroup.spec.tsx │ │ │ │ ├── FieldCheckboxGroup.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldChips │ │ │ │ ├── FieldChips.spec.tsx │ │ │ │ ├── FieldChips.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldColor │ │ │ │ ├── FieldColor.spec.tsx │ │ │ │ ├── FieldColor.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldDate │ │ │ │ ├── FeildDate.spec.tsx │ │ │ │ ├── FieldDate.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldDateRange │ │ │ │ ├── FieldDateRange.spec.tsx │ │ │ │ ├── FieldDateRange.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldRadio │ │ │ │ ├── FieldRadio.spec.tsx │ │ │ │ ├── FieldRadio.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldRadioGroup │ │ │ │ ├── FieldRadioGroup.spec.tsx │ │ │ │ ├── FieldRadioGroup.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldRangeSlider │ │ │ │ ├── FieldRangeSlider.spec.tsx │ │ │ │ ├── FieldRangeSlider.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldSelect │ │ │ │ ├── FieldSelect.spec.tsx │ │ │ │ ├── FieldSelect.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldSelectMulti │ │ │ │ ├── FieldSelectMulti.spec.tsx │ │ │ │ ├── FieldSelectMulti.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldSlider │ │ │ │ ├── FieldSlider.spec.tsx │ │ │ │ ├── FieldSlider.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldText │ │ │ │ ├── FieldText.spec.tsx │ │ │ │ ├── FieldText.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldTextArea │ │ │ │ ├── FieldTextArea.spec.tsx │ │ │ │ ├── FieldTextArea.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldTime │ │ │ │ ├── FieldTime.spec.tsx │ │ │ │ ├── FieldTime.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldTimeSelect │ │ │ │ ├── FieldTimeSelect.spec.tsx │ │ │ │ ├── FieldTimeSelect.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── FieldToggleSwitch │ │ │ │ ├── FieldToggleSwitch.spec.tsx │ │ │ │ ├── FieldToggleSwitch.tsx │ │ │ │ ├── README.md │ │ │ │ ├── fixtures.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Form.spec.tsx │ │ ├── Form.tsx │ │ ├── Inputs │ │ │ ├── AdvancedInputControls.tsx │ │ │ ├── Checkbox │ │ │ │ ├── CheckMark.tsx │ │ │ │ ├── CheckMarkMixed.tsx │ │ │ │ ├── Checkbox.spec.tsx │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── FauxCheckbox.tsx │ │ │ │ ├── README.md │ │ │ │ ├── fixtures.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── useMixedStateCheckbox.spec.tsx │ │ │ │ └── useMixedStateCheckbox.ts │ │ │ ├── CheckboxGroup │ │ │ │ ├── CheckboxGroup.spec.tsx │ │ │ │ ├── CheckboxGroup.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── Combobox │ │ │ │ ├── Combobox │ │ │ │ │ ├── Combobox.spec.tsx │ │ │ │ │ ├── Combobox.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxContext │ │ │ │ │ ├── ComboboxContext.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxInput │ │ │ │ │ ├── ComboboxInput.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxList │ │ │ │ │ ├── ComboboxList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxMulti │ │ │ │ │ ├── ComboboxMulti.spec.tsx │ │ │ │ │ ├── ComboboxMulti.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxMultiInput │ │ │ │ │ ├── ComboboxMultiInput.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxMultiOption │ │ │ │ │ ├── ComboboxMultiOption.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxOption │ │ │ │ │ ├── ComboboxOption.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxOptionIndicator │ │ │ │ │ ├── ComboboxOptionIndicator.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ComboboxWrapper │ │ │ │ │ ├── ComboboxWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── README.md │ │ │ │ ├── helpers.spec.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── formatOptionAsString.ts │ │ │ │ │ ├── getComboboxText.spec.ts │ │ │ │ │ ├── getComboboxText.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── makeHash.ts │ │ │ │ │ ├── parseOption.ts │ │ │ │ │ ├── state.ts │ │ │ │ │ ├── useAddOptionToContext.ts │ │ │ │ │ ├── useBlur.ts │ │ │ │ │ ├── useComboboxRefs.ts │ │ │ │ │ ├── useComboboxToggle.ts │ │ │ │ │ ├── useFocusManagement.ts │ │ │ │ │ ├── useInputEvents.ts │ │ │ │ │ ├── useInputPropRefs.ts │ │ │ │ │ ├── useKeyDown.ts │ │ │ │ │ ├── useListWidths.spec.tsx │ │ │ │ │ ├── useListWidths.ts │ │ │ │ │ ├── useOptionEvents.ts │ │ │ │ │ ├── useOptionScroll.spec.ts │ │ │ │ │ ├── useOptionScroll.ts │ │ │ │ │ ├── useOptionStatus.ts │ │ │ │ │ ├── useScrollState.ts │ │ │ │ │ └── useUpdateListRefs.ts │ │ │ ├── DateFormat │ │ │ │ ├── DateFormat.spec.tsx │ │ │ │ ├── DateFormat.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── DateTimeFormat │ │ │ │ ├── DateTimeFormat.spec.tsx │ │ │ │ ├── DateTimeFormat.tsx │ │ │ │ └── index.ts │ │ │ ├── ErrorIcon.tsx │ │ │ ├── InlineInputText │ │ │ │ ├── InlineInputText.spec.tsx │ │ │ │ ├── InlineInputText.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InlineTextArea │ │ │ │ ├── InlineTextArea.spec.tsx │ │ │ │ ├── InlineTextArea.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputChips │ │ │ │ ├── InputChips.spec.tsx │ │ │ │ ├── InputChips.tsx │ │ │ │ ├── InputChipsBase.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputColor │ │ │ │ ├── ColorPicker │ │ │ │ │ ├── ColorPicker.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Handle │ │ │ │ │ ├── Handle.tsx │ │ │ │ │ ├── Handle2d.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── HueSlider │ │ │ │ │ ├── HueSlider.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── InputColor.spec.tsx │ │ │ │ ├── InputColor.tsx │ │ │ │ ├── LightSaturationPreview │ │ │ │ │ ├── LightSaturationPreview.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── README.md │ │ │ │ ├── Swatch │ │ │ │ │ ├── Swatch.spec.tsx │ │ │ │ │ ├── Swatch.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── dimensions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── hsvToHex.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── isValidColor.spec.ts │ │ │ │ │ ├── isValidColor.ts │ │ │ │ │ ├── simpleHsvToHex.ts │ │ │ │ │ ├── stringToSimpleHsv.spec.ts │ │ │ │ │ └── stringToSimpleHsv.ts │ │ │ ├── InputDate │ │ │ │ ├── InputDate.spec.tsx │ │ │ │ ├── InputDate.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputDateRange │ │ │ │ ├── InputDateRange.spec.tsx │ │ │ │ ├── InputDateRange.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputFile │ │ │ │ ├── InputFile.spec.tsx │ │ │ │ ├── InputFile.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputFilters │ │ │ │ ├── InputFilters.spec.tsx │ │ │ │ ├── InputFilters.tsx │ │ │ │ ├── InputFiltersChip.spec.tsx │ │ │ │ ├── InputFiltersChip.tsx │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ ├── inputFilterEditor.spec.tsx │ │ │ │ ├── inputFilterEditor.tsx │ │ │ │ └── types.ts │ │ │ ├── InputHidden │ │ │ │ ├── InputHidden.spec.tsx │ │ │ │ ├── InputHidden.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputProps.ts │ │ │ ├── InputSearch │ │ │ │ ├── InputSearch.spec.tsx │ │ │ │ ├── InputSearch.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── InputText │ │ │ │ ├── After.tsx │ │ │ │ ├── Before.tsx │ │ │ │ ├── InputText.spec.tsx │ │ │ │ ├── InputText.tsx │ │ │ │ ├── InputTextContent.ts │ │ │ │ ├── InputTextContext.ts │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── InputTime │ │ │ │ ├── InputTime.spec.tsx │ │ │ │ ├── InputTime.tsx │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── InputTimeSelect │ │ │ │ ├── InputTimeSelect.spec.tsx │ │ │ │ ├── InputTimeSelect.tsx │ │ │ │ ├── README.md │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── InputTimeSelect.spec.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── Radio │ │ │ │ ├── FauxRadio.tsx │ │ │ │ ├── README.md │ │ │ │ ├── Radio.spec.tsx │ │ │ │ ├── Radio.tsx │ │ │ │ ├── fixtures.tsx │ │ │ │ └── index.ts │ │ │ ├── RadioGroup │ │ │ │ ├── README.md │ │ │ │ ├── RadioGroup.spec.tsx │ │ │ │ ├── RadioGroup.tsx │ │ │ │ └── index.ts │ │ │ ├── RangeSlider │ │ │ │ ├── README.md │ │ │ │ ├── RangeSlider.spec.tsx │ │ │ │ ├── RangeSlider.tsx │ │ │ │ ├── fixtures.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── precisionUtils.spec.ts │ │ │ │ └── precisionUtils.ts │ │ │ ├── Select │ │ │ │ ├── README.md │ │ │ │ ├── Select.spec.tsx │ │ │ │ ├── Select.tsx │ │ │ │ ├── SelectInputIcon.tsx │ │ │ │ ├── SelectMulti │ │ │ │ │ ├── SelectMulti.spec.tsx │ │ │ │ │ ├── SelectMulti.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SelectOptions │ │ │ │ │ ├── SelectOptionDetail.tsx │ │ │ │ │ ├── SelectOptions.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── options.ts │ │ │ │ │ ├── useFlatOptions.ts │ │ │ │ │ ├── useWindowedOptions.spec.tsx │ │ │ │ │ └── useWindowedOptions.tsx │ │ │ ├── Slider │ │ │ │ ├── README.md │ │ │ │ ├── Slider.spec.tsx │ │ │ │ ├── Slider.tsx │ │ │ │ └── index.ts │ │ │ ├── TextArea │ │ │ │ ├── README.md │ │ │ │ ├── TextArea.spec.tsx │ │ │ │ ├── TextArea.tsx │ │ │ │ └── index.ts │ │ │ ├── ToggleSwitch │ │ │ │ ├── Handle.tsx │ │ │ │ ├── README.md │ │ │ │ ├── ToggleSwitch.spec.tsx │ │ │ │ ├── ToggleSwitch.tsx │ │ │ │ ├── Track.tsx │ │ │ │ ├── fixtures.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── ariaProps.ts │ │ │ ├── height.ts │ │ │ ├── index.ts │ │ │ ├── innerInputStyle.ts │ │ │ ├── inputIconSize.ts │ │ │ └── utils │ │ │ │ ├── index.ts │ │ │ │ └── useTranslation.ts │ │ ├── Label │ │ │ ├── Label.spec.tsx │ │ │ ├── Label.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Legend │ │ │ ├── Legend.spec.tsx │ │ │ ├── Legend.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── README.md │ │ ├── ValidationMessage │ │ │ ├── README.md │ │ │ ├── ValidationMessage.spec.tsx │ │ │ ├── ValidationMessage.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ └── index.ts │ ├── Icon │ │ ├── Icon.spec.tsx │ │ ├── Icon.tsx │ │ ├── IconPlaceholder.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Layout │ │ ├── Box │ │ │ ├── Box.spec.tsx │ │ │ ├── Box.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Box2 │ │ │ └── index.ts │ │ ├── Flex │ │ │ ├── Flex.spec.tsx │ │ │ ├── Flex.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── FlexItem │ │ │ ├── FlexItem.spec.tsx │ │ │ ├── FlexItem.tsx │ │ │ └── index.ts │ │ ├── Grid │ │ │ ├── Grid.spec.tsx │ │ │ ├── Grid.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Semantics │ │ │ ├── Aside │ │ │ │ ├── Aside.spec.tsx │ │ │ │ ├── Aside.tsx │ │ │ │ ├── README.md │ │ │ │ ├── asideWidth.ts │ │ │ │ └── index.ts │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Layout │ │ │ │ ├── Layout.spec.tsx │ │ │ │ ├── Layout.tsx │ │ │ │ ├── README.md │ │ │ │ ├── fixtures.tsx │ │ │ │ └── index.ts │ │ │ ├── Page.tsx │ │ │ ├── Section │ │ │ │ ├── Section.spec.tsx │ │ │ │ ├── Section.tsx │ │ │ │ └── index.ts │ │ │ ├── Semantics.spec.tsx │ │ │ └── index.ts │ │ ├── Space │ │ │ ├── Space │ │ │ │ ├── README.md │ │ │ │ ├── Space.spec.tsx │ │ │ │ ├── Space.tsx │ │ │ │ └── index.ts │ │ │ ├── SpaceVertical │ │ │ │ ├── README.md │ │ │ │ ├── SpaceVertical.spec.tsx │ │ │ │ ├── SpaceVertical.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── common.ts │ │ │ ├── complex.ts │ │ │ └── simple.ts │ ├── Link │ │ ├── Link.spec.tsx │ │ ├── Link.tsx │ │ ├── README.md │ │ └── index.ts │ ├── List │ │ ├── List.spec.tsx │ │ ├── List.tsx │ │ ├── ListDivider.tsx │ │ ├── README.md │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── getNextItemFocus.ts │ │ │ ├── index.ts │ │ │ └── listPadding.ts │ ├── ListItem │ │ ├── ListItem.spec.tsx │ │ ├── ListItem.tsx │ │ ├── ListItemContent.tsx │ │ ├── ListItemContext.tsx │ │ ├── ListItemDetail.tsx │ │ ├── ListItemIcon.tsx │ │ ├── ListItemLabel.tsx │ │ ├── ListItemPreface.tsx │ │ ├── ListItemWrapper.tsx │ │ ├── README.md │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── createListItemPartitions.tsx │ │ │ ├── getDetailOptions.ts │ │ │ ├── index.ts │ │ │ ├── isListColor.spec.ts │ │ │ ├── isListColor.ts │ │ │ ├── listItemBackgroundColor.ts │ │ │ ├── listItemColor.ts │ │ │ ├── listItemDimensions.ts │ │ │ ├── listItemPaddingX.ts │ │ │ └── listItemPaddingY.ts │ ├── LkFieldTree │ │ ├── LkFieldGroupTree.tsx │ │ ├── LkFieldItem.spec.tsx │ │ ├── LkFieldItem.tsx │ │ ├── LkFieldItemContent.tsx │ │ ├── LkFieldItemLabel.tsx │ │ ├── LkFieldTree.spec.tsx │ │ ├── LkFieldTree.tsx │ │ ├── LkFieldTreeAccordionContent.tsx │ │ ├── LkFieldTreeAccordionDisclosure.tsx │ │ ├── LkFieldViewTree.tsx │ │ ├── README.md │ │ ├── defaults.ts │ │ ├── index.ts │ │ └── types.ts │ ├── Menu │ │ ├── Menu.spec.tsx │ │ ├── Menu.tsx │ │ ├── MenuDivider.tsx │ │ ├── MenuHeading.hooks.spec.tsx │ │ ├── MenuHeading.hooks.ts │ │ ├── MenuHeading.tsx │ │ ├── MenuItem │ │ │ ├── MenuItem.spec.tsx │ │ │ ├── MenuItem.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── MenuList │ │ │ ├── MenuList.spec.tsx │ │ │ ├── MenuList.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── NestedMenuProvider.tsx │ │ ├── NestedMenuSurface.ts │ │ ├── README.md │ │ ├── index.ts │ │ └── useNestedMenu.tsx │ ├── MessageBar │ │ ├── MessageBar.spec.tsx │ │ ├── MessageBar.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Modal │ │ ├── ModalContent │ │ │ ├── ModalContent.spec.tsx │ │ │ ├── ModalContent.tsx │ │ │ └── index.ts │ │ ├── ModalFooter │ │ │ ├── ModalFooter.spec.tsx │ │ │ ├── ModalFooter.tsx │ │ │ └── index.ts │ │ ├── ModalHeader │ │ │ ├── ModalHeader.spec.tsx │ │ │ ├── ModalHeader.tsx │ │ │ └── index.ts │ │ ├── ModalHeaderCloseButton.tsx │ │ ├── ModalLayout │ │ │ ├── ModalLayout.spec.tsx │ │ │ ├── ModalLayout.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── modal.spec.tsx │ ├── NavList │ │ ├── NavList.spec.tsx │ │ ├── NavList.tsx │ │ ├── README.md │ │ ├── fixtures.tsx │ │ └── index.ts │ ├── NavTree │ │ ├── NavTree.spec.tsx │ │ ├── NavTree.tsx │ │ ├── NavTreeDisclosure.tsx │ │ ├── NavTreeItem │ │ │ ├── NavTreeItem.spec.tsx │ │ │ ├── NavTreeItem.tsx │ │ │ ├── NavTreeItemContent.tsx │ │ │ └── index.ts │ │ ├── README.md │ │ ├── index.ts │ │ └── types.ts │ ├── OrderedList │ │ ├── OrderedList.spec.tsx │ │ ├── OrderedList.tsx │ │ ├── README.md │ │ └── index.tsx │ ├── Overlay │ │ ├── OverlayArrow.tsx │ │ └── OverlaySurface.tsx │ ├── PageSize │ │ ├── PageSize.spec.tsx │ │ ├── PageSize.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Pagination │ │ ├── DoubleChevronLeft.tsx │ │ ├── DoubleChevronRight.tsx │ │ ├── Pagination.spec.tsx │ │ ├── Pagination.tsx │ │ ├── README.md │ │ └── index.ts │ ├── Panel │ │ ├── Panel.spec.tsx │ │ ├── Panel.tsx │ │ ├── PanelHeader.tsx │ │ ├── PanelSurface.tsx │ │ ├── PanelWindow.tsx │ │ ├── Panels.tsx │ │ ├── README.md │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── usePanel.tsx │ ├── Popover │ │ ├── Layout │ │ │ ├── PopoverContent │ │ │ │ ├── PopoverContent.spec.tsx │ │ │ │ ├── PopoverContent.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── PopoverFooter │ │ │ │ ├── PopoverFooter.spec.tsx │ │ │ │ ├── PopoverFooter.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── PopoverHeader │ │ │ │ ├── PopoverHeader.spec.tsx │ │ │ │ ├── PopoverHeader.tsx │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── PopoverLayout.spec.tsx │ │ │ ├── PopoverLayout.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Popover.spec.tsx │ │ ├── Popover.tsx │ │ ├── README.md │ │ ├── index.ts │ │ ├── usePopover.tsx │ │ ├── usePopoverToggle.tsx │ │ └── useVerticalSpace.tsx │ ├── Portal │ │ ├── Portal.tsx │ │ └── index.ts │ ├── PrismCodeBlock │ │ ├── PrismCodeBlock.tsx │ │ └── index.tsx │ ├── ProgressCircular │ │ ├── DeterminateProgress.tsx │ │ ├── IndeterminateProgress.tsx │ │ ├── ProgressCircular.spec.tsx │ │ ├── ProgressCircular.tsx │ │ ├── ProgressSvg.tsx │ │ ├── README.md │ │ ├── constants.ts │ │ ├── index.ts │ │ └── size.ts │ ├── ProgressDuet │ │ ├── ProgressDuetLoadingBar.tsx │ │ ├── ProgressDuetRow.tsx │ │ ├── README.md │ │ ├── index.spec.tsx │ │ ├── index.tsx │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── getRandomInt.ts │ │ │ ├── getRandomWithinRange.ts │ │ │ └── renderLoadingRow.tsx │ ├── ReplaceText │ │ ├── README.md │ │ ├── ReplaceText.spec.tsx │ │ ├── ReplaceText.tsx │ │ └── index.ts │ ├── Ripple │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── inputRippleColor.ts │ │ ├── rippleStyle.ts │ │ ├── types.ts │ │ ├── useBoundedRipple.spec.tsx │ │ ├── useBoundedRipple.ts │ │ ├── useRipple.spec.tsx │ │ ├── useRipple.ts │ │ ├── useRippleHandlers.spec.tsx │ │ ├── useRippleHandlers.ts │ │ ├── useRippleState.ts │ │ └── useRippleStateBG.ts │ ├── Spinner │ │ ├── README.md │ │ ├── Spinner.spec.tsx │ │ ├── Spinner.tsx │ │ ├── SpinnerMarker.tsx │ │ └── index.ts │ ├── Status │ │ ├── README.md │ │ ├── Status.spec.tsx │ │ ├── Status.tsx │ │ └── index.ts │ ├── Table │ │ ├── README.md │ │ ├── Table.spec.tsx │ │ ├── Table.tsx │ │ ├── TableBody │ │ │ ├── README.md │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── TableDataCell │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── TableFoot │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── TableHead │ │ │ ├── README.md │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── TableHeaderCell │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── TableRow │ │ │ ├── index.spec.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── tableCell.ts │ │ └── tableSection.ts │ ├── Tabs │ │ ├── README.md │ │ ├── Tab.tsx │ │ ├── TabList.tsx │ │ ├── TabPanel.tsx │ │ ├── TabPanels.tsx │ │ ├── Tabs.spec.tsx │ │ ├── Tabs.tsx │ │ └── index.ts │ ├── Tabs2 │ │ ├── README.md │ │ ├── Tab2.tsx │ │ ├── TabIndicator.ts │ │ ├── TabLabel.ts │ │ ├── TabList2.tsx │ │ ├── TabPanels2.tsx │ │ ├── Tabs2.spec.tsx │ │ ├── Tabs2.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── Text │ │ ├── Code │ │ │ ├── Code.spec.tsx │ │ │ ├── Code.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── CodeBlock │ │ │ ├── CodeBlock.spec.tsx │ │ │ ├── CodeBlock.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Heading │ │ │ ├── Heading.spec.tsx │ │ │ ├── Heading.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Paragraph │ │ │ ├── Paragraph.spec.tsx │ │ │ ├── Paragraph.tsx │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── Span │ │ │ ├── README.md │ │ │ ├── Span.tsx │ │ │ └── index.ts │ │ ├── Text │ │ │ ├── README.md │ │ │ ├── Text.spec.tsx │ │ │ ├── Text.tsx │ │ │ ├── TextBase.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── truncate.ts │ ├── Tooltip │ │ ├── README.md │ │ ├── Tooltip.spec.tsx │ │ ├── Tooltip.tsx │ │ ├── TooltipContent.tsx │ │ ├── TooltipSurface.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── useTooltip.tsx │ ├── Tree │ │ ├── README.md │ │ ├── Tree.spec.tsx │ │ ├── Tree.tsx │ │ ├── TreeBranch.spec.tsx │ │ ├── TreeBranch.tsx │ │ ├── TreeCollection.spec.tsx │ │ ├── TreeCollection.tsx │ │ ├── TreeCollectionContext.ts │ │ ├── TreeContext.tsx │ │ ├── TreeItem.spec.tsx │ │ ├── TreeItem.tsx │ │ ├── TreeItemContent.tsx │ │ ├── WindowedTreeCollection.spec.tsx │ │ ├── WindowedTreeCollection.tsx │ │ ├── WindowedTreeNode.tsx │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── generateBorderRadius.tsx │ │ │ ├── generateIndent.ts │ │ │ ├── generateTreeBorder.spec.tsx │ │ │ ├── generateTreeBorder.ts │ │ │ ├── getWindowedTreeNodeFilterer.ts │ │ │ ├── index.ts │ │ │ ├── indicatorDefaults.tsx │ │ │ ├── partitionTreeProps.ts │ │ │ ├── useTreeHandlers.ts │ │ │ ├── useWindowedTree.tsx │ │ │ └── windowedTreeReducer.ts │ ├── Truncate │ │ ├── README.md │ │ ├── Truncate.spec.tsx │ │ ├── Truncate.tsx │ │ ├── index.ts │ │ └── useTruncateTooltip.tsx │ ├── UnorderedList │ │ ├── README.md │ │ ├── UnorderedList.spec.tsx │ │ ├── UnorderedList.tsx │ │ └── index.tsx │ ├── VisuallyHidden │ │ ├── README.md │ │ ├── VisuallyHidden.spec.tsx │ │ ├── VisuallyHidden.tsx │ │ └── index.ts │ ├── fixtures │ │ ├── CheckboxRadio.tsx │ │ ├── Constitution.tsx │ │ ├── DataTable │ │ │ ├── columns.tsx │ │ │ └── data.tsx │ │ ├── DialogContentSimple.tsx │ │ ├── DialogExampleLayout.tsx │ │ ├── DialogLongContent.tsx │ │ ├── DialogMediumContent.tsx │ │ ├── ListHelper.tsx │ │ ├── accordion.ts │ │ ├── filters.ts │ │ └── index.ts │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── HoverDisclosure │ │ ├── HoverDisclosure.tsx │ │ ├── HoverDisclosureContext.tsx │ │ └── index.ts │ │ ├── checkElementRemoved.ts │ │ ├── createSafeRel.ts │ │ ├── getCurrentNode.ts │ │ ├── getNextFocus.ts │ │ ├── getWindowedListBoundaries.spec.tsx │ │ ├── getWindowedListBoundaries.tsx │ │ ├── index.ts │ │ ├── isOverflowing.ts │ │ ├── mergeClassNames.ts │ │ ├── mergeHandlers.ts │ │ ├── partitionAriaProps.ts │ │ ├── targetIsButton.ts │ │ ├── undefinedCoalesce.ts │ │ ├── useAnimationState.ts │ │ ├── useArrowKeyNav.spec.tsx │ │ ├── useArrowKeyNav.ts │ │ ├── useCallbackRef.ts │ │ ├── useClickable.spec.tsx │ │ ├── useClickable.ts │ │ ├── useControlWarn.ts │ │ ├── useDelayedState.ts │ │ ├── useEffectDeepEquals.ts │ │ ├── useFocusTrap.spec.tsx │ │ ├── useFocusTrap.ts │ │ ├── useFocusVisible.spec.tsx │ │ ├── useFocusVisible.ts │ │ ├── useForkedRef.ts │ │ ├── useGlobalHotkeys.spec.tsx │ │ ├── useGlobalHotkeys.ts │ │ ├── useHovered.spec.tsx │ │ ├── useHovered.ts │ │ ├── useID.ts │ │ ├── useIsTruncated.ts │ │ ├── useMeasuredElement.ts │ │ ├── useMounted.ts │ │ ├── useMouseDownClick.ts │ │ ├── useMouseDragPosition.ts │ │ ├── useOverflow │ │ ├── OverflowShadow.tsx │ │ ├── index.ts │ │ └── useOverflow.ts │ │ ├── usePopper.ts │ │ ├── usePreviousValue.ts │ │ ├── useReadOnlyWarn.ts │ │ ├── useResize.spec.tsx │ │ ├── useResize.ts │ │ ├── useSafeLayoutEffect.tsx │ │ ├── useSafeSetState.spec.tsx │ │ ├── useSafeSetState.ts │ │ ├── useScrollLock.spec.tsx │ │ ├── useScrollLock.ts │ │ ├── useScrollPosition.ts │ │ ├── useSyncedState.ts │ │ ├── useToggle.ts │ │ ├── useTranslation.ts │ │ ├── useTrapStack.ts │ │ ├── useWindow.spec.tsx │ │ ├── useWindow.ts │ │ └── useWrapEvent.ts ├── stryker.config.json ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html └── tsconfig.build.json ├── design-tokens ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── package.json ├── src │ ├── color │ │ ├── blendPoints.ts │ │ ├── colors.ts │ │ ├── defaultSpecifiableColors.ts │ │ ├── defaults.ts │ │ ├── fallbacks.ts │ │ ├── index.ts │ │ ├── types │ │ │ ├── backgroundColor.ts │ │ │ ├── blends.ts │ │ │ ├── derivative.ts │ │ │ ├── index.ts │ │ │ ├── specifiable.ts │ │ │ ├── stateful.ts │ │ │ └── textColor.ts │ │ └── utils │ │ │ ├── colorBreakdown.ts │ │ │ ├── generateBlendColors.spec.tsx │ │ │ ├── generateBlendColors.ts │ │ │ ├── generateColors.ts │ │ │ ├── generateDerivativeColors.ts │ │ │ ├── generateIntentShade.spec.tsx │ │ │ ├── generateIntentShade.ts │ │ │ ├── generateStatefulColors.spec.ts │ │ │ ├── generateStatefulColors.ts │ │ │ ├── index.ts │ │ │ ├── intentUIBlend.spec.tsx │ │ │ ├── intentUIBlend.ts │ │ │ ├── itemSelectedColor.spec.ts │ │ │ ├── itemSelectedColor.ts │ │ │ ├── mixColors.spec.ts │ │ │ ├── mixColors.ts │ │ │ ├── mixScaledColors.spec.ts │ │ │ ├── mixScaledColors.ts │ │ │ ├── pickSpecifiableColors.spec.ts │ │ │ ├── pickSpecifiableColors.ts │ │ │ ├── scaleMixAmount.ts │ │ │ ├── tintOrShadeUiColor.spec.ts │ │ │ └── tintOrShadeUiColor.ts │ ├── defaults │ │ ├── generateDefaults.spec.ts │ │ ├── generateDefaults.ts │ │ ├── index.ts │ │ └── types.ts │ ├── elevation │ │ ├── index.ts │ │ └── types.ts │ ├── index.ts │ ├── legacy │ │ ├── index.ts │ │ └── palette.ts │ ├── space │ │ ├── index.ts │ │ ├── types.ts │ │ └── units.ts │ ├── system │ │ ├── cursor.spec.tsx │ │ ├── cursor.ts │ │ ├── density.ts │ │ ├── easings.ts │ │ ├── index.ts │ │ ├── radii.ts │ │ ├── reset.spec.tsx │ │ ├── reset.ts │ │ ├── shadows.ts │ │ ├── size.ts │ │ ├── transitions.ts │ │ ├── typography │ │ │ ├── font_families.ts │ │ │ ├── font_sizes.ts │ │ │ ├── font_sources.ts │ │ │ ├── font_weights.ts │ │ │ ├── index.ts │ │ │ ├── line_heights.ts │ │ │ ├── text_decoration.spec.tsx │ │ │ ├── text_decoration.ts │ │ │ ├── text_transform.spec.tsx │ │ │ └── text_transform.ts │ │ ├── userSelect.spec.tsx │ │ └── userSelect.ts │ ├── theme │ │ ├── ThemeCustomizations.spec.ts │ │ ├── ThemeCustomizations.ts │ │ ├── dashboardAppearance.ts │ │ ├── index.ts │ │ ├── theme.ts │ │ └── utils │ │ │ ├── generateDashboardAppearance.ts │ │ │ ├── generateTheme.spec.ts │ │ │ ├── generateTheme.ts │ │ │ └── index.ts │ ├── tokens │ │ ├── breakpoints.ts │ │ ├── easings.ts │ │ ├── index.ts │ │ ├── radii.ts │ │ ├── shadows.ts │ │ ├── size.ts │ │ ├── transitions.ts │ │ └── typography │ │ │ ├── font_families.ts │ │ │ ├── font_sizes.ts │ │ │ ├── font_weights.ts │ │ │ ├── index.ts │ │ │ └── line_heights.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── animations.ts │ │ ├── convertRemToPx.spec.ts │ │ ├── convertRemToPx.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── omit.ts │ │ ├── paddingDefaultsHelper.spec.ts │ │ ├── paddingDefaultsHelper.ts │ │ ├── pick.ts │ │ ├── semanticBorderHelper.ts │ │ └── typography │ │ ├── fontFacesToFamily.spec.ts │ │ ├── fontFacesToFamily.ts │ │ ├── generateFontFamilies.spec.ts │ │ ├── generateFontFamilies.ts │ │ ├── googleFontUrl.spec.ts │ │ ├── googleFontUrl.ts │ │ ├── index.ts │ │ ├── sanitizeFont.spec.ts │ │ └── sanitizeFont.ts ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html └── tsconfig.build.json ├── eslint-config-oss ├── .eslintrc ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ ├── index.js │ └── oss-compat.js └── tsconfig.build.json ├── eslint-plugin ├── .babelrc.js ├── .eslintrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── README.md ├── jest.config.js ├── package.json ├── src │ ├── i18nFormat │ │ ├── index.js │ │ └── index.spec.js │ ├── index.js │ ├── licenseHeader │ │ ├── README.md │ │ ├── deriveLintErrorCode.js │ │ ├── index.js │ │ ├── index.private.spec.js │ │ ├── index.spec.js │ │ ├── licenseTextFull.js │ │ └── licenseTextSPDX.js │ ├── noLiteralString │ │ └── index.js │ ├── noMixedAngularJsHotProviders │ │ ├── index.js │ │ └── index.spec.js │ ├── noPrivateDependencies │ │ ├── README.md │ │ ├── index.js │ │ └── index.spec.js │ └── publishConfig │ │ ├── README.md │ │ ├── index.js │ │ ├── index.private.spec.js │ │ └── index.spec.js └── test │ └── output │ └── jest │ ├── jest-html-reporters-attach │ └── report │ │ ├── index.js │ │ └── result.js │ └── report.html ├── filter-components ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── da_DK │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── de_DE │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── en │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── es_ES │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── fi_FI │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── fr_CA │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── fr_FR │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── he_IL │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── hi_IN │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── it_IT │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── ja_JP │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── ko_KR │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── lt_LT │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── nb_NO │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── nl_NL │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── pl_PL │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── pt_BR │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── pt_PT │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── ru_RU │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── sv_SE │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── format_date.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── th_TH │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── tr_TR │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── uk_UA │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ ├── zh_CN │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json │ └── zh_TW │ │ ├── AddRemoveButtons.strings.json │ │ ├── BeforeAfter.strings.json │ │ ├── Between.strings.json │ │ ├── DateRange.strings.json │ │ ├── NoMatchingFields.strings.json │ │ ├── NumberFilter.strings.json │ │ ├── OperatorLabel.strings.json │ │ ├── RadioGroup.strings.json │ │ ├── ReactSelectCustomIcons.strings.json │ │ ├── Relative.strings.json │ │ ├── RelativeTimeframe.strings.json │ │ ├── RelativeTimeframePopoverContent.strings.json │ │ ├── RelativeTimeframePresets.strings.json │ │ ├── UserAttributes.strings.json │ │ ├── before_after_units.strings.json │ │ ├── date_units.strings.json │ │ ├── get_date_filter_options.strings.json │ │ ├── get_filter_options.strings.json │ │ ├── get_location_filter_options.strings.json │ │ ├── get_number_filter_options.strings.json │ │ ├── get_relative_timeframe_presets.strings.json │ │ ├── get_string_filter_options.strings.json │ │ ├── get_tier_filter_options.strings.json │ │ ├── get_user_attribute_option.strings.json │ │ ├── past_units.strings.json │ │ ├── use_filters_errors.strings.json │ │ ├── use_option_filtering.strings.json │ │ ├── use_placeholder.strings.json │ │ ├── use_suggestable.strings.json │ │ └── use_validation_message.strings.json ├── package.json ├── src │ ├── DashboardFilter │ │ ├── DashboardFilter.spec.tsx │ │ ├── DashboardFilter.tsx │ │ ├── README.md │ │ ├── index.ts │ │ ├── use_expression_state.ts │ │ ├── use_suggestable.spec.tsx │ │ └── use_suggestable.ts │ ├── Filter │ │ ├── Filter.spec.tsx │ │ ├── Filter.tsx │ │ ├── README.md │ │ ├── components │ │ │ ├── AdvancedFilter │ │ │ │ ├── AdvancedFilter.spec.tsx │ │ │ │ ├── AdvancedFilter.tsx │ │ │ │ ├── components │ │ │ │ │ ├── AddRemoveButtons │ │ │ │ │ │ ├── AddRemoveButtons.spec.tsx │ │ │ │ │ │ ├── AddRemoveButtons.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Blank.tsx │ │ │ │ │ ├── DateFilter │ │ │ │ │ │ ├── DateFilter.spec.tsx │ │ │ │ │ │ ├── DateFilter.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── BeforeAfter │ │ │ │ │ │ │ │ ├── BeforeAfter.spec.tsx │ │ │ │ │ │ │ │ ├── BeforeAfter.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── DateInput │ │ │ │ │ │ │ │ ├── DateInput.spec.tsx │ │ │ │ │ │ │ │ ├── DateInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── DateRange │ │ │ │ │ │ │ │ ├── DateRange.spec.tsx │ │ │ │ │ │ │ │ ├── DateRange.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── DayRangeInput │ │ │ │ │ │ │ │ ├── DayRangeInput.spec.tsx │ │ │ │ │ │ │ │ ├── DayRangeInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── Interval │ │ │ │ │ │ │ │ ├── Interval.spec.tsx │ │ │ │ │ │ │ │ ├── Interval.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── OnDate │ │ │ │ │ │ │ │ ├── OnDate.spec.tsx │ │ │ │ │ │ │ │ ├── OnDate.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── Past │ │ │ │ │ │ │ │ ├── Past.spec.tsx │ │ │ │ │ │ │ │ ├── Past.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── Relative │ │ │ │ │ │ │ │ ├── Relative.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── RelativeTimeframes │ │ │ │ │ │ │ │ ├── RelativeTimeframes.spec.tsx │ │ │ │ │ │ │ │ ├── RelativeTimeframes.tsx │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── RelativeTimeframeCustom │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframeCustom.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframeCustom.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── RelativeTimeframePopoverContent │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframePopoverContent.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframePopoverContent.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ └── RelativeTimeframePresets │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframePresets.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── RelativeTimeframePresets.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ └── get_relative_timeframe_presets.ts │ │ │ │ │ │ │ ├── ThisNextLast │ │ │ │ │ │ │ │ ├── ThisNextLast.spec.tsx │ │ │ │ │ │ │ │ ├── ThisNextLast.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── TimeInput │ │ │ │ │ │ │ │ ├── TimeInput.spec.tsx │ │ │ │ │ │ │ │ ├── TimeInput.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Year │ │ │ │ │ │ │ │ ├── Year.spec.tsx │ │ │ │ │ │ │ │ ├── Year.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── YearMonth │ │ │ │ │ │ │ │ ├── YearMonth.spec.tsx │ │ │ │ │ │ │ │ ├── YearMonth.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── day_range.ts │ │ │ │ │ │ │ └── relative_timeframe_types.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── date_filter_type_to_filter.ts │ │ │ │ │ │ │ ├── format_date.spec.ts │ │ │ │ │ │ │ ├── format_date.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── new_date_item.ts │ │ │ │ │ │ │ ├── relative_timeframe_conversions.spec.ts │ │ │ │ │ │ │ ├── relative_timeframe_conversions.ts │ │ │ │ │ │ │ ├── relative_timeframe_to_string.spec.tsx │ │ │ │ │ │ │ ├── relative_timeframe_to_string.ts │ │ │ │ │ │ │ └── validateYear.ts │ │ │ │ │ ├── GroupInput │ │ │ │ │ │ ├── GroupInput.spec.tsx │ │ │ │ │ │ ├── GroupInput.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── GroupSelect │ │ │ │ │ │ ├── GroupSelect.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ItemLayout │ │ │ │ │ │ ├── ItemLayout.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── LocationFilter │ │ │ │ │ │ ├── LocationFilter.spec.tsx │ │ │ │ │ │ ├── LocationFilter.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── LocationBox │ │ │ │ │ │ │ │ ├── LocationBox.spec.tsx │ │ │ │ │ │ │ │ ├── LocationBox.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── LocationCircle │ │ │ │ │ │ │ │ ├── LocationCircle.spec.tsx │ │ │ │ │ │ │ │ ├── LocationCircle.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── LocationExact │ │ │ │ │ │ │ │ ├── LocationExact.spec.tsx │ │ │ │ │ │ │ │ ├── LocationExact.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── location_filter_type_to_filter.ts │ │ │ │ │ ├── MatchesAdvanced │ │ │ │ │ │ ├── MatchesAdvanced.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── MidInputLabel │ │ │ │ │ │ ├── MidInputLabel.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NumberFilter │ │ │ │ │ │ ├── NumberFilter.spec.tsx │ │ │ │ │ │ ├── NumberFilter.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Between │ │ │ │ │ │ │ │ ├── Between.spec.tsx │ │ │ │ │ │ │ │ ├── Between.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── MultiInput │ │ │ │ │ │ │ │ ├── MultiInput.spec.tsx │ │ │ │ │ │ │ │ ├── MultiInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── SingleNumberInput │ │ │ │ │ │ │ │ ├── SingleNumberInput.spec.tsx │ │ │ │ │ │ │ │ ├── SingleNumberInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── number_filter_type_to_filter.spec.ts │ │ │ │ │ │ │ └── number_filter_type_to_filter.ts │ │ │ │ │ ├── OperatorLabel │ │ │ │ │ │ ├── OperatorLabel.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── StringFilter │ │ │ │ │ │ ├── StringFilter.spec.tsx │ │ │ │ │ │ ├── StringFilter.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── MultiStringInput │ │ │ │ │ │ │ │ ├── MultiStringInput.spec.tsx │ │ │ │ │ │ │ │ ├── MultiStringInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── StringInput │ │ │ │ │ │ │ │ ├── StringInput.spec.tsx │ │ │ │ │ │ │ │ ├── StringInput.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── string_filter_type_to_filter.spec.ts │ │ │ │ │ │ │ └── string_filter_type_to_filter.ts │ │ │ │ │ ├── TierFilter │ │ │ │ │ │ ├── TierFilter.spec.tsx │ │ │ │ │ │ ├── TierFilter.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── ParamFilter │ │ │ │ │ │ │ │ ├── ParamFilter.spec.tsx │ │ │ │ │ │ │ │ ├── ParamFilter.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── tier_filter_type_to_filter.ts │ │ │ │ │ └── UserAttributes │ │ │ │ │ │ ├── UserAttributes.spec.tsx │ │ │ │ │ │ ├── UserAttributes.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── get_date_filter_options.spec.tsx │ │ │ │ │ ├── get_date_filter_options.ts │ │ │ │ │ ├── get_filter_options.ts │ │ │ │ │ ├── get_location_filter_options.ts │ │ │ │ │ ├── get_number_filter_options.spec.tsx │ │ │ │ │ ├── get_number_filter_options.ts │ │ │ │ │ ├── get_string_filter_options.spec.tsx │ │ │ │ │ ├── get_string_filter_options.ts │ │ │ │ │ ├── get_tier_filter_options.spec.ts │ │ │ │ │ ├── get_tier_filter_options.ts │ │ │ │ │ ├── get_user_attribute_option.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── show_fiscal_units.ts │ │ │ ├── ControlFilter │ │ │ │ ├── ControlFilter.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ButtonGroup │ │ │ │ │ │ ├── ButtonGroup.spec.tsx │ │ │ │ │ │ ├── ButtonGroup.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ButtonToggles │ │ │ │ │ │ ├── ButtonToggles.spec.tsx │ │ │ │ │ │ ├── ButtonToggles.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── CheckboxGroup │ │ │ │ │ │ ├── CheckboxGroup.spec.tsx │ │ │ │ │ │ ├── CheckboxGroup.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DropdownMenu │ │ │ │ │ │ ├── DropdownMenu.spec.tsx │ │ │ │ │ │ ├── DropdownMenu.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RadioGroup │ │ │ │ │ │ ├── RadioGroup.spec.tsx │ │ │ │ │ │ ├── RadioGroup.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Slider │ │ │ │ │ │ ├── RangeSlider.tsx │ │ │ │ │ │ ├── Slider.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── TagList │ │ │ │ │ │ ├── TagList.spec.tsx │ │ │ │ │ │ ├── TagList.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── constants │ │ │ ├── date │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── this_next_last_units.spec.tsx.snap │ │ │ │ ├── before_after_units.ts │ │ │ │ ├── date_units.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interval_units.ts │ │ │ │ ├── past_units.ts │ │ │ │ ├── this_next_last_units.spec.tsx │ │ │ │ └── this_next_last_units.ts │ │ │ ├── index.ts │ │ │ └── location │ │ │ │ ├── index.ts │ │ │ │ └── long_lat.ts │ │ ├── types │ │ │ ├── filter_change_props.ts │ │ │ ├── filter_item_layout_props.ts │ │ │ ├── filter_param_props.ts │ │ │ ├── filter_props.ts │ │ │ ├── filter_state.ts │ │ │ ├── filter_type_map.ts │ │ │ ├── filter_ui_config.ts │ │ │ ├── index.ts │ │ │ ├── option.ts │ │ │ ├── string_select_props.ts │ │ │ └── user_attributes.ts │ │ └── utils │ │ │ ├── __snapshots__ │ │ │ └── calculate_suggest_options.spec.ts.snap │ │ │ ├── branded_tint.spec.ts │ │ │ ├── branded_tint.ts │ │ │ ├── calculate_suggest_options.spec.ts │ │ │ ├── calculate_suggest_options.ts │ │ │ ├── can_render_filter.spec.ts │ │ │ ├── can_render_filter.ts │ │ │ ├── check_user_attributes.spec.ts │ │ │ ├── check_user_attributes.ts │ │ │ ├── control_filter_utils.spec.ts │ │ │ ├── control_filter_utils.ts │ │ │ ├── filter_styles.ts │ │ │ ├── filter_test_utils.ts │ │ │ ├── filter_token_type_map.ts │ │ │ ├── get_filter_token_item.spec.ts │ │ │ ├── get_filter_token_item.ts │ │ │ ├── get_user_attributes.spec.ts │ │ │ ├── get_user_attributes.ts │ │ │ ├── index.ts │ │ │ ├── option_utils.spec.ts │ │ │ ├── option_utils.ts │ │ │ ├── pasted_input_regexp.ts │ │ │ ├── type_to_component.spec.ts │ │ │ ├── type_to_component.ts │ │ │ ├── update_ast.ts │ │ │ ├── use_filter_config.ts │ │ │ ├── use_option_filtering.spec.tsx │ │ │ ├── use_option_filtering.ts │ │ │ ├── use_placeholder.ts │ │ │ ├── use_validation_message.spec.tsx │ │ │ └── use_validation_message.ts │ ├── FilterCollection │ │ ├── FilterCollection.spec.tsx │ │ ├── FilterCollection.tsx │ │ ├── README.md │ │ └── index.ts │ ├── FilterErrorMessage │ │ ├── FilterErrorMessage.spec.tsx │ │ ├── FilterErrorMessage.tsx │ │ ├── index.ts │ │ ├── use_filters_errors.spec.tsx │ │ └── use_filters_errors.ts │ ├── Token │ │ ├── FilterToken.spec.tsx │ │ ├── FilterToken.tsx │ │ ├── README.md │ │ ├── Token.spec.tsx │ │ ├── Token.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── get_label.spec.ts │ │ │ └── get_label.ts │ ├── TreeSelect │ │ ├── Field.spec.tsx │ │ ├── Field.tsx │ │ ├── FieldSearch.spec.tsx │ │ ├── FieldSearch.tsx │ │ ├── NoMatchingFields.tsx │ │ ├── README.md │ │ ├── Section.spec.tsx │ │ ├── Section.tsx │ │ ├── TreeResults.spec.tsx │ │ ├── TreeResults.tsx │ │ ├── TreeSelect.spec.tsx │ │ ├── TreeSelect.tsx │ │ ├── TreeSelectContext.ts │ │ ├── fixtures.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── __snapshots__ │ │ │ ├── create_explore_views_tree.spec.ts.snap │ │ │ ├── get_leaves_from_trees.spec.ts.snap │ │ │ └── open_or_close_nodes.spec.ts.snap │ │ │ ├── create_explore_views_tree.spec.ts │ │ │ ├── create_explore_views_tree.ts │ │ │ ├── create_explores_tree.mock.ts │ │ │ ├── create_explores_tree.spec.ts │ │ │ ├── create_explores_tree.ts │ │ │ ├── disableFieldsInTree.ts │ │ │ ├── disabledFieldsInTree.spec.ts │ │ │ ├── find_field.spec.ts │ │ │ ├── find_field.ts │ │ │ ├── find_field_in_tree.spec.ts │ │ │ ├── find_field_in_tree.ts │ │ │ ├── get_leaves_from_trees.spec.ts │ │ │ ├── get_leaves_from_trees.ts │ │ │ ├── get_option.spec.ts │ │ │ ├── get_option.ts │ │ │ ├── index.ts │ │ │ ├── open_or_close_nodes.spec.ts │ │ │ ├── open_or_close_nodes.ts │ │ │ ├── search_tree.spec.ts │ │ │ ├── search_tree.tsx │ │ │ ├── use_tree_results_state.tsx │ │ │ └── use_tree_select_combobox_option.ts │ ├── constants │ │ └── index.ts │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── i18n.spec.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ └── useTranslation.ts ├── stryker.config.json ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html ├── tsconfig.build.json └── tsconfig.json ├── filter-expressions ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── da_DK │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── de_DE │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── en │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── es_ES │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── fi_FI │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── fr_CA │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── fr_FR │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── he_IL │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── hi_IN │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── it_IT │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── ja_JP │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── ko_KR │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── lt_LT │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── nb_NO │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── nl_NL │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── pl_PL │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── pt_BR │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── pt_PT │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── ru_RU │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── sv_SE │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── th_TH │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── tr_TR │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── uk_UA │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ ├── zh_CN │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json │ └── zh_TW │ │ ├── describe_date.strings.json │ │ ├── describe_is_any_value.strings.json │ │ ├── describe_is_item.strings.json │ │ ├── describe_location.strings.json │ │ ├── describe_number.strings.json │ │ ├── describe_string.strings.json │ │ ├── get_distance_unit_labels.strings.json │ │ ├── get_months.strings.json │ │ ├── get_unit_label.strings.json │ │ ├── join_or.strings.json │ │ └── summary.strings.json ├── package.json ├── src │ ├── grammars │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ ├── date_grammar.spec.ts.snap │ │ │ ├── location_grammar.spec.ts.snap │ │ │ ├── number_grammar.spec.ts.snap │ │ │ ├── string_grammar.spec.ts.snap │ │ │ └── tier_grammar.spec.ts.snap │ │ ├── common │ │ │ ├── initializer.ts │ │ │ ├── numbers.ts │ │ │ └── whitespace.ts │ │ ├── date_grammar.spec.ts │ │ ├── date_grammar.ts │ │ ├── date_grammar_test_expressions.ts │ │ ├── grammar_test_utils.ts │ │ ├── index.ts │ │ ├── location_grammar.spec.ts │ │ ├── location_grammar.ts │ │ ├── number_grammar.spec.ts │ │ ├── number_grammar.ts │ │ ├── number_grammar_test_expressions.ts │ │ ├── string_grammar.spec.ts │ │ ├── string_grammar.ts │ │ ├── string_grammar_test_expressions.ts │ │ ├── tier_grammar.spec.ts │ │ ├── tier_grammar.ts │ │ ├── tier_grammar_test_expressions.ts │ │ ├── user_attribute_grammar.spec.ts │ │ └── user_attribute_grammar.ts │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── any_value_items.ts │ │ ├── filter_ast_node.ts │ │ ├── filter_item_to_string_function.ts │ │ ├── filter_item_to_string_map_type.ts │ │ ├── filter_model.ts │ │ ├── filter_to_string_function_type.ts │ │ ├── filter_type.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── index.ts │ │ │ └── location_item_types.ts │ │ ├── number_types.ts │ │ ├── transform_function.ts │ │ ├── user_attribute │ │ │ ├── index.ts │ │ │ ├── user_attribute_type.ts │ │ │ └── user_attribute_with_value.ts │ │ └── value_props.ts │ └── utils │ │ ├── date │ │ ├── convert_to_number.ts │ │ ├── date_conversions.spec.ts │ │ ├── date_conversions.ts │ │ ├── date_filter_to_string.spec.ts │ │ ├── date_filter_to_string.ts │ │ ├── describe_date.spec.ts │ │ ├── describe_date.ts │ │ ├── format_time.ts │ │ ├── generate_times.ts │ │ ├── get_months.ts │ │ ├── get_unit_label.spec.ts │ │ ├── get_unit_label.ts │ │ ├── index.ts │ │ ├── is_date_time.ts │ │ ├── sanitize_date.spec.ts │ │ ├── sanitize_date.ts │ │ └── zero_pad.ts │ │ ├── get_expression_type.spec.ts │ │ ├── get_expression_type.ts │ │ ├── get_matches_advanced_node.spec.ts │ │ ├── get_matches_advanced_node.ts │ │ ├── has_matches_advanced_node.spec.ts │ │ ├── has_matches_advanced_node.ts │ │ ├── has_user_attribute_node.ts │ │ ├── has_user_attribute_node_without_value.spec.ts │ │ ├── has_user_attribute_node_without_value.ts │ │ ├── i18n.spec.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── location │ │ ├── describe_location.ts │ │ ├── get_distance_unit_labels.ts │ │ └── location_to_string.ts │ │ ├── number │ │ ├── describe_number.spec.ts │ │ ├── describe_number.ts │ │ ├── get_number_from_string.spec.ts │ │ ├── get_number_from_string.ts │ │ ├── index.ts │ │ ├── is_null_undefined_or_empty.ts │ │ ├── number_to_string.spec.ts │ │ ├── number_to_string.ts │ │ ├── sanitize_number.spec.ts │ │ └── sanitize_number.ts │ │ ├── option │ │ ├── convert_option_to_type.ts │ │ ├── convert_type_to_matches_advanced_option.ts │ │ ├── convert_type_to_option.ts │ │ └── index.ts │ │ ├── parse_filter_expression.ts │ │ ├── string │ │ ├── __snapshots__ │ │ │ └── sanitize_string.spec.ts.snap │ │ ├── add_quotes.spec.ts │ │ ├── add_quotes.ts │ │ ├── describe_string.spec.ts │ │ ├── describe_string.ts │ │ ├── escape_leading_and_trailing_whitespaces.spec.ts │ │ ├── escape_leading_and_trailing_whitespaces.ts │ │ ├── escape_with_caret.spec.ts │ │ ├── escape_with_caret.ts │ │ ├── index.ts │ │ ├── quote_filter.spec.ts │ │ ├── quote_filter.ts │ │ ├── sanitize_string.spec.ts │ │ ├── sanitize_string.ts │ │ ├── string_filter_to_string.spec.ts │ │ └── string_filter_to_string.ts │ │ ├── summary │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── summary.spec.ts.snap │ │ ├── describe_is_any_value.ts │ │ ├── describe_is_item.ts │ │ ├── describe_null.ts │ │ ├── index.ts │ │ ├── join_or.ts │ │ ├── summary.spec.ts │ │ └── summary.ts │ │ ├── tier │ │ ├── describe_tier.ts │ │ ├── escape_parameter_value.ts │ │ ├── escape_parameter_values.spec.ts │ │ └── tier_filter_to_string.ts │ │ ├── to_string │ │ ├── is_item_to_string.ts │ │ └── null_item_to_string.ts │ │ ├── transform │ │ ├── mergeMultiValueNodes.ts │ │ ├── numberTransform.ts │ │ ├── stringTransform.ts │ │ ├── transform_ast.ts │ │ ├── userAttributeTransform.ts │ │ └── utils │ │ │ └── apply_id_to_ast.ts │ │ ├── tree │ │ ├── add_node.spec.ts │ │ ├── add_node.ts │ │ ├── index.ts │ │ ├── inorder_traversal.ts │ │ ├── remove_node.spec.ts │ │ ├── remove_node.ts │ │ ├── tree_to_list.spec.ts │ │ ├── tree_to_list.ts │ │ ├── tree_to_string.ts │ │ ├── update_node.spec.ts │ │ └── update_node.ts │ │ ├── type_to_grammar.ts │ │ └── user_attribute │ │ ├── describe_user_attribute.ts │ │ ├── find_user_attribute.ts │ │ ├── get_user_attribute_matching_type_and_expression.spec.ts │ │ ├── get_user_attribute_matching_type_and_expression.ts │ │ ├── index.ts │ │ └── user_attribute_to_string.ts ├── stryker.config.json ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html ├── tsconfig.build.json └── tsconfig.json ├── i18n ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── package.json ├── src │ ├── getDateLocale.ts │ ├── i18nInit.spec.ts │ ├── i18nInit.ts │ ├── i18nInitComponents.ts │ ├── index.ts │ ├── mergeLocaleObjects.spec.ts │ ├── mergeLocaleObjects.ts │ ├── types.ts │ └── useTranslationBase.ts ├── stryker.config.json ├── test │ └── output │ │ └── jest │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ └── report.html └── tsconfig.build.json ├── icons ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── bin │ ├── build.js │ ├── h2x.js │ └── lint.sh ├── migration-utils │ └── replacements.sh ├── package.json ├── src │ ├── AnalyticsApp │ │ ├── AnalyticsApp.tsx │ │ └── index.ts │ ├── Beaker │ │ ├── Beaker.tsx │ │ └── index.ts │ ├── BrowseTable │ │ ├── BrowseTable.tsx │ │ └── index.ts │ ├── CalendarDay │ │ ├── CalendarDay.tsx │ │ └── index.ts │ ├── CalendarHour │ │ ├── CalendarHour.tsx │ │ └── index.ts │ ├── CalendarMonth │ │ ├── CalendarMonth.tsx │ │ └── index.ts │ ├── CalendarQuarter │ │ ├── CalendarQuarter.tsx │ │ └── index.ts │ ├── CalendarWeek │ │ ├── CalendarWeek.tsx │ │ └── index.ts │ ├── ChartArea │ │ ├── ChartArea.tsx │ │ └── index.ts │ ├── ChartBar │ │ ├── ChartBar.tsx │ │ └── index.ts │ ├── ChartBoxPlot │ │ ├── ChartBoxPlot.tsx │ │ └── index.ts │ ├── ChartTimeline │ │ ├── ChartTimeline.tsx │ │ └── index.ts │ ├── CheckProgress │ │ ├── CheckProgress.tsx │ │ └── index.ts │ ├── CollapseAll │ │ ├── CollapseAll.tsx │ │ └── index.ts │ ├── ColorFill │ │ ├── ColorFill.tsx │ │ └── index.ts │ ├── ColorText │ │ ├── ColorText.tsx │ │ └── index.ts │ ├── CrossFilter │ │ ├── CrossFilter.tsx │ │ └── index.ts │ ├── DashboardFile │ │ ├── DashboardFile.tsx │ │ └── index.ts │ ├── DashboardGauge │ │ ├── DashboardGauge.tsx │ │ └── index.ts │ ├── DigitalMarketingApp │ │ ├── DigitalMarketingApp.tsx │ │ └── index.ts │ ├── DimensionFill │ │ ├── DimensionFill.tsx │ │ └── index.ts │ ├── DocumentFile │ │ ├── DocumentFile.tsx │ │ └── index.ts │ ├── Download │ │ ├── Download.tsx │ │ └── index.ts │ ├── ExpandCollapse │ │ ├── ExpandCollapse.tsx │ │ └── index.ts │ ├── Explore │ │ ├── Explore.tsx │ │ └── index.ts │ ├── FieldString │ │ ├── FieldString.tsx │ │ └── index.ts │ ├── FieldTier │ │ ├── FieldTier.tsx │ │ └── index.ts │ ├── FindSelected │ │ ├── FindSelected.tsx │ │ └── index.ts │ ├── Flag │ │ ├── Flag.tsx │ │ └── index.ts │ ├── GitBranch │ │ ├── GitBranch.tsx │ │ └── index.ts │ ├── IdeDimension │ │ ├── IdeDimension.tsx │ │ └── index.ts │ ├── IdeDimensionGroup │ │ ├── IdeDimensionGroup.tsx │ │ └── index.ts │ ├── IdeFileDashboard │ │ ├── IdeFileDashboard.tsx │ │ └── index.ts │ ├── IdeFileDocument │ │ ├── IdeFileDocument.tsx │ │ └── index.ts │ ├── IdeFileGeneric │ │ ├── IdeFileGeneric.tsx │ │ └── index.ts │ ├── IdeFileLookML │ │ ├── IdeFileLookML.tsx │ │ └── index.ts │ ├── IdeFileManifest │ │ ├── IdeFileManifest.tsx │ │ └── index.ts │ ├── IdeFileModel │ │ ├── IdeFileModel.tsx │ │ └── index.ts │ ├── IdeParameter │ │ ├── IdeParameter.tsx │ │ └── index.ts │ ├── LQA │ │ ├── LQA.tsx │ │ └── index.ts │ ├── LogoRings │ │ ├── LogoRings.tsx │ │ └── index.ts │ ├── LookerLogo │ │ ├── LookerLogo.tsx │ │ └── index.ts │ ├── Marketplace │ │ ├── Marketplace.tsx │ │ └── index.ts │ ├── ModelFile │ │ ├── ModelFile.tsx │ │ └── index.ts │ ├── More │ │ ├── More.tsx │ │ └── index.ts │ ├── Notes │ │ ├── Notes.tsx │ │ └── index.ts │ ├── Pivot │ │ ├── Pivot.tsx │ │ └── index.ts │ ├── Public │ │ ├── Public.tsx │ │ └── index.ts │ ├── QuickStart │ │ ├── QuickStart.tsx │ │ └── index.ts │ ├── Reports │ │ ├── Reports.tsx │ │ └── index.ts │ ├── Return │ │ ├── Return.tsx │ │ └── index.ts │ ├── SalesAnalytics │ │ ├── SalesAnalytics.tsx │ │ └── index.ts │ ├── SendWebhook │ │ ├── SendWebhook.tsx │ │ └── index.ts │ ├── SqlRunner │ │ ├── SqlRunner.tsx │ │ └── index.ts │ ├── UserAttributes │ │ ├── UserAttributes.tsx │ │ └── index.ts │ ├── ViewFile │ │ ├── ViewFile.tsx │ │ └── index.ts │ ├── VisArea │ │ ├── VisArea.tsx │ │ └── index.ts │ ├── VisBar │ │ ├── VisBar.tsx │ │ └── index.ts │ ├── VisColumn │ │ ├── VisColumn.tsx │ │ └── index.ts │ ├── VisLine │ │ ├── VisLine.tsx │ │ └── index.ts │ ├── VisMap │ │ ├── VisMap.tsx │ │ └── index.ts │ ├── VisPie │ │ ├── VisPie.tsx │ │ └── index.ts │ ├── VisScatter │ │ ├── VisScatter.tsx │ │ └── index.ts │ ├── VisSingleValue │ │ ├── VisSingleValue.tsx │ │ └── index.ts │ ├── VisTable │ │ ├── VisTable.tsx │ │ └── index.ts │ └── index.ts ├── svg │ ├── AnalyticsApp.svg │ ├── Beaker.svg │ ├── BrowseTable.svg │ ├── CalendarDay.svg │ ├── CalendarHour.svg │ ├── CalendarMonth.svg │ ├── CalendarQuarter.svg │ ├── CalendarWeek.svg │ ├── ChartArea.svg │ ├── ChartBar.svg │ ├── ChartBoxPlot.svg │ ├── ChartTimeline.svg │ ├── CheckProgress.svg │ ├── CollapseAll.svg │ ├── ColorFill.svg │ ├── ColorText.svg │ ├── CrossFilter.svg │ ├── DashboardFile.svg │ ├── DashboardGauge.svg │ ├── DigitalMarketingApp.svg │ ├── DimensionFill.svg │ ├── DocumentFile.svg │ ├── Download.svg │ ├── ExpandCollapse.svg │ ├── Explore.svg │ ├── FieldString.svg │ ├── FieldTier.svg │ ├── FindSelected.svg │ ├── Flag.svg │ ├── GitBranch.svg │ ├── IdeDimension.svg │ ├── IdeDimensionGroup.svg │ ├── IdeFileDashboard.svg │ ├── IdeFileDocument.svg │ ├── IdeFileGeneric.svg │ ├── IdeFileLookML.svg │ ├── IdeFileManifest.svg │ ├── IdeFileModel.svg │ ├── IdeParameter.svg │ ├── LQA.svg │ ├── LogoRings.svg │ ├── LookerLogo.svg │ ├── Marketplace.svg │ ├── ModelFile.svg │ ├── More.svg │ ├── Notes.svg │ ├── Pivot.svg │ ├── Public.svg │ ├── QuickStart.svg │ ├── Reports.svg │ ├── Return.svg │ ├── SalesAnalytics.svg │ ├── SendWebhook.svg │ ├── SqlRunner.svg │ ├── UserAttributes.svg │ ├── ViewFile.svg │ ├── VisArea.svg │ ├── VisBar.svg │ ├── VisColumn.svg │ ├── VisLine.svg │ ├── VisMap.svg │ ├── VisPie.svg │ ├── VisScatter.svg │ ├── VisSingleValue.svg │ └── VisTable.svg ├── templates │ └── icon.tsx.template └── tsconfig.build.json ├── redux ├── .babelrc.js ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest-results.json ├── jest.config.js ├── package.json ├── src │ ├── Store │ │ ├── index.spec.tsx │ │ └── index.tsx │ ├── createFetchHooks │ │ ├── index.spec.tsx │ │ └── index.ts │ ├── createSliceHooks │ │ ├── index.spec.tsx │ │ └── index.ts │ ├── createStore │ │ ├── index.spec.tsx │ │ └── index.ts │ ├── deepCombineReducers │ │ ├── index.spec.tsx │ │ └── index.ts │ ├── index.spec.ts │ ├── index.ts │ ├── types │ │ └── index.ts │ ├── useSaga │ │ ├── index.spec.ts │ │ └── index.ts │ ├── useSagas │ │ ├── index.spec.ts │ │ └── index.ts │ ├── useSlice │ │ ├── index.spec.ts │ │ └── index.ts │ └── useStore │ │ ├── index.spec.tsx │ │ └── index.ts ├── stryker.config.json ├── test │ └── output │ │ └── jest │ │ ├── coverage │ │ ├── coverage-final.json │ │ ├── lcov-report │ │ │ ├── base.css │ │ │ ├── block-navigation.js │ │ │ ├── favicon.png │ │ │ ├── index.html │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sort-arrow-sprite.png │ │ │ ├── sorter.js │ │ │ └── src │ │ │ │ ├── Store │ │ │ │ ├── index.html │ │ │ │ └── index.tsx.html │ │ │ │ ├── createFetchHooks │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── createSliceHooks │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── createStore │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── deepCombineReducers │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ ├── types │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── useSaga │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── useSagas │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ ├── useSlice │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ │ └── useStore │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ └── lcov.info │ │ ├── jest-html-reporters-attach │ │ └── report │ │ │ ├── index.js │ │ │ └── result.js │ │ ├── junit.xml │ │ └── report.html └── tsconfig.build.json ├── stylelint-config ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ └── index.js └── tsconfig.build.json ├── visualizations-adapters ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── da_DK │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── de_DE │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── en │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── es_ES │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── fi_FI │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── fr_CA │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── fr_FR │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── he_IL │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── hi_IN │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── it_IT │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── ja_JP │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── ko_KR │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── lt_LT │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── nb_NO │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── nl_NL │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── pl_PL │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── pt_BR │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── pt_PT │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── ru_RU │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── sv_SE │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── th_TH │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── tr_TR │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── uk_UA │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ ├── zh_CN │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json │ └── zh_TW │ │ ├── Debug.strings.json │ │ ├── ErrorBoundary.strings.json │ │ ├── KeyValueList.strings.json │ │ └── useNormalizedPivotLabels.strings.json ├── package.json ├── src │ ├── Debug │ │ ├── Debug.tsx │ │ ├── index.ts │ │ └── stories │ │ │ ├── Basic.tsx │ │ │ └── index.stories.tsx │ ├── ErrorBoundary │ │ ├── ErrorBoundary.tsx │ │ └── index.ts │ ├── KeyValueList │ │ ├── KeyValueList.tsx │ │ └── index.ts │ ├── Spinner │ │ ├── Spinner.tsx │ │ └── index.ts │ ├── StaticTable │ │ ├── StaticTable.spec.tsx │ │ ├── StaticTable.tsx │ │ └── index.ts │ ├── Unsupported │ │ ├── Unsupported.tsx │ │ └── index.ts │ ├── VisWrapper │ │ ├── VisWrapper.spec.tsx │ │ ├── VisWrapper.tsx │ │ └── index.ts │ ├── adapters │ │ ├── area.ts │ │ ├── bar.ts │ │ ├── column.ts │ │ ├── index.ts │ │ ├── line.ts │ │ ├── pie.ts │ │ ├── scatter.ts │ │ ├── single_value.ts │ │ ├── sparkline.ts │ │ └── table.ts │ ├── configTransformations │ │ ├── barPositioning.spec.ts │ │ ├── barPositioning.ts │ │ ├── chartConfigByType.ts │ │ ├── dimensionSeriesColors.spec.ts │ │ ├── dimensionSeriesColors.ts │ │ ├── index.ts │ │ ├── legendPosition.spec.ts │ │ ├── legendPosition.ts │ │ ├── legendType.spec.ts │ │ ├── legendType.ts │ │ ├── legendValue.spec.ts │ │ ├── legendValue.ts │ │ ├── linePositioning.spec.ts │ │ ├── linePositioning.ts │ │ ├── normalizeChartTypes.spec.ts │ │ ├── normalizeChartTypes.ts │ │ ├── renderNullValues.spec.ts │ │ ├── renderNullValues.ts │ │ ├── sanitizeSDKResponse.spec.ts │ │ ├── sanitizeSDKResponse.ts │ │ ├── seriesCellVis.spec.ts │ │ ├── seriesCellVis.ts │ │ ├── seriesColors.spec.ts │ │ ├── seriesColors.ts │ │ ├── seriesLabels.spec.ts │ │ ├── seriesLabels.ts │ │ ├── seriesLineWidth.spec.ts │ │ ├── seriesLineWidth.ts │ │ ├── seriesPointShape.spec.ts │ │ ├── seriesPointShape.ts │ │ ├── seriesPointStyle.spec.ts │ │ ├── seriesPointStyle.ts │ │ ├── seriesSize.spec.ts │ │ ├── seriesSize.ts │ │ ├── seriesValueFormat.spec.ts │ │ ├── seriesValueFormat.ts │ │ ├── seriesVisible.spec.ts │ │ ├── seriesVisible.ts │ │ ├── showRowTotals.spec.ts │ │ ├── showRowTotals.ts │ │ ├── showTotals.spec.ts │ │ ├── showTotals.ts │ │ ├── tooltips.spec.ts │ │ ├── tooltips.ts │ │ ├── truncateHeader.spec.ts │ │ ├── truncateHeader.ts │ │ ├── truncateText.spec.ts │ │ ├── truncateText.ts │ │ ├── xAxis.spec.ts │ │ ├── xAxis.ts │ │ ├── yAxis.spec.ts │ │ ├── yAxis.ts │ │ ├── yAxisRange.spec.ts │ │ └── yAxisRange.ts │ ├── dataTransformations │ │ ├── index.ts │ │ ├── nullValueZero.ts │ │ ├── renderNullValues.spec.ts │ │ ├── sortByDateTime.spec.ts │ │ ├── sortByDateTime.ts │ │ ├── xAxisReversed.spec.ts │ │ └── xAxisReversed.ts │ ├── fixtures │ │ ├── index.ts │ │ ├── mockConfig.ts │ │ ├── mockData.ts │ │ ├── mockFields.ts │ │ ├── mockPivotedQuery.ts │ │ ├── mockPivots.ts │ │ ├── mockSDKModelExploreResponse.ts │ │ ├── mockSdk.ts │ │ ├── mockSdkColorCollectionResponse.ts │ │ ├── mockSdkConfigResponse.ts │ │ ├── mockSdkDataResponse.ts │ │ ├── mockSdkFieldsResponse.ts │ │ └── mockSdkPivotDataResponse.ts │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── ValueOf.ts │ │ ├── allChartConfig.ts │ │ ├── apiResponse.ts │ │ ├── cartesian.ts │ │ ├── chartLayoutProps.ts │ │ ├── configHelper.ts │ │ ├── index.ts │ │ ├── legend.ts │ │ ├── points.ts │ │ ├── positions.ts │ │ ├── referenceLine.ts │ │ ├── sdk.ts │ │ ├── series.ts │ │ ├── styled-system__props.d.ts │ │ ├── styled-system__should-forward-prop.d.ts │ │ └── trendLine.ts │ └── utils │ │ ├── buildChartConfig.spec.ts │ │ ├── buildChartConfig.ts │ │ ├── buildPivotFields.spec.ts │ │ ├── buildPivotFields.ts │ │ ├── buildPivotMeasureName.spec.ts │ │ ├── buildPivotMeasureName.ts │ │ ├── buildTrackingTag.ts │ │ ├── constants.ts │ │ ├── deriveColorBlend.spec.ts │ │ ├── deriveColorBlend.ts │ │ ├── deriveColorPalette.spec.ts │ │ ├── deriveColorPalette.ts │ │ ├── formatErrorMessage.ts │ │ ├── formatTotals.spec.ts │ │ ├── formatTotals.ts │ │ ├── generateLegend.ts │ │ ├── getDataRange.spec.ts │ │ ├── getDataRange.ts │ │ ├── getDimensionNames.ts │ │ ├── getMeasureNames.ts │ │ ├── getSeriesMax.spec.ts │ │ ├── getSeriesMax.ts │ │ ├── getSeriesMin.spec.ts │ │ ├── getSeriesMin.ts │ │ ├── getVisibleMeasureNames.ts │ │ ├── hexToRgba.spec.ts │ │ ├── hexToRgba.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── isNumeric.ts │ │ ├── normalizePivotSeriesKeys.spec.ts │ │ ├── normalizePivotSeriesKeys.ts │ │ ├── pickLongestLabel.ts │ │ ├── pickSeriesByName.ts │ │ ├── tabularPivotResponse.spec.ts │ │ ├── tabularPivotResponse.ts │ │ ├── tabularResponse.ts │ │ ├── useMeasuredText.ts │ │ ├── useNormalizedPivotLabels.spec.ts │ │ ├── useNormalizedPivotLabels.ts │ │ ├── usePrevious.ts │ │ └── useTranslation.ts ├── tsconfig.build.json └── tsconfig.json ├── visualizations-single-value ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── package.json ├── src │ ├── SingleValue │ │ ├── SingleValue.spec.tsx │ │ ├── SingleValue.tsx │ │ └── index.ts │ ├── index.ts │ └── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts ├── tsconfig.build.json └── tsconfig.json ├── visualizations-table ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ └── Table.strings.json │ ├── da_DK │ │ └── Table.strings.json │ ├── de_DE │ │ └── Table.strings.json │ ├── en │ │ └── Table.strings.json │ ├── es_ES │ │ └── Table.strings.json │ ├── fi_FI │ │ └── Table.strings.json │ ├── fr_CA │ │ └── Table.strings.json │ ├── fr_FR │ │ └── Table.strings.json │ ├── he_IL │ │ └── Table.strings.json │ ├── hi_IN │ │ └── Table.strings.json │ ├── it_IT │ │ └── Table.strings.json │ ├── ja_JP │ │ └── Table.strings.json │ ├── ko_KR │ │ └── Table.strings.json │ ├── lt_LT │ │ └── Table.strings.json │ ├── nb_NO │ │ └── Table.strings.json │ ├── nl_NL │ │ └── Table.strings.json │ ├── pl_PL │ │ └── Table.strings.json │ ├── pt_BR │ │ └── Table.strings.json │ ├── pt_PT │ │ └── Table.strings.json │ ├── ru_RU │ │ └── Table.strings.json │ ├── sv_SE │ │ └── Table.strings.json │ ├── th_TH │ │ └── Table.strings.json │ ├── tr_TR │ │ └── Table.strings.json │ ├── uk_UA │ │ └── Table.strings.json │ ├── zh_CN │ │ └── Table.strings.json │ └── zh_TW │ │ └── Table.strings.json ├── package.json ├── src │ ├── CellVisualization │ │ ├── index.spec.tsx │ │ └── index.tsx │ ├── ColumnTotals │ │ └── index.tsx │ ├── Table │ │ ├── index.spec.tsx │ │ └── index.tsx │ ├── TableCell │ │ └── index.tsx │ ├── TableHeadCell │ │ └── index.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── useHeadlessTable.spec.tsx │ │ ├── useHeadlessTable.ts │ │ ├── useVirtual.spec.tsx │ │ └── useVirtual.tsx │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── buildDimensionColumns.ts │ │ ├── buildFlatColumns.ts │ │ ├── buildGroupedColumns.ts │ │ ├── buildMeasureColumns.ts │ │ ├── deriveVirtualizerPadding.spec.ts │ │ ├── deriveVirtualizerPadding.ts │ │ ├── getSortAssets.spec.ts │ │ ├── getSortAssets.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── nestPivotedFields.spec.ts │ │ ├── nestPivotedFields.ts │ │ ├── normalizeHeaderColumns.spec.ts │ │ ├── normalizeHeaderColumns.ts │ │ └── useTranslation.ts ├── tsconfig.build.json └── tsconfig.json ├── visualizations-visx ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── locales │ ├── cs_CZ │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── da_DK │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── de_DE │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── en │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── es_ES │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── fi_FI │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── fr_CA │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── fr_FR │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── he_IL │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── hi_IN │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── it_IT │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── ja_JP │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── ko_KR │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── lt_LT │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── nb_NO │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── nl_NL │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── pl_PL │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── pt_BR │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── pt_PT │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── ru_RU │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── sv_SE │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── th_TH │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── tr_TR │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── uk_UA │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ ├── zh_CN │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json │ └── zh_TW │ │ ├── PieLegend.strings.json │ │ ├── PieLegendControls.strings.json │ │ └── XYTooltip.strings.json ├── package.json ├── src │ ├── Area │ │ ├── Area.tsx │ │ └── index.ts │ ├── Axis │ │ ├── Tick.tsx │ │ ├── XAxis.tsx │ │ ├── XAxisDate.tsx │ │ ├── YAxis.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── Bar │ │ ├── Bar.tsx │ │ └── index.ts │ ├── Column │ │ ├── Column.tsx │ │ └── index.ts │ ├── DLGroup │ │ ├── DLGroup.tsx │ │ └── index.ts │ ├── Glyph │ │ ├── Glyph.tsx │ │ └── index.tsx │ ├── Grid │ │ ├── Grid.tsx │ │ └── index.tsx │ ├── Line │ │ ├── Line.tsx │ │ └── index.ts │ ├── Marker │ │ ├── Marker.tsx │ │ └── index.ts │ ├── Pie │ │ ├── Pie.tsx │ │ ├── PieArc.tsx │ │ ├── PieLabel.tsx │ │ ├── PieLegend.spec.tsx │ │ ├── PieLegend.tsx │ │ ├── PieLegendControls.tsx │ │ ├── PieTooltip.tsx │ │ ├── getChartGeometry.spec.ts │ │ ├── getChartGeometry.ts │ │ ├── getConnectorLength.spec.ts │ │ ├── getConnectorLength.ts │ │ ├── getLabelContent.ts │ │ ├── index.ts │ │ ├── pieConstants.ts │ │ ├── types.ts │ │ ├── useLabelWidth.spec.tsx │ │ └── useLabelWidth.ts │ ├── Scatter │ │ ├── Scatter.tsx │ │ └── index.ts │ ├── Sparkline │ │ ├── Sparkline.spec.tsx │ │ ├── Sparkline.tsx │ │ └── index.ts │ ├── XYLegend │ │ ├── XYLegend.tsx │ │ └── index.ts │ ├── XYTooltip │ │ ├── XYTooltip.tsx │ │ └── index.ts │ ├── index.ts │ ├── locales │ │ ├── available_locales.ts │ │ ├── i18n_resources.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── cs-CZ.ts │ │ │ ├── da-DK.ts │ │ │ ├── de-DE.ts │ │ │ ├── en.ts │ │ │ ├── es-ES.ts │ │ │ ├── fi-FI.ts │ │ │ ├── fr-CA.ts │ │ │ ├── fr-FR.ts │ │ │ ├── he-IL.ts │ │ │ ├── hi-IN.ts │ │ │ ├── it-IT.ts │ │ │ ├── ja-JP.ts │ │ │ ├── ko-KR.ts │ │ │ ├── lt-LT.ts │ │ │ ├── nb-NO.ts │ │ │ ├── nl-NL.ts │ │ │ ├── pl-PL.ts │ │ │ ├── pt-BR.ts │ │ │ ├── pt-PT.ts │ │ │ ├── ru-RU.ts │ │ │ ├── sv-SE.ts │ │ │ ├── th-TH.ts │ │ │ ├── tr-TR.ts │ │ │ ├── uk-UA.ts │ │ │ ├── zh-CN.ts │ │ │ └── zh-TW.ts │ ├── types │ │ ├── styled-system__props.d.ts │ │ └── styled-system__should-forward-prop.d.ts │ └── utils │ │ ├── concatDimensions.ts │ │ ├── dimensionToDate.ts │ │ ├── formatDateLabel.ts │ │ ├── getAxisFormat.ts │ │ ├── getDefaultGlyphSize.ts │ │ ├── getMarkerFill.ts │ │ ├── getRelativeGlyphSize.spec.ts │ │ ├── getRelativeGlyphSize.ts │ │ ├── getSeriesColor.ts │ │ ├── getX.ts │ │ ├── getY.ts │ │ ├── getYAxisRange.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── isDateQuery.ts │ │ ├── isValidChartData.ts │ │ ├── seriesLabelFormatter.ts │ │ ├── useAxis.tsx │ │ ├── useChartTheme.ts │ │ └── useTranslation.ts ├── tsconfig.build.json └── tsconfig.json └── visualizations ├── .babelrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .storybook └── main.ts ├── CHANGELOG.md ├── README.md ├── dist ├── Query │ ├── Query.d.ts │ └── index.d.ts ├── QueryError │ ├── QueryError.d.ts │ └── index.d.ts ├── Visualization │ ├── Visualization.d.ts │ ├── index.d.ts │ └── stories │ │ ├── Area.stories.d.ts │ │ ├── Bar.stories.d.ts │ │ ├── Column.stories.d.ts │ │ ├── Line.stories.d.ts │ │ ├── Pie.stories.d.ts │ │ ├── Scatter.stories.d.ts │ │ ├── SingleValue.stories.d.ts │ │ ├── Sparkline.stories.d.ts │ │ ├── Table.stories.d.ts │ │ ├── TableBasic.d.ts │ │ ├── TableHorizontalScroll.d.ts │ │ ├── TableMultiSort.d.ts │ │ ├── TablePivot.d.ts │ │ ├── TableTruncatedText.d.ts │ │ ├── TableWrappedText.d.ts │ │ └── TurtleTable.stories.d.ts ├── cjs │ ├── Query │ │ ├── Query.js │ │ ├── Query.js.map │ │ ├── index.js │ │ └── index.js.map │ ├── QueryError │ │ ├── QueryError.js │ │ ├── QueryError.js.map │ │ ├── index.js │ │ └── index.js.map │ ├── Visualization │ │ ├── Visualization.js │ │ ├── Visualization.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── stories │ │ │ ├── Area.stories.js │ │ │ ├── Area.stories.js.map │ │ │ ├── Bar.stories.js │ │ │ ├── Bar.stories.js.map │ │ │ ├── Column.stories.js │ │ │ ├── Column.stories.js.map │ │ │ ├── Line.stories.js │ │ │ ├── Line.stories.js.map │ │ │ ├── Pie.stories.js │ │ │ ├── Pie.stories.js.map │ │ │ ├── Scatter.stories.js │ │ │ ├── Scatter.stories.js.map │ │ │ ├── SingleValue.stories.js │ │ │ ├── SingleValue.stories.js.map │ │ │ ├── Sparkline.stories.js │ │ │ ├── Sparkline.stories.js.map │ │ │ ├── Table.stories.js │ │ │ ├── Table.stories.js.map │ │ │ ├── TableBasic.js │ │ │ ├── TableBasic.js.map │ │ │ ├── TableHorizontalScroll.js │ │ │ ├── TableHorizontalScroll.js.map │ │ │ ├── TableMultiSort.js │ │ │ ├── TableMultiSort.js.map │ │ │ ├── TablePivot.js │ │ │ ├── TablePivot.js.map │ │ │ ├── TableTruncatedText.js │ │ │ ├── TableTruncatedText.js.map │ │ │ ├── TableWrappedText.js │ │ │ ├── TableWrappedText.js.map │ │ │ ├── TurtleTable.stories.js │ │ │ └── TurtleTable.stories.js.map │ ├── index.js │ ├── index.js.map │ ├── locales │ │ ├── available_locales.js │ │ ├── available_locales.js.map │ │ ├── i18n_resources.js │ │ ├── i18n_resources.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── resources │ │ │ ├── cs-CZ.js │ │ │ ├── cs-CZ.js.map │ │ │ ├── da-DK.js │ │ │ ├── da-DK.js.map │ │ │ ├── de-DE.js │ │ │ ├── de-DE.js.map │ │ │ ├── en.js │ │ │ ├── en.js.map │ │ │ ├── es-ES.js │ │ │ ├── es-ES.js.map │ │ │ ├── fi-FI.js │ │ │ ├── fi-FI.js.map │ │ │ ├── fr-CA.js │ │ │ ├── fr-CA.js.map │ │ │ ├── fr-FR.js │ │ │ ├── fr-FR.js.map │ │ │ ├── he-IL.js │ │ │ ├── he-IL.js.map │ │ │ ├── hi-IN.js │ │ │ ├── hi-IN.js.map │ │ │ ├── it-IT.js │ │ │ ├── it-IT.js.map │ │ │ ├── ja-JP.js │ │ │ ├── ja-JP.js.map │ │ │ ├── ko-KR.js │ │ │ ├── ko-KR.js.map │ │ │ ├── lt-LT.js │ │ │ ├── lt-LT.js.map │ │ │ ├── nb-NO.js │ │ │ ├── nb-NO.js.map │ │ │ ├── nl-NL.js │ │ │ ├── nl-NL.js.map │ │ │ ├── pl-PL.js │ │ │ ├── pl-PL.js.map │ │ │ ├── pt-BR.js │ │ │ ├── pt-BR.js.map │ │ │ ├── pt-PT.js │ │ │ ├── pt-PT.js.map │ │ │ ├── ru-RU.js │ │ │ ├── ru-RU.js.map │ │ │ ├── sv-SE.js │ │ │ ├── sv-SE.js.map │ │ │ ├── th-TH.js │ │ │ ├── th-TH.js.map │ │ │ ├── tr-TR.js │ │ │ ├── tr-TR.js.map │ │ │ ├── uk-UA.js │ │ │ ├── uk-UA.js.map │ │ │ ├── zh-CN.js │ │ │ ├── zh-CN.js.map │ │ │ ├── zh-TW.js │ │ │ └── zh-TW.js.map │ ├── types │ │ ├── styled-system__props.d.js │ │ ├── styled-system__props.d.js.map │ │ ├── styled-system__should-forward-prop.d.js │ │ └── styled-system__should-forward-prop.d.js.map │ └── utils │ │ ├── i18n.js │ │ ├── i18n.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── useTranslation.js │ │ └── useTranslation.js.map ├── esm │ ├── Query │ │ ├── Query.js │ │ ├── Query.js.map │ │ ├── index.js │ │ └── index.js.map │ ├── QueryError │ │ ├── QueryError.js │ │ ├── QueryError.js.map │ │ ├── index.js │ │ └── index.js.map │ ├── Visualization │ │ ├── Visualization.js │ │ ├── Visualization.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── stories │ │ │ ├── Area.stories.js │ │ │ ├── Area.stories.js.map │ │ │ ├── Bar.stories.js │ │ │ ├── Bar.stories.js.map │ │ │ ├── Column.stories.js │ │ │ ├── Column.stories.js.map │ │ │ ├── Line.stories.js │ │ │ ├── Line.stories.js.map │ │ │ ├── Pie.stories.js │ │ │ ├── Pie.stories.js.map │ │ │ ├── Scatter.stories.js │ │ │ ├── Scatter.stories.js.map │ │ │ ├── SingleValue.stories.js │ │ │ ├── SingleValue.stories.js.map │ │ │ ├── Sparkline.stories.js │ │ │ ├── Sparkline.stories.js.map │ │ │ ├── Table.stories.js │ │ │ ├── Table.stories.js.map │ │ │ ├── TableBasic.js │ │ │ ├── TableBasic.js.map │ │ │ ├── TableHorizontalScroll.js │ │ │ ├── TableHorizontalScroll.js.map │ │ │ ├── TableMultiSort.js │ │ │ ├── TableMultiSort.js.map │ │ │ ├── TablePivot.js │ │ │ ├── TablePivot.js.map │ │ │ ├── TableTruncatedText.js │ │ │ ├── TableTruncatedText.js.map │ │ │ ├── TableWrappedText.js │ │ │ ├── TableWrappedText.js.map │ │ │ ├── TurtleTable.stories.js │ │ │ └── TurtleTable.stories.js.map │ ├── index.js │ ├── index.js.map │ ├── locales │ │ ├── available_locales.js │ │ ├── available_locales.js.map │ │ ├── i18n_resources.js │ │ ├── i18n_resources.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── resources │ │ │ ├── cs-CZ.js │ │ │ ├── cs-CZ.js.map │ │ │ ├── da-DK.js │ │ │ ├── da-DK.js.map │ │ │ ├── de-DE.js │ │ │ ├── de-DE.js.map │ │ │ ├── en.js │ │ │ ├── en.js.map │ │ │ ├── es-ES.js │ │ │ ├── es-ES.js.map │ │ │ ├── fi-FI.js │ │ │ ├── fi-FI.js.map │ │ │ ├── fr-CA.js │ │ │ ├── fr-CA.js.map │ │ │ ├── fr-FR.js │ │ │ ├── fr-FR.js.map │ │ │ ├── he-IL.js │ │ │ ├── he-IL.js.map │ │ │ ├── hi-IN.js │ │ │ ├── hi-IN.js.map │ │ │ ├── it-IT.js │ │ │ ├── it-IT.js.map │ │ │ ├── ja-JP.js │ │ │ ├── ja-JP.js.map │ │ │ ├── ko-KR.js │ │ │ ├── ko-KR.js.map │ │ │ ├── lt-LT.js │ │ │ ├── lt-LT.js.map │ │ │ ├── nb-NO.js │ │ │ ├── nb-NO.js.map │ │ │ ├── nl-NL.js │ │ │ ├── nl-NL.js.map │ │ │ ├── pl-PL.js │ │ │ ├── pl-PL.js.map │ │ │ ├── pt-BR.js │ │ │ ├── pt-BR.js.map │ │ │ ├── pt-PT.js │ │ │ ├── pt-PT.js.map │ │ │ ├── ru-RU.js │ │ │ ├── ru-RU.js.map │ │ │ ├── sv-SE.js │ │ │ ├── sv-SE.js.map │ │ │ ├── th-TH.js │ │ │ ├── th-TH.js.map │ │ │ ├── tr-TR.js │ │ │ ├── tr-TR.js.map │ │ │ ├── uk-UA.js │ │ │ ├── uk-UA.js.map │ │ │ ├── zh-CN.js │ │ │ ├── zh-CN.js.map │ │ │ ├── zh-TW.js │ │ │ └── zh-TW.js.map │ ├── types │ │ ├── styled-system__props.d.js │ │ ├── styled-system__props.d.js.map │ │ ├── styled-system__should-forward-prop.d.js │ │ └── styled-system__should-forward-prop.d.js.map │ └── utils │ │ ├── i18n.js │ │ ├── i18n.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── useTranslation.js │ │ └── useTranslation.js.map ├── index.d.ts ├── locales │ ├── available_locales.d.ts │ ├── i18n_resources.d.ts │ ├── index.d.ts │ └── resources │ │ ├── cs-CZ.d.ts │ │ ├── da-DK.d.ts │ │ ├── de-DE.d.ts │ │ ├── en.d.ts │ │ ├── es-ES.d.ts │ │ ├── fi-FI.d.ts │ │ ├── fr-CA.d.ts │ │ ├── fr-FR.d.ts │ │ ├── he-IL.d.ts │ │ ├── hi-IN.d.ts │ │ ├── it-IT.d.ts │ │ ├── ja-JP.d.ts │ │ ├── ko-KR.d.ts │ │ ├── lt-LT.d.ts │ │ ├── nb-NO.d.ts │ │ ├── nl-NL.d.ts │ │ ├── pl-PL.d.ts │ │ ├── pt-BR.d.ts │ │ ├── pt-PT.d.ts │ │ ├── ru-RU.d.ts │ │ ├── sv-SE.d.ts │ │ ├── th-TH.d.ts │ │ ├── tr-TR.d.ts │ │ ├── uk-UA.d.ts │ │ ├── zh-CN.d.ts │ │ └── zh-TW.d.ts └── utils │ ├── i18n.d.ts │ ├── index.d.ts │ └── useTranslation.d.ts ├── jest.config.js ├── locales ├── cs_CZ │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── da_DK │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── de_DE │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── en │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── es_ES │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── fi_FI │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── fr_CA │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── fr_FR │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── he_IL │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── hi_IN │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── it_IT │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── ja_JP │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── ko_KR │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── lt_LT │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── nb_NO │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── nl_NL │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── pl_PL │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── pt_BR │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── pt_PT │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── ru_RU │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── sv_SE │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── th_TH │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── tr_TR │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── uk_UA │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── zh_CN │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json └── zh_TW │ ├── Query.strings.json │ ├── QueryError.strings.json │ └── Visualization.strings.json ├── package.json ├── src ├── Query │ ├── Query.spec.tsx │ ├── Query.tsx │ └── index.ts ├── QueryError │ ├── QueryError.tsx │ └── index.ts ├── Visualization │ ├── Visualization.spec.tsx │ ├── Visualization.tsx │ ├── index.ts │ └── stories │ │ ├── Area.stories.tsx │ │ ├── Bar.stories.tsx │ │ ├── Column.stories.tsx │ │ ├── Line.stories.tsx │ │ ├── Pie.stories.tsx │ │ ├── Scatter.stories.tsx │ │ ├── SingleValue.stories.tsx │ │ ├── Sparkline.stories.tsx │ │ ├── Table.stories.tsx │ │ ├── TableBasic.tsx │ │ ├── TableHorizontalScroll.tsx │ │ ├── TableMultiSort.tsx │ │ ├── TablePivot.tsx │ │ ├── TableTruncatedText.tsx │ │ ├── TableWrappedText.tsx │ │ └── TurtleTable.stories.tsx ├── index.ts ├── locales │ ├── available_locales.ts │ ├── i18n_resources.ts │ ├── index.ts │ └── resources │ │ ├── cs-CZ.ts │ │ ├── da-DK.ts │ │ ├── de-DE.ts │ │ ├── en.ts │ │ ├── es-ES.ts │ │ ├── fi-FI.ts │ │ ├── fr-CA.ts │ │ ├── fr-FR.ts │ │ ├── he-IL.ts │ │ ├── hi-IN.ts │ │ ├── it-IT.ts │ │ ├── ja-JP.ts │ │ ├── ko-KR.ts │ │ ├── lt-LT.ts │ │ ├── nb-NO.ts │ │ ├── nl-NL.ts │ │ ├── pl-PL.ts │ │ ├── pt-BR.ts │ │ ├── pt-PT.ts │ │ ├── ru-RU.ts │ │ ├── sv-SE.ts │ │ ├── th-TH.ts │ │ ├── tr-TR.ts │ │ ├── uk-UA.ts │ │ ├── zh-CN.ts │ │ └── zh-TW.ts ├── types │ ├── styled-system__props.d.ts │ └── styled-system__should-forward-prop.d.ts └── utils │ ├── i18n.ts │ ├── index.ts │ └── useTranslation.ts ├── test └── output │ └── jest │ ├── jest-html-reporters-attach │ └── report │ │ ├── index.js │ │ └── result.js │ └── report.html ├── tsconfig.build.json └── tsconfig.json /packages/components-data/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/components-data/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/components-data/dist/cjs/types/styled-system__props.d.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | //# sourceMappingURL=styled-system__props.d.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/cjs/types/styled-system__should-forward-prop.d.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | //# sourceMappingURL=styled-system__should-forward-prop.d.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/esm/SDKContext.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | export const SDKContext = React.createContext({}); 3 | //# sourceMappingURL=SDKContext.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from './DataProvider'; 2 | export * from './hooks'; 3 | export * from './utils'; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/esm/testUtils/index.js: -------------------------------------------------------------------------------- 1 | export * from './ContextWrapper'; 2 | export * from './mockSDKWithListeners'; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/esm/types/styled-system__props.d.js: -------------------------------------------------------------------------------- 1 | 2 | //# sourceMappingURL=styled-system__props.d.js.map -------------------------------------------------------------------------------- /packages/components-data/dist/esm/types/styled-system__should-forward-prop.d.js: -------------------------------------------------------------------------------- 1 | 2 | //# sourceMappingURL=styled-system__should-forward-prop.d.js.map -------------------------------------------------------------------------------- /packages/components-providers/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/components-providers/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/components-providers/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/components-providers/README.md: -------------------------------------------------------------------------------- 1 | # @looker/components-providers 2 | 3 | > Context providers for use with Looker Components. 4 | -------------------------------------------------------------------------------- /packages/components-providers/src/I18n/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './useI18n'; 7 | -------------------------------------------------------------------------------- /packages/components-test-utils/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/components-test-utils/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/components-test-utils/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/components-test-utils/README.md: -------------------------------------------------------------------------------- 1 | # Test Utilities 2 | 3 | Shared functions used for mocking and testing Looker UI Components. 4 | -------------------------------------------------------------------------------- /packages/components/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/components/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Vymazat pole", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profilový obrázek", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Odstranit", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Žádné výsledky", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Možnosti", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Otevřít kalendář", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Vybrat čas", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Odvolat {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Zavřít", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Zavřít {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Hotovo", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "požadováno", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/cs_CZ/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Karty", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Ryd felt", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profilbillede", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Flueben – blandet", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Slet", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Ingen resultater", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Indstillinger", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Åbn kalender", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Vælg tidspunkt", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Afvis {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Luk", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Luk {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Udført", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "krævet", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/da_DK/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Faner", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Feld löschen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Profilbild" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "Häkchen gemischt" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Löschen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "Keine Ergebnisse" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Optionen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Kalender öffnen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Uhrzeit auswählen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "{{intent}} schließen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Schließen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "{{title}} schließen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "Fertig" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "erforderlich" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/de_DE/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Tabs" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Clear Field" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Profile Picture" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "Check Mark Mixed" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Delete" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "No Results" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Options" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Open calendar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Select time" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "Dismiss {{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Close" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Close {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "Done" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/ProgressDuet.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Processing request": { 3 | "description": "", 4 | "value": "Processing request" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "required" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/en/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Tabs" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Borrar campo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Foto de perfil" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Borrar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "No hay resultados" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Opciones" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Abrir calendario" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Seleccionar hora" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "Descartar {{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Cerrar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Cerrar {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "Listo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "obligatorio" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/es_ES/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Pestañas" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Tyhjennä kenttä", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profiilikuva", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Poista", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Ei tuloksia", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Asetukset", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Avaa kalenteri", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Valitse aika", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Ohita {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Sulje", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Sulje {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Valmis", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "tarvitaan", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fi_FI/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Välilehdet", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Image du profil", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Supprimer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Aucun résultat", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Options", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Ouvrir le calendrier", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Sélectionner l'heure", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Ignorer {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Fermer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Fermer {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Terminé", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "obligatoire", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_CA/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Onglets", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Photo de profil" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "Coche mixte" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Supprimer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "Aucun résultat" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Options" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Ouvrir l'agenda" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "Fermer {{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Fermer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Fermer {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "OK" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "obligatoire" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/fr_FR/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Onglets" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "נקה שדה", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "תמונת פרופיל", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "דמות", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "מחק", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "אין תוצאות", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "אפשרויות", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "פתח לוח שנה", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "בחר שעה", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "בטל את {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "סגור", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "סגור את {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "סיום", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "נדרש", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/he_IL/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "כרטיסיות", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "प्रोफ़ाइल फ़ोटो", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "अवतार", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "मिटाएं", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "कोई परिणाम नहीं", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "विकल्प", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "कैलेंडर खोलें", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "समय चुनें", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "{{intent}} खारिज करें", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "बंद करें", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "{{title}} बंद करें", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "हो गया", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "आवश्यक", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/hi_IN/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "टैब", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Cancella campo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Immagine del profilo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Elimina" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "Nessun risultato" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Opzioni" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Apri calendario" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Seleziona ora" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "Ignora {{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Chiudi" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Chiudi {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "Fine" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "obbligatorio" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/it_IT/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Schede" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "フィールドをクリア" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "プロフィール写真" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "アバター" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "チェックマークの混合" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "削除" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "一致する結果はありません" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "オプション" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "カレンダーを開く" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "時刻を選択" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "{{intent}} を閉じる" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "閉じる" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "{{title}} を閉じる" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "完了" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/ProgressDuet.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Processing request": { 3 | "description": "", 4 | "value": "リクエストを処理しています" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "必須" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ja_JP/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "タブ" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "필드 지우기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "프로필 사진" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "아바타" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "체크박스 일부 선택됨" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "삭제" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "결과 없음" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "옵션" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "캘린더 열기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "시간 선택" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "{{intent}} 닫기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "닫기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "{{title}} 닫기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "완료" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/ProgressDuet.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Processing request": { 3 | "description": "", 4 | "value": "요청 처리 중" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "필수" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ko_KR/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "탭" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Išvalyti lauką", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Pseudoportretas", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Varnelė maišyta", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Ištrinti", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Rezultatų nėra", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Parinktys", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Atidaryti kalendorių", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Pasirinkti laiką", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Atmesti {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Uždaryti", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Uždaryti {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Atlikta", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "reikalinga", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/lt_LT/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Skirtukai", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Tøm felt", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profilbilde", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Blandet merke", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Slett", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Ingen resultater", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Alternativer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Åpne kalender", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Velg tid", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Forkast {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Lukk", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Lukk {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Fullført", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "påkrevd", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nb_NO/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Faner", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Veld wissen", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profielfoto", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Gemengd vinkje", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Verwijderen", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Geen resultaten", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Opties", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Kalender openen", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Tijd selecteren", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "{{intent}} sluiten", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Sluiten", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "{{title}} sluiten", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Gereed", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "verplicht", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/nl_NL/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Tabbladen", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Wyczyść pole" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Zdjęcie profilowe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Awatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Usuń" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "Brak wyników" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Opcje" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Otwórz kalendarz" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Wybierz godzinę" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Zamknij" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Zamknij: {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "OK" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "wymagane" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pl_PL/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Karty" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "Limpar campo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "Foto do perfil" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "Avatar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "Excluir" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "Nenhum resultado" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "Opções" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "Abrir agenda" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "Selecionar hora" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "Dispensar {{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "Fechar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "Fechar {{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "Concluído" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "obrigatório" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_BR/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "Guias" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Limpar campo", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Foto de perfil", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Eliminar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Sem resultados", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Opções", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Abrir calendário", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Selecionar hora", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Ignorar {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Fechar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Fechar {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Concluído", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "obrigatório", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/pt_PT/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Separadores", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Очистить поле", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Изображение профиля", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Аватар", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Отметки смешаны", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Удалить", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Нет результатов", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Параметры", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Открыть календарь", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Выбрать время", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Отклонить {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Закрыть", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Закрыть {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Готово", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "обязательно", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/ru_RU/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Вкладки", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Rensa fält", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profilbild", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Radera", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Inga resultat", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Alternativ", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Öppna kalender", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Välj tid", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Avfärda {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Stäng", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Stäng {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Klar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "krävs", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/sv_SE/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Flikar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "ล้างฟิลด์", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "รูปโปรไฟล์", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "อวาตาร์", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "ลบ", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "ไม่มีผลลัพธ์", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "ตัวเลือก", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "เปิดปฏิทิน", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "เลือกเวลา", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "เลิก {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "ปิด", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "ปิด {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "เสร็จสิ้น", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "จำเป็น", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/th_TH/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "แท็บ", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Alanı Temizle", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Profil Resmi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Avatar", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Sil", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Sonuç Yok", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Seçenekler", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Takvimi aç", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Zaman seç", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "{{intent}} öğesini kapat", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Kapat", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "{{title}} öğesini kapat", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Tamamlandı", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "gerekli", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/tr_TR/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Sekmeler", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "value": "Очистити поле", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "value": "Аватар", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "value": "Аватар", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "value": "Позначки змішані", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "value": "Видалити", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "value": "Немає результатів", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "value": "Параметри", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "value": "Відкрити календар", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "value": "Вибрати час", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "value": "Відхилити {{intent}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "value": "Закрити", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "value": "Закрити {{title}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "value": "Готово", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "value": "обов’язково", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/uk_UA/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "value": "Вкладки", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "清除字段" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "个人资料照片" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "头像" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "对勾标记混合" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "删除" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "无结果" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "选项" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "打开日历" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "选择时间" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "关闭{{intent}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "关闭" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "关闭{{title}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "完成" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/ProgressDuet.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Processing request": { 3 | "description": "", 4 | "value": "正在处理请求" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "必填" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_CN/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "标签页" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/AdvancedInputControls.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Clear Field": { 3 | "description": "", 4 | "value": "清除欄位" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/AvatarButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profile Picture": { 3 | "description": "", 4 | "value": "個人資料相片" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/AvatarUser.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Avatar": { 3 | "description": "", 4 | "value": "顯示圖片" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/CheckMarkMixed.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Check Mark Mixed": { 3 | "description": "", 4 | "value": "勾選「混合」" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/Chip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Delete": { 3 | "description": "", 4 | "value": "刪除" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/DataTable.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "No Results": { 3 | "description": "", 4 | "value": "沒有任何結果" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/DataTableItem.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Options": { 3 | "description": "", 4 | "value": "選項" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/InputDate.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open calendar": { 3 | "description": "", 4 | "value": "開啟日曆" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/InputTimeSelect.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Select time": { 3 | "description": "", 4 | "value": "選取時間" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/MessageBar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "DismissIntent": { 3 | "description": "", 4 | "value": "關閉「{{intent}}」" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/ModalHeaderCloseButton.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Close": { 3 | "description": "", 4 | "value": "關閉" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/PanelHeader.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CloseTitle": { 3 | "description": "", 4 | "value": "關閉「{{title}}」" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/PopoverFooter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Done": { 3 | "description": "", 4 | "value": "完成" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/ProgressDuet.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Processing request": { 3 | "description": "", 4 | "value": "正在處理要求" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/RequiredStar.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": { 3 | "description": "", 4 | "value": "必填" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/locales/zh_TW/TabList.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tabs": { 3 | "description": "", 4 | "value": "分頁" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/components/src/Animate/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Animate'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Badge/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Badge'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Breakpoint/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Breakpoint'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Chip/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Chip'; 7 | -------------------------------------------------------------------------------- /packages/components/src/ChipButton/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ChipButton'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Density/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Density'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Dialog/Prompt/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Prompt'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Fieldset/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Fieldset'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Form/Inputs/Radio/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Radio'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Form/Label/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Label'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Form/Legend/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Legend'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Layout/Box/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Box'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Layout/Flex/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Flex'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Layout/Grid/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | export * from './Grid'; 6 | -------------------------------------------------------------------------------- /packages/components/src/Layout/Semantics/Aside/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | export * from './Aside'; 6 | -------------------------------------------------------------------------------- /packages/components/src/Link/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Link'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Menu/MenuItem/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './MenuItem'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Menu/MenuList/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './MenuList'; 7 | -------------------------------------------------------------------------------- /packages/components/src/MessageBar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './MessageBar'; 7 | -------------------------------------------------------------------------------- /packages/components/src/PageSize/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './PageSize'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Pagination/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Pagination'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Portal/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Portal'; 7 | -------------------------------------------------------------------------------- /packages/components/src/ReplaceText/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | export * from './ReplaceText'; 6 | -------------------------------------------------------------------------------- /packages/components/src/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Spinner'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Status/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Status'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Text/Code/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Code'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Text/Heading/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Heading'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Text/Span/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Span'; 7 | -------------------------------------------------------------------------------- /packages/components/src/Truncate/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Truncate'; 7 | -------------------------------------------------------------------------------- /packages/design-tokens/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/design-tokens/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/design-tokens/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/eslint-config-oss/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./src/index.js" 3 | } -------------------------------------------------------------------------------- /packages/eslint-config-oss/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/eslint-config-oss/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest 7 | /.eslintrc 8 | -------------------------------------------------------------------------------- /packages/eslint-config-oss/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/eslint-plugin/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/eslint-plugin/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest 7 | /package.json 8 | -------------------------------------------------------------------------------- /packages/eslint-plugin/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/filter-components/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/filter-components/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest 7 | /.babelrc.js 8 | /i18n_templates.js -------------------------------------------------------------------------------- /packages/filter-components/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "A", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "do (před)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "jakákoliv hodnota", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "jakákoliv hodnota", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Více", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/cs_CZ/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Vybrat...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "OG", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "indtil (før)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "enhver værdi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "enhver værdi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Mere", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Vælg...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/da_DK/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "enhver værdi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "UND" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "bis (vor)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "beliebiger Wert" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "beliebiger Wert" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Mehr" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Auswählen…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/de_DE/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "beliebiger Wert" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "AND" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "until (before)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "any value" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "any value" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "More" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Select..." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/en/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "any value" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "Y" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "hasta (antes)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "cualquier valor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "cualquier valor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Más" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Seleccionar…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/es_ES/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "cualquier valor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fi_FI/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "JA", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fi_FI/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "mikä tahansa arvo", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fi_FI/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "mikä tahansa arvo", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fi_FI/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Lisää", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fi_FI/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Valitse...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_CA/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "ET", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_CA/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "jusqu’à (avant)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_CA/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Plus", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_CA/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Sélectionner...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "AND" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "jusqu'au (avant)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "toute valeur" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "toute valeur" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Plus" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Sélectionnez…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/fr_FR/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "toute valeur" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "ו", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "עד (לפני)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ערך כלשהו", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ערך כלשהו", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "עוד", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "בחר...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/he_IL/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ערך כלשהו", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "और", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "(पहले) तक", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "कोई भी मान", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "कोई भी मान", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "अधिक", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "चुनें...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/hi_IN/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "कोई भी मान", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/it_IT/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "AND" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/it_IT/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "qualsiasi valore" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/it_IT/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Altro" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/it_IT/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Seleziona…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "および" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意の値" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意の値" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "詳細" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "選択..." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ja_JP/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意の値" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "AND" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "종료 시간(그 이전):" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "값 무관" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "값 무관" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "더보기" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "선택..." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ko_KR/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "값 무관" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/lt_LT/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "IR", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/lt_LT/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "iki (prieš)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/lt_LT/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "bet kokia vertė", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/lt_LT/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Daugiau", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "OG", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "til (før)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "enhver verdi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "enhver verdi", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Mer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nb_NO/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Velg...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "EN", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "tot (voor)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "elke waarde", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "elke waarde", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Meer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/nl_NL/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "elke waarde", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pl_PL/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "ORAZ" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pl_PL/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "do (przed)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pl_PL/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "dowolna wartość" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pl_PL/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Więcej" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pl_PL/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "Wybierz…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_BR/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "E" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_BR/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "até (antes)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_BR/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "qualquer valor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_BR/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "qualquer valor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_BR/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "Mais" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_PT/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "E", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_PT/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "até (antes)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_PT/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "qualquer valor", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_PT/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "qualquer valor", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/pt_PT/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Mais", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ru_RU/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "И", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ru_RU/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "любое значение", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ru_RU/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "любое значение", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ru_RU/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Еще", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/ru_RU/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Выбрать…", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/sv_SE/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "OCH", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/sv_SE/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Mer", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/sv_SE/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Välj …", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/sv_SE/format_date.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstDayOfWeek": { 3 | "value": "0", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "AND", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "value": "จนถึง (ก่อน)", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ค่าใดก็ได้", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ค่าใดก็ได้", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "เลือก...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/th_TH/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "value": "ค่าใดก็ได้", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/tr_TR/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "İLE", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/tr_TR/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Seç...", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/uk_UA/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "value": "І", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/uk_UA/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "value": "Ще", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/uk_UA/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "value": "Вибрати…", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "且" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "直到(不包括)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "更多" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "请选择…" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_CN/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/Between.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AND": { 3 | "description": "", 4 | "value": "且" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/DateRange.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "until (before)": { 3 | "description": "", 4 | "value": "直到 (早於)" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/NumberFilter.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任何值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/RadioGroup.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任何值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/RelativeTimeframePresets.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "More": { 3 | "description": "", 4 | "value": "其他" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/UserAttributes.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder": { 3 | "description": "", 4 | "value": "選取..." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-components/locales/zh_TW/use_placeholder.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任何值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/filter-expressions/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest 7 | /.babelrc.js -------------------------------------------------------------------------------- /packages/filter-expressions/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/cs_CZ/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} nebo {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/da_DK/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} eller {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/da_DK/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "Værdi kræves", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/de_DE/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} oder {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/en/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} or {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/en/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "description": "", 4 | "value": "Value required" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/es_ES/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} o {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/fi_FI/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} tai {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/fr_CA/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} ou {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/fr_FR/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} ou {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/he_IL/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} או {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/he_IL/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "נדרש ערך", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/hi_IN/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} या {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/hi_IN/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "मान आवश्यक", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/it_IT/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} o {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ja_JP/describe_is_any_value.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意の値" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ja_JP/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} または {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ja_JP/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "description": "", 4 | "value": "値は必須です" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ko_KR/describe_is_any_value.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "값 무관" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ko_KR/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} 또는 {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ko_KR/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "description": "", 4 | "value": "값은 필수 항목입니다." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/lt_LT/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} arba {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/nb_NO/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} eller {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/nl_NL/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} of {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/pl_PL/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} lub {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/pt_BR/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} ou {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/pt_PT/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} ou {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/ru_RU/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} или {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/sv_SE/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} eller {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/sv_SE/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "Värde krävs", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/th_TH/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} หรือ {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/th_TH/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "ต้องระบุค่า", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/tr_TR/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} veya {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/tr_TR/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "value": "Değer gerekli", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/uk_UA/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "value": "{{a}} або {{b}}", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_CN/describe_is_any_value.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任意值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_CN/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}} 或 {{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_CN/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "description": "", 4 | "value": "必须提供值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_TW/describe_is_any_value.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "any value": { 3 | "description": "", 4 | "value": "任何值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_TW/join_or.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "a or b": { 3 | "description": "", 4 | "value": "{{a}}或{{b}}" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/filter-expressions/locales/zh_TW/summary.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Value required": { 3 | "description": "", 4 | "value": "必須提供值" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/i18n/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/i18n/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/i18n/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/i18n/README.md: -------------------------------------------------------------------------------- 1 | # @looker/i18n 2 | 3 | > Internationalization utilities. 4 | -------------------------------------------------------------------------------- /packages/icons/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/icons/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/icons/src/Beaker/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Beaker'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/BrowseTable/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './BrowseTable'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/CalendarDay/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './CalendarDay'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ChartArea/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ChartArea'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ChartBar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ChartBar'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/CollapseAll/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './CollapseAll'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ColorFill/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ColorFill'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ColorText/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ColorText'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/CrossFilter/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './CrossFilter'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Download/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Download'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Explore/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Explore'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/FieldString/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './FieldString'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/FieldTier/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './FieldTier'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Flag/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Flag'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/GitBranch/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './GitBranch'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/LQA/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './LQA'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/LogoRings/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './LogoRings'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/LookerLogo/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './LookerLogo'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Marketplace/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Marketplace'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ModelFile/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ModelFile'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/More/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './More'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Notes/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Notes'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Pivot/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Pivot'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Public/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Public'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/QuickStart/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './QuickStart'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Reports/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Reports'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/Return/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Return'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/SendWebhook/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './SendWebhook'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/SqlRunner/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './SqlRunner'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/ViewFile/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './ViewFile'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisArea/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisArea'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisBar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisBar'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisColumn/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisColumn'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisLine/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisLine'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisMap/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisMap'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisPie/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisPie'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisScatter/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisScatter'; 7 | -------------------------------------------------------------------------------- /packages/icons/src/VisTable/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './VisTable'; 7 | -------------------------------------------------------------------------------- /packages/redux/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/redux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 (2023-04-13) 2 | -------------------------------------------------------------------------------- /packages/stylelint-config/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/stylelint-config/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /test/output/jest -------------------------------------------------------------------------------- /packages/stylelint-config/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations-adapters/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/visualizations-adapters/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations-single-value/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/visualizations-single-value/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /storybook-static 7 | /test/output/jest -------------------------------------------------------------------------------- /packages/visualizations-single-value/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations-table/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/visualizations-table/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /storybook-static 7 | /test/output/jest -------------------------------------------------------------------------------- /packages/visualizations-table/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations-table/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/visualizations-visx/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/visualizations-visx/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /storybook-static 7 | /test/output/jest -------------------------------------------------------------------------------- /packages/visualizations-visx/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations-visx/locales/ko_KR/XYTooltip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Points sized by": { 3 | "description": "", 4 | "value": "포인트 크기 기준" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/locales/zh_CN/XYTooltip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Points sized by": { 3 | "description": "", 4 | "value": "点大小调整依据" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/locales/zh_TW/XYTooltip.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Points sized by": { 3 | "description": "", 4 | "value": "點大小衡量依據:" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/src/Area/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Area'; 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/src/Bar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Bar'; 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/src/Line/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Line'; 7 | -------------------------------------------------------------------------------- /packages/visualizations-visx/src/Pie/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Pie'; 7 | -------------------------------------------------------------------------------- /packages/visualizations/.npmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /packages/visualizations/.prettierignore: -------------------------------------------------------------------------------- 1 | /**/*.md 2 | /**/*.mdx 3 | /**/locales 4 | /dist 5 | /lib 6 | /storybook-static 7 | /test/output/jest -------------------------------------------------------------------------------- /packages/visualizations/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@looker/prettier-config'); 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/Query/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | export * from './Query'; 6 | -------------------------------------------------------------------------------- /packages/visualizations/dist/Visualization/stories/TableMultiSort.d.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | export default function TableMultiSort(): React.JSX.Element; 3 | -------------------------------------------------------------------------------- /packages/visualizations/dist/Visualization/stories/TableWrappedText.d.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | export default function WrappedText(): React.JSX.Element; 3 | -------------------------------------------------------------------------------- /packages/visualizations/dist/cjs/types/styled-system__props.d.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | //# sourceMappingURL=styled-system__props.d.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/cjs/types/styled-system__should-forward-prop.d.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | //# sourceMappingURL=styled-system__should-forward-prop.d.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/Query/index.js: -------------------------------------------------------------------------------- 1 | export * from './Query'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/QueryError/index.js: -------------------------------------------------------------------------------- 1 | export * from './QueryError'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/Visualization/index.js: -------------------------------------------------------------------------------- 1 | export * from './Visualization'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/types/styled-system__props.d.js: -------------------------------------------------------------------------------- 1 | 2 | //# sourceMappingURL=styled-system__props.d.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/types/styled-system__should-forward-prop.d.js: -------------------------------------------------------------------------------- 1 | 2 | //# sourceMappingURL=styled-system__should-forward-prop.d.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/esm/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | export * from './useTranslation'; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/available_locales.d.ts: -------------------------------------------------------------------------------- 1 | export declare const availableLocales: string[]; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/i18n_resources.d.ts: -------------------------------------------------------------------------------- 1 | export declare const i18nResources: any; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/cs-CZ.d.ts: -------------------------------------------------------------------------------- 1 | export declare const csCZ: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/da-DK.d.ts: -------------------------------------------------------------------------------- 1 | export declare const daDK: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/de-DE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const deDE: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/en.d.ts: -------------------------------------------------------------------------------- 1 | export declare const en: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/es-ES.d.ts: -------------------------------------------------------------------------------- 1 | export declare const esES: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/fi-FI.d.ts: -------------------------------------------------------------------------------- 1 | export declare const fiFI: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/fr-CA.d.ts: -------------------------------------------------------------------------------- 1 | export declare const frCA: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/fr-FR.d.ts: -------------------------------------------------------------------------------- 1 | export declare const frFR: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/he-IL.d.ts: -------------------------------------------------------------------------------- 1 | export declare const heIL: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/hi-IN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const hiIN: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/it-IT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const itIT: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/ja-JP.d.ts: -------------------------------------------------------------------------------- 1 | export declare const jaJP: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/ko-KR.d.ts: -------------------------------------------------------------------------------- 1 | export declare const koKR: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/lt-LT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ltLT: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/nb-NO.d.ts: -------------------------------------------------------------------------------- 1 | export declare const nbNO: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/nl-NL.d.ts: -------------------------------------------------------------------------------- 1 | export declare const nlNL: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/pl-PL.d.ts: -------------------------------------------------------------------------------- 1 | export declare const plPL: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/pt-BR.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ptBR: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/pt-PT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ptPT: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/ru-RU.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ruRU: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/sv-SE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const svSE: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/th-TH.d.ts: -------------------------------------------------------------------------------- 1 | export declare const thTH: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/tr-TR.d.ts: -------------------------------------------------------------------------------- 1 | export declare const trTR: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/uk-UA.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ukUA: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/zh-CN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const zhCN: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/dist/locales/resources/zh-TW.d.ts: -------------------------------------------------------------------------------- 1 | export declare const zhTW: import("@looker/i18n").I18nStateWithDates; 2 | -------------------------------------------------------------------------------- /packages/visualizations/locales/cs_CZ/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Chyba", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/da_DK/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Fejl", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/de_DE/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Fehler" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/en/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Error" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/es_ES/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Error" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/fi_FI/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Virhe", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/fr_CA/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Erreur", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/fr_FR/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Erreur" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/he_IL/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "שגיאה", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/hi_IN/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "त्रुटि", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/it_IT/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Errore" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/ja_JP/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "エラー" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/ko_KR/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "오류" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/lt_LT/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Klaida", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/nb_NO/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Feil", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/nl_NL/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Fout", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/pl_PL/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Błąd" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/pt_BR/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "Erro" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/pt_PT/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Erro", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/ru_RU/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Ошибка", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/sv_SE/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Fel", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/th_TH/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "ข้อผิดพลาด", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/tr_TR/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Hata", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/uk_UA/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "value": "Помилка", 4 | "description": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/zh_CN/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "错误" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/locales/zh_TW/QueryError.strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Error": { 3 | "description": "", 4 | "value": "錯誤" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/visualizations/src/Query/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2023 Google LLC 3 | * SPDX-License-Identifier: MIT 4 | */ 5 | 6 | export * from './Query'; 7 | --------------------------------------------------------------------------------