Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@filerobot/explorer / lib / components / Modals / LabelModal / LabelModal.constants.js
Size: Mime:
import { LABEL_PERMISSION_IDS } from '@filerobot/utils/lib/constants';
export var DEFAULT_COLORS = ['#F2A43B', '#F4B9E7', '#E55E58', '#6DDC6A', '#9580E9', '#8AB7FF'];
export var defaultState = {
  name: '',
  color: DEFAULT_COLORS[0],
  shape: 'pin',
  is_pinned: false,
  // TODO Rename is_pinned -> isPinned
  permissions: {
    viewing: {
      scope: LABEL_PERMISSION_IDS.COMPANY,
      ids: null // [later, the list of selected teams/users]
    },

    attaching: {
      scope: LABEL_PERMISSION_IDS.COMPANY,
      ids: null // [later, the list of selected teams/users]
    }
  }
};