@mikezimm/fps-library-v2 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,18 +5,24 @@ npm run build
5
5
  npm version major/minor/patch
6
6
  npm publish --access=public
7
7
 
8
- npm install @mikezimm/fps-library-v2@1.0.16
8
+ npm install @mikezimm/fps-library-v2@1.0.17
9
9
 
10
10
 
11
11
  # Changelog
12
12
 
13
- ## 1.0.16 - 2022-Dec-11
13
+ ## 1.0.17 - 2022-Dec-13
14
+ - update PresetFPSBanner with EasyPages EasyIcons
15
+ - migrate updateBannerThemeStyles, refreshBannerStylesOnPropChange to src/banner/features/PageStyle/bannerThemes.ts
16
+ - migrate renderCustomStyles to src/banner/features/PageStyle/renderCustStyles.ts
17
+ - import PreConfig EasyPages/EasyIcons from Drilldown to src/common/PropPaneHelp/PreConfiguredConstants.ts
18
+
19
+ ## 1.0.16 - 2022-Dec-12
14
20
  - clean up build errors - moved temp files back to npmFunctions so could build
15
21
 
16
- ## 1.0.15 - 2022-Dec-11
22
+ ## 1.0.15 - 2022-Dec-12
17
23
  - More cleanup imports
18
24
 
19
- ## 1.0.13 - 2022-Dec-11
25
+ ## 1.0.13 - 2022-Dec-12
20
26
  - Target more specific imports instead of just import { ... } from '../../../pnpjs
21
27
  - was causing web part to suck in entire folder and all dependancies
22
28
 
@@ -0,0 +1,19 @@
1
+ import { IConfigurationProp } from "../../../common/PropPaneHelp/IPreConfig";
2
+ import { IMinBannerThemeProps } from "../../interfaces/Theme/Interfaces";
3
+ import { IPinMeState } from "../PinMe/Interfaces";
4
+ /**
5
+ * This will update bannerStyle and bannerCmdStyle in the following way
6
+ * Typically the appPresetCollectionDefaults run before this so it's possible the defBannerTheme is already preset.
7
+ * If for some reason the bannerStyle or bannerCmdStyle are not properly set in the Pre-ConfiguredProps, this will udpate them based on the bannerStyleChoice
8
+ *
9
+ * Then it will adjust bannerCmdStyle fontSize, margins and paddings down so that the PinMe buttons are larger.
10
+ * NOTE This may have to be adjusted when PinMe is not activated.
11
+ *
12
+ * @param thisProps
13
+ * @param serverRelativeUrl
14
+ * @param bannerStyleChoice
15
+ * @returns
16
+ */
17
+ export declare function updateBannerThemeStyles(thisProps: IMinBannerThemeProps, bannerStyleChoice: string, forceUpdate: boolean, defPinState: IPinMeState, forcedProps: IConfigurationProp[]): IMinBannerThemeProps;
18
+ export declare function refreshBannerStylesOnPropChange(thisProps: IMinBannerThemeProps, propertyPath: string, newValue: string, refreshPane: any): void;
19
+ //# sourceMappingURL=bannerThemes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bannerThemes.d.ts","sourceRoot":"","sources":["../../../../src/banner/features/PageStyle/bannerThemes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAE7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAIlD;;;;;;;;;;;;GAYG;AACH,wBAAgB,uBAAuB,CAAG,SAAS,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,kBAAkB,EAAE,wBAwCtL;AAGD,wBAAgB,+BAA+B,CAAG,SAAS,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EACvH,WAAW,EAAE,GAAG,QAQjB"}
@@ -0,0 +1,55 @@
1
+ import { createBannerStyleStr } from "../../../common/commandStyles/defaults";
2
+ import { doesObjectExistInArray } from "../../../logic/indexes/ArrayFindObjects";
3
+ /**
4
+ * This will update bannerStyle and bannerCmdStyle in the following way
5
+ * Typically the appPresetCollectionDefaults run before this so it's possible the defBannerTheme is already preset.
6
+ * If for some reason the bannerStyle or bannerCmdStyle are not properly set in the Pre-ConfiguredProps, this will udpate them based on the bannerStyleChoice
7
+ *
8
+ * Then it will adjust bannerCmdStyle fontSize, margins and paddings down so that the PinMe buttons are larger.
9
+ * NOTE This may have to be adjusted when PinMe is not activated.
10
+ *
11
+ * @param thisProps
12
+ * @param serverRelativeUrl
13
+ * @param bannerStyleChoice
14
+ * @returns
15
+ */
16
+ export function updateBannerThemeStyles(thisProps, bannerStyleChoice, forceUpdate, defPinState, forcedProps) {
17
+ // DEFAULTS SECTION: Banner <<< ================================================================
18
+ //This updates unlocks styles only when bannerStyleChoice === custom. Rest are locked in the ui.
19
+ if (bannerStyleChoice === 'custom') {
20
+ thisProps.lockStyles = false;
21
+ }
22
+ else {
23
+ thisProps.lockStyles = true;
24
+ }
25
+ const checkForcebannerStyle = doesObjectExistInArray(forcedProps, 'prop', 'bannerStyle', true);
26
+ //Update bannerStyle
27
+ if (checkForcebannerStyle === false && (forceUpdate === true || !thisProps.bannerStyle)) {
28
+ // https://github.com/mikezimm/drilldown7/issues/189
29
+ if (thisProps.bannerStyleChoice !== 'custom' && thisProps.bannerStyleChoice !== 'lock')
30
+ thisProps.bannerStyle = createBannerStyleStr(bannerStyleChoice, 'banner');
31
+ }
32
+ const checkForcebannerCmdStyle = doesObjectExistInArray(forcedProps, 'prop', 'bannerCmdStyle', true);
33
+ //Update bannerCmdStyle
34
+ if (checkForcebannerCmdStyle === false && (forceUpdate === true || !thisProps.bannerCmdStyle)) {
35
+ // https://github.com/mikezimm/drilldown7/issues/189
36
+ let bannerCmdStyle = thisProps.bannerStyleChoice === 'custom' || thisProps.bannerStyleChoice === 'lock' ?
37
+ thisProps.bannerCmdStyle : createBannerStyleStr(bannerStyleChoice, 'cmd');
38
+ //Adjust the default size down compared to PinMe buttons which are primary functions in the web part
39
+ if (defPinState && defPinState !== 'disabled') {
40
+ // bannerCmdStyle.replace('"fontSize":20,', '"fontSize":16,') ;
41
+ bannerCmdStyle = bannerCmdStyle.replace('"fontSize":20,', '"fontSize":16,');
42
+ bannerCmdStyle = bannerCmdStyle.replace('"marginRight":"9px"', '"marginRight":"0px"');
43
+ bannerCmdStyle = bannerCmdStyle.replace('"padding":"7px"', '"padding":"7px 4px"');
44
+ }
45
+ thisProps.bannerCmdStyle = bannerCmdStyle;
46
+ }
47
+ return thisProps;
48
+ }
49
+ export function refreshBannerStylesOnPropChange(thisProps, propertyPath, newValue, refreshPane) {
50
+ if (propertyPath === 'bannerStyle' || propertyPath === 'bannerCmdStyle') {
51
+ thisProps[propertyPath] = newValue;
52
+ refreshPane();
53
+ }
54
+ }
55
+ //# sourceMappingURL=bannerThemes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bannerThemes.js","sourceRoot":"","sources":["../../../../src/banner/features/PageStyle/bannerThemes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAC;AAE9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAC;AAMjF;;;;;;;;;;;;GAYG;AACH,MAAM,UAAU,uBAAuB,CAAG,SAA+B,EAAE,iBAAyB,EAAE,WAAoB,EAAE,WAAwB,EAAE,WAAiC;IAErL,mGAAmG;IACnG,iGAAiG;IAGjG,IAAK,iBAAiB,KAAK,QAAQ,EAAG;QAClC,SAAS,CAAC,UAAU,GAAG,KAAK,CAAE;KAEjC;SAAM;QAAE,SAAS,CAAC,UAAU,GAAG,IAAI,CAAC;KAAE;IAEvC,MAAM,qBAAqB,GAAG,sBAAsB,CAAE,WAAW,EAAG,MAAM,EAAE,aAAa,EAAE,IAAI,CAAE,CAAC;IAClG,oBAAoB;IACpB,IAAK,qBAAqB,KAAK,KAAK,IAAI,CAAE,WAAW,KAAK,IAAI,IAAI,CAAC,SAAS,CAAC,WAAW,CAAE,EAAG;QAC3F,qDAAqD;QACrD,IAAK,SAAS,CAAC,iBAAiB,KAAK,QAAQ,IAAK,SAAS,CAAC,iBAAiB,KAAK,MAAM;YACpF,SAAS,CAAC,WAAW,GAAG,oBAAoB,CAAE,iBAAiB,EAAE,QAAQ,CAAC,CAAE;KACjF;IAED,MAAM,wBAAwB,GAAG,sBAAsB,CAAE,WAAW,EAAG,MAAM,EAAE,gBAAgB,EAAE,IAAI,CAAG,CAAC;IACzG,uBAAuB;IACvB,IAAK,wBAAwB,KAAK,KAAK,IAAI,CAAE,WAAW,KAAK,IAAI,IAAI,CAAC,SAAS,CAAC,cAAc,CAAE,EAAG;QACjG,qDAAqD;QACnD,IAAI,cAAc,GAAG,SAAS,CAAC,iBAAiB,KAAK,QAAQ,IAAI,SAAS,CAAC,iBAAiB,KAAK,MAAM,CAAE,CAAC;YACvG,SAAS,CAAC,cAAc,CAAC,CAAC,CAAC,oBAAoB,CAAE,iBAAiB,EAAE,KAAK,CAAC,CAAC;QAE9E,oGAAoG;QACpG,IAAK,WAAW,IAAI,WAAW,KAAK,UAAU,EAAG;YAC7C,+DAA+D;YAC/D,cAAc,GAAG,cAAc,CAAC,OAAO,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,CAAE;YAC7E,cAAc,GAAG,cAAc,CAAC,OAAO,CAAC,qBAAqB,EAAE,qBAAqB,CAAC,CAAE;YACvF,cAAc,GAAG,cAAc,CAAC,OAAO,CAAC,iBAAiB,EAAE,qBAAqB,CAAC,CAAE;SAEtF;QAED,SAAS,CAAC,cAAc,GAAG,cAAc,CAAC;KAC7C;IAED,OAAO,SAAS,CAAC;AAEnB,CAAC;AAGD,MAAM,UAAU,+BAA+B,CAAG,SAA+B,EAAE,YAAoB,EAAE,QAAgB,EACvH,WAAgB;IAEhB,IAAK,YAAY,KAAK,aAAa,IAAI,YAAY,KAAK,gBAAgB,EAAI;QACxE,SAAS,CAAE,YAAY,CAAE,GAAG,QAAQ,CAAC;QACrC,WAAW,EAAE,CAAC;KAEjB;AAEH,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { DisplayMode } from "../../../common/interfaces/indexes";
2
+ import { IMinWPBannerProps } from "../../interfaces/MinWP/IMinWPBannerProps";
3
+ interface IRenderCustomStyles {
4
+ wpInstanceID: any;
5
+ domElement: HTMLElement;
6
+ wpProps: IMinWPBannerProps;
7
+ displayMode: DisplayMode;
8
+ doHeadings: boolean;
9
+ }
10
+ /**
11
+ * renderCustomStyles is intended for one-time style changes during onInit. Not dynamic changes
12
+ * NOT for things like PinMe or Expando which the user changes on the fly
13
+ *
14
+ * @param wpInstanceID
15
+ * @param domElement
16
+ * @param wpProps
17
+ // * @param fpsPageDone // Deprecating - No longer needed with more modern styling options in updateSectionStyles.
18
+ // * @param fpsPageArray // Deprecating - No longer needed with more modern styling options in updateSectionStyles.
19
+ * @param displayMode
20
+ // * @param minHideToolbar //Should not be needed, using web part props for value and local function for url param
21
+ // * @param hideToolbar //Should not be needed, using web part props for value and local function for url
22
+ * @param doHeadings
23
+ */
24
+ export declare function renderCustomStyles(sty: IRenderCustomStyles): void;
25
+ export {};
26
+ //# sourceMappingURL=renderCustStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderCustStyles.d.ts","sourceRoot":"","sources":["../../../../src/banner/features/PageStyle/renderCustStyles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAEjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAQ7E,UAAU,mBAAmB;IAC3B,YAAY,EAAE,GAAG,CAAC;IAClB,UAAU,EAAG,WAAW,CAAC;IACzB,OAAO,EAAE,iBAAiB,CAAC;IAG3B,WAAW,EAAE,WAAW,CAAC;IAGzB,UAAU,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;;;;;;;;GAaG;AAEH,wBAAiB,kBAAkB,CAAE,GAAG,EAAE,mBAAmB,QAkB5D"}
@@ -0,0 +1,34 @@
1
+ import { applyHeadingCSS } from "../../../logic/indexes/DOMHeadings";
2
+ import { minimizeHeader } from "./minimzeHeader";
3
+ import { setToolbar } from "./minimzeToolbar";
4
+ import { setQuickLaunch } from "./quickLaunch";
5
+ import { updateSectionStyles } from "./setAllSectionStyles";
6
+ /**
7
+ * renderCustomStyles is intended for one-time style changes during onInit. Not dynamic changes
8
+ * NOT for things like PinMe or Expando which the user changes on the fly
9
+ *
10
+ * @param wpInstanceID
11
+ * @param domElement
12
+ * @param wpProps
13
+ // * @param fpsPageDone // Deprecating - No longer needed with more modern styling options in updateSectionStyles.
14
+ // * @param fpsPageArray // Deprecating - No longer needed with more modern styling options in updateSectionStyles.
15
+ * @param displayMode
16
+ // * @param minHideToolbar //Should not be needed, using web part props for value and local function for url param
17
+ // * @param hideToolbar //Should not be needed, using web part props for value and local function for url
18
+ * @param doHeadings
19
+ */
20
+ export function renderCustomStyles(sty) {
21
+ const TempHeadingStyleProps = sty.wpProps;
22
+ if (sty.doHeadings === true)
23
+ applyHeadingCSS(TempHeadingStyleProps);
24
+ //Used with FPS Options Functions
25
+ setQuickLaunch(sty.wpProps.quickLaunchHide); // >> change to: minimizeQuickLaunch
26
+ // minimizeHeader( document, sty.wpProps.pageHeaderHide, false, true );
27
+ //Dropped sending document because it is always there
28
+ minimizeHeader(sty.wpProps.pageHeaderHide, false, true);
29
+ // Deprecating - No longer needed with more modern styling options in updateSectionStyles.
30
+ // setThisPageFormatting( sty.wpInstanceID, sty.domElement, sty.wpProps.fpsPageStyle, sty.fpsPageDone, sty.fpsPageArray );
31
+ setToolbar(sty.displayMode, sty.wpInstanceID, sty.wpProps.toolBarHide);
32
+ updateSectionStyles(sty.wpInstanceID, sty.wpProps);
33
+ }
34
+ //# sourceMappingURL=renderCustStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderCustStyles.js","sourceRoot":"","sources":["../../../../src/banner/features/PageStyle/renderCustStyles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAyB,MAAM,oCAAoC,CAAC;AAE5F,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAgB5D;;;;;;;;;;;;;GAaG;AAEH,MAAM,UAAW,kBAAkB,CAAE,GAAwB;IAE3D,MAAM,qBAAqB,GAA0B,GAAG,CAAC,OAAc,CAAC;IACtE,IAAK,GAAG,CAAC,UAAU,KAAK,IAAI;QAAG,eAAe,CAAE,qBAAqB,CAAE,CAAC;IAExE,iCAAiC;IACjC,cAAc,CAAE,GAAG,CAAC,OAAO,CAAC,eAAe,CAAE,CAAC,CAAC,oCAAoC;IACnF,uEAAuE;IAGvE,qDAAqD;IACrD,cAAc,CAAE,GAAG,CAAC,OAAO,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,CAAE,CAAC;IAG1D,0FAA0F;IAC1F,0HAA0H;IAC1H,UAAU,CAAE,GAAG,CAAC,WAAW,EAAE,GAAG,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,WAAW,CAAE,CAAC;IACzE,mBAAmB,CAAE,GAAG,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAE,CAAC;AACzD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"PreConfiguredConstants.d.ts","sourceRoot":"","sources":["../../../src/common/PropPaneHelp/PreConfiguredConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAG,MAAM,cAAc,CAAC;AAEnD,eAAO,MAAM,eAAe,EAAG,kBAuC9B,CAAC"}
1
+ {"version":3,"file":"PreConfiguredConstants.d.ts","sourceRoot":"","sources":["../../../src/common/PropPaneHelp/PreConfiguredConstants.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAG,MAAM,cAAc,CAAC;AAEnD,eAAO,MAAM,eAAe,EAAG,kBA2D9B,CAAC"}
@@ -1,3 +1,5 @@
1
+ import { DefaultEasyPagesTabs, DefaultOverflowTab } from '../../banner/components/EasyPages/epTypes';
2
+ import { EasyIconDefaultKeys } from '../../components/atoms/EasyIcons/eiTypes';
1
3
  export const PresetFPSBanner = {
2
4
  source: 'PresetFPSBanner',
3
5
  location: '*',
@@ -26,6 +28,24 @@ export const PresetFPSBanner = {
26
28
  expandoDefault: false,
27
29
  expandoAudience: "Everyone",
28
30
  showBanner: true,
31
+ EasyPagesEnable: false,
32
+ EasyPagesAudience: 'Everyone',
33
+ EasyPageTabsC: DefaultEasyPagesTabs.join(' ; '),
34
+ EasyPageTabsP: DefaultEasyPagesTabs.join(' ; '),
35
+ EasyPageTabsA: DefaultEasyPagesTabs.join(' ; '),
36
+ EasyPageTabsB: DefaultEasyPagesTabs.join(' ; '),
37
+ EasyPageOverflowTab: DefaultOverflowTab,
38
+ EasyPageParent: true,
39
+ EasyPageUrlA: '',
40
+ EasyPagesSiteTitleA: '',
41
+ EasyPageUrlB: '',
42
+ EasyPagesSiteTitleB: '',
43
+ easyPageSeparateExtras: true,
44
+ EasyPageStyles: '',
45
+ EasyPageContainerStyles: '',
46
+ easyIconEnable: true,
47
+ easyIconKeys: EasyIconDefaultKeys.join(' ; '),
48
+ easyIconIgnore: '',
29
49
  }
30
50
  };
31
51
  //# sourceMappingURL=PreConfiguredConstants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PreConfiguredConstants.js","sourceRoot":"","sources":["../../../src/common/PropPaneHelp/PreConfiguredConstants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,eAAe,GAAwB;IAChD,MAAM,EAAE,iBAAiB;IACzB,QAAQ,EAAE,GAAG;IACb,KAAK,EAAE;QACH,QAAQ;QACR,iBAAiB,EAAE,kBAAkB;QACrC,eAAe,EAAE,sBAAsB;QAEvC,sCAAsC;QACtC,iBAAiB,EAAE,WAAW;QAC9B,WAAW,EAAE,+LAA+L;QAC5M,cAAc,EAAE,0NAA0N;QAE1O,YAAY,EAAE,IAAI;QAClB,cAAc,EAAE,IAAI;QACpB,sBAAsB,EAAE,UAAU;QAClC,eAAe,EAAE,cAAc;QAE/B,oBAAoB,EAAE,KAAK;QAC3B,qBAAqB,EAAE,eAAe;QAEtC,2DAA2D;QAC3D,iBAAiB,EAAE,cAAc;QACjC,sBAAsB,EAAE,EAAE;QAC1B,oBAAoB,EAAE,IAAI;QAE1B,eAAe,EAAE,KAAK;QAEtB,iBAAiB,EAAG,KAAK;QAEzB,WAAW,EAAE,UAAU;QAEvB,kBAAkB,EAAG,IAAI;QACzB,cAAc,EAAG,KAAK;QACtB,eAAe,EAAG,UAAU;QAE5B,UAAU,EAAG,IAAI;KAEpB;CACJ,CAAC"}
1
+ {"version":3,"file":"PreConfiguredConstants.js","sourceRoot":"","sources":["../../../src/common/PropPaneHelp/PreConfiguredConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,2CAA2C,CAAC;AACrG,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAG/E,MAAM,CAAC,MAAM,eAAe,GAAwB;IAChD,MAAM,EAAE,iBAAiB;IACzB,QAAQ,EAAE,GAAG;IACb,KAAK,EAAE;QACH,QAAQ;QACR,iBAAiB,EAAE,kBAAkB;QACrC,eAAe,EAAE,sBAAsB;QAEvC,sCAAsC;QACtC,iBAAiB,EAAE,WAAW;QAC9B,WAAW,EAAE,+LAA+L;QAC5M,cAAc,EAAE,0NAA0N;QAE1O,YAAY,EAAE,IAAI;QAClB,cAAc,EAAE,IAAI;QACpB,sBAAsB,EAAE,UAAU;QAClC,eAAe,EAAE,cAAc;QAE/B,oBAAoB,EAAE,KAAK;QAC3B,qBAAqB,EAAE,eAAe;QAEtC,2DAA2D;QAC3D,iBAAiB,EAAE,cAAc;QACjC,sBAAsB,EAAE,EAAE;QAC1B,oBAAoB,EAAE,IAAI;QAE1B,eAAe,EAAE,KAAK;QAEtB,iBAAiB,EAAG,KAAK;QAEzB,WAAW,EAAE,UAAU;QAEvB,kBAAkB,EAAG,IAAI;QACzB,cAAc,EAAG,KAAK;QACtB,eAAe,EAAG,UAAU;QAE5B,UAAU,EAAG,IAAI;QAEjB,eAAe,EAAE,KAAK;QACtB,iBAAiB,EAAE,UAAU;QAC7B,aAAa,EAAG,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC;QAChD,aAAa,EAAG,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC;QAChD,aAAa,EAAG,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC;QAChD,aAAa,EAAG,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC;QAChD,mBAAmB,EAAG,kBAAkB;QACxC,cAAc,EAAE,IAAI;QACpB,YAAY,EAAE,EAAE;QAChB,mBAAmB,EAAG,EAAE;QACxB,YAAY,EAAE,EAAE;QAChB,mBAAmB,EAAG,EAAE;QACxB,sBAAsB,EAAG,IAAI;QAC7B,cAAc,EAAG,EAAE;QACnB,uBAAuB,EAAG,EAAE;QAE5B,cAAc,EAAE,IAAI;QACpB,YAAY,EAAG,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC;QAC9C,cAAc,EAAG,EAAE;KAEtB;CACJ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikezimm/fps-library-v2",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Library of reusable typescript/javascript functions, interfaces and constants",
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",