@instructure/platform-notebook 0.10.1 → 1.1.0

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.
package/dist/types.d.ts CHANGED
@@ -93,23 +93,16 @@ export declare enum REACTION_TYPE {
93
93
  }
94
94
  export declare const ReactionType: z.ZodEnum<[REACTION_TYPE.IMPORTANT, REACTION_TYPE.CONFUSING]>;
95
95
  export declare const PageInfo: z.ZodObject<{
96
- startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
97
- endCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
- hasNextPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
99
- hasPreviousPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
96
+ totalCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
97
+ totalNrOfPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
100
98
  }, "strip", z.ZodTypeAny, {
101
- startCursor?: string | null | undefined;
102
- endCursor?: string | null | undefined;
103
- hasNextPage?: boolean | null | undefined;
104
- hasPreviousPage?: boolean | null | undefined;
99
+ totalCount?: number | null | undefined;
100
+ totalNrOfPages?: number | null | undefined;
105
101
  }, {
106
- startCursor?: string | null | undefined;
107
- endCursor?: string | null | undefined;
108
- hasNextPage?: boolean | null | undefined;
109
- hasPreviousPage?: boolean | null | undefined;
102
+ totalCount?: number | null | undefined;
103
+ totalNrOfPages?: number | null | undefined;
110
104
  }>;
111
105
  export type PageInfoType = z.infer<typeof PageInfo>;
112
- export type PaginationDirection = 'next' | 'prev';
113
106
  export declare const Note: z.ZodObject<{
114
107
  id: z.ZodString;
115
108
  rootAccountUuid: z.ZodString;
@@ -544,20 +537,14 @@ export declare const NoteConnection: z.ZodObject<{
544
537
  userText?: string | undefined;
545
538
  }>, "many">;
546
539
  pageInfo: z.ZodObject<{
547
- startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
548
- endCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
549
- hasNextPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
550
- hasPreviousPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
540
+ totalCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
541
+ totalNrOfPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
551
542
  }, "strip", z.ZodTypeAny, {
552
- startCursor?: string | null | undefined;
553
- endCursor?: string | null | undefined;
554
- hasNextPage?: boolean | null | undefined;
555
- hasPreviousPage?: boolean | null | undefined;
543
+ totalCount?: number | null | undefined;
544
+ totalNrOfPages?: number | null | undefined;
556
545
  }, {
557
- startCursor?: string | null | undefined;
558
- endCursor?: string | null | undefined;
559
- hasNextPage?: boolean | null | undefined;
560
- hasPreviousPage?: boolean | null | undefined;
546
+ totalCount?: number | null | undefined;
547
+ totalNrOfPages?: number | null | undefined;
561
548
  }>;
562
549
  }, "strip", z.ZodTypeAny, {
563
550
  edges: {
@@ -618,10 +605,8 @@ export declare const NoteConnection: z.ZodObject<{
618
605
  userText?: string | undefined;
619
606
  }[];
620
607
  pageInfo: {
621
- startCursor?: string | null | undefined;
622
- endCursor?: string | null | undefined;
623
- hasNextPage?: boolean | null | undefined;
624
- hasPreviousPage?: boolean | null | undefined;
608
+ totalCount?: number | null | undefined;
609
+ totalNrOfPages?: number | null | undefined;
625
610
  };
626
611
  }, {
627
612
  edges: {
@@ -682,10 +667,8 @@ export declare const NoteConnection: z.ZodObject<{
682
667
  userText?: string | undefined;
683
668
  }[];
684
669
  pageInfo: {
685
- startCursor?: string | null | undefined;
686
- endCursor?: string | null | undefined;
687
- hasNextPage?: boolean | null | undefined;
688
- hasPreviousPage?: boolean | null | undefined;
670
+ totalCount?: number | null | undefined;
671
+ totalNrOfPages?: number | null | undefined;
689
672
  };
690
673
  }>;
691
674
  }, "strip", z.ZodTypeAny, {
@@ -748,10 +731,8 @@ export declare const NoteConnection: z.ZodObject<{
748
731
  userText?: string | undefined;
749
732
  }[];
750
733
  pageInfo: {
751
- startCursor?: string | null | undefined;
752
- endCursor?: string | null | undefined;
753
- hasNextPage?: boolean | null | undefined;
754
- hasPreviousPage?: boolean | null | undefined;
734
+ totalCount?: number | null | undefined;
735
+ totalNrOfPages?: number | null | undefined;
755
736
  };
756
737
  };
757
738
  }, {
@@ -814,10 +795,8 @@ export declare const NoteConnection: z.ZodObject<{
814
795
  userText?: string | undefined;
815
796
  }[];
816
797
  pageInfo: {
817
- startCursor?: string | null | undefined;
818
- endCursor?: string | null | undefined;
819
- hasNextPage?: boolean | null | undefined;
820
- hasPreviousPage?: boolean | null | undefined;
798
+ totalCount?: number | null | undefined;
799
+ totalNrOfPages?: number | null | undefined;
821
800
  };
822
801
  };
823
802
  }>;
@@ -880,23 +859,7 @@ export declare const GetNotesInput: z.ZodObject<{
880
859
  } | undefined;
881
860
  reactions?: string[] | undefined;
882
861
  }>>;
883
- pageParams: z.ZodOptional<z.ZodObject<{
884
- startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
885
- endCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
886
- hasNextPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
887
- hasPreviousPage: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
888
- }, "strip", z.ZodTypeAny, {
889
- startCursor?: string | null | undefined;
890
- endCursor?: string | null | undefined;
891
- hasNextPage?: boolean | null | undefined;
892
- hasPreviousPage?: boolean | null | undefined;
893
- }, {
894
- startCursor?: string | null | undefined;
895
- endCursor?: string | null | undefined;
896
- hasNextPage?: boolean | null | undefined;
897
- hasPreviousPage?: boolean | null | undefined;
898
- }>>;
899
- direction: z.ZodOptional<z.ZodEnum<["next", "prev"]>>;
862
+ offset: z.ZodOptional<z.ZodNumber>;
900
863
  pageSize: z.ZodOptional<z.ZodNumber>;
901
864
  }, "strip", z.ZodTypeAny, {
902
865
  filter?: {
@@ -908,13 +871,7 @@ export declare const GetNotesInput: z.ZodObject<{
908
871
  reactions?: string[] | undefined;
909
872
  } | undefined;
910
873
  courseId?: string | undefined;
911
- pageParams?: {
912
- startCursor?: string | null | undefined;
913
- endCursor?: string | null | undefined;
914
- hasNextPage?: boolean | null | undefined;
915
- hasPreviousPage?: boolean | null | undefined;
916
- } | undefined;
917
- direction?: "next" | "prev" | undefined;
874
+ offset?: number | undefined;
918
875
  pageSize?: number | undefined;
919
876
  }, {
920
877
  filter?: {
@@ -926,13 +883,7 @@ export declare const GetNotesInput: z.ZodObject<{
926
883
  reactions?: string[] | undefined;
927
884
  } | undefined;
928
885
  courseId?: string | undefined;
929
- pageParams?: {
930
- startCursor?: string | null | undefined;
931
- endCursor?: string | null | undefined;
932
- hasNextPage?: boolean | null | undefined;
933
- hasPreviousPage?: boolean | null | undefined;
934
- } | undefined;
935
- direction?: "next" | "prev" | undefined;
886
+ offset?: number | undefined;
936
887
  pageSize?: number | undefined;
937
888
  }>;
938
889
  export type GetNotesInputType = z.infer<typeof GetNotesInput>;
@@ -1528,8 +1479,7 @@ export interface GetNotesParams {
1528
1479
  courseId?: string;
1529
1480
  filter?: z.infer<typeof NoteFilterInput>;
1530
1481
  pageSize?: number;
1531
- direction?: PaginationDirection;
1532
- cursor?: string;
1482
+ offset?: number;
1533
1483
  }
1534
1484
  export interface NotebookApi {
1535
1485
  getNotes(params: GetNotesParams): Promise<PaginatedNotes>;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;EAKxB,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAE7D,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAA;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAE3E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMxB,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAI7D,oBAAY,aAAa;IACvB,SAAS,cAAc;IACvB,SAAS,cAAc;CACxB;AAED,eAAO,MAAM,YAAY,+DAA6D,CAAA;AAItF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;EAKnB,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAA;AAEnD,MAAM,MAAM,mBAAmB,GAAG,MAAM,GAAG,MAAM,CAAA;AAIjD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYf,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAA;AAS3C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMzB,CAAA;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAA;AAS/D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMf,CAAA;AAEb,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMxB,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAI7D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1B,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAEjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEvE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK1B,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAEjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEvE,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAIvE,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,QAAQ,EAAE,CAAA;IACjB,QAAQ,EAAE,YAAY,CAAA;CACvB;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,mBAAmB,CAAA;IAC/B,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;IACzD,UAAU,CAAC,KAAK,EAAE,mBAAmB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAA;IACzD,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,mBAAmB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAA;IACrE,UAAU,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACtC;AAID,MAAM,WAAW,sBAAsB;IACrC,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,wBAAwB,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAEtF,eAAO,MAAM,cAAc,GAAI,MAAM,IAAI,KAAG,MAQ3C,CAAA;AAED,eAAO,MAAM,0BAA0B,GAAI,MAAM,IAAI,KAAG,MAQvD,CAAA;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,OAAO,EAChB,GAAG,SAAS,MAAM,EAAE,KACnB,KAAK,CAAC;IAAE,IAAI,EAAE,IAAI,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CA8BtC,CAAA;AAmBD,eAAO,MAAM,wCAAwC,GACnD,MAAM,OAAO,EACb,cAAc,MAAM,EACpB,aAAa,MAAM,EACnB,WAAW,MAAM,KAChB,kBAAkB,GAAG,IAgDvB,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,cAAc,EAAE,mBAAmB,EAAE,CAAA;IACrC,gBAAgB,EAAE,MAAM,EAAE,CAAA;CAC3B,CAAA;AAcD,eAAO,MAAM,iBAAiB,GAC5B,WAAW,OAAO,EAClB,OAAO,QAAQ,EAAE,EACjB,oBAAoB,MAAM,KACzB,uBAsCF,CAAA;AAED,eAAO,MAAM,iBAAiB,GAAI,MAAM,QAAQ,EAAE,WAAW,OAAO,KAAG,IAQtE,CAAA;AAED,eAAO,MAAM,iBAAiB,GAAI,IAAI,MAAM,KAAG,IAc9C,CAAA;AAKD,eAAO,MAAM,YAAY,GAAI,OAAO,KAAK,KAAG,sBAAsB,GAAG,IAmEpE,CAAA;AAED,eAAO,MAAM,aAAa,GACxB,UAAU,wBAAwB,EAClC,gBAAgB,wBAAwB,EAAE,KACzC,OAOF,CAAA;AAED,eAAO,MAAM,wBAAwB,GAAI,IAAI,MAAM,KAAG,MAErD,CAAA;AAED,eAAO,MAAM,6BAA6B,GAAI,IAAI,MAAM,KAAG,MAE1D,CAAA;AAED,eAAO,MAAM,2BAA2B,GAAI,IAAI,MAAM,KAAG,MAExD,CAAA"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,wBAAwB,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAEtF,eAAO,MAAM,cAAc,GAAI,MAAM,IAAI,KAAG,MAQ3C,CAAA;AAED,eAAO,MAAM,0BAA0B,GAAI,MAAM,IAAI,KAAG,MAQvD,CAAA;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,OAAO,EAChB,GAAG,SAAS,MAAM,EAAE,KACnB,KAAK,CAAC;IAAE,IAAI,EAAE,IAAI,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CA8BtC,CAAA;AAmBD,eAAO,MAAM,wCAAwC,GACnD,MAAM,OAAO,EACb,cAAc,MAAM,EACpB,aAAa,MAAM,EACnB,WAAW,MAAM,KAChB,kBAAkB,GAAG,IAgDvB,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,cAAc,EAAE,mBAAmB,EAAE,CAAA;IACrC,gBAAgB,EAAE,MAAM,EAAE,CAAA;CAC3B,CAAA;AAcD,eAAO,MAAM,iBAAiB,GAC5B,WAAW,OAAO,EAClB,OAAO,QAAQ,EAAE,EACjB,oBAAoB,MAAM,KACzB,uBAwCF,CAAA;AAED,eAAO,MAAM,iBAAiB,GAAI,MAAM,QAAQ,EAAE,WAAW,OAAO,KAAG,IAQtE,CAAA;AAED,eAAO,MAAM,iBAAiB,GAAI,IAAI,MAAM,KAAG,IAc9C,CAAA;AAKD,eAAO,MAAM,YAAY,GAAI,OAAO,KAAK,KAAG,sBAAsB,GAAG,IAmEpE,CAAA;AAED,eAAO,MAAM,aAAa,GACxB,UAAU,wBAAwB,EAClC,gBAAgB,wBAAwB,EAAE,KACzC,OAOF,CAAA;AAED,eAAO,MAAM,wBAAwB,GAAI,IAAI,MAAM,KAAG,MAErD,CAAA;AAED,eAAO,MAAM,6BAA6B,GAAI,IAAI,MAAM,KAAG,MAE1D,CAAA;AAED,eAAO,MAAM,2BAA2B,GAAI,IAAI,MAAM,KAAG,MAExD,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/platform-notebook",
3
- "version": "0.10.1",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -26,6 +26,7 @@
26
26
  "@instructure/ui-heading": "^11.0.0",
27
27
  "@instructure/ui-icons": "^11.0.0",
28
28
  "@instructure/ui-menu": "^11.0.0",
29
+ "@instructure/ui-pagination": "^11.0.0",
29
30
  "@instructure/ui-pill": "^11.0.0",
30
31
  "@instructure/ui-simple-select": "^11.0.0",
31
32
  "@instructure/ui-spinner": "^11.0.0",