lucid-extension-sdk 0.0.406 → 0.0.407

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.
@@ -86,7 +86,6 @@ export type TextBadgeSettings = {
86
86
  maxfontsize?: number | undefined;
87
87
  maxtextwidth?: number | undefined;
88
88
  iswithinpill?: boolean | undefined;
89
- usingcarduirefresh?: boolean | undefined;
90
89
  hasleadingicon?: boolean | undefined;
91
90
  };
92
91
  export interface StencilConfig {
@@ -206,7 +205,6 @@ export declare const isSerializedLucidCardFieldSettings: (subject: unknown) => s
206
205
  maxfontsize: (x: unknown) => x is number | undefined;
207
206
  maxtextwidth: (x: unknown) => x is number | undefined;
208
207
  iswithinpill: (x: unknown) => x is boolean | undefined;
209
- usingcarduirefresh: (x: unknown) => x is boolean | undefined;
210
208
  hasleadingicon: (x: unknown) => x is boolean | undefined;
211
209
  }> | undefined;
212
210
  }> | undefined;
@@ -92,7 +92,6 @@ const isTextBadgeSettings = (0, validators_1.objectValidator)({
92
92
  'maxfontsize': (0, validators_1.option)(checks_1.isNumber),
93
93
  'maxtextwidth': (0, validators_1.option)(checks_1.isNumber),
94
94
  'iswithinpill': (0, validators_1.option)(checks_1.isBoolean),
95
- 'usingcarduirefresh': (0, validators_1.option)(checks_1.isBoolean),
96
95
  'hasleadingicon': (0, validators_1.option)(checks_1.isBoolean),
97
96
  });
98
97
  const isStencilConfig = (0, validators_1.objectValidator)({
@@ -117,7 +116,7 @@ function copyLucidCardFieldDisplaySettings(settings) {
117
116
  exports.copyLucidCardFieldDisplaySettings = copyLucidCardFieldDisplaySettings;
118
117
  /** @ignore */
119
118
  function serializeLucidCardFieldDisplaySettings(settings) {
120
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
119
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
121
120
  return {
122
121
  'StencilConfig': settings.stencilConfig && {
123
122
  'getterKey': settings.stencilConfig.displayType,
@@ -143,8 +142,7 @@ function serializeLucidCardFieldDisplaySettings(settings) {
143
142
  'maxfontsize': (_g = settings.stencilConfig.textBadgeSettings) === null || _g === void 0 ? void 0 : _g.maxfontsize,
144
143
  'maxtextwidth': (_h = settings.stencilConfig.textBadgeSettings) === null || _h === void 0 ? void 0 : _h.maxtextwidth,
145
144
  'iswithinpill': (_j = settings.stencilConfig.textBadgeSettings) === null || _j === void 0 ? void 0 : _j.iswithinpill,
146
- 'usingcarduirefresh': (_k = settings.stencilConfig.textBadgeSettings) === null || _k === void 0 ? void 0 : _k.usingcarduirefresh,
147
- 'hasleadingicon': (_l = settings.stencilConfig.textBadgeSettings) === null || _l === void 0 ? void 0 : _l.hasleadingicon,
145
+ 'hasleadingicon': (_k = settings.stencilConfig.textBadgeSettings) === null || _k === void 0 ? void 0 : _k.hasleadingicon,
148
146
  },
149
147
  },
150
148
  };
@@ -152,7 +150,7 @@ function serializeLucidCardFieldDisplaySettings(settings) {
152
150
  exports.serializeLucidCardFieldDisplaySettings = serializeLucidCardFieldDisplaySettings;
153
151
  /** @ignore */
154
152
  function deserializeLucidCardFieldDisplaySettings(settings) {
155
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
153
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
156
154
  return {
157
155
  stencilConfig: settings['StencilConfig'] && {
158
156
  displayType: settings['StencilConfig']['getterKey'],
@@ -178,8 +176,7 @@ function deserializeLucidCardFieldDisplaySettings(settings) {
178
176
  maxfontsize: (_g = settings['StencilConfig']['textBadgeSettings']) === null || _g === void 0 ? void 0 : _g['maxfontsize'],
179
177
  maxtextwidth: (_h = settings['StencilConfig']['textBadgeSettings']) === null || _h === void 0 ? void 0 : _h['maxtextwidth'],
180
178
  iswithinpill: (_j = settings['StencilConfig']['textBadgeSettings']) === null || _j === void 0 ? void 0 : _j['iswithinpill'],
181
- usingcarduirefresh: (_k = settings['StencilConfig']['textBadgeSettings']) === null || _k === void 0 ? void 0 : _k['usingcarduirefresh'],
182
- hasleadingicon: (_l = settings['StencilConfig']['textBadgeSettings']) === null || _l === void 0 ? void 0 : _l['hasleadingicon'],
179
+ hasleadingicon: (_k = settings['StencilConfig']['textBadgeSettings']) === null || _k === void 0 ? void 0 : _k['hasleadingicon'],
183
180
  },
184
181
  },
185
182
  };
@@ -76,7 +76,6 @@ export declare const isSerializedCardIntegrationConfig: (subject: unknown) => su
76
76
  maxfontsize: (x: unknown) => x is number | undefined;
77
77
  maxtextwidth: (x: unknown) => x is number | undefined;
78
78
  iswithinpill: (x: unknown) => x is boolean | undefined;
79
- usingcarduirefresh: (x: unknown) => x is boolean | undefined;
80
79
  hasleadingicon: (x: unknown) => x is boolean | undefined;
81
80
  }> | undefined;
82
81
  }> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.406",
3
+ "version": "0.0.407",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",