This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com | |
| * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 | |
| */ | |
| import ClayButton, {ClayButtonWithIcon} from '@clayui/button'; | |
| import ClayForm from '@clayui/form'; | |
| import ClayIcon from '@clayui/icon'; | |
| import ClayLabel from '@clayui/label'; | |
| import ClayPopover from '@clayui/popover'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // /Users/ambrinchaudhary/Liferay/portal/modules/apps/item-selector/item-selector-taglib/src/main/resources/META-INF/resources/js/item_selector_uploader/MultipleFileUploader.js | |
| // (This would be a new file) | |
| import {ClayButtonWithIcon, ClayButton} from '@clayui/button'; | |
| import ClayForm from '@clayui/form'; | |
| import ClayLayout from '@clayui/layout'; | |
| import ClayProgressBar from '@clayui/progress-bar'; | |
| import {useIsMounted} from '@liferay/frontend-js-react-web'; | |
| import classNames from 'classnames'; | |
| import {formatStorage, sub} from 'frontend-js-web'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.liferay.document.library.web.internal.frontend.data.set.view; | |
| import com.liferay.frontend.data.set.view.FDSView; | |
| import com.liferay.frontend.data.set.view.table.BaseTableFDSView; | |
| import com.liferay.frontend.data.set.view.table.FDSTableSchema; | |
| import com.liferay.frontend.data.set.view.table.FDSTableSchemaBuilder; | |
| import com.liferay.frontend.data.set.view.table.FDSTableSchemaBuilderFactory; | |
| import java.util.Locale; |