gl-w-frontend
Advanced tools
Comparing version 2.1.6 to 2.2.0
@@ -0,0 +0,0 @@ export * from './scripts/core/services/array/core-services-array.service'; |
@@ -0,0 +0,0 @@ export * from './scripts/core/services/array/core-services-array.service'; |
export * from './bundle'; |
export * from './bundle'; | ||
//# sourceMappingURL=index.js.map |
@@ -0,0 +0,0 @@ declare class Remove { |
@@ -0,0 +0,0 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { |
@@ -0,0 +0,0 @@ export interface IAttachmentData { |
export {}; | ||
//# sourceMappingURL=core-services-attachment.interface.js.map |
@@ -0,0 +0,0 @@ import { IAttachmentData, IAttachmentFileInfo } from './core-services-attachment.interface'; |
@@ -0,0 +0,0 @@ class Convert { |
@@ -0,0 +0,0 @@ export interface IFullscreenResult { |
export {}; | ||
//# sourceMappingURL=core-services-browser.interface.js.map |
@@ -15,2 +15,9 @@ import { IFullScreenAlt, IFullScreenSrc, IMenuButton } from '../menu/core-services-menu.interfaces'; | ||
export declare const BrowserVersion: Version; | ||
declare class ViewPort { | ||
setFullHeight(): void; | ||
setFullHeightListener(): void; | ||
setFullWidth(): void; | ||
setFullWidthListener(): void; | ||
} | ||
export declare const BrowserViewPort: ViewPort; | ||
export {}; |
@@ -77,2 +77,25 @@ import * as screenfull from 'screenfull'; | ||
export const BrowserVersion = new Version(); | ||
class ViewPort { | ||
setFullHeight() { | ||
const vh = window.innerHeight * 0.01; | ||
document.documentElement.style.setProperty('--vh', `${vh}px`); | ||
} | ||
setFullHeightListener() { | ||
this.setFullHeight(); | ||
window.addEventListener('resize', () => { | ||
this.setFullHeight(); | ||
}); | ||
} | ||
setFullWidth() { | ||
const vw = window.innerWidth * 0.01; | ||
document.documentElement.style.setProperty('--vw', `${vw}px`); | ||
} | ||
setFullWidthListener() { | ||
this.setFullWidth(); | ||
window.addEventListener('resize', () => { | ||
this.setFullWidth(); | ||
}); | ||
} | ||
} | ||
export const BrowserViewPort = new ViewPort(); | ||
//# sourceMappingURL=core-services-browser.service.js.map |
@@ -0,0 +0,0 @@ export interface IComboBoxData { |
export {}; | ||
//# sourceMappingURL=core-services-combobox.interface.js.map |
@@ -0,0 +0,0 @@ import { IComboBoxData } from './core-services-combobox.interface'; |
@@ -0,0 +0,0 @@ import { ElementRemove } from '../elements/core-services-elements.service'; |
@@ -0,0 +0,0 @@ import { MomentInput, unitOfTime } from 'moment/moment'; |
export {}; | ||
//# sourceMappingURL=core-services-date.interface.js.map |
@@ -0,0 +0,0 @@ import { IDate, IDateLocal, IDayMonthYear, IDaysOfMonth, IWeeksOfMonth } from './core-services-date.interface'; |
@@ -0,0 +0,0 @@ import * as moment from 'moment'; |
export declare type TFields = HTMLInputElement | HTMLDivElement | HTMLTextAreaElement | HTMLSpanElement | null; |
export {}; | ||
//# sourceMappingURL=core-services-elements.interface.js.map |
@@ -0,0 +0,0 @@ import { TFields } from './core-services-elements.interface'; |
@@ -0,0 +0,0 @@ import { DateValidation } from '../date/core-services-date.service'; |
@@ -0,0 +0,0 @@ export interface IImageUpdate { |
export {}; | ||
//# sourceMappingURL=core-services-image.interface.js.map |
@@ -0,0 +0,0 @@ import { IImageUpdate } from './core-services-image.interface'; |
@@ -0,0 +0,0 @@ class Resize { |
@@ -0,0 +0,0 @@ export interface IInputMaskOptions { |
export {}; | ||
//# sourceMappingURL=core-services-input.interface.js.map |
@@ -0,0 +0,0 @@ import { TCurrencyTypes } from './core-services-input.interface'; |
@@ -0,0 +0,0 @@ import Inputmask from 'inputmask'; |
@@ -0,0 +0,0 @@ export interface IInternationalizationList { |
export {}; | ||
//# sourceMappingURL=core-services-internationalization.interface.js.map |
@@ -0,0 +0,0 @@ import { IInternationalizationList, TCountryLanguage, TCountryName, TCurrencyCode, TCurrentFullName } from './core-services-internationalization.interface'; |
@@ -0,0 +0,0 @@ class Core { |
@@ -0,0 +0,0 @@ export interface IMenuButton { |
export {}; | ||
//# sourceMappingURL=core-services-menu.interfaces.js.map |
export declare type TCurrencyNames = 'euro' | 'dolar' | 'real' | 'peso' | 'peso-ar' | 'pounds-sterling' | 'canadian-dollars' | 'yuan' | 'rupee' | 'yen'; | ||
export declare type TCurrencySymbolTypes = 'Ar$' | 'R$' | '€' | 'US$'; | ||
export declare type TDecimalSeparators = '.' | ','; |
export {}; | ||
//# sourceMappingURL=core-services-string-interface.js.map |
@@ -0,0 +0,0 @@ import { TCurrencyNames, TCurrencySymbolTypes, TDecimalSeparators } from './core-services-string-interface'; |
@@ -0,0 +0,0 @@ import { UrlDecode } from '../url/core-services-url.service'; |
@@ -0,0 +0,0 @@ declare class Core { |
@@ -0,0 +0,0 @@ class Core { |
@@ -0,0 +0,0 @@ export declare type IExcelFileName = string | null; |
export {}; | ||
//# sourceMappingURL=services-export-excel.interface.js.map |
@@ -0,0 +0,0 @@ import { Subject } from 'rxjs'; |
@@ -0,0 +0,0 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { |
@@ -0,0 +0,0 @@ export interface IAlignments { |
export {}; | ||
//# sourceMappingURL=statics.alignment.interface.js.map |
@@ -0,0 +0,0 @@ import { IAlignments } from './statics.alignment.interface'; |
@@ -0,0 +0,0 @@ class Core { |
@@ -0,0 +0,0 @@ export interface IColors { |
export {}; | ||
//# sourceMappingURL=statics.color.interface.js.map |
@@ -0,0 +0,0 @@ import { IColors } from './statics.color.interface'; |
@@ -0,0 +0,0 @@ class Core { |
@@ -0,0 +0,0 @@ export interface IFonts { |
export {}; | ||
//# sourceMappingURL=statics.font.interface.js.map |
@@ -0,0 +0,0 @@ import { IFonts } from './statics.font.interface'; |
@@ -0,0 +0,0 @@ class Core { |
{ | ||
"name": "gl-w-frontend", | ||
"version": "2.1.6", | ||
"version": "2.2.0", | ||
"description": "Common code for using among web front-end development such as ES6+ and TypeScript", | ||
@@ -13,3 +13,3 @@ "main": "lib/bundle.js", | ||
"clean": "shx rm -rf dist lib", | ||
"copy-assets": "copyfiles -a -u2 src/lib/assets/** lib", | ||
"copy-assets": "copyfiles -a -u2 \"src/lib/assets/**\" lib", | ||
"production": "npm run build && npm run copy-assets", | ||
@@ -16,0 +16,0 @@ "fast-build": "tsc", |
@@ -0,0 +0,0 @@ # gl-w-frontend # |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3673
258513
114