@emeraldemperaur/vector-sigma 1.4.18 → 1.4.20

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 (30) hide show
  1. package/README.md +12 -1
  2. package/lib/index.cjs +21 -15
  3. package/lib/index.esm.js +21 -15
  4. package/lib/types/components/datepicker/datepicker.d.ts +65 -1
  5. package/lib/types/components/daterangepicker/daterangepicker.d.ts +64 -0
  6. package/lib/types/components/datetimepicker/datetimepicker.d.ts +64 -0
  7. package/lib/types/components/dropdown/dropdown.d.ts +88 -14
  8. package/lib/types/components/file/file.d.ts +71 -6
  9. package/lib/types/components/file/filemultiple.d.ts +75 -4
  10. package/lib/types/components/icons/flagicon.d.ts +5 -0
  11. package/lib/types/components/image/image.d.ts +61 -0
  12. package/lib/types/components/input/input.d.ts +83 -4
  13. package/lib/types/components/inputcurrency/inputcurrency.d.ts +88 -0
  14. package/lib/types/components/inputcurrency/stockInput.d.ts +70 -0
  15. package/lib/types/components/radio/radio.d.ts +89 -6
  16. package/lib/types/components/select/select.d.ts +88 -14
  17. package/lib/types/components/selectmultiple/selectmultiple.d.ts +80 -4
  18. package/lib/types/components/slider/range.d.ts +86 -7
  19. package/lib/types/components/slider/slider.d.ts +84 -9
  20. package/lib/types/components/toggle/toggle.d.ts +62 -1
  21. package/lib/types/components/xtitle/xtitle.d.ts +73 -1
  22. package/lib/types/layouts/accordion/accordion.d.ts +88 -0
  23. package/lib/types/layouts/codex/codex.d.ts +88 -0
  24. package/lib/types/layouts/column/column.d.ts +44 -0
  25. package/lib/types/layouts/container/container.d.ts +15 -0
  26. package/lib/types/layouts/row/row.d.ts +20 -0
  27. package/lib/types/teletraan1.d.ts +4 -1
  28. package/lib/types/utils/architect.d.ts +14 -0
  29. package/lib/types/utils/voltaire.d.ts +24 -0
  30. package/package.json +12 -3
package/README.md CHANGED
@@ -96,7 +96,7 @@ const App = () => {
96
96
 
97
97
  <li><strong>🧩Exported UI Components</strong></br>
98
98
  <p align="justify">Explicitly exported reusable form UI components with material, outline and neumorphic design variants from package entry point <code>src/index.ts</code> to enable developer-friendly use as lightweight component library.</p>
99
- <p><em>Container, Row, Column, Theme, AvatarInput, ButtonInput, CheckboxGroupInput, ConditionalTrigger, DatePicker, DateRangePicker, DateTimePicker, Dropdown, File, FileMultiple, FlagIcon, Icon, Image, Input, PasswordInput, PhoneInput, UUIDInput, CreditCardInput, CurrencyInput, StockInput, RadioGroupInput, OptionSelect, MultipleSelect, RangeSlider, SliderInput, Toggle, SectionTitle</em></p>
99
+ <p><em>Container, Row, Column, Theme, AvatarInput, ButtonInput, CheckboxGroupInput, ConditionalTrigger, DatePicker, DateRangePicker, DateTimePicker, Dropdown, File, FileMultiple, FlagIcon, Icon, Image, Input, PasswordInput, PhoneInput, CreditCardInput, CurrencyInput, StockInput, RadioGroupInput, OptionSelect, MultipleSelect, RangeSlider, SliderInput, Toggle, SectionTitle</em></p>
100
100
 
101
101
  ```javascript
102
102
  import { Container, Column, Row, CheckboxGroup, Dropdown, File, RangeSlider }
@@ -190,6 +190,8 @@ const App = () => {
190
190
 
191
191
  ```bash
192
192
  npm install --save-dev @changesets/cli
193
+ # Changeset project initializer
194
+ npx changeset init
193
195
  ```
194
196
  </li>
195
197
  <li>
@@ -208,6 +210,15 @@ git checkout -b new-changeset-branchname
208
210
  ```bash
209
211
  # Changeset - patch, minor, major versioning
210
212
  npx changeset
213
+
214
+ # PreRelease mode (alpha)
215
+ npx changeset pre enter alpha
216
+
217
+ # PreRelease mode (beta)
218
+ npx changeset pre enter beta
219
+
220
+ # Exit PreRelease mode
221
+ npx changeset pre exit
211
222
  ```
212
223
  </li>
213
224
 
package/lib/index.cjs CHANGED
@@ -26538,7 +26538,7 @@ const DateTimePicker = ({ alias, inputLabel, inputtype = 'datetimepicker-outline
26538
26538
  };
26539
26539
 
26540
26540
  const Dropdown = (_a) => {
26541
- var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, value, inputOptions, style, newRow, isHinted, hintText, hintUrl, defaultvalue, errorText, className } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "value", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "defaultvalue", "errorText", "className"]);
26541
+ var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, inputOptions, style, newRow, isHinted, hintText, hintUrl, errorText, className } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "className"]);
26542
26542
  const triggerRef = React.useRef(null);
26543
26543
  const [neuVars, setNeuVars] = React.useState({});
26544
26544
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
@@ -26673,7 +26673,7 @@ const getFileIcon$1 = (type, name) => {
26673
26673
  };
26674
26674
  const File$1 = (_a) => {
26675
26675
  var _b;
26676
- var { inputtype = 'fileinput-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, preview = false, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "preview", "className", "style"]);
26676
+ var { inputtype = 'fileinput-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, preview = false, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "preview", "className", "style"]);
26677
26677
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
26678
26678
  const [field, meta] = formik.useField(alias);
26679
26679
  const selectedFile = field.value;
@@ -34198,7 +34198,7 @@ var Flags = /*#__PURE__*/Object.freeze({
34198
34198
 
34199
34199
  const FlagIcon = ({ country }) => {
34200
34200
  const FlagComponent = Flags[country];
34201
- // Render the flag or a fallback placeholder if not found
34201
+ // Renders the flag or a fallback placeholder if not found
34202
34202
  if (country === 'EU') {
34203
34203
  return React.createElement(EU, { style: { width: '18px', height: '12px', borderRadius: '2px' } });
34204
34204
  }
@@ -41905,11 +41905,12 @@ const safeParseUuidFormat = (typeString) => {
41905
41905
  }
41906
41906
  };
41907
41907
  const UUIDInput = (_a) => {
41908
- var { alias, type = "uuid", inputLabel, width, delimiter = "-", format = [8, 4, 4, 4, 12], placeholder = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', newRow, isHinted, hintText, hintUrl, errorText, readOnly = false, inputVariant = 'uuid-outline', size = "2", className } = _a, props = __rest$1(_a, ["alias", "type", "inputLabel", "width", "delimiter", "format", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "readOnly", "inputVariant", "size", "className"]);
41908
+ var { alias, type = "uuid-4-4-4-4", inputLabel, width, delimiter = "-", format = [4, 4, 4, 4], placeholder = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', newRow, isHinted, hintText, hintUrl, errorText, readOnly = false, inputVariant = 'uuid-outline', size = "2", className } = _a, props = __rest$1(_a, ["alias", "type", "inputLabel", "width", "delimiter", "format", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "readOnly", "inputVariant", "size", "className"]);
41909
41909
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
41910
41910
  const [field, meta] = formik.useField(alias);
41911
41911
  const hasError = Boolean(meta.touched && meta.error);
41912
41912
  const [copied, setCopied] = React.useState(false);
41913
+ const [uuidNumber, setUUIDNumber] = React.useState("");
41913
41914
  const errorId = `${alias}-error`;
41914
41915
  const activeFormat = React.useMemo(() => {
41915
41916
  const parsed = safeParseUuidFormat(type);
@@ -41935,7 +41936,8 @@ const UUIDInput = (_a) => {
41935
41936
  const handleChange = (e) => {
41936
41937
  const val = e.target.value;
41937
41938
  const formatted = formatUUID(val);
41938
- setFieldValue(alias, formatted);
41939
+ setUUIDNumber(formatted);
41940
+ setFieldValue(alias, uuidNumber);
41939
41941
  };
41940
41942
  const handleCopy = () => {
41941
41943
  if (field.value) {
@@ -47452,7 +47454,7 @@ const StockInput = (_a) => {
47452
47454
  };
47453
47455
 
47454
47456
  const RadioGroupInput = (_a) => {
47455
- var { inputtype = 'radio-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, style, inputOptions, direction = 'column', columns, className } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "style", "inputOptions", "direction", "columns", "className"]);
47457
+ var { inputtype = 'radio-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, style, inputOptions, direction = 'column', columns, className } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "style", "inputOptions", "direction", "columns", "className"]);
47456
47458
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
47457
47459
  const [field, meta] = formik.useField(alias);
47458
47460
  const hasError = Boolean(meta.touched && meta.error);
@@ -47534,7 +47536,7 @@ const RadioGroupInput = (_a) => {
47534
47536
  };
47535
47537
 
47536
47538
  const OptionSelect = (_a) => {
47537
- var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, value, inputOptions, style, newRow, isHinted, hintText, hintUrl, defaultvalue, errorText } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "value", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "defaultvalue", "errorText"]);
47539
+ var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, inputOptions, style, newRow, isHinted, hintText, hintUrl, errorText } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "errorText"]);
47538
47540
  const triggerRef = React.useRef(null);
47539
47541
  const [neuVars, setNeuVars] = React.useState({});
47540
47542
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
@@ -47747,10 +47749,10 @@ const MultipleSelect = (_a) => {
47747
47749
  };
47748
47750
 
47749
47751
  const SliderInput = (_a) => {
47750
- var { inputtype = 'slider-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, minValue = 0, maxValue = 100, stepValue = 1, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minValue", "maxValue", "stepValue", "className", "style"]);
47752
+ var { inputtype = 'slider-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "className", "style"]);
47751
47753
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
47752
47754
  const [field, meta] = formik.useField(alias);
47753
- const fieldValue = Array.isArray(field.value) ? field.value : [field.value || minValue];
47755
+ const fieldValue = Array.isArray(field.value) ? field.value : [field.value || minvalue];
47754
47756
  const hasError = Boolean(meta.touched && meta.error);
47755
47757
  const containerRef = React.useRef(null);
47756
47758
  const [neuVars, setNeuVars] = React.useState({});
@@ -47827,7 +47829,7 @@ const SliderInput = (_a) => {
47827
47829
  box-shadow: none;
47828
47830
  }
47829
47831
  ` } }),
47830
- React.createElement(s, { name: alias, id: `${alias}FormInput`, disabled: readOnly, "aria-describedby": `${alias}InputLabel`, min: minValue, max: maxValue, step: stepValue, value: fieldValue, onValueChange: (val) => {
47832
+ React.createElement(s, { name: alias, id: `${alias}FormInput`, disabled: readOnly, "aria-describedby": `${alias}InputLabel`, min: minvalue, max: maxvalue, step: stepvalue, value: fieldValue, onValueChange: (val) => {
47831
47833
  setFieldValue(alias, val[0]);
47832
47834
  }, onValueCommit: () => {
47833
47835
  setFieldTouched(alias, true);
@@ -47846,7 +47848,7 @@ const SliderInput = (_a) => {
47846
47848
  };
47847
47849
 
47848
47850
  const RangeSlider = (_a) => {
47849
- var { inputtype = 'range-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, minStepsBetweenThumbs = 0, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "minStepsBetweenThumbs", "className", "style"]);
47851
+ var { inputtype = 'range-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, minStepsBetweenThumbs = 0, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "minStepsBetweenThumbs", "className", "style"]);
47850
47852
  const { setFieldValue, setFieldTouched } = formik.useFormikContext();
47851
47853
  const [field, meta] = formik.useField(alias);
47852
47854
  // Range Formik Logic
@@ -47966,7 +47968,6 @@ const Toggle = (_a) => {
47966
47968
  setFieldTouched(alias, true);
47967
47969
  }
47968
47970
  };
47969
- // Determine Icon Color: Deep accent if Checked & Active, Grey otherwise
47970
47971
  const iconColor = field.value && !readOnly ? 'var(--accent-9)' : 'var(--gray-8)';
47971
47972
  return (React.createElement(Column, { span: width, newLine: newRow },
47972
47973
  React.createElement("div", { ref: containerRef, style: { width: '100%', display: 'flex', flexDirection: 'column', gap: '4px' } },
@@ -48073,7 +48074,8 @@ const SectionTitle = ({ title, width = 12, newRow = true, size = "5", subsize =
48073
48074
  subTitle && (React.createElement(p$d, { size: subsize, style: {
48074
48075
  color: subtitleColor || 'var(--gray-11)',
48075
48076
  maxWidth: '80%',
48076
- margin: align === 'center' ? '0 auto' : undefined
48077
+ margin: align === 'center' ? '0 auto' : undefined,
48078
+ letterSpacing: `${letterSpacing}`
48077
48079
  } }, subTitle)),
48078
48080
  withSeparator && (React.createElement(o$2, { size: "4", style: {
48079
48081
  width: '100%',
@@ -52548,6 +52550,7 @@ const NestedQuerySchema = object({
52548
52550
  inputAlias: string(),
52549
52551
  inputLabel: string(),
52550
52552
  inputPlaceholder: string(),
52553
+ defaultValue: any().optional(),
52551
52554
  newRow: boolean(),
52552
52555
  inputWidth: number(),
52553
52556
  isRequired: boolean(),
@@ -52557,7 +52560,8 @@ const NestedQuerySchema = object({
52557
52560
  queryResponse: any().nullable(),
52558
52561
  inputOptions: array(InputOptionSchema).nullable().optional(),
52559
52562
  toggledInput: any().nullable().optional(),
52560
- toggleTrigger: any().nullable().optional()
52563
+ toggleTrigger: any().nullable().optional(),
52564
+ errorText: string().optional()
52561
52565
  });
52562
52566
  const QuerySchema = object({
52563
52567
  queryId: number().or(uuid()),
@@ -52565,6 +52569,7 @@ const QuerySchema = object({
52565
52569
  inputAlias: string(),
52566
52570
  inputLabel: string(),
52567
52571
  inputPlaceholder: string(),
52572
+ defaultValue: any().optional(),
52568
52573
  minValue: number().optional(),
52569
52574
  maxValue: number().optional(),
52570
52575
  stepValue: number().or(float64()).optional(),
@@ -52577,7 +52582,8 @@ const QuerySchema = object({
52577
52582
  queryResponse: any().nullable(),
52578
52583
  inputOptions: array(InputOptionSchema).optional(),
52579
52584
  toggledInput: NestedQuerySchema.nullable().optional(),
52580
- toggleTrigger: any().nullable().optional()
52585
+ toggleTrigger: any().nullable().optional(),
52586
+ errorText: string().optional()
52581
52587
  });
52582
52588
  const SectionSchema = object({
52583
52589
  sectionId: number(),
package/lib/index.esm.js CHANGED
@@ -26518,7 +26518,7 @@ const DateTimePicker = ({ alias, inputLabel, inputtype = 'datetimepicker-outline
26518
26518
  };
26519
26519
 
26520
26520
  const Dropdown = (_a) => {
26521
- var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, value, inputOptions, style, newRow, isHinted, hintText, hintUrl, defaultvalue, errorText, className } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "value", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "defaultvalue", "errorText", "className"]);
26521
+ var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, inputOptions, style, newRow, isHinted, hintText, hintUrl, errorText, className } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "className"]);
26522
26522
  const triggerRef = useRef(null);
26523
26523
  const [neuVars, setNeuVars] = useState({});
26524
26524
  const { setFieldValue, setFieldTouched } = useFormikContext();
@@ -26653,7 +26653,7 @@ const getFileIcon$1 = (type, name) => {
26653
26653
  };
26654
26654
  const File$1 = (_a) => {
26655
26655
  var _b;
26656
- var { inputtype = 'fileinput-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, preview = false, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "preview", "className", "style"]);
26656
+ var { inputtype = 'fileinput-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, preview = false, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "preview", "className", "style"]);
26657
26657
  const { setFieldValue, setFieldTouched } = useFormikContext();
26658
26658
  const [field, meta] = useField(alias);
26659
26659
  const selectedFile = field.value;
@@ -34178,7 +34178,7 @@ var Flags = /*#__PURE__*/Object.freeze({
34178
34178
 
34179
34179
  const FlagIcon = ({ country }) => {
34180
34180
  const FlagComponent = Flags[country];
34181
- // Render the flag or a fallback placeholder if not found
34181
+ // Renders the flag or a fallback placeholder if not found
34182
34182
  if (country === 'EU') {
34183
34183
  return React__default.createElement(EU, { style: { width: '18px', height: '12px', borderRadius: '2px' } });
34184
34184
  }
@@ -41885,11 +41885,12 @@ const safeParseUuidFormat = (typeString) => {
41885
41885
  }
41886
41886
  };
41887
41887
  const UUIDInput = (_a) => {
41888
- var { alias, type = "uuid", inputLabel, width, delimiter = "-", format = [8, 4, 4, 4, 12], placeholder = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', newRow, isHinted, hintText, hintUrl, errorText, readOnly = false, inputVariant = 'uuid-outline', size = "2", className } = _a, props = __rest$1(_a, ["alias", "type", "inputLabel", "width", "delimiter", "format", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "readOnly", "inputVariant", "size", "className"]);
41888
+ var { alias, type = "uuid-4-4-4-4", inputLabel, width, delimiter = "-", format = [4, 4, 4, 4], placeholder = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', newRow, isHinted, hintText, hintUrl, errorText, readOnly = false, inputVariant = 'uuid-outline', size = "2", className } = _a, props = __rest$1(_a, ["alias", "type", "inputLabel", "width", "delimiter", "format", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "readOnly", "inputVariant", "size", "className"]);
41889
41889
  const { setFieldValue, setFieldTouched } = useFormikContext();
41890
41890
  const [field, meta] = useField(alias);
41891
41891
  const hasError = Boolean(meta.touched && meta.error);
41892
41892
  const [copied, setCopied] = useState(false);
41893
+ const [uuidNumber, setUUIDNumber] = useState("");
41893
41894
  const errorId = `${alias}-error`;
41894
41895
  const activeFormat = useMemo(() => {
41895
41896
  const parsed = safeParseUuidFormat(type);
@@ -41915,7 +41916,8 @@ const UUIDInput = (_a) => {
41915
41916
  const handleChange = (e) => {
41916
41917
  const val = e.target.value;
41917
41918
  const formatted = formatUUID(val);
41918
- setFieldValue(alias, formatted);
41919
+ setUUIDNumber(formatted);
41920
+ setFieldValue(alias, uuidNumber);
41919
41921
  };
41920
41922
  const handleCopy = () => {
41921
41923
  if (field.value) {
@@ -47432,7 +47434,7 @@ const StockInput = (_a) => {
47432
47434
  };
47433
47435
 
47434
47436
  const RadioGroupInput = (_a) => {
47435
- var { inputtype = 'radio-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, style, inputOptions, direction = 'column', columns, className } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "style", "inputOptions", "direction", "columns", "className"]);
47437
+ var { inputtype = 'radio-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, style, inputOptions, direction = 'column', columns, className } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "style", "inputOptions", "direction", "columns", "className"]);
47436
47438
  const { setFieldValue, setFieldTouched } = useFormikContext();
47437
47439
  const [field, meta] = useField(alias);
47438
47440
  const hasError = Boolean(meta.touched && meta.error);
@@ -47514,7 +47516,7 @@ const RadioGroupInput = (_a) => {
47514
47516
  };
47515
47517
 
47516
47518
  const OptionSelect = (_a) => {
47517
- var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, value, inputOptions, style, newRow, isHinted, hintText, hintUrl, defaultvalue, errorText } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "value", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "defaultvalue", "errorText"]);
47519
+ var { inputtype = 'dropdown-outline', alias, readOnly, width, inputLabel, placeholder, inputOptions, style, newRow, isHinted, hintText, hintUrl, errorText } = _a, props = __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "inputOptions", "style", "newRow", "isHinted", "hintText", "hintUrl", "errorText"]);
47518
47520
  const triggerRef = useRef(null);
47519
47521
  const [neuVars, setNeuVars] = useState({});
47520
47522
  const { setFieldValue, setFieldTouched } = useFormikContext();
@@ -47727,10 +47729,10 @@ const MultipleSelect = (_a) => {
47727
47729
  };
47728
47730
 
47729
47731
  const SliderInput = (_a) => {
47730
- var { inputtype = 'slider-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, minValue = 0, maxValue = 100, stepValue = 1, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minValue", "maxValue", "stepValue", "className", "style"]);
47732
+ var { inputtype = 'slider-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "className", "style"]);
47731
47733
  const { setFieldValue, setFieldTouched } = useFormikContext();
47732
47734
  const [field, meta] = useField(alias);
47733
- const fieldValue = Array.isArray(field.value) ? field.value : [field.value || minValue];
47735
+ const fieldValue = Array.isArray(field.value) ? field.value : [field.value || minvalue];
47734
47736
  const hasError = Boolean(meta.touched && meta.error);
47735
47737
  const containerRef = useRef(null);
47736
47738
  const [neuVars, setNeuVars] = useState({});
@@ -47807,7 +47809,7 @@ const SliderInput = (_a) => {
47807
47809
  box-shadow: none;
47808
47810
  }
47809
47811
  ` } }),
47810
- React__default.createElement(s, { name: alias, id: `${alias}FormInput`, disabled: readOnly, "aria-describedby": `${alias}InputLabel`, min: minValue, max: maxValue, step: stepValue, value: fieldValue, onValueChange: (val) => {
47812
+ React__default.createElement(s, { name: alias, id: `${alias}FormInput`, disabled: readOnly, "aria-describedby": `${alias}InputLabel`, min: minvalue, max: maxvalue, step: stepvalue, value: fieldValue, onValueChange: (val) => {
47811
47813
  setFieldValue(alias, val[0]);
47812
47814
  }, onValueCommit: () => {
47813
47815
  setFieldTouched(alias, true);
@@ -47826,7 +47828,7 @@ const SliderInput = (_a) => {
47826
47828
  };
47827
47829
 
47828
47830
  const RangeSlider = (_a) => {
47829
- var { inputtype = 'range-outline', alias, readOnly, width, inputLabel, placeholder = '', newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, minStepsBetweenThumbs = 0, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "placeholder", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "minStepsBetweenThumbs", "className", "style"]);
47831
+ var { inputtype = 'range-outline', alias, readOnly, width, inputLabel, newRow, isHinted, hintText, hintUrl, errorText, minvalue = 0, maxvalue = 100, stepvalue = 1, minStepsBetweenThumbs = 0, className, style } = _a; __rest$1(_a, ["inputtype", "alias", "readOnly", "width", "inputLabel", "newRow", "isHinted", "hintText", "hintUrl", "errorText", "minvalue", "maxvalue", "stepvalue", "minStepsBetweenThumbs", "className", "style"]);
47830
47832
  const { setFieldValue, setFieldTouched } = useFormikContext();
47831
47833
  const [field, meta] = useField(alias);
47832
47834
  // Range Formik Logic
@@ -47946,7 +47948,6 @@ const Toggle = (_a) => {
47946
47948
  setFieldTouched(alias, true);
47947
47949
  }
47948
47950
  };
47949
- // Determine Icon Color: Deep accent if Checked & Active, Grey otherwise
47950
47951
  const iconColor = field.value && !readOnly ? 'var(--accent-9)' : 'var(--gray-8)';
47951
47952
  return (React__default.createElement(Column, { span: width, newLine: newRow },
47952
47953
  React__default.createElement("div", { ref: containerRef, style: { width: '100%', display: 'flex', flexDirection: 'column', gap: '4px' } },
@@ -48053,7 +48054,8 @@ const SectionTitle = ({ title, width = 12, newRow = true, size = "5", subsize =
48053
48054
  subTitle && (React__default.createElement(p$d, { size: subsize, style: {
48054
48055
  color: subtitleColor || 'var(--gray-11)',
48055
48056
  maxWidth: '80%',
48056
- margin: align === 'center' ? '0 auto' : undefined
48057
+ margin: align === 'center' ? '0 auto' : undefined,
48058
+ letterSpacing: `${letterSpacing}`
48057
48059
  } }, subTitle)),
48058
48060
  withSeparator && (React__default.createElement(o$2, { size: "4", style: {
48059
48061
  width: '100%',
@@ -52528,6 +52530,7 @@ const NestedQuerySchema = object({
52528
52530
  inputAlias: string(),
52529
52531
  inputLabel: string(),
52530
52532
  inputPlaceholder: string(),
52533
+ defaultValue: any().optional(),
52531
52534
  newRow: boolean(),
52532
52535
  inputWidth: number(),
52533
52536
  isRequired: boolean(),
@@ -52537,7 +52540,8 @@ const NestedQuerySchema = object({
52537
52540
  queryResponse: any().nullable(),
52538
52541
  inputOptions: array(InputOptionSchema).nullable().optional(),
52539
52542
  toggledInput: any().nullable().optional(),
52540
- toggleTrigger: any().nullable().optional()
52543
+ toggleTrigger: any().nullable().optional(),
52544
+ errorText: string().optional()
52541
52545
  });
52542
52546
  const QuerySchema = object({
52543
52547
  queryId: number().or(uuid()),
@@ -52545,6 +52549,7 @@ const QuerySchema = object({
52545
52549
  inputAlias: string(),
52546
52550
  inputLabel: string(),
52547
52551
  inputPlaceholder: string(),
52552
+ defaultValue: any().optional(),
52548
52553
  minValue: number().optional(),
52549
52554
  maxValue: number().optional(),
52550
52555
  stepValue: number().or(float64()).optional(),
@@ -52557,7 +52562,8 @@ const QuerySchema = object({
52557
52562
  queryResponse: any().nullable(),
52558
52563
  inputOptions: array(InputOptionSchema).optional(),
52559
52564
  toggledInput: NestedQuerySchema.nullable().optional(),
52560
- toggleTrigger: any().nullable().optional()
52565
+ toggleTrigger: any().nullable().optional(),
52566
+ errorText: string().optional()
52561
52567
  });
52562
52568
  const SectionSchema = object({
52563
52569
  sectionId: number(),
@@ -3,17 +3,81 @@ import "react-datepicker/dist/react-datepicker.css";
3
3
  import '../../styles/main.scss';
4
4
  export type DatePickerDesign = 'datepicker' | 'datepicker-outline' | 'datepicker-material' | 'datepicker-neumorphic';
5
5
  interface DatePickerProps {
6
+ /**
7
+ * * The required unique identifier for the DatePicker input field in useFormikContext().
8
+ * Alias referenced as `name` attribute and Formik state key.
9
+ * * @example
10
+ * alias="citizenshipDateCA"
11
+ */
6
12
  alias: string;
13
+ /**
14
+ * * The optional input label or description for the DatePicker input field.
15
+ * * @example
16
+ * inputLabel="Canadian Citizenship Date"
17
+ */
7
18
  inputLabel?: string;
19
+ /**
20
+ * * The design variation of the DatePicker input.
21
+ * Default: 'datepicker-outline'
22
+ * Variants: 'datepicker', 'datepicker-outline', 'datepicker-material', 'datepicker-neumorphic',
23
+ * * @example
24
+ * inputtype="datepicker-neumorphic"
25
+ */
8
26
  inputtype?: DatePickerDesign;
9
- width?: number;
27
+ /**
28
+ * * The required viewport column width for the DatePicker input field.
29
+ * i.e. 1 - 12
30
+ * * @example
31
+ * width={6}
32
+ */
33
+ width: number;
34
+ /**
35
+ * * Option to render DatePicker input field on new row.
36
+ * * @example
37
+ * newRow
38
+ */
10
39
  newRow?: boolean;
40
+ /**
41
+ * * Option to set the default placeholder text for the DatePicker input field.
42
+ * * @example
43
+ * placeholder="Select Citizenship Date"
44
+ */
11
45
  placeholder?: string;
46
+ /**
47
+ * * Option to enable a hint for DatePicker input field.
48
+ * * @example
49
+ * isHinted
50
+ */
12
51
  isHinted?: boolean;
52
+ /**
53
+ * * Option to specify hint text for DatePicker input field.
54
+ * * @example
55
+ * hintText="This is a hint for a VΣ DatePicker"
56
+ */
13
57
  hintText?: string;
58
+ /**
59
+ * * Option to specify a hint url reference or resource for DatePicker input field.
60
+ * * @example
61
+ * hintUrl="https://www.mekaegwim.ca"
62
+ */
14
63
  hintUrl?: string;
64
+ /**
65
+ * * Option to specify the isRequired error text for the DatePicker input field.
66
+ * * @example
67
+ * errorText="VΣ Citizenship date is required"
68
+ */
15
69
  errorText?: string;
70
+ /**
71
+ * * Option to disable edits for DatePicker input field.
72
+ * * @example
73
+ * readOnly
74
+ */
16
75
  readOnly?: boolean;
76
+ /**
77
+ * * Option to specify the .scss class selector for the DatePicker input field.
78
+ * * @example
79
+ * className="teletraan-1-datepicker"
80
+ */
17
81
  className?: string;
18
82
  }
19
83
  export declare const DatePicker: ({ alias, inputLabel, inputtype, width, newRow, placeholder, isHinted, hintText, hintUrl, errorText, readOnly, className }: DatePickerProps) => React.JSX.Element;
@@ -3,17 +3,81 @@ import "react-datepicker/dist/react-datepicker.css";
3
3
  import '../../styles/main.scss';
4
4
  export type DateRangePickerDesign = 'daterangepicker' | 'daterangepicker-outline' | 'daterangepicker-material' | 'daterangepicker-neumorphic';
5
5
  interface DateRangePickerProps {
6
+ /**
7
+ * * The required unique identifier for the DateRangePicker input field in useFormikContext().
8
+ * Alias referenced as `name` attribute and Formik state key.
9
+ * * @example
10
+ * alias="hotelReservationDays"
11
+ */
6
12
  alias: string;
13
+ /**
14
+ * * The optional input label or description for the DateRangePicker input field.
15
+ * * @example
16
+ * inputLabel="VΣ Hotel Reservation Dates"
17
+ */
7
18
  inputLabel?: string;
19
+ /**
20
+ * * The design variation of the DateRangePicker input.
21
+ * Default: 'daterangepicker-outline'
22
+ * Variants: 'daterangepicker', 'daterangepicker-outline', 'daterangepicker-material', 'daterangepicker-neumorphic',
23
+ * * @example
24
+ * inputtype="daterangepicker-neumorphic"
25
+ */
8
26
  inputtype?: DateRangePickerDesign;
27
+ /**
28
+ * * The required viewport column width for the DateRangePicker input field.
29
+ * i.e. 1 - 12
30
+ * * @example
31
+ * width={6}
32
+ */
9
33
  width?: number;
34
+ /**
35
+ * * Option to render DateRangePicker input field on new row.
36
+ * * @example
37
+ * newRow
38
+ */
10
39
  newRow?: boolean;
40
+ /**
41
+ * * Option to set the default placeholder text for the DateRangePicker input field.
42
+ * * @example
43
+ * placeholder="Select VΣ reservation dates"
44
+ */
11
45
  placeholder?: string;
46
+ /**
47
+ * * Option to enable a hint for DateRangePicker input field.
48
+ * * @example
49
+ * isHinted
50
+ */
12
51
  isHinted?: boolean;
52
+ /**
53
+ * * Option to specify hint text for DateRangePicker input field.
54
+ * * @example
55
+ * hintText="This is a hint for a VΣ DateRangePicker"
56
+ */
13
57
  hintText?: string;
58
+ /**
59
+ * * Option to specify a hint url reference or resource for DateRangePicker input field.
60
+ * * @example
61
+ * hintUrl="https://www.mekaegwim.ca"
62
+ */
14
63
  hintUrl?: string;
64
+ /**
65
+ * * Option to specify the isRequired error text for the DateRangePicker input field.
66
+ * * @example
67
+ * errorText="VΣ resrvation dates required"
68
+ */
15
69
  errorText?: string;
70
+ /**
71
+ * * Option to disable edits for DateRangePicker input field.
72
+ * * @example
73
+ * readOnly
74
+ */
16
75
  readOnly?: boolean;
76
+ /**
77
+ * * Option to specify the .scss class selector for the DateRangePicker input field.
78
+ * * @example
79
+ * className="teletraan-1-daterangepicker"
80
+ */
17
81
  className?: string;
18
82
  }
19
83
  export declare const DateRangePicker: ({ alias, inputLabel, inputtype, width, newRow, placeholder, isHinted, hintText, hintUrl, errorText, readOnly, className }: DateRangePickerProps) => React.JSX.Element;
@@ -3,17 +3,81 @@ import "react-datepicker/dist/react-datepicker.css";
3
3
  import '../../styles/main.scss';
4
4
  export type DateTimePickerDesign = 'datetimepicker' | 'datetimepicker-outline' | 'datetimepicker-material' | 'datetimepicker-neumorphic';
5
5
  interface DateTimePickerProps {
6
+ /**
7
+ * * The required unique identifier for the DateTimePicker input field in useFormikContext().
8
+ * Alias referenced as `name` attribute and Formik state key.
9
+ * * @example
10
+ * alias="esppEnrollmentWindowStart"
11
+ */
6
12
  alias: string;
13
+ /**
14
+ * * The optional input label or description for the DateTimePicker input field.
15
+ * * @example
16
+ * inputLabel="ESPP Enrollment Window (Start)"
17
+ */
7
18
  inputLabel?: string;
19
+ /**
20
+ * * The design variation of the DateTimePicker input.
21
+ * Default: 'datetimepicker-outline'
22
+ * Variants: 'datetimepicker', 'datetimepicker-outline', 'datetimepicker-material', 'datetimepicker-neumorphic',
23
+ * * @example
24
+ * inputtype="datetimepicker-neumorphic"
25
+ */
8
26
  inputtype?: DateTimePickerDesign;
27
+ /**
28
+ * * The required viewport column width for the DateTimePicker input field.
29
+ * i.e. 1 - 12
30
+ * * @example
31
+ * width={6}
32
+ */
9
33
  width?: number;
34
+ /**
35
+ * * Option to render DateTimePicker input field on new row.
36
+ * * @example
37
+ * newRow
38
+ */
10
39
  newRow?: boolean;
40
+ /**
41
+ * * Option to set the default placeholder text for the DateTimePicker input field.
42
+ * * @example
43
+ * placeholder="Select VΣCG ESPP enrollment start date & time"
44
+ */
11
45
  placeholder?: string;
46
+ /**
47
+ * * Option to enable a hint for DateTimePicker input field.
48
+ * * @example
49
+ * isHinted
50
+ */
12
51
  isHinted?: boolean;
52
+ /**
53
+ * * Option to specify hint text for DateTimePicker input field.
54
+ * * @example
55
+ * hintText="This is a hint for a VΣ DateTimePicker"
56
+ */
13
57
  hintText?: string;
58
+ /**
59
+ * * Option to specify a hint url reference or resource for DateTimePicker input field.
60
+ * * @example
61
+ * hintUrl="https://www.mekaegwim.ca"
62
+ */
14
63
  hintUrl?: string;
64
+ /**
65
+ * * Option to specify the isRequired error text for the DateTimePicker input field.
66
+ * * @example
67
+ * errorText="VΣ resrvation dates required"
68
+ */
15
69
  errorText?: string;
70
+ /**
71
+ * * Option to disable edits for DateTimePicker input field.
72
+ * * @example
73
+ * readOnly
74
+ */
16
75
  readOnly?: boolean;
76
+ /**
77
+ * * Option to specify the .scss class selector for the DateTimePicker input field.
78
+ * * @example
79
+ * className="teletraan-1-datetimepicker"
80
+ */
17
81
  className?: string;
18
82
  }
19
83
  export declare const DateTimePicker: ({ alias, inputLabel, inputtype, width, newRow, placeholder, isHinted, hintText, hintUrl, errorText, readOnly, className }: DateTimePickerProps) => React.JSX.Element;