@digipair/skill-keycloak 0.35.0 → 0.36.2

Sign up to get free protection for your applications and to get access to all the features.
package/index.esm.js CHANGED
@@ -23494,14 +23494,14 @@ function indent(str, spaces) {
23494
23494
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23495
23495
  // match is required
23496
23496
  if (!match) {
23497
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23497
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23498
23498
  v: nextMatch1
23499
23499
  };
23500
23500
  }
23501
23501
  var token = match.token, offset = match.offset;
23502
23502
  i1 += offset;
23503
23503
  if (token === " ") {
23504
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23504
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23505
23505
  }
23506
23506
  tokens1 = _to_consumable_array$3(tokens1).concat([
23507
23507
  token
@@ -23520,7 +23520,7 @@ function indent(str, spaces) {
23520
23520
  if (contextKeys.some(function(el) {
23521
23521
  return el.startsWith(name);
23522
23522
  })) {
23523
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23523
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23524
23524
  }
23525
23525
  if (dateTimeIdentifiers.some(function(el) {
23526
23526
  return el === name;
@@ -23539,9 +23539,9 @@ function indent(str, spaces) {
23539
23539
  if (dateTimeIdentifiers.some(function(el) {
23540
23540
  return el.startsWith(name);
23541
23541
  })) {
23542
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23542
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23543
23543
  }
23544
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23544
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23545
23545
  v: nextMatch1
23546
23546
  };
23547
23547
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-keycloak",
3
- "version": "0.35.0",
3
+ "version": "0.36.2",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
@@ -1,2 +0,0 @@
1
- export * from './lib/engine';
2
- export * from './lib/pins-settings.interface';
@@ -1,9 +0,0 @@
1
- export interface Alias {
2
- name: string;
3
- library: string;
4
- element: string;
5
- properties: {
6
- library: string;
7
- element: string;
8
- };
9
- }
@@ -1,10 +0,0 @@
1
- import { PinsSettings } from './pins-settings.interface';
2
- type CONFIG_KEY = 'BASE_URL' | 'LIBRARIES' | 'ALIAS';
3
- export declare const config: {
4
- set: (key: CONFIG_KEY, value: any) => void;
5
- };
6
- export declare const applyTemplate: (value: any, context: any) => any;
7
- export declare const executePinsList: (pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
8
- export declare const generateElementFromPins: (pinsSettings: PinsSettings, parent: Element, context: any) => Promise<Element | void>;
9
- export declare const preparePinsSettings: (settings: PinsSettings, context: any) => Promise<PinsSettings>;
10
- export {};
@@ -1,15 +0,0 @@
1
- export interface PinsSettings {
2
- library: string;
3
- element: string;
4
- properties?: {
5
- [key: string]: any;
6
- };
7
- conditions?: {
8
- if?: boolean;
9
- each?: any[];
10
- };
11
- pins?: PinsSettings[];
12
- events?: {
13
- [key: string]: PinsSettings[];
14
- };
15
- }