mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
save
This commit is contained in:
@@ -0,0 +1,423 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
if (cdvHelpers.getConfigPreference('GradlePluginKotlinEnabled', 'false').toBoolean()) {
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlin-android-extensions'
|
||||
}
|
||||
|
||||
buildscript {
|
||||
apply from: '../CordovaLib/cordova.gradle'
|
||||
|
||||
if(cdvHelpers.getConfigPreference('GradlePluginKotlinEnabled', 'false').toBoolean()) {
|
||||
String defaultGradlePluginKotlinVersion = kotlin_version
|
||||
|
||||
/**
|
||||
* Fetches the user's defined Kotlin Version from config.xml.
|
||||
* If the version is not set or invalid, it will default to the ${defaultGradlePluginKotlinVersion}
|
||||
*/
|
||||
String gradlePluginKotlinVersion = cdvHelpers.getConfigPreference('GradlePluginKotlinVersion', defaultGradlePluginKotlinVersion)
|
||||
if(!cdvHelpers.isVersionValid(gradlePluginKotlinVersion)) {
|
||||
println("The defined Kotlin version (${gradlePluginKotlinVersion}) does not appear to be a valid version. Falling back to version: ${defaultGradlePluginKotlinVersion}.")
|
||||
gradlePluginKotlinVersion = defaultGradlePluginKotlinVersion
|
||||
}
|
||||
|
||||
// Change the version to be used.
|
||||
ext.kotlin_version = gradlePluginKotlinVersion
|
||||
}
|
||||
|
||||
apply from: 'repositories.gradle'
|
||||
repositories repos
|
||||
|
||||
dependencies {
|
||||
apply from: '../CordovaLib/cordova.gradle'
|
||||
|
||||
classpath 'com.android.tools.build:gradle:4.0.0'
|
||||
|
||||
if (cdvHelpers.getConfigPreference('GradlePluginKotlinEnabled', 'false').toBoolean()) {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
|
||||
if(cdvHelpers.getConfigPreference('GradlePluginGoogleServicesEnabled', 'false').toBoolean()) {
|
||||
String defaultGradlePluginGoogleServicesVersion = '4.2.0'
|
||||
|
||||
/**
|
||||
* Fetches the user's defined Google Services Plugin Version from config.xml.
|
||||
* If the version is not set or invalid, it will default to the ${defaultGradlePluginGoogleServicesVersion}
|
||||
*/
|
||||
String gradlePluginGoogleServicesVersion = cdvHelpers.getConfigPreference('GradlePluginGoogleServicesVersion', defaultGradlePluginGoogleServicesVersion)
|
||||
if(!cdvHelpers.isVersionValid(gradlePluginGoogleServicesVersion)) {
|
||||
println("The defined Google Services plugin version (${gradlePluginGoogleServicesVersion}) does not appear to be a valid version. Falling back to version: ${defaultGradlePluginGoogleServicesVersion}.")
|
||||
gradlePluginGoogleServicesVersion = defaultGradlePluginGoogleServicesVersion
|
||||
}
|
||||
|
||||
// Create the Google Services classpath and set it.
|
||||
String gradlePluginGoogleServicesClassPath = "com.google.gms:google-services:${gradlePluginGoogleServicesVersion}"
|
||||
println "Adding classpath: ${gradlePluginGoogleServicesClassPath}"
|
||||
classpath gradlePluginGoogleServicesClassPath
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Allow plugins to declare Maven dependencies via build-extras.gradle.
|
||||
allprojects {
|
||||
apply from: 'repositories.gradle'
|
||||
repositories repos
|
||||
}
|
||||
|
||||
task wrapper(type: Wrapper) {
|
||||
gradleVersion = '6.5'
|
||||
}
|
||||
|
||||
// Configuration properties. Set these via environment variables, build-extras.gradle, or gradle.properties.
|
||||
// Refer to: http://www.gradle.org/docs/current/userguide/tutorial_this_and_that.html
|
||||
ext {
|
||||
apply from: '../CordovaLib/cordova.gradle'
|
||||
|
||||
// The value for android.compileSdkVersion.
|
||||
if (!project.hasProperty('cdvCompileSdkVersion')) {
|
||||
cdvCompileSdkVersion = null;
|
||||
}
|
||||
// The value for android.buildToolsVersion.
|
||||
if (!project.hasProperty('cdvBuildToolsVersion')) {
|
||||
cdvBuildToolsVersion = null;
|
||||
}
|
||||
// Sets the versionCode to the given value.
|
||||
if (!project.hasProperty('cdvVersionCode')) {
|
||||
cdvVersionCode = null
|
||||
}
|
||||
// Sets the minSdkVersion to the given value.
|
||||
if (!project.hasProperty('cdvMinSdkVersion')) {
|
||||
cdvMinSdkVersion = null
|
||||
}
|
||||
// Sets the maxSdkVersion to the given value.
|
||||
if (!project.hasProperty('cdvMaxSdkVersion')) {
|
||||
cdvMaxSdkVersion = null
|
||||
}
|
||||
// The value for android.targetSdkVersion.
|
||||
if (!project.hasProperty('cdvTargetSdkVersion')) {
|
||||
cdvTargetSdkVersion = null;
|
||||
}
|
||||
// Whether to build architecture-specific APKs.
|
||||
if (!project.hasProperty('cdvBuildMultipleApks')) {
|
||||
cdvBuildMultipleApks = null
|
||||
}
|
||||
// Whether to append a 0 "abi digit" to versionCode when only a single APK is build
|
||||
if (!project.hasProperty('cdvVersionCodeForceAbiDigit')) {
|
||||
cdvVersionCodeForceAbiDigit = null
|
||||
}
|
||||
// .properties files to use for release signing.
|
||||
if (!project.hasProperty('cdvReleaseSigningPropertiesFile')) {
|
||||
cdvReleaseSigningPropertiesFile = null
|
||||
}
|
||||
// .properties files to use for debug signing.
|
||||
if (!project.hasProperty('cdvDebugSigningPropertiesFile')) {
|
||||
cdvDebugSigningPropertiesFile = null
|
||||
}
|
||||
// Set by build.js script.
|
||||
if (!project.hasProperty('cdvBuildArch')) {
|
||||
cdvBuildArch = null
|
||||
}
|
||||
|
||||
// Plugin gradle extensions can append to this to have code run at the end.
|
||||
cdvPluginPostBuildExtras = []
|
||||
}
|
||||
|
||||
// PLUGIN GRADLE EXTENSIONS START
|
||||
apply from: "../cordova-plugin-fingerprint-aio/gabinetedigital-build.gradle"
|
||||
apply from: "../cordova-plugin-mfp/gabinetedigital-build-extras.gradle"
|
||||
apply from: "../cordova-plugin-mfp-push/gabinetedigital-build-extras.gradle"
|
||||
// PLUGIN GRADLE EXTENSIONS END
|
||||
|
||||
def hasBuildExtras1 = file('build-extras.gradle').exists()
|
||||
if (hasBuildExtras1) {
|
||||
apply from: 'build-extras.gradle'
|
||||
}
|
||||
|
||||
def hasBuildExtras2 = file('../build-extras.gradle').exists()
|
||||
if (hasBuildExtras2) {
|
||||
apply from: '../build-extras.gradle'
|
||||
}
|
||||
|
||||
// Set property defaults after extension .gradle files.
|
||||
ext.cdvCompileSdkVersion = cdvCompileSdkVersion == null ? (
|
||||
defaultCompileSdkVersion == null
|
||||
? privateHelpers.getProjectTarget()
|
||||
: defaultCompileSdkVersion
|
||||
) : Integer.parseInt('' + cdvCompileSdkVersion);
|
||||
|
||||
if (ext.cdvBuildToolsVersion == null) {
|
||||
ext.cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools()
|
||||
//ext.cdvBuildToolsVersion = project.ext.defaultBuildToolsVersion
|
||||
}
|
||||
if (ext.cdvDebugSigningPropertiesFile == null && file('../debug-signing.properties').exists()) {
|
||||
ext.cdvDebugSigningPropertiesFile = '../debug-signing.properties'
|
||||
}
|
||||
if (ext.cdvReleaseSigningPropertiesFile == null && file('../release-signing.properties').exists()) {
|
||||
ext.cdvReleaseSigningPropertiesFile = '../release-signing.properties'
|
||||
}
|
||||
|
||||
// Cast to appropriate types.
|
||||
ext.cdvBuildMultipleApks = cdvBuildMultipleApks == null ? false : cdvBuildMultipleApks.toBoolean();
|
||||
ext.cdvVersionCodeForceAbiDigit = cdvVersionCodeForceAbiDigit == null ? false : cdvVersionCodeForceAbiDigit.toBoolean();
|
||||
|
||||
// minSdkVersion, maxSdkVersion and targetSdkVersion
|
||||
ext.cdvMinSdkVersion = cdvMinSdkVersion == null ? defaultMinSdkVersion : Integer.parseInt('' + cdvMinSdkVersion)
|
||||
if (cdvMaxSdkVersion != null) {
|
||||
ext.cdvMaxSdkVersion = Integer.parseInt('' + cdvMaxSdkVersion)
|
||||
}
|
||||
ext.cdvTargetSdkVersion = cdvTargetSdkVersion == null ? defaultTargetSdkVersion : Integer.parseInt('' + cdvTargetSdkVersion)
|
||||
|
||||
ext.cdvVersionCode = cdvVersionCode == null ? null : Integer.parseInt('' + cdvVersionCode)
|
||||
|
||||
def computeBuildTargetName(debugBuild) {
|
||||
def ret = 'assemble'
|
||||
if (cdvBuildMultipleApks && cdvBuildArch) {
|
||||
def arch = cdvBuildArch == 'arm' ? 'armv7' : cdvBuildArch
|
||||
ret += '' + arch.toUpperCase().charAt(0) + arch.substring(1);
|
||||
}
|
||||
return ret + (debugBuild ? 'Debug' : 'Release')
|
||||
}
|
||||
|
||||
// Make cdvBuild a task that depends on the debug/arch-sepecific task.
|
||||
task cdvBuildDebug
|
||||
cdvBuildDebug.dependsOn {
|
||||
return computeBuildTargetName(true)
|
||||
}
|
||||
|
||||
task cdvBuildRelease
|
||||
cdvBuildRelease.dependsOn {
|
||||
return computeBuildTargetName(false)
|
||||
}
|
||||
|
||||
task cdvPrintProps {
|
||||
doLast {
|
||||
println('cdvCompileSdkVersion=' + cdvCompileSdkVersion)
|
||||
println('cdvBuildToolsVersion=' + cdvBuildToolsVersion)
|
||||
println('cdvVersionCode=' + cdvVersionCode)
|
||||
println('cdvVersionCodeForceAbiDigit=' + cdvVersionCodeForceAbiDigit)
|
||||
println('cdvMinSdkVersion=' + cdvMinSdkVersion)
|
||||
println('cdvMaxSdkVersion=' + cdvMaxSdkVersion)
|
||||
println('cdvTargetSdkVersion=' + cdvTargetSdkVersion)
|
||||
println('cdvBuildMultipleApks=' + cdvBuildMultipleApks)
|
||||
println('cdvReleaseSigningPropertiesFile=' + cdvReleaseSigningPropertiesFile)
|
||||
println('cdvDebugSigningPropertiesFile=' + cdvDebugSigningPropertiesFile)
|
||||
println('cdvBuildArch=' + cdvBuildArch)
|
||||
println('computedVersionCode=' + android.defaultConfig.versionCode)
|
||||
android.productFlavors.each { flavor ->
|
||||
println('computed' + flavor.name.capitalize() + 'VersionCode=' + flavor.versionCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
versionCode cdvVersionCode ?: new BigInteger("" + privateHelpers.extractIntFromManifest("versionCode"))
|
||||
applicationId privateHelpers.extractStringFromManifest("package")
|
||||
|
||||
if (cdvMinSdkVersion != null) {
|
||||
minSdkVersion cdvMinSdkVersion
|
||||
}
|
||||
|
||||
if (cdvMaxSdkVersion != null) {
|
||||
maxSdkVersion cdvMaxSdkVersion
|
||||
}
|
||||
|
||||
if(cdvTargetSdkVersion != null) {
|
||||
targetSdkVersion cdvTargetSdkVersion
|
||||
}
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
abortOnError false;
|
||||
}
|
||||
|
||||
compileSdkVersion cdvCompileSdkVersion
|
||||
buildToolsVersion cdvBuildToolsVersion
|
||||
|
||||
// This code exists for Crosswalk and other Native APIs.
|
||||
// By default, we multiply the existing version code in the
|
||||
// Android Manifest by 10 and add a number for each architecture.
|
||||
// If you are not using Crosswalk or SQLite, you can
|
||||
// ignore this chunk of code, and your version codes will be respected.
|
||||
|
||||
if (Boolean.valueOf(cdvBuildMultipleApks)) {
|
||||
flavorDimensions "default"
|
||||
|
||||
productFlavors {
|
||||
armeabi {
|
||||
versionCode defaultConfig.versionCode*10 + 1
|
||||
ndk {
|
||||
abiFilters = ["armeabi"]
|
||||
}
|
||||
}
|
||||
armv7 {
|
||||
versionCode defaultConfig.versionCode*10 + 2
|
||||
ndk {
|
||||
abiFilters = ["armeabi-v7a"]
|
||||
}
|
||||
}
|
||||
arm64 {
|
||||
versionCode defaultConfig.versionCode*10 + 3
|
||||
ndk {
|
||||
abiFilters = ["arm64-v8a"]
|
||||
}
|
||||
}
|
||||
x86 {
|
||||
versionCode defaultConfig.versionCode*10 + 4
|
||||
ndk {
|
||||
abiFilters = ["x86"]
|
||||
}
|
||||
}
|
||||
x86_64 {
|
||||
versionCode defaultConfig.versionCode*10 + 5
|
||||
ndk {
|
||||
abiFilters = ["x86_64"]
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (Boolean.valueOf(cdvVersionCodeForceAbiDigit)) {
|
||||
// This provides compatibility to the default logic for versionCode before cordova-android 5.2.0
|
||||
defaultConfig {
|
||||
versionCode defaultConfig.versionCode*10
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
if (cdvReleaseSigningPropertiesFile) {
|
||||
signingConfigs {
|
||||
release {
|
||||
// These must be set or Gradle will complain (even if they are overridden).
|
||||
keyAlias = ""
|
||||
keyPassword = "__unset" // And these must be set to non-empty in order to have the signing step added to the task graph.
|
||||
storeFile = null
|
||||
storePassword = "__unset"
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
addSigningProps(cdvReleaseSigningPropertiesFile, signingConfigs.release)
|
||||
}
|
||||
|
||||
if (cdvDebugSigningPropertiesFile) {
|
||||
addSigningProps(cdvDebugSigningPropertiesFile, signingConfigs.debug)
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main.java.srcDirs += 'src/main/kotlin'
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* WARNING: Cordova Lib and platform scripts do management inside of this code here,
|
||||
* if you are adding the dependencies manually, do so outside the comments, otherwise
|
||||
* the Cordova tools will overwrite them
|
||||
*/
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: '*.jar')
|
||||
|
||||
if (cdvHelpers.getConfigPreference('GradlePluginKotlinEnabled', 'false').toBoolean()) {
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
}
|
||||
|
||||
// SUB-PROJECT DEPENDENCIES START
|
||||
implementation(project(path: ":CordovaLib"))
|
||||
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
||||
implementation "androidx.annotation:annotation:1.1.0"
|
||||
implementation "com.squareup.okhttp:okhttp-urlconnection:2+"
|
||||
implementation "com.google.firebase:firebase-messaging:20.0.0"
|
||||
implementation "androidx.appcompat:appcompat:1.1.0'"
|
||||
implementation "com.google.android.material:material:1.1.0"
|
||||
// SUB-PROJECT DEPENDENCIES END
|
||||
}
|
||||
|
||||
def promptForReleaseKeyPassword() {
|
||||
if (!cdvReleaseSigningPropertiesFile) {
|
||||
return;
|
||||
}
|
||||
if ('__unset'.equals(android.signingConfigs.release.storePassword)) {
|
||||
android.signingConfigs.release.storePassword = privateHelpers.promptForPassword('Enter key store password: ')
|
||||
}
|
||||
if ('__unset'.equals(android.signingConfigs.release.keyPassword)) {
|
||||
android.signingConfigs.release.keyPassword = privateHelpers.promptForPassword('Enter key password: ');
|
||||
}
|
||||
}
|
||||
|
||||
gradle.taskGraph.whenReady { taskGraph ->
|
||||
taskGraph.getAllTasks().each() { task ->
|
||||
if(['validateReleaseSigning', 'validateSigningRelease', 'validateSigningArmv7Release', 'validateSigningX76Release'].contains(task.name)) {
|
||||
promptForReleaseKeyPassword()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def addSigningProps(propsFilePath, signingConfig) {
|
||||
def propsFile = file(propsFilePath)
|
||||
def props = new Properties()
|
||||
propsFile.withReader { reader ->
|
||||
props.load(reader)
|
||||
}
|
||||
|
||||
def storeFile = new File(props.get('key.store') ?: privateHelpers.ensureValueExists(propsFilePath, props, 'storeFile'))
|
||||
if (!storeFile.isAbsolute()) {
|
||||
storeFile = RelativePath.parse(true, storeFile.toString()).getFile(propsFile.getParentFile())
|
||||
}
|
||||
if (!storeFile.exists()) {
|
||||
throw new FileNotFoundException('Keystore file does not exist: ' + storeFile.getAbsolutePath())
|
||||
}
|
||||
signingConfig.keyAlias = props.get('key.alias') ?: privateHelpers.ensureValueExists(propsFilePath, props, 'keyAlias')
|
||||
signingConfig.keyPassword = props.get('keyPassword', props.get('key.alias.password', signingConfig.keyPassword))
|
||||
signingConfig.storeFile = storeFile
|
||||
signingConfig.storePassword = props.get('storePassword', props.get('key.store.password', signingConfig.storePassword))
|
||||
def storeType = props.get('storeType', props.get('key.store.type', ''))
|
||||
if (!storeType) {
|
||||
def filename = storeFile.getName().toLowerCase();
|
||||
if (filename.endsWith('.p12') || filename.endsWith('.pfx')) {
|
||||
storeType = 'pkcs12'
|
||||
} else {
|
||||
storeType = signingConfig.storeType // "jks"
|
||||
}
|
||||
}
|
||||
signingConfig.storeType = storeType
|
||||
}
|
||||
|
||||
for (def func : cdvPluginPostBuildExtras) {
|
||||
func()
|
||||
}
|
||||
|
||||
// This can be defined within build-extras.gradle as:
|
||||
// ext.postBuildExtras = { ... code here ... }
|
||||
if (hasProperty('postBuildExtras')) {
|
||||
postBuildExtras()
|
||||
}
|
||||
|
||||
if (cdvHelpers.getConfigPreference('GradlePluginGoogleServicesEnabled', 'false').toBoolean()) {
|
||||
apply plugin: 'com.google.gms.google-services'
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "800733765231",
|
||||
"firebase_url": "https://gabinete-digital-2020.firebaseio.com",
|
||||
"project_id": "gabinete-digital-2020",
|
||||
"storage_bucket": "gabinete-digital-2020.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:800733765231:android:e7ffc0b310037d9f13779a",
|
||||
"android_client_info": {
|
||||
"package_name": "com.gpr.gabinetedigital"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "800733765231-92oa7ib62ob0pkouphb5i5sp01vkalid.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyD0pfW45DLoW6mqvZRklJdbfSTskW22Fok"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "800733765231-92oa7ib62ob0pkouphb5i5sp01vkalid.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
/* Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
ext.repos = {
|
||||
mavenCentral()
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "800733765231",
|
||||
"firebase_url": "https://gabinete-digital-2020.firebaseio.com",
|
||||
"project_id": "gabinete-digital-2020",
|
||||
"storage_bucket": "gabinete-digital-2020.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:800733765231:android:e7ffc0b310037d9f13779a",
|
||||
"android_client_info": {
|
||||
"package_name": "com.gpr.gabinetedigital"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "800733765231-92oa7ib62ob0pkouphb5i5sp01vkalid.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyD0pfW45DLoW6mqvZRklJdbfSTskW22Fok"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "800733765231-92oa7ib62ob0pkouphb5i5sp01vkalid.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" package="com.gpr.gabinetedigital" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<application android:fullBackupContent="@xml/mfp_backup_rules" android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:name="com.ibm.MFPApplication" android:networkSecurityConfig="@xml/network_security_config" android:supportsRtl="true">
|
||||
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
|
||||
<intent-filter android:label="@string/launcher_name">
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="com.gpr.gabinetedigital.IBMPushNotification" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<provider android:authorities="${applicationId}.cordova.plugin.camera.provider" android:exported="false" android:grantUriPermissions="true" android:name="org.apache.cordova.camera.FileProvider">
|
||||
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/camera_provider_paths" />
|
||||
</provider>
|
||||
<activity android:exported="true" android:name="de.niklasmerz.cordova.biometric.BiometricActivity" android:theme="@style/TransparentTheme" />
|
||||
<activity android:name="com.worklight.wlclient.ui.UIActivity" />
|
||||
<activity android:name="com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushNotificationHandler" android:theme="@android:style/Theme.NoDisplay" />
|
||||
<service android:exported="false" android:name="com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushNewIntentService">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
<service android:exported="true" android:name="com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPush">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
</application>
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<permission android:name="com.gpr.gabinetedigital.permission.C2D_MESSAGE" android:protectionLevel="signature" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
||||
</manifest>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
wlServerProtocol = http
|
||||
wlServerHost = gpr-dev-10.gabinetedigital.local
|
||||
wlServerPort = 9080
|
||||
wlServerContext = /mfp/
|
||||
testWebResourcesChecksum = false
|
||||
ignoredFileExtensions = png, jpg, jpeg, gif, mp4, mp3
|
||||
wlPlatformVersion = 8.0.0.00-20210308-063916
|
||||
wlSecureDirectUpdatePublicKey =
|
||||
languagePreferences = en
|
||||
wlBuildId = 8.0.0.00-20210308-063916
|
||||
serverUri =
|
||||
APIProxyURL = /adapters/MobileAPIProxy
|
||||
sdkProtocolVersion = 2
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1174],{71174:function(e,n,t){"use strict";t.r(n),t.d(n,{DiscartExpedientModalPageModule:function(){return p}});var i=t(38583),c=t(3679),r=t(35957),o=t(39895),a=t(45896),u=t(37716);const s=[{path:"",component:a.Q}];let l=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=u.oAB({type:e}),e.\u0275inj=u.cJS({imports:[[o.Bz.forChild(s)],o.Bz]}),e})(),p=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=u.oAB({type:e}),e.\u0275inj=u.cJS({imports:[[i.ez,c.u5,r.Pc,l]]}),e})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1174],{71174:function(t,i,e){"use strict";e.r(i),e.d(i,{DiscartExpedientModalPageModule:function(){return d}});var o,c=e(38583),a=e(3679),r=e(35957),u=e(39895),f=e(45896),s=e(37716),p=[{path:"",component:f.Q}],l=function(){var t=function t(){n(this,t)};return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=s.oAB({type:t}),t.\u0275inj=s.cJS({imports:[[u.Bz.forChild(p)],u.Bz]}),t}(),d=((o=function t(){n(this,t)}).\u0275fac=function(n){return new(n||o)},o.\u0275mod=s.oAB({type:o}),o.\u0275inj=s.cJS({imports:[[c.ez,a.u5,r.Pc,l]]}),o)}}])}();
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1296],{81296:function(e,t,i){"use strict";i.r(t),i.d(t,{KEYBOARD_DID_CLOSE:function(){return o},KEYBOARD_DID_OPEN:function(){return n},copyVisualViewport:function(){return D},keyboardDidClose:function(){return b},keyboardDidOpen:function(){return p},keyboardDidResize:function(){return g},resetKeyboardAssist:function(){return d},setKeyboardClose:function(){return f},setKeyboardOpen:function(){return c},startKeyboardAssist:function(){return u},trackViewportChanges:function(){return y}});const n="ionKeyboardDidShow",o="ionKeyboardDidHide";let r={},s={},a=!1;const d=()=>{r={},s={},a=!1},u=e=>{h(e),e.visualViewport&&(s=D(e.visualViewport),e.visualViewport.onresize=()=>{y(e),p()||g(e)?c(e):b(e)&&f(e)})},h=e=>{e.addEventListener("keyboardDidShow",t=>c(e,t)),e.addEventListener("keyboardDidHide",()=>f(e))},c=(e,t)=>{l(e,t),a=!0},f=e=>{w(e),a=!1},p=()=>!a&&r.width===s.width&&(r.height-s.height)*s.scale>150,g=e=>a&&!b(e),b=e=>a&&s.height===e.innerHeight,l=(e,t)=>{const i=new CustomEvent(n,{detail:{keyboardHeight:t?t.keyboardHeight:e.innerHeight-s.height}});e.dispatchEvent(i)},w=e=>{const t=new CustomEvent(o);e.dispatchEvent(t)},y=e=>{r=Object.assign({},s),s=D(e.visualViewport)},D=e=>({width:Math.round(e.width),height:Math.round(e.height),offsetTop:e.offsetTop,offsetLeft:e.offsetLeft,pageTop:e.pageTop,pageLeft:e.pageLeft,scale:e.scale})}}]);
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1296],{81296:function(t,e,n){"use strict";n.r(e),n.d(e,{KEYBOARD_DID_CLOSE:function(){return r},KEYBOARD_DID_OPEN:function(){return i},copyVisualViewport:function(){return v},keyboardDidClose:function(){return b},keyboardDidOpen:function(){return p},keyboardDidResize:function(){return g},resetKeyboardAssist:function(){return f},setKeyboardClose:function(){return h},setKeyboardOpen:function(){return d},startKeyboardAssist:function(){return s},trackViewportChanges:function(){return y}});var i="ionKeyboardDidShow",r="ionKeyboardDidHide",o={},u={},a=!1,f=function(){o={},u={},a=!1},s=function(t){c(t),t.visualViewport&&(u=v(t.visualViewport),t.visualViewport.onresize=function(){y(t),p()||g(t)?d(t):b(t)&&h(t)})},c=function(t){t.addEventListener("keyboardDidShow",function(e){return d(t,e)}),t.addEventListener("keyboardDidHide",function(){return h(t)})},d=function(t,e){w(t,e),a=!0},h=function(t){l(t),a=!1},p=function(){return!a&&o.width===u.width&&(o.height-u.height)*u.scale>150},g=function(t){return a&&!b(t)},b=function(t){return a&&u.height===t.innerHeight},w=function(t,e){var n=new CustomEvent(i,{detail:{keyboardHeight:e?e.keyboardHeight:t.innerHeight-u.height}});t.dispatchEvent(n)},l=function(t){var e=new CustomEvent(r);t.dispatchEvent(e)},y=function(t){o=Object.assign({},u),u=v(t.visualViewport)},v=function(t){return{width:Math.round(t.width),height:Math.round(t.height),offsetTop:t.offsetTop,offsetLeft:t.offsetLeft,pageTop:t.pageTop,pageLeft:t.pageLeft,scale:t.scale}}}}]);
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1355],{41355:function(e,t,n){"use strict";n.r(t),n.d(t,{startTapClick:function(){return i}});var o=n(13772);const i=e=>{let t,n,i,v,f=10*-u,p=0;const L=e.getBoolean("animated",!0)&&e.getBoolean("rippleEffect",!0),m=new WeakMap,h=e=>{f=(0,o.n)(e),w(e)},E=()=>{clearTimeout(v),v=void 0,n&&(S(!1),n=void 0)},g=e=>{n||void 0!==t&&null!==t.parentElement||(t=void 0,b(s(e),e))},w=e=>{b(void 0,e)},b=(e,t)=>{if(e&&e===n)return;clearTimeout(v),v=void 0;const{x:i,y:s}=(0,o.p)(t);if(n){if(m.has(n))throw new Error("internal error");n.classList.contains(c)||k(n,i,s),S(!0)}if(e){const t=m.get(e);t&&(clearTimeout(t),m.delete(e));const n=a(e)?0:d;e.classList.remove(c),v=setTimeout(()=>{k(e,i,s),v=void 0},n)}n=e},k=(e,t,n)=>{p=Date.now(),e.classList.add(c);const o=L&&r(e);o&&o.addRipple&&(T(),i=o.addRipple(t,n))},T=()=>{void 0!==i&&(i.then(e=>e()),i=void 0)},S=e=>{T();const t=n;if(!t)return;const o=l-Date.now()+p;if(e&&o>0&&!a(t)){const e=setTimeout(()=>{t.classList.remove(c),m.delete(t)},l);m.set(t,e)}else t.classList.remove(c)},C=document;C.addEventListener("ionScrollStart",e=>{t=e.target,E()}),C.addEventListener("ionScrollEnd",()=>{t=void 0}),C.addEventListener("ionGestureCaptured",E),C.addEventListener("touchstart",e=>{f=(0,o.n)(e),g(e)},!0),C.addEventListener("touchcancel",h,!0),C.addEventListener("touchend",h,!0),C.addEventListener("mousedown",e=>{const t=(0,o.n)(e)-u;f<t&&g(e)},!0),C.addEventListener("mouseup",e=>{const t=(0,o.n)(e)-u;f<t&&w(e)},!0)},s=e=>{if(!e.composedPath)return e.target.closest(".ion-activatable");{const t=e.composedPath();for(let e=0;e<t.length-2;e++){const n=t[e];if(n.classList&&n.classList.contains("ion-activatable"))return n}}},a=e=>e.classList.contains("ion-activatable-instant"),r=e=>{if(e.shadowRoot){const t=e.shadowRoot.querySelector("ion-ripple-effect");if(t)return t}return e.querySelector("ion-ripple-effect")},c="ion-activated",d=200,l=200,u=2500}}]);
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1355],{41355:function(t,e,n){"use strict";n.r(e),n.d(e,{startTapClick:function(){return o}});var i=n(13772),o=function(t){var e,n,o,f,v=10*-l,p=0,L=t.getBoolean("animated",!0)&&t.getBoolean("rippleEffect",!0),m=new WeakMap,h=function(t){v=(0,i.n)(t),w(t)},E=function(){clearTimeout(f),f=void 0,n&&(S(!1),n=void 0)},g=function(t){n||void 0!==e&&null!==e.parentElement||(e=void 0,b(a(t),t))},w=function(t){b(void 0,t)},b=function(t,e){if(!t||t!==n){clearTimeout(f),f=void 0;var o=(0,i.p)(e),a=o.x,c=o.y;if(n){if(m.has(n))throw new Error("internal error");n.classList.contains(s)||k(n,a,c),S(!0)}if(t){var d=m.get(t);d&&(clearTimeout(d),m.delete(t));var l=r(t)?0:u;t.classList.remove(s),f=setTimeout(function(){k(t,a,c),f=void 0},l)}n=t}},k=function(t,e,n){p=Date.now(),t.classList.add(s);var i=L&&c(t);i&&i.addRipple&&(T(),o=i.addRipple(e,n))},T=function(){void 0!==o&&(o.then(function(t){return t()}),o=void 0)},S=function(t){T();var e=n;if(e){var i=d-Date.now()+p;if(t&&i>0&&!r(e)){var o=setTimeout(function(){e.classList.remove(s),m.delete(e)},d);m.set(e,o)}else e.classList.remove(s)}},C=document;C.addEventListener("ionScrollStart",function(t){e=t.target,E()}),C.addEventListener("ionScrollEnd",function(){e=void 0}),C.addEventListener("ionGestureCaptured",E),C.addEventListener("touchstart",function(t){v=(0,i.n)(t),g(t)},!0),C.addEventListener("touchcancel",h,!0),C.addEventListener("touchend",h,!0),C.addEventListener("mousedown",function(t){var e=(0,i.n)(t)-l;v<e&&g(t)},!0),C.addEventListener("mouseup",function(t){var e=(0,i.n)(t)-l;v<e&&w(t)},!0)},a=function(t){if(!t.composedPath)return t.target.closest(".ion-activatable");for(var e=t.composedPath(),n=0;n<e.length-2;n++){var i=e[n];if(i.classList&&i.classList.contains("ion-activatable"))return i}},r=function(t){return t.classList.contains("ion-activatable-instant")},c=function(t){if(t.shadowRoot){var e=t.shadowRoot.querySelector("ion-ripple-effect");if(e)return e}return t.querySelector("ion-ripple-effect")},s="ion-activated",u=200,d=200,l=2500}}]);
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1372],{1372:function(e,n,t){"use strict";t.r(n),t.d(n,{NewEventPageModule:function(){return l}});var c=t(38583),i=t(3679),r=t(35957),o=t(39895),u=t(56410),a=t(37716);const s=[{path:"",component:u.h}];let f=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[o.Bz.forChild(s)],o.Bz]}),e})(),l=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[c.ez,i.u5,r.Pc,f]]}),e})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1372],{1372:function(t,e,i){"use strict";i.r(e),i.d(e,{NewEventPageModule:function(){return l}});var o,c=i(38583),u=i(3679),a=i(35957),r=i(39895),f=i(56410),s=i(37716),p=[{path:"",component:f.h}],h=function(){var t=function t(){n(this,t)};return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=s.oAB({type:t}),t.\u0275inj=s.cJS({imports:[[r.Bz.forChild(p)],r.Bz]}),t}(),l=((o=function t(){n(this,t)}).\u0275fac=function(n){return new(n||o)},o.\u0275mod=s.oAB({type:o}),o.\u0275inj=s.cJS({imports:[[c.ez,u.u5,a.Pc,h]]}),o)}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[139],{60139:function(t,e,s){"use strict";s.r(e),s.d(e,{scopeCss:function(){return S}});const o=")(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)",c=new RegExp("(-shadowcsshost"+o,"gim"),r=new RegExp("(-shadowcsscontext"+o,"gim"),n=new RegExp("(-shadowcssslotted"+o,"gim"),l=/-shadowcsshost-no-combinator([^\s]*)/,a=[/::shadow/g,/::content/g],i=/-shadowcsshost/gim,h=/:host/gim,p=/::slotted/gim,d=/:host-context/gim,u=/\/\*\s*[\s\S]*?\*\//g,g=/\/\*\s*#\s*source(Mapping)?URL=[\s\S]+?\*\//g,m=/(\s*)([^;\{\}]+?)(\s*)((?:{%BLOCK%}?\s*;?)|(?:\s*;))/g,w=/([{}])/g,f=(t,e)=>{const s=x(t);let o=0;return s.escapedString.replace(m,(...t)=>{const c=t[2];let r="",n=t[4],l="";n&&n.startsWith("{%BLOCK%")&&(r=s.blocks[o++],n=n.substring("%BLOCK%".length+1),l="{");const a=e({selector:c,content:r});return`${t[1]}${a.selector}${t[3]}${l}${a.content}${n}`})},x=t=>{const e=t.split(w),s=[],o=[];let c=0,r=[];for(let n=0;n<e.length;n++){const t=e[n];"}"===t&&c--,c>0?r.push(t):(r.length>0&&(o.push(r.join("")),s.push("%BLOCK%"),r=[]),s.push(t)),"{"===t&&c++}return r.length>0&&(o.push(r.join("")),s.push("%BLOCK%")),{escapedString:s.join(""),blocks:o}},$=(t,e,s)=>t.replace(e,(...t)=>{if(t[2]){const e=t[2].split(","),o=[];for(let c=0;c<e.length;c++){const r=e[c].trim();if(!r)break;o.push(s("-shadowcsshost-no-combinator",r,t[3]))}return o.join(",")}return"-shadowcsshost-no-combinator"+t[3]}),_=(t,e,s)=>t+e.replace("-shadowcsshost","")+s,b=(t,e,s)=>e.indexOf("-shadowcsshost")>-1?_(t,e,s):t+e+s+", "+e+" "+t+s,O=(t,e,s,o,c)=>f(t,t=>{let c=t.selector,r=t.content;return"@"!==t.selector[0]?c=((t,e,s,o)=>t.split(",").map(t=>o&&t.indexOf("."+o)>-1?t.trim():((t,e)=>!(t=>(t=t.replace(/\[/g,"\\[").replace(/\]/g,"\\]"),new RegExp("^("+t+")([>\\s~+[.,{:][\\s\\S]*)?$","m")))(e).test(t))(t,e)?((t,e,s)=>{const o="."+(e=e.replace(/\[is=([^\]]*)\]/g,(t,...e)=>e[0])),c=t=>{let c=t.trim();if(!c)return"";if(t.indexOf("-shadowcsshost-no-combinator")>-1)c=((t,e,s)=>{if(i.lastIndex=0,i.test(t)){const e=`.${s}`;return t.replace(l,(t,s)=>s.replace(/([^:]*)(:*)(.*)/,(t,s,o,c)=>s+e+o+c)).replace(i,e+" ")}return e+" "+t})(t,e,s);else{const e=t.replace(i,"");if(e.length>0){const t=e.match(/([^:]*)(:*)(.*)/);t&&(c=t[1]+o+t[2]+t[3])}}return c},r=(t=>{const e=[];let s,o=0;return s=(t=t.replace(/(\[[^\]]*\])/g,(t,s)=>{const c=`__ph-${o}__`;return e.push(s),o++,c})).replace(/(:nth-[-\w]+)(\([^)]+\))/g,(t,s,c)=>{const r=`__ph-${o}__`;return e.push(c),o++,s+r}),{content:s,placeholders:e}})(t);let n,a="",h=0;const p=/( |>|\+|~(?!=))\s*/g;let d=!((t=r.content).indexOf("-shadowcsshost-no-combinator")>-1);for(;null!==(n=p.exec(t));){const e=n[1],s=t.slice(h,n.index).trim();d=d||s.indexOf("-shadowcsshost-no-combinator")>-1,a+=`${d?c(s):s} ${e} `,h=p.lastIndex}const u=t.substring(h);return d=d||u.indexOf("-shadowcsshost-no-combinator")>-1,a+=d?c(u):u,g=r.placeholders,a.replace(/__ph-(\d+)__/g,(t,e)=>g[+e]);var g})(t,e,s).trim():t.trim()).join(", "))(t.selector,e,s,o):(t.selector.startsWith("@media")||t.selector.startsWith("@supports")||t.selector.startsWith("@page")||t.selector.startsWith("@document"))&&(r=O(t.content,e,s,o)),{selector:c.replace(/\s{2,}/g," ").trim(),content:r}}),S=(t,e,s)=>{const o=e+"-h",l=e+"-s",i=t.match(g)||[];t=t.replace(u,"");const m=[];if(s){const e=t=>{const e=`/*!@___${m.length}___*/`;return m.push({placeholder:e,comment:`/*!@${t.selector}*/`}),t.selector=e+t.selector,t};t=f(t,t=>"@"!==t.selector[0]?e(t):t.selector.startsWith("@media")||t.selector.startsWith("@supports")||t.selector.startsWith("@page")||t.selector.startsWith("@document")?(t.content=f(t.content,e),t):t)}const w=((t,e,s,o,l)=>{const i=((t,e)=>{const s="."+e+" > ",o=[];return t=t.replace(n,(...t)=>{if(t[2]){const e=t[2].trim(),c=s+e+t[3];let r="";for(let s=t[4]-1;s>=0;s--){const e=t[5][s];if("}"===e||","===e)break;r=e+r}const n=r+c,l=`${r.trimRight()}${c.trim()}`;return n.trim()!==l.trim()&&o.push({orgSelector:n,updatedSelector:`${l}, ${n}`}),c}return"-shadowcsshost-no-combinator"+t[3]}),{selectors:o,cssText:t}})(t=(t=>$(t,r,b))(t=(t=>$(t,c,_))(t=t.replace(d,"-shadowcsscontext").replace(h,"-shadowcsshost").replace(p,"-shadowcssslotted"))),o);return t=(t=>a.reduce((t,e)=>t.replace(e," "),t))(t=i.cssText),e&&(t=O(t,e,s,o)),{cssText:(t=(t=t.replace(/-shadowcsshost-no-combinator/g,`.${s}`)).replace(/>\s*\*\s+([^{, ]+)/gm," $1 ")).trim(),slottedSelectors:i.selectors}})(t,e,o,l);return t=[w.cssText,...i].join("\n"),s&&m.forEach(({placeholder:e,comment:s})=>{t=t.replace(e,s)}),w.slottedSelectors.forEach(e=>{t=t.replace(e.orgSelector,e.updatedSelector)}),t}}}]);
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1450,8621,676,7284,8347,5361,9492],{25970:function(e,t,s){"use strict";s.d(t,{c:function(){return h}});var r=s(64762),a=s(37716),i=s(35957);let h=(()=>{class e{constructor(e,t){this.alertController=e,this.animationController=t}presentAlert(e){return(0,r.mG)(this,void 0,void 0,function*(){const t=yield this.alertController.create({cssClass:"my-custom-class",header:"Mensagem do sistema",message:e,buttons:["OK"]});yield t.present()})}presentErrorMessage(e){return(0,r.mG)(this,void 0,void 0,function*(){const t=yield this.alertController.create({cssClass:"my-custom-class",header:"Mensagem de erro",message:e});yield t.present(),setTimeout(()=>{t.dismiss()},2500)})}}return e.\u0275fac=function(t){return new(t||e)(a.LFG(i.Br),a.LFG(i.vB))},e.\u0275prov=a.Yz7({token:e,factory:e.\u0275fac,providedIn:"root"}),e})()},28621:function(e,t,s){"use strict";s.d(t,{$:function(){return n}});var r=s(91841),a=s(92340),i=s(37716),h=s(37556);let n=(()=>{class e{constructor(e,t){this.http=e,this.authheader={},this.loggeduser=t.ValidatedUser,this.headers=new r.WM,this.headers=this.headers.set("Authorization",this.loggeduser.BasicAuthKey)}GetTasksList(e,t){const s=a.N.apiURL+"tasks/List";let i=new r.LE;return i=i.set("ProcessName",e),i=i.set("OnlyCount",t.toString()),this.http.get(`${s}`,{headers:this.headers,params:i})}GetTask(e){const t=a.N.apiURL+"Tasks/FindTask";let s=new r.LE;return s=s.set("serialNumber",e),this.http.get(`${t}`,{headers:this.headers,params:s})}SetTaskToPending(e){const t=a.N.apiURL+"Tasks/SetTaskPending";let s=new r.LE;return s=s.set("serialNumber",e),this.http.post(`${t}`,"",{headers:this.headers,params:s})}GetPendingTasks(e){const t=a.N.apiURL+"Tasks/ListPending";let s=new r.LE;return s=s.set("onlyCount",e.toString()),this.http.get(`${t}`,{headers:this.headers,params:s})}DelegateTask(e){return this.http.post(a.N.apiURL+"Tasks/DelegateTask",e,{headers:this.headers})}GetTaskParticipants(e){const t=a.N.apiURL+"Processes/GetUsersInDispash";let s=new r.LE;return s=s.set("folderId",e),this.http.get(`${t}`,{headers:this.headers,params:s})}FindTaskDocId(e){const t=a.N.apiURL+"Tasks/FindExpedienteDocId";let s=new r.LE;return s=s.set("serialNumber",e),this.http.get(`${t}`,{headers:this.headers,params:s})}GetMDOficialTasks(){return this.http.get(a.N.apiURL+"tasks/GetMDOficialTasks",{headers:this.headers})}GetMDPersonalTasks(){return this.http.get(a.N.apiURL+"tasks/GetMDPersonalTasks",{headers:this.headers})}GetToApprovedEvents(e,t){const s=a.N.apiURL+"Tasks/ListByCategory";let i=new r.LE;return i=i.set("categoryname",e),i=i.set("onlyCount",t),this.http.get(`${s}`,{headers:this.headers,params:i})}PostTaskAction(e){return this.http.post(a.N.apiURL+"Tasks/Complete",e,{headers:this.headers})}CompleteTask(e){return this.http.post(a.N.apiURL+"Tasks/CompleteTask",e,{headers:this.headers})}CompleteParecerPrTask(e){return this.http.post(a.N.apiURL+"Tasks/CompleteTaskParecerPr",e,{headers:this.headers})}UpdateTaskStatus(e){const t=a.N.apiURL+"Tasks/UpdateTaskStatus";let s=new r.LE;return s=s.set("FolderId",e),this.http.post(`${t}`,"",{headers:this.headers,params:s})}GetDocumentUrl(e,t){const s=a.N.apiURL+"ecm/document/viewrequestshort";let i=new r.LE;return i=i.set("DocId",e),i=i.set("applicationid",t),this.http.get(`${s}`,{headers:this.headers,params:i})}postDespatcho(e){return this.http.post(a.N.apiURL+"Processes/CreateDispatch",e,{headers:this.headers})}postDespatchoPr(e){return this.http.post(a.N.apiURL+"Processes/CreateDispatchPR",e,{headers:this.headers})}postParecer(e){return this.http.post(a.N.apiURL+"Processes/CreateParecer",e,{headers:this.headers})}postParecerPr(e){return this.http.post(a.N.apiURL+"Processes/CreateParecerPR",e,{headers:this.headers})}postDeferimento(e){return this.http.post(a.N.apiURL+"Processes/CreateDeferimento",e,{headers:this.headers})}GetActionsList(){const e=a.N.apiURL+"presidentialActions";let t={headers:this.headers};return console.log(t),this.http.get(`${e}`,t)}GetSubjectType(){return this.http.get(a.N.apiURL+"ecm/SubjectType",{headers:this.headers})}GetDocumentDetails(e,t){const s=a.N.apiURL+"search/documents";let i=new r.LE;return i=i.set("docId",e),i=i.set("applicationId",t),this.http.get(`${s}`,{headers:this.headers,params:i})}documentSetUpMeeting(e){let t=a.N.apiURL+"Processes/CallMeeting";return t=t.replace("/V4/","/V5/"),this.http.post(`${t}`,e,{headers:this.headers})}}return e.\u0275fac=function(t){return new(t||e)(i.LFG(r.eN),i.LFG(h.e))},e.\u0275prov=i.Yz7({token:e,factory:e.\u0275fac,providedIn:"root"}),e})()},44940:function(e){e.exports={removeDuplicate:function(e){return[...new Set(e.map(JSON.stringify))].map(JSON.parse)}}}}]);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1491],{1491:function(t,e,n){"use strict";n.d(e,{M:function(){return s}});var c=n(37716),i=n(35957);let s=(()=>{class t{constructor(){}ngOnInit(){}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=c.Xpm({type:t,selectors:[["app-empty-container"]],inputs:{texto:"texto"},decls:4,vars:1,consts:[[1,"center","height-100"]],template:function(t,e){1&t&&(c.TgZ(0,"ion-content"),c.TgZ(1,"div",0),c.TgZ(2,"p"),c._uU(3),c.qZA(),c.qZA(),c.qZA()),2&t&&(c.xp6(3),c.Oqu(e.texto))},directives:[i.W2],styles:[".center[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center}"]}),t})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,e){for(var t=0;t<e.length;t++){var i=e[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(n,i.key,i)}}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1491],{1491:function(e,t,i){"use strict";i.d(t,{M:function(){return a}});var c=i(37716),r=i(35957),a=function(){var e=function(){function e(){!function(n,e){if(!(n instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e)}var t,i,c;return t=e,(i=[{key:"ngOnInit",value:function(){}}])&&n(t.prototype,i),c&&n(t,c),e}();return e.\u0275fac=function(n){return new(n||e)},e.\u0275cmp=c.Xpm({type:e,selectors:[["app-empty-container"]],inputs:{texto:"texto"},decls:4,vars:1,consts:[[1,"center","height-100"]],template:function(n,e){1&n&&(c.TgZ(0,"ion-content"),c.TgZ(1,"div",0),c.TgZ(2,"p"),c._uU(3),c.qZA(),c.qZA(),c.qZA()),2&n&&(c.xp6(3),c.Oqu(e.texto))},directives:[r.W2],styles:[".center[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center}"]}),e}()}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1544],{81544:function(e,n,t){"use strict";t.r(n),t.d(n,{OptsExpedientePageModule:function(){return f}});var i=t(38583),c=t(3679),r=t(35957),o=t(39895),u=t(23066),a=t(37716);const s=[{path:"",component:u.M}];let p=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[o.Bz.forChild(s)],o.Bz]}),e})(),f=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[i.ez,c.u5,r.Pc,p]]}),e})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1544],{81544:function(t,e,i){"use strict";i.r(e),i.d(e,{OptsExpedientePageModule:function(){return d}});var o,c=i(38583),u=i(3679),a=i(35957),r=i(39895),f=i(23066),s=i(37716),p=[{path:"",component:f.M}],l=function(){var t=function t(){n(this,t)};return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=s.oAB({type:t}),t.\u0275inj=s.cJS({imports:[[r.Bz.forChild(p)],r.Bz]}),t}(),d=((o=function t(){n(this,t)}).\u0275fac=function(n){return new(n||o)},o.\u0275mod=s.oAB({type:o}),o.\u0275inj=s.cJS({imports:[[c.ez,u.u5,a.Pc,l]]}),o)}}])}();
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1602],{51602:function(t,n,i){"use strict";i.r(n),i.d(n,{ion_ripple_effect:function(){return o}});var a=i(31667),e=i(36177);const o=class{constructor(t){(0,a.r)(this,t),this.type="bounded"}async addRipple(t,n){return new Promise(i=>{(0,a.f)(()=>{const e=this.el.getBoundingClientRect(),o=e.width,c=e.height,m=Math.sqrt(o*o+c*c),f=Math.max(c,o),d=this.unbounded?f:m+s,u=Math.floor(f*l),p=d/u;let b=t-e.left,h=n-e.top;this.unbounded&&(b=.5*o,h=.5*c);const w=b-.5*u,k=h-.5*u,g=.5*o-b,y=.5*c-h;(0,a.c)(()=>{const t=document.createElement("div");t.classList.add("ripple-effect");const n=t.style;n.top=k+"px",n.left=w+"px",n.width=n.height=u+"px",n.setProperty("--final-scale",`${p}`),n.setProperty("--translate-end",`${g}px, ${y}px`),(this.el.shadowRoot||this.el).appendChild(t),setTimeout(()=>{i(()=>{r(t)})},325)})})})}get unbounded(){return"unbounded"===this.type}render(){const t=(0,e.b)(this);return(0,a.h)(a.H,{role:"presentation",class:{[t]:!0,unbounded:this.unbounded}})}get el(){return(0,a.i)(this)}},r=t=>{t.classList.add("fade-out"),setTimeout(()=>{t.remove()},200)},s=10,l=.5;o.style=":host{left:0;right:0;top:0;bottom:0;position:absolute;contain:strict;pointer-events:none}:host(.unbounded){contain:layout size style}.ripple-effect{border-radius:50%;position:absolute;background-color:currentColor;color:inherit;contain:strict;opacity:0;-webkit-animation:225ms rippleAnimation forwards, 75ms fadeInAnimation forwards;animation:225ms rippleAnimation forwards, 75ms fadeInAnimation forwards;will-change:transform, opacity;pointer-events:none}.fade-out{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1));-webkit-animation:150ms fadeOutAnimation forwards;animation:150ms fadeOutAnimation forwards}@-webkit-keyframes rippleAnimation{from{-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1))}}@keyframes rippleAnimation{from{-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1))}}@-webkit-keyframes fadeInAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:0.16}}@keyframes fadeInAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:0.16}}@-webkit-keyframes fadeOutAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0.16}to{opacity:0}}@keyframes fadeOutAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0.16}to{opacity:0}}"}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t,e){return t in n?Object.defineProperty(n,t,{value:e,enumerable:!0,configurable:!0,writable:!0}):n[t]=e,n}function t(n,t,e,i,a,r,o){try{var s=n[r](o),c=s.value}catch(f){return void e(f)}s.done?t(c):Promise.resolve(c).then(i,a)}function e(n,t){for(var e=0;e<t.length;e++){var i=t[e];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(n,i.key,i)}}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1602],{51602:function(i,a,r){"use strict";r.r(a),r.d(a,{ion_ripple_effect:function(){return c}});var o=r(31667),s=r(36177),c=function(){function i(n){!function(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),(0,o.r)(this,n),this.type="bounded"}var a,r,c,m,d;return a=i,(r=[{key:"addRipple",value:(m=regeneratorRuntime.mark(function n(t,e){var i=this;return regeneratorRuntime.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.abrupt("return",new Promise(function(n){(0,o.f)(function(){var a=i.el.getBoundingClientRect(),r=a.width,s=a.height,c=Math.sqrt(r*r+s*s),m=Math.max(s,r),d=i.unbounded?m:c+u,p=Math.floor(m*l),b=d/p,v=t-a.left,w=e-a.top;i.unbounded&&(v=.5*r,w=.5*s);var h=v-.5*p,y=w-.5*p,k=.5*r-v,g=.5*s-w;(0,o.c)(function(){var t=document.createElement("div");t.classList.add("ripple-effect");var e=t.style;e.top=y+"px",e.left=h+"px",e.width=e.height=p+"px",e.setProperty("--final-scale","".concat(b)),e.setProperty("--translate-end","".concat(k,"px, ").concat(g,"px")),(i.el.shadowRoot||i.el).appendChild(t),setTimeout(function(){n(function(){f(t)})},325)})})}));case 1:case"end":return n.stop()}},n)}),d=function(){var n=this,e=arguments;return new Promise(function(i,a){var r=m.apply(n,e);function o(n){t(r,i,a,o,s,"next",n)}function s(n){t(r,i,a,o,s,"throw",n)}o(void 0)})},function(n,t){return d.apply(this,arguments)})},{key:"unbounded",get:function(){return"unbounded"===this.type}},{key:"render",value:function(){var t,e=(0,s.b)(this);return(0,o.h)(o.H,{role:"presentation",class:(t={},n(t,e,!0),n(t,"unbounded",this.unbounded),t)})}},{key:"el",get:function(){return(0,o.i)(this)}}])&&e(a.prototype,r),c&&e(a,c),i}(),f=function(n){n.classList.add("fade-out"),setTimeout(function(){n.remove()},200)},u=10,l=.5;c.style=":host{left:0;right:0;top:0;bottom:0;position:absolute;contain:strict;pointer-events:none}:host(.unbounded){contain:layout size style}.ripple-effect{border-radius:50%;position:absolute;background-color:currentColor;color:inherit;contain:strict;opacity:0;-webkit-animation:225ms rippleAnimation forwards, 75ms fadeInAnimation forwards;animation:225ms rippleAnimation forwards, 75ms fadeInAnimation forwards;will-change:transform, opacity;pointer-events:none}.fade-out{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1));-webkit-animation:150ms fadeOutAnimation forwards;animation:150ms fadeOutAnimation forwards}@-webkit-keyframes rippleAnimation{from{-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1))}}@keyframes rippleAnimation{from{-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:translate(var(--translate-end)) scale(var(--final-scale, 1));transform:translate(var(--translate-end)) scale(var(--final-scale, 1))}}@-webkit-keyframes fadeInAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:0.16}}@keyframes fadeInAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:0.16}}@-webkit-keyframes fadeOutAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0.16}to{opacity:0}}@keyframes fadeOutAnimation{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0.16}to{opacity:0}}"}}])}();
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1709],{41709:function(i,t,o){"use strict";o.r(t),o.d(t,{ion_img:function(){return r}});var e=o(31667),s=o(36177);const r=class{constructor(i){(0,e.r)(this,i),this.ionImgWillLoad=(0,e.e)(this,"ionImgWillLoad",7),this.ionImgDidLoad=(0,e.e)(this,"ionImgDidLoad",7),this.ionError=(0,e.e)(this,"ionError",7),this.onLoad=()=>{this.ionImgDidLoad.emit()},this.onError=()=>{this.ionError.emit()}}srcChanged(){this.addIO()}componentDidLoad(){this.addIO()}addIO(){void 0!==this.src&&("undefined"!=typeof window&&"IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"isIntersecting"in window.IntersectionObserverEntry.prototype?(this.removeIO(),this.io=new IntersectionObserver(i=>{i[0].isIntersecting&&(this.load(),this.removeIO())}),this.io.observe(this.el)):setTimeout(()=>this.load(),200))}load(){this.loadError=this.onError,this.loadSrc=this.src,this.ionImgWillLoad.emit()}removeIO(){this.io&&(this.io.disconnect(),this.io=void 0)}render(){return(0,e.h)(e.H,{class:(0,s.b)(this)},(0,e.h)("img",{decoding:"async",src:this.loadSrc,alt:this.alt,onLoad:this.onLoad,onError:this.loadError,part:"image"}))}get el(){return(0,e.i)(this)}static get watchers(){return{src:["srcChanged"]}}};r.style=":host{display:block;-o-object-fit:contain;object-fit:contain}img{display:block;width:100%;height:100%;-o-object-fit:inherit;object-fit:inherit;-o-object-position:inherit;object-position:inherit}"}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function i(i,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(i,o.key,o)}}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1709],{41709:function(t,n,o){"use strict";o.r(n),o.d(n,{ion_img:function(){return s}});var e=o(31667),r=o(36177),s=function(){function t(i){var n=this;!function(i,t){if(!(i instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(0,e.r)(this,i),this.ionImgWillLoad=(0,e.e)(this,"ionImgWillLoad",7),this.ionImgDidLoad=(0,e.e)(this,"ionImgDidLoad",7),this.ionError=(0,e.e)(this,"ionError",7),this.onLoad=function(){n.ionImgDidLoad.emit()},this.onError=function(){n.ionError.emit()}}var n,o,s;return n=t,s=[{key:"watchers",get:function(){return{src:["srcChanged"]}}}],(o=[{key:"srcChanged",value:function(){this.addIO()}},{key:"componentDidLoad",value:function(){this.addIO()}},{key:"addIO",value:function(){var i=this;void 0!==this.src&&("undefined"!=typeof window&&"IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"isIntersecting"in window.IntersectionObserverEntry.prototype?(this.removeIO(),this.io=new IntersectionObserver(function(t){t[0].isIntersecting&&(i.load(),i.removeIO())}),this.io.observe(this.el)):setTimeout(function(){return i.load()},200))}},{key:"load",value:function(){this.loadError=this.onError,this.loadSrc=this.src,this.ionImgWillLoad.emit()}},{key:"removeIO",value:function(){this.io&&(this.io.disconnect(),this.io=void 0)}},{key:"render",value:function(){return(0,e.h)(e.H,{class:(0,r.b)(this)},(0,e.h)("img",{decoding:"async",src:this.loadSrc,alt:this.alt,onLoad:this.onLoad,onError:this.loadError,part:"image"}))}},{key:"el",get:function(){return(0,e.i)(this)}}])&&i(n.prototype,o),s&&i(n,s),t}();s.style=":host{display:block;-o-object-fit:contain;object-fit:contain}img{display:block;width:100%;height:100%;-o-object-fit:inherit;object-fit:inherit;-o-object-position:inherit;object-position:inherit}"}}])}();
|
||||
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1849],{41849:function(t,n,e){"use strict";e.d(n,{m:function(){return r}});var i=e(37716),c=e(35957);let r=(()=>{class t{constructor(){}ngOnInit(){}}return t.\u0275fac=function(n){return new(n||t)},t.\u0275cmp=i.Xpm({type:t,selectors:[["app-btn-seguinte"]],decls:4,vars:0,consts:[[1,"btn-no-color","right"]],template:function(t,n){1&t&&(i.TgZ(0,"div"),i.TgZ(1,"button",0),i.TgZ(2,"ion-label"),i._uU(3,"Seguinte"),i.qZA(),i.qZA(),i.qZA())},directives:[c.Q$],styles:[".right[_ngcontent-%COMP%]{padding:0!important;float:right;font-size:15px;color:#0782c9;margin:8px 0 0 5px}"]}),t})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){for(var e=0;e<t.length;e++){var i=t[e];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(n,i.key,i)}}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[1849],{41849:function(t,e,i){"use strict";i.d(e,{m:function(){return a}});var r=i(37716),o=i(35957),a=function(){var t=function(){function t(){!function(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,i,r;return e=t,(i=[{key:"ngOnInit",value:function(){}}])&&n(e.prototype,i),r&&n(e,r),t}();return t.\u0275fac=function(n){return new(n||t)},t.\u0275cmp=r.Xpm({type:t,selectors:[["app-btn-seguinte"]],decls:4,vars:0,consts:[[1,"btn-no-color","right"]],template:function(n,t){1&n&&(r.TgZ(0,"div"),r.TgZ(1,"button",0),r.TgZ(2,"ion-label"),r._uU(3,"Seguinte"),r.qZA(),r.qZA(),r.qZA())},directives:[o.Q$],styles:[".right[_ngcontent-%COMP%]{padding:0!important;float:right;font-size:15px;color:#0782c9;margin:8px 0 0 5px}"]}),t}()}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2052],{42052:function(t,n,e){"use strict";e.r(n),e.d(n,{ContactsPageModule:function(){return p}});var c=e(38583),r=e(3679),i=e(35957),o=e(39895),a=e(31347),u=e(37716);const s=[{path:"",component:a.K}];let l=(()=>{class t{}return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=u.oAB({type:t}),t.\u0275inj=u.cJS({imports:[[o.Bz.forChild(s)],o.Bz]}),t})();var f=e(6136);let p=(()=>{class t{}return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=u.oAB({type:t}),t.\u0275inj=u.cJS({imports:[[c.ez,r.u5,i.Pc,l,f.I]]}),t})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2052],{42052:function(t,i,o){"use strict";o.r(i),o.d(i,{ContactsPageModule:function(){return d}});var e,c=o(38583),a=o(3679),u=o(35957),r=o(39895),f=o(31347),s=o(37716),p=[{path:"",component:f.K}],l=function(){var t=function t(){n(this,t)};return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=s.oAB({type:t}),t.\u0275inj=s.cJS({imports:[[r.Bz.forChild(p)],r.Bz]}),t}(),h=o(6136),d=((e=function t(){n(this,t)}).\u0275fac=function(n){return new(n||e)},e.\u0275mod=s.oAB({type:e}),e.\u0275inj=s.cJS({imports:[[c.ez,a.u5,u.Pc,l,h.I]]}),e)}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2118],{62118:function(e,n,t){"use strict";t.r(n),t.d(n,{SenderPageModule:function(){return l}});var r=t(38583),c=t(3679),i=t(35957),o=t(39895),u=t(35161),a=t(37716);const s=[{path:"",component:u.$}];let f=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[o.Bz.forChild(s)],o.Bz]}),e})(),l=(()=>{class e{}return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=a.oAB({type:e}),e.\u0275inj=a.cJS({imports:[[r.ez,c.u5,i.Pc,f]]}),e})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,t){if(!(n instanceof t))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2118],{62118:function(t,e,i){"use strict";i.r(e),i.d(e,{SenderPageModule:function(){return d}});var o,c=i(38583),r=i(3679),u=i(35957),a=i(39895),f=i(35161),s=i(37716),p=[{path:"",component:f.$}],l=function(){var t=function t(){n(this,t)};return t.\u0275fac=function(n){return new(n||t)},t.\u0275mod=s.oAB({type:t}),t.\u0275inj=s.cJS({imports:[[a.Bz.forChild(p)],a.Bz]}),t}(),d=((o=function t(){n(this,t)}).\u0275fac=function(n){return new(n||o)},o.\u0275mod=s.oAB({type:o}),o.\u0275inj=s.cJS({imports:[[c.ez,r.u5,u.Pc,l]]}),o)}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2219],{2219:function(n,t,o){"use strict";o.r(t),o.d(t,{SearchedDocumentOptionsPageModule:function(){return l}});var e=o(38583),i=o(3679),c=o(35957),r=o(39895),a=o(18057),s=o(37716);const d=[{path:"",component:a.S}];let p=(()=>{class n{}return n.\u0275fac=function(t){return new(t||n)},n.\u0275mod=s.oAB({type:n}),n.\u0275inj=s.cJS({imports:[[r.Bz.forChild(d)],r.Bz]}),n})(),l=(()=>{class n{}return n.\u0275fac=function(t){return new(t||n)},n.\u0275mod=s.oAB({type:n}),n.\u0275inj=s.cJS({imports:[[e.ez,i.u5,c.Pc,p]]}),n})()},18057:function(n,t,o){"use strict";o.d(t,{S:function(){return u}});var e=o(64762),i=o(37716),c=o(35957),r=o(96529),a=o(38583);function s(n,t){if(1&n){const n=i.EpF();i.TgZ(0,"button",6),i.NdJ("click",function(){return i.CHM(n),i.oxw().openExpedientActionsModal("0")}),i._uU(1,"Efetuar Despacho"),i.qZA()}}function d(n,t){if(1&n){const n=i.EpF();i.TgZ(0,"button",6),i.NdJ("click",function(){return i.CHM(n),i.oxw().openExpedientActionsModal("0")}),i._uU(1,"Efetuar Despacho"),i.qZA()}}function p(n,t){if(1&n){const n=i.EpF();i.TgZ(0,"button",4),i.NdJ("click",function(){return i.CHM(n),i.oxw().openExpedientActionsModal("2")}),i._uU(1,"Pedido de Deferimento"),i.qZA()}}const l=function(){return["PR"]};let u=(()=>{class n{constructor(n,t,o,e){this.popoverController=n,this.modalController=t,this.navParams=o,this.p=e}ngOnInit(){this.task=this.navParams.get("task"),this.LoadedDocument=this.navParams.get("LoadedDocument")}close(){this.popoverController.dismiss()}goBack(){this.popoverController.dismiss()}openBookMeetingModal(){return(0,e.mG)(this,void 0,void 0,function*(){this.popoverController.dismiss({component:"openBookMeetingModal",taskAction:""})})}openExpedientActionsModal(n){return(0,e.mG)(this,void 0,void 0,function*(){this.popoverController.dismiss({component:"openExpedientActionsModal",taskAction:n})})}distartExpedientModal(n){return(0,e.mG)(this,void 0,void 0,function*(){})}}return n.\u0275fac=function(t){return new(t||n)(i.Y36(c.Dh),i.Y36(c.IN),i.Y36(c.X1),i.Y36(r.$))},n.\u0275cmp=i.Xpm({type:n,selectors:[["app-searched-document-options"]],decls:10,vars:6,consts:[[1,"container","width-100"],[1,"buttons"],["class","btn-ok","shape","round",3,"click",4,"ngIf"],[1,"solid"],["shape","round",1,"btn-cancel",3,"click"],["class","btn-cancel","shape","round",3,"click",4,"ngIf"],["shape","round",1,"btn-ok",3,"click"]],template:function(n,t){1&n&&(i.TgZ(0,"ion-content",0),i.TgZ(1,"div",1),i.YNc(2,s,2,0,"button",2),i.YNc(3,d,2,0,"button",2),i._UZ(4,"div",3),i.TgZ(5,"button",4),i.NdJ("click",function(){return t.openExpedientActionsModal("0")}),i._uU(6,"Solicitar Parecer"),i.qZA(),i.YNc(7,p,2,0,"button",5),i.TgZ(8,"button",4),i.NdJ("click",function(){return t.openBookMeetingModal()}),i._uU(9,"Marcar Reuni\xe3o"),i.qZA(),i.qZA(),i.qZA()),2&n&&(i.xp6(2),i.Q6J("ngIf",t.p.userRole(i.DdM(3,l))),i.xp6(1),i.Q6J("ngIf",!t.p.userRole(i.DdM(4,l))),i.xp6(4),i.Q6J("ngIf",!t.p.userRole(i.DdM(5,l))))},directives:[c.W2,a.O5],styles:[".container[_ngcontent-%COMP%]{--padding-top:20px!important;--padding-bottom:20px!important;--padding-start:20px!important;--padding-end:20px!important;width:100%}.arrow-right[_ngcontent-%COMP%]{display:none;margin-bottom:20px}.arrow-right[_ngcontent-%COMP%] .arrow-right-icon[_ngcontent-%COMP%]{width:37px;float:right;font-size:35px;overflow:hidden}.buttons[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;justify-content:space-around}.solid[_ngcontent-%COMP%]{display:none;width:90%;border-top:1px solid #bbb;margin:0 auto!important}.btn-cancel[_ngcontent-%COMP%], .btn-ok[_ngcontent-%COMP%]{margin-bottom:5px!important;margin-top:5px!important}@media only screen and (max-width: 800px){.btn-cancel[_ngcontent-%COMP%], .btn-delete[_ngcontent-%COMP%], .btn-ok[_ngcontent-%COMP%]{width:100%!important}}@media only screen and (min-width: 1024px){.arrow-right[_ngcontent-%COMP%]{display:flex;justify-content:flex-end}.btn-cancel[_ngcontent-%COMP%]{display:none}.btn-cancel[_ngcontent-%COMP%], .btn-delete[_ngcontent-%COMP%], .btn-ok[_ngcontent-%COMP%]{width:100%!important;margin-bottom:10px!important}.btn-delete[_ngcontent-%COMP%], .btn-ok[_ngcontent-%COMP%]{margin-top:10px!important}}.desk[_ngcontent-%COMP%]{text-align:left;background-color:#fff}"]}),n})()}}]);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2326],{52326:function(e,t,n){"use strict";n.r(t),n.d(t,{CreateProcessPageModule:function(){return k}});var o=n(38583),r=n(3679),a=n(35957),i=n(39895),u=n(90562),c=n(37716);const s=[{path:"",component:u.A}];let d=(()=>{class e{}return e.\u0275fac=function(t){return new(t||e)},e.\u0275mod=c.oAB({type:e}),e.\u0275inj=c.cJS({imports:[[i.Bz.forChild(s)],i.Bz]}),e})();var l=n(66089),p=n(2142),f=n(72458),g=n(25653),m=n(51095),A=n(67441),C=n(94881),h=n(43220),P=n(49983),b=n(22238);let k=(()=>{class e{}return e.\u0275fac=function(t){return new(t||e)},e.\u0275mod=c.oAB({type:e}),e.\u0275inj=c.cJS({providers:[{provide:f.Ad,useValue:"pt"}],imports:[[o.ez,r.u5,a.Pc,d,l.EmptyContainerPageModule,p.AttendeeModalPageModule,h.FA,P.c,f.XK,g.EC,g.Yy,g.K,C._W,A.LD,m.ot,r.UX,b.Is]]}),e})()}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function n(n,e){if(!(n instanceof e))throw new TypeError("Cannot call a class as a function")}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[2326],{52326:function(e,t,o){"use strict";o.r(t),o.d(t,{CreateProcessPageModule:function(){return k}});var i,a=o(38583),r=o(3679),c=o(35957),u=o(39895),s=o(90562),f=o(37716),d=[{path:"",component:s.A}],p=function(){var e=function e(){n(this,e)};return e.\u0275fac=function(n){return new(n||e)},e.\u0275mod=f.oAB({type:e}),e.\u0275inj=f.cJS({imports:[[u.Bz.forChild(d)],u.Bz]}),e}(),l=o(66089),h=o(2142),g=o(72458),C=o(25653),m=o(51095),w=o(67441),A=o(94881),y=o(43220),P=o(49983),b=o(22238),k=((i=function e(){n(this,e)}).\u0275fac=function(n){return new(n||i)},i.\u0275mod=f.oAB({type:i}),i.\u0275inj=f.cJS({providers:[{provide:g.Ad,useValue:"pt"}],imports:[[a.ez,r.u5,c.Pc,p,l.EmptyContainerPageModule,h.AttendeeModalPageModule,y.FA,P.c,g.XK,C.EC,C.Yy,C.K,A._W,w.LD,m.ot,r.UX,b.Is]]}),i)}}])}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[305],{10305:function(t,i,r){"use strict";r.r(i),r.d(i,{ion_avatar:function(){return d},ion_badge:function(){return e},ion_thumbnail:function(){return s}});var o=r(31667),a=r(36177),n=r(61269);const d=class{constructor(t){(0,o.r)(this,t)}render(){return(0,o.h)(o.H,{class:(0,a.b)(this)},(0,o.h)("slot",null))}};d.style={ios:":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:48px;height:48px}",md:":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:64px;height:64px}"};const e=class{constructor(t){(0,o.r)(this,t)}render(){const t=(0,a.b)(this);return(0,o.h)(o.H,{class:(0,n.c)(this.color,{[t]:!0})},(0,o.h)("slot",null))}};e.style={ios:":host{--background:var(--ion-color-primary, #3880ff);--color:var(--ion-color-primary-contrast, #fff);--padding-top:3px;--padding-end:8px;--padding-bottom:3px;--padding-start:8px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:inline-block;min-width:10px;background:var(--background);color:var(--color);font-family:var(--ion-font-family, inherit);font-size:13px;font-weight:bold;line-height:1;text-align:center;white-space:nowrap;contain:content;vertical-align:baseline}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.ion-color){background:var(--ion-color-base);color:var(--ion-color-contrast)}:host(:empty){display:none}:host{border-radius:10px}",md:":host{--background:var(--ion-color-primary, #3880ff);--color:var(--ion-color-primary-contrast, #fff);--padding-top:3px;--padding-end:8px;--padding-bottom:3px;--padding-start:8px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:inline-block;min-width:10px;background:var(--background);color:var(--color);font-family:var(--ion-font-family, inherit);font-size:13px;font-weight:bold;line-height:1;text-align:center;white-space:nowrap;contain:content;vertical-align:baseline}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.ion-color){background:var(--ion-color-base);color:var(--ion-color-contrast)}:host(:empty){display:none}:host{--padding-top:3px;--padding-end:4px;--padding-bottom:4px;--padding-start:4px;border-radius:4px}"};const s=class{constructor(t){(0,o.r)(this,t)}render(){return(0,o.h)(o.H,{class:(0,a.b)(this)},(0,o.h)("slot",null))}};s.style=":host{--size:48px;--border-radius:0;border-radius:var(--border-radius);display:block;width:var(--size);height:var(--size)}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}"}}]);
|
||||
@@ -0,0 +1 @@
|
||||
!function(){function t(t,i){if(!(t instanceof i))throw new TypeError("Cannot call a class as a function")}function i(t,i){for(var n=0;n<i.length;n++){var r=i[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function n(t,n,r){return n&&i(t.prototype,n),r&&i(t,r),t}(self.webpackChunkgabinete_digital=self.webpackChunkgabinete_digital||[]).push([[305],{10305:function(i,r,o){"use strict";o.r(r),o.d(r,{ion_avatar:function(){return s},ion_badge:function(){return l},ion_thumbnail:function(){return p}});var a=o(31667),d=o(36177),e=o(61269),s=function(){function i(n){t(this,i),(0,a.r)(this,n)}return n(i,[{key:"render",value:function(){return(0,a.h)(a.H,{class:(0,d.b)(this)},(0,a.h)("slot",null))}}]),i}();s.style={ios:":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:48px;height:48px}",md:":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:64px;height:64px}"};var l=function(){function i(n){t(this,i),(0,a.r)(this,n)}return n(i,[{key:"render",value:function(){var t,i,n,r=(0,d.b)(this);return(0,a.h)(a.H,{class:(0,e.c)(this.color,(t={},i=r,n=!0,i in t?Object.defineProperty(t,i,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[i]=n,t))},(0,a.h)("slot",null))}}]),i}();l.style={ios:":host{--background:var(--ion-color-primary, #3880ff);--color:var(--ion-color-primary-contrast, #fff);--padding-top:3px;--padding-end:8px;--padding-bottom:3px;--padding-start:8px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:inline-block;min-width:10px;background:var(--background);color:var(--color);font-family:var(--ion-font-family, inherit);font-size:13px;font-weight:bold;line-height:1;text-align:center;white-space:nowrap;contain:content;vertical-align:baseline}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.ion-color){background:var(--ion-color-base);color:var(--ion-color-contrast)}:host(:empty){display:none}:host{border-radius:10px}",md:":host{--background:var(--ion-color-primary, #3880ff);--color:var(--ion-color-primary-contrast, #fff);--padding-top:3px;--padding-end:8px;--padding-bottom:3px;--padding-start:8px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:inline-block;min-width:10px;background:var(--background);color:var(--color);font-family:var(--ion-font-family, inherit);font-size:13px;font-weight:bold;line-height:1;text-align:center;white-space:nowrap;contain:content;vertical-align:baseline}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.ion-color){background:var(--ion-color-base);color:var(--ion-color-contrast)}:host(:empty){display:none}:host{--padding-top:3px;--padding-end:4px;--padding-bottom:4px;--padding-start:4px;border-radius:4px}"};var p=function(){function i(n){t(this,i),(0,a.r)(this,n)}return n(i,[{key:"render",value:function(){return(0,a.h)(a.H,{class:(0,d.b)(this)},(0,a.h)("slot",null))}}]),i}();p.style=":host{--size:48px;--border-radius:0;border-radius:var(--border-radius);display:block;width:var(--size);height:var(--size)}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}"}}])}();
|
||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user