itemengine-cypress-automation 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. package/.build_wna +4 -0
  2. package/README.md +3 -0
  3. package/currents.config.js +6 -0
  4. package/cypress/API/createItem/toggleItemMode.js +15 -0
  5. package/cypress/config-files/ildev.json +15 -0
  6. package/cypress/config-files/ilprod.json +15 -0
  7. package/cypress/config-files/ilqa.json +15 -0
  8. package/cypress/config-files/ilstage.json +15 -0
  9. package/cypress/e2e/ILC/sorry-cypress-test/spec1.js +18 -0
  10. package/cypress/e2e/ILC/sorry-cypress-test/spec2.js +18 -0
  11. package/cypress/e2e/ILC/sorry-cypress-test/spec3.js +18 -0
  12. package/cypress/fixtures/accessibilityConfig.json +6 -0
  13. package/cypress/fixtures/constants.js +18 -0
  14. package/cypress/fixtures/equationEditorCategoriesAndSymbols .js +2271 -0
  15. package/cypress/fixtures/specialAndMathCharacters.js +118 -0
  16. package/cypress/fixtures/theme/ilc.json +150 -0
  17. package/cypress/fixtures/theme/ngie.json +26 -0
  18. package/cypress/fixtures/uploads/20mbFile.png +0 -0
  19. package/cypress/fixtures/uploads/80mbFile.pdf +0 -0
  20. package/cypress/fixtures/uploads/highlightImage.jpg +0 -0
  21. package/cypress/fixtures/uploads/image.png +0 -0
  22. package/cypress/fixtures/uploads/sample.aac +0 -0
  23. package/cypress/fixtures/uploads/sample.accdb +0 -0
  24. package/cypress/fixtures/uploads/sample.csv +100 -0
  25. package/cypress/fixtures/uploads/sample.doc +0 -0
  26. package/cypress/fixtures/uploads/sample.gif +0 -0
  27. package/cypress/fixtures/uploads/sample.heic +0 -0
  28. package/cypress/fixtures/uploads/sample.heif +0 -0
  29. package/cypress/fixtures/uploads/sample.hevc +0 -0
  30. package/cypress/fixtures/uploads/sample.jpeg +0 -0
  31. package/cypress/fixtures/uploads/sample.jpg +0 -0
  32. package/cypress/fixtures/uploads/sample.mp3 +0 -0
  33. package/cypress/fixtures/uploads/sample.mp4 +0 -0
  34. package/cypress/fixtures/uploads/sample.pdf +0 -0
  35. package/cypress/fixtures/uploads/sample.ppt +0 -0
  36. package/cypress/fixtures/uploads/sample.pub +0 -0
  37. package/cypress/fixtures/uploads/sample.rtf +7902 -0
  38. package/cypress/fixtures/uploads/sample.svg +10 -0
  39. package/cypress/fixtures/uploads/sample.txt +1 -0
  40. package/cypress/fixtures/uploads/sample.wav +0 -0
  41. package/cypress/fixtures/uploads/sample.xlsx +0 -0
  42. package/cypress/fixtures/uploads/sample.xps +0 -0
  43. package/cypress/fixtures/uploads/sample.zip +0 -0
  44. package/cypress/fixtures/uploads/sample1.jpg +0 -0
  45. package/cypress/fixtures/uploads/sample1.mp3 +0 -0
  46. package/cypress/fixtures/uploads/sample1.zip +0 -0
  47. package/cypress/fixtures/uploads/sample10Sec.mp3 +0 -0
  48. package/cypress/fixtures/uploads/sample2.jpg +0 -0
  49. package/cypress/fixtures/uploads/sample2.mp3 +0 -0
  50. package/cypress/fixtures/uploads/sampleVirus.zip +0 -0
  51. package/cypress/pages/audioPlayerPage.js +628 -0
  52. package/cypress/pages/audioResponsePage.js +264 -0
  53. package/cypress/pages/components/additionalSettingsPanel.js +174 -0
  54. package/cypress/pages/components/answerNumerationComponent.js +109 -0
  55. package/cypress/pages/components/autoScoredAdditionalSettings.js +183 -0
  56. package/cypress/pages/components/autoScoredPreviewBase.js +94 -0
  57. package/cypress/pages/components/autoScoredScoringSection.js +195 -0
  58. package/cypress/pages/components/autoScoredScoringSectionMultipleResponsesType.js +268 -0
  59. package/cypress/pages/components/autoScoredSetCorrectAnswerSection.js +291 -0
  60. package/cypress/pages/components/ckEditorToolbar.js +64 -0
  61. package/cypress/pages/components/colorPopupComponent.js +293 -0
  62. package/cypress/pages/components/commonComponents.js +93 -0
  63. package/cypress/pages/components/componentsFlowChart/figFlowChart.png +0 -0
  64. package/cypress/pages/components/createCustomCategoryFlyout.js +138 -0
  65. package/cypress/pages/components/createQuestionBasePage.js +225 -0
  66. package/cypress/pages/components/customizeHighlightPropertiesComponent.js +318 -0
  67. package/cypress/pages/components/dragAndDropResponseOptions.js +738 -0
  68. package/cypress/pages/components/dragAndDropSetCorrectAnswerCheckboxComponents.js +124 -0
  69. package/cypress/pages/components/draggableOptionsContainer.js +857 -0
  70. package/cypress/pages/components/editCategoryFlyout.js +40 -0
  71. package/cypress/pages/components/equationEditorFlyout.js +158 -0
  72. package/cypress/pages/components/essayResponseCommonComponents.js +86 -0
  73. package/cypress/pages/components/figOverImageCommonComponent.js +924 -0
  74. package/cypress/pages/components/fillInTheGapsCommonComponents.js +687 -0
  75. package/cypress/pages/components/fillInTheGapsDropdownCommonComponent.js +442 -0
  76. package/cypress/pages/components/fillInTheGapsTextCommonComponent.js +884 -0
  77. package/cypress/pages/components/gridCommonComponents.js +951 -0
  78. package/cypress/pages/components/index.js +38 -0
  79. package/cypress/pages/components/listSortingAndOrderingBase.js +401 -0
  80. package/cypress/pages/components/maximumRecorderLengthComponent.js +116 -0
  81. package/cypress/pages/components/mcqAdditionalSettingsBase.js +390 -0
  82. package/cypress/pages/components/mcqOptionsComponent.js +263 -0
  83. package/cypress/pages/components/mcqPreviewComponents.js +78 -0
  84. package/cypress/pages/components/mcqQuestionCommonComponents.js +265 -0
  85. package/cypress/pages/components/mcqScoringComponent.js +120 -0
  86. package/cypress/pages/components/mcqSetCorrectAnswerSection.js +143 -0
  87. package/cypress/pages/components/optionsWrapperComponent.js +221 -0
  88. package/cypress/pages/components/playbackControlsBaseComponent.js +163 -0
  89. package/cypress/pages/components/previewScoringAndShowCorrectAnswerComponent.js +90 -0
  90. package/cypress/pages/components/questionInstructionsComponent.js +112 -0
  91. package/cypress/pages/components/scoringSectionBase.js +308 -0
  92. package/cypress/pages/components/setPointsPopupBase.js +79 -0
  93. package/cypress/pages/components/specialAndCustomSpecialCharactersComponent.js +79 -0
  94. package/cypress/pages/components/specialCharactersFlyoutComponent.js +58 -0
  95. package/cypress/pages/components/studentResponseAreaAndLayoutComponent.js +28 -0
  96. package/cypress/pages/components/uploadImageSectionComponent.js +594 -0
  97. package/cypress/pages/createItemPage.js +28 -0
  98. package/cypress/pages/dialogBoxBase.js +111 -0
  99. package/cypress/pages/dragAndDropIntoCategoriesAllOrNothingScoring.js +1161 -0
  100. package/cypress/pages/dragAndDropIntoCategoriesCellsScoring.js +1559 -0
  101. package/cypress/pages/dragAndDropIntoCategoriesPage.js +1556 -0
  102. package/cypress/pages/dragAndDropIntoCategoriesResponseScoring.js +1396 -0
  103. package/cypress/pages/essayResponseBasicPage.js +57 -0
  104. package/cypress/pages/essayResponseMathPage.js +47 -0
  105. package/cypress/pages/essayResponsePage.js +385 -0
  106. package/cypress/pages/feedbackScalePage.js +698 -0
  107. package/cypress/pages/fillInTheGapsDragAndDropPage.js +742 -0
  108. package/cypress/pages/fillInTheGapsDropdownPage.js +99 -0
  109. package/cypress/pages/fillInTheGapsOverImageDropdownPage.js +232 -0
  110. package/cypress/pages/fillInTheGapsOverImageTextPage.js +135 -0
  111. package/cypress/pages/fillInTheGapsScoring.js +5974 -0
  112. package/cypress/pages/fillInTheGapsSetCorrectAnswerSection.js +260 -0
  113. package/cypress/pages/fillInTheGapsTextPage.js +225 -0
  114. package/cypress/pages/highlightImagePage.js +1316 -0
  115. package/cypress/pages/highlightPage.js +870 -0
  116. package/cypress/pages/index.js +30 -0
  117. package/cypress/pages/listMatchingPage.js +1330 -0
  118. package/cypress/pages/listMatchingScoring.js +2635 -0
  119. package/cypress/pages/listOrderingPage.js +751 -0
  120. package/cypress/pages/listSortingPage.js +1201 -0
  121. package/cypress/pages/multipleSelectionGridPage.js +359 -0
  122. package/cypress/pages/multipleSelectionPage.js +88 -0
  123. package/cypress/pages/passagePage.js +426 -0
  124. package/cypress/pages/readingRulerPage.js +302 -0
  125. package/cypress/pages/selectQuestionResourceToolPage.js +64 -0
  126. package/cypress/pages/shortTextResponsePage.js +197 -0
  127. package/cypress/pages/singleSelectionGridPage.js +370 -0
  128. package/cypress/pages/singleSelectionPage.js +65 -0
  129. package/cypress/pages/uploadResponsePage.js +110 -0
  130. package/cypress/pages/videoResponsePage.js +375 -0
  131. package/cypress/support/commands.js +140 -0
  132. package/cypress/support/e2e.js +14 -0
  133. package/cypress/support/helpers/abortEarly.js +19 -0
  134. package/cypress/support/helpers/accessibility.js +34 -0
  135. package/cypress/support/helpers/cypressUtilities.js +64 -0
  136. package/cypress/support/helpers/localStorage.js +13 -0
  137. package/cypress/support/helpers/selectText.js +77 -0
  138. package/cypress/support/helpers/utilities.js +126 -0
  139. package/cypress.config.js +76 -0
  140. package/il.yaml +14 -0
  141. package/language +1 -0
  142. package/package.json +26 -0
@@ -0,0 +1,118 @@
1
+ export const specialOrMathCharacters = {
2
+ specialCharacters: {
3
+ popupTitle: 'Special characters',
4
+ characters: [
5
+ { symbol: '¡', title: 'Inverted exclamation mark' },
6
+ { symbol: '¿', title: 'Inverted question mark' },
7
+ { symbol: 'Ç', title: 'Latin capital letter C with cedilla' },
8
+ { symbol: 'Ñ', title: 'Latin capital letter N with tilde' },
9
+ { symbol: 'ç', title: 'Latin small letter c with cedilla' },
10
+ { symbol: 'ñ', title: 'Latin small letter n with tilde' },
11
+ { symbol: 'ý', title: 'Latin small letter y with acute accent' },
12
+ { symbol: 'ÿ', title: 'Latin small letter y with diaeresis' },
13
+ { symbol: 'à', title: 'Latin small letter a with grave accent' },
14
+ { symbol: 'á', title: 'Latin small letter a with acute accent' },
15
+ { symbol: 'â', title: 'Latin small letter a with circumflex' },
16
+ { symbol: 'ã', title: 'Latin small letter a with tilde' },
17
+ { symbol: 'ä', title: 'Latin small letter a with diaeresis' },
18
+ { symbol: 'å', title: 'Latin small letter a with ring above' },
19
+ { symbol: 'æ', title: 'Latin small letter æ' },
20
+ { symbol: 'À', title: 'Latin capital letter A with grave accent' },
21
+ { symbol: 'Á', title: 'Latin capital letter A with acute accent' },
22
+ { symbol: 'Â', title: 'Latin capital letter A with circumflex' },
23
+ { symbol: 'Ã', title: 'Latin capital letter A with tilde' },
24
+ { symbol: 'Ä', title: 'Latin capital letter A with diaeresis' },
25
+ { symbol: 'Å', title: 'Latin capital letter A with ring above' },
26
+ { symbol: 'Æ', title: 'Latin capital letter Æ' },
27
+ { symbol: 'è', title: 'Latin small letter e with grave accent' },
28
+ { symbol: 'é', title: 'Latin small letter e with acute accent' },
29
+ { symbol: 'ê', title: 'Latin small letter e with circumflex' },
30
+ { symbol: 'ë', title: 'Latin small letter e with diaeresis' },
31
+ { symbol: 'È', title: 'Latin capital letter E with grave accent' },
32
+ { symbol: 'É', title: 'Latin capital letter E with acute accent' },
33
+ { symbol: 'Ê', title: 'Latin capital letter E with circumflex' },
34
+ { symbol: 'Ë', title: 'Latin capital letter E with diaeresis' },
35
+ { symbol: 'ì', title: 'Latin small letter i with grave accent' },
36
+ { symbol: 'í', title: 'Latin small letter i with acute accent' },
37
+ { symbol: 'î', title: 'Latin small letter i with circumflex' },
38
+ { symbol: 'ï', title: 'Latin small letter i with diaeresis' },
39
+ { symbol: 'Ì', title: 'Latin capital letter I with grave accent' },
40
+ { symbol: 'Í', title: 'Latin capital letter I with acute accent' },
41
+ { symbol: 'Î', title: 'Latin capital letter I with circumflex' },
42
+ { symbol: 'Ï', title: 'Latin capital letter I with diaeresis' },
43
+ { symbol: 'ò', title: 'Latin small letter o with grave accent' },
44
+ { symbol: 'ó', title: 'Latin small letter o with acute accent' },
45
+ { symbol: 'ô', title: 'Latin small letter o with circumflex' },
46
+ { symbol: 'õ', title: 'Latin small letter o with tilde' },
47
+ { symbol: 'ö', title: 'Latin small letter o with diaeresis' },
48
+ { symbol: 'Ò', title: 'Latin capital letter O with grave accent' },
49
+ { symbol: 'Ó', title: 'Latin capital letter O with acute accent' },
50
+ { symbol: 'Ô', title: 'Latin capital letter O with circumflex' },
51
+ { symbol: 'Õ', title: 'Latin capital letter O with tilde' },
52
+ { symbol: 'Ö', title: 'Latin capital letter O with diaeresis' },
53
+ { symbol: 'Ø', title: 'Latin capital letter O with stroke' },
54
+ { symbol: 'ù', title: 'Latin small letter u with grave accent' },
55
+ { symbol: 'ú', title: 'Latin small letter u with acute accent' },
56
+ { symbol: 'û', title: 'Latin small letter u with circumflex' },
57
+ { symbol: 'ü', title: 'Latin small letter u with diaeresis' },
58
+ { symbol: 'Ù', title: 'Latin capital letter U with grave accent' },
59
+ { symbol: 'Ú', title: 'Latin capital letter U with acute accent' },
60
+ { symbol: 'Û', title: 'Latin capital letter U with circumflex' },
61
+ { symbol: 'Ü', title: 'Latin capital letter U with diaeresis' }
62
+ ]
63
+ },
64
+ mathCharacters: {
65
+ popupTitle: 'Math characters',
66
+ characters: [
67
+ { symbol: '√', title: 'Square root' },
68
+ { symbol: '∞', title: 'Infinity' },
69
+ { symbol: '±', title: 'Plus or minus' },
70
+ { symbol: 'µ', title: 'Micro' },
71
+ { symbol: 'σ', title: 'Sigma' },
72
+ { symbol: '∫', title: 'Integral' },
73
+ { symbol: 'Δ', title: 'Delta' },
74
+ { symbol: '≤', title: 'Less than or equal to' },
75
+ { symbol: '≥', title: 'Greater than or equal to' },
76
+ { symbol: '∪', title: 'Union' },
77
+ { symbol: '∩', title: 'Intersection' },
78
+ { symbol: '≡', title: 'Equivalent to' },
79
+ { symbol: 'Σ', title: 'Capital sigma' },
80
+ { symbol: '°', title: 'Degree' },
81
+ { symbol: '½', title: 'One half' },
82
+ { symbol: '⅓', title: 'One third' },
83
+ { symbol: '⅔', title: 'Two third' },
84
+ { symbol: '¼', title: 'One quarter' },
85
+ { symbol: '¾', title: 'Three quarters' },
86
+ { symbol: '⅕', title: 'One fifth' },
87
+ { symbol: '⅖', title: 'Two fifth' },
88
+ { symbol: '⅗', title: 'Three fifth' },
89
+ { symbol: '⅘', title: 'Four fifth' },
90
+ { symbol: '⅙', title: 'One sixth' },
91
+ { symbol: '⅚', title: 'Five sixth' },
92
+ { symbol: '⁰', title: 'Superscript zero' },
93
+ { symbol: '¹', title: 'Superscript one' },
94
+ { symbol: '²', title: 'Superscript two' },
95
+ { symbol: '³', title: 'Superscript three' },
96
+ { symbol: '⁴', title: 'Superscript four' },
97
+ { symbol: '⁵', title: 'Superscript five' },
98
+ { symbol: '⁶', title: 'Superscript six' },
99
+ { symbol: '⁷', title: 'Superscript seven' },
100
+ { symbol: '⁸', title: 'Superscript eight' },
101
+ { symbol: '⁹', title: 'Superscript nine' },
102
+ { symbol: '⁺', title: 'Superscript plus' },
103
+ { symbol: '⁻', title: 'Superscript minus' },
104
+ { symbol: '₀', title: 'Subscript zero' },
105
+ { symbol: '₁', title: 'Subscript one' },
106
+ { symbol: '₂', title: 'Subscript two' },
107
+ { symbol: '₃', title: 'Subscript three' },
108
+ { symbol: '₄', title: 'Subscript four' },
109
+ { symbol: '₅', title: 'Subscript five' },
110
+ { symbol: '₆', title: 'Subscript six' },
111
+ { symbol: '₇', title: 'Subscript seven' },
112
+ { symbol: '₈', title: 'Subscript eight' },
113
+ { symbol: '₉', title: 'Subscript nine' },
114
+ { symbol: '₊', title: 'Subscript plus' },
115
+ { symbol: '₋', title: 'Subscript minus' }
116
+ ]
117
+ }
118
+ }
@@ -0,0 +1,150 @@
1
+ {
2
+ "color": {
3
+ "primaryBtn": "rgb(255, 255, 255)",
4
+ "primaryBtnBg": "rgb(82, 0, 255)",
5
+ "primaryBtnBorder": "rgb(0, 0, 124)",
6
+ "secondaryBtn": "rgb(0, 0, 124)",
7
+ "secondaryBtnBg": "rgb(255, 255, 255)",
8
+ "secondaryBtnBorder": "rgb(186, 201, 255)",
9
+ "successBtn": "rgb(0, 0, 46)",
10
+ "successBtnBg": "rgb(101, 209, 131)",
11
+ "deleteBtn": "rgb(187, 47, 10)",
12
+ "secondaryBtnActive": "rgb(82, 0, 255)",
13
+ "activeButtons": "rgb(82, 0, 255)",
14
+ "defaultBackground": "rgb(255, 255, 255)",
15
+ "questionHeading": "rgb(0, 0, 124)",
16
+ "sectionHeading": "rgb(0, 0, 48)",
17
+ "labels": "rgb(0, 0, 48)",
18
+ "helperText": "rgb(0, 0, 73)",
19
+ "placeholderText": "rgb(102, 102, 102)",
20
+ "text": "rgb(0, 0, 46)",
21
+ "textAreaErrorBg": "rgb(255, 244, 241)",
22
+ "errorText": "rgb(209, 51, 51)",
23
+ "labelText": "rgba(0, 0, 48, 0.87)",
24
+ "optionsText": "rgb(0, 0, 73)",
25
+ "optionsSelectedText": "rgb(82, 0, 255)",
26
+ "optionsSelectedBg": "rgb(0, 0, 99)",
27
+ "optionsBg": "rgb(245, 248, 255)",
28
+ "liText": "rgb(0, 0, 124)",
29
+ "liTextBg": "rgb(245, 248, 255)",
30
+ "liTextSelectedBg": "rgb(186, 201, 255)",
31
+ "accordionLabel": "rgb(82, 0, 255)",
32
+ "deleteIcon": "rgb(228, 59, 19)",
33
+ "correctAnswer": "rgb(43, 120, 74)",
34
+ "incorrectAnswer": "rgb(209, 51, 51)",
35
+ "transparent": "rgba(0, 0, 0, 0)",
36
+ "cloudIconFill": "rgb(29, 29, 156)",
37
+ "tooltipBg": "rgb(0, 0, 48)",
38
+ "linkText": "rgb(0, 0, 255)",
39
+ "fileLimitBg": "rgb(245, 248, 255)",
40
+ "defaultDropdownBorder": "rgb(186, 201, 255)",
41
+ "primaryBtnDisabled": "rgb(79, 78, 108)",
42
+ "warningText": "rgb(148, 108, 0)",
43
+ "closeIcon": "rgb(68, 68, 97)",
44
+ "uncheckedCheckbox": "rgb(134, 135, 135)",
45
+ "nextPreviousButtonFill": "rgb(29, 29, 156)",
46
+ "highlightedTableCell": "rgb(0, 0, 124)",
47
+ "highlightedTableCellBorder": "rgb(255, 255, 255)",
48
+ "standardTableCellText": "rgb(51, 51, 51)",
49
+ "editTableDeleteButton": "rgb(204, 39, 0)",
50
+ "progressBarRemainingFill": "rgb(194, 194, 194)",
51
+ "progressBarElapsedFill": "rgb(64, 134, 235)",
52
+ "progressBarSliderHoverBackground": "rgba(25, 118, 210, 0.16)",
53
+ "waveformCursorColor": "rgb(0, 0, 0)",
54
+ "audioResponsePreviewComponentsFill": "rgb(64, 134, 235)",
55
+ "lightText": "rgba(0, 0, 46, 0.87)",
56
+ "secondaryBtnDisabled": "rgb(117, 117, 154)",
57
+ "startRecordingIconFill": "rgb(212, 48, 39)",
58
+ "micGlowAnimation": "rgba(64, 134, 235, 0.13)",
59
+ "codeInlineText": "rgb(199, 37, 78)",
60
+ "codeInlineTextBg": "rgb(249, 242, 244)",
61
+ "codeBlockText": "rgba(0, 0, 0, 0.87)",
62
+ "codeBlockTextBg": "rgb(247, 247, 247)",
63
+ "errorFieldBorder": "rgb(255, 49, 0)",
64
+ "errorFieldBg": "rgb(255, 244, 241)",
65
+ "flyoutTitle": "rgb(0, 0, 124)",
66
+ "specialCharacterSymbol": "rgb(82, 0, 255)",
67
+ "focusedSpecialCharacterSymbol": "rgb(235, 235, 235)",
68
+ "figDefaultComponentBorder": "rgb(107, 139, 255)",
69
+ "activeComponentBorder": "rgb(82, 0, 255)",
70
+ "figActiveComponentBg": "rgb(245, 248, 255)",
71
+ "correctAnswerContainerBorder": "rgb(186, 201, 255)",
72
+ "correctAnswerContainerResponseBlockBorder": "rgb(107, 139, 255)",
73
+ "titleContainerBg": "rgb(245, 248, 255)",
74
+ "titleContainerBorder": "rgb(107, 139, 255)",
75
+ "optionNumerationBg": "rgb(214, 224, 255)",
76
+ "panelLabel": "rgb(0, 0, 124)",
77
+ "dragOptionActiveBorder": "rgb(107, 139, 255)",
78
+ "feedbackStar": "rgb(226, 121, 0)",
79
+ "clickTapAnywhereAreaBg": "rgb(102, 102, 102)",
80
+ "recordingIcon": "rgb(209, 51, 51)",
81
+ "whiteText": "rgb(255, 255, 255)",
82
+ "videoProgressBarElapsedFill": "rgb(107, 139, 255)",
83
+ "correctAnswerHighlightRegion": "rgba(43, 120, 74, 0.4)",
84
+ "incorrectAnswerHighlightRegion": "rgba(209, 51, 51, 0.4)",
85
+ "fileUploadProgressBarFill": "rgb(74, 147, 224)",
86
+ "responseContainerPointer": "rgba(0, 0, 46, 0.4)",
87
+ "activeHighlightBorder": "rgb(41, 0, 128)"
88
+ },
89
+ "fontSize": {
90
+ "extraSmall": "10px",
91
+ "small": "12px",
92
+ "normal": "14px",
93
+ "default": "16px",
94
+ "large": "17px",
95
+ "heading": "18px",
96
+ "extraLarge": "20px",
97
+ "huge": "24px"
98
+ },
99
+ "fontWeight": {
100
+ "light": "300",
101
+ "regular": "400",
102
+ "medium": "500",
103
+ "semibold": "600",
104
+ "bold": "700"
105
+ },
106
+ "highlightColorLibrary": [
107
+ {
108
+ "title": "aliceBlue",
109
+ "background": "rgb(245, 248, 255)",
110
+ "border": "rgb(82, 0, 255)",
111
+ "hoverBackground": "rgba(245, 248, 255, 0.4)",
112
+ "hoverBorder": "rgb(107, 139, 255)"
113
+ },
114
+ {
115
+ "title": "purple",
116
+ "background": "rgb(186, 201, 255)",
117
+ "border": "rgb(82, 0, 255)",
118
+ "hoverBackground": "rgba(186, 201, 255, 0.4)",
119
+ "hoverBorder": "rgb(107, 139, 255)"
120
+ },
121
+ {
122
+ "title": "lightBlue",
123
+ "background": "rgb(128, 239, 255)",
124
+ "border": "rgb(0, 112, 128)",
125
+ "hoverBackground": "rgba(128, 239, 255, 0.4)",
126
+ "hoverBorder": "rgb(0, 156, 179)"
127
+ },
128
+ {
129
+ "title": "orange",
130
+ "background": "rgb(255, 238, 215)",
131
+ "border": "rgb(128, 102, 69)",
132
+ "hoverBackground": "rgba(255, 238, 215, 0.4)",
133
+ "hoverBorder": "rgb(153, 134, 67)"
134
+ },
135
+ {
136
+ "title": "yellow",
137
+ "background": "rgb(255, 238, 78)",
138
+ "border": "rgb(64, 59, 20)",
139
+ "hoverBackground": "rgba(255, 238, 78, 0.4)",
140
+ "hoverBorder": "rgb(153, 141, 32)"
141
+ },
142
+ {
143
+ "title": "grey",
144
+ "background": "rgb(220, 223, 230)",
145
+ "border": "rgb(61, 62, 64)",
146
+ "hoverBackground": "rgba(220, 223, 230, 0.4)",
147
+ "hoverBorder": "rgb(122, 124, 128)"
148
+ }
149
+ ]
150
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "color": {
3
+ "lightBlue": "rgb(227, 242, 253)",
4
+ "blue": "rgb(13, 71, 161)",
5
+ "darkBlue": "rgb(52, 58, 114)",
6
+ "black": "rgba(0, 0, 0, 0.87)",
7
+ "gray": "rgba(0, 0, 0, 0.6)",
8
+ "white": "rgb(255, 255, 255)",
9
+ "transparent":"rgba(0, 0, 0, 0)",
10
+ "green":"rgb(10, 128, 45)"
11
+ },
12
+ "fontSize": {
13
+ "subtitle": "16px",
14
+ "small": "12px",
15
+ "normal": "14px",
16
+ "large": "17px",
17
+ "extraLarge": "20px",
18
+ "huge": "24px"
19
+ },
20
+ "fontWeight": {
21
+ "bold": "700",
22
+ "medium": "500",
23
+ "regular": "400"
24
+ },
25
+ "borderBlue": "1px solid rgb(13, 71, 161)"
26
+ }
@@ -0,0 +1,100 @@
1
+ 1,"Eldon Base for stackable storage shelf, platinum",Muhammed MacIntyre,3,-213.25,38.94,35,Nunavut,Storage & Organization,0.8
2
+ 2,"1.7 Cubic Foot Compact ""Cube"" Office Refrigerators",Barry French,293,457.81,208.16,68.02,Nunavut,Appliances,0.58
3
+ 3,"Cardinal Slant-D� Ring Binder, Heavy Gauge Vinyl",Barry French,293,46.71,8.69,2.99,Nunavut,Binders and Binder Accessories,0.39
4
+ 4,R380,Clay Rozendal,483,1198.97,195.99,3.99,Nunavut,Telephones and Communication,0.58
5
+ 5,Holmes HEPA Air Purifier,Carlos Soltero,515,30.94,21.78,5.94,Nunavut,Appliances,0.5
6
+ 6,G.E. Longer-Life Indoor Recessed Floodlight Bulbs,Carlos Soltero,515,4.43,6.64,4.95,Nunavut,Office Furnishings,0.37
7
+ 7,"Angle-D Binders with Locking Rings, Label Holders",Carl Jackson,613,-54.04,7.3,7.72,Nunavut,Binders and Binder Accessories,0.38
8
+ 8,"SAFCO Mobile Desk Side File, Wire Frame",Carl Jackson,613,127.70,42.76,6.22,Nunavut,Storage & Organization,
9
+ 9,"SAFCO Commercial Wire Shelving, Black",Monica Federle,643,-695.26,138.14,35,Nunavut,Storage & Organization,
10
+ 10,Xerox 198,Dorothy Badders,678,-226.36,4.98,8.33,Nunavut,Paper,0.38
11
+ 11,Xerox 1980,Neola Schneider,807,-166.85,4.28,6.18,Nunavut,Paper,0.4
12
+ 12,Advantus Map Pennant Flags and Round Head Tacks,Neola Schneider,807,-14.33,3.95,2,Nunavut,Rubber Bands,0.53
13
+ 13,Holmes HEPA Air Purifier,Carlos Daly,868,134.72,21.78,5.94,Nunavut,Appliances,0.5
14
+ 14,"DS/HD IBM Formatted Diskettes, 200/Pack - Staples",Carlos Daly,868,114.46,47.98,3.61,Nunavut,Computer Peripherals,0.71
15
+ 15,"Wilson Jones 1"" Hanging DublLock� Ring Binders",Claudia Miner,933,-4.72,5.28,2.99,Nunavut,Binders and Binder Accessories,0.37
16
+ 16,Ultra Commercial Grade Dual Valve Door Closer,Neola Schneider,995,782.91,39.89,3.04,Nunavut,Office Furnishings,0.53
17
+ 17,"#10-4 1/8"" x 9 1/2"" Premium Diagonal Seam Envelopes",Allen Rosenblatt,998,93.80,15.74,1.39,Nunavut,Envelopes,0.4
18
+ 18,Hon 4-Shelf Metal Bookcases,Sylvia Foulston,1154,440.72,100.98,26.22,Nunavut,Bookcases,0.6
19
+ 19,"Lesro Sheffield Collection Coffee Table, End Table, Center Table, Corner Table",Sylvia Foulston,1154,-481.04,71.37,69,Nunavut,Tables,0.68
20
+ 20,g520,Jim Radford,1344,-11.68,65.99,5.26,Nunavut,Telephones and Communication,0.59
21
+ 21,LX 788,Jim Radford,1344,313.58,155.99,8.99,Nunavut,Telephones and Communication,0.58
22
+ 22,Avery 52,Carlos Soltero,1412,26.92,3.69,0.5,Nunavut,Labels,0.38
23
+ 23,Plymouth Boxed Rubber Bands by Plymouth,Carlos Soltero,1412,-5.77,4.71,0.7,Nunavut,Rubber Bands,0.8
24
+ 24,"GBC Pre-Punched Binding Paper, Plastic, White, 8-1/2"" x 11""",Carl Ludwig,1539,-172.88,15.99,13.18,Nunavut,Binders and Binder Accessories,0.37
25
+ 25,"Maxell 3.5"" DS/HD IBM-Formatted Diskettes, 10/Pack",Carl Ludwig,1539,-144.55,4.89,4.93,Nunavut,Computer Peripherals,0.66
26
+ 26,Newell 335,Don Miller,1540,5.76,2.88,0.7,Nunavut,Pens & Art Supplies,0.56
27
+ 27,SANFORD Liquid Accent� Tank-Style Highlighters,Annie Cyprus,1702,4.90,2.84,0.93,Nunavut,Pens & Art Supplies,0.54
28
+ 28,Canon PC940 Copier,Carl Ludwig,1761,-547.61,449.99,49,Nunavut,Copiers and Fax,0.38
29
+ 29,"Tenex Personal Project File with Scoop Front Design, Black",Carlos Soltero,1792,-5.45,13.48,4.51,Nunavut,Storage & Organization,0.59
30
+ 30,Col-Erase� Pencils with Erasers,Grant Carroll,2275,41.67,6.08,1.17,Nunavut,Pens & Art Supplies,0.56
31
+ 31,"Imation 3.5"" DS/HD IBM Formatted Diskettes, 10/Pack",Don Miller,2277,-46.03,5.98,4.38,Nunavut,Computer Peripherals,0.75
32
+ 32,"White Dual Perf Computer Printout Paper, 2700 Sheets, 1 Part, Heavyweight, 20 lbs., 14 7/8 x 11",Don Miller,2277,33.67,40.99,19.99,Nunavut,Paper,0.36
33
+ 33,Self-Adhesive Address Labels for Typewriters by Universal,Alan Barnes,2532,140.01,7.31,0.49,Nunavut,Labels,0.38
34
+ 34,Accessory37,Alan Barnes,2532,-78.96,20.99,2.5,Nunavut,Telephones and Communication,0.81
35
+ 35,Fuji 5.2GB DVD-RAM,Jack Garza,2631,252.66,40.96,1.99,Nunavut,Computer Peripherals,0.55
36
+ 36,Bevis Steel Folding Chairs,Julia West,2757,-1766.01,95.95,74.35,Nunavut,Chairs & Chairmats,0.57
37
+ 37,Avery Binder Labels,Eugene Barchas,2791,-236.27,3.89,7.01,Nunavut,Binders and Binder Accessories,0.37
38
+ 38,Hon Every-Day� Chair Series Swivel Task Chairs,Eugene Barchas,2791,80.44,120.98,30,Nunavut,Chairs & Chairmats,0.64
39
+ 39,"IBM Multi-Purpose Copy Paper, 8 1/2 x 11"", Case",Eugene Barchas,2791,118.94,30.98,5.76,Nunavut,Paper,0.4
40
+ 40,Global Troy� Executive Leather Low-Back Tilter,Edward Hooks,2976,3424.22,500.98,26,Nunavut,Chairs & Chairmats,0.6
41
+ 41,XtraLife� ClearVue� Slant-D� Ring Binders by Cardinal,Brad Eason,3232,-11.83,7.84,4.71,Nunavut,Binders and Binder Accessories,0.35
42
+ 42,Computer Printout Paper with Letter-Trim Perforations,Nicole Hansen,3524,52.35,18.97,9.03,Nunavut,Paper,0.37
43
+ 43,6160,Dorothy Wardle,3908,-180.20,115.99,2.5,Nunavut,Telephones and Communication,0.57
44
+ 44,Avery 49,Aaron Bergman,4132,1.32,2.88,0.5,Nunavut,Labels,0.36
45
+ 45,Hoover Portapower� Portable Vacuum,Jim Radford,4612,-375.64,4.48,49,Nunavut,Appliances,0.6
46
+ 46,Timeport L7089,Annie Cyprus,4676,-104.25,125.99,7.69,Nunavut,Telephones and Communication,0.58
47
+ 47,Avery 510,Annie Cyprus,4676,85.96,3.75,0.5,Nunavut,Labels,0.37
48
+ 48,Xerox 1881,Annie Cyprus,4676,-8.38,12.28,6.47,Nunavut,Paper,0.38
49
+ 49,LX 788,Annie Cyprus,4676,1115.69,155.99,8.99,Nunavut,Telephones and Communication,0.58
50
+ 50,"Cardinal Slant-D� Ring Binder, Heavy Gauge Vinyl",Annie Cyprus,5284,-3.05,8.69,2.99,Nunavut,Binders and Binder Accessories,0.39
51
+ 51,"Memorex 4.7GB DVD-RAM, 3/Pack",Clay Rozendal,5316,514.07,31.78,1.99,Nunavut,Computer Peripherals,0.42
52
+ 52,Unpadded Memo Slips,Don Jones,5409,-7.04,3.98,2.97,Nunavut,Paper,0.35
53
+ 53,"Adams Telephone Message Book W/Dividers/Space For Phone Numbers, 5 1/4""X8 1/2"", 300/Messages",Beth Thompson,5506,4.41,5.88,3.04,Nunavut,Paper,0.36
54
+ 54,"Eldon Expressions� Desk Accessory, Wood Pencil Holder, Oak",Frank Price,5569,-0.06,9.65,6.22,Nunavut,Office Furnishings,0.55
55
+ 55,Bell Sonecor JB700 Caller ID,Michelle Lonsdale,5607,-50.33,7.99,5.03,Nunavut,Telephones and Communication,0.6
56
+ 56,Avery Arch Ring Binders,Ann Chong,5894,87.68,58.1,1.49,Nunavut,Binders and Binder Accessories,0.38
57
+ 57,APC 7 Outlet Network SurgeArrest Surge Protector,Ann Chong,5894,-68.22,80.48,4.5,Nunavut,Appliances,0.55
58
+ 58,"Deflect-o RollaMat Studded, Beveled Mat for Medium Pile Carpeting",Joy Bell,5925,-354.90,92.23,39.61,Nunavut,Office Furnishings,0.67
59
+ 59,Accessory4,Joy Bell,5925,-267.01,85.99,0.99,Nunavut,Telephones and Communication,0.85
60
+ 60,Personal Creations� Ink Jet Cards and Labels,Skye Norling,6016,3.63,11.48,5.43,Nunavut,Paper,0.36
61
+ 61,High Speed Automatic Electric Letter Opener,Barry Weirich,6116,-1759.58,1637.53,24.49,Nunavut,"Scissors, Rulers and Trimmers",0.81
62
+ 62,Xerox 1966,Grant Carroll,6182,-116.79,6.48,6.65,Nunavut,Paper,0.36
63
+ 63,Xerox 213,Grant Carroll,6182,-67.28,6.48,7.86,Nunavut,Paper,0.37
64
+ 64,"Boston Electric Pencil Sharpener, Model 1818, Charcoal Black",Adrian Hane,6535,-19.33,28.15,8.99,Nunavut,Pens & Art Supplies,0.57
65
+ 65,Hammermill CopyPlus Copy Paper (20Lb. and 84 Bright),Skye Norling,6884,-61.21,4.98,4.75,Nunavut,Paper,0.36
66
+ 66,"Telephone Message Books with Fax/Mobile Section, 5 1/2"" x 3 3/16""",Skye Norling,6884,119.09,6.35,1.02,Nunavut,Paper,0.39
67
+ 67,Crate-A-Files�,Andrew Gjertsen,6916,-141.27,10.9,7.46,Nunavut,Storage & Organization,0.59
68
+ 68,"Angle-D Binders with Locking Rings, Label Holders",Ralph Knight,6980,-77.28,7.3,7.72,Nunavut,Binders and Binder Accessories,0.38
69
+ 69,"80 Minute CD-R Spindle, 100/Pack - Staples",Dorothy Wardle,6982,407.44,39.48,1.99,Nunavut,Computer Peripherals,0.54
70
+ 70,"Bush Westfield Collection Bookcases, Dark Cherry Finish, Fully Assembled",Dorothy Wardle,6982,-338.27,100.98,57.38,Nunavut,Bookcases,0.78
71
+ 71,12-1/2 Diameter Round Wall Clock,Dorothy Wardle,6982,52.56,19.98,10.49,Nunavut,Office Furnishings,0.49
72
+ 72,SAFCO Arco Folding Chair,Grant Carroll,7110,1902.24,276.2,24.49,Nunavut,Chairs & Chairmats,
73
+ 73,"#10 White Business Envelopes,4 1/8 x 9 1/2",Barry Weirich,7430,353.20,15.67,1.39,Nunavut,Envelopes,0.38
74
+ 74,3M Office Air Cleaner,Beth Paige,7906,271.78,25.98,5.37,Nunavut,Appliances,0.5
75
+ 75,"Global Leather and Oak Executive Chair, Black",Sylvia Foulston,8391,-268.36,300.98,64.73,Nunavut,Chairs & Chairmats,0.56
76
+ 76,Xerox 1936,Nicole Hansen,8419,70.39,19.98,5.97,Nunavut,Paper,0.38
77
+ 77,Xerox 214,Nicole Hansen,8419,-86.62,6.48,7.03,Nunavut,Paper,0.37
78
+ 78,Carina Double Wide Media Storage Towers in Natural & Black,Nicole Hansen,8833,-846.73,80.98,35,Nunavut,Storage & Organization,0.81
79
+ 79,Staples� General Use 3-Ring Binders,Beth Paige,8995,8.05,1.88,1.49,Nunavut,Binders and Binder Accessories,0.37
80
+ 80,Xerox 1904,Beth Paige,8995,-78.02,6.48,5.86,Northwest Territories,Paper,0.36
81
+ 81,Luxo Professional Combination Clamp-On Lamps,Beth Paige,8995,737.94,102.3,21.26,Northwest Territories,Office Furnishings,0.59
82
+ 82,Xerox 217,Beth Paige,8995,-191.28,6.48,8.19,Northwest Territories,Paper,0.37
83
+ 83,Revere Boxed Rubber Bands by Revere,Beth Paige,8995,-21.49,1.89,0.76,Northwest Territories,Rubber Bands,0.83
84
+ 84,"Acco Smartsocket� Table Surge Protector, 6 Color-Coded Adapter Outlets",Sylvia Foulston,9126,884.08,62.05,3.99,Northwest Territories,Appliances,0.55
85
+ 85,"Tennsco Snap-Together Open Shelving Units, Starter Sets and Add-On Units",Bryan Davis,9127,-329.49,279.48,35,Northwest Territories,Storage & Organization,0.8
86
+ 86,Hon 4070 Series Pagoda� Round Back Stacking Chairs,Joy Bell,9509,2825.15,320.98,58.95,Northwest Territories,Chairs & Chairmats,0.57
87
+ 87,Xerox 1887,Joy Bell,9509,2.13,18.97,5.21,Northwest Territories,Paper,0.37
88
+ 88,Xerox 1891,Joy Bell,9509,707.15,48.91,5.81,Northwest Territories,Paper,0.38
89
+ 89,Avery 506,Alan Barnes,9763,75.13,4.13,0.5,Northwest Territories,Labels,0.39
90
+ 90,"Bush Heritage Pine Collection 5-Shelf Bookcase, Albany Pine Finish, *Special Order",Grant Carroll,9927,-270.63,140.98,53.48,Northwest Territories,Bookcases,0.65
91
+ 91,"Lifetime Advantage� Folding Chairs, 4/Carton",Grant Carroll,9927,3387.35,218.08,18.06,Northwest Territories,Chairs & Chairmats,0.57
92
+ 92,Microsoft Natural Multimedia Keyboard,Grant Carroll,9927,-82.16,50.98,6.5,Northwest Territories,Computer Peripherals,0.73
93
+ 93,"Staples Wirebound Steno Books, 6"" x 9"", 12/Pack",Delfina Latchford,10022,-3.88,10.14,2.27,Northwest Territories,Paper,0.36
94
+ 94,"GBC Pre-Punched Binding Paper, Plastic, White, 8-1/2"" x 11""",Don Jones,10437,-191.22,15.99,13.18,Northwest Territories,Binders and Binder Accessories,0.37
95
+ 95,Bevis Boat-Shaped Conference Table,Doug Bickford,10499,31.21,262.11,62.74,Northwest Territories,Tables,0.75
96
+ 96,"Linden� 12"" Wall Clock With Oak Frame",Doug Bickford,10535,-44.14,33.98,19.99,Northwest Territories,Office Furnishings,0.55
97
+ 97,Newell 326,Doug Bickford,10535,-0.79,1.76,0.7,Northwest Territories,Pens & Art Supplies,0.56
98
+ 98,Prismacolor Color Pencil Set,Jamie Kunitz,10789,76.42,19.84,4.1,Northwest Territories,Pens & Art Supplies,0.44
99
+ 99,Xerox Blank Computer Paper,Anthony Johnson,10791,93.36,19.98,5.77,Northwest Territories,Paper,0.38
100
+ 100,600 Series Flip,Ralph Knight,10945,4.22,95.99,8.99,Northwest Territories,Telephones and Communication,0.57