@axdspub/axiom-ui-forms 0.3.2 → 0.3.3-experimental.1

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.
Files changed (33) hide show
  1. package/library/esm/_virtual/index10.js +2 -2
  2. package/library/esm/_virtual/index12.js +2 -2
  3. package/library/esm/_virtual/index13.js +2 -2
  4. package/library/esm/_virtual/index14.js +2 -2
  5. package/library/esm/_virtual/index15.js +2 -2
  6. package/library/esm/_virtual/index4.js +2 -2
  7. package/library/esm/_virtual/index5.js +2 -2
  8. package/library/esm/_virtual/index8.js +2 -2
  9. package/library/esm/_virtual/index8.js.map +1 -1
  10. package/library/esm/_virtual/index9.js +2 -2
  11. package/library/esm/node_modules/ajv/dist/compile/codegen/index.js +1 -1
  12. package/library/esm/node_modules/ajv/dist/compile/index.js +1 -1
  13. package/library/esm/node_modules/ajv/dist/compile/validate/index.js +1 -1
  14. package/library/esm/node_modules/ajv/dist/vocabularies/core/index.js +1 -1
  15. package/library/esm/node_modules/ajv/dist/vocabularies/format/index.js +1 -1
  16. package/library/esm/node_modules/ajv/dist/vocabularies/validation/index.js +1 -1
  17. package/library/esm/node_modules/fast-uri/index.js +1 -1
  18. package/library/esm/node_modules/json-schema-traverse/index.js +1 -1
  19. package/library/esm/node_modules/style-to-object/cjs/index.js +1 -1
  20. package/library/esm/src/Form/Creator/FormContextProvider.js +2 -2
  21. package/library/esm/src/Form/Creator/FormContextProvider.js.map +1 -1
  22. package/library/esm/src/Form/Creator/NavElement.js +1 -1
  23. package/library/esm/src/Form/Creator/Page.js +1 -1
  24. package/library/esm/src/Form/Creator/Wizard.js +1 -1
  25. package/package.json +2 -2
  26. package/library/esm/_virtual/index16.js +0 -4
  27. package/library/esm/_virtual/index16.js.map +0 -1
  28. package/library/esm/_virtual/index17.js +0 -4
  29. package/library/esm/_virtual/index17.js.map +0 -1
  30. package/library/esm/node_modules/react-router/dist/development/chunk-NL6KNZEE.js +0 -1731
  31. package/library/esm/node_modules/react-router/dist/development/chunk-NL6KNZEE.js.map +0 -1
  32. package/library/esm/node_modules/react-router/node_modules/cookie/dist/index.js +0 -250
  33. package/library/esm/node_modules/react-router/node_modules/cookie/dist/index.js.map +0 -1
@@ -1,250 +0,0 @@
1
- import { __exports as dist } from '../../../../../_virtual/index16.js';
2
-
3
- var hasRequiredDist;
4
-
5
- function requireDist () {
6
- if (hasRequiredDist) return dist;
7
- hasRequiredDist = 1;
8
- Object.defineProperty(dist, "__esModule", { value: true });
9
- dist.parse = parse;
10
- dist.serialize = serialize;
11
- /**
12
- * RegExp to match cookie-name in RFC 6265 sec 4.1.1
13
- * This refers out to the obsoleted definition of token in RFC 2616 sec 2.2
14
- * which has been replaced by the token definition in RFC 7230 appendix B.
15
- *
16
- * cookie-name = token
17
- * token = 1*tchar
18
- * tchar = "!" / "#" / "$" / "%" / "&" / "'" /
19
- * "*" / "+" / "-" / "." / "^" / "_" /
20
- * "`" / "|" / "~" / DIGIT / ALPHA
21
- *
22
- * Note: Allowing more characters - https://github.com/jshttp/cookie/issues/191
23
- * Allow same range as cookie value, except `=`, which delimits end of name.
24
- */
25
- const cookieNameRegExp = /^[\u0021-\u003A\u003C\u003E-\u007E]+$/;
26
- /**
27
- * RegExp to match cookie-value in RFC 6265 sec 4.1.1
28
- *
29
- * cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
30
- * cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
31
- * ; US-ASCII characters excluding CTLs,
32
- * ; whitespace DQUOTE, comma, semicolon,
33
- * ; and backslash
34
- *
35
- * Allowing more characters: https://github.com/jshttp/cookie/issues/191
36
- * Comma, backslash, and DQUOTE are not part of the parsing algorithm.
37
- */
38
- const cookieValueRegExp = /^[\u0021-\u003A\u003C-\u007E]*$/;
39
- /**
40
- * RegExp to match domain-value in RFC 6265 sec 4.1.1
41
- *
42
- * domain-value = <subdomain>
43
- * ; defined in [RFC1034], Section 3.5, as
44
- * ; enhanced by [RFC1123], Section 2.1
45
- * <subdomain> = <label> | <subdomain> "." <label>
46
- * <label> = <let-dig> [ [ <ldh-str> ] <let-dig> ]
47
- * Labels must be 63 characters or less.
48
- * 'let-dig' not 'letter' in the first char, per RFC1123
49
- * <ldh-str> = <let-dig-hyp> | <let-dig-hyp> <ldh-str>
50
- * <let-dig-hyp> = <let-dig> | "-"
51
- * <let-dig> = <letter> | <digit>
52
- * <letter> = any one of the 52 alphabetic characters A through Z in
53
- * upper case and a through z in lower case
54
- * <digit> = any one of the ten digits 0 through 9
55
- *
56
- * Keep support for leading dot: https://github.com/jshttp/cookie/issues/173
57
- *
58
- * > (Note that a leading %x2E ("."), if present, is ignored even though that
59
- * character is not permitted, but a trailing %x2E ("."), if present, will
60
- * cause the user agent to ignore the attribute.)
61
- */
62
- const domainValueRegExp = /^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i;
63
- /**
64
- * RegExp to match path-value in RFC 6265 sec 4.1.1
65
- *
66
- * path-value = <any CHAR except CTLs or ";">
67
- * CHAR = %x01-7F
68
- * ; defined in RFC 5234 appendix B.1
69
- */
70
- const pathValueRegExp = /^[\u0020-\u003A\u003D-\u007E]*$/;
71
- const __toString = Object.prototype.toString;
72
- const NullObject = /* @__PURE__ */ (() => {
73
- const C = function () { };
74
- C.prototype = Object.create(null);
75
- return C;
76
- })();
77
- /**
78
- * Parse a cookie header.
79
- *
80
- * Parse the given cookie header string into an object
81
- * The object has the various cookies as keys(names) => values
82
- */
83
- function parse(str, options) {
84
- const obj = new NullObject();
85
- const len = str.length;
86
- // RFC 6265 sec 4.1.1, RFC 2616 2.2 defines a cookie name consists of one char minimum, plus '='.
87
- if (len < 2)
88
- return obj;
89
- const dec = options?.decode || decode;
90
- let index = 0;
91
- do {
92
- const eqIdx = str.indexOf("=", index);
93
- if (eqIdx === -1)
94
- break; // No more cookie pairs.
95
- const colonIdx = str.indexOf(";", index);
96
- const endIdx = colonIdx === -1 ? len : colonIdx;
97
- if (eqIdx > endIdx) {
98
- // backtrack on prior semicolon
99
- index = str.lastIndexOf(";", eqIdx - 1) + 1;
100
- continue;
101
- }
102
- const keyStartIdx = startIndex(str, index, eqIdx);
103
- const keyEndIdx = endIndex(str, eqIdx, keyStartIdx);
104
- const key = str.slice(keyStartIdx, keyEndIdx);
105
- // only assign once
106
- if (obj[key] === undefined) {
107
- let valStartIdx = startIndex(str, eqIdx + 1, endIdx);
108
- let valEndIdx = endIndex(str, endIdx, valStartIdx);
109
- const value = dec(str.slice(valStartIdx, valEndIdx));
110
- obj[key] = value;
111
- }
112
- index = endIdx + 1;
113
- } while (index < len);
114
- return obj;
115
- }
116
- function startIndex(str, index, max) {
117
- do {
118
- const code = str.charCodeAt(index);
119
- if (code !== 0x20 /* */ && code !== 0x09 /* \t */)
120
- return index;
121
- } while (++index < max);
122
- return max;
123
- }
124
- function endIndex(str, index, min) {
125
- while (index > min) {
126
- const code = str.charCodeAt(--index);
127
- if (code !== 0x20 /* */ && code !== 0x09 /* \t */)
128
- return index + 1;
129
- }
130
- return min;
131
- }
132
- /**
133
- * Serialize data into a cookie header.
134
- *
135
- * Serialize a name value pair into a cookie string suitable for
136
- * http headers. An optional options object specifies cookie parameters.
137
- *
138
- * serialize('foo', 'bar', { httpOnly: true })
139
- * => "foo=bar; httpOnly"
140
- */
141
- function serialize(name, val, options) {
142
- const enc = options?.encode || encodeURIComponent;
143
- if (!cookieNameRegExp.test(name)) {
144
- throw new TypeError(`argument name is invalid: ${name}`);
145
- }
146
- const value = enc(val);
147
- if (!cookieValueRegExp.test(value)) {
148
- throw new TypeError(`argument val is invalid: ${val}`);
149
- }
150
- let str = name + "=" + value;
151
- if (!options)
152
- return str;
153
- if (options.maxAge !== undefined) {
154
- if (!Number.isInteger(options.maxAge)) {
155
- throw new TypeError(`option maxAge is invalid: ${options.maxAge}`);
156
- }
157
- str += "; Max-Age=" + options.maxAge;
158
- }
159
- if (options.domain) {
160
- if (!domainValueRegExp.test(options.domain)) {
161
- throw new TypeError(`option domain is invalid: ${options.domain}`);
162
- }
163
- str += "; Domain=" + options.domain;
164
- }
165
- if (options.path) {
166
- if (!pathValueRegExp.test(options.path)) {
167
- throw new TypeError(`option path is invalid: ${options.path}`);
168
- }
169
- str += "; Path=" + options.path;
170
- }
171
- if (options.expires) {
172
- if (!isDate(options.expires) ||
173
- !Number.isFinite(options.expires.valueOf())) {
174
- throw new TypeError(`option expires is invalid: ${options.expires}`);
175
- }
176
- str += "; Expires=" + options.expires.toUTCString();
177
- }
178
- if (options.httpOnly) {
179
- str += "; HttpOnly";
180
- }
181
- if (options.secure) {
182
- str += "; Secure";
183
- }
184
- if (options.partitioned) {
185
- str += "; Partitioned";
186
- }
187
- if (options.priority) {
188
- const priority = typeof options.priority === "string"
189
- ? options.priority.toLowerCase()
190
- : undefined;
191
- switch (priority) {
192
- case "low":
193
- str += "; Priority=Low";
194
- break;
195
- case "medium":
196
- str += "; Priority=Medium";
197
- break;
198
- case "high":
199
- str += "; Priority=High";
200
- break;
201
- default:
202
- throw new TypeError(`option priority is invalid: ${options.priority}`);
203
- }
204
- }
205
- if (options.sameSite) {
206
- const sameSite = typeof options.sameSite === "string"
207
- ? options.sameSite.toLowerCase()
208
- : options.sameSite;
209
- switch (sameSite) {
210
- case true:
211
- case "strict":
212
- str += "; SameSite=Strict";
213
- break;
214
- case "lax":
215
- str += "; SameSite=Lax";
216
- break;
217
- case "none":
218
- str += "; SameSite=None";
219
- break;
220
- default:
221
- throw new TypeError(`option sameSite is invalid: ${options.sameSite}`);
222
- }
223
- }
224
- return str;
225
- }
226
- /**
227
- * URL-decode string value. Optimized to skip native call when no %.
228
- */
229
- function decode(str) {
230
- if (str.indexOf("%") === -1)
231
- return str;
232
- try {
233
- return decodeURIComponent(str);
234
- }
235
- catch (e) {
236
- return str;
237
- }
238
- }
239
- /**
240
- * Determine if value is a Date.
241
- */
242
- function isDate(val) {
243
- return __toString.call(val) === "[object Date]";
244
- }
245
-
246
- return dist;
247
- }
248
-
249
- export { requireDist as __require };
250
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sources":["../../../../../../../node_modules/react-router/node_modules/cookie/dist/index.js"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.parse = parse;\nexports.serialize = serialize;\n/**\n * RegExp to match cookie-name in RFC 6265 sec 4.1.1\n * This refers out to the obsoleted definition of token in RFC 2616 sec 2.2\n * which has been replaced by the token definition in RFC 7230 appendix B.\n *\n * cookie-name = token\n * token = 1*tchar\n * tchar = \"!\" / \"#\" / \"$\" / \"%\" / \"&\" / \"'\" /\n * \"*\" / \"+\" / \"-\" / \".\" / \"^\" / \"_\" /\n * \"`\" / \"|\" / \"~\" / DIGIT / ALPHA\n *\n * Note: Allowing more characters - https://github.com/jshttp/cookie/issues/191\n * Allow same range as cookie value, except `=`, which delimits end of name.\n */\nconst cookieNameRegExp = /^[\\u0021-\\u003A\\u003C\\u003E-\\u007E]+$/;\n/**\n * RegExp to match cookie-value in RFC 6265 sec 4.1.1\n *\n * cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )\n * cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E\n * ; US-ASCII characters excluding CTLs,\n * ; whitespace DQUOTE, comma, semicolon,\n * ; and backslash\n *\n * Allowing more characters: https://github.com/jshttp/cookie/issues/191\n * Comma, backslash, and DQUOTE are not part of the parsing algorithm.\n */\nconst cookieValueRegExp = /^[\\u0021-\\u003A\\u003C-\\u007E]*$/;\n/**\n * RegExp to match domain-value in RFC 6265 sec 4.1.1\n *\n * domain-value = <subdomain>\n * ; defined in [RFC1034], Section 3.5, as\n * ; enhanced by [RFC1123], Section 2.1\n * <subdomain> = <label> | <subdomain> \".\" <label>\n * <label> = <let-dig> [ [ <ldh-str> ] <let-dig> ]\n * Labels must be 63 characters or less.\n * 'let-dig' not 'letter' in the first char, per RFC1123\n * <ldh-str> = <let-dig-hyp> | <let-dig-hyp> <ldh-str>\n * <let-dig-hyp> = <let-dig> | \"-\"\n * <let-dig> = <letter> | <digit>\n * <letter> = any one of the 52 alphabetic characters A through Z in\n * upper case and a through z in lower case\n * <digit> = any one of the ten digits 0 through 9\n *\n * Keep support for leading dot: https://github.com/jshttp/cookie/issues/173\n *\n * > (Note that a leading %x2E (\".\"), if present, is ignored even though that\n * character is not permitted, but a trailing %x2E (\".\"), if present, will\n * cause the user agent to ignore the attribute.)\n */\nconst domainValueRegExp = /^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i;\n/**\n * RegExp to match path-value in RFC 6265 sec 4.1.1\n *\n * path-value = <any CHAR except CTLs or \";\">\n * CHAR = %x01-7F\n * ; defined in RFC 5234 appendix B.1\n */\nconst pathValueRegExp = /^[\\u0020-\\u003A\\u003D-\\u007E]*$/;\nconst __toString = Object.prototype.toString;\nconst NullObject = /* @__PURE__ */ (() => {\n const C = function () { };\n C.prototype = Object.create(null);\n return C;\n})();\n/**\n * Parse a cookie header.\n *\n * Parse the given cookie header string into an object\n * The object has the various cookies as keys(names) => values\n */\nfunction parse(str, options) {\n const obj = new NullObject();\n const len = str.length;\n // RFC 6265 sec 4.1.1, RFC 2616 2.2 defines a cookie name consists of one char minimum, plus '='.\n if (len < 2)\n return obj;\n const dec = options?.decode || decode;\n let index = 0;\n do {\n const eqIdx = str.indexOf(\"=\", index);\n if (eqIdx === -1)\n break; // No more cookie pairs.\n const colonIdx = str.indexOf(\";\", index);\n const endIdx = colonIdx === -1 ? len : colonIdx;\n if (eqIdx > endIdx) {\n // backtrack on prior semicolon\n index = str.lastIndexOf(\";\", eqIdx - 1) + 1;\n continue;\n }\n const keyStartIdx = startIndex(str, index, eqIdx);\n const keyEndIdx = endIndex(str, eqIdx, keyStartIdx);\n const key = str.slice(keyStartIdx, keyEndIdx);\n // only assign once\n if (obj[key] === undefined) {\n let valStartIdx = startIndex(str, eqIdx + 1, endIdx);\n let valEndIdx = endIndex(str, endIdx, valStartIdx);\n const value = dec(str.slice(valStartIdx, valEndIdx));\n obj[key] = value;\n }\n index = endIdx + 1;\n } while (index < len);\n return obj;\n}\nfunction startIndex(str, index, max) {\n do {\n const code = str.charCodeAt(index);\n if (code !== 0x20 /* */ && code !== 0x09 /* \\t */)\n return index;\n } while (++index < max);\n return max;\n}\nfunction endIndex(str, index, min) {\n while (index > min) {\n const code = str.charCodeAt(--index);\n if (code !== 0x20 /* */ && code !== 0x09 /* \\t */)\n return index + 1;\n }\n return min;\n}\n/**\n * Serialize data into a cookie header.\n *\n * Serialize a name value pair into a cookie string suitable for\n * http headers. An optional options object specifies cookie parameters.\n *\n * serialize('foo', 'bar', { httpOnly: true })\n * => \"foo=bar; httpOnly\"\n */\nfunction serialize(name, val, options) {\n const enc = options?.encode || encodeURIComponent;\n if (!cookieNameRegExp.test(name)) {\n throw new TypeError(`argument name is invalid: ${name}`);\n }\n const value = enc(val);\n if (!cookieValueRegExp.test(value)) {\n throw new TypeError(`argument val is invalid: ${val}`);\n }\n let str = name + \"=\" + value;\n if (!options)\n return str;\n if (options.maxAge !== undefined) {\n if (!Number.isInteger(options.maxAge)) {\n throw new TypeError(`option maxAge is invalid: ${options.maxAge}`);\n }\n str += \"; Max-Age=\" + options.maxAge;\n }\n if (options.domain) {\n if (!domainValueRegExp.test(options.domain)) {\n throw new TypeError(`option domain is invalid: ${options.domain}`);\n }\n str += \"; Domain=\" + options.domain;\n }\n if (options.path) {\n if (!pathValueRegExp.test(options.path)) {\n throw new TypeError(`option path is invalid: ${options.path}`);\n }\n str += \"; Path=\" + options.path;\n }\n if (options.expires) {\n if (!isDate(options.expires) ||\n !Number.isFinite(options.expires.valueOf())) {\n throw new TypeError(`option expires is invalid: ${options.expires}`);\n }\n str += \"; Expires=\" + options.expires.toUTCString();\n }\n if (options.httpOnly) {\n str += \"; HttpOnly\";\n }\n if (options.secure) {\n str += \"; Secure\";\n }\n if (options.partitioned) {\n str += \"; Partitioned\";\n }\n if (options.priority) {\n const priority = typeof options.priority === \"string\"\n ? options.priority.toLowerCase()\n : undefined;\n switch (priority) {\n case \"low\":\n str += \"; Priority=Low\";\n break;\n case \"medium\":\n str += \"; Priority=Medium\";\n break;\n case \"high\":\n str += \"; Priority=High\";\n break;\n default:\n throw new TypeError(`option priority is invalid: ${options.priority}`);\n }\n }\n if (options.sameSite) {\n const sameSite = typeof options.sameSite === \"string\"\n ? options.sameSite.toLowerCase()\n : options.sameSite;\n switch (sameSite) {\n case true:\n case \"strict\":\n str += \"; SameSite=Strict\";\n break;\n case \"lax\":\n str += \"; SameSite=Lax\";\n break;\n case \"none\":\n str += \"; SameSite=None\";\n break;\n default:\n throw new TypeError(`option sameSite is invalid: ${options.sameSite}`);\n }\n }\n return str;\n}\n/**\n * URL-decode string value. Optimized to skip native call when no %.\n */\nfunction decode(str) {\n if (str.indexOf(\"%\") === -1)\n return str;\n try {\n return decodeURIComponent(str);\n }\n catch (e) {\n return str;\n }\n}\n/**\n * Determine if value is a Date.\n */\nfunction isDate(val) {\n return __toString.call(val) === \"[object Date]\";\n}\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":"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","x_google_ignoreList":[0]}